/* ══════════════════════════════════════════════════════════
   ВОЗРОЖДЕНИЕ · лендинг Марины Хубецовой
   Тёмный магический premium: космос, золото, синий.
   Playfair Display + Inter. Без растянутых плашек и искр.
   ══════════════════════════════════════════════════════════ */

:root {
  --bg: #06070a;
  --panel: linear-gradient(168deg, rgba(19,23,31,0.92) 0%, rgba(11,14,19,0.94) 48%, rgba(7,9,13,0.96) 100%);
  --panel-solid: #0b0e13;
  --gold: #caa665;
  --gold-bright: #dbc491;
  --gold-pale: #efe2c2;
  --gold-dim: #9c7c47;
  --gold-line: rgba(197, 163, 90, 0.34);
  --gold-line-soft: rgba(197, 163, 90, 0.16);
  --blue: #32526f;
  --text: #ece5dc;
  --muted: #a19d96;
  --grad-gold: linear-gradient(180deg, #f0e2c0 0%, #d8bd84 45%, #ab8140 100%);
  --grad-gold-btn: linear-gradient(180deg, #efdfb4 0%, #d3ae6e 52%, #a8813f 100%);
  --radius: 20px;
  --sp-1: 8px; --sp-2: 16px; --sp-3: 24px; --sp-4: 40px; --sp-5: 64px; --sp-6: 96px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Космос-фон приложения на всю страницу */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2;
  background: var(--bg) url("../img/bg-space.webp") top center / cover no-repeat;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 42% at 50% 0%, rgba(50, 82, 111, 0.13), transparent 68%),
    radial-gradient(ellipse 65% 40% at 12% 72%, rgba(197, 163, 90, 0.045), transparent 72%),
    radial-gradient(ellipse 65% 40% at 88% 32%, rgba(50, 82, 111, 0.07), transparent 72%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-bright); }
b, strong { font-weight: 600; }

/* фирменный фокус вместо системного синего кольца */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 760px; }
.container.wide { max-width: 1400px; }

/* ─────────── ЗАГОЛОВКИ СЕКЦИЙ (чистые, без плашек) ─────────── */
.sect-head { text-align: center; margin-bottom: var(--sp-4); }
.eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.32em; text-indent: 0.32em; text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}
.h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(28px, 5.4vw, 46px);
  line-height: 1.18;
  letter-spacing: 0.005em;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* тонкая золотая линия с ромбом под заголовком */
.rule {
  display: block; position: relative;
  width: 132px; height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-line) 22%, var(--gold-line) 78%, transparent);
}
.rule::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 10px rgba(208, 174, 110, 0.7);
}

.section-sub { color: var(--text); font-size: clamp(15px, 3.7vw, 18px); max-width: 660px; margin: 0 auto var(--sp-4); text-align: center; }
.section-note { color: var(--muted); font-size: 15px; max-width: 640px; margin: 0 auto var(--sp-3); text-align: center; }

.section { position: relative; padding: var(--sp-5) 0; overflow-x: clip; }
.section > .container { position: relative; z-index: 1; }
.section + .section::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(520px, 70vw); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line-soft), transparent);
}

/* ─────────── КНОПКИ ─────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 54px; padding: 14px 32px;
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 14.5px;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  border: none; border-radius: 13px; cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease;
}
.btn-gold {
  background: var(--grad-gold-btn);
  color: #17120a;
  box-shadow: 0 0 30px rgba(208, 174, 110, 0.24), inset 0 1px 0 rgba(255, 252, 244, 0.5);
}
.btn-gold:hover { filter: brightness(1.06); box-shadow: 0 0 42px rgba(208, 174, 110, 0.4), inset 0 1px 0 rgba(255, 252, 244, 0.5); }
.btn-gold:active { transform: scale(0.975); }
.btn-ghost {
  background: rgba(197, 163, 90, 0.07);
  color: var(--gold-bright);
  border: 1px solid var(--gold-line);
}
.btn-ghost:hover { background: rgba(197, 163, 90, 0.14); border-color: var(--gold); }
.btn-ghost:active { transform: scale(0.975); }
.btn-xl { min-height: 62px; padding: 18px 46px; font-size: 16px; }
.btn-sm { min-height: 46px; padding: 11px 16px; font-size: 12.5px; letter-spacing: 0.05em; border-radius: 11px; }

/* ─────────── ПАНЕЛЬ / КАРТОЧКА ─────────── */
.card {
  position: relative;
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  box-shadow: inset 0 1px 0 rgba(223, 202, 154, 0.07), 0 20px 55px rgba(0, 0, 0, 0.5);
}
.card-legend {
  position: absolute; top: 0; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex; justify-content: center;
  pointer-events: none;
}
.legend-txt {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.24em; text-indent: 0.24em; text-transform: uppercase;
  color: var(--gold-bright);
  background: #0a0c11;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 9px 22px;
  white-space: nowrap;
}

