/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --purple:       #6C3FF5;
  --purple-dim:   #8B61F8;
  --purple-glow:  rgba(108,63,245,0.18);
  --purple-faint: rgba(108,63,245,0.07);
  --dark:         #0A0A0F;
  --dark-2:       #101018;
  --dark-3:       #16161F;
  --dark-card:    #1C1C28;
  --border-dark:  rgba(255,255,255,0.08);
  --border-dark2: rgba(255,255,255,0.05);
  --amber:        #F59E0B;
  --amber-dim:    rgba(245,158,11,0.12);
  --green:        #22C55E;
  --red:          #EF4444;
  --white:        #FFFFFF;
  --text-1:       rgba(255,255,255,0.95);
  --text-2:       rgba(255,255,255,0.60);
  --text-3:       rgba(255,255,255,0.35);
  --light-bg:     #F8F7FF;
  --light-card:   #FFFFFF;
  --light-border: #E8E4FF;
  --ink:          #0D0B1E;
  --ink-2:        #2D2B40;
  --ink-3:        #6B6880;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--light-bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════ */
.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; }
.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
}
.label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--purple);
  border-radius: 2px;
}
.label-light { color: var(--purple-dim); }
.label-light::before { background: var(--purple-dim); }

/* ═══════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════ */
.wrap       { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.wrap-sm    { max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.wrap-md    { max-width: 900px;  margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 6px 28px rgba(108,63,245,0.38), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(108,63,245,0.5); }
.btn-xl { font-size: 17px; padding: 20px 48px; border-radius: 12px; }
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.5); color: #fff; transform: translateY(-1px); }
.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-sub {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
.cta-sub-light { color: var(--text-3); }

/* ═══════════════════════════════════════════
   1. TICKER
═══════════════════════════════════════════ */
.ticker-wrap {
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  padding: 11px 0;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--dark), transparent); }

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════
   2. HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 24px 72px;
  text-align: center;
}
/* grid noise background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(108,63,245,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,63,245,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
/* purple radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(108,63,245,0.25) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,63,245,0.15);
  border: 1px solid rgba(108,63,245,0.35);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-dim);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-dim);
  box-shadow: 0 0 6px var(--purple);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

.hero h1 {
  font-size: clamp(34px, 6vw, 66px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero h1 .serif { font-size: 1.05em; color: var(--purple-dim); }

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.75;
}

/* hero mockup chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.chip-icon { font-size: 16px; }

.hero-stars { margin-bottom: 14px; }
.star-row { display: flex; justify-content: center; align-items: center; gap: 4px; }
.star-row span { font-size: 16px; color: var(--amber); }
.star-label { font-size: 12.5px; color: var(--text-3); margin-top: 4px; }

@media (max-width: 600px) {
  .hero-badge { margin-bottom: 20px; font-size: 11px; padding: 4px 14px; }
  .hero-badge-dot { width: 5px; height: 5px; }
  .hero h1 { font-size: clamp(32px, 8.5vw, 38px); margin-bottom: 16px; line-height: 1.15; }
  .hero-sub { font-size: 14.5px; margin-bottom: 28px; line-height: 1.6; padding: 0 4px; }
  .hero-chips { gap: 8px; margin-bottom: 32px; }
  .chip { padding: 8px 12px; font-size: 11.5px; gap: 6px; }
  .chip-icon { font-size: 14px; }
  .star-row span { font-size: 14px; }
  .star-label { font-size: 11.5px; }
  .cta-sub { font-size: 16px; line-height: 1.5; margin-top: 10px; }
}

/* ═══════════════════════════════════════════
   3. MINI STATS BAR
═══════════════════════════════════════════ */
.mini-stats {
  background: var(--light-card);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  padding: 36px 24px;
}
.mini-stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mini-stat {
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid var(--border-dark);
}
.mini-stat:last-child { border-right: none; }
.mini-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  display: block;
}
.mini-stat-label {
  font-size: 12.5px;
  color: var(--ink-2);
  margin-top: 6px;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .mini-stats-grid { grid-template-columns: 1fr 1fr ; gap: 24px; }
  .mini-stat { border-right: none; border-bottom: 1px solid var(--light-border); padding: 0 0 24px; }
  .mini-stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ═══════════════════════════════════════════
   URGENCY BAR
═══════════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, #7F1D1D 0%, #991B1B 50%, #7F1D1D 100%);
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FECACA;
}
.urgency-bar span { color: #fff; }

/* ═══════════════════════════════════════════
   4. LIVE STATS / "WHILE YOU READ THIS"
═══════════════════════════════════════════ */
.live-section {
  background: var(--dark);
  padding: 88px 24px 72px;
  position: relative;
  overflow: hidden;
}
.live-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(108,63,245,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.live-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

.live-section .section-h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  text-align: center;
}
.live-section .section-h2 em {
  font-style: normal;
  color: var(--red);
}
.live-intro {
  text-align: center;
  color: var(--text-2);
  font-size: 16px;
  margin-bottom: 56px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.stats-quad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}
@media (max-width: 560px) { .stats-quad { grid-template-columns: 1fr; } }

.stat-tile {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.stat-tile:hover { border-color: rgba(108,63,245,0.35); }
.stat-tile.featured {
  border-color: rgba(108,63,245,0.4);
  background: linear-gradient(135deg, #1C1C28, #201830);
}
.stat-tile-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--purple-dim);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-tile.featured .stat-tile-num { color: var(--amber); }
.stat-tile-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.stat-tile-body { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

.live-bridge {
  text-align: center;
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 44px;
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
}
.live-bridge strong { color: var(--white); font-weight: 700; }

/* ═══════════════════════════════════════════
   5. PAIN / OBJECTIONS
═══════════════════════════════════════════ */
.pain-section {
  background: var(--light-card);
  padding: 88px 24px;
  border-top: 1px solid var(--light-border);
}
.pain-inner { max-width: 960px; margin: 0 auto; }
.pain-section .section-h2 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.12;
}
.pain-section .section-h2 span { color: var(--purple-dim); }
.pain-intro { color: var(--ink-2); margin-bottom: 52px; font-size: 16px; }

.pain-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 680px) { .pain-layout { grid-template-columns: 1fr; } }

.pain-photo {
  border-radius: 16px;
  background: linear-gradient(145deg, #f0f0f5 0%, #e8e4ff 100%);
  border: 1px solid var(--light-border);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  position: relative;
}
.pain-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(108,63,245,0.05) 0%, transparent 65%);
  z-index: 1;
}
.pain-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.pain-photo-icon { font-size: 72px; position: relative; z-index: 1; }
.pain-photo-label {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 12px 14px;
  z-index: 2;
}
.pain-photo-name { font-size: 14px; font-weight: 700; color: var(--white); }
.pain-photo-sub  { font-size: 11.5px; color: var(--text-3); margin-top: 2px; }

