/* ─────────────────────────────────────────────────────────────
   LEADage — таргет в Meta. Тёмная премиум-тема, палитра leadage.agency.
   Стиль: сдержанность, ритм, невидимые детали (по Emil Kowalski).
   ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0B0B10;
  --bg2:       #131318;
  --bg3:       #17171F;
  --purple:    #7B5CF5;
  --purple-l:  #9B7EFF;
  --purple-dim:    rgba(123,92,245,0.12);
  --purple-border: rgba(123,92,245,0.28);
  --text:      #F0EFF8;
  --text-muted: rgba(240,239,248,0.62);
  --text-dim:   rgba(240,239,248,0.34);
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.11);
  --green:     #22C97A;
  --card-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px -30px rgba(0,0,0,0.9);

  /* Кривые из практики Emil Kowalski */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 40px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Фоновое свечение — статичное, дешёвое */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(700px 500px at 78% -8%, rgba(123,92,245,0.16), transparent 60%),
    radial-gradient(600px 500px at 5% 8%, rgba(123,92,245,0.08), transparent 55%);
  pointer-events: none; z-index: 0;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
::selection { background: rgba(123,92,245,0.35); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); position: relative; z-index: 1; }

/* ── Типографика-хелперы ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--purple-l);
  padding: 7px 13px; border-radius: 100px;
  background: var(--purple-dim); border: 1px solid var(--purple-border);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.03em; line-height: 1.06; }
.section-kicker {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 16px;
}
.accent { color: var(--purple-l); }
.grad {
  background: linear-gradient(120deg, var(--text) 30%, var(--purple-l) 75%, var(--purple) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ─────────────── Header ─────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out), backdrop-filter 300ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,11,16,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo { font-weight: 800; font-size: 20px; letter-spacing: -0.04em; }
.logo span { color: var(--purple-l); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14.5px; color: var(--text-muted); font-weight: 500;
  transition: color 160ms var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: none; }

/* ─────────────── Кнопки ─────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  padding: 14px 24px; border-radius: 13px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform 160ms var(--ease-out), background 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.btn:active { transform: scale(0.972); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--purple-l), var(--purple));
  box-shadow: 0 10px 30px -12px rgba(123,92,245,0.9), 0 1px 0 rgba(255,255,255,0.22) inset;
}
.btn-primary:hover { box-shadow: 0 16px 40px -12px rgba(123,92,245,1), 0 1px 0 rgba(255,255,255,0.28) inset; }
.btn-ghost {
  color: var(--text); background: rgba(255,255,255,0.03); border-color: var(--border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--purple-border); }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 11px; }
.btn-lg { padding: 17px 30px; font-size: 16.5px; border-radius: 15px; }
.btn-block { width: 100%; }

.scroll-cue {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: 13.5px; font-weight: 500; margin-top: 22px;
}
.scroll-cue .chev { animation: bob 1.8s var(--ease-in-out) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ─────────────── Секции ─────────────── */
section { position: relative; z-index: 1; }
.sec { padding: clamp(64px, 10vw, 116px) 0; }
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 6vw, 60px); }
.sec-head h2 { font-size: clamp(28px, 4.6vw, 44px); margin-bottom: 18px; }
.sec-head p { color: var(--text-muted); font-size: clamp(16px, 2vw, 18px); max-width: 620px; }
.divider { height: 1px; background: var(--border); border: 0; }

