
/* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
:root {
  /* Colors */
  --navy:           #0B1F35;
  --navy-deep:      #071628;
  --navy-mid:       #132840;
  --cyan:           #00C8E8;
  --cyan-light:     #33D6EE;
  --cyan-glow:      rgba(0,200,232,0.15);
  --light-bg:       #EBF3FA;
  --light-bg-2:     #DDEEF8;
  --white:          #FFFFFF;
  --text-dark:      #0B1F35;
  --text-muted:     #5A7A96;
  --text-light:     rgba(255,255,255,0.70);
  --text-faint:     rgba(255,255,255,0.40);
  --border-light:   #D8EAF5;
  --border-dark:    rgba(0,200,232,0.12);
  --card-shadow:    0 4px 28px rgba(11,31,53,0.10);
  --card-shadow-lg: 0 12px 48px rgba(11,31,53,0.14);

  /* Typography scale */
  --font-display:   'Plus Jakarta Sans', sans-serif;
  --font-body:      'DM Sans', sans-serif;

  --text-xs:    12px;
  --text-sm:    14px;
  --text-base:  16px;
  --text-md:    18px;
  --text-lg:    20px;
  --text-xl:    24px;   /* subheadings / pain titles */
  --text-2xl:   28px;
  --text-3xl:   36px;
  --text-4xl:   42px;   /* stat numbers */
  --text-5xl:   52px;
  --text-hero:  clamp(42px, 5vw, 68px);

  /* Spacing */
  --section-pad:  104px;
  --container:    1280px;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;

  /* Transitions */
  --ease: all 0.22s ease;
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  background: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
}

/* ══════════════════════════════════════
   TYPOGRAPHY UTILITIES
══════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.eyebrow-cyan { color: var(--cyan); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.section-title.white { color: var(--white); }
.section-title .cyan { color: var(--cyan); }

.section-sub {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
}
.section-sub.center { margin: 0 auto; text-align: center; }
.section-sub.light  { color: var(--text-light); }

.section-header-center {
  text-align: center;
  margin-bottom: 64px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--ease);
  cursor: pointer;
  border: none;
}
.btn-cyan {
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 14px 28px;
}
.btn-cyan:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,200,232,.35);
}
.btn-cyan-lg {
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 17px 38px;
  font-size: var(--text-base);
}
.btn-cyan-lg:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,200,232,.4);
}
.btn-cyan-outline {
  border: 2px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
  padding: 13px 28px;
}
.btn-cyan-outline:hover {
  background: var(--cyan);
  color: var(--navy-deep);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11,31,53,.22);
}
.btn-ghost {
  color: rgba(255,255,255,.5);
  padding: 14px 6px;
  font-size: var(--text-sm);
}
.btn-ghost:hover { color: var(--white); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(7,22,40,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--cyan);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--ease);
}
.nav-cta:hover {
  background: var(--cyan-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,200,232,.35);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 45%, #0f2840 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,232,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,232,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,232,.08) 0%, transparent 65%);
  top: 50%;
  left: 28%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* Scrolling email columns */
.email-columns {
  position: absolute;
  right: 0;
  top: 0; bottom: 0;
  width: 52%;
  display: flex;
  gap: 24px;
  padding: 0 24px 0 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.email-columns::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--navy) 0%, transparent 24%),
    linear-gradient(to bottom, var(--navy-deep) 0%, transparent 10%),
    linear-gradient(to top, var(--navy-deep) 0%, transparent 10%);
}
.email-col {
  flex: 0 0 22%;   /* fixed width so all 4 fit, 4th clips off right edge */
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollUp linear infinite;
  min-width: 0;
}

.email-col:nth-child(1) { animation-duration: 9s; }
.email-col:nth-child(2) { animation-duration: 8s;  animation-delay: -2s; animation-direction: reverse; }
.email-col:nth-child(3) { animation-duration: 11s; animation-delay: -4s; }
.email-col:nth-child(4) { animation-duration: 9s;  animation-delay: -3s; animation-direction: reverse; }

