/* === Базовые переменные и сброс === */
:root {
    /* Палитра: нейтральная база, один акцент */
    --bg: #fbfbfd;
    --bg-light: #ffffff;
    --bg-lighter: #f5f5f7;
    --bg-dark: #0a0a0c;
    --bg-dark-2: #161618;

    --text: #1d1d1f;
    --text-soft: #515154;
    --text-mute: #86868b;
    --text-inv: #f5f5f7;
    --text-inv-soft: #a1a1a6;

    --line: #d2d2d7;
    --line-dark: #2a2a2e;

    --accent: #0066ff;
    --accent-strong: #003fb8;
    --danger: #ff453a;

    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;

    --ease: cubic-bezier(0.32, 0.72, 0, 1);

    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: var(--bg);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    /* overflow-x: clip — клипает горизонтальное переполнение БЕЗ создания scroll-контекста
       (overflow-x: hidden ломает position:sticky внутри страницы). */
    overflow-x: clip;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.container--narrow {
    max-width: 820px;
}

/* === Шапка с размытым фоном === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background: rgba(251, 251, 253, 0.72);
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav--scrolled {
    background: rgba(251, 251, 253, 0.85);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav__logo {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.nav__links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    color: var(--text-soft);
}

.nav__links a:hover {
    color: var(--text);
}

.nav__cta {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 980px;
    background: var(--bg-dark);
    color: var(--text-inv);
    transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.nav__cta:hover {
    background: var(--bg-dark-2);
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    .nav__links {
        display: none;
    }
}

/* === Кнопки === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: var(--bg-dark);
    color: var(--text-inv);
}

.btn--primary:hover {
    background: var(--bg-dark-2);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.btn--ghost {
    color: var(--text);
    padding: 14px 4px;
}

.btn--ghost:hover {
    opacity: 0.65;
}

.btn--big {
    padding: 18px 36px;
    font-size: 17px;
}

/* === Hero === */
.hero {
    position: relative;
    padding: 140px 0 120px;
    background: radial-gradient(ellipse at top, #ecedf3 0%, var(--bg) 60%);
    overflow: hidden;
    text-align: center;
}

.hero__bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}

.orb--blue {
    width: 520px;
    height: 520px;
    background: #6aa7ff;
    top: -120px;
    left: -120px;
}

.orb--purple {
    width: 460px;
    height: 460px;
    background: #c8a7ff;
    top: 40px;
    right: -120px;
    opacity: 0.4;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0;
    margin-bottom: 20px;
    text-transform: none;
}

.hero__title {
    font-size: clamp(40px, 7vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero__title--accent {
    background: linear-gradient(90deg, #0066ff 0%, #8a3bff 60%, #ff3b6a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.hero__sub {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.45;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* === Мокап телефона === */
.phone {
    width: min(320px, 80vw);
    margin: 0 auto;
    aspect-ratio: 320 / 660;
    background: linear-gradient(180deg, #1d1d1f 0%, #0a0a0c 100%);
    border-radius: 48px;
    padding: 14px;
    box-shadow:
        0 60px 120px -40px rgba(0, 0, 0, 0.35),
        0 30px 60px -30px rgba(0, 0, 0, 0.25),
        inset 0 0 0 2px rgba(255, 255, 255, 0.06);
    position: relative;
    isolation: isolate;
}

.phone__notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 28px;
    background: #000;
    border-radius: 980px;
    z-index: 2;
}

.phone__screen {
    width: 100%;
    height: 100%;
    background: #f1efeb;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone__statusbar {
    height: 44px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
}

.phone__statusbar-right {
    display: flex;
    gap: 4px;
}

.phone__statusbar-right .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #1d1d1f;
}

.chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.chat__header {
    padding: 8px 16px 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.chat__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a8a, #ff9a4a);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 16px;
}

.chat__name {
    font-weight: 600;
    font-size: 14px;
    color: #1d1d1f;
    line-height: 1.2;
}

.chat__status {
    font-size: 11px;
    color: #6a6a6f;
}

.chat__body {
    flex: 1;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.msg {
    max-width: 78%;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.35;
    word-wrap: break-word;
}

.msg--in {
    background: #fff;
    color: #1d1d1f;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.msg--out {
    background: linear-gradient(180deg, #ff8a3a 0%, #ff6a2a 100%);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.msg__kb {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.msg__kb button {
    background: rgba(0, 102, 255, 0.08);
    color: var(--accent);
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s var(--ease);
}

.msg__kb button:hover {
    background: rgba(0, 102, 255, 0.16);
}

.msg--status {
    background: transparent;
    box-shadow: none;
    color: #6a6a6f;
    font-size: 11px;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.msg__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6a6a6f;
    animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* === Общая структура секций === */
.section {
    padding: 140px 0;
    position: relative;
}

.section--light {
    background: var(--bg);
}

.section--lighter {
    background: var(--bg-lighter);
}

.section--dark {
    background: var(--bg-dark);
    color: var(--text-inv);
}

.section__eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mute);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.section__eyebrow--inv {
    color: var(--text-inv-soft);
}

.section__title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    max-width: 880px;
}

.section__title--inv {
    color: var(--text-inv);
}

.section__lead {
    font-size: clamp(17px, 1.6vw, 21px);
    color: var(--text-soft);
    max-width: 680px;
    line-height: 1.5;
    margin-bottom: 56px;
}

.section--dark .section__lead {
    color: var(--text-inv-soft);
}

/* === Stats === */
.stats {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--line);
    padding-top: 56px;
}

.stat__value {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(180deg, var(--text) 30%, var(--text-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-variant-numeric: tabular-nums;
}

.stat__value span {
    font-size: 0.45em;
    font-weight: 500;
    margin-left: 6px;
    color: var(--text-soft);
    background: none;
    -webkit-text-fill-color: var(--text-soft);
    letter-spacing: -0.02em;
}

.stat__label {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.4;
    max-width: 240px;
}

@media (max-width: 900px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
}

/* === Риски === */
.risks {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.risk {
    display: flex;
    gap: 16px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.risk__mark {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffae00, #ff7a00);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
}

.risk h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
}

.risk p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .risks { grid-template-columns: 1fr; }
}

/* === Тарифы === */
.tiers {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tier {
    padding: 36px 32px;
    background: var(--bg-dark-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.tier:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
}

.tier__tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-inv-soft);
}

.tier__tag--accent {
    background: linear-gradient(90deg, #0066ff, #8a3bff);
    color: #fff;
}

.tier h3 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-inv);
}

.tier p {
    color: var(--text-inv-soft);
    font-size: 15px;
    line-height: 1.5;
}

.tier__price {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-inv);
    padding-top: 8px;
    border-top: 1px solid var(--line-dark);
}

.tier__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--text-inv-soft);
}

.tier__list li {
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.tier__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.6);
}

.tier--featured {
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0a0c 100%);
    border-color: rgba(120, 140, 255, 0.3);
    box-shadow: 0 30px 80px -30px rgba(80, 100, 255, 0.35);
}

