/* ============================================================
   NEWRP ONLINE — самостоятельный лендинг + пополнение
   Портативен: всё в этой папке, внешних зависимостей нет.

   Палитра родственна основному сайту (тёмно-синий + янтарь),
   но подача другая: глубже фон, стеклянные панели, градиентные
   акценты, крупная типографика.
   ============================================================ */

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Semibold.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Extrabold.woff2') format('woff2');
    font-weight: 800; font-style: normal; font-display: swap;
}

:root {
    --bg:          #0A0D1A;
    --bg-2:        #0E1226;
    --surface:     #141A31;
    --surface-2:   #1B2240;
    --line:        rgba(255, 255, 255, .08);
    --line-strong: rgba(255, 255, 255, .16);

    --accent:      #FFB906;
    --accent-2:    #FF8A00;
    --indigo:      #5B7CFF;
    --violet:      #8B5CF6;

    --text:        #F2F4FF;
    --muted:       #9AA3C7;
    --dim:         #6B7399;

    --ok:          #3ECF8E;
    --err:         #FF6B6B;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --shadow: 0 24px 60px rgba(0, 0, 0, .45);
    --wrap: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ---------- фоновое свечение ---------- */
.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}
.glow--1 { width: 520px; height: 520px; background: #2B3C8F; top: -180px; left: -120px; }
.glow--2 { width: 420px; height: 420px; background: #7A4A12; top: 30%; right: -160px; opacity: .35; }
.glow--3 { width: 480px; height: 480px; background: #3B2A6B; bottom: -200px; left: 30%; opacity: .35; }

/* ============================================================
   Шапка
   ============================================================ */
.hdr {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10, 13, 26, .72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}
.hdr__in {
    display: flex; align-items: center; gap: 32px;
    height: 72px;
}
.hdr__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hdr__logo img { height: 28px; }
.hdr__tag {
    font-size: 10px; font-weight: 800; letter-spacing: .14em;
    color: var(--accent);
    border: 1px solid rgba(255, 185, 6, .35);
    border-radius: 100px; padding: 3px 9px;
    text-transform: uppercase;
}
.hdr__nav { display: flex; gap: 28px; margin-left: auto; }
.hdr__nav a {
    font-size: 14px; font-weight: 600; color: var(--muted);
    transition: color .2s; position: relative;
}
.hdr__nav a:hover { color: var(--text); }
.hdr__act { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.burger {
    display: none;
    width: 42px; height: 42px; border-radius: var(--r-sm);
    border: 1px solid var(--line-strong);
    align-items: center; justify-content: center;
    flex-direction: column; gap: 4px;
}
.burger span { display: block; width: 16px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }

/* ============================================================
   Кнопки
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    height: 46px; padding: 0 24px;
    border-radius: var(--r-sm);
    font-weight: 700; font-size: 14.5px;
    transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #1A1206;
    box-shadow: 0 8px 24px rgba(255, 138, 0, .28);
}
.btn--primary:hover:not(:disabled) { box-shadow: 0 12px 32px rgba(255, 138, 0, .4); transform: translateY(-1px); }

.btn--ghost { border: 1px solid var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); background: rgba(255, 185, 6, .06); }

.btn--lg { height: 56px; padding: 0 34px; font-size: 16px; border-radius: 12px; }
.btn--block { width: 100%; }

/* ============================================================
   Первый экран
   ============================================================ */
.hero { position: relative; z-index: 1; padding: 96px 0 88px; }
.hero__grid {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center;
}
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    height: 32px; padding: 0 14px;
    border-radius: 100px;
    background: rgba(91, 124, 255, .12);
    border: 1px solid rgba(91, 124, 255, .3);
    font-size: 12.5px; font-weight: 700; color: #A9BCFF;
    margin-bottom: 24px;
}
.pill__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--ok); box-shadow: 0 0 0 3px rgba(62, 207, 142, .2);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .35; } }