.objections-list { display: flex; flex-direction: column; gap: 12px; }
.obj-item {
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  transition: border-color 0.2s;
}
.obj-item:hover { border-color: rgba(108,63,245,0.3); }
.obj-x {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.obj-q { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.obj-a { font-size: 13.5px; color: var(--ink-3); line-height: 1.6; }

.pain-resolve {
  margin-top: 40px;
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: 14px;
  padding: 28px 32px;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.8;
  text-align: center;
}
.pain-resolve strong { color: var(--ink); }

/* ═══════════════════════════════════════════
   6. SYSTEM ("DONE FOR YOU")
═══════════════════════════════════════════ */
.system-section {
  background: var(--dark);
  padding: 88px 24px;
  border-top: 1px solid var(--border-dark);
}
.system-inner { max-width: 900px; margin: 0 auto; }

.system-section .section-h2 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.12;
}
.system-sub { color: var(--text-2); font-size: 16px; margin-bottom: 52px; max-width: 580px; }

/* system visual placeholder */
.system-visual {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  flex-wrap: nowrap;
  min-height: 140px;
}
.sys-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.sys-node-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid var(--border-dark);
}
.sys-node-icon.purple { background: var(--purple-glow); border-color: rgba(108,63,245,0.3); }
.sys-node-icon.amber  { background: var(--amber-dim);   border-color: rgba(245,158,11,0.25); }
.sys-node-icon.green  { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.2); }
.sys-node-label { font-size: 11.5px; font-weight: 700; color: var(--text-2); letter-spacing: 0.04em; text-align: center; }
.sys-arrow { font-size: 18px; color: var(--text-3); padding: 0 4px; flex-shrink: 0; }