/* ─────────────── Hero ─────────────── */
.hero { padding: 148px 0 clamp(56px, 7vw, 84px); }
.hero-badge { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-plat { font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--text-dim); }
.hero h1 {
  font-size: clamp(38px, 7vw, 74px);
  max-width: 15ch; margin-bottom: 26px;
}
.hero h1 .num { color: var(--purple-l); white-space: nowrap; }
.hero-sub {
  font-size: clamp(17px, 2.3vw, 21px); color: var(--text-muted);
  max-width: 60ch; line-height: 1.6; margin-bottom: 20px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-niches {
  font-size: 15px; color: var(--text-dim); max-width: 62ch; line-height: 1.65; margin-bottom: 34px;
}
/* Оффер над кнопками */
.hero-offer {
  display: inline-flex; align-items: center; gap: 13px; flex-wrap: wrap;
  margin: 4px 0 28px; padding: 11px 16px 11px 12px; border-radius: 14px;
  background: rgba(34,201,122,0.08); border: 1px solid rgba(34,201,122,0.30);
}
.ho-flag {
  flex: none; font-size: 12.5px; font-weight: 800; letter-spacing: 0.02em; color: #0B0B10;
  background: var(--green); padding: 5px 9px; border-radius: 8px;
}
.ho-text { font-size: 14.5px; font-weight: 600; color: var(--text); line-height: 1.35; }
.ho-price { display: inline-flex; align-items: baseline; gap: 8px; flex: none; }
.ho-price b { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--green); }
.ho-price s { font-size: 15px; color: var(--text-dim); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-hook {
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border);
  max-width: 56ch; color: var(--text-muted); font-size: 15.5px; line-height: 1.6;
}
.hero-hook b { color: var(--text); font-weight: 600; }

/* ── Бегущая строка «кому подойдёт» ── */
.marquee-block { margin-top: clamp(44px, 6vw, 64px); }
.marquee-label {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: clamp(18px, 2.6vw, 23px); font-weight: 700; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 22px;
}
.marquee-label::before {
  content: ''; width: 26px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--purple-l), var(--purple)); flex: none;
}
.marquee {
  position: relative;
  width: 100vw; margin-left: calc(50% - 50vw);
  overflow: hidden;
  display: flex; width: 100vw;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  padding: 4px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 14px;
  flex: none; min-width: max-content; padding-right: 14px;
  animation: marquee 46s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.mq-item {
  display: inline-flex; align-items: center; gap: 10px; flex: none;
  padding: 11px 18px; border-radius: 100px;
  background: var(--bg2); border: 1px solid var(--border);
  font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--text);
  white-space: nowrap;
}
.mq-item svg { width: 18px; height: 18px; flex: none; color: var(--purple-l); }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee {
    overflow-x: auto; scrollbar-width: none;
    -webkit-mask-image: none; mask-image: none;
    width: auto; margin-left: 0;
  }
  .marquee::-webkit-scrollbar { display: none; }
}

/* ─────────────── Что входит ─────────────── */
.includes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.inc {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 20px; border-radius: 16px;
  background: var(--bg2); border: 1px solid var(--border);
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}
.inc .ic {
  flex: none; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  color: var(--purple-l);
}
.inc .ic svg { width: 16px; height: 16px; }
.inc p { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.35; }
@media (hover: hover) and (pointer: fine) {
  .inc:hover { transform: translateY(-3px); border-color: var(--purple-border); background: var(--bg3); }
}