/* ═══════════════ HERO (full-bleed) ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;        /* фолбэк для старых браузеров */
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
/* постер и видео лежат ровно друг на друге и кадрируются одинаково */
.hero-poster, .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 8%;
}
.hero-poster img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; }
.hero-video {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-video.ready { opacity: 1; }          /* появляется, только когда реально играет */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }           /* при отключённой анимации остаётся статичный кадр */
}
/* скрим без «провала» прозрачности — текст читается поверх фото */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,7,10,0.55) 0%, rgba(6,7,10,0.34) 18%, rgba(6,7,10,0.60) 40%, rgba(6,7,10,0.86) 72%, var(--bg) 99%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding-bottom: 42px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
}
/* локальная подложка под текстовым блоком (только мобайл/планшет) */
.hero-inner::before {
  content: ""; position: absolute; inset: -8% -6% -4%; z-index: -1;
  background: radial-gradient(ellipse 118% 66% at 50% 58%, rgba(6,7,10,0.78), transparent 74%);
  pointer-events: none;
}
.hero-plaque {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-indent: 0.22em; text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 10px 18px;
  max-width: 100%;
  background: rgba(6, 7, 10, 0.62);
  backdrop-filter: blur(6px);
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(34px, 9.4vw, 82px);
  line-height: 1.02;
  letter-spacing: 0.04em; text-indent: 0.04em;
  max-width: 100%;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 3px 26px rgba(0, 0, 0, 0.9));
}
.hero-sub {
  font-family: "Playfair Display", serif; font-style: italic; font-weight: 500;
  font-size: clamp(17px, 4.5vw, 27px);
  color: var(--gold-pale);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}
.hero-lead {
  max-width: 540px;
  font-size: clamp(15px, 3.9vw, 17.5px);
  color: var(--text);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
  text-wrap: balance;
}
.hero-markers {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 12px;
  font-size: 13.5px; color: var(--muted);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}
.hero-markers b { color: var(--gold-bright); font-weight: 700; }
.hero-markers .dot { color: var(--gold-dim); }
.hero .btn-xl { margin-top: 8px; }
.hero-scroll {
  margin-top: 4px; color: var(--gold);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  animation: float 2.2s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll { animation: none; } }

/* Низкие экраны (iPhone SE 667, Galaxy S8 740): кадр не обрезается по высоте,
   фигура занимает верхние 60% — текст в полном кегле подпирал бы подбородок.
   Поджимаем блок примерно на 130px, стрелку прокрутки убираем. */
@media (max-height: 780px) and (max-width: 999px) {
  .hero-inner { gap: 10px; padding-bottom: 26px; }
  .hero-plaque { font-size: 10px; letter-spacing: 0.18em; text-indent: 0.18em; padding: 7px 14px; }
  .hero-title { font-size: clamp(30px, 8vw, 46px); }
  .hero-sub { font-size: clamp(15px, 4vw, 19px); }
  .hero-lead { font-size: 14.5px; line-height: 1.45; }
  .hero-markers { font-size: 12.5px; gap: 5px 10px; }
  .hero .btn-xl { min-height: 54px; padding: 14px 30px; font-size: 15px; margin-top: 2px; }
  .hero-scroll { display: none; }
}