.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dark2);
}
.step-row:last-child { border-bottom: none; }
.step-num {
  font-size: 38px;
  font-weight: 800;
  color: rgba(108,63,245,0.2);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-body  { font-size: 14.5px; color: var(--text-2); line-height: 1.7; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .feature-grid { grid-template-columns: 1fr; } }

.feat-chip {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-chip-check {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--green);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   7. WHO IS THIS FOR
═══════════════════════════════════════════ */
.who-section {
  background: var(--light-card);
  padding: 88px 24px;
  border-top: 1px solid var(--light-border);
}
.who-inner { max-width: 960px; margin: 0 auto; }
.who-section .section-h2 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.who-sub { color: var(--ink-3); font-size: 16px; margin-bottom: 52px; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
@media (max-width: 900px) { .who-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
.who-card {
  background: var(--light-bg);
  border: 1.5px solid var(--light-border);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.18s;
  cursor: default;
}
.who-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.who-card-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.who-card-label { font-size: 13px; font-weight: 700; color: var(--ink-2); }

.who-callout {
  background: linear-gradient(135deg, #1a1240 0%, #0D0B1E 100%);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.8;
}
.who-callout strong { color: var(--white); font-weight: 700; }
.who-arrow-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.who-arrow-list li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.who-arrow-list li::before { content: '→'; color: var(--purple-dim); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   8. WHY I'M DOING THIS
═══════════════════════════════════════════ */
.why-section {
  background: var(--dark);
  padding: 88px 24px;
  border-top: 1px solid var(--border-dark);
}
.why-inner { max-width: 960px; margin: 0 auto; }
.why-section .section-h2 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.why-section .why-sub { color: var(--text-2); font-size: 16px; margin-bottom: 52px; }

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
@media (max-width: 700px) { .why-cards { grid-template-columns: 1fr; } }

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: rgba(108,63,245,0.35); }
.why-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-dim);
  margin-bottom: 14px;
}
.why-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.why-body  { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ═══════════════════════════════════════════
   9. FOUNDER BIO
═══════════════════════════════════════════ */
.bio-section {
  background: var(--light-bg);
  padding: 88px 24px;
}
.bio-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 680px) { .bio-inner { grid-template-columns: 1fr; gap: 40px; } }

.bio-photo-wrap {
  position: sticky;
  top: 24px;
}
.bio-photo {
  border-radius: 20px;
  background: linear-gradient(145deg, #2D1B6B 0%, #1a1240 100%);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(108,63,245,0.25);
}
.bio-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(108,63,245,0.2), transparent 60%);
}
.bio-photo-emoji { font-size: 80px; position: relative; z-index: 1; }
.bio-photo-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-top: 1px solid var(--border-dark);
}
.bio-photo-name { font-size: 16px; font-weight: 800; color: var(--white); }
.bio-photo-role { font-size: 12px; color: var(--text-3); margin-top: 3px; }

.bio-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.bio-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
}

