/* ============================================================
   dubchak.online — стили
   Палитра и правила: 05_DRAFTS/2026-08-16_visual-style-black-gold-white_v1.md
   ============================================================ */

/* ---------- Шрифт (локально, кириллица + латиница) ---------- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-var-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-var-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Токены ---------- */
:root {
  --bg: #0C0D11;
  --surface: #111319;
  --surface-2: #0F1117;
  --gold: #C7A73B;
  --gold-light: #E0C15A;
  --gold-grad: linear-gradient(135deg, #E8CC6E 0%, #C7A73B 55%, #A5852D 100%);
  --text: #F3F3F0;
  --muted: #B9BCC2; /* осветлён по правке Юрия 17.08: #9A9DA3 читался плохо */
  --muted-2: #8B8E94;
  --line: rgba(243, 243, 240, 0.11);
  --line-gold: rgba(199, 167, 59, 0.45);
  --radius: 16px;
  --radius-lg: 22px;
  --container: 1140px;
  --narrow: 760px;
  --section-gap: clamp(88px, 11vw, 152px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- База ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(199, 167, 59, 0.85); color: #141006; }

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

a { color: var(--gold-light); text-decoration: none; }
a:hover { color: #F0D57A; }

h1, h2, h3 { margin: 0; font-weight: 700; line-height: 1.16; letter-spacing: -0.015em; text-wrap: balance; }

p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 200;
  background: var(--gold); color: #141006;
  padding: 10px 18px; border-radius: 10px; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; color: #141006; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--narrow); margin-inline: auto; }

section { padding-top: var(--section-gap); }
section:last-of-type { padding-bottom: var(--section-gap); }

/* ---------- Типографика секций ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold-light);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.7; flex: none;
}
/* На узких экранах в центрированных блоках линия перед надзаголовком мешает переносу */
@media (max-width: 640px) {
  .hero .eyebrow::before, .center .eyebrow::before { display: none; }
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-top: 18px;
}

.section-lead {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
  margin-top: 18px;
  max-width: 640px;
}

.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 30px;
  border: 0; border-radius: 13px; cursor: pointer;
  font: inherit; font-size: 16.5px; font-weight: 700; letter-spacing: 0.01em;
  background: var(--gold-grad); color: #16110A;
  box-shadow: 0 10px 30px -12px rgba(199, 167, 59, 0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), filter 0.2s;
}
.btn:hover { filter: brightness(1.07); transform: translateY(-1px); box-shadow: 0 16px 38px -12px rgba(199, 167, 59, 0.55); color: #16110A; }
.btn:active { transform: translateY(0); filter: brightness(0.98); }
.btn[disabled] { opacity: 0.55; cursor: default; filter: none; transform: none; box-shadow: none; }

.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none; font-weight: 600;
}
.btn--ghost:hover { border-color: var(--line-gold); color: var(--gold-light); filter: none; box-shadow: none; }

/* ---------- Шапка ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 13, 17, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--line);
}
.site-header__in {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--text); font-weight: 700; font-size: 17.5px; letter-spacing: 0.01em; }
.brand:hover { color: var(--text); }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--gold-grad);
  display: grid; place-items: center;
  color: #17130A;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 23px; font-weight: 700; line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 18px -6px rgba(199, 167, 59, 0.5);
}
.site-header .btn { min-height: 44px; padding: 10px 20px; font-size: 15px; border-radius: 11px; }
.header-cta-full { display: inline; }
.header-cta-short { display: none; }
@media (max-width: 560px) {
  .header-cta-full { display: none; }
  .header-cta-short { display: inline; }
  .brand__name { display: none; }
}

/* ---------- Первый экран ---------- */
.hero {
  position: relative;
  padding-top: clamp(72px, 11vh, 130px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: -20% -10% auto;
  height: 130%;
  background:
    radial-gradient(58% 44% at 50% 0%, rgba(199, 167, 59, 0.16), transparent 65%),
    radial-gradient(36% 30% at 82% 18%, rgba(199, 167, 59, 0.07), transparent 70%);
  pointer-events: none;
}
.hero__in { position: relative; text-align: center; max-width: 900px; margin-inline: auto; }

.hero h1 {
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-top: 26px;
}
.hero h1 .gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  color: #D9DAD8;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  max-width: 680px;
  margin: 26px auto 0;
}
.hero__cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px;
  margin-top: 40px;
}
.play-link {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--text); font-weight: 600; font-size: 16.5px;
  padding: 8px 6px;
}
.play-link:hover { color: var(--gold-light); }
.play-link__icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-gold);
  display: grid; place-items: center; flex: none;
  transition: border-color 0.2s, background 0.2s;
}
.play-link:hover .play-link__icon { border-color: var(--gold); background: rgba(199, 167, 59, 0.08); }
.play-link__icon svg { width: 14px; height: 14px; fill: var(--gold-light); margin-left: 2px; }

