/* Genicular Artery Embolization (GAE) — Knee Pain
   Inherits from flowcare-styles-v2.css (navy + cyan)
   Adds Warm Amber accent for hope/warmth touches
   Dual-persona: athlete (35–55) + senior (55–80)
   Slightly larger text + 56px CTAs for accessibility */


body {
  margin: 0 !important;
}

.gae-page {
  --bg: #f4f7fb;
  --bg-2: #ffffff;
  --bg-warm: #fff8ec;
  --ink: #0E2F6B;
  --ink-2: #4a5570;
  --ink-3: #6b7388;
  --line: #d6deea;
  --line-2: #e6ecf4;

  --navy: #0E2F6B;
  --navy-2: #1a3d8a;
  --navy-deep: #07173d;
  --navy-ink: #0a1628;

  --cyan: #00D4FF;
  --cyan-2: #1FC3C7;
  --cyan-deep: #0891B2;
  --teal: #14B8A6;
  --teal-deep: #0F8F80;
  --wa: #25D366;
  --wa-deep: #128C7E;

  --amber: #F59E0B;
  --amber-deep: #D97706;
  --amber-soft: #FEF3C7;

  --athlete: #0E7490;
  /* sport — deeper teal */
  --senior: #B45309;
  /* warm amber-brown */
  --family: #7C3AED;
  /* purple — for adult children */

  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;
  --hi: 'Noto Serif Devanagari', 'Tiro Devanagari Hindi', serif;
}

.gae-page {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
}

/* ─── Shared utility ─── */
.gae-section {
  padding: 100px 0;
  position: relative;
}

.gae-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

.gae-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 600;
}

.gae-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.gae-eyebrow.amber {
  color: var(--amber-deep);
}

.gae-eyebrow.amber .dot {
  background: var(--amber);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.gae-h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.gae-h2 i {
  font-style: italic;
  color: var(--amber-deep);
}

.gae-h2-hi {
  font-family: var(--hi);
  font-size: 22px;
  color: var(--ink-2);
  margin-top: 8px;
}

.gae-lede {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-top: 16px;
}

/* CTAs — bigger touch targets (56px min) */
.gae-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 30px;
  border-radius: 100px;
  text-decoration: none;
  min-height: 56px;
  box-sizing: border-box;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gae-cta-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.45);
}

.gae-cta-wa svg {
  fill: #fff;
  flex-shrink: 0;
}

.gae-cta-wa.xl {
  font-size: 16px;
  padding: 22px 36px;
  min-height: 64px;
}

.gae-cta-amber {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--amber);
  color: var(--amber-deep);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none;
  min-height: 56px;
  box-sizing: border-box;
  background: rgba(245, 158, 11, 0.05);
  transition: all 0.2s;
}

.gae-cta-amber:hover {
  background: rgba(245, 158, 11, 0.12);
  transform: translateY(-2px);
}

.gae-cta-out {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--cyan);
  color: var(--cyan-deep);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none;
  min-height: 56px;
  box-sizing: border-box;
  background: rgba(0, 212, 255, 0.04);
  transition: background 0.2s;
}

.gae-cta-out:hover {
  background: rgba(0, 212, 255, 0.1);
}

/* Trust badge */
.gae-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── BREADCRUMB + STICKY HEADER ─── */
.gae-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--line-2);
  padding: 16px 56px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--ink-3);
}

.gae-breadcrumb a {
  color: var(--ink-2);
  text-decoration: none;
}

.gae-breadcrumb a:hover {
  color: var(--cyan-deep);
}

.gae-breadcrumb .sep {
  margin: 0 10px;
  color: var(--ink-3);
}

.gae-breadcrumb .current {
  color: var(--navy);
  font-weight: 600;
}

