/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--fg-muted);
  background: var(--bg);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── FOCUS STATES ─── */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── TOKENS ─── */
:root {
  --navy:    #030b2f;
  --purple:  #a361ed;
  --blue:    #385afb;
  --pink:    #f06ec9;
  --grad: linear-gradient(110deg, var(--blue), var(--purple) 55%, var(--pink));
  --green:   #34d399;
  --red:     #f87171;

  --bg:          #030b2f;
  --fg:          #F3F5FC;
  --fg-muted:    #9CA6C4;
  --glass-bg:    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  --glass-border: rgba(255,255,255,0.10);
  --divider:     rgba(255,255,255,0.09);
  --purple-tint: rgba(163,97,237,0.12);
}

/* ─── TYPE ─── */
h1, h2, h3 {
  font-family: 'Roboto Flex', sans-serif;
  color: var(--fg);
  line-height: 1.15;
}
.heading-display {
  font-variation-settings: 'wdth' 120;
  font-weight: 800;
}
.grad-text {
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  font-family: 'Roboto Flex', sans-serif;
  font-variation-settings: 'wdth' 72;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.eyebrow.grad-text { display: inline-block; }

/* ─── LAYOUT ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 56px 0; }
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 36px 0; }
}
.section-h2 {
  font-size: 40px;
  font-variation-settings: 'wdth' 120;
  font-weight: 800;
  color: var(--fg);
  text-align: center;
  line-height: 1.15;
}
.section-sub {
  font-size: 18px;
  color: var(--fg-muted);
  text-align: center;
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.65;
}
@media (max-width: 767px) {
  .section-h2 { font-size: 28px; }
  .section-sub { font-size: 16px; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: none; cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600; border-radius: 999px;
  min-height: 48px; transition: transform 0.15s, opacity 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-accent     { background: var(--grad); color: #fff; font-size: 16px; padding: 14px 28px; box-shadow: 0 8px 30px rgba(163,97,237,0.25); }
.btn-accent:hover { box-shadow: 0 10px 36px rgba(163,97,237,0.4); }
.btn-outline    { background: transparent; color: var(--fg); border: 1px solid var(--glass-border); font-size: 16px; padding: 13px 26px; }
.btn-outline:hover { border-color: rgba(163,97,237,0.5); }
.btn-white      { background: #fff; color: var(--navy); font-size: 16px; padding: 14px 28px; }
.btn-white:hover { transform: translateY(-1px) scale(1.01); }
.btn-sm         { font-size: 14px; padding: 10px 20px; min-height: 40px; }
.btn-accent-full { background: var(--grad); color: #fff; font-size: 15px; padding: 14px 20px; display: flex; width: 100%; align-items: center; justify-content: center; border: none; cursor: pointer; font-family: 'Open Sans', sans-serif; font-weight: 600; border-radius: 999px; min-height: 48px; box-shadow: 0 8px 30px rgba(163,97,237,0.25); }
.btn-nav        { background: var(--grad); color: #fff; font-size: 14px; padding: 9px 20px; min-height: 36px; }

/* ─── CARDS (glass) ─── */
.card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 28px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(163,97,237,0.35); }
.card-title { font-family: 'Roboto Flex', sans-serif; font-variation-settings: 'wdth' 110; font-weight: 700; font-size: 18px; color: var(--fg); margin-bottom: 10px; }
.card-copy  { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }
.icon-badge {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}

/* ─── FADE IN ─── */
.fi { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }

/* Grids */
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 900px) { .g4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px) { .g3, .g2 { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .g4 { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── DECORATIVE GRADIENT ORBS ─── */
.orb-wrap { position: relative; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; background: var(--grad); filter: blur(80px); opacity: 0.18; pointer-events: none; z-index: 0; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(3,11,47,0.75);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
  height: 64px; display: flex; align-items: center;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 24px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--fg-muted); font-family: 'Open Sans', sans-serif; }
.nav-links a:hover { color: var(--fg); }
@media (max-width: 767px) { .nav-links { display: none; } }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 80px 0 60px;
}
#hero .orb.o1 { width: 420px; height: 420px; top: -160px; right: -140px; }
#hero .orb.o2 { width: 340px; height: 340px; top: 140px; left: -160px; opacity: 0.14; background: var(--blue); filter: blur(90px); }
.hero-grid {
  display: grid; grid-template-columns: 52fr 48fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}
@media (max-width: 900px) {
  #hero { min-height: auto; padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Hero text stagger */
.h-eyebrow { animation: fadeUp 0.45s ease 0s both; }
.h-h1      { animation: fadeUp 0.45s ease 0.08s both; }
.h-sub     { animation: fadeUp 0.45s ease 0.16s both; }
.h-ctas    { animation: fadeUp 0.45s ease 0.24s both; }
.h-visual  { animation: fadeUp 0.45s ease 0.32s both, floaty 6s ease-in-out 1s infinite; }

@keyframes fadeUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-live-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; background: var(--glass-bg); border: 1px solid var(--glass-border);
  padding: 7px 14px; font-size: 12px; font-weight: 600; color: var(--fg-muted);
  margin-bottom: 22px;
}
.hero-live-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: dotPulse 1.6s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-h1 {
  font-size: 58px;
  font-variation-settings: 'wdth' 125;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 20px;
}
@media (max-width: 900px) { .hero-h1 { font-size: 36px; } }
@media (max-width: 400px) { .hero-h1 { font-size: 30px; } }

.hero-sub {
  font-size: 19px; color: var(--fg-muted);
  line-height: 1.65; max-width: 440px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .hero-sub { font-size: 17px; } }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}