@keyframes scrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.email-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  background: #0a1e30;
}
.email-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Hero content — shifted right */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 60px;
  width: 50%;
  margin-left: 6%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,232,.1);
  border: 1px solid rgba(0,200,232,.28);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: .5px;
  margin-bottom: 24px;
  animation: fadeUp .5s ease both;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 22px;
  animation: fadeUp .5s .1s ease both;
}
.hero-headline .cyan { color: var(--cyan); }

.hero-sub {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp .5s .2s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 52px;
  animation: fadeUp .5s .3s ease both;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
  animation: fadeUp .5s .4s ease both;
}
.stat {
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}
.stat-num .c { color: var(--cyan); }
.stat-lbl {
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: 5px;
  line-height: 1.4;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker {
  background: var(--cyan);
  padding: 12px 0;
  overflow: hidden;
  display: flex;
}
.ticker-track {
  display: flex;
  animation: tickMove 22s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy-deep);
}
.t-sep { opacity: .35; }
@keyframes tickMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   PROOF BAR
══════════════════════════════════════ */
.proof-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 26px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  white-space: nowrap;
}
.proof-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.proof-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: #b8d0e4;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: default;
  transition: color .2s;
}
.proof-logo:hover { color: var(--text-muted); }

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats-section { background: var(--light-bg); padding: var(--section-pad) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ss-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-light);
  transition: var(--ease);
}
.ss-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-lg); }
.ss-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  line-height: 1;
}
.ss-num .c { color: var(--cyan); }
.ss-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-dark);
  margin: 8px 0 6px;
}
.ss-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════ */
.problem-section { background: var(--white); padding: var(--section-pad) 0; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.problem-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.pain-cards { display: flex; flex-direction: column; gap: 14px; }
.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--ease);
}
.pain-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(0,200,232,.1);
}

.pain-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);    /* 24px as requested */
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.3;
}
.pain-desc {
  font-size: var(--text-sm);    /* 14px as requested */
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
.services-section { background: var(--light-bg); padding: var(--section-pad) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-lg);
  border-color: var(--cyan);
}
.service-card-featured {
  border-color: var(--cyan);
  background: var(--navy);
}
.service-card-featured .service-title { color: var(--white); }
.service-card-featured .service-desc  { color: rgba(255,255,255,.6); }
.service-card-featured .service-list li { color: rgba(255,255,255,.7); }
.service-card-featured .service-list li::before { color: var(--cyan); }

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: .5px;
  white-space: nowrap;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);    /* 24px */
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-desc {
  font-size: var(--text-sm);    /* 14px */
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-list { list-style: none; padding: 0; }
.service-list li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.4;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 11px;
  top: 6px;
}

/* ══════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════ */
.process-section {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 60%, #0f2840 100%);
  padding: var(--section-pad) 0;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: 52px;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--cyan);
  background: rgba(0,200,232,.1);
  border: 1px solid rgba(0,200,232,.25);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .5px;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.step-content { padding: 0 18px; }
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);    /* 24px */
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: var(--text-sm);    /* 14px */
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.process-connector {
  flex-shrink: 0;
  width: 52px;
  height: 1px;
  background: linear-gradient(to right, rgba(0,200,232,.4), rgba(0,200,232,.1));
  margin-top: 26px;
}
.process-cta { text-align: center; }

/* ══════════════════════════════════════
   RESULTS SECTION
══════════════════════════════════════ */
.results-section { background: var(--white); padding: var(--section-pad) 0; }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.results-left { display: flex; flex-direction: column; gap: 0; }
.result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.result-stat {
  padding: 22px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.result-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);   /* 42px */
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  line-height: 1;
}
.result-num .c { color: var(--cyan); }
.result-lbl {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.4;
}

