/* ── DESIGN TOKENS ── */
:root {
  --bg: #fff;
  --bg-soft: #F5F5F5;
  --bg-card: #fff;
  --bg-inverse: #000;
  --bg-inverse-soft: #000;
  --text: #000;
  --text-muted: #666;
  --text-body: #444;
  --text-on-inverse: #fff;
  --text-on-inverse-muted: rgba(255,255,255,0.55);
  --text-on-inverse-faded: rgba(255,255,255,0.42);
  --border: #EEEEEE;
  --border-strong: #000;
  --primary: #000;
  --on-primary: #fff;
  --shadow: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-btn: 0 10px 30px rgba(0,0,0,0.14);
  --radius-pill: 100px;
  --radius-card: 28px;
  --promo-h: 38px;
  --nav-h: 66px;
}

[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --bg-card: #1a1a1a;
  --bg-inverse-soft: #0d0d0d;
  --text: #f0f0f0;
  --text-muted: #a8a8a8;
  --text-body: #cccccc;
  --border: #2a2a2a;
  --border-strong: #888;
  --primary: #fff;
  --on-primary: #000;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-btn: 0 10px 30px rgba(0,0,0,0.6);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background .2s ease, color .2s ease;
}
button { font-family: inherit; font-size: inherit; color: inherit; background: none; border: none; cursor: pointer; }
address { font-style: normal; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
section { padding: 99px 0; }

/* ══ TYPOGRAPHY ══ */
.h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -2px;
}
.h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -1.5px;
}
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--text);
  flex-shrink: 0;
}
.label--light { color: var(--text-on-inverse-muted); }
.label--light::before { background: var(--text-on-inverse-muted); }

/* ══ BUTTONS ══ */
.btn-p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--on-primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 19px 40px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-btn);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: -.2px;
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.btn-p.xl { font-size: 18px; padding: 22px 48px; }
.btn-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 17px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.btn-g:hover { border-color: var(--border-strong); background: var(--bg-soft); }

/* ══ REVEAL ANIMATION ══ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.v { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ══ PROMO BAR ══ */
#promoBar {
  position: relative;
  z-index: 400;
  height: var(--promo-h);
  background: var(--bg-inverse);
  color: var(--text-on-inverse);
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.promo-track {
  display: flex;
  width: max-content;
  height: var(--promo-h);
  align-items: center;
  animation: ticker 18s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.promo-item {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 108px;
  letter-spacing: .3px;
  line-height: var(--promo-h);
}

/* ══ NAV ══ */
#nav {
  position: sticky;
  top: 0;
  z-index: 300;
  height: var(--nav-h);
  padding: 0 40px;
  display: flex;
  align-items: center;
  background: var(--bg);
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled {
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -1px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.nav-links {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 40px;
  pointer-events: auto;
}
.nav-links.animate { transition: transform .6s cubic-bezier(0.4,0,0.2,1); }
.nav-link { font-size: 13px; font-weight: 600; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.nav-link:hover { color: var(--text); }
.nav-cta-wrap {
  position: absolute;
  right: 40px;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.nav-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateX(60px);
  transition: opacity .4s, transform .4s;
  font-size: 13px;
  padding: 10px 20px;
  flex-shrink: 0;
}
#nav.nav-shifted .nav-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: opacity .45s .7s, transform .45s .7s;
}
#nav.nav-shifted .nav-cta-wrap { pointer-events: auto; }

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background .2s, transform .2s, border-color .2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--border); transform: scale(1.06); }
.theme-toggle--mobile { display: none; margin-left: auto; margin-right: 10px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.burger span { display: block; width: 23px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 299;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--promo-h) + var(--nav-h) + 24px) 24px 24px;
  text-align: center;
}
.mob-menu.open { display: flex; }
.mob-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.mob-link:last-of-type { border-bottom: none; }
.mob-cta-area { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; }
.mob-cta-btn { width: 100%; max-width: 320px; font-size: 17px; padding: 20px; }
.mob-badges { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 12px; font-weight: 600; color: var(--text-muted); flex-wrap: wrap; }
.mob-badge { display: flex; align-items: center; gap: 4px; }