.bio-name  { font-size: 32px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.bio-title-text { font-size: 14px; font-weight: 600; color: var(--purple); margin-bottom: 24px; }

.bio-text { color: var(--ink-2); font-size: 15.5px; line-height: 1.8; }
.bio-text p { margin-bottom: 16px; }
.bio-text p:last-child { margin-bottom: 0; }

.bio-quote {
  border-left: 3px solid var(--purple);
  padding-left: 20px;
  margin: 28px 0;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   10. WHAT YOU GET (feature checklist)
═══════════════════════════════════════════ */
.get-section {
  background: var(--light-bg);
  padding: 0 24px 88px;
  border-top: 1px solid var(--light-border);
}
.get-inner { max-width: 900px; margin: 0 auto; }
.get-section .section-h2 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.get-sub { color: var(--ink-3); font-size: 16px; margin-bottom: 48px; }

.get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 600px) { .get-grid { grid-template-columns: 1fr; } }

.get-card {
  background: var(--light-card);
  border: 1.5px solid var(--light-border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.get-card:hover {
  border-color: var(--purple);
  box-shadow: 0 4px 24px rgba(108,63,245,0.08);
}
.get-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple-faint);
  border: 1px solid rgba(108,63,245,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.get-title { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.get-body  { font-size: 13px; color: var(--ink-3); line-height: 1.6; }

/* ═══════════════════════════════════════════
   11. PRICING (OFFER STACK)
═══════════════════════════════════════════ */
.pricing-section {
  background: var(--dark);
  padding: 88px 24px;
  border-top: 1px solid var(--border-dark);
}
.pricing-inner { max-width: 1040px; margin: 0 auto; }
.pricing-section .section-h2 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pricing-sub { color: var(--text-2); font-size: 16px; margin-bottom: 56px; }

/* comparison table */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
  border-radius: 16px;
}
.compare-table {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.compare-head {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 24px;
}
.compare-head-col {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
}
.compare-head-col:first-child { text-align: left; color: var(--text-2); }
.compare-head-col.featured-col { color: var(--amber); }

.compare-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 0;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-dark2);
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:nth-child(even) { background: rgba(255,255,255,0.015); }
.compare-item { font-size: 14px; color: var(--text-1); }
.compare-item small { display: block; font-size: 11.5px; color: var(--text-3); margin-top: 2px; }
.compare-val { text-align: center; font-size: 13.5px; font-weight: 600; }
.compare-yes { color: var(--green); }
.compare-star { color: var(--amber); }
.compare-no  { color: var(--text-3); }

@media (max-width: 600px) {
  .compare-head, .compare-row {
    grid-template-columns: 1.8fr 1fr 1fr;
  }
  .compare-head-col:first-child,
  .compare-row .compare-item small { display: none; }
}

/* pricing cards */
.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  align-items: start;
}
@media (max-width: 780px) { .plans-row { grid-template-columns: 1fr; gap: 32px; } }

/* BASE CARD */
.plan-card {
  background: var(--dark-card);
  border: 1.5px solid var(--border-dark);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.plan-card:hover { border-color: rgba(108,63,245,0.4); }

/* ═══ FEATURED / GROWTH CARD — PREMIUM TREATMENT ═══ */
.plan-card.featured {
  border: 2.5px solid var(--amber);
  background: linear-gradient(160deg, #27200A 0%, #1E1A08 40%, #1C1C28 100%);
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.15),
    0 8px 40px rgba(245,158,11,0.22),
    0 24px 80px rgba(245,158,11,0.10),
    inset 0 1px 0 rgba(245,158,11,0.12);
  transform: translateY(-6px);
  z-index: 2;
}
.plan-card.featured:hover {
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.25),
    0 12px 56px rgba(245,158,11,0.32),
    0 32px 100px rgba(245,158,11,0.14);
  transform: translateY(-9px);
}
/* Animated glow sweep on featured */
.plan-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(245,158,11,0.08) 50%, transparent 60%) no-repeat;
  background-size: 250% 100%;
  background-position: 200% 0;
  animation: cardSheen 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes cardSheen {
  0%, 100% { background-position: 200% 0%; }
  50% { background-position: -150% 0%; }
}

/* Corner glow on featured */
.plan-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 780px) {
  .plan-card.featured { transform: none; order: -1; }
  .plan-card.featured:hover { transform: none; }
}

.plan-badge-wrap {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.plan-badge {
  background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 50%, #F59E0B 100%);
  color: #0D0B1E;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,158,11,0.5);
}

.plan-tier {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.plan-card.featured .plan-tier {
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 0.16em;
}

/* Savings badge on featured */
.plan-savings-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}

.plan-price-row {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 4px;
  position: relative; z-index: 1;
}
.plan-currency { font-size: 22px; font-weight: 800; color: var(--white); margin-top: 8px; }
.plan-amount   { font-size: 52px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.plan-card.featured .plan-amount { font-size: 60px; color: var(--amber); }
.plan-card.featured .plan-currency { font-size: 26px; margin-top: 10px; color: var(--amber); }
.plan-per      { font-size: 12px; color: var(--text-3); align-self: flex-end; padding-bottom: 6px; }
.plan-value    { font-size: 12px; color: var(--text-3); margin-bottom: 22px; position: relative; z-index: 1; }
.plan-value span { text-decoration: line-through; }
.plan-card.featured .plan-value { color: rgba(245,158,11,0.55); }

.plan-divider {
  height: 1px;
  background: var(--border-dark);
  margin: 18px 0;
  position: relative; z-index: 1;
}
.plan-card.featured .plan-divider { background: rgba(245,158,11,0.2); }

.plan-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.plan-card.featured .plan-section-label { color: rgba(245,158,11,0.5); }

.plan-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.plan-items li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.45;
}
.plan-card.featured .plan-items li { color: rgba(255,255,255,0.82); }
.plan-items li .pi-check {
  width: 17px; height: 17px;
  border-radius: 5px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--green);
  flex-shrink: 0; margin-top: 1px;
}
.plan-items li .pi-check.amber {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
}