.case-card {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 18px;
  transition: var(--ease);
}
.case-card:last-child { margin-bottom: 0; }
.case-card:hover { border-color: var(--cyan); box-shadow: 0 6px 24px rgba(0,200,232,.1); }
.case-tag {
  display: inline-block;
  background: rgba(0,200,232,.1);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.case-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.case-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.case-metrics { display: flex; gap: 28px; }
.case-metric { display: flex; flex-direction: column; }
.case-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--cyan);
  letter-spacing: -.5px;
}
.case-lbl {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   WHY SECTION
══════════════════════════════════════ */
.why-section { background: var(--light-bg); padding: var(--section-pad) 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--ease);
}
.why-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-lg);
}

.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);    /* 24px */
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-desc {
  font-size: var(--text-sm);    /* 14px */
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 60%, #0f2840 100%);
  padding: var(--section-pad) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--ease);
}
.testi-card:hover {
  border-color: rgba(0,200,232,.3);
  background: rgba(255,255,255,.07);
}
.testi-card-featured {
  background: rgba(0,200,232,.08);
  border-color: rgba(0,200,232,.3);
}
.testi-stars {
  color: var(--cyan);
  font-size: var(--text-base);
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testi-quote {
  font-size: var(--text-sm);    /* 14px */
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 26px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;

/* CTA box inner elements — position relative for z-index above glow */
.cta-eyebrow,
.cta-heading,
.cta-sub,
.cta-btn,
.cta-note { position: relative; }
  background: linear-gradient(135deg, var(--cyan), #0078a0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--navy-deep);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--white);
}
.testi-role {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { background: var(--white); padding: var(--section-pad) 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}
.faq-item { border-bottom: 1px solid #e8f2fa; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--text-dark);
  transition: color .2s;
}
.faq-question:hover { color: var(--cyan); }
.faq-arrow {
  font-size: 22px;
  color: var(--cyan);
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
  transition: transform .25s;
}
.faq-answer {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-answer.open { max-height: 220px; padding-bottom: 20px; }

/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */
.final-cta { background: var(--light-bg); padding: var(--section-pad) 0; }
.cta-box {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #0e2840 100%);
  border-radius: 22px;
  padding: 80px 72px;
  text-align: center;
  border: 1px solid rgba(0,200,232,.15);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,232,.1) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
.cta-heading .cyan { color: var(--cyan); }
.cta-sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
  position: relative;
}
.cta-note {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.3);
  margin-top: 20px;
  position: relative;
}
.cta-eyebrow,
.cta-btn { position: relative; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: 60px 0 36px;
  border-top: 1px solid rgba(0,200,232,.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  margin-bottom: 44px;
}
.footer-logo { font-size: 22px; margin-bottom: 14px; display: inline-block; }
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links { display: flex; gap: 52px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.22);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --container: 100%; }
  .container { padding: 0 40px; }
  nav { padding: 0 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 24px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-content { width: 100%; padding: 40px 24px; }
  .email-columns { width: 100%; opacity: .1; }
  .email-col:nth-child(n+3) { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat { border-right: none; padding-right: 0; margin-right: 0; width: 45%; }
  .proof-bar { padding: 20px 24px; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .results-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(0,200,232,.4), rgba(0,200,232,.1)); margin: 0; }
  .cta-box { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .faq-left { position: static; }
  .result-stats { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   MOBILE NAV & HAMBURGER
══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
  visibility: hidden;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(7,22,40,0.98);
  backdrop-filter: blur(14px);
  flex-direction: column;
  padding: 24px 28px 32px;
  border-bottom: 1px solid var(--border-dark);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); }
.nav-mobile-cta {
  background: var(--cyan) !important;
  color: var(--navy-deep) !important;
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 14px !important;
  margin-top: 12px;
  border-bottom: none !important;
  font-weight: 700 !important;
}

/* Active nav link */
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  margin-top: 3px;
}

/* Nav scroll shadow */
nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  border-bottom-color: rgba(0,200,232,.2);
}

@media (max-width: 900px) {
  .nav-hamburger { display: flex; visibility: visible; }
  .nav-mobile    { display: flex; }
}