/* ─────────────── Дифференциатор ─────────────── */
.diff { background: linear-gradient(180deg, transparent, rgba(123,92,245,0.04) 40%, transparent); }
.pullquote {
  border-left: 2px solid var(--purple); padding: 4px 0 4px 24px;
  margin: 0 0 40px; max-width: 760px;
}
.pullquote .q { font-size: clamp(18px, 2.4vw, 23px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.4; }
.pullquote .q em { color: var(--text-dim); font-style: normal; }
.pullquote .a { color: var(--text-muted); font-size: 16px; margin-top: 14px; }
.pullquote .a b { color: var(--text); font-weight: 600; }

.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dcard {
  padding: 26px 24px; border-radius: 18px;
  background: var(--bg2); border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .dcard:hover { transform: translateY(-4px); border-color: var(--purple-border); }
}
.dcard .tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.dcard h3 { font-size: 19px; margin-bottom: 12px; letter-spacing: -0.02em; }
.dcard p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.dcard p + p { margin-top: 10px; }
.diff-foot {
  margin-top: 34px; font-size: clamp(17px, 2.2vw, 20px); font-weight: 600;
  letter-spacing: -0.02em; max-width: 640px; color: var(--text);
}

/* ─────────────── 3 вещи перед запуском ─────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step {
  padding: 28px 26px; border-radius: 18px;
  background: var(--bg2); border: 1px solid var(--border);
}
.step .n {
  font-size: 15px; font-weight: 800; color: var(--purple-l);
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--purple-dim); border: 1px solid var(--purple-border); margin-bottom: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 14.5px; line-height: 1.58; }
.steps-foot {
  grid-column: 1 / -1; margin-top: 8px; padding: 20px 24px;
  border-radius: 14px; background: var(--purple-dim); border: 1px solid var(--purple-border);
  color: var(--text); font-size: 15.5px; font-weight: 500;
}
.steps-foot b { font-weight: 700; }

/* ─────────────── Отзывы (видео) ─────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.vcard {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 9 / 16; background: var(--bg2); border: 1px solid var(--border);
  cursor: pointer;
}
.vcard video, .vcard img.poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.vcard .veil {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(11,11,16,0) 40%, rgba(11,11,16,0.85) 100%);
  transition: opacity 300ms var(--ease-out);
}
.vcard .play {
  position: absolute; inset: 0; z-index: 3; margin: auto;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: #0B0B10;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.7);
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}
.vcard .name {
  position: absolute; left: 14px; bottom: 13px; z-index: 3;
  font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em;
  transition: opacity 300ms var(--ease-out);
}
.vcard.playing .veil, .vcard.playing .play, .vcard.playing .name { opacity: 0; pointer-events: none; }
@media (hover: hover) and (pointer: fine) {
  .vcard:hover .play { transform: scale(1.08); }
}
.reviews-note { margin-top: 22px; color: var(--text-dim); font-size: 14px; }

/* ─────────────── Форматы работы с кабинетом ─────────────── */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.plan {
  padding: 32px 30px; border-radius: 20px;
  background: var(--bg2); border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  display: flex; flex-direction: column;
}
.plan.featured { border-color: var(--purple-border); background: linear-gradient(180deg, rgba(123,92,245,0.07), var(--bg2)); }
.plan .badge {
  align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--purple-l); background: var(--purple-dim); border: 1px solid var(--purple-border);
  padding: 5px 11px; border-radius: 100px; margin-bottom: 18px;
}
.plan h3 { font-size: 21px; margin-bottom: 6px; }
.plan .price { font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.03em; margin: 8px 0 18px; }
.plan .price small { font-size: 15px; font-weight: 600; color: var(--text-muted); letter-spacing: -0.01em; }
.plan p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.plan p + p { margin-top: 12px; }
.plan .hint {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 13.5px; color: var(--text-dim); line-height: 1.55;
}
.plans-foot {
  margin-top: 18px; text-align: center; color: var(--text-muted); font-size: 15px;
}
.plans-foot b { color: var(--text); font-weight: 600; }

