@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --bg:        #0a0a0a;
  --bg-2:      #111;
  --bg-3:      #181818;
  --bg-4:      #222;
  --line:      rgba(255,255,255,0.07);
  --line-md:   rgba(255,255,255,0.13);
  --line-hi:   rgba(255,255,255,0.22);
  --text:      #ffffff;
  --text-2:    rgba(255,255,255,0.52);
  --text-3:    rgba(255,255,255,0.22);
  --text-4:    rgba(255,255,255,0.08);
  --accent:    #e2ff3f;
  --green:     #22c55e;
  --red:       #ef4444;
  --fd: 'Bebas Neue', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --mw: 1060px;
  --r: 10px;
  --r2: 6px;
  --r3: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.wrap {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── GRAIN ───────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

/* ── TYPE ────────────────────────────────────────────────── */
.d1 { font-family: var(--fd); font-size: clamp(54px,9vw,96px); line-height: 1.0; letter-spacing: .01em; }
.d2 { font-family: var(--fd); font-size: clamp(38px,6vw,68px); line-height: 1.02; letter-spacing: .01em; }
.d3 { font-family: var(--fd); font-size: clamp(28px,4vw,46px); line-height: 1.05; }
.t1 { font-size: clamp(17px,2vw,20px); line-height: 1.65; }
.t2 { font-size: 15px; line-height: 1.7; }
.t3 { font-size: 13px; line-height: 1.6; }
.t4 { font-size: 11px; line-height: 1.5; }
.muted  { color: var(--text-2); }
.accent { color: var(--accent); }
.up { text-transform: uppercase; letter-spacing: .08em; }

/* ── SECTION LABEL ───────────────────────────────────────── */
.slabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
  margin-bottom: 18px;
}
.slabel::before { content: ''; width: 18px; height: 1px; background: var(--text-3); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--fb);
  font-weight: 700;
  border-radius: var(--r);
  transition: all .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-pri {
  background: var(--accent);
  color: var(--bg);
  font-size: 15px;
  padding: 17px 34px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.btn-pri:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(226,255,63,.22); }
.btn-pri:active { transform: translateY(0); }
.btn-out {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--line-md);
  font-size: 14px;
  padding: 13px 24px;
}
.btn-out:hover { border-color: var(--line-hi); color: var(--text); }
.btn-gh {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 13px;
  padding: 10px 18px;
}
.btn-gh:hover { background: var(--bg-4); color: var(--text); }
.btn svg { flex-shrink: 0; }
.btn-xl { font-size: 16px; padding: 20px 40px; }
.btn-lg { font-size: 15px; padding: 15px 30px; }
.btn-sm { font-size: 12px; padding: 9px 16px; }

/* ── ANNOUNCEMENT ────────────────────────────────────────── */
.ann {
  background: var(--text);
  color: var(--bg);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
.nav-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  height: 30px;
}
.logo img { height: 30px; width: auto; }
.logo-txt {
  font-family: var(--fd);
  font-size: 24px;
  letter-spacing: .06em;
  color: var(--text);
}

/* ── IMAGE SLOT SYSTEM ───────────────────────────────────── */
/* Every slot shows a styled placeholder when no image exists */
.img-slot {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: var(--r);
}
.img-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-slot .ph {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
}
.img-slot .ph svg { opacity: .3; }
.img-slot .ph span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); }
/* Show placeholder when image fails or .no-img class is added */
.img-slot.no-img .ph { display: flex; }
.img-slot.no-img img { opacity: 0; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 72px 24px 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-3);
  border: 1px solid var(--line-md);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: dot 2s ease-in-out infinite; }