/* ─── REPLAY CONTAINER (hero right) — glass call-demo card ─── */
.replay-frame {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 24px; overflow: hidden;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 25px 60px rgba(3,11,47,0.45);
}
.rf-topbar {
  padding: 16px 18px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--divider);
}
.rf-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; animation: dotPulse 1.6s ease-in-out infinite; }
.rf-label { font-size: 13px; color: var(--fg); font-weight: 600; flex: 1; font-family: 'Open Sans', sans-serif; }
.rf-timer { font-size: 12px; color: var(--fg-muted); font-variant-numeric: tabular-nums; font-family: 'Open Sans', sans-serif; }
.rf-chat {
  padding: 20px 18px; min-height: 300px;
  display: flex; flex-direction: column; gap: 10px;
}
.rb {
  padding: 11px 15px; font-size: 14px; line-height: 1.5;
  max-width: 84%; opacity: 0;
  animation-fill-mode: forwards; animation-name: bIn; animation-duration: 0.35s;
  font-family: 'Open Sans', sans-serif;
}
@keyframes bIn { from{opacity:0;transform:translateY(5px);}to{opacity:1;transform:translateY(0);} }
.rb.ai     { background: var(--grad); color: #fff; border-radius: 4px 14px 14px 14px; align-self: flex-start; }
.rb.ai .rb-tag { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; margin-bottom: 3px; }
.rb.caller { background: rgba(255,255,255,0.08); border: 1px solid var(--glass-border); color: var(--fg); border-radius: 14px 4px 14px 14px; align-self: flex-end; }
.rf-end {
  background: rgba(255,255,255,0.03); padding: 10px 18px;
  font-size: 12px; color: var(--fg-muted); font-family: 'Open Sans', sans-serif;
  opacity: 0; transition: opacity 0.5s;
}
.rf-end.vis { opacity: 1; }
.rf-results {
  padding: 14px 18px;
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transition: opacity 0.5s;
  border-top: 1px solid var(--divider);
}
.rf-results.vis { opacity: 1; }
.rf-res { font-size: 12px; color: var(--fg); font-family: 'Open Sans', sans-serif; }
.replay-caption { font-size: 13px; color: var(--fg-muted); text-align: center; margin-top: 14px; }

/* ═══════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════ */
#trust-strip { border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.trust-label-row {
  text-align: center;
  font-size: 13px; font-weight: 500;
  color: var(--fg-muted); margin-bottom: 0;
  max-width: 520px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   WHY IT MATTERS
═══════════════════════════════════════ */
.stats-row {
  display: flex; justify-content: center; gap: 64px;
  flex-wrap: wrap; margin-top: 48px;
}
.stat-block { text-align: center; }
.stat-num {
  font-family: 'Roboto Flex', sans-serif;
  font-variation-settings: 'wdth' 120;
  font-weight: 800; font-size: 52px;
  line-height: 1;
}
.stat-label { font-size: 15px; color: var(--fg-muted); margin-top: 6px; max-width: 200px; line-height: 1.5; }
.stat-source { font-size: 11px; color: var(--fg-muted); opacity: 0.7; margin-top: 4px; }
@media (max-width: 767px) { .stats-row { flex-direction: column; gap: 36px; align-items: center; } .stat-num { font-size: 44px; } }

/* ═══════════════════════════════════════
   HOW IT WORKS — STEPPER
═══════════════════════════════════════ */
.stepper-dots { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; }
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--glass-border); background: var(--glass-bg); color: var(--fg-muted);
  font-size: 14px; font-weight: 600; display: flex; align-items: center;
  justify-content: center; cursor: pointer; transition: all 0.2s;
  font-family: 'Open Sans', sans-serif;
}
.step-dot.active { background: var(--grad); color: #fff; border-color: transparent; }
.stepper-content { max-width: 680px; margin: 0 auto; min-height: 270px; position: relative; }
.step-panel {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; transform: translateX(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.step-panel.active { opacity: 1; transform: translateX(0); position: relative; pointer-events: auto; }
.step-watermark {
  font-family: 'Roboto Flex', sans-serif; font-variation-settings: 'wdth' 120;
  font-size: 96px; font-weight: 900; color: rgba(255,255,255,0.045);
  position: absolute; top: -20px; left: -10px; line-height: 1;
  user-select: none; z-index: 0;
}
.step-inner { position: relative; z-index: 1; }
.step-day { font-size: 12px; color: var(--purple); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.step-title { font-family: 'Roboto Flex', sans-serif; font-variation-settings: 'wdth' 110; font-weight: 700; font-size: 24px; color: var(--fg); margin-bottom: 12px; }
.step-desc { font-size: 16px; color: var(--fg-muted); line-height: 1.75; }
.step-callout {
  background: var(--purple-tint); border-left: 3px solid var(--purple);
  padding: 12px 16px; font-size: 14px; color: var(--fg);
  margin-top: 18px; border-radius: 0 8px 8px 0;
}
.stepper-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.step-btn {
  background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--fg-muted);
  padding: 10px 24px; border-radius: 999px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: 'Open Sans', sans-serif; min-height: 40px;
  transition: border-color 0.2s;
}
.step-btn:hover:not(:disabled) { border-color: rgba(163,97,237,0.5); color: var(--fg); }
.step-btn:disabled { opacity: 0.35; cursor: default; }
.stepper-final { text-align: center; margin-top: 40px; }
.stepper-final p { font-size: 16px; color: var(--fg-muted); margin-bottom: 16px; }

/* ═══════════════════════════════════════
   FEATURES — WHAT'S BUILT IN
═══════════════════════════════════════ */
.feature-proof-label {
  font-family: 'Roboto Flex', sans-serif;
  font-variation-settings: 'wdth' 110;
  font-weight: 700; font-size: 15px;
  color: var(--fg); text-align: center; margin: 56px 0 20px;
}
/* Gmail-style mockup deliberately keeps its own light "screenshot" chrome */
.gmail-mockup {
  max-width: 480px; margin: 0 auto;
  font-family: -apple-system, system-ui, Roboto, sans-serif;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border-radius: 12px; overflow: hidden;
}

/* ═══════════════════════════════════════
   WHO IT'S FOR
═══════════════════════════════════════ */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
@media (max-width: 767px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-card { border-radius: 16px; padding: 32px; border: 1px solid var(--glass-border); background: var(--glass-bg); }
.fit-card.ideal { border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.05); }
.fit-card-title { font-family: 'Roboto Flex', sans-serif; font-variation-settings: 'wdth' 110; font-weight: 700; font-size: 17px; margin-bottom: 20px; color: var(--fg); }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.fit-list li { font-size: 15px; line-height: 1.6; display: flex; gap: 10px; align-items: flex-start; color: var(--fg-muted); }
.fit-card.ideal .fit-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.fit-card.not-ideal .fit-list li::before { content: '—'; color: var(--fg-muted); font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing-grid { display: flex; justify-content: center; margin-top: 40px; position: relative; }
.pricing-card {
  border: 1px solid var(--glass-border); border-radius: 24px;
  padding: 40px; background: var(--glass-bg); backdrop-filter: blur(14px);
  position: relative; overflow: hidden;
  max-width: 460px; width: 100%;
}
.pricing-card .orb { width: 220px; height: 220px; top: -80px; right: -80px; opacity: 0.22; }
.pricing-tier {
  font-family: 'Roboto Flex', sans-serif;
  font-variation-settings: 'wdth' 80;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted);
  position: relative; z-index: 1;
}
.pricing-price {
  font-family: 'Roboto Flex', sans-serif;
  font-variation-settings: 'wdth' 115;
  font-weight: 800; font-size: 44px;
  margin-top: 8px; line-height: 1;
  position: relative; z-index: 1;
}
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--fg-muted); }
.pricing-setup { font-size: 13px; color: var(--fg-muted); margin-top: 4px; position: relative; z-index: 1; }
.pricing-tagline { font-size: 14px; color: var(--fg-muted); margin: 14px 0 18px; position: relative; z-index: 1; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; position: relative; z-index: 1; }
.pricing-features li { font-size: 14px; color: var(--fg-muted); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-note { text-align: center; font-size: 14px; color: var(--fg-muted); margin-top: 28px; }
.pricing-scarcity {
  text-align: center; font-size: 14px; color: var(--fg-muted);
  max-width: 480px; margin: 20px auto 0; line-height: 1.6;
}

/* ═══════════════════════════════════════
   ROI CALCULATOR
═══════════════════════════════════════ */
.calc-grid-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 960px; margin: 40px auto 0; }
@media (max-width: 900px) { .calc-grid-wrap { grid-template-columns: 1fr; gap: 32px; } }
.slider-row { margin-bottom: 28px; }
.slider-label-row {
  display: flex; justify-content: space-between;
  font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 10px;
}
.slider-val { color: var(--purple); }
input[type=range] {
  width: 100%; height: 6px; appearance: none;
  background: var(--glass-border); border-radius: 3px;
  outline: none; cursor: pointer; padding: 16px 0; min-height: 44px;
}
input[type=range]::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: var(--grad); cursor: pointer;
  box-shadow: 0 2px 10px rgba(163,97,237,0.5);
}
input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border: none;
  border-radius: 50%; background: var(--purple); cursor: pointer;
}
.calc-result-box {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 32px; text-align: center;
  backdrop-filter: blur(14px);
}
.calc-hero-num {
  font-family: 'Roboto Flex', sans-serif; font-variation-settings: 'wdth' 120; font-weight: 800;
  font-size: 44px; line-height: 1; margin: 6px 0;
}
.calc-hero-label { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.calc-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; }
.calc-row.divider-top { border-top: 1px solid var(--divider); margin-top: 8px; padding-top: 16px; }
.calc-row .label { color: var(--fg-muted); }
.calc-row .value { font-family: 'Roboto Flex', sans-serif; font-variation-settings: 'wdth' 110; font-weight: 700; color: var(--fg); }
.calc-row.highlight .value { color: var(--green); font-size: 18px; }
.cc-val.pulse { animation: pulse 0.15s ease; }
@keyframes pulse { 0%{transform:scale(1);}50%{transform:scale(1.04);}100%{transform:scale(1);} }
.calc-result { margin-top: 20px; opacity: 0; transition: opacity 0.4s; }
.calc-result.vis { opacity: 1; }
.calc-result p { font-size: 14px; color: var(--fg-muted); margin-bottom: 14px; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-trigger {
  width: 100%; padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; background: none; border: none;
  text-align: left; font-family: 'Open Sans', sans-serif; min-height: 48px;
}
.faq-q { font-size: 16px; font-weight: 600; color: var(--fg); padding-right: 16px; line-height: 1.4; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--purple); transition: transform 0.25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding-bottom: 20px; font-size: 15px; color: var(--fg-muted); line-height: 1.75; }

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.final-cta-card {
  position: relative; overflow: hidden; border-radius: 32px;
  background: var(--grad); padding: 64px 32px; text-align: center;
}
.final-cta-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 55%);
  pointer-events: none;
}
.final-h2 {
  position: relative; font-size: 40px; font-variation-settings: 'wdth' 120;
  font-weight: 800; color: #fff;
  text-align: center; line-height: 1.15; max-width: 600px; margin: 0 auto;
}
@media (max-width: 767px) { .final-h2 { font-size: 28px; } .final-cta-card { padding: 44px 20px; } }
.final-sub { position: relative; color: rgba(255,255,255,0.9); font-size: 18px; text-align: center; max-width: 460px; margin: 16px auto 0; line-height: 1.65; }
.final-cta-group { position: relative; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.ai-buttons-label { font-size: 13px; color: var(--fg-muted); text-align: center; margin-top: 48px; margin-bottom: 14px; }
.ai-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-ai {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px; font-size: 14px;
  font-weight: 600; cursor: pointer; border: 1px solid var(--glass-border);
  background: var(--glass-bg); color: var(--fg);
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.2s;
}
.btn-ai:hover { border-color: rgba(163,97,237,0.5); }
.btn-ai svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { border-top: 1px solid var(--divider); padding: 40px 0; }
.footer-logo img { height: 34px; width: auto; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-top: 8px; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--divider);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; margin-top: 32px;
}
.footer-copy { font-size: 13px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 13px; color: var(--fg-muted); }
.footer-links a:hover { color: var(--fg); }
@media (max-width: 767px) {
  footer .container { text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; }
  .footer-links { justify-content: center; }
}

