/* ===========================
   ELITE BUSINESS SYSTEMS
   Main Stylesheet
   =========================== */

:root {
  --black: #0c1220;
  --dark: #0f1e35;
  --dark-card: #172236;
  --navy: #1a3461;
  --navy-dark: #0f2248;
  --navy-light: #234680;
  --steel: #2E6DB4;
  --steel-light: #4a8fd4;
  --white: #ffffff;
  --gray-100: #f4f6fb;
  --gray-200: #e2e8f4;
  --gray-400: #94a3b8;
  --gray-600: #4b5a72;
  --text: #0f1e35;
  --text-light: #4b5a72;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(26,52,97,0.10);
  --shadow-md: 0 8px 40px rgba(26,52,97,0.16);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===========================
   LAYOUT
   =========================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.bg-light { background: var(--gray-100); }
.bg-dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); }
.text-center { text-align: center; }

/* ===========================
   TYPOGRAPHY
   =========================== */

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  display: block;
}

.section-label.light { color: var(--steel-light); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

/* ===========================
   NAVBAR
   =========================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo span { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--black);
  background: var(--gray-100);
}

.btn-nav {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-sm) !important;
  transition: background var(--transition) !important;
}

.btn-nav:hover { background: var(--navy-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--black);
  padding: 4px;
}

/* ===========================
   BUTTONS
   =========================== */

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  transition: border-color var(--transition), background var(--transition);
}

.btn-secondary:hover {
  border-color: var(--text);
  background: var(--gray-100);
}

.btn-full { width: 100%; text-align: center; }
.btn-large { padding: 18px 40px; font-size: 17px; }

/* ===========================
   LOGO IMAGE
   =========================== */

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  /* SVG is dark on white; invert for dark footer */
  filter: brightness(0) invert(1);
}

/* ===========================
   HERO
   =========================== */

.hero {
  background: var(--navy);
  padding: 100px 0;
  overflow: hidden;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.22);
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.hero-actions .btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}



/* ===========================
   CARD SVG ICONS
   =========================== */

.card-svg-icon {
  width: 52px;
  height: 52px;
  background: rgba(43,58,103,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(43,58,103,0.10);
}

.card-icon-wrap {
  margin-bottom: 16px;
}

/* Service page icons */
.service-icon-wrap {
  width: 100px;
  height: 100px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
}

/* How It Works info icons */
.info-icon {
  margin-bottom: 12px;
}

/* CHECK LIST
   =========================== */

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

.check-list li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* Light background check list */
.section:not(.bg-dark) .check-list li,
.check-list.dark li {
  color: var(--text-light);
}

/* ===========================
   GRID
   =========================== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ===========================
   CARDS
   =========================== */

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon-sm {
  font-size: 28px;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================
   FEATURES (dark bg)
   =========================== */

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--steel) 100%);
  color: var(--white);
}

.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

/* ===========================
   PAGE HEADER
   =========================== */

.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 80px 0 72px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto;
}

/* ===========================
   SERVICES PAGE
   =========================== */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

.service-block.reverse {
  grid-template-columns: 1fr auto;
}

.service-block.reverse .service-icon-wrap {
  order: 2;
}

.service-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.service-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-content .check-list li {
  color: var(--text-light);
}

.service-content .check-list li::before {
  color: var(--navy);
}

/* ===========================
   HOW IT WORKS PAGE
   =========================== */

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  opacity: 0.7;
}

.step-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.info-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}

.info-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.info-block p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

.info-block a {
  color: var(--navy-dark);
  font-weight: 500;
}

/* ===========================
   REFUND POLICY PAGE
   =========================== */

.policy-container {
  max-width: 780px;
  margin: 0 auto;
}

.policy-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-200);
}

.policy-block:last-child {
  border-bottom: none;
}

.policy-block h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.policy-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
}

.policy-block p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.policy-block ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.policy-block ul li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 6px;
}

.policy-block a {
  color: var(--navy-dark);
  font-weight: 500;
  text-decoration: underline;
}

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-email {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
  word-break: break-all;
}

.contact-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 4px !important;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-light);
}

.contact-card a {
  color: var(--navy-dark);
  font-weight: 500;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  font-size: 18px;
  font-weight: 800;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact a {
  font-size: 14px;
  color: var(--steel-light);
  transition: color var(--transition);
  word-break: break-all;
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 500px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: repeat(3, 1fr); display: grid; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--gray-200);
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-links li a { display: block; width: 100%; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
  }

  .service-block.reverse .service-icon-wrap { order: 0; }

  .service-icon-wrap { width: 72px; height: 72px; }
  .service-icon-wrap svg { width: 30px; height: 30px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-info { display: flex; flex-direction: column; }

  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-number { font-size: 36px; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===========================
   HERO WITH BACKGROUND PHOTO
   =========================== */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,18,32,0.88) 0%, rgba(26,52,97,0.70) 60%, rgba(26,52,97,0.30) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
  display: block;
}

.hero-text {
  max-width: 600px;
}

/* ===========================
   BTN GHOST (hero secondary)
   =========================== */

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ===========================
   TRUST BAR
   =========================== */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
  box-shadow: 0 2px 12px rgba(26,52,97,0.06);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.trust-item strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.trust-item span {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ===========================
   SPLIT LAYOUT
   =========================== */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-layout.reverse {
  direction: rtl;
}
.split-layout.reverse > * {
  direction: ltr;
}

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===========================
   CTA WITH BACKGROUND PHOTO
   =========================== */

.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,18,32,0.88) 0%, rgba(26,52,97,0.80) 100%);
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ===========================
   TEXT ALIGNMENT HELPERS
   =========================== */

.text-center-label {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   HOW IT WORKS — VISUAL STEPS
   =========================== */

.hiw-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-200);
}

.hiw-step:last-child {
  border-bottom: none;
}

.hiw-step-reverse {
  direction: rtl;
}

.hiw-step-reverse > * {
  direction: ltr;
}

.hiw-step-number {
  font-size: 64px;
  font-weight: 900;
  color: var(--steel);
  line-height: 1;
  letter-spacing: -0.03em;
  opacity: 0.25;
  margin-bottom: 8px;
}

.hiw-step-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}

.hiw-step-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
}

.hiw-step-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.hiw-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hiw-step-img:hover img {
  transform: scale(1.03);
}

/* ===========================
   SERVICES — LIFESTYLE BREAK
   =========================== */

.services-photo-break {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.services-photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.services-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,18,32,0.82) 0%, rgba(26,52,97,0.65) 100%);
  display: flex;
  align-items: center;
}

.services-photo-overlay h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  max-width: 580px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.services-photo-overlay p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
}

/* ===========================
   RESPONSIVE ADDITIONS
   =========================== */

@media (max-width: 900px) {
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-layout.reverse { direction: ltr; }
  .trust-item { padding: 12px 24px; }
  .trust-divider { display: none; }
  .trust-inner { gap: 0; justify-content: space-around; }
  .hiw-step { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .hiw-step-reverse { direction: ltr; }
  .hiw-step-number { font-size: 48px; }
  .services-photo-break { height: 280px; }
}