@keyframes dot { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-title { margin-bottom: 22px; }
.hero-title .hl { color: var(--accent); }
.hero-sub { font-size: 17px; color: var(--text-2); line-height: 1.7; max-width: 450px; margin-bottom: 34px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-i { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-3); font-weight: 500; }
.trust-i svg { flex-shrink: 0; }
.hero-img { width: 100%; aspect-ratio: 9/7; border-radius: var(--r3); overflow: hidden; border: 1px solid var(--line); }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mi {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 36px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
  white-space: nowrap;
  border-right: 1px solid var(--line);
}
.mi svg { color: var(--text-4); }

/* ── STATS ───────────────────────────────────────────────── */
.stats-band {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.stats-g {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--fd);
  font-size: 52px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: .02em;
  margin-bottom: 5px;
}
.stat-l {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
}

/* ── SECTIONS ────────────────────────────────────────────── */
.sec { padding: 88px 0; }
.sec-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ── PROBLEM ─────────────────────────────────────────────── */
.prob-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.pain-i {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  transition: border-color .2s;
}
.pain-i:hover { border-color: rgba(239,68,68,.2); }
.pain-x { color: var(--red); flex-shrink: 0; margin-top: 1px; }
.qb {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 2px solid var(--text-3);
  border-radius: var(--r);
  padding: 32px 36px;
}
.qb-ttl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 22px; }
.q-entry { padding: 18px 0; border-bottom: 1px solid var(--line); }
.q-entry:first-of-type { padding-top: 0; }
.q-entry:last-of-type { border-bottom: none; padding-bottom: 0; }
.q-text { font-size: 15px; color: var(--text-2); line-height: 1.65; font-style: italic; margin-bottom: 8px; }
.q-attr { font-size: 11px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }

/* ── BEFORE / AFTER ──────────────────────────────────────── */
.ba-wrap {
  position: relative;
  max-width: 900px;
  margin: 48px auto 0;
  aspect-ratio: 16/7;
  border-radius: var(--r3);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  border: 1px solid var(--line);
}
.ba-layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-layer img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; display: block; }
.ba-fb {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 44px;
  gap: 14px;
}
.ba-before .ba-fb { background: var(--bg-3); }
.ba-after  .ba-fb { background: var(--bg-4); }
.ba-fb-title {
  font-family: var(--fd);
  font-size: 20px;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.ba-before .ba-fb-title { color: rgba(239,68,68,.7); }
.ba-after  .ba-fb-title { color: rgba(34,197,94,.9); }
.ba-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.ba-item.bad  { color: rgba(239,68,68,.65); }
.ba-item.good { color: rgba(34,197,94,.9); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--text); transform: translateX(-50%); pointer-events: none; z-index: 10; }
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: var(--text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 11; pointer-events: none;
  box-shadow: 0 2px 20px rgba(0,0,0,.7);
}
.ba-handle svg { color: var(--bg); }
.ba-lbl {
  position: absolute; bottom: 18px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 12px; border-radius: 100px;
  pointer-events: none; z-index: 12;
}
.ba-lbl-l { left: 18px; background: rgba(239,68,68,.9); color: #fff; }
.ba-lbl-r { right: 18px; background: rgba(34,197,94,.9); color: #000; }

/* ── TEMPLATE GRID ───────────────────────────────────────── */
.tgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 48px; }
.tc {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: all .28s ease;
  cursor: pointer;
}
.tc:hover { border-color: var(--line-hi); transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 48px rgba(0,0,0,.7); z-index: 2; }
.tc-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); padding: 14px 14px 0; }
.tc-ph { flex: 1; display: flex; align-items: center; justify-content: center; }
.tc-ph svg { opacity: .08; }
.tc-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.95) 0%, transparent 55%);
  opacity: 0; transition: opacity .22s;
  display: flex; align-items: flex-end; padding: 14px;
}
.tc:hover .tc-hover { opacity: 1; }
.tc-name { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .06em; }
.tc-fallback { display: flex; flex-direction: column; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.chip {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  transition: all .15s;
}
.chip:hover { border-color: var(--line-hi); color: var(--text); }

/* ── OFFER CORE ──────────────────────────────────────────── */
.offer-core {
  background: var(--bg-2);
  border: 1px solid var(--line-md);
  border-radius: var(--r3);
  padding: 44px;
  margin-bottom: 20px;
  position: relative;
}
.offer-core::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--text); border-radius: var(--r3) var(--r3) 0 0; }
.core-tag {
  display: inline-block;
  background: var(--text);
  color: var(--bg);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 11px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.core-title { font-family: var(--fd); font-size: 34px; letter-spacing: .02em; margin-bottom: 8px; }
.core-sub { color: var(--text-2); font-size: 14px; margin-bottom: 28px; }
.feat-g { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.5; }
.feat svg { color: var(--text-3); flex-shrink: 0; margin-top: 2px; }
.bonus-g { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bonus {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s;
}
.bonus:hover { border-color: var(--line-md); }
.bonus-n { position: absolute; top: 14px; right: 18px; font-family: var(--fd); font-size: 48px; color: var(--text-4); line-height: 1; }
.bonus-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 8px; }
.bonus-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; line-height: 1.35; }
.bonus-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.bonus-val { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--green); }