/* ═══════════════ ПЕРВЫЕ 100 ═══════════════ */
.card-first100 { text-align: center; padding-top: 46px; }
.counter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: var(--sp-4); }
.counter-box {
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  border: 1px solid var(--gold-line); border-radius: 15px;
  padding: 12px 24px;
  background: rgba(197, 163, 90, 0.05);
}
.counter-num { font-family: "Playfair Display", serif; font-size: 34px; font-weight: 700; line-height: 1; color: var(--gold-bright); font-variant-numeric: tabular-nums; }
.counter-total { font-size: 19px; color: var(--gold-dim); }
.counter-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.timer { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.timer-cell {
  min-width: 62px; padding: 11px 8px;
  border: 1px solid var(--gold-line); border-radius: 14px;
  background: rgba(6, 7, 10, 0.55);
  display: flex; flex-direction: column; align-items: center; gap: 1px;
}
.timer-cell b { font-family: "Playfair Display", serif; font-size: 27px; font-weight: 700; line-height: 1.1; color: var(--gold-bright); font-variant-numeric: tabular-nums; }
.timer-cell span { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.timer-big .timer-cell { min-width: 72px; }
.timer-big .timer-cell b { font-size: 34px; }
@media (min-width: 420px) {
  .timer-cell { min-width: 66px; }
  .timer-big .timer-cell { min-width: 78px; }
  .timer-big .timer-cell b { font-size: 36px; }
}

.gifts-grid { display: grid; gap: 18px; grid-template-columns: 1fr; margin: var(--sp-4) 0 var(--sp-3); text-align: left; }
.gift {
  border: 1px solid var(--gold-line-soft); border-radius: 17px;
  background: rgba(10, 12, 17, 0.6);
  padding: 20px;
  display: flex; flex-direction: column; gap: 9px;
}
.gift h3 { font-family: "Playfair Display", serif; font-size: 19px; font-weight: 600; color: var(--gold-bright); line-height: 1.32; }
.gift p { font-size: 14px; color: var(--muted); }
.gift-media { margin: -8px -8px 4px; }
.gift-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: contain; }
.gift-price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 4px; }
.gift-price s { color: var(--muted); font-size: 15px; }
.gift-price em { font-style: normal; font-weight: 700; font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold-bright); }
.gift-wide { text-align: center; align-items: center; background: linear-gradient(160deg, rgba(202,166,101,0.09), rgba(10,12,17,0.7) 70%); }
.gifts-total { font-size: 17px; margin-bottom: var(--sp-3); color: var(--muted); }
.gifts-total b { font-family: "Playfair Display", serif; font-size: 25px; color: var(--gold-bright); }

/* ═══════════════ БОЛЬ / ЦИТАТЫ ═══════════════ */
#pain { position: relative; }
.pain-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.pain-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.pain-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(6,7,10,0.86) 24%, rgba(6,7,10,0.9) 76%, var(--bg) 100%);
}
.quotes { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: var(--sp-4); }
.quote {
  position: relative;
  isolation: isolate;
  display: flex; align-items: center;
  min-height: 168px;
  padding: 26px 28px 26px 32px;
  border: 1px solid var(--gold-line-soft);
  border-radius: 18px;
  overflow: hidden;
  background: #080a0f;
}
/* визуал внутри плашки — целиком, без растяжения */
.quote-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
  opacity: 1;
}
.quote::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(96deg, rgba(6,7,10,0.94) 0%, rgba(6,7,10,0.82) 38%, rgba(6,7,10,0.30) 72%, rgba(6,7,10,0.12) 100%);
}
.quote-txt {
  position: relative;
  font-family: "Playfair Display", serif; font-style: italic; font-weight: 500;
  font-size: clamp(17px, 4.2vw, 22px); line-height: 1.42;
  color: var(--gold-pale);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.95);
  max-width: 34ch;
}
.quote::before {
  content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 2px;
  border-radius: 2px; z-index: 1;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.pain-outro {
  max-width: 640px; margin: 0 auto; text-align: center;
  font-size: clamp(16px, 4.1vw, 19px);
}
.pain-outro em { color: var(--gold-bright); font-style: normal; }

/* ═══════════════ МАНИФЕСТ ═══════════════ */
.section-manifest { text-align: center; }
.manifest {
  font-family: "Playfair Display", serif; font-weight: 500;
  font-size: clamp(18px, 4.6vw, 25px); line-height: 1.62;
  color: var(--text);
}
.manifest b { color: var(--gold-bright); font-weight: 600; }

/* ═══════════════ О МАРИНЕ ═══════════════ */
.story-grid { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: center; margin-bottom: var(--sp-5); }
.story-diptych {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: 0 0 50px rgba(208, 174, 110, 0.13), 0 22px 60px rgba(0, 0, 0, 0.55);
}
.story-text { display: flex; flex-direction: column; gap: 18px; font-size: clamp(15px, 3.9vw, 17px); }

/* цифры — карточки с золотыми эмблемами */
.numbers {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: var(--sp-5);
}
.num {
  padding: 22px 14px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  border: 1px solid var(--gold-line-soft);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(223, 202, 154, 0.06);
}
.num img {
  width: clamp(78px, 20vw, 108px); height: auto;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 20px rgba(208, 174, 110, 0.28));
}
.num b {
  font-family: "Playfair Display", serif; font-weight: 700;
  font-size: clamp(26px, 6.2vw, 36px); line-height: 1.05;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.num span { font-size: 12.5px; color: var(--muted); line-height: 1.4; max-width: 22ch; }

.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: var(--sp-3); }
.tags span {
  font-size: 12.5px; color: var(--gold-bright);
  border: 1px solid var(--gold-line-soft); border-radius: 999px;
  padding: 8px 16px;
}