.hero__facts {
  display: flex; flex-wrap: wrap; justify-content: center;
  margin-top: clamp(48px, 7vw, 72px);
  border-top: 1px solid var(--line);
}
.hero__fact {
  flex: 1 1 200px;
  padding: 22px 18px 0;
  position: relative;
}
.hero__fact + .hero__fact::before {
  content: '';
  position: absolute; left: 0; top: 22px; bottom: 4px;
  width: 1px; background: var(--line);
}
.hero__fact b {
  display: block; font-size: 21px; font-weight: 800; letter-spacing: -0.01em;
  background: linear-gradient(135deg, #F0D57A 0%, #E0C15A 45%, #C7A73B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__fact span { display: block; color: var(--muted); font-size: 14.5px; margin-top: 4px; }
@media (max-width: 640px) {
  .hero__facts { display: grid; grid-template-columns: 1fr; gap: 0; }
  .hero__fact { padding: 16px 0 0; }
  .hero__fact + .hero__fact::before { display: none; }
}

.hero__note {
  color: var(--muted-2);
  font-size: 15px;
  margin-top: clamp(36px, 5vw, 52px);
}

/* ---------- Видео ---------- */
.video-section { padding-top: clamp(56px, 7vw, 88px); }
.video-shell {
  position: relative;
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line-gold);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.75),
    0 0 0 6px rgba(199, 167, 59, 0.04);
}
.video-shell video { width: 100%; height: 100%; object-fit: cover; }
.video-cover {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  background: transparent;
  border: 0; padding: 0; cursor: pointer;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.video-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.video-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.38));
}
.video-cover__btn {
  position: relative; z-index: 2;
  width: clamp(72px, 9vw, 92px); height: clamp(72px, 9vw, 92px);
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  box-shadow: 0 18px 50px -12px rgba(199, 167, 59, 0.65);
  transition: transform 0.3s var(--ease-out);
}
.video-cover:hover .video-cover__btn { transform: scale(1.06); }
.video-cover__btn svg { width: 30%; height: 30%; fill: #16110A; margin-left: 6%; }
.video-cover.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.video-caption {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
  color: var(--muted-2); font-size: 14.5px;
  margin-top: 16px;
}
.video-caption a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.video-caption a:hover { color: var(--gold-light); }

/* ---------- Карточки проблем ---------- */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 48px;
}
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  transition: transform 0.35s var(--ease-out), border-color 0.3s;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-gold); }
.card::before {
  content: '';
  display: block; width: 34px; height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  margin-bottom: 20px;
}
.card h3 { font-size: 18.5px; font-weight: 700; }
.card p { color: var(--muted); font-size: 15.5px; margin-top: 10px; }