/* ── PROOF ───────────────────────────────────────────────── */
.proof-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.proof {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  transition: border-color .2s;
}
.proof:hover { border-color: var(--line-md); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { color: var(--accent); }
.proof-txt { font-size: 14px; color: var(--text-2); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.proof-auth { display: flex; align-items: center; gap: 10px; }
.proof-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-4); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--text-2); flex-shrink: 0;
}
.proof-nm { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.proof-role { font-size: 12px; color: var(--text-3); }

/* ── PRICING ─────────────────────────────────────────────── */
.price-box {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line-md);
  border-radius: var(--r3);
  padding: 48px;
  position: relative;
}
.price-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: var(--r3) var(--r3) 0 0; }
.launch-tag { display: inline-block; background: var(--accent); color: var(--bg); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 4px 13px; border-radius: 4px; margin-bottom: 22px; }
.p-was { font-size: 14px; color: var(--text-3); text-decoration: line-through; margin-bottom: 4px; }
.p-main { font-family: var(--fd); font-size: 88px; line-height: 1; color: var(--accent); letter-spacing: -.01em; margin-bottom: 4px; }
.p-main sup { font-size: 36px; vertical-align: super; }
.p-note { font-size: 14px; color: var(--text-2); margin-bottom: 32px; }
.p-brkdn { border-top: 1px solid var(--line); padding-top: 24px; margin-bottom: 28px; }
.p-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: 14px; }
.p-row:last-child { border-bottom: none; }
.p-row-nm { color: var(--text-2); }
.p-row-was { color: var(--text-3); text-decoration: line-through; font-size: 13px; }
.p-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 0; border-top: 1px solid var(--line-md); margin-top: 8px; }
.p-total-lbl { font-weight: 700; font-size: 15px; }
.p-total-val { font-family: var(--fd); font-size: 28px; color: var(--accent); letter-spacing: .02em; }
.p-guar { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 16px; font-size: 12px; color: var(--text-3); }
.p-guar svg { color: var(--text-3); }