/* описание проекта под манифестом */
.about-project {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 640px; margin: var(--sp-3) auto 0;
  font-size: clamp(15px, 3.9vw, 17.5px);
  color: var(--muted);
}

.diff-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin: var(--sp-5) 0; }
.diff {
  border: 1px solid var(--gold-line-soft); border-radius: 17px;
  background: var(--panel);
  padding: 24px;
}
.diff h3 { font-family: "Playfair Display", serif; font-size: 19px; color: var(--gold-bright); margin-bottom: 9px; }
.diff p { font-size: 14px; color: var(--muted); }

.key-phrase {
  font-family: "Playfair Display", serif; font-weight: 600;
  font-size: clamp(19px, 4.8vw, 27px); line-height: 1.48; text-align: center;
  max-width: 780px; margin: 0 auto var(--sp-5);
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lifestyle-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  max-width: 620px; margin: 0 auto;
}
.lifestyle-row img { border-radius: 14px; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 30%; border: 1px solid var(--gold-line-soft); }

/* ═══════════════ МЕТОД ═══════════════ */
.method-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; align-items: center; margin-bottom: var(--sp-4); }
.method-visual { width: min(330px, 76vw); margin: 0 auto; }
.method-visual img { filter: drop-shadow(0 0 46px rgba(208, 174, 110, 0.28)); }
.stages { list-style: none; display: grid; gap: 11px; grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; position: relative; }
.stages::before {
  content: ""; position: absolute; left: 21px; top: 22px; bottom: 22px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-line) 12%, var(--gold-line) 88%, transparent);
}
.stage { display: flex; align-items: center; gap: 16px; position: relative; }
.stage i {
  flex: 0 0 auto; width: 43px; height: 43px;
  display: flex; align-items: center; justify-content: center;
  font-style: normal; font-family: "Inter", sans-serif; font-weight: 600; font-size: 16px;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--gold-bright);
  border: 1px solid var(--gold-line); border-radius: 50%;
  background: radial-gradient(circle, rgba(197,163,90,0.15), rgba(6,7,10,0.95) 74%);
  position: relative; z-index: 1;
}
.stage span { font-family: "Playfair Display", serif; font-size: clamp(17px, 4.3vw, 21px); font-weight: 600; }
.method-note { max-width: 720px; margin: 0 auto var(--sp-3); color: var(--muted); font-size: 15px; text-align: center; }