@media (max-width: 900px) {
    .tiers { grid-template-columns: 1fr; }
}

/* === Сценарии: скролл-сцена в стиле сайта (светлая) === */
.section--scene {
    background: var(--bg-lighter);
    padding: 0;
    /* CSS-переменная активного «тона» главы. JS обновляет её. */
    --tone: #0066ff;
    --tone-soft: rgba(0, 102, 255, 0.08);
}

.scene {
    /* 5 глав × 100vh + хвост на финальную главу = 5.2 экрана. */
    height: 520vh;
    position: relative;
}

.scene__stick {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 76px 0 24px;
    background:
        radial-gradient(60vmin 60vmin at 50% 55%, var(--tone-soft), transparent 70%),
        var(--bg-lighter);
    transition: background 0.7s var(--ease);
}

/* Верхний бар: счётчик слева, пропуск справа */
.scene__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    z-index: 5;
    flex: 0 0 auto;
}

.scene__counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0.04em;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 980px;
    text-transform: uppercase;
}

.scene__counter b {
    color: var(--text);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.scene__counter-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tone);
    transition: background 0.7s var(--ease);
    box-shadow: 0 0 8px color-mix(in srgb, var(--tone) 60%, transparent);
}

.scene__skip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
    transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.scene__skip:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

/* Внутренний контент сцены — занимает оставшуюся высоту, центрирует своё содержимое */
.scene__inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding-top: 16px;
}

/* Стак заголовков — активный fade in, остальные скрыты слоями */
.scene__title-stack {
    position: relative;
    height: clamp(56px, 6.5vw, 80px);
    margin-bottom: 20px;
    max-width: 880px;
}