/* ══ HERO ══ */
#hero {
  min-height: calc(100vh - var(--promo-h) - var(--nav-h));
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  flex: 1;
  padding: 32px 0 24px;
  margin-left: -8%;
  margin-right: -8%;
}
.hero-title { margin-bottom: 18px; }
.hero-sub { font-size: 17px; line-height: 1.6; color: var(--text-muted); margin-bottom: 32px; max-width: 400px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-wrap { width: 100%; display: flex; flex-direction: column; min-height: calc(100vh - var(--promo-h) - var(--nav-h)); }

/* Hero strip */
.hero-strip {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-strip-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--text); }
.hero-strip-val { font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 900; letter-spacing: -1px; }
.hero-strip-inf { font-family: 'Unbounded', sans-serif; font-size: 44px; font-weight: 900; line-height: 1; letter-spacing: -2px; }
.hero-strip-lbl { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.hero-strip-sep { width: 1px; height: 28px; background: var(--border); }

/* Hero mockup */
.hero-visual { position: relative; }
.mockup-card { background: var(--bg-card); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--border); }
.mockup-topbar { background: var(--bg-soft); padding: 12px 16px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--border); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF5F56; } .dot-y { background: #FFBD2E; } .dot-g { background: #27C93F; }
.mockup-title { flex: 1; text-align: center; font-size: 11px; font-weight: 600; color: var(--text-muted); }
.spreadsheet { padding: 16px; font-size: 11px; }
.s-head, .s-row { display: grid; grid-template-columns: 110px repeat(7, 1fr); gap: 2px; margin-bottom: 2px; }
.s-hc { padding: 6px 4px; font-weight: 700; color: var(--text-muted); text-align: center; font-size: 10px; text-transform: uppercase; letter-spacing: .3px; }
.sc { padding: 8px 4px; border-radius: 5px; text-align: center; }
.s-lbl { text-align: left; font-weight: 600; color: var(--text); font-size: 11px; display: flex; align-items: center; }
.s-ok { background: var(--primary); color: var(--on-primary); font-size: 10px; font-weight: 700; }
.s-no { background: var(--bg-soft); color: var(--text-muted); }
.s-pct { background: var(--primary); color: var(--on-primary); font-weight: 700; border-radius: 20px; font-size: 10px; }
.mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-top: 1px solid var(--border); }
.ms { padding: 13px; background: var(--bg-card); text-align: center; }
.msv { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 900; letter-spacing: -1px; }
.msl { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.fbadge { position: absolute; background: var(--primary); color: var(--on-primary); border-radius: 13px; padding: 10px 15px; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 7px; box-shadow: 0 10px 28px rgba(0,0,0,0.22); animation: float 3s ease-in-out infinite; white-space: nowrap; }
.fb1 { top: -16px; right: 16px; }
.fb2 { bottom: 26px; left: -14px; animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ══ PROBLEM ══ */
#problem { background: var(--bg-soft); padding: 80px 0; }
.prob-grid { display: grid; grid-template-columns: 1fr 2px 1fr; gap: 0; align-items: stretch; }
.prob-left { padding-right: 6%; overflow: hidden; }
.prob-right { display: flex; flex-direction: column; gap: 12px; justify-content: center; padding-left: 6%; padding-right: 12px; }
.prob-divider { background: var(--border); border-radius: 2px; }
.prob-title { margin-bottom: 24px; }
.prob-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.prob-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-card);
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border-left: 3px solid transparent;
  transition: border-color .2s;
}
.prob-item:hover { border-left-color: var(--primary); }
.prob-icon { width: 34px; height: 34px; background: var(--bg-inverse); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.prob-item-right { display: flex; flex-direction: column; gap: 6px; }
.prob-item-title { font-weight: 700; font-size: 14px; }
.prob-item-bar { height: 4px; border-radius: 2px; background: var(--border); overflow: hidden; }
.prob-item-fill { height: 100%; border-radius: 2px; background: var(--primary); animation: fillbar 1.2s ease forwards; transform-origin: left; }
@keyframes fillbar { from { width: 0; } to { width: var(--w); } }
.prob-result { padding: 16px 20px; background: var(--bg-inverse); color: var(--text-on-inverse); border-radius: 14px; font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.cycle-card { background: var(--bg-card); border-radius: 20px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.18); }
.cycle-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.cycle-steps { display: flex; align-items: center; }
.cstep { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.cdot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; background: var(--bg-soft); }
.cdot.on { background: var(--bg-inverse); }
.cslbl { font-size: 10px; font-weight: 600; color: var(--text-muted); text-align: center; }
.carr { font-size: 12px; color: var(--text-muted); flex-shrink: 0; padding: 0 2px; opacity: .5; }

/* ══ HOW IT WORKS ══ */
#how { padding: 80px 0; }
.how-head { text-align: center; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card {
  padding: 32px 26px;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 2px solid var(--border);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.step-card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.step-card:hover::after { transform: scaleX(1); }
.step-num { font-family: 'Unbounded', sans-serif; font-size: 64px; font-weight: 900; color: var(--text); opacity: 0.12; line-height: 1; margin-bottom: 14px; letter-spacing: -3px; }
.step-title { font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -.4px; margin-bottom: 10px; }
.step-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.step-stat { margin-top: 16px; font-family: 'Unbounded', sans-serif; font-size: 28px; font-weight: 900; letter-spacing: -1px; color: var(--text); }
.step-stat--inf { font-size: 77px; letter-spacing: -2px; line-height: .9; }
.step-stat-lbl { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 2px; font-family: 'Manrope', sans-serif; letter-spacing: 0; }

/* ══ FEATURES ══ */
#features { background: var(--bg-inverse); color: var(--text-on-inverse); padding: 80px 0; }
.feat-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 24px; }
.feat-head .h2 { color: var(--text-on-inverse); }
.feat-cta-link { display: inline-flex; align-items: center; gap: 8px; padding: 0; color: var(--text-on-inverse-muted); font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; transition: color .2s; }
.feat-cta-link:hover { color: var(--text-on-inverse); }
.feat-cta-mobile { display: none; margin-top: -36px; margin-bottom: 28px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: 24px; overflow: hidden; }
.feat-item { padding: 32px 26px; background: var(--bg-inverse); transition: background .2s; cursor: default; }
.feat-item:hover { background: var(--bg-inverse-soft); }
.feat-emoji { font-size: 30px; margin-bottom: 16px; display: block; }
.feat-name { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: -.3px; color: var(--text-on-inverse); margin-bottom: 8px; }
.feat-desc { font-size: 13px; color: var(--text-on-inverse-faded); line-height: 1.6; }

/* ══ TRANSFORMATION ══ */
#transformation { background: var(--bg-soft); padding: 80px 0; }
.tr-head { text-align: center; }
.tr-grid { display: grid; grid-template-columns: 1fr 48px 1fr; align-items: center; margin-top: 48px; }
.tr-col { padding: 38px 32px; border-radius: 24px; }
.tr-before { background: var(--bg-card); border: 2px dashed var(--border); }
.tr-after { background: var(--bg-inverse-soft); color: var(--text-on-inverse); }
.tr-lbl { font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 22px; color: var(--text-muted); }
.tr-after .tr-lbl { color: var(--text-on-inverse-muted); }
.tr-item { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; font-size: 14px; font-weight: 600; line-height: 1.4; }
.tr-arrow { display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; }

/* ══ REVIEWS ══ */
#reviews { padding: 80px 0; }
.rev-head { text-align: center; margin-bottom: 48px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev-card { padding: 28px 26px; background: var(--bg-soft); border-radius: 22px; border: 2px solid transparent; transition: border-color .2s, box-shadow .2s; }
.rev-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow); }
.rev-stars { color: #F4A200; font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.rev-text { font-size: 15px; line-height: 1.65; font-weight: 500; margin-bottom: 20px; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-av { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--on-primary); font-weight: 700; font-size: 12px; flex-shrink: 0; }
.rev-name { font-weight: 700; font-size: 13px; }
.rev-handle { font-size: 11px; color: var(--text-muted); }

/* ══ FOR WHO ══ */
#forWho { background: var(--bg-soft); padding: 80px 0; }
.fw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.fw-list { display: flex; flex-direction: column; gap: 12px; }
.fw-item { display: flex; align-items: center; gap: 12px; padding: 18px 20px; background: var(--bg-card); border-radius: 12px; font-weight: 600; font-size: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: box-shadow .2s, transform .2s; }
.fw-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateX(4px); }
.chk { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--on-primary); font-size: 12px; flex-shrink: 0; }
.fw-insight { background: var(--bg-inverse-soft); color: var(--text-on-inverse); border-radius: 28px; padding: 40px 34px; }
.fw-insight-label { font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--text-on-inverse-muted); text-transform: uppercase; margin-bottom: 20px; }
.fw-insight-title { font-family: 'Unbounded', sans-serif; font-size: clamp(16px, 2vw, 22px); font-weight: 900; letter-spacing: -1px; line-height: 1.3; margin-bottom: 20px; }
.fw-insight-text { color: var(--text-on-inverse-faded); font-size: 14px; line-height: 1.65; }