.hero h1 {
    font-size: clamp(38px, 5.2vw, 62px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 22px;
}
.grad {
    background: linear-gradient(120deg, var(--accent) 0%, #FF9E2C 45%, var(--violet) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__lead {
    font-size: 17px; color: var(--muted); max-width: 520px; margin-bottom: 34px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__note { margin-top: 20px; font-size: 13px; color: var(--dim); }

/* карточка-визуал */
.visual {
    position: relative;
    border-radius: var(--r-xl);
    padding: 28px;
    background: linear-gradient(160deg, rgba(91, 124, 255, .16), rgba(139, 92, 246, .08) 55%, transparent);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
}
.visual__row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.visual__row:last-child { border-bottom: none; }
.visual__ico {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
}
.visual__t { font-weight: 700; font-size: 14.5px; }
.visual__s { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   Секции
   ============================================================ */
.sec { position: relative; z-index: 1; padding: 88px 0; }
.sec--tight { padding: 64px 0; }
.sec__head { max-width: 660px; margin-bottom: 48px; }
.sec__kicker {
    font-size: 12px; font-weight: 800; letter-spacing: .16em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.sec__title {
    font-size: clamp(27px, 3.4vw, 40px); font-weight: 800;
    line-height: 1.15; letter-spacing: -.015em; margin-bottom: 16px;
}
.sec__lead { font-size: 16px; color: var(--muted); }

/* карточки возможностей */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
    background: linear-gradient(180deg, var(--surface) 0%, rgba(20, 26, 49, .5) 100%);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px 28px;
    transition: transform .2s, border-color .2s;
    position: relative; overflow: hidden;
}
.card::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 185, 6, .07), transparent 60%);
    opacity: 0; transition: opacity .25s; pointer-events: none;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.card:hover::after { opacity: 1; }
.card__ico {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 21px; margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(255, 185, 6, .16), rgba(255, 138, 0, .06));
    border: 1px solid rgba(255, 185, 6, .22);
}
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--muted); }

/* шаги */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step {
    position: relative; padding: 30px 28px;
    border-radius: var(--r-lg);
    background: var(--surface);
    border: 1px solid var(--line);
}
.step__n {
    font-size: 42px; font-weight: 800; line-height: 1;
    background: linear-gradient(160deg, var(--accent), transparent 90%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.step p { font-size: 14px; color: var(--muted); }

/* полоса «почему мы» */
.band {
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(91, 124, 255, .1), rgba(139, 92, 246, .06));
    padding: 48px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
}
.band__i b { display: block; font-size: 30px; font-weight: 800; margin-bottom: 6px; }
.band__i span { font-size: 14px; color: var(--muted); }

/* призыв к действию */
.cta {
    text-align: center;
    border-radius: var(--r-xl);
    padding: 64px 40px;
    background:
        radial-gradient(700px circle at 50% -30%, rgba(255, 185, 6, .16), transparent 60%),
        var(--surface);
    border: 1px solid var(--line);
}
.cta h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin-bottom: 14px; letter-spacing: -.015em; }
.cta p { color: var(--muted); max-width: 520px; margin: 0 auto 30px; }

/* ============================================================
   Формы
   ============================================================ */
.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field__lbl { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 9px; }
.field__lbl i { color: var(--accent); font-style: normal; }

.ctl {
    display: flex; align-items: center; gap: 12px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 16px; min-height: 54px;
    transition: border-color .18s, box-shadow .18s;
}
.ctl:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 185, 6, .1); }
.ctl.is-bad { border-color: var(--err); }
.ctl input, .ctl select {
    width: 100%; background: none; border: none; outline: none;
    font-size: 15.5px; font-weight: 600; padding: 15px 0;
}
.ctl select { cursor: pointer; appearance: none; }
.ctl select option { background: var(--surface); }
.ctl input::placeholder { color: var(--dim); font-weight: 500; }
.ctl__suffix { font-size: 15px; font-weight: 700; color: var(--muted); flex-shrink: 0; }
.ctl__chev {
    width: 8px; height: 8px; flex-shrink: 0;
    border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
    transform: rotate(45deg) translateY(-2px);
}
.field__err { font-size: 12.5px; color: var(--err); margin-top: 7px; display: none; }
.field.is-bad .field__err { display: block; }
.field__hint { font-size: 12.5px; color: var(--dim); margin-top: 7px; }

/* быстрые суммы */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
    height: 38px; padding: 0 16px; border-radius: 100px;
    border: 1px solid var(--line-strong);
    font-size: 13.5px; font-weight: 700; color: var(--muted);
    transition: .18s;
}
.chip:hover { color: var(--text); border-color: var(--accent); }
.chip.is-on { background: rgba(255, 185, 6, .12); border-color: var(--accent); color: var(--accent); }