.scene__title {
    position: absolute;
    inset: 0;
    margin: 0;
    font-size: clamp(30px, 4.2vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
    color: var(--text);
}

.scene__title.is-active {
    opacity: 1;
    transform: none;
}

.scene__title em {
    font-style: normal;
    color: var(--tone);
    transition: color 0.7s var(--ease);
}

/* Главная зона: callout слева — телефон — пустая правая колонка */
.scene__stage {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    position: relative;
    min-height: 0;
}

.scene__side {
    /* relative-якорь для абсолютных callout'ов внутри */
    position: relative;
    width: clamp(240px, 26vw, 320px);
    /* Высота под самый длинный callout (3 строки текста + заголовок + тег + padding) */
    min-height: clamp(170px, 18vw, 200px);
}

.scene__side--left  { justify-self: end; }
.scene__side--right { justify-self: start; }

/* Callout: лежат друг на друге, активный fade-in */
.callout {
    position: absolute;
    inset: 0;
    background: var(--bg-light);
    border: 1px solid var(--line);
    border-left: 3px solid var(--tone);
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    transition:
        opacity 0.55s var(--ease),
        transform 0.55s var(--ease),
        border-color 0.7s var(--ease),
        box-shadow 0.55s var(--ease);
}

.callout.is-active {
    opacity: 1;
    transform: none;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.18);
}

.callout__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--tone);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: color 0.7s var(--ease);
}

.callout__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 6px;
}

.callout__text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* Подзаголовки под телефоном */
.scene__sub-stack {
    position: relative;
    height: clamp(44px, 4.5vw, 52px);
    margin-top: 20px;
    max-width: 640px;
}

.scene__sub {
    position: absolute;
    inset: 0;
    margin: 0;
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--text-soft);
    line-height: 1.45;
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.55s var(--ease) 0.05s,
        transform 0.55s var(--ease) 0.05s;
}

.scene__sub.is-active {
    opacity: 1;
    transform: none;
}

/* Нижний пейджер — переход к главе одним кликом */
.scene__pager {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0 24px;
    flex-wrap: wrap;
    z-index: 5;
}

.scene__pager button {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 980px;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
    cursor: pointer;
    transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
}