/* ══ OFFER ══ */
#offer { background: var(--bg-inverse); color: var(--text-on-inverse); padding: 80px 0; }
.offer-inner { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }
.offer-left .h2 { color: var(--text-on-inverse); margin-bottom: 18px; white-space: nowrap; font-size: clamp(28px, 3.5vw, 52px); }
.offer-left > p:not(.label) { color: var(--text-on-inverse-faded); font-size: 16px; margin-bottom: 32px; }
.offer-incl { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.offer-incl-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-on-inverse-muted); }
.offer-incl-item span:first-child { font-size: 16px; }
.offer-card { background: var(--bg-card); color: var(--text); border-radius: 24px; padding: 36px 32px; position: relative; overflow: hidden; text-align: center; }
.offer-old { font-size: 22px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; font-weight: 600; }
.offer-price { font-family: 'Unbounded', sans-serif; font-size: 72px; font-weight: 900; letter-spacing: -4px; line-height: 1; margin-bottom: 2px; }
.offer-price sup { font-size: 28px; vertical-align: super; letter-spacing: 0; }
.offer-note { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.offer-btn { width: 100%; font-size: 18px; padding: 22px; margin-bottom: 14px; border-radius: 14px; }
.offer-email-form { display: none; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.offer-email-form.visible { display: flex; }
.offer-email-input { width: 100%; padding: 16px; border: 2px solid var(--border); border-radius: 14px; font-family: 'Manrope', sans-serif; font-size: 15px; outline: none; transition: border-color .2s; text-align: center; background: var(--bg-card); color: var(--text); }
.offer-email-input:focus { border-color: var(--border-strong); }
.offer-email-input::placeholder { color: var(--text-muted); }
.offer-secure { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 5px; }
.offer-timer { display: flex; justify-content: center; margin-bottom: 20px; }
.timer-badge { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; background: #fff3cd; color: #a05c00; border-radius: 14px; padding: 18px 32px; font-weight: 800; font-size: 14px; text-align: center; width: 100%; }
.timer-label { font-size: 14px; font-weight: 700; }
.timer-val { font-family: 'Unbounded', sans-serif; font-size: 32px; font-weight: 900; letter-spacing: -1px; }

/* ══ FAQ ══ */
#faq { padding: 80px 0; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-radius: 12px; overflow: hidden; border: 2px solid var(--border); background: var(--bg-card); transition: border-color .2s; }
.faq-item.open { border-color: var(--border-strong); }
.faq-q { width: 100%; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 14px; gap: 16px; transition: background .2s; user-select: none; color: var(--text); }
.faq-q:hover { background: var(--bg-soft); }
.faq-tog { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; transition: transform .3s, background .2s; color: var(--text); }
.faq-item.open .faq-tog { transform: rotate(45deg); background: var(--primary); color: var(--on-primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { color: var(--text-body); font-size: 14px; line-height: 1.7; }

/* ══ FINAL CTA ══ */
#finalCta { background: var(--bg-inverse); color: var(--text-on-inverse); text-align: center; padding: 110px 0; }
#finalCta .h2 { color: var(--text-on-inverse); margin-bottom: 16px; }
#finalCta p { color: var(--text-on-inverse-faded); font-size: 16px; margin-bottom: 40px; }
.final-btn { background: var(--bg-card); color: var(--text); font-size: 17px; padding: 20px 52px; box-shadow: 0 16px 50px rgba(255,255,255,0.1); }
.final-btn:hover { background: var(--bg-soft); }
.final-sub { font-size: 12px; color: var(--text-on-inverse-muted); font-weight: 500; margin-top: 18px; display: block; opacity: .7; }

/* ══ FOOTER ══ */
#contacts { border-top: 1px solid var(--border); padding: 52px 40px 32px; }
.foot-top { display: grid; grid-template-columns: 1.2fr 1.6fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.foot-logo { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 18px; letter-spacing: -1px; display: block; margin-bottom: 8px; color: var(--text); }
.foot-tag { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.foot-col-title { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; color: var(--text); }
.foot-nav { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.foot-nav a { font-size: 13px; color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color .2s; }
.foot-nav a:hover { color: var(--text); }
.foot-contacts { display: flex; flex-direction: column; gap: 7px; }
.foot-contact { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.foot-contact a { color: var(--text-muted); text-decoration: none; }
.foot-contact a:hover { color: var(--text); }
.foot-sub-title { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 13px; margin-bottom: 8px; color: var(--text); }
.foot-sub-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.foot-sub-form { display: flex; flex-direction: column; gap: 8px; }
.foot-sub-input { padding: 13px 16px; border-radius: var(--radius-pill); border: 2px solid var(--border); font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 500; outline: none; transition: border-color .2s; background: var(--bg-card); color: var(--text); }
.foot-sub-input:focus { border-color: var(--border-strong); }
.foot-sub-input::placeholder { color: var(--text-muted); }
.foot-sub-btn { padding: 13px 16px; font-size: 13px; background: var(--bg-soft); color: var(--text); box-shadow: none; border: 2px solid var(--border); }
.foot-sub-btn:hover { background: var(--border); box-shadow: none; transform: none; }
.foot-sub-ok { display: none; padding: 13px 16px; background: var(--primary); color: var(--on-primary); border-radius: 10px; font-weight: 700; font-size: 13px; text-align: center; }
.foot-sub-note { font-size: 11px; color: var(--text-muted); margin-top: 6px; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 10px; }
.foot-copy, .foot-dev { font-size: 12px; color: var(--text-muted); }
.foot-legal { display: flex; gap: 18px; }
.foot-legal a { font-size: 12px; color: var(--text-muted); text-decoration: none; }
.foot-legal a:hover { color: var(--text); }

/* ══ STICKY BAR ══ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 190;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 -2px 18px rgba(0,0,0,0.09);
  gap: 10px;
  transition: opacity .3s, transform .3s;
}
.sticky-bar.hidden { opacity: 0; pointer-events: none; transform: translateY(100%); }
.sticky-buy { flex: 1.4; }
.sticky-inside { flex: 1; }

/* ══ MODAL ══ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-card);
  border-radius: 24px;
  width: 78vw;
  max-width: 1100px;
  height: 78vh;
  max-height: 78vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideUp .32s cubic-bezier(0.32,0.72,0,1);
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-handle-wrap { display: none; }
.modal-handle-bar { width: 36px; height: 4px; border-radius: 2px; background: var(--border); }
.modal-header { flex-shrink: 0; padding: 22px 28px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.modal-title { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 18px; letter-spacing: -1px; color: var(--text); }
.modal-close { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-soft); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background .2s; flex-shrink: 0; color: var(--text); }
.modal-close:hover { background: var(--border); }
.modal-body { flex: 1; min-height: 0; overflow-y: auto; }
.modal-screens-col { padding: 24px 28px; }
.modal-screens { grid-template-columns: repeat(3, 1fr); }
.modal-buy-col { border-left: 1px solid var(--border); overflow-y: auto; padding: 24px 28px 24px 20px; display: flex; flex-direction: column; }
.modal-screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.m-screen { border-radius: 14px; overflow: hidden; border: 2px solid var(--border); }
.m-preview { background: var(--bg-inverse); padding: 14px; display: flex; align-items: center; justify-content: center; min-height: 130px; }
.m-preview--dark { background: var(--bg-inverse-soft); }
.m-mockup { background: #fff; color: #000; border-radius: 10px; overflow: hidden; width: 100%; box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.m-topbar { background: #1E1E1E; padding: 8px 12px; display: flex; align-items: center; gap: 5px; }
.sd { width: 8px; height: 8px; border-radius: 50%; }
.sd-r { background: #FF5F56; } .sd-y { background: #FFBD2E; } .sd-g { background: #27C93F; }
.m-topbar-label { color: #777; font-size: 10px; margin-left: 7px; }
.m-content { padding: 12px; }
.m-desc { padding: 10px 14px; }
.m-desc-title { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 11px; margin-bottom: 4px; color: var(--text); }
.m-desc-text { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

/* Modal mockup grid — screen 1 (Google Sheets visual — locked light) */
.mm-grid { display: grid; grid-template-columns: 88px repeat(4, 1fr); gap: 2px; font-size: 10px; }
.mm-head { padding: 5px; font-weight: 700; color: #999; font-size: 9px; }
.mm-head--center { text-align: center; }
.mm-lbl { padding: 7px 5px; font-weight: 600; font-size: 10px; }
.mm-cell { padding: 7px; text-align: center; border-radius: 4px; font-size: 9px; }
.mm-cell--ok { background: #000; color: #fff; font-weight: 700; }
.mm-cell--no { background: #f5f5f5; color: #ccc; }
.mm-cell--pct { background: #000; color: #fff; border-radius: 20px; font-weight: 700; }

/* Modal mockup stats — screen 2 (locked light) */
.mm-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; margin-bottom: 7px; }
.mm-stat { border-radius: 6px; padding: 8px; text-align: center; }
.mm-stat--dark { background: #000; color: #fff; }
.mm-stat--light { background: #f5f5f5; }
.mm-stat-val { font-family: 'Unbounded', sans-serif; font-size: 17px; font-weight: 900; }
.mm-stat-lbl { font-size: 8px; color: #999; margin-top: 2px; }
.mm-stat--dark .mm-stat-lbl { opacity: .5; color: #fff; }
.mm-chart { display: flex; align-items: flex-end; gap: 3px; height: 40px; padding: 0 2px; }
.mm-bar { flex: 1; background: #000; border-radius: 3px 3px 0 0; }
.mm-bar--faded { background: #e0e0e0; }
.mm-chart-labels { display: flex; justify-content: space-between; font-size: 8px; color: #999; padding: 3px 2px 0; }

/* Modal mockup streaks — screen 3 (locked light) */
.mm-streak-title { font-size: 9px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px; }
.mm-streaks { display: flex; flex-direction: column; gap: 5px; }
.mm-streak-row { display: flex; align-items: center; justify-content: space-between; padding: 7px 9px; background: #f5f5f5; border-radius: 6px; }
.mm-streak-name { font-size: 10px; font-weight: 600; }
.mm-streak-badge { padding: 3px 8px; border-radius: 20px; font-size: 9px; font-weight: 700; }
.mm-streak-badge--active { background: #000; color: #fff; }
.mm-streak-badge--inactive { background: #e0e0e0; color: #666; }

/* Modal buy column */
.modal-email-block { margin-bottom: 12px; }
.modal-email-label { font-size: 11px; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; display: block; }
.modal-email-input { width: 100%; padding: 12px 14px; border: 2px solid var(--border); border-radius: 10px; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 500; outline: none; transition: border-color .2s; background: var(--bg-card); color: var(--text); }
.modal-email-input:focus { border-color: var(--border-strong); }
.modal-email-input::placeholder { color: var(--text-muted); }
.modal-checkboxes { margin-bottom: 12px; display: flex; flex-direction: column; gap: 8px; }
.modal-cb-label { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.modal-cb-label input[type=checkbox] { margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); width: 14px; height: 14px; }
.modal-cb-label a { color: var(--text); font-weight: 600; text-decoration: underline; }
.modal-price-block { border-radius: 16px; background: var(--bg-soft); padding: 18px; margin-bottom: 10px; text-align: center; }
.modal-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; font-weight: 600; }
.modal-pval { font-family: 'Unbounded', sans-serif; font-size: 38px; font-weight: 900; letter-spacing: -2px; line-height: 1; margin-bottom: 4px; color: var(--text); }
.modal-pnote { font-size: 11px; color: var(--text-muted); margin-bottom: 14px; }
.modal-pay-btn { width: 100%; font-size: 14px; padding: 15px; border-radius: 12px; transition: opacity .2s; }
.modal-pay-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; }
.modal-guar { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 10px; line-height: 1.6; }
.modal-includes { margin-top: 14px; }
.modal-includes-title { font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.modal-include-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.modal-include-item::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: var(--primary); color: var(--on-primary); border-radius: 50%; font-size: 9px; flex-shrink: 0; }

/* ══ RESPONSIVE ══ */
@media (max-width: 960px) {
  #nav { padding: 0 18px; }
  .nav-center { display: none; }
  .burger { display: flex; }
  .theme-toggle--mobile { display: inline-flex; }
  .container { padding: 0 18px; }
  section { padding: 70px 0; }
  #hero { padding-top: 0; min-height: calc(100vh - var(--promo-h) - var(--nav-h)); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; margin-left: 0; margin-right: 0; }
  .hero-visual { order: -1; }
  .hero-btns { display: none; }
  .hero-strip { gap: 20px; }
  .hero-strip-sep { display: none; }
  .fb1 { right: 0; } .fb2 { left: 0; }
  .prob-grid { grid-template-columns: 1fr; gap: 0; }
  .prob-left { padding-right: 4px; overflow: visible; }
  .prob-right { padding-left: 4px; overflow: visible; margin-top: 0; }
  .prob-divider { display: block; height: 1px; width: 100%; background: var(--border); margin: 28px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-cta-desktop { display: none !important; }
  .feat-cta-mobile { display: block !important; }
  .tr-grid { grid-template-columns: 1fr; gap: 18px; }
  .tr-arrow { transform: rotate(90deg); }
  .rev-grid { grid-template-columns: 1fr; }
  .fw-grid { grid-template-columns: 1fr; gap: 32px; }
  .offer-inner { grid-template-columns: 1fr; gap: 40px; }
  .offer-card { padding: 28px 22px; }
  .sticky-bar { display: flex; }
  #finalCta { padding: 72px 0 120px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-col-logo { grid-column: 1 / -1; }
  #contacts { padding: 40px 18px 28px; }
  .label::before { display: none; }
  .promo-item { padding: 0 86px; }
  .modal-overlay { align-items: flex-end; }
  .modal-box { border-radius: 20px 20px 0 0; max-width: 100%; width: 100%; max-height: 88vh; height: auto; }
  .modal-handle-wrap { display: flex; justify-content: center; padding: 12px; flex-shrink: 0; }
  .modal-screens-col { padding: 16px 18px; }
  .modal-screens { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 600px) {
  .hero-btns .btn-p { width: 100%; }
  .hero-btns .btn-g { width: 100%; font-size: 13px; padding: 14px 22px; }
  .tr-col { padding: 24px 18px; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .offer-price { font-size: 56px; }
}