/* ─────────────── Сайт под рекламу ─────────────── */
.site-offer {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px); align-items: start;
}
.site-offer .price-flip {
  display: inline-flex; align-items: baseline; gap: 12px; margin: 4px 0 22px;
}
.site-offer .price-flip .old { color: var(--text-dim); text-decoration: line-through; font-size: 22px; font-weight: 600; }
.site-offer .price-flip .new { font-size: clamp(34px, 5vw, 46px); font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.site-offer .price-flip .off {
  font-size: 12.5px; font-weight: 700; color: var(--green);
  background: rgba(34,201,122,0.12); border: 1px solid rgba(34,201,122,0.3);
  padding: 4px 10px; border-radius: 100px; align-self: center;
}
.checklist { display: grid; gap: 11px; margin-top: 8px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; list-style: none; font-size: 15px; color: var(--text-muted); }
.checklist li .ck {
  flex: none; width: 21px; height: 21px; border-radius: 7px; margin-top: 1px;
  background: rgba(34,201,122,0.14); border: 1px solid rgba(34,201,122,0.34); color: var(--green);
  display: grid; place-items: center;
}
.checklist li .ck svg { width: 12px; height: 12px; }
.site-note {
  margin-top: 26px; font-size: 16px; font-weight: 600; letter-spacing: -0.015em; color: var(--text);
}

.apple-aside {
  padding: 28px 26px; border-radius: 18px; background: var(--bg2); border: 1px solid var(--border);
  position: sticky; top: 90px;
}
.apple-aside .q { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; }
.apple-aside p { color: var(--text-muted); font-size: 15px; line-height: 1.62; }
.apple-aside p + p { margin-top: 12px; }
.apple-aside .need { margin-top: 16px; display: grid; gap: 7px; }
.apple-aside .need span { display: flex; gap: 9px; font-size: 14px; color: var(--text); align-items: baseline; }
.apple-aside .need span::before { content: '→'; color: var(--purple-l); font-weight: 700; }
.apple-aside .kick { margin-top: 18px; font-weight: 600; color: var(--text); font-size: 15px; }

/* ─────────────── Финал ─────────────── */
.final { padding: clamp(72px, 10vw, 130px) 0; }
.final-card {
  border-radius: 26px; padding: clamp(32px, 5vw, 64px);
  background:
    radial-gradient(600px 340px at 85% 0%, rgba(123,92,245,0.2), transparent 62%),
    var(--bg2);
  border: 1px solid var(--purple-border);
  box-shadow: 0 40px 120px -50px rgba(123,92,245,0.6);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 60px); align-items: center;
}
.final-card h2 { font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 20px; letter-spacing: -0.03em; }
.final-prices { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.final-prices .row { display: flex; align-items: baseline; gap: 10px; font-size: 16px; color: var(--text-muted); }
.final-prices .row b { color: var(--text); font-weight: 700; font-size: 18px; }
.final-prices .row .old { text-decoration: line-through; color: var(--text-dim); font-size: 14px; }

/* Форма */
.lead-form { display: grid; gap: 12px; }
.lead-form .field { position: relative; }
.lead-form label {
  display: block; font-size: 12.5px; font-weight: 600; color: var(--text-dim);
  margin-bottom: 7px; letter-spacing: 0.01em;
}
.lead-form input, .lead-form select {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--text);
  background: rgba(11,11,16,0.55); border: 1px solid var(--border-2); border-radius: 12px;
  padding: 13px 15px;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
  appearance: none; -webkit-appearance: none;
}
.lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239B7EFF' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
.lead-form input::placeholder { color: var(--text-dim); }
.lead-form input:focus, .lead-form select:focus {
  outline: none; border-color: var(--purple); background: rgba(11,11,16,0.8);
  box-shadow: 0 0 0 4px rgba(123,92,245,0.16);
}
.lead-form .btn { margin-top: 6px; }
.form-fine { font-size: 12.5px; color: var(--text-dim); text-align: center; margin-top: 4px; line-height: 1.5; }
.form-fine a { color: var(--purple-l); }
.form-ok {
  display: none; text-align: center; padding: 30px 20px;
}
.form-ok .ic {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px;
  background: rgba(34,201,122,0.14); border: 1px solid rgba(34,201,122,0.4); color: var(--green);
  display: grid; place-items: center;
}
.form-ok h3 { font-size: 22px; margin-bottom: 10px; }
.form-ok p { color: var(--text-muted); font-size: 15px; }
.lead-form.sent { display: none; }
.form-ok.sent { display: block; }

/* ─────────────── Footer ─────────────── */
.site-footer { border-top: 1px solid var(--border); padding: 44px 0; }
.foot { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.foot .logo { font-size: 18px; }
.foot .fmeta { color: var(--text-dim); font-size: 13.5px; }
.foot .flinks { display: flex; gap: 22px; }
.foot .flinks a { color: var(--text-muted); font-size: 14px; transition: color 160ms var(--ease-out); }
.foot .flinks a:hover { color: var(--text); }

/* ─────────────── Reveal on scroll ─────────────── */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out); }
.reveal[data-d="1"].in { transition-delay: 60ms; }
.reveal[data-d="2"].in { transition-delay: 120ms; }
.reveal[data-d="3"].in { transition-delay: 180ms; }
.reveal[data-d="4"].in { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-cue .chev { animation: none; }
}

/* ─────────────── Адаптив ─────────────── */
@media (max-width: 980px) {
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid, .steps { grid-template-columns: 1fr; }
  .site-offer { grid-template-columns: 1fr; }
  .apple-aside { position: static; }
  .final-card { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column;
    gap: 0; padding: 8px var(--pad) 18px;
    background: rgba(11,11,16,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
  }
  .nav-links.open a { padding: 13px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-cta .btn.hide-sm { display: none; }
  .menu-btn {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--border-2); color: var(--text); cursor: pointer;
  }
  .plans { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 120px; }
}
@media (max-width: 460px) {
  .includes-grid { grid-template-columns: 1fr; }
}