.scene__pager button:hover {
    background: var(--bg-light);
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.scene__pager button.is-active {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

/* === Телефон сцены (своё пространство имён, чтобы не конфликтовать с hero) === */
.scene-phone {
    position: relative;
    /* Высоту цепляем к viewport — иначе фиксированная ширина даёт высоту, которая
       не влезает в 100vh пиннинга вместе с topbar/title/sub/pager. */
    height: min(58vh, 600px);
    aspect-ratio: 320 / 660;
    width: auto;
    min-height: 380px;
    background: linear-gradient(180deg, #1d1d1f 0%, #0a0a0c 100%);
    border-radius: clamp(32px, 4vw, 44px);
    padding: 11px;
    justify-self: center;
    box-shadow:
        0 60px 120px -40px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.06);
    isolation: isolate;
    will-change: transform;
    flex-shrink: 0;
}

.scene-phone__notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #000;
    border-radius: 980px;
    z-index: 3;
}

.scene-phone__screen {
    width: 100%;
    height: 100%;
    background: #f1efeb;
    border-radius: clamp(28px, 3vw, 36px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.scene-phone__status {
    height: 40px;
    padding: 0 24px 6px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
}

.scene-phone__status-right { display: flex; gap: 4px; align-items: center; }
.scene-phone__status-right span { width: 4px; height: 4px; border-radius: 50%; background: #1d1d1f; }

.scene-chat__head {
    padding: 6px 14px 10px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.scene-chat__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--tone);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.7s var(--ease);
}

.scene-chat__name {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.2;
}

.scene-chat__status {
    font-size: 10px;
    color: #6a6a6f;
}

.scene-chat__body {
    flex: 1;
    padding: 12px;
    overflow: hidden;
    position: relative;
}

/* Сценарии — слои поверх друг друга, активный имеет is-active */
.scene-scenario {
    position: absolute;
    inset: 0;
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    pointer-events: none;
}

.scene-scenario.is-active {
    opacity: 1;
    transform: none;
}

.scene-msg {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.35;
    word-wrap: break-word;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.scene-msg--in {
    background: #fff;
    color: #1d1d1f;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.scene-msg--out {
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    background: var(--tone);
    transition: background 0.7s var(--ease),
                opacity 0.35s var(--ease),
                transform 0.35s var(--ease);
}

.scene-scenario.is-active .scene-msg.is-visible {
    opacity: 1;
    transform: none;
}

.scene-msg__kb {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.scene-msg__kb b {
    background: color-mix(in srgb, var(--tone) 12%, transparent);
    color: var(--tone);
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    transition: background 0.7s var(--ease), color 0.7s var(--ease);
}

.scene-chat__input {
    padding: 8px 12px 12px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.scene-chat__bar {
    flex: 1;
    height: 28px;
    border-radius: 980px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 11px;
    color: #aaa;
}

.scene-chat__send {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--tone);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: background 0.7s var(--ease);
}

/* === Mobile (под 900px скрываем боковые callout'ы, остальное стэком) === */
@media (max-width: 900px) {
    .scene__stick { padding: 100px 0 80px; }
    .scene__stage { grid-template-columns: 1fr; }
    .scene__side { display: none; }
    .scene__title-stack { height: clamp(80px, 14vw, 120px); margin-bottom: 16px; }
    .scene__sub-stack { height: clamp(70px, 12vw, 90px); margin-top: 16px; }
    .scene__pager button { padding: 7px 12px; font-size: 12px; }
}

@media (max-width: 480px) {
    .scene__topbar { top: 60px; }
    .scene__stick { padding: 80px 0 60px; }
}

@media (prefers-reduced-motion: reduce) {
    /* В reduced-motion схлопываем 520vh-сцену — нечего скроллить без анимации. */
    .scene { height: auto; }
    .scene__stick {
        position: static;
        height: auto;
        min-height: 100vh;
        background: var(--bg-lighter);
        transition: none;
        padding: 120px 0 80px;
    }
    .scene__topbar { position: static; padding-bottom: 32px; }
    .scene__pager { display: none; }
    .scene__title-stack,
    .scene__sub-stack { height: auto; }
    .scene__title,
    .scene__sub,
    .callout,
    .scene-scenario,
    .scene-msg { transition: none; }
    .scene__title:not(:first-of-type),
    .scene__sub:not(:first-of-type),
    .callout:not(:first-of-type),
    .scene-scenario:not(:first-child) { display: none; }
    .scene__title:first-of-type,
    .scene__sub:first-of-type,
    .callout:first-of-type { opacity: 1; transform: none; position: static; }
    .scene-scenario:first-child { opacity: 1; transform: none; }
    .scene-scenario:first-child .scene-msg { opacity: 1; transform: none; }
}

/* === Старые стили карточек сценариев (оставлены для совместимости — больше не используются на лендинге) === */
.scenarios {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scenario {
    padding: 32px 28px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.scenario:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.2);
}

.scenario__ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(138, 59, 255, 0.1));
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.scenario__ico svg {
    width: 22px;
    height: 22px;
}

.scenario h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.scenario p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .scenarios { grid-template-columns: 1fr; }
}

/* === Преимущества === */
.benefits {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

.benefit {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.benefit__num {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mute);
    margin-bottom: 12px;
    letter-spacing: 0;
}

.benefit h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.benefit p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .benefits { grid-template-columns: 1fr; gap: 32px; }
}

/* === Этапы === */
.stages {
    margin-top: 64px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
}

.stage {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
}

.stage__no {
    flex-shrink: 0;
    width: 64px;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-mute);
    letter-spacing: -0.02em;
}

.stage__body {
    flex: 1;
}

.stage__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.stage h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.stage__time {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mute);
    padding: 4px 10px;
    background: var(--bg-lighter);
    border-radius: 980px;
}

.section--lighter .stage__time {
    background: var(--bg-light);
}

.stage p {
    color: var(--text-soft);
    font-size: 16px;
    max-width: 680px;
}

/* === Цены === */
.pricing {
    margin-top: 56px;
    background: var(--bg-light);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.pricing__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s var(--ease);
}

.pricing__row:hover {
    background: var(--bg-lighter);
}

.pricing__row--last {
    border-bottom: 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
}

.pricing__name {
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
}

.pricing__hint {
    display: block;
    font-size: 13px;
    color: var(--text-mute);
    font-weight: 400;
    margin-top: 4px;
}

.pricing__val {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.payment-terms {
    margin-top: 24px;
    padding: 20px 28px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: var(--radius);
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 720px) {
    .pricing__row { padding: 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* === Что включено === */
.includes {
    margin-top: 56px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.includes li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.includes li:last-child { border-bottom: 0; }

.includes__check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34c759, #28a745);
    position: relative;
}

.includes__check::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 9px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* === CTA === */
.cta {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1530 100%);
    color: var(--text-inv);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(120, 80, 255, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.cta__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 16px;
}

.cta__lead {
    font-size: clamp(17px, 1.6vw, 20px);
    color: var(--text-inv-soft);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.5;
}

.cta__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta__field { display: flex; flex-direction: column; gap: 8px; }
.cta__field--wide { grid-column: 1 / -1; }

.cta__field label {
    font-size: 13px;
    color: var(--text-inv-soft);
    font-weight: 500;
}

.cta__field input,
.cta__field textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-inv);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: 16px;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
    resize: vertical;
}

.cta__field input:focus,
.cta__field textarea:focus {
    outline: none;
    border-color: rgba(120, 140, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.cta__field input::placeholder,
.cta__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cta__form .btn {
    grid-column: 1 / -1;
    background: #fff;
    color: var(--text);
}

.cta__form .btn:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 20px 50px -20px rgba(255, 255, 255, 0.4);
}

.cta__small {
    margin: 32px auto 0;
    max-width: 600px;
    text-align: center;
    color: var(--text-inv-soft);
    font-size: 13px;
    line-height: 1.5;
}

.cta__success {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.3);
    border-radius: var(--radius);
    text-align: center;
}

.cta__success h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.cta__success p {
    color: var(--text-inv-soft);
}

@media (max-width: 720px) {
    .cta__form { grid-template-columns: 1fr; }
}

/* === Подвал === */
.footer {
    background: var(--bg-lighter);
    padding: 80px 0 32px;
    border-top: 1px solid var(--line);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer__logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.footer__brand p {
    color: var(--text-soft);
    max-width: 280px;
    line-height: 1.5;
}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer__cols h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
    text-transform: none;
}

.footer__cols a {
    display: block;
    color: var(--text-soft);
    font-size: 14px;
    padding: 4px 0;
}

.footer__cols a:hover { color: var(--text); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--text-mute);
    font-size: 12px;
    flex-wrap: wrap;
}

@media (max-width: 760px) {
    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* === Прогресс-бар скролла === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 150;
    background: linear-gradient(90deg, #0066ff 0%, #8a3bff 50%, #ff3b6a 100%);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.08s linear;
    pointer-events: none;
}

/* === Reveal-анимации (варианты) === */
[data-reveal] {
    opacity: 0;
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}
[data-reveal=""],
[data-reveal="up"]    { transform: translate3d(0, 32px, 0); }
[data-reveal="left"]  { transform: translate3d(-40px, 0, 0); }
[data-reveal="right"] { transform: translate3d(40px, 0, 0); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="blur"]  { filter: blur(10px); transform: translate3d(0, 16px, 0); }
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

/* Старый класс .reveal — оставляем для совместимости */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* === Hero: словесная анимация загрузки === */
.hero__title .word,
.hero__sub,
.hero__cta,
.hero .phone {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__title .word { display: inline-block; }

.is-loaded .hero__title .word {
    opacity: 1;
    transform: none;
}
/* Каскадная задержка ставится из JS — чтобы корректно работала между двумя строками заголовка. */

.is-loaded .hero__sub { opacity: 1; transform: none; transition-delay: 0.65s; }
.is-loaded .hero__cta { opacity: 1; transform: none; transition-delay: 0.78s; }
.is-loaded .hero .phone {
    opacity: 1;
    transform: none;
    transition-delay: 0.95s;
    transition-duration: 1.1s;
}

/* === Перспектива контейнера для телефона (3D-tilt) === */
.hero__inner { perspective: 1400px; }
.phone {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.05s linear, box-shadow 0.4s var(--ease);
}

/* === Орбы: лёгкий «дышащий» дрейф === */
.orb {
    will-change: transform;
    animation: orbDrift 14s ease-in-out infinite alternate;
}
.orb--blue   { animation-duration: 13s; }
.orb--purple { animation-duration: 17s; animation-direction: alternate-reverse; }

@keyframes orbDrift {
    0%   { transform: translate3d(0, 0, 0) scale(1);     }
    50%  { transform: translate3d(20px, -30px, 0) scale(1.08); }
    100% { transform: translate3d(-15px, 25px, 0) scale(0.95);  }
}

/* === Hover-tilt карточек: даём JS управлять, отключаем существующий translateY === */
.scenario,
.tier {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

/* === Кнопки: тонкая press-обратная связь === */
.btn {
    will-change: transform;
}
.btn:active {
    transform: scale(0.97);
    transition-duration: 0.05s;
}

/* === Hero scroll-indicator (мини-намёк на скролл) === */
.hero__hint {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    color: var(--text-mute);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    animation: hintIn 1s 1.6s var(--ease) forwards, hintBounce 2.4s 2.6s ease-in-out infinite;
    pointer-events: none;
}
.hero__hint::after {
    content: '';
    display: block;
    margin: 8px auto 0;
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, var(--text-mute), transparent);
}

@keyframes hintIn   { to   { opacity: 1; } }
@keyframes hintBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 4px); }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
    html { scroll-behavior: auto; }
    .msg__dot,
    .orb,
    .hero__hint { animation: none; }
    .hero__title .word,
    .hero__sub,
    .hero__cta,
    .hero .phone { opacity: 1; transform: none; transition: none; }
    .phone { transform: none !important; }
}