/* ═══════════════════════════════════════
   BOOK PAGE
═══════════════════════════════════════ */
#book-hero { padding: 64px 0 8px; text-align: center; }
.book-widget-section { padding: 32px 0 96px; }
.book-widget-wrap {
  max-width: 760px; margin: 0 auto;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg); backdrop-filter: blur(14px);
  padding: 6px;
  box-shadow: 0 25px 60px rgba(3,11,47,0.45);
}
.calendly-inline-widget { border-radius: 20px; overflow: hidden; }

/* ═══════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════ */
.legal-hero { padding: 56px 0 8px; text-align: center; }
.legal-updated { font-size: 13px; color: var(--fg-muted); text-align: center; margin-top: 8px; }
.legal-content {
  max-width: 720px; margin: 40px auto 0;
  font-size: 15px; line-height: 1.75; color: var(--fg-muted);
}
.legal-content h2 {
  font-size: 22px; font-variation-settings: 'wdth' 110; font-weight: 700;
  color: var(--fg); margin: 40px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--purple); text-decoration: underline; }
.legal-note {
  background: var(--purple-tint); border-left: 3px solid var(--purple);
  padding: 12px 16px; font-size: 14px; color: var(--fg);
  margin: 0 0 32px; border-radius: 0 8px 8px 0;
}