.field-card { max-width: 880px; margin: var(--sp-5) auto 0; }
.field-flex { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.field-img { width: min(210px, 56vw); flex: 0 0 auto; filter: drop-shadow(0 0 34px rgba(80, 130, 190, 0.32)); }
.field-card p, .free-med p { font-size: clamp(15px, 3.9vw, 17px); }

/* ═══════════════ 20 ПРАКТИК ═══════════════ */
.acc-stage {
  margin-bottom: 12px;
  border: 1px solid var(--gold-line-soft); border-radius: 17px;
  background: var(--panel);
  overflow: hidden;
}
.acc-head {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 19px 20px;
  background: none; border: none; cursor: pointer;
  color: var(--text); text-align: left;
  font-family: "Playfair Display", serif; font-size: clamp(16px, 4.1vw, 20px); font-weight: 600;
  min-height: 58px; touch-action: manipulation;
}
.acc-n { flex: 0 0 auto; font-size: 11.5px; font-family: "Inter", sans-serif; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); }
.acc-t { flex: 1 1 auto; color: var(--gold-bright); }
.acc-chev { flex: 0 0 auto; color: var(--gold); transition: transform 0.25s ease; }
.acc-stage.open .acc-chev { transform: rotate(180deg); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.acc-stage.open .acc-panel { grid-template-rows: 1fr; }
.acc-panel-inner { overflow: hidden; }
.practices-list { display: grid; gap: 12px; padding: 4px 16px 20px; grid-template-columns: 1fr; }
.practice {
  border: 1px solid var(--gold-line-soft); border-radius: 14px;
  background: rgba(6, 7, 10, 0.5);
  padding: 17px;
  display: flex; flex-direction: column; gap: 8px;
}
.practice-top { display: flex; align-items: center; gap: 12px; }
.practice-top svg { flex: 0 0 auto; width: 38px; height: 38px; }
.practice h4 { font-family: "Playfair Display", serif; font-size: 17px; font-weight: 600; color: var(--gold-bright); line-height: 1.3; }
.p-pain, .p-get { font-size: 13.5px; }
.p-pain { color: var(--muted); }
.p-get { color: var(--text); }
.p-pain b, .p-get b { font-weight: 700; font-size: 10.5px; letter-spacing: 0.15em; text-transform: uppercase; }
.p-pain b { color: #b3865f; }
.p-get b { color: var(--gold); }

.free-med { max-width: 880px; margin: var(--sp-5) auto 0; }
.free-med .field-img { filter: drop-shadow(0 0 40px rgba(208, 174, 110, 0.35)); }
.med-img { width: min(290px, 74vw); }

/* ═══════════════ ОТЗЫВЫ ═══════════════ */
.reviews-row { display: grid; gap: 14px; grid-template-columns: 1fr; }
.reviews-row img { width: 100%; border-radius: 16px; border: 1px solid var(--gold-line-soft); }

/* ═══════════════ ИИ-ЧАТ ═══════════════ */
.ai-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; align-items: center; }
.phone {
  width: min(340px, 86vw); margin: 0 auto;
  border: 1px solid var(--gold-line); border-radius: 38px;
  background: #0b0d12;
  box-shadow: 0 0 66px rgba(208, 174, 110, 0.16), 0 24px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden; position: relative;
}
.phone-notch { width: 110px; height: 22px; margin: 10px auto 4px; background: #06070a; border-radius: 999px; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 10px 16px 12px; border-bottom: 1px solid var(--gold-line-soft); }
.chat-head img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-line); }
.chat-head b { display: block; font-family: "Playfair Display", serif; font-size: 17px; }
.online { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #7fc98f; }
.online i { width: 7px; height: 7px; border-radius: 50%; background: #7fc98f; box-shadow: 0 0 8px #7fc98f; }
.chat-body { padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; min-height: 320px; }
.msg { max-width: 82%; padding: 10px 14px; font-size: 13.5px; line-height: 1.45; border-radius: 16px; }
.msg.me { align-self: flex-start; background: #171b22; border-bottom-left-radius: 6px; }
.msg.her {
  align-self: flex-end;
  background: linear-gradient(160deg, rgba(202,166,101,0.24), rgba(156,124,71,0.14));
  border: 1px solid var(--gold-line-soft);
  border-bottom-right-radius: 6px;
}
.msg.typing { display: flex; gap: 5px; padding: 13px 16px; }
.msg.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: blink 1.2s ease-in-out infinite; }
.msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.msg.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%,100% { opacity: 0.25; } 50% { opacity: 1; } }
.chat-input {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin: 0 12px 14px; padding: 12px 8px 12px 16px;
  border: 1px solid var(--gold-line-soft); border-radius: 999px;
  color: var(--muted); font-size: 13.5px;
}
.chat-input button { width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; background: var(--grad-gold-btn); color: #17120a; display: grid; place-items: center; }
.ai-text { display: flex; flex-direction: column; gap: 18px; max-width: 560px; margin: 0 auto; }
.ai-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ai-feats li { padding-left: 26px; position: relative; font-size: 15px; }
.ai-feats li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px;
  background: var(--grad-gold);
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}
.ai-anchor { font-size: clamp(16px, 4.1vw, 19px); }
.ai-anchor b { font-family: "Playfair Display", serif; color: var(--gold-bright); }
.ai-disclaimer { font-size: 13px; color: var(--muted); border: 1px solid var(--gold-line-soft); border-radius: 12px; padding: 13px 16px; background: rgba(6,7,10,0.5); }

/* ═══════════════ ТАРИФЫ ═══════════════ */
#tariffs::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 50% 42%, rgba(197, 163, 90, 0.08), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(50, 82, 111, 0.10), transparent 72%);
}
.tariffs { display: grid; gap: 26px; grid-template-columns: 1fr; margin-bottom: var(--sp-5); }
.tariff {
  position: relative;
  border: 1px solid var(--gold-line-soft); border-radius: var(--radius);
  background: var(--panel);
  padding: 34px 20px 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: inset 0 1px 0 rgba(223,202,154,0.07), 0 18px 48px rgba(0,0,0,0.45);
}
.tariff.recommended {
  border-color: var(--gold);
  background: linear-gradient(168deg, rgba(32,27,18,0.94) 0%, rgba(13,14,18,0.95) 46%, rgba(7,9,13,0.96) 100%);
  box-shadow: 0 0 56px rgba(208, 174, 110, 0.20), inset 0 1px 0 rgba(223,202,154,0.14), 0 18px 48px rgba(0,0,0,0.5);
}
.tariff-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #17120a;
  background: var(--grad-gold-btn);
  padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 0 22px rgba(208, 174, 110, 0.4);
}
.tariff-glyph { width: 84px; height: 84px; margin: 2px auto 0; }
.tariff-name { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; color: var(--gold-bright); text-align: center; line-height: 1.2; }
.tariff-tagline { font-family: "Playfair Display", serif; font-style: italic; color: var(--muted); font-size: 14px; text-align: center; margin-top: -6px; }
.price-block { text-align: center; margin: 4px 0 2px; }
.price-old {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; color: var(--muted);
}
.price-old s { text-decoration-color: rgba(200, 90, 70, 0.85); text-decoration-thickness: 2px; font-variant-numeric: tabular-nums; }
.price-off {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.09em;
  color: #17120a; background: var(--grad-gold-btn);
  padding: 3px 8px; border-radius: 6px;
}
.tariff-price {
  display: block;
  font-family: "Playfair Display", serif; font-weight: 700;
  font-size: clamp(30px, 6.4vw, 36px); line-height: 1.1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.tariff ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.tariff li { padding-left: 21px; position: relative; font-size: 13.5px; line-height: 1.5; }
.tariff li::before {
  content: ""; position: absolute; left: 2px; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 7px rgba(208,174,110,0.6);
}
.tariff li.minus { color: var(--muted); }
.tariff li.minus::before { background: #57514a; box-shadow: none; }
.tariff ul { flex: 1 1 auto; }
.tariff-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 18px; }
.tariff-actions .btn { width: 100%; }
.tariff-note {
  font-size: 12px; color: var(--gold-dim); text-align: center;
  margin-top: 8px; font-style: italic; line-height: 1.4;
}

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--gold-line-soft); border-radius: 17px; background: rgba(8, 10, 15, 0.6); }
.cmp-table { width: 100%; min-width: 660px; border-collapse: collapse; font-size: 14px; }
.cmp-table th, .cmp-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--gold-line-soft); }
.cmp-table thead th { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); background: rgba(197,163,90,0.05); font-weight: 700; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover td { background: rgba(197,163,90,0.04); }
.cmp-table .tname { font-family: "Playfair Display", serif; font-size: 17px; color: var(--gold-bright); white-space: nowrap; }
.cmp-table .tnum { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 700; color: var(--gold-bright); font-size: 15px; }
.cmp-table .told { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; }
.cmp-table .hl td { background: rgba(197,163,90,0.09); }
.tariff-args { margin-top: var(--sp-3); text-align: center; color: var(--muted); font-size: 15px; line-height: 1.9; }

