/* ═══════════════════════════════════════════════════════════════
   MATRIX ALPHA AI — V7 Landing Page
   Premium redesign: tighter, cleaner, Apple-level aesthetic
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #000000;
  --bg-2: #0A0A0A;
  --bg-3: #111111;
  --gold: #F0C940;
  --gold-light: #FFD95A;
  --gold-dim: rgba(240,201,64,0.15);
  --gold-glow: rgba(240,201,64,0.12);
  --teal: #00D4AA;
  --teal-dim: rgba(0,212,170,0.12);
  --teal-glow: rgba(0,212,170,0.08);
  --purple: #8B5CF6;
  --red: #FF4757;
  --white: #FFFFFF;
  --t1: #F5F5F7;
  --t2: #A1A1AA;
  --t3: #71717A;
  --t4: #3F3F46;
  --border: rgba(255,255,255,0.06);
  --border-gold: rgba(240,201,64,0.18);
  --r: 12px;
  --rl: 16px;
  --rx: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ═══ GRID BG ═══ */
.grid-bg {
  display: none;
}

/* ═══ AMBIENT GLOW ═══ */
.ambient-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 15% 15%, rgba(240,201,64,0.035), transparent),
    radial-gradient(ellipse 500px 500px at 85% 60%, rgba(240,201,64,0.02), transparent),
    radial-gradient(ellipse 400px 300px at 50% 85%, rgba(255,255,255,0.008), transparent);
}

section, nav, footer { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   NAV (with integrated scarcity bar)
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  border-bottom-color: var(--border-gold);
}

.nav-scarcity {
  text-align: center; padding: 7px 16px;
  font-size: 0.68rem; color: var(--t3);
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  background: rgba(240,201,64,0.02);
  max-height: 32px; overflow: hidden;
  transition: max-height 0.3s, opacity 0.3s, padding 0.3s;
}
.nav-scarcity strong { color: var(--gold); font-weight: 700; }
.nav.scrolled .nav-scarcity { max-height: 0; padding: 0; opacity: 0; }

.pulse-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  margin-right: 6px; vertical-align: middle;
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,71,87,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255,71,87,0); }
}

.nav-main {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  transition: padding 0.3s;
}
.nav.scrolled .nav-main { padding-top: 10px; padding-bottom: 10px; }

.nav-logo {
  font-weight: 800; font-size: 0.95rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.nav-logo span { color: var(--t3); font-weight: 400; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  color: var(--gold); font-weight: 700;
  font-size: 0.82rem; text-decoration: none;
  letter-spacing: 0.5px; transition: color 0.3s;
}
.nav-phone:hover { color: var(--gold-light); }
.nav-cta {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid rgba(240,201,64,0.35);
  color: var(--gold);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border-radius: 100px; text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold); color: var(--bg);
  box-shadow: 0 0 30px rgba(240,201,64,0.25);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 80vh;
  display: flex; align-items: center;
  padding: 140px 0 64px;
  position: relative; overflow: hidden;
}
.hero-particles {
  position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 10% 20%, rgba(240,201,64,0.3), transparent),
    radial-gradient(2px 2px at 90% 15%, rgba(240,201,64,0.2), transparent),
    radial-gradient(1.5px 1.5px at 30% 70%, rgba(0,212,170,0.25), transparent),
    radial-gradient(1.5px 1.5px at 70% 80%, rgba(139,92,246,0.2), transparent),
    radial-gradient(2px 2px at 50% 40%, rgba(240,201,64,0.15), transparent),
    radial-gradient(1px 1px at 85% 50%, rgba(0,212,170,0.15), transparent),
    radial-gradient(1.5px 1.5px at 15% 90%, rgba(240,201,64,0.2), transparent),
    radial-gradient(2px 2px at 60% 10%, rgba(139,92,246,0.15), transparent);
  animation: particleDrift 20s ease-in-out infinite alternate;
}
@keyframes particleDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5px, 5px) scale(1.01); }
  100% { transform: translate(3px, -3px) scale(1); }
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 40%, rgba(240,201,64,0.06), transparent),
    radial-gradient(ellipse 40% 30% at 30% 60%, rgba(0,212,170,0.03), transparent);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { text-align: center; max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 24px;
  background: rgba(240,201,64,0.05);
  border: 1px solid rgba(240,201,64,0.12);
  border-radius: 100px;
  font-size: 0.62rem; font-weight: 700;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 32px;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--teal); border-radius: 50%;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,212,170,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0,212,170,0); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 25%, #fff 50%, var(--gold-light) 75%, var(--gold) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 300% center; } }

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--t2); max-width: 580px;
  margin: 0 auto 24px; line-height: 1.8; font-weight: 400;
}