/* ── PAYMENT TABS ────────────────────────────────────────── */
.pay-wrap { max-width: 620px; margin: 0 auto; text-align: center; }
.pay-divider { display: flex; align-items: center; gap: 14px; margin: 30px 0; color: var(--text-3); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.pay-divider::before, .pay-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.pay-tabs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.pay-tab {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 16px 10px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--r);
  color: var(--text-2); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  cursor: pointer; transition: all .15s;
}
.pay-tab:hover { border-color: var(--line-md); color: var(--text); }
.pay-tab.active { border-color: var(--accent); color: var(--accent); }
.pay-tab svg { width: 20px; height: 20px; }
.pay-panel {
  display: none; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px; text-align: left; margin-bottom: 14px;
}
.pay-panel.active { display: block; }
.pay-panel h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.pay-panel p { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.upi-qr {
  width: 160px; height: 160px; margin: 0 auto 14px;
  background: #fff; border-radius: var(--r2);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.upi-qr img { width: 100%; height: 100%; object-fit: contain; }
.upi-id {
  text-align: center; font-family: monospace; font-size: 14px; font-weight: 700;
  background: var(--bg-4); padding: 10px 16px; border-radius: var(--r2);
  border: 1px solid var(--line); color: var(--text);
}
.talk-row {
  margin-top: 18px; padding: 20px 24px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--r);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.talk-row p { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.talk-row strong { color: var(--text); display: block; margin-bottom: 2px; }

/* ── URGENCY ─────────────────────────────────────────────── */
.urg-box {
  max-width: 680px; margin: 0 auto;
  background: var(--bg-2); border: 1px solid rgba(239,68,68,.18); border-radius: var(--r3);
  padding: 48px; text-align: center;
}
.urg-ico { width: 48px; height: 48px; border: 1px solid rgba(239,68,68,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--red); }

/* ── GUARANTEE ───────────────────────────────────────────── */
.guar-inner { max-width: 660px; margin: 0 auto; display: flex; gap: 32px; align-items: flex-start; }
.guar-ico { width: 60px; height: 60px; border: 1px solid var(--line-md); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text-2); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; gap: 9px; }
.faq {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .18s;
}
.faq.open { border-color: var(--line-md); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; cursor: pointer; font-weight: 600; font-size: 15px; gap: 18px; user-select: none;
}
.faq-ico { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text-2); transition: all .18s; }
.faq.open .faq-ico { background: var(--text); border-color: var(--text); color: var(--bg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq.open .faq-a { max-height: 400px; }
.faq-a-in { padding: 0 22px 20px; font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* ── FINAL CTA ───────────────────────────────────────────── */
.final { padding: 100px 0; text-align: center; }

/* ── STICKY BAR ──────────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line-md); padding: 13px 24px; z-index: 80;
  transform: translateY(100%); transition: transform .32s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sb-in { max-width: var(--mw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.sb-txt { font-size: 14px; font-weight: 600; line-height: 1.4; }
.sb-txt span { display: block; font-size: 12px; color: var(--text-3); font-weight: 400; }
.sb-price { font-family: var(--fd); font-size: 30px; color: var(--accent); letter-spacing: .02em; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 36px 0; }
.foot-in { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { font-size: 13px; color: var(--text-3); transition: color .15s; }
.foot-links a:hover { color: var(--text-2); }
.foot-copy { font-size: 12px; color: var(--text-3); }

/* ── REVEAL ANIM ─────────────────────────────────────────── */
.r { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.r.in { opacity: 1; transform: translateY(0); }
.r-d1 { transition-delay: .08s; }
.r-d2 { transition-delay: .15s; }
.r-d3 { transition-delay: .22s; }
.r-d4 { transition-delay: .30s; }

/* ── THANK-YOU PAGE ──────────────────────────────────────── */
.ty-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.ty-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px;
  padding: 52px 44px; max-width: 540px; width: 100%; text-align: center; position: relative; overflow: hidden;
}
.ty-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--green); }
.ty-check { width: 64px; height: 64px; background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; color: var(--green); }
.ty-steps { text-align: left; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; margin: 26px 0; }
.ty-step { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; }
.ty-step:last-child { margin-bottom: 0; }
.ty-step-n { width: 24px; height: 24px; background: var(--accent); color: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; flex-shrink: 0; }
.ty-step-t { color: var(--text-2); line-height: 1.55; }
.ty-step-t strong { color: var(--text); display: block; margin-bottom: 2px; }

/* ── ACCESS PAGE ─────────────────────────────────────────── */
.ac-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.ac-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px;
  padding: 0; max-width: 420px; width: 100%; overflow: hidden;
}
.ac-top { height: 2px; background: var(--accent); }
.ac-body { padding: 44px 40px; text-align: center; }
.ac-logo { margin-bottom: 22px; display: flex; justify-content: center; }
.ac-logo img { height: 26px; width: auto; }
.ac-logo-txt { font-family: var(--fd); font-size: 24px; letter-spacing: .06em; }
.ac-err { display: none; background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); color: #fca5a5; font-size: 13px; padding: 12px 14px; border-radius: var(--r2); margin-bottom: 13px; text-align: left; line-height: 1.55; }
.ac-err.show { display: block; }
.ac-exp { display: none; background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.2); color: #fcd34d; font-size: 13px; padding: 12px 14px; border-radius: var(--r2); margin-bottom: 13px; text-align: left; }
.ac-exp.show { display: block; }
.input-f {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line-md); border-radius: var(--r);
  color: var(--text); font-family: var(--fb); font-size: 15px; padding: 15px 18px; outline: none; transition: border-color .15s; margin-bottom: 13px;
}
.input-f::placeholder { color: var(--text-3); }
.input-f:focus { border-color: var(--line-hi); }
.ac-note { font-size: 13px; color: var(--text-3); margin-top: 18px; line-height: 1.65; }
.ac-note a { color: var(--accent); }

