/* ---- Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0b;
  --bg-2: #111114;
  --bg-3: #16161a;
  --fg: #f5f5f7;
  --muted: #a1a1aa;
  --line: #2a2a30;
  --accent: #ff6a1a;
  --accent-2: #ff8a4d;
  --good: #22c55e;
  --bad: #ef4444;
  --radius: 14px;
  --maxw: 1140px;
}
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 22px;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  border: 0;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn--orange {
  background: var(--accent);
  color: #0a0a0b;
  box-shadow: 0 6px 24px rgba(255,106,26,.35);
}
.btn--orange:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--xl { padding: 20px 34px; font-size: 18px; }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,11,.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__logo { font-weight: 800; font-size: 18px; letter-spacing: -.02em; }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__link { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav__link:hover { color: var(--fg); }
@media (max-width: 720px) {
  .nav__link { display: none; }
}

/* ---- Hero ---- */
.hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(255,106,26,.18), transparent 60%),
    linear-gradient(180deg, #0a0a0b 0%, #0a0a0b 100%);
  text-align: center;
}
.hero__inner { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.hero__badge {
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero__h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 800;
  margin-bottom: 22px;
}
.accent { color: var(--accent); }
.hero__sub {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 740px;
  margin: 0 auto 36px;
}
.hero__cta { margin-top: 28px; }
.hero__trust {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

/* ---- VSL ---- */
.vsl { max-width: 880px; margin: 0 auto; }
.vsl__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.vsl__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at center, rgba(255,106,26,.12), transparent 60%),
    var(--bg-3);
}
.vsl__play {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0b;
  display: grid; place-items: center;
  font-size: 30px;
  box-shadow: 0 10px 40px rgba(255,106,26,.5);
}
.vsl__label { font-weight: 700; font-size: 18px; }
.vsl__hint { color: var(--muted); font-size: 13px; }

/* ---- Sections ---- */
.section { padding: 90px 0; }
.section--dark { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--cta {
  background:
    radial-gradient(800px 400px at 50% 0, rgba(255,106,26,.15), transparent 60%),
    var(--bg-2);
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}
.section__h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
  max-width: 820px;
  margin-bottom: 40px;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 780px;
  margin-bottom: 18px;
}

/* ---- Pain grid ---- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pain {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.pain__icon { font-size: 24px; margin-bottom: 12px; }
.pain h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.pain p { color: var(--muted); font-size: 15px; }
@media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pain-grid { grid-template-columns: 1fr; } }

/* ---- Stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.stat {
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.stat__num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.02em;
}
.stat__label { color: var(--muted); font-size: 14px; margin-top: 6px; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---- Compare ---- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.compare__col {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.compare__col--bad { opacity: .85; }
.compare__col--good { border-color: rgba(255,106,26,.5); box-shadow: 0 0 0 1px rgba(255,106,26,.18) inset; }
.compare__title { font-weight: 800; font-size: 18px; margin-bottom: 14px; }
.compare__col--bad .compare__title::before { content: "✗  "; color: var(--bad); }
.compare__col--good .compare__title::before { content: "✓  "; color: var(--good); }
.compare ul { list-style: none; }
.compare li { padding: 10px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 15px; }
.compare li:first-child { border-top: 0; }
.compare__col--good li { color: var(--fg); }
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }

/* ---- Steps ---- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  counter-reset: steps;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: start;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.step__num {
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -.02em;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: 6px; padding: 22px; }
}

/* ---- Included grid ---- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.included {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.included h3 { font-size: 17px; margin-bottom: 12px; }
.included ul { list-style: none; }
.included li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--muted);
  font-size: 14.5px;
  border-top: 1px solid var(--line);
}
.included li:first-child { border-top: 0; }
.included li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: var(--accent);
  font-weight: 800;
}
@media (max-width: 900px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .included-grid { grid-template-columns: 1fr; } }

/* ---- Guarantee ---- */
.guarantee {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,106,26,.12), rgba(255,106,26,.04));
  border: 1px solid rgba(255,106,26,.4);
  border-radius: var(--radius);
  padding: 28px;
}
.guarantee__seal {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent);
  color: #0a0a0b;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.02em;
  box-shadow: 0 12px 40px rgba(255,106,26,.35);
}
.guarantee h3 { font-size: 20px; margin-bottom: 6px; }
.guarantee p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 600px) {
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee__seal { margin: 0 auto; }
}

/* ---- About ---- */
.about .lead { margin-bottom: 18px; }

/* ---- FAQ ---- */
.faq { max-width: 880px; }
.faq__item {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 10px;
  transition: border-color .2s;
}
.faq__item[open] { border-color: rgba(255,106,26,.5); }
.faq__item summary {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  transition: transform .2s;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
}

/* ---- Booking ---- */
.book { text-align: left; }
.calendar {
  margin-top: 30px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.calendar iframe { display: block; width: 100%; background: #fff; }
.book__fallback {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}
.book__fallback a { color: var(--accent); font-weight: 600; }

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 30px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__logo { font-weight: 800; }
.footer__small { color: var(--muted); font-size: 13px; }
.footer__contact a { color: var(--accent); font-weight: 600; }
