/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #08090a;
  --bg-alt: #121214;
  --bg-card: #1a1a1d;
  --bg-card-2: #202023;
  --gold: #f0c419;
  --gold-light: #ffe27a;
  --gold-dark: #b8940f;
  --white: #f7f7f5;
  --muted: #a8a8ac;
  --muted-2: #7d7d82;
  --green: #2ecc71;
  --red: #ff5c5c;
  --cta: #e0342b;
  --cta-light: #ff5240;
  --cta-dark: #a8231c;
  --border: #2a2a2e;
  --border-light: rgba(255,255,255,.09);
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 14px 32px rgba(0,0,0,.35);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.5);
  --maxw: 1120px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.01em;
}

.gold { color: var(--gold); }

/* ===== Icons ===== */
.icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; vertical-align: -4px; }
.icon-sm { width: 14px; height: 14px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  position: relative;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  padding: 18px 32px;
  font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  letter-spacing: .01em;
}
.btn-primary:hover { background: var(--cta-light); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.35); }
.btn-primary:active { background: var(--cta-dark); transform: translateY(0); }

.btn-block { width: 100%; }
.btn-sub { display: block; text-align: center; color: var(--muted); font-size: .82rem; margin-top: 10px; }

.section { padding: 74px 0; position: relative; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.section-title { font-size: clamp(1.7rem, 4.2vw, 2.4rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 1.06rem; max-width: 640px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .48s cubic-bezier(.2,.7,.2,1), transform .48s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1.in { transition-delay: .08s; }
.reveal-delay-2.in { transition-delay: .16s; }
.reveal-delay-3.in { transition-delay: .24s; }
.reveal-delay-4.in { transition-delay: .32s; }

/* ===== Top bar ===== */
.topbar {
  background: var(--gold);
  color: #14110a;
  text-align: center;
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 12px;
  position: relative;
  z-index: 100;
}
.topbar span#countdown { font-variant-numeric: tabular-nums; background: rgba(0,0,0,.15); padding: 2px 8px; border-radius: 6px; }

/* ===== Hero — editorial/centered ===== */
.hero { padding: 76px 0 60px; position: relative; text-align: center; }
.hero .container { max-width: 760px; }

.hero h1 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin-bottom: 20px; }
.hero h1 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 600; color: var(--gold); }
.hero p.lead { color: var(--muted); font-size: 1.12rem; margin: 0 auto 30px; max-width: 600px; }

.stat-strip {
  display: flex; justify-content: center; gap: 0; margin: 44px auto 0; max-width: 640px;
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 26px 0;
}
.stat-strip .stat { flex: 1; padding: 0 14px; border-right: 1px solid var(--border-light); }
.stat-strip .stat:last-child { border-right: none; }

.quote-block {
  max-width: 600px; margin: 32px auto 0;
  font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem;
  color: var(--white); opacity: .92; padding: 0 24px;
}
.quote-block-left { margin: 22px 0; padding: 0 0 0 20px; border-left: 3px solid var(--gold); max-width: 520px; }

.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 28px; color: var(--muted); font-size: .87rem; }
.trust-row span { display: flex; align-items: center; gap: 7px; }

.bank-strip { margin: 32px auto 0; padding: 16px 18px; border-radius: var(--radius); max-width: 560px; background: var(--bg-card); border: 1px solid var(--border); }
.bank-strip p { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 7px; }
.bank-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.bank-pill { background: #fff; color: #111; font-weight: 800; font-size: .82rem; padding: 7px 14px; border-radius: 8px; }

/* ===== Loss calculator ===== */
.calc-box {
  max-width: 720px;
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.calc-head { text-align: center; margin-bottom: 22px; }
.calc-head h3 { font-size: 1.3rem; margin-bottom: 8px; }
.calc-head p { color: var(--muted); font-size: .92rem; }
.calc-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; justify-content: center; }
.calc-input-wrap { position: relative; flex: 1; min-width: 220px; }
.calc-input-wrap span { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 700; }
.calc-input-wrap input {
  width: 100%;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 16px 16px 42px;
  color: var(--white);
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.calc-input-wrap input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,196,25,.25); }
.btn:focus-visible, .quiz-pill:focus-visible, .faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
#calcBtn { padding: 16px 26px; font-size: .98rem; white-space: nowrap; }

.calc-result {
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,92,92,.08);
  border: 1px solid rgba(255,92,92,.35);
  text-align: center;
  display: none;
}
.calc-result.show { display: block; animation: pop-in .4s ease; }
@keyframes pop-in { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
.calc-result .big { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--red); margin: 6px 0; }
.calc-result p { color: var(--muted); font-size: .92rem; }
.calc-result .fix { margin-top: 14px; color: var(--gold); font-weight: 700; font-size: .95rem; }

/* ===== Problem / agitation — bento ===== */
.pain-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
@media (max-width: 760px) { .pain-bento { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(240,196,25,.4); box-shadow: var(--shadow-sm); }
.pain-card .icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,92,92,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pain-card .icon-wrap .icon { width: 26px; height: 26px; color: var(--red); }
.pain-card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.pain-card p { color: var(--muted); font-size: .92rem; }

.callout {
  margin-top: 34px;
  border-radius: var(--radius);
  padding: 24px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(240,196,25,.14), rgba(240,196,25,.02));
  border: 1px solid rgba(240,196,25,.35);
}
.callout b { color: var(--gold); }

/* ===== Authority / storytelling ===== */
.authority { max-width: 720px; margin: 0 auto; }