.gae-sticky-strip {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  color: #fff;
  padding: 12px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

.gae-sticky-strip .meta {
  display: flex;
  gap: 24px;
  align-items: center;
}

.gae-sticky-strip .meta strong {
  color: var(--amber);
  font-weight: 700;
}

.gae-sticky-strip .pill {
  background: var(--wa);
  color: #fff;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
}

/* ─── HERO ─── */
.gae-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #07173d 50%, #0a1628 100%);
  color: #fff;
  padding: 80px 0 100px;
}

.gae-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 12% 20%, rgba(245, 158, 11, 0.18), transparent 60%),
    radial-gradient(ellipse 600px 400px at 88% 80%, rgba(0, 212, 255, 0.16), transparent 65%);
  pointer-events: none;
}

.gae-hero-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.gae-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.12);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.gae-h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 76px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
}

.gae-h1 i {
  font-style: italic;
  color: var(--amber);
}

.gae-h1 em {
  font-style: normal;
  color: var(--cyan);
}

.gae-hero-sub {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
}

.gae-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.gae-hero-pills span {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gae-hero-pills span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.gae-hero-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gae-hero-stats .item .num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--amber);
  display: block;
  line-height: 1;
}

.gae-hero-stats .item .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  display: block;
  line-height: 1.3;
}

.gae-hero-price {
  margin-top: 24px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.gae-hero-price .ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--amber);
  color: #07173d;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.gae-hero-price .txt {
  flex: 1;
}

.gae-hero-price .lead {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.gae-hero-price .meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.gae-hero-ctas {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gae-hero-cta-amber {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(245, 158, 11, 0.6);
  color: var(--amber);
  font-weight: 700;
  font-size: 15px;
  padding: 18px 30px;
  border-radius: 100px;
  text-decoration: none;
  min-height: 56px;
  background: rgba(245, 158, 11, 0.08);
  transition: all 0.2s;
}

.gae-hero-cta-amber:hover {
  background: rgba(245, 158, 11, 0.18);
}

/* Hero animation panel — split-screen morphing */
.gae-hero-anim {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.gae-hero-anim .split {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.gae-hero-anim .pane {
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gae-hero-anim .pane-top {
  background: linear-gradient(135deg, #0e7490 0%, #0a1628 100%);
}

.gae-hero-anim .pane-bottom {
  background: linear-gradient(135deg, #b45309 0%, #07173d 100%);
}

.gae-hero-anim .pane .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gae-hero-anim .pane .tag .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

.gae-hero-anim .pane .scene {
  flex: 1;
  display: grid;
  place-items: center;
  position: relative;
}

.gae-hero-anim .pane .caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.gae-hero-anim .center-band {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 56px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.95) 40%, rgba(245, 158, 11, 0.95) 60%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #07173d;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 5;
}

/* SVG mini scenes for hero */
.gae-scene-svg {
  width: 100%;
  height: 100%;
}

/* ─── PERSONA SELECTOR ─── */
.gae-persona {
  background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
  padding: 80px 0;
}

.gae-persona-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.gae-persona-head .gae-h2 {
  font-size: 44px;
}

.gae-persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

.gae-persona-card {
  position: relative;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gae-persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(14, 47, 107, 0.12);
}

.gae-persona-card.active {
  border-color: var(--amber);
  box-shadow: 0 22px 52px rgba(245, 158, 11, 0.2);
  background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}

.gae-persona-card .emoji {
  font-size: 36px;
  line-height: 1;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--bg-warm);
  border: 1px solid var(--line-2);
}

.gae-persona-card.active .emoji {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
}

.gae-persona-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  margin: 0;
}

.gae-persona-card .desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

.gae-persona-card .check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

.gae-persona-card.active .check {
  opacity: 1;
}

.gae-persona-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-3);
}

/* ─── EMPATHY BRIDGE ─── */
.gae-empathy {
  background: var(--bg-2);
  padding: 100px 0;
}

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

.gae-empathy-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gae-empathy-card .ic-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 28px;
  background: var(--bg-warm);
}

.gae-empathy-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.gae-empathy-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

.gae-empathy-foot {
  margin-top: 36px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--bg-warm), #fff);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gae-empathy-foot p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 720px;
}