/* ═══════════════ ДВЕ ВЕРСИИ ═══════════════ */
.versus { display: grid; gap: 18px; grid-template-columns: 1fr; margin-bottom: var(--sp-3); }
.vs-col { border-radius: var(--radius); overflow: hidden; padding-bottom: 26px; }
.vs-photo { position: relative; }
.vs-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 32%; }
.vs-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,7,10,0.92) 100%); }
.vs-tag {
  position: absolute; left: 20px; bottom: 16px; z-index: 1;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
}
.vs-now .vs-tag { color: var(--muted); border: 1px solid rgba(255,255,255,0.14); background: rgba(6,7,10,0.7); }
.vs-after .vs-tag { color: #17120a; background: var(--grad-gold-btn); }
.vs-col h3 { font-family: "Playfair Display", serif; font-size: 23px; margin: 20px 22px 14px; }
.vs-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; margin: 0 22px; }
.vs-col li { padding-left: 24px; position: relative; }
.vs-now { background: rgba(9, 10, 13, 0.85); border: 1px solid rgba(255,255,255,0.06); color: var(--muted); }
.vs-now h3 { color: var(--muted); }
.vs-now li::before { content: "—"; position: absolute; left: 0; color: #57514a; }
.vs-now .vs-photo img { filter: saturate(0.55) brightness(0.8); }
.vs-after {
  background: linear-gradient(168deg, rgba(30,25,16,0.9), rgba(9,11,15,0.94) 62%);
  border: 1px solid var(--gold-line);
  box-shadow: 0 0 44px rgba(208, 174, 110, 0.12);
}
.vs-after h3 { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vs-after li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 12px; height: 12px;
  background: var(--grad-gold);
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}

/* ═══════════════ ПОДАРКИ ═══════════════ */
.gifts-simple { display: grid; gap: 20px; grid-template-columns: 1fr; }
.gifts-simple .gift { align-items: center; text-align: center; }
.gifts-simple .gift-media { width: 100%; margin: 0 0 6px; }
.gifts-simple .gift-media img { aspect-ratio: 3 / 4; object-fit: contain; }

/* ═══════════════ КЕЙСЫ ═══════════════ */
.cases { display: flex; flex-direction: column; gap: var(--sp-5); }
/* по два фото на кейс; аспект контейнера подобран под родные пропорции пары —
   поэтому обрезки лиц нет и подложка не нужна */
.case-photos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin: 0 auto 24px;
}
.case-photos img {
  width: 100%; height: auto; object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--gold-line-soft);
}
.cp-4x5 img { aspect-ratio: 4 / 5; }
.cp-1x1 img { aspect-ratio: 1 / 1; }
.cp-tall { max-width: 560px; }             /* фото в полный рост — узкие колонки */
.cp-tall img { aspect-ratio: 45 / 100; }
.case-cols { display: grid; gap: 20px; grid-template-columns: 1fr; }
.case-cols h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 11px; }
.case-a h4 { color: var(--muted); }
.case-b h4 { color: var(--gold); }
.case-cols ul { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.case-a li { color: var(--muted); padding-left: 18px; position: relative; }
.case-a li::before { content: "—"; position: absolute; left: 0; }
.case-b li { padding-left: 22px; position: relative; }
.case-b li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 11px; height: 11px;
  background: var(--grad-gold);
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}
.case-b li b { color: var(--gold-bright); }