.hero-stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}
.hero-stat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  background: rgba(0,212,170,0.04);
  border: 1px solid rgba(0,212,170,0.12);
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--teal); letter-spacing: 0.3px;
}
.hero-stat-num { font-weight: 900; color: var(--gold); }

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

/* ═══ BUTTONS ═══ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--gold), #D4A830);
  color: var(--bg); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; border-radius: 100px;
  text-decoration: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(240,201,64,0.25), 0 0 40px rgba(240,201,64,0.08);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(240,201,64,0.4), 0 0 80px rgba(240,201,64,0.15), 0 0 120px rgba(0,212,170,0.05);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--t1); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 100px; text-decoration: none;
  cursor: pointer; transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(240,201,64,0.3);
  background: rgba(240,201,64,0.04);
  color: var(--gold);
}

/* ═══ SOCIAL PROOF BAR ═══ */
.social-proof-bar {
  padding: 16px 0;
  background: rgba(240,201,64,0.02);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}
.sp-track {
  display: flex; align-items: center; gap: 48px;
  animation: spScroll 35s linear infinite;
  width: max-content;
}
.sp-item {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  font-size: 0.65rem; font-weight: 700;
  color: var(--t3); letter-spacing: 2.5px;
  text-transform: uppercase;
}
.sp-diamond { color: var(--gold); font-size: 0.5rem; }
@keyframes spScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS (common)
   ═══════════════════════════════════════════════════════════════ */
.section { padding: 96px 0; }

.s-header { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.s-tag {
  display: inline-block;
  font-size: 0.6rem; font-weight: 800;
  color: var(--gold); letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 16px;
  position: relative; padding: 0 24px;
}
.s-tag::before, .s-tag::after {
  content: ''; position: absolute; top: 50%;
  width: 28px; height: 1px;
}
.s-tag::before { right: 100%; background: linear-gradient(90deg, transparent, rgba(240,201,64,0.4)); }
.s-tag::after { left: 100%; background: linear-gradient(90deg, rgba(240,201,64,0.4), transparent); }

.s-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 16px;
}
.s-sub { font-size: 1rem; color: var(--t2); line-height: 1.8; font-weight: 400; }

.section-link { text-align: center; margin-top: 40px; font-size: 0.88rem; }
.gold-link { color: var(--gold); text-decoration: none; font-weight: 600; }
.gold-link:hover { text-decoration: underline; }
.gold { color: var(--gold); }
.teal { color: var(--teal); }