.gae-empathy-foot p strong {
  color: var(--amber-deep);
}

/* ─── WA PROMO STRIP ─── */
.gae-wa-promo {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-deep) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.gae-wa-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(255, 255, 255, 0.12), transparent);
}

.gae-wa-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

.gae-wa-inner h2 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 0 12px;
  color: #fff;
}

.gae-wa-inner .sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
}

.gae-wa-questions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.gae-wa-q {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 18px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 64px;
}

.gae-wa-q:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.gae-wa-q .q-ic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ─── SYMPTOM CHECKER ─── */
.gae-quiz {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

.gae-quiz-card {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 40px 80px rgba(14, 47, 107, 0.08);
}

.gae-quiz h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 12px;
}

.gae-quiz .sub {
  color: var(--ink-2);
  font-size: 16px;
}

.gae-quiz-progress {
  margin-top: 32px;
  height: 6px;
  border-radius: 100px;
  background: var(--line-2);
  overflow: hidden;
}

.gae-quiz-progress .bar {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--cyan-deep));
  transition: width 0.4s;
  border-radius: 100px;
}

.gae-quiz-options {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.gae-quiz-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.gae-quiz-opt:hover {
  border-color: var(--amber);
  background: rgba(245, 158, 11, 0.04);
}

.gae-quiz-opt.active {
  border-color: var(--amber);
  background: rgba(245, 158, 11, 0.08);
}

.gae-quiz-opt .box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gae-quiz-opt.active .box {
  border-color: var(--amber);
  background: var(--amber);
  color: #fff;
}

.gae-quiz-slider {
  margin-top: 28px;
}

.gae-quiz-slider label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.gae-quiz-slider .row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gae-quiz-slider input[type="range"] {
  flex: 1;
  height: 8px;
  border-radius: 100px;
  appearance: none;
  background: linear-gradient(90deg, #10b981 0%, #f59e0b 50%, #ef4444 100%);
  outline: none;
}

.gae-quiz-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--navy);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gae-quiz-slider .num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  min-width: 64px;
  text-align: right;
}

.gae-quiz-slider .emoji {
  font-size: 28px;
}

.gae-quiz-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gae-quiz-result {
  margin-top: 32px;
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bg-warm), #fff);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.gae-quiz-result h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 8px;
}

.gae-quiz-result .score {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--amber-deep);
  font-weight: 600;
}

.gae-quiz-result p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* ─── WHAT IS GAE ─── */
.gae-what {
  background: #fff;
  padding: 100px 0;
}

.gae-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

.gae-what-prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 16px;
}

.gae-what-prose .pull {
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--bg-warm);
  border-left: 4px solid var(--amber);
  border-radius: 0 14px 14px 0;
}

.gae-what-prose .pull p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0;
}

/* Knee anatomy animation */
.gae-knee-anim {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #07173d 100%);
  padding: 32px;
  display: grid;
  place-items: center;
}

.gae-knee-anim .stage-tabs {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.gae-knee-anim .stage-tabs button {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}

.gae-knee-anim .stage-tabs button.active {
  background: rgba(245, 158, 11, 0.2);
  color: var(--amber);
  border-color: rgba(245, 158, 11, 0.5);
}

.gae-knee-anim .stage-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
  z-index: 5;
}

.gae-knee-anim .stage-info h5 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--amber);
}

.gae-knee-anim .stage-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.gae-knee-anim .stage-svg {
  width: 100%;
  height: 100%;
}