/* === Согласие на обработку ПДн в форме === */
.consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    color: var(--text-inv-soft);
    font-size: 14px;
    line-height: 1.5;
    padding: 4px 0;
}

.consent input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.consent__box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
    position: relative;
    margin-top: 1px;
}

.consent input:checked + .consent__box {
    background: var(--accent);
    border-color: var(--accent);
}

.consent input:checked + .consent__box::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent input:focus-visible + .consent__box {
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.35);
}

.consent__text a {
    color: var(--text-inv);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.consent__text a:hover {
    text-decoration-color: var(--text-inv);
}

.cta__error {
    grid-column: 1 / -1;
    color: #ff7a7a;
    font-size: 14px;
    margin-top: -8px;
    text-align: center;
}

/* === Cookie-баннер === */
.cookie {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 200;
    pointer-events: auto;
    animation: cookieIn 0.4s var(--ease);
}

@keyframes cookieIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
}

.cookie__inner {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(20, 20, 22, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    color: var(--text-inv);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.4);
}

.cookie__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-inv-soft);
}

.cookie__text a {
    color: var(--text-inv);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.cookie__text a:hover {
    text-decoration-color: var(--text-inv);
}

.cookie__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie__actions .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.cookie__decline {
    color: var(--text-inv-soft);
}

.cookie__decline:hover {
    color: var(--text-inv);
    opacity: 1;
}

.cookie__accept {
    background: #fff;
    color: var(--text);
}

.cookie__accept:hover {
    background: #fff;
}

@media (max-width: 700px) {
    .cookie__inner { flex-direction: column; align-items: stretch; padding: 16px; gap: 12px; }
    .cookie__actions { justify-content: flex-end; }
}

/* === Страница политики === */
.page-legal {
    background: var(--bg);
}

.legal {
    padding: 120px 0 80px;
}

.legal__eyebrow {
    font-size: 14px;
    color: var(--text-mute);
    margin-bottom: 12px;
}

.legal__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.legal__date {
    color: var(--text-soft);
    margin-bottom: 48px;
    font-size: 15px;
}

.legal__section {
    margin-bottom: 36px;
}

.legal__section h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.legal__section p,
.legal__section li {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal__section ul {
    list-style: none;
    padding-left: 0;
}

.legal__section li {
    padding-left: 22px;
    position: relative;
}

.legal__section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.legal__section a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal__back {
    display: inline-block;
    margin-top: 32px;
    color: var(--accent);
    font-size: 15px;
}

.legal__back:hover {
    opacity: 0.7;
}

/* === Мобильные правки === */
@media (max-width: 760px) {
    .section { padding: 80px 0; }
    .hero { padding: 100px 0 80px; }
    .stage { gap: 16px; padding: 24px 0; }
    .stage__no { width: 40px; font-size: 18px; }
    .includes li { font-size: 16px; gap: 14px; padding: 16px 0; }
    .legal { padding: 90px 0 60px; }
}