/* ═══ GLASS CARD ═══ */
.glass-card {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,201,64,0.3), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.glass-card:hover {
  border-color: rgba(240,201,64,0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 20px rgba(240,201,64,0.04);
}
.glass-card:hover::before { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   PROBLEM — 3 Pain Cards
   ═══════════════════════════════════════════════════════════════ */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: rgba(255,71,87,0.03);
  border: 1px solid rgba(255,71,87,0.08);
  border-radius: var(--rl);
  padding: 36px 28px; text-align: center;
  transition: all 0.3s;
}
.pain-card:hover {
  border-color: rgba(255,71,87,0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.pain-stat {
  font-size: 2.8rem; font-weight: 900;
  color: var(--red); line-height: 1;
  margin-bottom: 12px;
}
.pain-card h4 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 10px; color: var(--t1);
}
.pain-card p {
  font-size: 0.88rem; color: var(--t3); line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — Timeline
   ═══════════════════════════════════════════════════════════════ */
.process-section { border-top: 1px solid var(--border); }
.timeline { max-width: 720px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(240,201,64,0.3), transparent);
  border-radius: 2px;
}
.timeline-item {
  display: flex; gap: 28px;
  margin-bottom: 40px; position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
  flex-shrink: 0; width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
  color: var(--gold); z-index: 1;
  box-shadow: 0 0 20px rgba(240,201,64,0.1);
  transition: all 0.3s;
}
.timeline-item:hover .timeline-marker {
  box-shadow: 0 0 30px rgba(240,201,64,0.2);
  border-color: var(--gold-light);
}
.timeline-content { flex: 1; padding: 6px 0; }
.timeline-days {
  font-size: 0.6rem; font-weight: 800;
  color: var(--gold); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 6px;
}
.timeline-content h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.timeline-content p { font-size: 0.88rem; color: var(--t2); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   ROI CALCULATOR
   ═══════════════════════════════════════════════════════════════ */
.roi-section { border-top: 1px solid var(--border); }
.roi-card {
  max-width: 820px; margin: 0 auto;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--rx); padding: 48px;
  position: relative; overflow: hidden;
}
.roi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.roi-inputs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin: 36px 0;
}
.roi-input-group {
  display: flex; flex-direction: column; gap: 8px;
}
.roi-input-group label {
  font-size: 0.8rem; font-weight: 700; color: var(--t2);
  letter-spacing: 0.3px;
}
.roi-select, .roi-number-input {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  color: var(--t1); font-family: inherit;
  font-size: 0.92rem; font-weight: 600;
  transition: border-color 0.3s; outline: none;
}
.roi-select:focus, .roi-number-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,201,64,0.1);
}
.roi-select option { background: var(--bg-2); color: var(--t1); }
.roi-range-wrap { display: flex; align-items: center; gap: 14px; }
.roi-range-wrap input[type="range"] { flex: 1; }
.roi-range-val {
  font-size: 1.1rem; font-weight: 900; color: var(--gold);
  min-width: 48px; text-align: right;
}
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: rgba(240,201,64,0.1);
  border-radius: 4px; outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px;
  background: var(--gold); border-radius: 50%; cursor: pointer;
  box-shadow: 0 0 0 4px rgba(240,201,64,0.12), 0 0 16px rgba(240,201,64,0.15);
  transition: box-shadow 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(240,201,64,0.08), 0 0 24px rgba(240,201,64,0.25);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--gold); border-radius: 50%; border: none; cursor: pointer;
}
.roi-results {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 28px;
}
.roi-result-card {
  text-align: center; padding: 28px 20px;
  border-radius: var(--rl);
}
.roi-result-card.roi-lost {
  background: rgba(255,71,87,0.04);
  border: 1px solid rgba(255,71,87,0.12);
}
.roi-result-card.roi-captured {
  background: rgba(0,212,170,0.04);
  border: 1px solid rgba(0,212,170,0.12);
}
.roi-result-label {
  font-size: 0.65rem; color: var(--t3);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px; font-weight: 700;
}
.roi-result-number {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; line-height: 1;
  margin-bottom: 6px; letter-spacing: -1px;
}
.roi-lost .roi-result-number { color: var(--red); }
.roi-captured .roi-result-number { color: var(--teal); }
.roi-result-sub { font-size: 0.75rem; color: var(--t3); }
.roi-cta { text-align: center; }

/* ═══ CASE STUDIES ═══ */
.case-studies-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.case-card { text-align: left; padding: 28px; }
.case-icon { font-size: 1.8rem; margin-bottom: 12px; }
.case-location {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold);
  margin-bottom: 10px; font-weight: 600;
}
.case-text {
  font-size: 0.88rem; line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.case-text strong { color: var(--teal); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   GUARANTEE — Compact & Bold
   ═══════════════════════════════════════════════════════════════ */
.guarantee-section {
  padding: 80px 0;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(240,201,64,0.04), transparent);
}
.guarantee-inner {
  text-align: center;
  max-width: 700px; margin: 0 auto;
}
.guarantee-badge { margin-bottom: 20px; }
.guarantee-badge svg {
  max-width: 80px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(240,201,64,0.3));
}
.guarantee-headline {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 16px;
}
.guarantee-body {
  font-size: 1rem; color: var(--t2);
  line-height: 1.8; max-width: 540px;
  margin: 0 auto 28px;
}
.guarantee-badges-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.g-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: rgba(0,212,170,0.05);
  border: 1px solid rgba(0,212,170,0.12);
  border-radius: 100px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--teal); letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.comparison-section { border-top: 1px solid var(--border); }
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--rl);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%; min-width: 640px;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.comparison-table thead {
  background: rgba(240,201,64,0.03);
}
.comparison-table th {
  padding: 18px 14px;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--t3); text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.comparison-table th.ct-highlight {
  color: var(--gold);
  background: rgba(240,201,64,0.06);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
}
.comparison-table td {
  padding: 14px;
  color: var(--t2);
  border-bottom: 1px solid var(--border);
  vertical-align: middle; line-height: 1.5;
}
.comparison-table td.ct-feature {
  font-weight: 700; color: var(--t1);
  white-space: nowrap;
}
.comparison-table td.ct-highlight {
  color: var(--gold);
  background: rgba(240,201,64,0.03);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.comparison-table td.ct-highlight strong { color: var(--gold-light); }
.comparison-table tbody tr:last-child td.ct-highlight {
  border-bottom: 2px solid var(--gold);
}
.comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.015);
}
.scroll-hint {
  display: none; text-align: center;
  font-size: 0.68rem; color: var(--t4);
  padding: 10px; letter-spacing: 0.5px;
}