/* Pulsing red animation */
@keyframes painPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes flowParticle {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

@keyframes fadeRed {
  0% {
    fill-opacity: 0.9;
  }

  100% {
    fill-opacity: 0.1;
  }
}

.pain-node {
  animation: painPulse 1.6s ease-in-out infinite;
}

.pain-node.calm {
  animation: none;
  opacity: 0.2;
}

/* ─── KL GRADE VISUALIZER ─── */
.gae-grade {
  background: var(--bg);
  padding: 100px 0;
}

.gae-grade-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.gae-grade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

.gae-grade-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gae-grade-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(14, 47, 107, 0.1);
}

.gae-grade-card.active {
  border-color: var(--amber);
  box-shadow: 0 18px 46px rgba(245, 158, 11, 0.18);
}

.gae-grade-card .num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  background: var(--navy);
}

.gae-grade-card.g2 .num,
.gae-grade-card.g3 .num {
  background: var(--amber);
}

.gae-grade-card h5 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.gae-grade-card .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.gae-grade-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.gae-grade-card .ideal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-deep);
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(245, 158, 11, 0.12);
  width: fit-content;
}

.gae-grade-knee {
  aspect-ratio: 1.2;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4fa, #fff);
}

.gae-grade-detail {
  margin-top: 36px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-grade-detail-card {
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-warm), #fff);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.gae-grade-detail-card h4 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 8px;
}

.gae-grade-detail-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

/* ─── SOLUTION (3-frame storyboard) ─── */
.gae-solution {
  background: linear-gradient(180deg, #0a1628 0%, #07173d 100%);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.gae-solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 600px at 50% 0%, rgba(245, 158, 11, 0.12), transparent 60%);
}

.gae-solution-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
}

.gae-solution-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.gae-solution-head .gae-h2 {
  color: #fff;
  font-size: 56px;
}

.gae-solution-head .gae-h2 i {
  color: var(--amber);
}

.gae-solution-head .gae-lede {
  color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
}

.gae-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.gae-solution-frame {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}

.gae-solution-frame .step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}

.gae-solution-frame h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 8px 0 14px;
  color: #fff;
  line-height: 1.15;
}

.gae-solution-frame p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.gae-solution-frame .scene-canvas {
  margin-top: 24px;
  aspect-ratio: 1.4;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #1a3d8a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gae-solution-specs {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gae-solution-specs .spec .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.gae-solution-specs .spec .val {
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
  margin-top: 6px;
  line-height: 1.2;
}

.gae-solution-specs .spec .meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ─── DUAL TRACK RECOVERY ─── */
.gae-recovery {
  background: #fff;
  padding: 100px 0;
}

.gae-recovery-tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--bg);
  padding: 6px;
  border-radius: 100px;
  margin: 32px auto 0;
}

.gae-recovery-tabs button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--ink-2);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}

.gae-recovery-tabs button.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(14, 47, 107, 0.1);
}

.gae-recovery-head {
  text-align: center;
}

.gae-recovery-tracks {
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-track {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.gae-track-side {
  position: sticky;
  top: 100px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--bg-warm), #fff);
}

.gae-track.athlete .gae-track-side {
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.08), #fff);
  border-color: rgba(14, 116, 144, 0.25);
}

.gae-track.senior .gae-track-side {
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.08), #fff);
  border-color: rgba(180, 83, 9, 0.25);
}

.gae-track-side .icon {
  font-size: 32px;
}

.gae-track-side .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 10px;
}

.gae-track-side h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 6px 0 0;
  line-height: 1.2;
}

.gae-track-steps {
  position: relative;
}

.gae-track-steps::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.gae-track-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-2);
}

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

.gae-track-step .marker {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--amber);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-deep);
  position: relative;
  z-index: 1;
}

.gae-track.athlete .gae-track-step .marker {
  border-color: var(--athlete);
  color: var(--athlete);
}

.gae-track.senior .gae-track-step .marker {
  border-color: var(--senior);
  color: var(--senior);
}

.gae-track-step h5 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
}

.gae-track-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.gae-track-step .icon {
  font-size: 22px;
  margin-top: 6px;
}

/* ─── COMPARISON TABLE ─── */
.gae-compare {
  background: var(--bg);
  padding: 100px 0;
}