/* ── DOWNLOAD PAGE ───────────────────────────────────────── */
.dl-hdr { background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 16px 0; position: sticky; top: 0; z-index: 50; }
.dl-hdr-in { max-width: var(--mw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.dl-em { font-size: 13px; color: var(--text-2); }
.dl-em strong { color: var(--text); }
.dl-body { padding: 44px 0 80px; }
.dl-banner {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r3);
  padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 44px;
}
.dl-banner h1 { font-family: var(--fd); font-size: 32px; letter-spacing: .02em; margin-bottom: 5px; }
.dl-banner p { font-size: 14px; color: var(--text-2); }
.dl-stat-big { font-family: var(--fd); font-size: 52px; color: var(--accent); line-height: 1; letter-spacing: .02em; }
.dl-stat-sm { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
.dl-sec { margin-bottom: 44px; }
.dl-sec-hd { display: flex; align-items: center; gap: 12px; margin-bottom: 5px; }
.dl-sec-ttl { font-family: var(--fd); font-size: 24px; letter-spacing: .02em; }
.dl-badge { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; background: var(--text); color: var(--bg); padding: 3px 10px; border-radius: 4px; }
.dl-sub { font-size: 13px; color: var(--text-2); margin-bottom: 20px; line-height: 1.6; }
.dl-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.dl-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; transition: border-color .15s; }
.dl-card:hover { border-color: var(--line-md); }
.dl-card-ico { width: 38px; height: 38px; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--r2); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--text-2); }
.dl-card-ttl { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.dl-card-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.btn-dl { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; background: var(--text); color: var(--bg); font-family: var(--fb); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; padding: 11px; border-radius: var(--r2); transition: all .15s; }
.btn-dl:hover { background: var(--accent); transform: translateY(-1px); }
.dl-div { height: 1px; background: var(--line); margin: 40px 0; }
.dl-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.dl-step { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; text-align: center; }
.dl-step-n { font-family: var(--fd); font-size: 40px; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.dl-step-ttl { font-weight: 700; font-size: 13px; margin-bottom: 5px; }
.dl-step-desc { font-size: 12px; color: var(--text-2); line-height: 1.6; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 36px; }
  .hero-img { order: -1; max-width: 480px; }
  .prob-g { grid-template-columns: 1fr; }
  .stats-g { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .tgrid { grid-template-columns: repeat(3,1fr); }
  .proof-g { grid-template-columns: 1fr; }
  .feat-g { grid-template-columns: 1fr; }
  .bonus-g { grid-template-columns: 1fr; }
  .dl-g { grid-template-columns: 1fr 1fr; }
  .dl-steps { grid-template-columns: 1fr 1fr; }
  .ba-wrap { aspect-ratio: 4/3; }
}
@media (max-width: 620px) {
  .sec, .final { padding: 64px 0; }
  .tgrid { grid-template-columns: repeat(2,1fr); }
  .pay-tabs { grid-template-columns: 1fr; }
  .price-box { padding: 32px 22px; }
  .p-main { font-size: 70px; }
  .ty-card { padding: 38px 22px; }
  .ac-body { padding: 36px 22px; }
  .dl-g { grid-template-columns: 1fr; }
  .dl-steps { grid-template-columns: 1fr 1fr; }
  .sb-in { flex-direction: column; gap: 10px; align-items: stretch; }
  .sticky-bar .btn-pri { width: 100%; justify-content: center; }
  .guar-inner { flex-direction: column; }
  .foot-in { flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }
}