/* ═══ FAQ ═══ */
.faq-section { border-top: 1px solid var(--border); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer;
  font-size: 0.95rem; font-weight: 600;
  color: var(--t1); transition: color 0.3s;
  background: none; border: none; width: 100%;
  text-align: left; font-family: inherit;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.3rem; color: var(--gold);
  transition: transform 0.3s; flex-shrink: 0;
  margin-left: 16px; font-weight: 300;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.88rem; color: var(--t2); line-height: 1.8;
}

/* ═══ FINAL CTA + BOOKING ═══ */
.final-cta {
  padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(240,201,64,0.05), transparent);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900; margin-bottom: 16px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  letter-spacing: -1px;
}
.final-cta > .container > p {
  font-size: 1rem; color: var(--t2);
  max-width: 500px; margin: 0 auto 28px;
  line-height: 1.8; font-weight: 400;
}
.final-cta-phone { margin-bottom: 28px; }
.phone-big {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.4rem; font-weight: 800;
  color: var(--gold); text-decoration: none;
  letter-spacing: 1px; transition: color 0.3s;
}
.phone-big:hover { color: var(--gold-light); }
.booking-widget {
  max-width: 700px; margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rx); overflow: hidden;
}
.booking-widget iframe { min-height: 600px; }
.final-note {
  font-size: 0.68rem; color: var(--t4);
  margin-top: 20px;
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 36px 0 100px;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  text-align: center;
}
.footer-brand {
  font-size: 0.85rem; font-weight: 800;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.footer-phone { margin-bottom: 10px; }
.footer-phone-link { font-size: 1rem; font-weight: 700; }
.footer-links {
  display: flex; justify-content: center; gap: 24px; margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.72rem; color: var(--t3);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.6rem; color: var(--t4); }

/* ═══ STICKY MOBILE CTA ═══ */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px; gap: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-cta-book {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--gold), #B8953E);
  color: var(--bg); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 100px; text-decoration: none;
}
.sticky-cta-call {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(240,201,64,0.3);
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 100px; text-decoration: none;
}

/* ═══ EXIT POPUP ═══ */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.exit-popup-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup {
  background: var(--bg-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--rx);
  padding: 44px 36px; max-width: 440px; width: 100%;
  text-align: center; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(240,201,64,0.08);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.exit-popup-overlay.active .exit-popup { transform: translateY(0); }
.exit-popup-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none;
  color: var(--t3); font-size: 1.6rem;
  cursor: pointer; transition: color 0.3s; line-height: 1;
}
.exit-popup-close:hover { color: var(--t1); }
.exit-popup h3 {
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: 10px; letter-spacing: -0.5px;
}
.exit-popup-sub {
  font-size: 0.92rem; color: var(--t2);
  line-height: 1.7; margin-bottom: 24px;
}
.exit-popup-form { display: flex; flex-direction: column; gap: 10px; }
.exit-input {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  color: var(--t1); font-family: inherit;
  font-size: 0.92rem; outline: none;
  transition: border-color 0.3s;
}
.exit-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,201,64,0.1);
}
.exit-input::placeholder { color: var(--t4); }
.exit-submit { margin-top: 4px; width: 100%; justify-content: center; }
.exit-popup-note { font-size: 0.68rem; color: var(--t4); margin-top: 14px; }