.gae-compare-table {
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-compare-grid {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(14, 47, 107, 0.08);
}

.gae-compare-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.05fr 1fr;
  border-top: 1px solid var(--line-2);
}

.gae-compare-row:first-child {
  border-top: none;
}

.gae-compare-row>div {
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.5;
}

.gae-compare-row.head>div {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--bg);
}

.gae-compare-row.head .col-gae {
  background: linear-gradient(135deg, #0a1628, #07173d);
  color: var(--amber);
}

.gae-compare-row .col-feat {
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
}

.gae-compare-row .col-gae {
  background: rgba(245, 158, 11, 0.06);
  border-left: 1px solid rgba(245, 158, 11, 0.2);
  border-right: 1px solid rgba(245, 158, 11, 0.2);
  font-weight: 600;
  color: var(--navy);
}

.gae-compare-row .col-kr,
.gae-compare-row .col-other {
  color: var(--ink-2);
}

.gae-compare-takeaway {
  margin-top: 36px;
  padding: 32px;
  background: linear-gradient(135deg, var(--bg-warm), #fff);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 18px;
  text-align: center;
}

.gae-compare-takeaway h4 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 12px;
}

.gae-compare-takeaway p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── WHO IS GAE FOR ─── */
.gae-who {
  background: #fff;
  padding: 100px 0;
}

.gae-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-who-col {
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gae-who-col.athletes {
  background: linear-gradient(180deg, rgba(14, 116, 144, 0.04), #fff);
  border-color: rgba(14, 116, 144, 0.2);
}

.gae-who-col.seniors {
  background: linear-gradient(180deg, rgba(180, 83, 9, 0.04), #fff);
  border-color: rgba(180, 83, 9, 0.2);
}

.gae-who-col.exclusions {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.04), #fff);
  border-color: rgba(239, 68, 68, 0.18);
}

.gae-who-col h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.gae-who-col .head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gae-who-col .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.gae-who-col.athletes .ic {
  background: rgba(14, 116, 144, 0.12);
  color: var(--athlete);
}

.gae-who-col.seniors .ic {
  background: rgba(180, 83, 9, 0.12);
  color: var(--senior);
}

.gae-who-col.exclusions .ic {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
}

.gae-who-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gae-who-col li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gae-who-col li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(14, 116, 144, 0.15);
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%230e7490' d='M6.5 11L3 7.5l1-1 2.5 2.5L12 3.5l1 1z'/></svg>");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

.gae-who-col.seniors li::before {
  background-color: rgba(180, 83, 9, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%23B45309' d='M6.5 11L3 7.5l1-1 2.5 2.5L12 3.5l1 1z'/></svg>");
}

.gae-who-col.exclusions li::before {
  background-color: rgba(239, 68, 68, 0.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%23DC2626' d='M4 4l8 8m0-8l-8 8' stroke='%23DC2626' stroke-width='2'/></svg>");
}

.gae-who-foot {
  margin-top: 36px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-who-foot-card {
  padding: 24px 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bg-warm), #fff);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gae-who-foot-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 720px;
}

/* ─── ATHLETIC PERFORMANCE ─── */
.gae-perf {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  padding: 100px 0;
}

.gae-perf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

.gae-perf-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gae-perf-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.gae-perf-item .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(14, 116, 144, 0.12);
  color: var(--athlete);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.gae-perf-item h5 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
}

.gae-perf-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.gae-perf-graph {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 56px rgba(14, 47, 107, 0.06);
}

.gae-perf-graph h4 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 8px;
}

.gae-perf-graph .sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 20px;
}

.gae-perf-svg {
  width: 100%;
  height: 280px;
}

.gae-perf-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.gae-perf-legend span {
  font-size: 12px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gae-perf-legend span .sw {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.gae-perf-cases {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gae-perf-case {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gae-perf-case .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--athlete);
  font-weight: 700;
}

.gae-perf-case h5 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}

.gae-perf-case .outcome {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ─── PAIN COUNTER ─── */
.gae-pain-counter {
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: 24px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 16px;
  align-items: center;
}

.gae-pain-counter .pane {
  text-align: center;
}

.gae-pain-counter .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.gae-pain-counter .num {
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.gae-pain-counter .num.before {
  color: #ef4444;
}

.gae-pain-counter .num.after {
  color: var(--amber);
}

.gae-pain-counter .meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.gae-pain-counter .arrow {
  font-size: 36px;
  color: var(--cyan);
}

/* ─── WALKTHROUGH ─── */
.gae-walk {
  background: #fff;
  padding: 100px 0;
}

.gae-walk-steps {
  margin-top: 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.gae-walk-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.gae-walk-step {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gae-walk-step .num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
}

.gae-walk-step h5 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}

.gae-walk-step p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.gae-walk-step .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 700;
}

.gae-walk-step .family-note {
  font-size: 11px;
  color: var(--amber-deep);
  font-weight: 600;
}

/* ─── PRICING ─── */
.gae-pricing {
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  padding: 100px 0;
}

.gae-pricing-card {
  max-width: 1100px;
  margin: 48px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 36px 80px rgba(14, 47, 107, 0.1);
  position: relative;
  overflow: hidden;
}

.gae-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--cyan-deep));
}

.gae-pricing-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.gae-pricing-hero .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 700;
}