/* ═══════════════ FAQ ═══════════════ */
.faq {
  border: 1px solid var(--gold-line-soft); border-radius: 15px;
  background: var(--panel);
  margin-bottom: 12px; overflow: hidden;
}
.faq[open] { border-color: var(--gold-line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 19px 54px 19px 22px;
  font-family: "Playfair Display", serif; font-weight: 600; font-size: clamp(16px, 4.1vw, 19px);
  color: var(--gold-bright);
  position: relative; min-height: 58px; touch-action: manipulation;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 24px; top: 50%;
  width: 11px; height: 11px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq p { padding: 0 22px 21px; color: var(--muted); font-size: 15px; }

/* ═══════════════ ДЕФИЦИТ ═══════════════ */
.section-deficit { text-align: center; }
.section-deficit .timer { margin: var(--sp-3) 0 var(--sp-4); }
.deficit-list { list-style: none; display: flex; flex-direction: column; gap: 11px; max-width: 430px; margin: 0 auto var(--sp-4); text-align: left; }
.deficit-list li { padding-left: 26px; position: relative; font-size: 15.5px; }
.deficit-list li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 13px; height: 13px;
  background: var(--grad-gold);
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}
.deficit-phrase { font-family: "Playfair Display", serif; font-style: italic; font-size: clamp(17px, 4.4vw, 22px); color: var(--gold-bright); }

/* ═══════════════ ФИНАЛ ═══════════════ */
.section-final { overflow: hidden; padding: var(--sp-6) 0; }
.final-bg { position: absolute; inset: 0; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-shade { position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(6,7,10,0.42) 34%, rgba(6,7,10,0.76) 100%); }
.final-inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }

.footer { border-top: 1px solid var(--gold-line-soft); padding: 30px 0; text-align: center; color: var(--muted); font-size: 13px; background: rgba(6,7,10,0.72); }
.footer-fine { margin-top: 6px; font-size: 12px; opacity: 0.75; }