/* ---------- Что разбираем ---------- */
.scope {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 980px) { .scope { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .scope { grid-template-columns: 1fr; } }
.scope__item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 26px 34px;
}
.scope__num {
  font-size: 46px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #F0D57A 0%, #E0C15A 45%, #C7A73B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.scope__item h3 { font-size: 19px; margin-top: 16px; }
.scope__item p { color: var(--muted); font-size: 15.5px; margin-top: 10px; }

/* ---------- Как проходит работа ---------- */
.steps { margin-top: 52px; position: relative; }
.step {
  position: relative;
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding-bottom: 44px;
}
.step:last-of-type { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute; left: 27px; top: 56px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--line-gold), rgba(199, 167, 59, 0.06));
}
.step:last-of-type::before { display: none; }
.step__num {
  width: 56px; height: 56px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: linear-gradient(160deg, rgba(199, 167, 59, 0.16), rgba(199, 167, 59, 0.04)), var(--surface);
  display: grid; place-items: center;
  color: #F0D57A; font-weight: 800; font-size: 20px;
}
.step h3 { font-size: 20px; padding-top: 13px; }
.step p { color: var(--muted); font-size: 16px; margin-top: 8px; max-width: 560px; }

.pull-quote {
  margin: 56px 0 0;
  padding: 6px 0 6px 26px;
  border-left: 2px solid var(--gold);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700; line-height: 1.4; letter-spacing: -0.01em;
}