.story-quote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--white);
  font-size: 1.05rem;
}

.authority-stats { display: flex; gap: 30px; margin-top: 22px; flex-wrap: wrap; }
.stat b { display: block; font-family: 'Poppins', sans-serif; font-size: 1.7rem; color: var(--gold); }
.stat span { color: var(--muted); font-size: .82rem; }

/* ===== Bank quiz selector ===== */
.quiz-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.quiz-pill {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quiz-pill:hover { border-color: var(--gold); transform: translateY(-2px); }
.quiz-pill.active { background: var(--gold); color: #1a1400; border-color: var(--gold); }

/* ===== What's included — bento ===== */
.modules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
@media (max-width: 980px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .modules { grid-template-columns: 1fr; } }

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.module-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.module-card.highlight { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(240,196,25,.18), var(--shadow-sm); }
.module-card .bank-icon {
  width: 68px; height: 68px; margin: 0 auto 14px;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: #fff; padding: 12px;
}
.module-card .bank-icon img { width: 100%; height: 100%; object-fit: contain; }
.module-card h4 { font-size: 1.03rem; margin-bottom: 6px; }
.module-card p { color: var(--muted); font-size: .85rem; }
.module-card .time { display: inline-block; margin-top: 12px; font-size: .76rem; color: var(--gold); font-weight: 700; }
.module-card.bonus { border: 1px dashed var(--gold); }
.module-card.bonus .bank-icon { background: var(--gold); }
.module-card.bonus .bank-icon .icon { color: #14110a; width: 26px; height: 26px; }

.calc-head .icon-wrap { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,92,92,.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.calc-head .icon-wrap .icon { width: 24px; height: 24px; color: var(--red); }
.quiz-pill .icon { width: 16px; height: 16px; }
.badges-row .icon, .foot-seals .icon { width: 15px; height: 15px; }

/* ===== Preview gallery ===== */
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
@media (max-width: 780px) { .preview-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; } }
.preview-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; text-align: center; transition: transform .2s ease; }
.preview-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.preview-item img { border-radius: 10px; margin-bottom: 10px; }
.preview-item span { color: var(--muted); font-size: .82rem; }

/* ===== Price ===== */
.price-box {
  max-width: 580px;
  margin: 36px auto 0;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.value-stack { text-align: left; margin: 4px 0 22px; }
.value-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: .92rem; color: var(--muted);
}
.value-row .value-amount { text-decoration: line-through; color: var(--muted-2); white-space: nowrap; }

.price-huge-anchor {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 8vw, 3.2rem);
  color: var(--muted-2);
  margin: 14px 0 2px;
  line-height: 1.1;
}
.price-huge-anchor .strike { text-decoration: line-through; }

.price-final-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 8px;
}
.price-final-sub .gold { color: var(--gold); font-weight: 800; }
.price-install { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }

.price-features { text-align: left; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 10px; position: relative; }
.price-features li { list-style: none; display: flex; gap: 10px; font-size: .95rem; }
.price-features li .ok { color: var(--green); font-weight: 800; }

.badges-row { display: flex; justify-content: center; gap: 16px; margin-top: 18px; flex-wrap: wrap; color: var(--muted); font-size: .78rem; position: relative; }
.badges-row span { display: flex; align-items: center; gap: 6px; }

/* ===== Testimonials ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }
.testi-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform .2s ease; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); margin-bottom: 10px; letter-spacing: 2px; }
.testi-card p.quote { font-size: .95rem; color: var(--white); margin-bottom: 16px; }
.testi-who { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #14110a; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; flex-shrink: 0; }
.testi-who b { font-size: .88rem; display: block; }
.testi-who span { font-size: .76rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 32px auto 0; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: border-color .2s ease; }
.faq-item.open { border-color: rgba(240,196,25,.4); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 600; text-align: left; padding: 19px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .98rem; }
.faq-q .plus { color: var(--gold); font-size: 1.3rem; transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 22px; color: var(--muted); font-size: .92rem; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }

/* ===== Final CTA ===== */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta h2 { font-size: clamp(1.7rem, 4.2vw, 2.5rem); margin-bottom: 14px; }
.final-cta p { color: var(--muted); margin-bottom: 30px; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-card); border-top: 1px solid var(--gold); padding: 10px 14px; display: none; z-index: 50; box-shadow: 0 -6px 20px rgba(0,0,0,.4); }
.sticky-cta.show { display: flex; gap: 10px; align-items: center; }
.sticky-cta .info { flex: 1; }
.sticky-cta .info b { display: block; color: var(--gold); font-size: 1.05rem; }
.sticky-cta .info span { font-size: .72rem; color: var(--muted); text-decoration: line-through; }
.sticky-cta .btn-primary { padding: 12px 20px; font-size: .92rem; }
.sticky-cta .btn-primary::after { display: none; }

/* ===== Footer ===== */
footer { padding: 40px 0 100px; border-top: 1px solid var(--border); color: var(--muted); font-size: .8rem; }
footer .foot-seals { display: flex; gap: 14px; margin: 0 0 16px; flex-wrap: wrap; }
footer .foot-seals span { background: var(--bg-card); border: 1px solid var(--border); padding: 6px 12px; border-radius: 8px; font-size: .74rem; }
footer .legal { margin-top: 18px; line-height: 1.6; opacity: .75; font-size: .74rem; }

@media (min-width: 861px) { .sticky-cta { display: none !important; } }

/* ===== Count-up numbers ===== */
[data-count] { font-variant-numeric: tabular-nums; }