/* ═══ SOPHIA WIDGET ═══ */
.sophia-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
}
.sophia-bubble {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #D4A830, #e8c86e);
  color: #000000; text-decoration: none;
  padding: 14px 22px; border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  box-shadow: 0 4px 24px rgba(200,162,78,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sophia-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 32px rgba(200,162,78,0.6);
}

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ═══ FLOAT & PULSE ═══ */
.float { animation: floatBob 6s ease-in-out infinite; }
@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.cta-pulse { animation: ctaPulse 3s ease-in-out infinite; }
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(240,201,64,0.2); }
  50% { box-shadow: 0 4px 40px rgba(240,201,64,0.35), 0 0 50px rgba(240,201,64,0.08); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .s-header { margin-bottom: 40px; }
  .hero { min-height: auto; padding: 110px 0 48px; }
  .hero h1 { letter-spacing: -1px; }
  .nav-phone { display: none; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .guarantee-section { padding: 56px 0; }
  .guarantee-headline { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .scroll-hint { display: block; }
  .roi-card { padding: 32px 20px; border-radius: var(--rl); }
  .roi-inputs { grid-template-columns: 1fr; }
  .roi-results { grid-template-columns: 1fr; }
  .timeline::before { left: 18px; }
  .timeline-marker { width: 38px; height: 38px; font-size: 0.7rem; }
  .timeline-item { gap: 18px; margin-bottom: 32px; }
  .sticky-mobile-cta { display: flex; }
  .footer { padding-bottom: 80px; }
  .sophia-widget { bottom: 68px; right: 16px; }
  .sophia-bubble { padding: 12px 18px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-gold { padding: 16px 28px; font-size: 0.72rem; }
  .btn-ghost { padding: 14px 24px; font-size: 0.72rem; }
  .nav-logo { font-size: 0.82rem; letter-spacing: 3px; }
  .nav-cta { padding: 8px 20px; font-size: 0.6rem; }
  .hero-eyebrow { margin-bottom: 20px; font-size: 0.55rem; }
  .hero-sub { margin-bottom: 16px; }
  .hero-stats-row { gap: 8px; }
  .hero-stat-pill { font-size: 0.62rem; padding: 6px 12px; }
  .pain-stat { font-size: 2.2rem; }
  .pain-card { padding: 28px 20px; }
  .phone-big { font-size: 1.2rem; }
  .exit-popup { padding: 28px 20px; }
  .g-badge { font-size: 0.6rem; padding: 6px 10px; }
}

@media (max-width: 375px) {
  .hero { padding: 96px 0 36px; }
  .hero h1 { font-size: 1.7rem; margin-bottom: 16px; }
  .hero-sub { font-size: 0.88rem; }
  .hero-ctas { flex-direction: column; }
  .btn-gold, .btn-ghost { width: 100%; justify-content: center; }
}

/* ═══ HERO LEAD FORM (Above the fold) ═══ */
.hero-form-wrapper {
  margin: 2.5rem auto 0;
  max-width: 560px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 560px;
}
.hf-row {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.hf-input, .hf-select {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(240,201,64,0.35);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}
.hf-input::placeholder { color: rgba(255,255,255,0.45); }
.hf-input:focus, .hf-select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(240,201,64,0.04);
  box-shadow: 0 0 20px rgba(240,201,64,0.08);
}
.hf-select { color: rgba(255,255,255,0.45); cursor: pointer; }
.hf-select option { background: #1a1a2e; color: #fff; }
.hf-submit {
  width: 100%;
  max-width: 560px;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #F0C940, #D4A830);
  color: #000000;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(240,201,64,0.2);
}
.hf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,201,64,0.35), 0 0 60px rgba(0,212,170,0.1);
}
.hf-trust {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
@media (max-width: 600px) {
  .hf-row { flex-direction: column; }
  .hero-form-wrapper { max-width: 100%; }
}

/* ═══ DEMO BUTTON PULSE ═══ */
.btn-demo-pulse {
  animation: demoPulse 2s ease-in-out infinite;
  border-color: #4ecdc4 !important;
  color: #4ecdc4 !important;
}
.btn-demo-pulse:hover { background: rgba(78,205,196,0.15); }
@keyframes demoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(78,205,196,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(78,205,196,0); }
}

/* ═══ EXIT INTENT POPUP ═══ */
.exit-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}
.exit-overlay.active { display: flex; }
.exit-popup {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(240,201,64,0.3);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
}
.exit-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  cursor: pointer;
}
.exit-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.exit-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.exit-cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #F0C940, #D4A830);
  color: #000000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s;
}
.exit-cta:hover { transform: translateY(-2px); }
.exit-phone {
  display: block;
  margin-top: 1rem;
  color: #4ecdc4;
  font-size: 0.9rem;
}
