/* =====================================================
   Autopilot Channels — Sales page CSS
   Base: deep dark + electric blue accent + glassmorphism
   ===================================================== */
:root{
  --bg:        #000;
  --bg-2:      #0a0a0a;

  /* primary brand accent — electric blue */
  --accent:    #4f9eff;
  --accent-2:  #1e6dd6;
  --accent-3:  #0c4ea3;

  --green:     #4ade80;
  --red:       #ef4444;
  --white:     #fff;
  --muted:     rgba(255,255,255,.80);
  --muted-2:   rgba(255,255,255,.55);
  --muted-3:   rgba(255,255,255,.35);
  --border:    rgba(255,255,255,.05);
  --border-2:  rgba(255,255,255,.10);
  --grey-1:    #141414;
  --grey-2:    #1a1a1a;
  --grey-3:    #262626;

  --card-shadow:
    0 0 0 1px rgba(79,158,255,.08),
    0 4px 16px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.06);
  --card-shadow-hover:
    0 0 0 1px rgba(79,158,255,.22),
    0 8px 32px rgba(0,0,0,.5),
    0 0 60px rgba(79,158,255,.10),
    inset 0 1px 0 rgba(255,255,255,.10);
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);color:var(--white);
  font-family:'Inter',sans-serif;font-size:16px;line-height:1.5;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4,p,ul{margin:0;padding:0}
ul{list-style:none}

::selection{background:var(--accent);color:#0a0a0a}

/* Prevent FOUC: hide hero rise elements only when JS is enabled (GSAP will animate them in) */
.js [data-anim="rise"]{opacity:0;will-change:transform,opacity}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
  .js [data-anim="rise"]{opacity:1 !important;transform:none !important}
  #particles{display:none}
  .dot-pulse{animation:none}
}

.container{
  width:100%;max-width:1200px;margin:0 auto;padding:0 24px;
  position:relative;z-index:2;
}
.muted{color:var(--muted)}
.small{font-size:13px}
.big-p{font-size:18px;line-height:1.6;max-width:680px;margin-left:auto;margin-right:auto}
.center{text-align:center}
.serif{font-family:'Instrument Serif',serif;font-style:italic;font-weight:400}
.serif.blue,
em.serif.blue,
.blue,
em.blue,
span.blue{color:#4f9eff !important}

/* =================  PILLS / TAGS  ================= */
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 16px;border-radius:30px;
  background:var(--border);
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  font-size:13px;color:var(--muted);
  border:1px solid var(--border-2);
}
.section-tag{margin-bottom:20px}
.center.section-tag{display:inline-flex;margin-left:auto;margin-right:auto}
.testimonials .section-tag,.faq .section-tag,
.problem .section-tag,.stack .section-tag,.story .section-tag{
  display:block;width:fit-content;margin:0 auto 20px;
}

.dot-pulse{
  width:8px;height:8px;border-radius:50%;background:var(--green);
  box-shadow:0 0 0 0 rgba(74,222,128,.7);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%   {box-shadow:0 0 0 0 rgba(74,222,128,.7)}
  70%  {box-shadow:0 0 0 8px rgba(74,222,128,0)}
  100% {box-shadow:0 0 0 0 rgba(74,222,128,0)}
}