/* ═══════════════ REVEAL ═══════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ════════════════════ ПЛАНШЕТ ════════════════════ */
@media (min-width: 700px) {
  .section { padding: var(--sp-6) 0; }
  .gifts-grid { grid-template-columns: repeat(3, 1fr); }
  .gift-wide { grid-column: 1 / -1; }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  /* пятая цитата — того же размера, ровно по центру между колонками */
  .quotes .quote:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    justify-self: center;
  }
  .numbers { grid-template-columns: repeat(3, 1fr); }
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-row { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .gifts-simple { grid-template-columns: repeat(2, 1fr); }
  .versus { grid-template-columns: 1fr 1fr; }
  .case-cols { grid-template-columns: 1fr 1fr; }
  .practices-list { grid-template-columns: repeat(2, 1fr); padding: 4px 20px 22px; }
  .story-grid { grid-template-columns: 1.05fr 1fr; }
  .card { padding: var(--sp-4); }
  .card-first100 { padding: 54px 44px 44px; }
  .field-flex { flex-direction: row; text-align: left; gap: 30px; }
  /* круг придвинут вправо, ближе к нумерации этапов */
  .method-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
  .method-visual { margin: 0 0 0 auto; width: min(360px, 100%); }
  .tariffs { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════ ДЕСКТОП ════════════════════ */
/* широкий кадр уже собран с девушкой справа — центрируем как есть.
   Условие совпадает с тем, по которому JS подставляет широкое видео. */
@media (min-aspect-ratio: 13/10) {
  /* Прижимаем кадр к верху: на окне шире 16:9 обрезка идёт по вертикали,
     и при центрировании срезало бы верхнюю чакру. Так режется только низ. */
  .hero-poster, .hero-video, .hero-poster img { object-position: 50% 0%; }
}

/* Текст уходит в левую колонку только когда экран действительно широкий.
   На планшете в портрете (1024×1366) кадр вертикальный и фигура по центру —
   там текст должен остаться внизу, иначе ложится прямо на неё. */
@media (min-width: 1000px) and (min-aspect-ratio: 13/10) {
  .hero { align-items: center; }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(6,7,10,0.95) 0%, rgba(6,7,10,0.86) 34%, rgba(6,7,10,0.58) 58%, rgba(6,7,10,0.20) 80%, transparent 100%),
      linear-gradient(180deg, rgba(6,7,10,0.55) 0%, transparent 26%, transparent 70%, rgba(6,7,10,0.75) 100%);
  }
  .hero-inner { align-items: flex-start; text-align: left; padding-bottom: 0; max-width: 700px; margin-right: auto; margin-left: 0; }
  .hero-inner::before { content: none; }
  /* кегль привязан к колонке, а не к вьюпорту — заголовок больше не вылезает на лицо */
  .hero-title { font-size: clamp(52px, 5.4vw, 74px); letter-spacing: 0.02em; text-indent: 0.02em; }
  .hero-lead { max-width: 560px; }
  .hero-markers { justify-content: flex-start; }
}

/* Телефон в ландшафте (852×393, 667×375): кадр тоже широкий, фигура в нём справа,
   но экран узкий — колонку задаём в процентах, иначе текст лёг бы прямо на неё. */
@media (max-width: 999px) and (min-aspect-ratio: 13/10) {
  .hero { align-items: center; }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(6,7,10,0.95) 0%, rgba(6,7,10,0.88) 36%, rgba(6,7,10,0.60) 60%, rgba(6,7,10,0.22) 82%, transparent 100%),
      linear-gradient(180deg, rgba(6,7,10,0.55) 0%, transparent 26%, transparent 70%, rgba(6,7,10,0.75) 100%);
  }
  .hero-inner {
    align-items: flex-start; text-align: left;
    padding-bottom: 0; max-width: 56%; margin-right: auto; margin-left: 0;
    gap: 8px;
  }
  .hero-inner::before { content: none; }
  .hero-title { font-size: clamp(24px, 5.4vw, 46px); letter-spacing: 0.02em; text-indent: 0.02em; }
  .hero-sub { font-size: clamp(13px, 2.3vw, 19px); }
  .hero-lead { font-size: 13.5px; line-height: 1.45; max-width: 100%; }
  .hero-markers { justify-content: flex-start; font-size: 12px; gap: 4px 10px; }
}

@media (min-width: 1000px) {
  .ai-grid { grid-template-columns: 380px 1fr; gap: 72px; }
  .ai-text { margin: 0; }
  .practices-list { grid-template-columns: repeat(3, 1fr); }
  .tariffs { grid-template-columns: repeat(3, 1fr); }
}

/* все 5 тарифов в ряд */
@media (min-width: 1280px) {
  .tariffs { grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
  .tariff { padding: 32px 16px 22px; gap: 10px; }
  .tariff-name { font-size: 19px; }
  .tariff-tagline { font-size: 13px; }
  .tariff-price { font-size: 29px; }
  .tariff li { font-size: 12.5px; padding-left: 19px; }
  .tariff-glyph { width: 74px; height: 74px; }
  .tariff-actions .btn { min-height: 44px; padding: 10px 8px; font-size: 11.5px; letter-spacing: 0.03em; }
  .price-old { font-size: 13.5px; gap: 7px; }
}