/* ---------- Кому подходит ---------- */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
@media (max-width: 860px) { .fit { grid-template-columns: 1fr; } }
.fit__col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.fit__col--yes { border-top: 2px solid var(--gold); }
.fit__col--no { border-top: 2px solid rgba(243, 243, 240, 0.16); }
.fit__col h3 { font-size: 20px; }
.fit__col ul { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
.fit__col li { display: flex; gap: 14px; color: #D2D3D6; font-size: 16px; }
.fit__col li::before {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12.5px; line-height: 22px; text-align: center;
  margin-top: 2px;
}
.fit__col--yes li::before {
  content: '✓';
  color: #16110A; font-weight: 800;
  background: var(--gold-grad);
}
.fit__col--no li::before {
  content: '—';
  color: var(--muted-2);
  border: 1px solid var(--line);
}

/* ---------- Почему Юрий / почему бесплатно ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); margin-top: 48px; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }
.about h3 { font-size: clamp(21px, 2.4vw, 25px); }
.about .stack { display: grid; gap: 16px; margin-top: 20px; }
.about p { color: var(--muted); font-size: 16.5px; }
.about p b { color: var(--text); font-weight: 700; }
.about__note {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 18px 22px;
  border: 1px dashed var(--line-gold);
  border-radius: 14px;
  color: var(--muted); font-size: 15px;
}

/* ---------- Форма ---------- */
.form-section .narrow { max-width: 820px; }
.lead-form {
  margin-top: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 48px);
}
.form-note { color: var(--muted-2); font-size: 14.5px; margin-top: 14px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; margin-top: 8px; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label, .group-label { font-size: 15px; font-weight: 600; }
.field label .req { color: var(--gold); }
.field .hint { color: var(--muted-2); font-size: 13.5px; font-weight: 400; }

.field input, .field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font: inherit; font-size: 16px;
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(154, 157, 163, 0.55); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(199, 167, 59, 0.6);
  box-shadow: 0 0 0 3px rgba(199, 167, 59, 0.14);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: rgba(224, 106, 90, 0.65); }
.error-text { color: #E29A8D; font-size: 13.5px; display: none; }
.field.has-error .error-text { display: block; }

.segmented { display: flex; gap: 10px; flex-wrap: wrap; }
.segmented label {
  position: relative; cursor: pointer;
  border: 1px solid var(--line); border-radius: 11px;
  padding: 11px 20px;
  color: var(--muted); font-size: 15px; font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  min-height: 44px; display: inline-flex; align-items: center;
}
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label:has(input:checked) {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(199, 167, 59, 0.08);
}
.segmented label:has(input:focus-visible) { outline: 2px solid var(--gold-light); outline-offset: 2px; }

.consents { display: grid; gap: 14px; margin-top: 26px; }
.consent { display: flex; gap: 13px; cursor: pointer; font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.consent input {
  appearance: none; -webkit-appearance: none;
  flex: none; width: 22px; height: 22px; margin: 1px 0 0;
  border: 1.5px solid rgba(154, 157, 163, 0.55);
  border-radius: 7px; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.15s, border-color 0.15s;
}
.consent input:checked {
  background: var(--gold-grad);
  border-color: transparent;
}
.consent input:checked::after {
  content: '';
  width: 11px; height: 6px;
  border-left: 2.5px solid #16110A;
  border-bottom: 2.5px solid #16110A;
  transform: rotate(-45deg) translateY(-1px);
}
.consent a { text-decoration: underline; text-underline-offset: 3px; }

.form-actions { margin-top: 30px; display: grid; gap: 14px; }
.form-actions .btn { width: 100%; min-height: 58px; font-size: 17.5px; }
.form-status { font-size: 15.5px; line-height: 1.55; display: none; padding: 16px 20px; border-radius: 12px; }
.form-status.is-success { display: block; background: rgba(199, 167, 59, 0.1); border: 1px solid var(--line-gold); color: var(--text); }
.form-status.is-error { display: block; background: rgba(224, 106, 90, 0.08); border: 1px solid rgba(224, 106, 90, 0.35); color: #ECC0B8; }

/* honeypot */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- FAQ ---------- */
.faq { margin-top: 36px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  font-size: 17.5px; font-weight: 700;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-light); }
.faq summary .faq__icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease-out), border-color 0.2s;
}
.faq summary .faq__icon::before { content: '+'; color: var(--gold-light); font-size: 17px; font-weight: 600; line-height: 1; }
.faq details[open] .faq__icon { transform: rotate(45deg); border-color: var(--line-gold); }
.faq .faq__body { padding: 0 44px 24px 4px; color: var(--muted); font-size: 16px; }

/* ---------- Подвал ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: var(--section-gap);
  padding: 44px 0 52px;
}
.site-footer__in { display: grid; gap: 26px; }
.site-footer .brand { font-size: 16.5px; }
.site-footer__contact a { font-weight: 600; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.site-footer nav a { color: var(--muted-2); font-size: 14px; }
.site-footer nav a:hover { color: var(--gold-light); }
.site-footer__meta { color: var(--muted-2); font-size: 14px; }
@media (min-width: 861px) {
  .site-footer__in { grid-template-columns: auto 1fr auto; align-items: center; }
  .site-footer nav { justify-content: center; }
}

/* ---------- Появление при скролле ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .video-cover__btn { transition: none; }
}

/* ---------- Юридические страницы ---------- */
.legal-page { max-width: 800px; margin: 0 auto; padding: 64px 24px 96px; }
.legal-page h1 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 10px; }
.legal-page h2 { font-size: 20px; margin: 40px 0 4px; }
.legal-page p { color: var(--muted); margin-top: 14px; font-size: 15.5px; }
.legal-page ul { color: var(--muted); font-size: 15.5px; padding-left: 22px; display: grid; gap: 8px; margin-top: 14px; }
.legal-page .doc-meta { color: var(--muted-2); font-size: 14px; margin-top: 0; }
.legal-page .intro-box {
  margin: 26px 0 8px; padding: 18px 22px;
  border: 1px solid var(--line-gold); border-radius: 14px;
  color: var(--muted); font-size: 15px;
}
.legal-page .intro-box p { margin-top: 8px; font-size: 15px; }
.legal-page .intro-box p:first-child { margin-top: 0; }
.legal-page .draft-note {
  margin-top: 28px; padding: 18px 22px;
  border: 1px dashed var(--line-gold); border-radius: 14px;
  color: var(--muted); font-size: 15px;
}
.legal-page .back { display: inline-block; margin-top: 40px; font-weight: 600; }