/* =================  URGENCY BAR (top)  ================= */
.urgency-bar{
  position:sticky;top:0;z-index:50;
  background:linear-gradient(90deg,#1e6dd6,#0c4ea3);
  color:#fff;padding:10px 16px;
  display:flex;align-items:center;justify-content:center;gap:16px;
  font-size:13px;font-weight:600;
  flex-wrap:wrap;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:box-shadow .25s ease;
}
.urgency-bar.scrolled{box-shadow:0 6px 24px rgba(4,16,30,.55),0 0 0 1px rgba(79,158,255,.08)}
.countdown{display:inline-flex;gap:6px;font-family:'JetBrains Mono',monospace}
.countdown span{
  background:rgba(0,0,0,.35);padding:3px 8px;border-radius:6px;
  display:inline-flex;align-items:center;gap:2px;
}
.countdown b{color:#fff;font-weight:700}
.bar-channels{display:inline-flex;align-items:center;gap:6px}
.bar-channels b{
  background:rgba(0,0,0,.35);padding:2px 8px;border-radius:6px;
  font-weight:800;color:#fff;letter-spacing:.02em;
}
.bar-divider{
  width:1px;height:14px;background:rgba(255,255,255,.25);display:inline-block;
}

/* =================  STACK BONUS ROW  ================= */
.stack-item.bonus{
  background:
    linear-gradient(90deg,rgba(122,185,255,.10),transparent 60%),
    linear-gradient(180deg,#161616,#0c0c0c);
  border:1px dashed rgba(79,158,255,.35);
}
.stack-item.bonus .stack-num{
  background:linear-gradient(180deg,#7ab9ff,#1e6dd6);color:#04101e;
  border-color:rgba(255,255,255,.2);font-size:20px;
}
.stack-item.bonus h3 small{
  display:inline-block;color:var(--accent);font-size:11px;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;margin-left:6px;
  background:rgba(79,158,255,.12);padding:2px 8px;border-radius:6px;
  border:1px solid rgba(79,158,255,.3);vertical-align:middle;
}
/* =================  STICKY MOBILE CTA  ================= */
.sticky-cta{
  display:none;
  position:fixed;left:12px;right:12px;bottom:12px;z-index:60;
  align-items:center;justify-content:space-between;gap:12px;
  padding:12px 16px;border-radius:14px;
  background:linear-gradient(180deg,#7ab9ff,#1e6dd6);
  color:#04101e;font-weight:800;
  box-shadow:0 12px 32px rgba(0,0,0,.55),0 0 0 1px rgba(79,158,255,.45),inset 0 1px 0 rgba(255,255,255,.55);
}
.sticky-cta .sc-price{font-size:13px;display:inline-flex;gap:6px;align-items:baseline}
.sticky-cta .sc-price s{color:rgba(4,16,30,.55);font-weight:700}
.sticky-cta .sc-price b{font-size:18px;font-weight:800}
.sticky-cta .sc-btn{
  background:#04101e;color:#fff;padding:8px 14px;border-radius:10px;
  font-size:13px;font-weight:700;letter-spacing:.01em;
}
@media (max-width:760px){
  .sticky-cta{display:flex}
  body{padding-bottom:80px}
}

/* =================  HERO  ================= */
#hero{
  position:relative;min-height:100vh;
  padding:60px 0 60px;overflow:hidden;
  display:flex;align-items:center;
}
#particles{position:absolute;inset:0;width:100%;height:100%;z-index:0;opacity:.55}
.hero-glow{
  position:absolute;left:50%;top:30%;width:1000px;height:680px;
  transform:translateX(-50%);
  background:radial-gradient(50% 50% at 50% 50%,
              rgba(79,158,255,.20) 0%,rgba(79,158,255,0) 100%);
  filter:blur(40px);z-index:0;pointer-events:none;
}
#hero .container{display:flex;flex-direction:column;align-items:center;gap:24px;text-align:center}
.hero-tag{padding:8px 16px;font-size:13px}
.hero-title{
  font-size:clamp(32px,4.8vw,60px);font-weight:800;
  line-height:1.08;max-width:980px;letter-spacing:-.025em;
}
.hero-sub{
  font-size:clamp(15px,1.4vw,18px);color:var(--muted);
  max-width:720px;line-height:1.6;
}
.step-badge{
  background:var(--accent);color:#04101e;font-weight:800;font-size:12px;
  padding:10px 22px;border-radius:6px;letter-spacing:.06em;
  box-shadow:0 4px 18px rgba(79,158,255,.35);
}
.vsl{
  position:relative;width:100%;max-width:820px;aspect-ratio:16/9;
  background:linear-gradient(180deg,#0a0a0a,#16202e);
  border-radius:14px;overflow:hidden;
  box-shadow:
    0 0 0 1px rgba(79,158,255,.18),
    0 30px 80px rgba(0,0,0,.55),
    0 0 100px rgba(79,158,255,.08);
}
.vsl-overlay{
  position:absolute;left:0;right:0;bottom:32px;
  display:flex;align-items:center;justify-content:center;
  font-size:clamp(13px,1.3vw,16px);color:rgba(255,255,255,.6);
  font-weight:500;letter-spacing:.01em;text-align:center;padding:0 40px;line-height:1.4;
}
.vsl-play{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:84px;height:84px;border-radius:50%;border:0;
  background:var(--accent);cursor:pointer;display:grid;place-items:center;
  box-shadow:0 8px 28px rgba(79,158,255,.55),0 0 0 8px rgba(79,158,255,.12);
  transition:transform .2s ease,box-shadow .2s ease;
}
.vsl-play:hover{
  transform:translate(-50%,-50%) scale(1.08);
  box-shadow:0 10px 32px rgba(79,158,255,.7),0 0 0 12px rgba(79,158,255,.15);
}
.vsl.playing{cursor:default}
.vsl.playing .vsl-overlay{color:rgba(255,255,255,.75)}
.vsl{cursor:pointer}

/* CTA hero block (button + price anchor) */
.hero-cta{display:flex;flex-direction:column;align-items:center;gap:14px}
.price-anchor{font-size:15px;color:var(--muted)}
.price-anchor s{color:var(--muted-2)}
.price-anchor b{color:var(--accent);font-size:20px}
/* =================  BTN PRIMARY  ================= */
.btn-primary{
  display:inline-flex;flex-direction:column;align-items:center;justify-content:center;
  padding:16px 36px;border-radius:50px;
  color:#04101e;font-weight:800;font-size:16px;letter-spacing:.01em;
  background:linear-gradient(180deg,#7ab9ff,#1e6dd6);
  box-shadow:
    0 0 0 1px rgba(79,158,255,.45),
    0 8px 24px rgba(30,109,214,.35),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -2px 0 rgba(0,0,0,.18);
  transition:transform .2s ease,box-shadow .2s ease;
  cursor:pointer;text-align:center;
}
.btn-primary.big{padding:20px 40px;font-size:18px}
.btn-primary.full{width:100%}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(79,158,255,.65),
    0 14px 36px rgba(30,109,214,.5),
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -2px 0 rgba(0,0,0,.22);
}
/* =================  PROBLEM  ================= */
.problem{padding:80px 0 100px;position:relative}
.problem h2{
  font-size:clamp(28px,4vw,52px);font-weight:800;line-height:1.1;
  margin-bottom:16px;letter-spacing:-.02em;
}
.problem-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px;
  max-width:920px;margin:50px auto 0;
}
.problem-card{
  background:linear-gradient(180deg,#181818,#0e0e0e);
  border:1px solid var(--border-2);border-radius:14px;padding:24px;
  position:relative;transition:transform .25s ease,box-shadow .3s ease;
}
.problem-card:hover{transform:translateY(-4px);box-shadow:var(--card-shadow-hover)}
.x-icon{
  width:36px;height:36px;border-radius:50%;
  background:rgba(239,68,68,.15);color:var(--red);
  display:grid;place-items:center;font-size:18px;font-weight:700;
  margin-bottom:14px;border:1px solid rgba(239,68,68,.25);
}
.problem-card h3{font-size:17px;font-weight:700;margin-bottom:8px;line-height:1.3}
.problem-card p{font-size:14px;color:var(--muted);line-height:1.55}

/* =================  STORY  ================= */
.story{padding:120px 0;background:linear-gradient(180deg,transparent,rgba(79,158,255,.04),transparent)}
.story-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:60px;align-items:center}
.story-photo .photo-frame{
  margin:0;position:relative;border-radius:18px;overflow:hidden;
  border:1px solid rgba(79,158,255,.22);
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 0 80px rgba(79,158,255,.15),
    inset 0 0 0 1px rgba(255,255,255,.04);
  background:#0a0a0a;
}
.story-photo .photo-frame img{
  width:100%;aspect-ratio:4/5;object-fit:cover;display:block;
  filter:contrast(1.05) saturate(.92) brightness(.92);
  transition:transform .8s cubic-bezier(.2,.8,.2,1),filter .4s ease;
}
.story-photo .photo-frame:hover img{transform:scale(1.04);filter:contrast(1.1) saturate(1) brightness(1)}
.story-photo .photo-frame::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    linear-gradient(180deg,transparent 55%,rgba(0,0,0,.85) 100%),
    radial-gradient(120% 60% at 50% 0%,rgba(79,158,255,.10),transparent);
}
.story-photo .photo-frame figcaption{
  position:absolute;left:18px;right:18px;bottom:16px;
  font-size:12px;letter-spacing:.04em;color:rgba(255,255,255,.85);
  font-weight:500;line-height:1.4;z-index:1;
  text-shadow:0 1px 2px rgba(0,0,0,.6);
}

.story-text h2{
  font-size:clamp(28px,3.6vw,44px);font-weight:800;line-height:1.15;
  margin:14px 0 24px;letter-spacing:-.02em;
}
.story-text p{margin-bottom:14px;font-size:16px;line-height:1.65}
.story-hook{
  margin-top:24px !important;padding:18px 22px;
  background:rgba(79,158,255,.08);border-left:3px solid var(--accent);
  border-radius:8px;color:#fff !important;font-size:17px !important;
}
.story-cta-line{margin-top:20px;font-size:16px}
.story-cta-line a{color:var(--accent);text-decoration:none;border-bottom:1px solid rgba(79,158,255,.4);padding-bottom:2px;transition:border-color .2s}
.story-cta-line a:hover{border-bottom-color:var(--accent)}

.cta-wrap{display:flex;justify-content:center;margin:48px 0 16px}
.cta-block{display:flex;flex-direction:column;align-items:center;margin:48px 0 16px;gap:14px}
.cta-block .cta-microcopy{margin:0;text-align:center;max-width:520px}
.delivery-guarantee{
  text-align:center;max-width:620px;margin:0 auto;
  font-size:13.5px;line-height:1.6;color:var(--muted-2);
}

/* =================  TESTIMONIALS + PROOF WALL  ================= */
.testimonials{padding:120px 0}
.testimonials h2{
  font-size:clamp(28px,4vw,52px);font-weight:800;line-height:1.15;
  margin-bottom:50px;letter-spacing:-.02em;
}
.carousel-wrap{position:relative}
.carousel-wrap::before,
.carousel-wrap::after{
  content:'';position:absolute;top:0;bottom:30px;width:60px;pointer-events:none;z-index:2;
}
.carousel-wrap::before{left:0;background:linear-gradient(90deg,#000 0%,transparent)}
.carousel-wrap::after{right:0;background:linear-gradient(270deg,#000 0%,transparent)}
.carousel{
  display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:10px 4px 30px;scrollbar-width:none;
  scroll-padding-left:24px;
}
.carousel::-webkit-scrollbar{display:none}
.t-card{
  flex:0 0 280px;
  background:linear-gradient(180deg,#181818,#0e0e0e);
  border:1px solid var(--border-2);border-radius:14px;overflow:hidden;
  scroll-snap-align:center;box-shadow:var(--card-shadow);
  transition:transform .25s ease,box-shadow .3s ease;
}
.t-card:hover{transform:translateY(-4px);box-shadow:var(--card-shadow-hover)}
.t-card img{width:100%;height:280px;object-fit:cover;background:#0a0a0a}
.t-avatar{
  width:100%;height:280px;
  display:flex;align-items:center;justify-content:center;
  font-family:'Instrument Serif',serif;
  font-size:120px;font-weight:400;color:rgba(255,255,255,.92);
  letter-spacing:.02em;
  background:#0a0a0a;
}
.t-card h4{font-size:18px;padding:14px 18px 4px;font-weight:700}
.t-card p{padding:0 18px 18px;font-size:14px;line-height:1.45}

.proof-wall{
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
  max-width:1080px;margin:40px auto 0;
}
.proof-shot{
  aspect-ratio:1/1;
  background:
    radial-gradient(80% 80% at 50% 0%,rgba(79,158,255,.10),transparent),
    linear-gradient(180deg,#10182a,#070a12);
  border:1px solid rgba(79,158,255,.22);border-radius:14px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  color:var(--muted-2);text-align:center;padding:18px 14px;
  transition:transform .25s ease,border-color .25s ease,box-shadow .3s ease;
  position:relative;overflow:hidden;
}
.proof-shot::before{
  content:'';position:absolute;inset:-1px;border-radius:14px;
  background:linear-gradient(135deg,rgba(79,158,255,.3),transparent 50%);
  z-index:-1;
}
.proof-shot:hover{
  transform:translateY(-3px);
  border-color:rgba(79,158,255,.5);
  box-shadow:0 12px 32px rgba(0,0,0,.5),0 0 40px rgba(79,158,255,.15);
}
.proof-shot .num{
  font-size:clamp(22px,2.6vw,32px);font-weight:800;color:#fff;
  letter-spacing:-.02em;line-height:1.1;
  background:linear-gradient(180deg,#fff 30%,#7ab9ff);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.proof-shot small{
  display:block;margin-top:8px;font-size:12px;font-weight:500;
  color:var(--muted-2);line-height:1.35;letter-spacing:.01em;
}

/* =================  PROOF GALLERY (real screenshots)  ================= */
.proof-headline{max-width:920px;margin:48px auto 0}
.proof-gallery{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px;
  max-width:1180px;margin:24px auto 0;
}
.proof-card{
  background:linear-gradient(180deg,#10182a,#070a12);
  border:1px solid rgba(79,158,255,.22);border-radius:14px;
  overflow:hidden;cursor:zoom-in;
  transition:transform .25s ease,border-color .25s ease,box-shadow .3s ease;
  display:flex;flex-direction:column;
}
.proof-card:hover{
  transform:translateY(-3px);
  border-color:rgba(79,158,255,.5);
  box-shadow:0 12px 32px rgba(0,0,0,.5),0 0 40px rgba(79,158,255,.15);
}
.proof-card img{
  width:100%;height:auto;display:block;
  background:#0a0a0a;
  border-bottom:1px solid rgba(79,158,255,.18);
}
.proof-card.hero-proof img{
  width:100%;height:auto;display:block;background:#0e0f14;
}
.proof-card figcaption{
  padding:16px 18px;display:flex;flex-direction:column;gap:4px;
  text-align:left;
}
.proof-card .proof-label{
  font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.12em;
  color:var(--muted-2);
}
.proof-card .proof-num{
  font-size:clamp(20px,2.2vw,26px);font-weight:800;color:#fff;
  letter-spacing:-.02em;line-height:1.1;margin-top:2px;
  background:linear-gradient(180deg,#fff 30%,#7ab9ff);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.proof-card.hero-proof .proof-num{font-size:clamp(28px,3.4vw,40px)}
.proof-card .proof-meta{
  font-size:13px;color:var(--muted-2);line-height:1.4;
}

/* Lightbox */
.proof-lightbox{
  position:fixed;inset:0;background:rgba(0,0,0,.92);
  display:none;align-items:center;justify-content:center;
  z-index:9999;padding:32px;cursor:zoom-out;
}
.proof-lightbox.open{display:flex}
.proof-lightbox img{max-width:96vw;max-height:92vh;border-radius:8px;box-shadow:0 0 60px rgba(79,158,255,.25)}
.proof-lightbox .close{
  position:absolute;top:18px;right:24px;
  background:rgba(255,255,255,.1);border:none;color:#fff;
  font-size:28px;width:44px;height:44px;border-radius:50%;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
}
.proof-lightbox .close:hover{background:rgba(255,255,255,.2)}

/* =================  STACK  ================= */
.stack{padding:120px 0}
.stack h2{
  font-size:clamp(28px,4vw,52px);font-weight:800;line-height:1.15;
  margin-bottom:50px;letter-spacing:-.02em;
}
.stack-list{
  max-width:880px;margin:0 auto;
  display:flex;flex-direction:column;gap:14px;
}
.stack-item{
  display:grid;grid-template-columns:auto 1fr auto;gap:20px;align-items:center;
  background:linear-gradient(180deg,#181818,#0e0e0e);
  border:1px solid var(--border-2);border-radius:14px;
  padding:22px 26px;
  transition:transform .2s ease,box-shadow .3s ease,border-color .2s ease;
}
.stack-item:hover{transform:translateX(4px);box-shadow:var(--card-shadow-hover);border-color:rgba(79,158,255,.2)}
.stack-item.highlight{
  background:
    radial-gradient(60% 100% at 0% 50%,rgba(79,158,255,.14),transparent),
    linear-gradient(180deg,#0e1422,#060912);
  border:1px solid rgba(79,158,255,.4);
  box-shadow:0 0 60px rgba(79,158,255,.1);
}
.stack-num{
  width:42px;height:42px;border-radius:50%;
  background:rgba(79,158,255,.12);color:var(--accent);
  display:grid;place-items:center;font-weight:800;font-size:18px;
  border:1px solid rgba(79,158,255,.32);flex-shrink:0;
}
.stack-item.highlight .stack-num{
  background:var(--accent);color:#04101e;font-size:22px;
}
.stack-body h3{font-size:16px;font-weight:700;margin-bottom:4px;line-height:1.3}
.stack-body p{font-size:13px;color:var(--muted);line-height:1.5}
.stack-price{font-weight:700;color:var(--muted-2);font-size:15px}
.stack-price s{color:var(--muted-2)}

.stack-total{
  max-width:880px;margin:30px auto 0;padding:30px 36px;
  background:linear-gradient(180deg,#1a1a1a,#0a0a0a);
  border:1px solid rgba(79,158,255,.3);border-radius:14px;
  box-shadow:0 0 60px rgba(79,158,255,.12);
}
.total-row{
  display:flex;justify-content:space-between;align-items:center;
  font-size:16px;color:var(--muted);padding:6px 0;
}
.total-row.big{
  font-size:24px;color:#fff;font-weight:800;
  padding-top:12px;margin-top:8px;border-top:1px solid var(--border-2);
}
.total-row .blue{font-size:38px;font-weight:800}

/* =================  FOR WHO / NOT  ================= */
.for-who{padding:120px 0}
.for-who h2{
  font-size:clamp(28px,3.6vw,48px);font-weight:800;line-height:1.15;
  margin-bottom:50px;letter-spacing:-.02em;
}
.for-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
  max-width:980px;margin:0 auto;
}
.for-col{
  background:linear-gradient(180deg,#181818,#0e0e0e);
  border:1px solid var(--border-2);border-radius:16px;padding:32px;
}
.for-col.yes{border-color:rgba(74,222,128,.3)}
.for-col.no {border-color:rgba(239,68,68,.3)}
.for-col h3{font-size:20px;font-weight:700;margin-bottom:18px}
.for-col.yes h3{color:var(--green)}
.for-col.no  h3{color:var(--red)}
.for-col li{
  padding:10px 0;font-size:15px;color:var(--muted);
  border-bottom:1px solid var(--border-2);line-height:1.5;
  display:flex;gap:10px;align-items:flex-start;
}
.for-col li::before{
  content:'';flex-shrink:0;margin-top:9px;width:5px;height:5px;border-radius:50%;
}
.for-col.yes li::before{background:var(--green);box-shadow:0 0 6px rgba(74,222,128,.6)}
.for-col.no  li::before{background:var(--red);  box-shadow:0 0 6px rgba(239,68,68,.6)}
.for-col li:last-child{border-bottom:0}

/* =================  FAQ  ================= */
.faq{padding:120px 0}
.faq h2{
  font-size:clamp(28px,3.6vw,48px);font-weight:800;line-height:1.15;
  margin-bottom:50px;letter-spacing:-.02em;
}
.faq-list{
  max-width:880px;margin:0 auto;
  background:linear-gradient(180deg,#0e0e0e,#080808);
  border:1px solid var(--border-2);border-radius:18px;padding:24px;
  box-shadow:var(--card-shadow);
}
.faq-item{
  background:rgba(255,255,255,.02);
  border:1px solid var(--border-2);border-radius:14px;
  margin-bottom:14px;overflow:hidden;transition:background .2s,border-color .2s;
}
.faq-item:last-child{margin-bottom:0}
.faq-item:hover{border-color:rgba(79,158,255,.18)}
.faq-item[open]{background:rgba(79,158,255,.04);border-color:rgba(79,158,255,.25)}
.faq-item summary{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px 24px;cursor:pointer;list-style:none;
  font-weight:600;font-size:15px;
}
.faq-item summary::-webkit-details-marker{display:none}
.plus{position:relative;width:18px;height:18px;flex-shrink:0}
.plus::before,.plus::after{
  content:'';position:absolute;left:50%;top:50%;background:#fff;
  transition:transform .25s ease;
}
.plus::before{width:14px;height:2px;transform:translate(-50%,-50%)}
.plus::after {width:2px;height:14px;transform:translate(-50%,-50%)}
.faq-item[open] .plus::before{background:var(--accent)}
.faq-item[open] .plus::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq-item p{padding:0 24px 20px;font-size:14px;color:var(--muted);line-height:1.6}

/* =================  FINAL CTA / RECAP  ================= */
.final-cta{
  padding:120px 0;
  background:radial-gradient(60% 80% at 50% 0%,rgba(79,158,255,.10),transparent);
}
.final-cta h2{
  font-size:clamp(28px,4vw,52px);font-weight:800;line-height:1.15;
  margin-bottom:14px;letter-spacing:-.02em;
}
.final-cta-actions{
  max-width:560px;margin:40px auto 0;padding:36px 32px;
  background:linear-gradient(180deg,#0e1422,#070a12);
  border:1px solid rgba(79,158,255,.28);border-radius:18px;
  box-shadow:0 0 60px rgba(79,158,255,.12);
  text-align:center;
}
.final-price{
  font-size:18px;color:var(--muted);margin-bottom:18px;
}
.final-price s{color:var(--muted-2)}
.final-price b{color:var(--accent);font-size:24px;font-weight:800}
.trust-line{
  margin-top:18px;font-size:13px;color:var(--muted-2);
  text-align:center;letter-spacing:.01em;
}

/* =================  FOOTER  ================= */
footer{
  padding:60px 24px 40px;text-align:center;
  border-top:1px solid var(--border-2);
}
footer p{margin:8px auto;color:var(--muted);max-width:680px;font-size:13px;line-height:1.55}
footer a{color:var(--muted);transition:color .2s}
footer a:hover{color:var(--accent)}
footer .links{margin-top:16px}

/* =================  RESPONSIVE  ================= */
@media (max-width:900px){
  .urgency-bar{font-size:11px;gap:8px;padding:8px 12px}
  .problem-grid{grid-template-columns:1fr}
  .story-grid{grid-template-columns:1fr;gap:32px}
  .story-photo .photo-frame img{aspect-ratio:16/10}
  .for-grid{grid-template-columns:1fr}
  .stack-item{grid-template-columns:auto 1fr;padding:18px}
  .stack-price{grid-column:1/-1;text-align:right}
  .proof-wall{grid-template-columns:repeat(2,1fr)}
  .proof-gallery{grid-template-columns:repeat(2,1fr)}
  .vsl-play{width:64px;height:64px}
}

@media (max-width:560px){
  .proof-gallery{grid-template-columns:1fr}
}

@media (max-width:560px){
  .hero-title{font-size:32px}
  .container{padding:0 18px}
  .problem,.story,.testimonials,.stack,.for-who,.faq,.final-cta{padding:80px 0}
  .btn-primary.big{padding:18px 28px;font-size:16px}
  .total-row .blue{font-size:30px}
}