.gae-pricing-hero .price {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
  margin: 12px 0;
}

.gae-pricing-hero .price small {
  font-size: 26px;
}

.gae-pricing-hero .note {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
}

.gae-pricing-vs {
  background: var(--bg);
  border-radius: 18px;
  padding: 24px 28px;
}

.gae-pricing-vs .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 13px;
}

.gae-pricing-vs .row:last-child {
  border-bottom: none;
}

.gae-pricing-vs .row .l {
  color: var(--ink-2);
}

.gae-pricing-vs .row .r {
  font-weight: 700;
  color: var(--navy);
}

.gae-pricing-vs .row.gae {
  background: rgba(245, 158, 11, 0.08);
  margin: 8px -12px 0;
  padding: 12px;
  border-radius: 10px;
}

.gae-pricing-vs .row.gae .l {
  color: var(--amber-deep);
  font-weight: 700;
}

.gae-pricing-vs .row.gae .r {
  color: var(--amber-deep);
}

.gae-pricing-bonus {
  margin-top: 28px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.06), #fff);
  border: 1px solid rgba(14, 116, 144, 0.2);
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

.gae-pricing-bonus strong {
  color: var(--athlete);
}

.gae-pricing-included {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gae-pricing-included .item {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gae-pricing-included .item::before {
  content: '✓';
  color: var(--wa);
  font-weight: 700;
}

.gae-emi {
  margin-top: 32px;
  padding: 28px;
  background: var(--bg);
  border-radius: 16px;
}

.gae-emi h4 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 16px;
}

.gae-emi-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.gae-emi-controls label {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}

.gae-emi-controls input[type="range"] {
  width: 100%;
  appearance: none;
  height: 6px;
  background: var(--line);
  border-radius: 100px;
}

.gae-emi-controls input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
}

.gae-emi-out {
  margin-top: 20px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--amber-soft), #fff);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gae-emi-out .big {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.gae-emi-out .lbl {
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 4px;
}

.gae-pricing-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gae-pricing-partners {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.gae-pricing-partners .lbl {
  font-size: 12px;
  color: var(--ink-3);
}

.gae-pricing-partners .logo {
  padding: 6px 14px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
}

/* ─── OUTCOMES ─── */
.gae-out {
  background: var(--bg);
  padding: 100px 0;
}

.gae-out-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-out-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gae-out-card .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  font-weight: 700;
}