/* баннер бонуса за оплату на сайте */
.bonus-banner {
    display: flex; align-items: center; gap: 18px;
    background: linear-gradient(120deg, rgba(255, 185, 6, .14), rgba(139, 92, 246, .1));
    border: 1px solid rgba(255, 185, 6, .3);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    margin-bottom: 20px;
}
.bonus-banner__pct {
    font-size: 34px; font-weight: 800; line-height: 1;
    flex-shrink: 0;
    background: linear-gradient(140deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bonus-banner b { display: block; font-size: 15px; margin-bottom: 4px; }
.bonus-banner span { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* разбивка начисления */
.calc {
    border-bottom: 1px dashed var(--line-strong);
    padding-bottom: 14px; margin-bottom: 16px;
}
.calc__row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
    font-size: 13.5px; padding: 5px 0;
}
.calc__row span { color: var(--muted); }
.calc__row b { font-weight: 700; white-space: nowrap; }
.calc__row--bonus b { color: var(--ok); }
.calc__row--sum {
    border-top: 1px solid var(--line);
    margin-top: 7px; padding-top: 11px;
}
.calc__row--sum b { color: var(--accent); font-size: 15px; }

.total__up { color: var(--ok) !important; }
.total__up b { color: var(--ok); font-weight: 800; }

/* итог конвертации */
.total {
    margin: 26px 0;
    padding: 22px 24px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, rgba(255, 185, 6, .1), rgba(255, 138, 0, .04));
    border: 1px solid rgba(255, 185, 6, .25);
}
.total__lbl { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.total__val { font-size: 34px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.total__val span { color: var(--accent); }
.total__rate { font-size: 12.5px; color: var(--dim); margin-top: 10px; }

/* согласие */
.agree { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; margin: 22px 0; }
.agree input { display: none; }
.agree__box {
    width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
    border: 2px solid var(--line-strong); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    transition: .18s;
}
.agree input:checked + .agree__box { background: var(--accent); border-color: var(--accent); }
.agree input:checked + .agree__box::after {
    content: ''; width: 5px; height: 10px; margin-top: -3px;
    border-right: 2px solid #1A1206; border-bottom: 2px solid #1A1206;
    transform: rotate(45deg);
}
.agree__txt { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.agree__txt a { color: var(--accent); text-decoration: underline; }
.agree.is-bad .agree__box { border-color: var(--err); }

/* ============================================================
   Модалка
   ============================================================ */
.modal {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(5, 7, 15, .8);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    animation: fade .18s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal__card {
    width: 100%; max-width: 420px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 36px 32px 30px;
    position: relative;
    box-shadow: var(--shadow);
    animation: pop .22s cubic-bezier(.2, .9, .3, 1);
    max-height: 90vh; overflow-y: auto;
}
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.modal__x {
    position: absolute; top: 16px; right: 16px;
    width: 34px; height: 34px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 19px; transition: .18s;
}
.modal__x:hover { background: rgba(255, 255, 255, .07); color: var(--text); }
.modal__logo { height: 30px; margin: 0 auto 20px; }
.modal__t { font-size: 21px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.modal__s { font-size: 13.5px; color: var(--muted); text-align: center; margin-bottom: 26px; }

.notice {
    display: flex; gap: 11px;
    background: rgba(91, 124, 255, .1);
    border: 1px solid rgba(91, 124, 255, .28);
    border-radius: 12px; padding: 14px 16px;
    font-size: 13px; color: #B9C6FF; line-height: 1.5;
    margin-top: 18px;
}

/* ============================================================
   Подвал
   ============================================================ */
.ftr {
    position: relative; z-index: 1;
    margin-top: auto;
    border-top: 1px solid var(--line);
    background: var(--bg-2);
    padding: 56px 0 34px;
}
.ftr__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ftr__logo { height: 26px; margin-bottom: 16px; }
.ftr__about { font-size: 13.5px; color: var(--muted); max-width: 300px; }
.ftr h4 { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.ftr ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ftr ul a { font-size: 13.5px; color: var(--muted); transition: color .18s; }
.ftr ul a:hover { color: var(--accent); }
.ftr__legal {
    border-top: 1px solid var(--line);
    padding-top: 26px;
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    font-size: 12.5px; color: var(--dim); line-height: 1.7;
}
.ftr__legal b { color: var(--muted); font-weight: 700; }

/* ============================================================
   Документы
   ============================================================ */
.doc { position: relative; z-index: 1; padding: 56px 0 88px; }
.doc__wrap { max-width: 820px; }

/* Широкая раскладка для документов с таблицами. Контейнер растягивается
   до 1500px, таблицы занимают его целиком и перестают прокручиваться,
   а текст остаётся узким: строка в 1500px нечитаема. */
@media (min-width: 1100px) {
    .doc__wrap--wide { max-width: 1500px; }
    .doc__wrap--wide > *:not(.doc__table) {
        max-width: 820px; margin-left: auto; margin-right: auto;
    }
    .doc__wrap--wide .table--wide { min-width: 0; }
}
.doc h1 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin-bottom: 12px; letter-spacing: -.015em; }
.doc__meta { font-size: 13px; color: var(--dim); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.doc h2 { font-size: 19px; font-weight: 700; margin: 34px 0 14px; }
.doc h3 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; }
.doc p, .doc li { font-size: 15px; color: var(--muted); margin-bottom: 12px; }
.doc ul, .doc ol { padding-left: 22px; margin-bottom: 16px; }
/* Подпункты вида «1)», как в исходных документах */
.doc ol.paren { list-style: none; counter-reset: paren; padding-left: 34px; }
.doc ol.paren > li { counter-increment: paren; position: relative; }
.doc ol.paren > li::before {
    content: counter(paren) ")";
    position: absolute; left: -34px; width: 28px;
    text-align: right; color: var(--dim);
}
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--text); font-weight: 700; }
.doc a { color: var(--accent); text-decoration: underline; }
.doc__box {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: 22px 24px; margin: 22px 0;
}
.doc__box p:last-child { margin-bottom: 0; }

/* Таблицы в документах. Широкие таблицы прокручиваются внутри своей
   обёртки, чтобы страница не разъезжалась по горизонтали на телефоне. */
.doc__table {
    overflow-x: auto; margin: 18px 0 24px;
    border: 1px solid var(--line); border-radius: var(--r-md);
    -webkit-overflow-scrolling: touch;
}
.doc table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.doc table--wide { min-width: 900px; }
.doc thead th {
    background: var(--surface-2); color: var(--text);
    font-size: 11.5px; font-weight: 700; text-align: left;
    text-transform: uppercase; letter-spacing: .04em;
    padding: 12px 14px; border-bottom: 1px solid var(--line-strong);
    white-space: nowrap;
}
.doc tbody td {
    padding: 12px 14px; color: var(--muted); vertical-align: top;
    border-bottom: 1px solid var(--line); font-size: 13.5px; margin: 0;
}
.doc tbody tr:last-child td { border-bottom: none; }
.doc tbody tr:nth-child(even) td { background: rgba(255, 255, 255, .015); }
.fill {
    background: rgba(255, 185, 6, .14);
    border-bottom: 1px dashed var(--accent);
    color: var(--accent); font-weight: 700;
    padding: 0 4px; border-radius: 3px;
}
.crumbs { font-size: 13px; color: var(--dim); margin-bottom: 22px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }

/* ============================================================
   Адаптив
   ============================================================ */
@media (max-width: 980px) {
    .hero__grid { grid-template-columns: 1fr; gap: 44px; }
    .cards, .steps { grid-template-columns: 1fr 1fr; }
    .band { grid-template-columns: 1fr; gap: 26px; padding: 34px; }
    .ftr__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
    .wrap { padding: 0 18px; }
    .hdr__nav { display: none; }
    .hdr__nav.is-open {
        display: flex; flex-direction: column; gap: 0;
        position: absolute; top: 72px; left: 0; right: 0;
        background: var(--bg-2); border-bottom: 1px solid var(--line);
        padding: 8px 18px 18px;
    }
    .hdr__nav.is-open a { padding: 13px 0; border-bottom: 1px solid var(--line); }
    .burger { display: flex; }
    .hdr__in { gap: 14px; }
    .hdr__act .btn--ghost { display: none; }

    .hero { padding: 56px 0 48px; }
    .sec { padding: 56px 0; }
    .cards, .steps { grid-template-columns: 1fr; }
    .cta { padding: 44px 24px; }
    .form-card { padding: 26px 20px; }
    .total__val { font-size: 28px; }
    .ftr__grid { grid-template-columns: 1fr; gap: 28px; }
    .ftr__legal { flex-direction: column; gap: 12px; }
    .glow { display: none; }
}

/* ============================================================
   Уведомление о cookies
   ============================================================ */
.cookie {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--surface); border-top: 1px solid var(--line-strong);
    box-shadow: 0 -18px 50px rgba(0, 0, 0, .45);
    padding: 16px 0 calc(16px + env(safe-area-inset-bottom, 0px));
    /* Виден сразу, как только снят атрибут hidden. Выезд — чистое украшение:
       без fill-mode элемент по умолчанию стоит на своём месте, поэтому если
       анимация не отработает (фоновая вкладка, экономия энергии), баннер всё
       равно виден, а не останется за нижним краем экрана. */
    animation: cookie-in .28s ease;
}
.cookie.is-closing { transform: translateY(110%); transition: transform .25s ease; }
@keyframes cookie-in {
    from { transform: translateY(110%); }
    to   { transform: none; }
}
.cookie__in {
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px 28px; flex-wrap: wrap;
}
.cookie__txt { font-size: 14px; color: var(--muted); margin: 0; max-width: 700px; }
.cookie__txt a { color: var(--accent); text-decoration: underline; }
.cookie__act { display: flex; gap: 10px; flex-shrink: 0; }
.cookie__act .btn { height: 42px; padding: 0 20px; font-size: 14px; }

@media (max-width: 720px) {
    .cookie__act { width: 100%; }
    .cookie__act .btn { flex: 1; padding: 0 12px; }
}
@media (prefers-reduced-motion: reduce) {
    .cookie, .cookie.is-closing { animation: none; transition: none; }
}
