:root {
  --bg: #100810;
  --bg-2: #1a0e16;
  --card: #241018;
  --line: rgba(255, 42, 74, .28);
  --red: #ff2a4a;
  --red-2: #ff5d73;
  --ink: #f7efe9;
  --muted: #cbb8b2;
  --gold: #f0c27a;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.6 "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(255, 42, 74, .22), transparent 60%),
    var(--bg);
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(16, 8, 16, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.header-inner { display: flex; align-items: center; gap: 18px; min-height: 72px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 36px; width: auto; }
.nav { display: flex; gap: 16px; margin-left: auto; }
.nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
.nav a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 12px 18px; text-decoration: none; font-weight: 700;
  border: 0; cursor: pointer;
}
.btn-red { background: var(--red); color: white; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.burger { display: none; margin-left: auto; background: none; border: 0; color: var(--ink); font-size: 26px; }
.hero { padding: 42px 0 12px; }
.eyebrow { color: var(--gold); letter-spacing: .08em; text-transform: uppercase; font-size: 12px; font-weight: 700; }
h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.05; margin: 8px 0 12px; }
.lead { font-size: 18px; color: var(--muted); max-width: 68ch; }
.hero-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.offer {
  margin-top: 22px; display: grid; grid-template-columns: 1.4fr .8fr; gap: 16px;
}
.panel {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 18px 18px 8px;
}
.panel h2 { margin: 0 0 8px; font-size: 22px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 18px 0 8px; }
.stat { background: var(--bg-2); border-radius: 14px; padding: 12px; border: 1px solid var(--line); }
.stat b { display: block; color: var(--gold); font-size: 20px; }
.stat span { color: var(--muted); font-size: 13px; }
.section { padding: 28px 0; }
h2 { font-size: 28px; line-height: 1.2; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--gold); font-weight: 700; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.card h3 { margin: 0 0 6px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
ol.steps { padding: 0; margin: 0; list-style: none; counter-reset: step; }
ol.steps li { counter-increment: step; display: grid; grid-template-columns: 42px 1fr; gap: 12px; margin: 0 0 12px; }
ol.steps li::before {
  content: counter(step); width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; background: var(--red); font-weight: 800;
}
.faq details { border-bottom: 1px solid var(--line); padding: 10px 0; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); }
.site-footer { border-top: 1px solid var(--line); padding: 28px 0 80px; color: var(--muted); font-size: 14px; }
.age { display: inline-block; border: 1px solid var(--gold); color: var(--gold); border-radius: 8px; padding: 2px 8px; font-weight: 800; }
.sticky {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: #2a1018; border: 1px solid var(--red); border-radius: 16px; padding: 10px 12px;
  text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.sticky small { color: var(--muted); display: block; }
@media (max-width: 860px) {
  .offer, .stats, .cards { grid-template-columns: 1fr 1fr; }
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: #1a0e16; padding: 12px 16px 16px; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .burger { display: block; }
  .header-inner .btn-red { display: none; }
}
@media (max-width: 560px) {
  .stats, .cards, .offer { grid-template-columns: 1fr; }
}