.gae-out-card .compare {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.gae-out-card .compare .before {
  font-family: var(--serif);
  font-size: 22px;
  color: #ef4444;
  text-decoration: line-through;
}

.gae-out-card .compare .arrow {
  color: var(--ink-3);
}

.gae-out-card .compare .after {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--amber-deep);
}

.gae-out-card h5 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  margin: 0;
}

.gae-out-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* ─── DOCTOR ─── */
.gae-doc {
  background: #fff;
  padding: 100px 0;
}

.gae-doc-card {
  max-width: 1180px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-2) 100%);
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.gae-doc-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 60%);
}

.gae-doc-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3d8a, #07173d);
  border: 3px solid rgba(245, 158, 11, 0.4);
}

.gae-doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gae-doc-meta {
  position: relative;
}

.gae-doc-meta .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}

.gae-doc-meta h3 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin: 12px 0 8px;
}

.gae-doc-meta .creds {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.gae-doc-meta .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 20px 0;
  padding-left: 18px;
  border-left: 3px solid var(--amber);
}

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

.gae-doc-stats .item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gae-doc-stats .item .num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--amber);
  display: block;
  line-height: 1;
}

.gae-doc-stats .item .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  display: block;
}

.gae-doc-card .reassure {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

/* ─── WHY US ─── */
.gae-why {
  background: var(--bg);
  padding: 100px 0;
}

.gae-why-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gae-why-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber-soft), #fff);
  color: var(--amber-deep);
  font-size: 24px;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.gae-why-card h5 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}

.gae-why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ─── ADULT CHILDREN ─── */
.gae-children {
  background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
  padding: 100px 0;
}

.gae-children-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 56px;
}

.gae-children-head {
  max-width: 760px;
}

.gae-children-head h2 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin: 12px 0;
}

.gae-children-head h2 i {
  color: var(--family);
  font-style: italic;
}

.gae-children-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}

.gae-children-cards {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gae-children-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gae-children-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--family);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.gae-children-card h5 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.gae-children-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.gae-children-foot {
  margin-top: 32px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), #fff);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gae-children-foot p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 720px;
}

/* ─── MYTHS ─── */
.gae-myths {
  background: #fff;
  padding: 100px 0;
}

.gae-myths-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-myth {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.gae-myth .myth-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}

.gae-myth .fact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.gae-myth .tag {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.gae-myth .myth-row .tag {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
}

.gae-myth .fact-row .tag {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal);
}

.gae-myth p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}

.gae-myth .myth-row p {
  color: var(--ink);
  font-weight: 500;
}

/* ─── TESTIMONIALS ─── */
.gae-test {
  background: var(--bg);
  padding: 100px 0;
}

.gae-test-feat {
  margin-top: 48px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.gae-test-video {
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628, #07173d);
  position: relative;
  cursor: pointer;
}

.gae-test-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.gae-test-video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.gae-test-video .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gae-test-feat-meta {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.gae-test-feat-meta .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy);
}

.gae-test-feat-meta .who {
  font-size: 13px;
  color: var(--ink-3);
}

.gae-test-feat-meta .who strong {
  color: var(--navy);
  font-weight: 700;
}

.gae-test-grid {
  margin-top: 24px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gae-test-thumb {
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep), #1a3d8a);
  position: relative;
  cursor: pointer;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.gae-test-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7));
}

.gae-test-thumb .play-sm {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 12px;
}

.gae-test-thumb .meta {
  position: relative;
  z-index: 1;
}

.gae-test-thumb .who {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.gae-test-thumb .out {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.3;
  margin-top: 6px;
}

.gae-test-thumb .pill {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--amber);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gae-test-pain-wall {
  margin-top: 56px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-test-pain-wall h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 24px;
}

.gae-test-pain-wall .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gae-test-pain-wall .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gae-test-pain-wall .card .who {
  font-size: 12px;
  color: var(--ink-3);
}

.gae-test-pain-wall .card .scores {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.gae-test-pain-wall .card .b {
  font-family: var(--serif);
  font-size: 24px;
  color: #ef4444;
  text-decoration: line-through;
}

.gae-test-pain-wall .card .a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--amber-deep);
}