/* GMB posts grid inside plan card */
.plan-gmb-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.plan-gmb-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.plan-gmb-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 480px) {
  .plan-gmb-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

.plan-gmb-post {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pgp-header {
  background: linear-gradient(90deg, #4285F4 0%, #34A853 100%);
  padding: 5px 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pgp-logo {
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 900; color: #4285F4;
  flex-shrink: 0;
  line-height: 1;
}
.pgp-biz { font-size: 6.5px; font-weight: 700; color: rgba(255,255,255,0.9); line-height: 1.3; }
.pgp-img {
  height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, #f0f0f5 0%, #e8e4ff 100%);
}
.pgp-body { padding: 5px 6px 6px; }
.pgp-type { font-size: 5.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: #4285F4; margin-bottom: 2px; }
.pgp-title { font-size: 7px; font-weight: 700; color: #1a1a2e; margin-bottom: 2px; line-height: 1.35; }
.pgp-text { font-size: 6px; color: #666; line-height: 1.4; margin-bottom: 4px; }
.pgp-cta { display: inline-block; font-size: 5.5px; font-weight: 700; color: #4285F4; border: 1px solid #4285F4; border-radius: 2px; padding: 1.5px 5px; letter-spacing: 0.04em; }

/* CTA button inside card */
.plan-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  position: relative; z-index: 1;
  white-space: normal;
  line-height: 1.4;
}
.plan-cta-btn.outline {
  background: transparent;
  color:#fff;
  border: 1.5px solid rgba(255,255,255,0.18);
  background-color: #36b800;
}
.plan-cta-btn.outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.plan-cta-btn.gold {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #F59E0B 100%);
  color: #0D0B1E;
  font-size: 15px;
  padding: 17px 20px;
  box-shadow: 0 6px 28px rgba(245,158,11,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.plan-cta-btn.gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(245,158,11,0.6); }

.pricing-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   GLOBAL MOBILE BUTTON FIXES
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
    line-height: 1.35;
  }
  .btn-xl {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    padding: 16px 20px;
    box-sizing: border-box;
  }
  .final-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 15px;
    padding: 18px 20px;
    justify-content: center;
    white-space: normal;
    line-height: 1.35;
  }
  .hero { padding: 48px 16px 52px; }
  .live-section, .pain-section, .system-section,
  .who-section, .why-section, .bio-section,
  .get-section, .pricing-section, .bonus-section,
  .guarantee-section, .faq-section, .showcase-section,
  .video-section { padding-left: 16px; padding-right: 16px; }
  .wrap, .wrap-sm, .wrap-md { padding: 0 16px; }
  .pain-resolve { padding: 20px 18px; font-size: 14px; }
  .who-callout { padding: 24px 20px; }
  .live-bridge { padding: 20px 18px; font-size: 15px; }
  .bonus-card { padding: 20px 16px; }
  .guarantee-box { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════
   12. BUT WAIT — BONUSES
═══════════════════════════════════════════ */
.bonus-section {
  background: var(--dark-2);
  padding: 88px 24px;
  border-top: 1px solid var(--border-dark);
}
.bonus-inner { max-width: 860px; margin: 0 auto; }

.but-wait-heading {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  text-align: center;
}
.but-wait-heading span { color: var(--amber); }
.bonus-value-line {
  font-size: 22px;
  font-weight: 700;
  color: var(--amber);
  text-align: center;
  margin-bottom: 8px;
}
.bonus-scarcity {
  text-align: center;
  font-size: 12.5px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 52px;
}

.bonuses-stack { display: flex; flex-direction: column; gap: 20px; }
.bonus-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  transition: border-color 0.2s;
}
.bonus-card:hover { border-color: rgba(245,158,11,0.3); }
@media (max-width: 480px) { .bonus-card { grid-template-columns: 1fr; } }

.bonus-icon-box {
  width: 80px; height: 80px;
  border-radius: 16px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.bonus-label-num {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.bonus-title { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.bonus-body  { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; }
.bonus-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
}

.bonus-total {
  margin-top: 40px;
  /* background: var(--purple-glow); */
  border: 1px solid rgba(64, 0, 255, 0.25);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.bonus-total-label { font-size: 13px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.bonus-total-was   { font-size: 32px; font-weight: 800; color: var(--text-3); text-decoration: line-through; margin-bottom: 4px; }
.bonus-total-free  { font-size: 48px; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 12px; }
.bonus-total-note  { font-size: 14px; color: var(--text-2); }
.bonus-scarcity-final {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   SCARCITY RUNNER
═══════════════════════════════════════════ */
.scarcity-runner {
  background: #1A0505;
  border-top: 1px solid rgba(239,68,68,0.2);
  border-bottom: 1px solid rgba(239,68,68,0.2);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}
.scarcity-runner::before,
.scarcity-runner::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 60px; z-index: 2; pointer-events: none;
}
.scarcity-runner::before { left: 0; background: linear-gradient(to right, #1A0505, transparent); }
.scarcity-runner::after  { right: 0; background: linear-gradient(to left, #1A0505, transparent); }
.scarcity-track {
  display: flex;
  width: max-content;
  animation: ticker 18s linear infinite;
}
.scarcity-item {
  padding: 0 32px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FCA5A5;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scarcity-dot { color: rgba(239,68,68,0.5); font-size: 16px; }

/* ═══════════════════════════════════════════
   13. GUARANTEE
═══════════════════════════════════════════ */
.guarantee-section {
  background: var(--light-bg);
  padding: 88px 24px;
}
.guarantee-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.guarantee-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #6C3FF5 0%, #9333EA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(108,63,245,0.35);
}
.guarantee-section .section-h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  line-height: 1.15;
}
.guarantee-section .section-h2 span { color: var(--purple); }
.guarantee-box {
  background: var(--light-card);
  border: 1.5px solid var(--light-border);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: left;
  box-shadow: 0 4px 32px rgba(108,63,245,0.06);
}
.guarantee-box p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.guarantee-box p:last-child { margin-bottom: 0; }
.guarantee-box strong { color: var(--ink); font-weight: 700; }

/* ═══════════════════════════════════════════
   14. FAQ
═══════════════════════════════════════════ */
.faq-section {
  background: var(--light-bg);
  padding: 0 24px 88px;
  border-top: 1px solid var(--light-border);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-section .section-h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1.5px solid var(--light-border);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1.5px solid var(--light-border); }
.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--purple);
  flex-shrink: 0;
  transition: background 0.2s;
}
.faq-item.open .faq-icon { background: var(--purple); color: #fff; }
.faq-a {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.75;
  padding-top: 14px;
  display: none;
}
.faq-item.open .faq-a  { display: block; }
.faq-item.open .faq-q  { color: var(--purple); }

/* ═══════════════════════════════════════════
   15. FINAL CTA
═══════════════════════════════════════════ */
.final-section {
  background: linear-gradient(135deg, #3B0F8C 0%, #6C3FF5 50%, #9333EA 100%);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.final-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.final-section .section-h2 {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.final-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.7;
}
.final-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--purple);
  font-weight: 800;
  font-size: 17px;
  padding: 20px 52px;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  transition: all 0.2s;
}
.final-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.final-stars { margin-bottom: 16px; font-size: 18px; color: var(--amber); letter-spacing: 2px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 28px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
}
footer strong { color: var(--text-2); }
footer small { font-size: 11px; }
footer a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════ */
.divider {
  max-width: 900px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--light-border);
}
.divider-dark {
  max-width: 900px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border-dark);
}

/* ═══════════════════════════════════════════
   RESPONSIVE CATCH-ALL
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .review-card-top{
    margin-bottom: 0;
  }
    .hero{
        padding: 24px 16px 20px;
    }
  .btn-xl { padding: 18px 32px; font-size: 16px; }
  .why-cards { grid-template-columns: 1fr; }
  .compare-head-col:nth-child(4), .compare-row .compare-val:nth-child(4) { display: none; }
}

/* ═══════════════════════════════════════════
   STICKY BOTTOM BAR
═══════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #1a0a00 0%, #3b1f00 50%, #1a0a00 100%);
  border-top: 2px solid var(--amber);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.5);
}
.sticky-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.sticky-bar-pulse {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
  flex-shrink: 0;
}
.sticky-bar-text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}
.sticky-bar-text strong { color: var(--amber); font-size: 15px; }
.sticky-bar-seats {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.sticky-seat {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--red);
  border: 1px solid rgba(255,255,255,0.2);
}
.sticky-seat.empty {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.sticky-bar-btn {
  background: var(--amber);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.sticky-bar-btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 24px rgba(245,158,11,0.5); }
@media (max-width: 560px) {
  .sticky-bar { padding: 10px 14px; gap: 10px; }
  .sticky-bar-text { font-size: 11.5px; }
  .sticky-bar-text strong { font-size: 13px; }
  .sticky-bar-btn { font-size: 12px; padding: 9px 16px; }
  .sticky-bar-seats { display: none; }
}

/* ═══════════════════════════════════════════
   GMB POSTS SHOWCASE
═══════════════════════════════════════════ */
.gmb-posts-wrap {
  margin: 40px 0 32px;
}
.gmb-posts-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gmb-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 700px) { .gmb-posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .gmb-posts-grid { grid-template-columns: 1fr 1fr; } }

.gmb-post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.gmb-post-header {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gmb-post-logo {
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #4285F4;
  flex-shrink: 0;
}
.gmb-post-biz {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}
.gmb-post-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, #f0f0f5 0%, #e8e4ff 100%);
}
.gmb-post-body {
  padding: 10px 12px;
}
.gmb-post-type {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4285F4;
  margin-bottom: 4px;
}
.gmb-post-title {
  font-size: 11px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
  line-height: 1.35;
}
.gmb-post-text {
  font-size: 10px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 8px;
}
.gmb-post-cta {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  color: #4285F4;
  border: 1.5px solid #4285F4;
  border-radius: 4px;
  padding: 3px 10px;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════
   WEBSITE SHOWCASE
═══════════════════════════════════════════ */
.showcase-section {
  background: var(--dark-2);
  padding: 88px 24px;
  border-top: 1px solid var(--border-dark);
}
.showcase-inner { max-width: 1040px; margin: 0 auto; }
.showcase-section .section-h2 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.showcase-sub { color: var(--text-2); font-size: 16px; margin-bottom: 52px; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 44px;
}
@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

.showcase-card {
  background: var(--dark-card);
  border: 2px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.showcase-card:hover { border-color: rgba(108,63,245,0.45); transform: translateY(-4px); }
.showcase-thumb {
  width: 100%;
  min-height: 220px;
  max-height: 400px;
  overflow-y: auto;
  background: var(--dark-card);
  display: block;
  position: relative;
}
.showcase-thumb::-webkit-scrollbar {
  width: 6px;
}
.showcase-thumb::-webkit-scrollbar-track {
  background: transparent;
}
.showcase-thumb::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
}
.showcase-thumb-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.showcase-thumb-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.45) 100%);
  text-align: center;
}
.showcase-thumb-icon {
  font-size: 40px;
}
.showcase-thumb-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.showcase-browser-bar {
  background: var(--dark-3);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-dark);
}
.sc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sc-dot.r { background: rgba(239,68,68,0.6); }
.sc-dot.y { background: rgba(245,158,11,0.6); }
.sc-dot.g { background: rgba(34,197,94,0.5); }
.sc-url {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 10px;
  color: var(--text-3);
  flex: 1;
  text-align: center;
}
.showcase-info {
  padding: 16px;
}
.showcase-biz-type { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple-dim); margin-bottom: 4px; }
.showcase-biz-name { font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.showcase-biz-desc { font-size: 12px; color: var(--text-3); }

/* ═══════════════════════════════════════════
   VIDEO TESTIMONIALS
═══════════════════════════════════════════ */
.video-section {
  background: var(--light-bg);
  padding: 88px 24px;
}
.video-inner { max-width: 1000px; margin: 0 auto; }
.video-section .section-h2 {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.video-sub { color: var(--ink-3); font-size: 16px; margin-bottom: 52px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}
@media (max-width: 700px) { .video-grid { grid-template-columns: 1fr; } }

.video-card {
  background: var(--light-card);
  border: 1.5px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(108,63,245,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(108,63,245,0.12); }
.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1240 0%, #0D0B1E 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
}

.reviews-marquee-section {
  background: var(--light-bg);
  padding: 44px 24px;
  border-top: 1px solid var(--light-border);
}
.reviews-marquee-inner {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
}
.reviews-marquee-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 14px 0;
}
.review-card {
  flex: 1 1 320px;
  min-width: 320px;
  max-width: 360px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(15,23,42,0.08);
  padding: 22px;
  cursor: pointer;
}
.review-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.review-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.review-card-meta {
  font-size: 12px;
  color: var(--ink-3);
}
.review-card-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border: 1px solid rgba(108,63,245,0.18);
  border-radius: 999px;
  white-space: nowrap;
}
.review-card-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.review-card-text {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.8;
  min-height: 82px;
}

@media (max-width: 960px) {
  .review-card { flex: 1 1 280px; min-width: 280px; max-width: 320px; }
}

@media (max-width: 700px) {
  .reviews-marquee-track {
    justify-content: center;
  }
  .review-card {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .review-card { padding: 18px; }
}


.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1240 0%, #0D0B1E 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
}
.video-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.video-placeholder:hover .video-play-btn { background: var(--purple); border-color: var(--purple); transform: scale(1.08); }
.video-duration {
  position: absolute;
  bottom: 10px; right: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}
.video-coming-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.video-info {
  padding: 16px 18px 20px;
}
.video-stars { color: var(--amber); font-size: 13px; letter-spacing: 2px; margin-bottom: 6px; }
.video-quote { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.video-client {
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #9333EA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.video-client-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.video-client-biz  { font-size: 11.5px; color: var(--ink-3); }

/* ═══════════════════════════════════════════
   VIDEO MODAL
═══════════════════════════════════════════ */
.video-modal {
  display: flex;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  padding: 40px 20px;
}
.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.video-modal-content {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}
.video-modal.active .video-modal-content {
  transform: translateY(0) scale(1);
}
.video-modal-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Mobile video modal full screen */
@media (max-width: 768px) {
  .video-modal {
    padding: 0;
  }
  .video-modal-content {
    max-width: 100%;
    width: 100vw;
    height: 80vh;
    aspect-ratio: unset;
  }
  .video-modal-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* ═══════════════════════════════════════════
   FLOATING CONTACT BUTTONS
   (Placed at the bottom for global availability)
═══════════════════════════════════════════ */
.floating-contact {
  position: fixed !important;
  bottom: 90px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10010; /* Highest priority, above modals and sticky bar */
  pointer-events: auto;
  will-change: transform;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.floating-btn::after {
  content: attr(aria-label);
  position: absolute;
  right: 70px;
  background: var(--dark-2);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.floating-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.call-btn {
  background: var(--purple);
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dim) 100%);
}

.whatsapp-btn {
  background: #25D366;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .floating-contact {
    bottom: 116px;
    right: 16px;
    gap: 10px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .floating-btn svg {
    width: 22px;
    height: 22px;
  }
  .floating-btn::after {
    display: none; /* Hide labels on mobile */
  }
}

/* ═══════════════════════════════════════════
   SNACKBAR
═══════════════════════════════════════════ */
.snackbar {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber) 0%, #f59e0b 100%);
  color: #000;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(245,158,11,0.4);
  font-weight: 700;
  font-size: 16px;
  z-index: 10000;
  width: 500px;
  max-width: 95vw;
  border: 2px solid #fff;
  animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(100%); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.snackbar-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.snackbar-icon {
  font-size: 24px;
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}
.snackbar-btn {
  background: #000;
  color: var(--amber);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: background 0.2s;
  margin-left: 12px;
}
.snackbar-btn:hover {
  background: #333;
}
.snackbar-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.snackbar-close:hover {
  opacity: 1;
}