.gae-test-pain-wall .card .meta {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── FAQ ─── */
.gae-faq {
  background: #fff;
  padding: 100px 0;
}

.gae-faq-list {
  margin-top: 48px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}

.gae-faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}

.gae-faq-item summary::-webkit-details-marker {
  display: none;
}

.gae-faq-item summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 24px;
  color: var(--amber);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.gae-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.gae-faq-item .ans {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}

.gae-faq-item .ans .wa {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--wa-deep);
  font-weight: 600;
}

/* ─── HINDI ─── */
.gae-hindi {
  background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
  padding: 100px 0;
}

.gae-hindi-card {
  max-width: 1100px;
  margin: 48px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 24px 56px rgba(14, 47, 107, 0.06);
}

.gae-hindi-card h2 {
  font-family: var(--hi);
  font-size: 44px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 12px;
}

.gae-hindi-card .sub {
  font-size: 14px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.gae-hindi-card .qa-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gae-hindi-card .qa {
  padding: 20px 24px;
  background: var(--bg);
  border-radius: 14px;
  border-left: 4px solid var(--amber);
}

.gae-hindi-card .qa .q {
  font-family: var(--hi);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.gae-hindi-card .qa .a {
  font-family: var(--hi);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
}

.gae-hindi-card .cta {
  margin-top: 32px;
}

/* ─── LOCATION ─── */
.gae-loc {
  background: var(--bg);
  padding: 100px 0;
}

.gae-loc-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-loc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}

.gae-loc-card h4 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 16px;
}

.gae-loc-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gae-loc-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gae-loc-card li:last-child {
  border-bottom: none;
}

.gae-loc-card li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%23D97706' d='M6.5 11L3 7.5l1-1 2.5 2.5L12 3.5l1 1z'/></svg>");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── RELATED ─── */
.gae-related {
  background: #fff;
  padding: 80px 0;
}

.gae-related-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
}

.gae-related-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.gae-related-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.12);
}

.gae-related-card .ic {
  font-size: 22px;
  margin-bottom: 8px;
}

.gae-related-card h6 {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

/* ─── FINAL CTA ─── */
.gae-final {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 70%, var(--navy-2) 100%);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.gae-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 70% 40%, rgba(245, 158, 11, 0.15), transparent 60%), radial-gradient(ellipse 600px 400px at 20% 70%, rgba(0, 212, 255, 0.12), transparent 65%);
}

.gae-final-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 56px;
  text-align: center;
}

.gae-final h2 {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  margin: 16px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gae-final h2 i {
  color: var(--amber);
  font-style: italic;
}

.gae-final .sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.gae-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.gae-final-form {
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  backdrop-filter: blur(12px);
}

.gae-final-form h4 {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  margin: 0 0 16px;
}

.gae-final-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gae-final-form input,
.gae-final-form select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  font-family: var(--sans);
  width: 100%;
}

.gae-final-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.gae-final-form .full {
  grid-column: 1 / -1;
}

.gae-final-form label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-top: 12px;
}

.gae-final-form button {
  margin-top: 16px;
  width: 100%;
}

/* ─── STICKY BOTTOM (mobile-feeling, desktop too) ─── */
.gae-sticky-bottom {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 80;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px;
  display: flex;
  gap: 6px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(14, 47, 107, 0.18);
}

.gae-sticky-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
}

.gae-sticky-bottom a.wa {
  background: var(--wa);
  color: #fff;
  padding: 14px 24px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.gae-sticky-bottom a.call {
  color: var(--navy);
}

.gae-sticky-bottom a.book {
  background: var(--amber);
  color: #fff;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

.gae-sticky-bottom a.wa {
  animation: waPulse 3s ease-in-out infinite;
}