/* ==========================================================================
   Клуб сетевых подписчиков — единая дизайн-система
   --------------------------------------------------------------------------
   Структура файла:
   01. Токены (цвет / акценты брендов / радиусы / отступы / типографика)
   02. Сброс и база
   03. Раскладка: контейнер, секции, заголовки секций, сетки
   04. Утилиты
   05. Компоненты: иконки, кнопки, бейджи, карточки, панели, баннеры
   06. Таблицы: сравнение подписок, реестр
   07. Шаги / очередь / прогресс
   08. Формы и модальное окно
   09. FAQ, видео, контакты
   10. Шапка, герой, футер, плавающие кнопки
   11. Адаптив и доступность
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800&display=swap");

/* ==========================================================================
   01. ТОКЕНЫ
   ========================================================================== */
:root {
    /* --- Палитра --- */
    --navy: #0e2a47;
    --navy-2: #143a63;
    --navy-3: #0a1f36;
    --teal: #138a86;
    --teal-d: #0e6e6b;
    --sky: #2e7dd1;
    --gold: #f2a93b;
    --gold-d: #c97f14;
    --coral: #f4694c;
    --green: #1e9e6a;
    --green-d: #17805a;
    --forest: #0f5f45;
    --forest-d: #0a4331;
    --violet: #6c5ce7;
    --violet-d: #5847d1;
    --sand: #fbf6ee;

    --bg: #ffffff;
    --bg-soft: #f4f7fb;
    --ink: #0e1b2a;
    --ink-2: #33475b;
    --muted: #5a6b7e;
    --line: #e7edf3;
    --line-2: #d6dfe9;

    /* --- Тональные заливки (плитки иконок, мягкие фоны) --- */
    --t-teal: #e2f1f0;
    --t-sky: #e4effb;
    --t-gold: #fcefd6;
    --t-coral: #fde7e1;
    --t-green: #e1f4eb;
    --t-violet: #ebe8fc;

    /* --- Акцент контекста (клуб по умолчанию: фиолетовый + золото) --- */
    --accent: var(--violet);
    --accent-d: var(--violet-d);
    --accent-ink: #ffffff;
    --accent-tint: var(--t-violet);
    --accent-2: var(--gold);
    --accent-2-d: var(--gold-d);
    --accent-2-ink: var(--navy);
    --accent-2-tint: var(--t-gold);

    /* --- Тёмные поверхности --- */
    --grad-dark: linear-gradient(160deg, #0e2a47 0%, #143a63 100%);
    --grad-hero: radial-gradient(
        120% 90% at 12% 12%,
        #2b1a5e 0%,
        #1b0f38 45%,
        #12081f 100%
    );
    --grad-brand: linear-gradient(
        120deg,
        #138a86 0%,
        #2e7dd1 52%,
        #f2a93b 120%
    );

    /* --- Радиусы --- */
    --r-xs: 8px;
    --r-sm: 12px; /* поля ввода, мелкие чипы */
    --r-md: 16px; /* плитки иконок, вложенные блоки */
    --r-card: 20px; /* все карточки */
    --r-xl: 28px; /* крупные панели, модальное окно */
    --r-pill: 999px; /* кнопки, бейджи, статусы */

    /* --- Шаг сетки 8px --- */
    --s0: 4px;
    --s1: 8px;
    --s2: 16px;
    --s3: 24px;
    --s4: 32px;
    --s5: 40px;
    --s6: 48px;
    --s8: 64px;
    --s10: 80px;
    --s12: 96px;
    --s16: 128px;

    /* --- Вертикальный ритм секций --- */
    --sec-y: clamp(64px, 6.4vw, 104px);
    --sec-y-sm: clamp(44px, 4.4vw, 72px);

    /* --- Типографика --- */
    --ff: "Ubuntu Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --fs-display: clamp(2rem, 1.15rem + 3.5vw, 3.375rem);
    --fs-h1: clamp(1.875rem, 1.25rem + 2.4vw, 2.875rem);
    --fs-h2: clamp(1.625rem, 1.2rem + 1.7vw, 2.375rem);
    --fs-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.625rem);
    --fs-h4: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
    --fs-lead: clamp(1.0625rem, 1rem + 0.35vw, 1.1875rem);
    --fs-body: 1.0625rem; /* 17 */
    --fs-sm: 0.9375rem; /* 15 */
    --fs-xs: 0.8125rem; /* 13 */

    /* --- Размеры --- */
    --container: 1200px;
    --header-h: 84px;
    --gutter: var(--s3);

    /* --- Тени: только для «парящих» элементов --- */
    --shadow-sm: 0 2px 10px rgba(14, 27, 42, 0.06);
    --shadow-md: 0 14px 34px rgba(14, 27, 42, 0.12);
    --shadow-lg: 0 20px 52px rgba(14, 27, 42, 0.24);

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --- Брендовые контексты: тот же дизайн, другой акцент --- */
.brand-travorium {
    --accent: var(--forest);
    --accent-d: var(--forest-d);
    --accent-ink: #ffffff;
    --accent-tint: #e3efe9;
    --accent-2: var(--gold);
    --accent-2-d: var(--gold-d);
    --brand-hero: linear-gradient(
        150deg,
        #0b3b2e 0%,
        #0f4f3b 45%,
        #0e2a47 100%
    );
}
.brand-whieda {
    --accent: var(--green);
    --accent-d: var(--green-d);
    --accent-ink: #ffffff;
    --accent-tint: var(--t-green);
    --accent-2: var(--gold);
    --accent-2-d: var(--gold-d);
    --brand-hero: linear-gradient(
        150deg,
        #145c36 0%,
        #0f5f45 50%,
        #0b3b2e 100%
    );
}

/* ==========================================================================
   02. СБРОС И БАЗА
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + var(--s2));
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff);
    font-size: var(--fs-body);
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul,
ol {
    list-style: none;
}
button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}
table {
    border-collapse: collapse;
}
strong,
b {
    font-weight: 700;
}
::selection {
    background: var(--accent);
    color: var(--accent-ink);
}
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Заголовки — одна шкала на весь сайт */
h1 {
    font-size: var(--fs-h1);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.022em;
}
h2 {
    font-size: var(--fs-h2);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}
h3 {
    font-size: var(--fs-h3);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.012em;
}
h4 {
    font-size: var(--fs-h4);
    line-height: 1.35;
    font-weight: 700;
}
h5 {
    font-size: var(--fs-sm);
    line-height: 1.4;
    font-weight: 700;
}

/* ==========================================================================
   03. РАСКЛАДКА
   ========================================================================== */
.container {
    width: 100%;
    max-width: calc(var(--container) + var(--gutter) * 2);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding: var(--sec-y) 0;
}
.section--sm {
    padding: var(--sec-y-sm) 0;
}
.section--tight {
    padding: var(--s5) 0;
}
.section--soft {
    background: var(--bg-soft);
}
.section--page-start {
    padding-top: calc(var(--header-h) + var(--sec-y-sm));
}
.section--flush-top {
    padding-top: 0;
}
/* Две соседние секции с одинаковым фоном не должны давать двойной отступ */
.section--soft + .section--soft {
    padding-top: 0;
}

/* Заголовок секции — один паттерн на весь сайт */
.shead {
    max-width: 720px;
    margin: 0 0 var(--s5);
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}
.shead--center {
    margin-inline: auto;
    text-align: center;
    align-items: center;
}
.shead__title {
    color: var(--ink);
    text-wrap: balance;
}
.shead__sub {
    font-size: var(--fs-lead);
    line-height: 1.6;
    color: var(--muted);
    max-width: 62ch;
}
.shead--center .shead__sub {
    margin-inline: auto;
}

/* Сетки */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s3);
}
.stack {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}
.actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
}
.actions-row--center {
    justify-content: center;
}

/* ==========================================================================
   04. УТИЛИТЫ (только то, что реально используется в шаблонах)
   ========================================================================== */
.u-sm {
    font-size: var(--fs-sm);
    line-height: 1.6;
}
.u-xs {
    font-size: var(--fs-xs);
    line-height: 1.55;
}
.u-mt2 {
    margin-top: var(--s2);
}
.u-mt3 {
    margin-top: var(--s3);
}
.u-mt6 {
    margin-top: var(--s6);
}

/* ==========================================================================
   05. КОМПОНЕНТЫ
   ========================================================================== */

/* --- Иконки: единый инлайновый SVG-набор, 24×24, stroke ------------------ */
.ico {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}
.ico--sm {
    width: 16px;
    height: 16px;
}
.ico--lg {
    width: 24px;
    height: 24px;
}

/* --- Плитка иконки ------------------------------------------------------- */
.itile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    flex: 0 0 auto;
    background: var(--accent-tint);
    color: var(--accent);
}
.itile .ico {
    width: 22px;
    height: 22px;
}
.itile--sm {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
}
.itile--sm .ico {
    width: 19px;
    height: 19px;
}
.itile--accent {
    background: var(--accent-tint);
    color: var(--accent);
}
.itile--teal {
    background: var(--t-teal);
    color: var(--teal-d);
}
.itile--sky {
    background: var(--t-sky);
    color: var(--sky);
}
.itile--gold {
    background: var(--t-gold);
    color: var(--gold-d);
}
.itile--coral {
    background: var(--t-coral);
    color: var(--coral);
}
.itile--green {
    background: var(--t-green);
    color: var(--green-d);
}
.itile--glass {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

/* --- Кнопки: 6 вариантов × 3 размера ------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 26px;
    font-size: var(--fs-sm);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.005em;
    text-align: center;
    border: 1.5px solid transparent;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition:
        background 0.22s var(--ease),
        border-color 0.22s var(--ease),
        color 0.22s var(--ease),
        transform 0.22s var(--ease),
        box-shadow 0.22s var(--ease);
}
.btn .ico {
    width: 18px;
    height: 18px;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(0);
}
.btn--sm {
    min-height: 40px;
    padding: 9px 18px;
    font-size: var(--fs-xs);
}
.btn--sm .ico {
    width: 16px;
    height: 16px;
}
.btn--lg {
    min-height: 56px;
    padding: 16px 32px;
    font-size: var(--fs-body);
}
.btn--full {
    width: 100%;
}

.btn--primary {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: var(--accent);
}
.btn--primary:hover {
    background: var(--accent-d);
    border-color: var(--accent-d);
}
.btn--gold {
    background: var(--accent-2);
    color: var(--accent-2-ink);
    border-color: var(--accent-2);
}
.btn--gold:hover {
    background: var(--accent-2-d);
    border-color: var(--accent-2-d);
    color: #fff;
}
.btn--ghost {
    background: #fff;
    color: var(--ink);
    border-color: var(--line-2);
}
.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn--on-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.38);
}
.btn--on-dark:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
}

/* --- Статусы и ранги (таблицы реестра) ----------------------------------- */
.status {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs-xs);
    line-height: 1;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}
.status--active {
    background: var(--t-green);
    color: var(--green-d);
}
.status--pending {
    background: var(--t-gold);
    color: var(--gold-d);
}
.status--inactive {
    background: #edf1f5;
    color: var(--muted);
}
.rank {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs-xs);
    line-height: 1;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: var(--r-pill);
    background: var(--t-teal);
    color: var(--teal-d);
    white-space: nowrap;
}

/* --- Карточка (базовый примитив) ----------------------------------------- */
.fcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    padding: var(--s4);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition:
        border-color 0.25s var(--ease),
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}
.fcard:hover {
    border-color: var(--line-2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.fcard__title {
    font-size: var(--fs-h4);
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
}
.fcard__text {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: var(--muted);
    margin-top: -6px;
}
.fcard__value {
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--ink);
    overflow-wrap: anywhere;
}
.fcard__value a:hover {
    color: var(--accent);
}
/* Горизонтальный вариант — иконка слева, подпись и значение справа */
.fcard--inline {
    flex-direction: row;
    align-items: center;
    gap: var(--s3);
}
.fcard--inline .fcard__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.fcard--inline .fcard__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

/* --- Панель (крупный смысловой блок) ------------------------------------- */
.panel {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: var(--s5);
}
.panel--accent {
    border: 2px solid var(--accent);
}
.panel__head {
    display: flex;
    align-items: flex-start;
    gap: var(--s2);
    margin-bottom: var(--s1);
}
.panel__title {
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--navy);
}
.panel__text {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: var(--s3);
}
.panel__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    font-weight: 700;
    line-height: 1;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    background: var(--accent-2);
    color: var(--accent-2-ink);
    margin-bottom: var(--s2);
}

/* --- Информационный баннер ----------------------------------------------- */
.banner {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
    background: var(--sand);
    border: 1px solid #f0e2c8;
    border-left: 5px solid var(--gold);
    border-radius: var(--r-card);
    padding: var(--s4);
}
.banner__icon {
    flex: 0 0 auto;
}
.banner__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.banner__title {
    font-size: var(--fs-xs);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-d);
}
.banner__text {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: var(--ink);
    font-weight: 600;
}
.banner--solid {
    background: var(--t-gold);
    border-color: #efd9ac;
}
.banner__text--strong {
    font-weight: 800;
    color: var(--navy);
}

/* --- Чек-лист ------------------------------------------------------------ */
.checklist-box {
    background: var(--accent-tint);
    border-radius: var(--r-xl);
    padding: var(--s5);
}
.checklist-box__title {
    display: flex;
    align-items: center;
    gap: var(--s2);
    font-size: var(--fs-h3);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: var(--s4);
}
.checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s2) var(--s5);
}
.checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--fs-sm);
    line-height: 1.55;
    color: var(--ink-2);
}
.checklist__icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checklist__icon .ico {
    width: 13px;
    height: 13px;
    stroke-width: 3;
}

/* --- CTA-полоса ---------------------------------------------------------- */
.cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
    background: var(--grad-dark);
    background-image: var(--mtc-cta-image, none);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 64px);
    text-align: center;
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 42, 71, 0.93) 0%,
        rgba(14, 42, 71, 0.78) 100%
    );
}
.cta > * {
    position: relative;
}
.cta__title {
    font-size: var(--fs-h2);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.cta__actions {
    margin-top: var(--s4);
    display: flex;
    gap: var(--s2);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   06. ТАБЛИЦЫ
   ========================================================================== */

/* --- Сравнение подписок --------------------------------------------------- */
.plans-wrap {
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    overflow: hidden;
    background: #fff;
}
.plans-table {
    width: 100%;
}
.plans-table th,
.plans-table td {
    padding: 16px 20px;
    text-align: center;
    vertical-align: middle;
}
.plans-table th {
    font-size: var(--fs-sm);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}
.plans-table__logo {
    margin-right: 6px;
}
.plans-table th.plans-table__cond {
    background: var(--navy);
    color: #fff;
    text-align: left;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.plans-table td {
    font-size: var(--fs-sm);
    line-height: 1.5;
    border-top: 1px solid var(--line);
}
.plans-table td.plans-table__cond {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
    background: var(--bg-soft);
}
.plans-table__cond-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}
.plans-table__cond-inner .ico {
    color: var(--muted);
}
.plans-table__val {
    font-weight: 700;
    color: var(--ink);
}
.plans-table tbody tr:hover td:not(.plans-table__cond) {
    background: var(--bg-soft);
}

/* базовый цвет заголовка тарифа — на случай, если в админке не выбрана тема */
.plans-table th.plans-table__plan {
    background: var(--navy);
}
th.plans-table__plan--violet {
    background: var(--violet);
}
th.plans-table__plan--green {
    background: var(--green);
}
th.plans-table__plan--teal {
    background: var(--teal);
}
th.plans-table__plan--gold {
    background: var(--gold);
    color: var(--navy);
}
th.plans-table__plan--coral {
    background: var(--coral);
}
th.plans-table__plan--sky {
    background: var(--sky);
}

/* Мобильный вариант сравнения — карточки вместо горизонтальной прокрутки */
.plans-cards {
    display: none;
    gap: var(--s3);
}
.plan-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    overflow: hidden;
}
.plan-card__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    font-size: var(--fs-h4);
    font-weight: 800;
    color: #fff;
    background: var(--navy);
}
.plan-card__head--violet {
    background: var(--violet);
}
.plan-card__head--green {
    background: var(--green);
}
.plan-card__head--teal {
    background: var(--teal);
}
.plan-card__head--gold {
    background: var(--gold);
    color: var(--navy);
}
.plan-card__head--coral {
    background: var(--coral);
}
.plan-card__head--sky {
    background: var(--sky);
}
.plan-card__rows {
    padding: 6px 18px 14px;
}
.plan-card__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--s2);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.plan-card__row:last-child {
    border-bottom: none;
}
.plan-card__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--muted);
    flex: 0 0 auto;
}
.plan-card__label .ico {
    width: 16px;
    height: 16px;
}
.plan-card__value {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--ink);
    text-align: right;
}

/* --- Таблица реестра ------------------------------------------------------ */
.table-wrap {
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* «Тени прокрутки» — подсказывают, что таблицу можно листать вбок */
    background:
        linear-gradient(to right, #fff 40%, rgba(255, 255, 255, 0)) left center,
        linear-gradient(to left, #fff 40%, rgba(255, 255, 255, 0)) right center,
        radial-gradient(
                farthest-side at 0 50%,
                rgba(14, 27, 42, 0.14),
                rgba(14, 27, 42, 0)
            )
            left center,
        radial-gradient(
                farthest-side at 100% 50%,
                rgba(14, 27, 42, 0.14),
                rgba(14, 27, 42, 0)
            )
            right center;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size:
        44px 100%,
        44px 100%,
        14px 100%,
        14px 100%;
    background-attachment: local, local, scroll, scroll;
}
.registry-table {
    width: 100%;
    min-width: 860px;
}
.registry-table th {
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.35;
    padding: 13px 14px;
}
.registry-table td {
    padding: 13px 14px;
    font-size: var(--fs-sm);
    line-height: 1.45;
    border-top: 1px solid var(--line);
    vertical-align: middle;
}
.registry-table th.col-num {
    width: 56px;
}
.registry-table th.col-wa,
.registry-table th.col-date {
    white-space: nowrap;
}
.registry-table tbody tr:nth-child(even) {
    background: var(--bg-soft);
}
.registry-table tbody tr:hover {
    background: var(--accent-tint);
}
.registry-table__num {
    font-weight: 800;
    color: var(--accent);
}
.registry-table__name {
    font-weight: 700;
    color: var(--navy);
}
.registry-table__meta {
    font-size: var(--fs-xs);
    color: var(--ink-2);
}
.registry-table__meta--muted {
    font-size: var(--fs-xs);
    color: var(--muted);
    font-style: italic;
}
.registry-table__wa--hidden {
    font-size: var(--fs-xs);
    font-style: italic;
    color: var(--muted);
}
.registry-table__empty {
    padding: var(--s5) var(--s3);
    text-align: center;
    color: var(--muted);
    font-size: var(--fs-sm);
}

.registry-explanation {
    background: var(--sand);
    border: 1px solid #f0e2c8;
    border-radius: var(--r-card);
    padding: var(--s4);
    font-size: var(--fs-sm);
    line-height: 1.65;
    color: var(--ink-2);
}

/* ==========================================================================
   07. ШАГИ · ОЧЕРЕДЬ · ПРОГРЕСС
   ========================================================================== */

/* --- Шаги «Как начать» ---------------------------------------------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--s3);
}
.step-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    padding: var(--s3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition:
        border-color 0.25s var(--ease),
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}
.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.step-card__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: var(--fs-sm);
    font-weight: 800;
    line-height: 1;
}
.step-card__title {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}
.step-card__text {
    font-size: var(--fs-xs);
    line-height: 1.55;
    color: var(--muted);
}

/* --- Слот активной позиции ------------------------------------------------ */
.slot {
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    overflow: hidden;
    background: var(--bg-soft);
}
.slot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s2);
    flex-wrap: wrap;
    background: var(--navy);
    color: #fff;
    padding: 14px 20px;
    font-size: var(--fs-sm);
    font-weight: 700;
}
.slot__header-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.72);
}
.slot__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
}
.slot__body {
    padding: var(--s3);
}
.slot__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--s3);
    align-items: stretch;
}
.slot__facts {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--s1) var(--s3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slot__empty {
    padding: var(--s4);
    text-align: center;
    color: var(--muted);
    font-size: var(--fs-sm);
}

.q-slot-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s2);
    padding: 14px 0;
    border-bottom: 1px dashed var(--line-2);
    min-width: 0;
}
.q-slot-field:last-child {
    border-bottom: none;
}
.q-slot-field__label-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    color: var(--muted);
}
.q-slot-field__icon {
    display: inline-flex;
    color: var(--muted);
}
.q-slot-field__label {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.q-slot-field__value {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--ink);
    text-align: right;
    min-width: 0;
    overflow-wrap: anywhere;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}
.q-slot-field__value a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.q-slot-field__value a:hover {
    color: var(--accent-d);
}

.js-copy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: var(--r-xs);
    color: var(--muted);
    transition:
        background 0.2s var(--ease),
        color 0.2s var(--ease);
}
.js-copy-link:hover {
    background: var(--accent-tint);
    color: var(--accent);
}
.js-copy-link .ico {
    width: 16px;
    height: 16px;
}
.js-copy-link .js-copy-done {
    display: none;
    color: var(--green);
}
.js-copy-link.is-copied .js-copy-idle {
    display: none;
}
.js-copy-link.is-copied .js-copy-done {
    display: block;
}

/* --- Прогресс ------------------------------------------------------------- */
.q-slot-progress-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--s3);
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}
.q-slot-progress-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    text-align: center;
}
.q-slot-progress-title .ico {
    color: var(--accent-2);
}
.q-slot-partners-left-label {
    text-align: center;
    font-size: var(--fs-xs);
    color: var(--muted);
}
.q-slot-partners-left-value {
    font-weight: 800;
    color: var(--accent);
}
.q-slot-progress-bar-wrap {
    height: 8px;
    background: var(--line);
    border-radius: var(--r-pill);
    overflow: hidden;
}
.q-slot-progress-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: var(--r-pill);
    transition: width 0.6s var(--ease);
}

.q-slot-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: var(--s1);
}
.q-slot-step {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    background: var(--bg-soft);
    border: 1px solid transparent;
}
.q-slot-step--active {
    background: var(--accent-tint);
    border-color: color-mix(in srgb, var(--accent) 24%, transparent);
}
.q-slot-step__circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: 800;
    background: #fff;
    border: 1.5px solid var(--line-2);
    color: var(--muted);
}
.q-slot-step--active .q-slot-step__circle {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-ink);
}
.q-slot-step__label {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--navy);
}
.q-slot-step__status {
    font-size: var(--fs-xs);
    color: var(--muted);
    white-space: nowrap;
}
.q-slot-step--active .q-slot-step__status {
    color: var(--green-d);
    font-weight: 700;
}

.q-slot-next-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--t-gold);
    border: 1px solid #efd9ac;
    border-radius: var(--r-md);
    padding: 14px 16px;
}
.q-slot-next-icon {
    color: var(--gold-d);
    flex: 0 0 auto;
}
.q-slot-next-text {
    font-size: var(--fs-xs);
    line-height: 1.55;
    color: var(--ink-2);
}
.q-slot-action {
    margin-top: var(--s3);
}

/* --- Поиск спонсора ------------------------------------------------------- */
.sponsor-search-form {
    display: flex;
    flex-direction: column;
}
.sponsor-search-form__group {
    display: flex;
    gap: var(--s1);
    align-items: stretch;
}
.sponsor-search-form__group .form__input {
    flex: 1 1 auto;
    min-width: 0;
}
.sponsor-search-form__group .btn {
    flex: 0 0 auto;
}
.sponsor-search-result {
    margin-top: var(--s3);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: var(--s3);
}
.sponsor-search-result__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--green-d);
    margin-bottom: var(--s2);
}
.sponsor-search-result__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--s2);
    padding: 8px 0;
    border-bottom: 1px dashed var(--line-2);
    font-size: var(--fs-sm);
}
.sponsor-search-result__row:last-of-type {
    border-bottom: none;
}
.sponsor-search-result__row strong {
    color: var(--muted);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sponsor-search-result__row span {
    font-weight: 700;
    text-align: right;
    overflow-wrap: anywhere;
}
.sponsor-search-result__row a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}
.sponsor-search-result__error {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: #d63031;
}
.sponsor-search-result .btn {
    margin-top: var(--s3);
}

/* ==========================================================================
   08. ФОРМЫ И МОДАЛЬНОЕ ОКНО
   ========================================================================== */
.form__group {
    margin-bottom: var(--s3);
}
.form__label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 700;
    line-height: 1.45;
    color: var(--ink);
    margin-bottom: 8px;
}
.form__input {
    width: 100%;
    min-height: 50px;
    font-size: var(--fs-sm);
    padding: 13px 16px;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--line-2);
    border-radius: var(--r-sm);
    transition:
        border-color 0.2s var(--ease),
        box-shadow 0.2s var(--ease);
}
.form__input::placeholder {
    color: #9aa8b6;
}
.form__input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}
.form__checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--fs-xs);
    line-height: 1.55;
    color: var(--ink-2);
    cursor: pointer;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 12px 14px;
    transition: border-color 0.2s var(--ease);
}
.form__checkbox-row:hover {
    border-color: var(--line-2);
}
.form__checkbox-row input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex: 0 0 auto;
    accent-color: var(--accent);
    cursor: pointer;
}
.form__checkbox-row a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form__note {
    font-size: var(--fs-xs);
    line-height: 1.55;
    color: var(--muted);
}
.reg-form-actions {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
    margin-top: var(--s3);
}
.btn:disabled,
.btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.phone-row {
    display: flex;
    gap: 10px;
}
.form__select {
    flex: 0 0 auto;
    max-width: 40%;
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 13px 12px;
    border: 1.5px solid var(--line-2);
    border-radius: var(--r-sm);
    background: #fff;
    color: var(--ink);
    transition: border-color 0.2s var(--ease);
}
.form__select:focus {
    outline: none;
    border-color: var(--accent);
}
.phone-row .form__input {
    flex: 1 1 auto;
    min-width: 0;
}

.wa-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    border: 1.5px dashed var(--line-2);
    font-size: var(--fs-xs);
}
.wa-status__icon {
    display: inline-flex;
}
.wa-status__icon .ico {
    width: 16px;
    height: 16px;
}
.wa-status[data-state="verified"] {
    border-color: var(--green);
    background: var(--t-green);
}
.wa-status[data-state="verified"] #reg-wa-status-text {
    color: var(--green-d);
}
.wa-status[data-state="unverified"] #reg-wa-status-text {
    color: #d63031;
}
.wa-status[data-state="pending"] {
    border-color: var(--gold);
    background: var(--t-gold);
}
.wa-status[data-state="pending"] #reg-wa-status-text {
    color: var(--gold-d);
}
.wa-status[data-state="pending"] .wa-status__icon {
    animation: wa-pending-pulse 1.4s ease-in-out infinite;
}
@keyframes wa-pending-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .phone-row {
        flex-direction: column;
    }
    .form__select {
        max-width: 100%;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--s3);
    background: rgba(10, 31, 54, 0.66);
    backdrop-filter: blur(6px);
}
.modal-overlay.is-active {
    display: flex;
    animation: fade-in 0.22s var(--ease);
}
.modal {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: min(90vh, 860px);
    overflow-y: auto;
    background: #fff;
    border-radius: var(--r-xl);
    padding: var(--s5);
    box-shadow: var(--shadow-lg);
    animation: modal-in 0.28s var(--ease);
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s var(--ease),
        color 0.2s var(--ease);
}
.modal__close:hover {
    background: var(--line);
    color: var(--ink);
}
.modal__head {
    margin-bottom: var(--s4);
    padding-right: 48px;
}
.modal__title {
    font-size: var(--fs-h3);
    font-weight: 800;
    color: var(--navy);
}
.modal__sponsor {
    margin-top: var(--s1);
    font-size: var(--fs-sm);
    color: var(--muted);
}
.modal__sponsor strong {
    color: var(--accent);
}
.reg-form-success {
    text-align: center;
    padding: var(--s3) 0;
}
.reg-form-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--s3);
    border-radius: 50%;
    background: var(--t-green);
    color: var(--green-d);
    display: flex;
    align-items: center;
    justify-content: center;
}
.reg-form-success__icon .ico {
    width: 34px;
    height: 34px;
    stroke-width: 2.2;
}
.reg-form-success__title {
    font-size: var(--fs-h3);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: var(--s2);
}
.reg-form-success__text {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: var(--s3);
}

/* ==========================================================================
   09. FAQ · ВИДЕО · КОНТАКТЫ
   ========================================================================== */
.faq-list {
    max-width: 840px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    overflow: hidden;
    transition:
        border-color 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}
.faq-item:hover {
    border-color: var(--line-2);
}
.faq-item.is-open {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s3);
    text-align: left;
    padding: 20px var(--s3);
    font-size: var(--fs-body);
    font-weight: 700;
    line-height: 1.4;
    color: var(--ink);
}
.faq-item__icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent-tint);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.3s var(--ease),
        background 0.3s var(--ease),
        color 0.3s var(--ease);
}
.faq-item__icon .ico {
    width: 18px;
    height: 18px;
}
.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--accent-ink);
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--s3);
    font-size: var(--fs-sm);
    line-height: 1.65;
    color: var(--muted);
    transition:
        max-height 0.35s var(--ease),
        padding 0.35s var(--ease);
}
.faq-item.is-open .faq-item__answer {
    max-height: 520px;
    padding: 0 var(--s3) 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s3);
}
.video-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    overflow: hidden;
    transition:
        border-color 0.25s var(--ease),
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}
.video-card:hover {
    border-color: var(--line-2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}
.video-card__thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    background-color: var(--navy);
    background-image: var(--mtc-video-image);
    background-size: cover;
    background-position: center;
}
.video-card__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 31, 54, 0.1) 0%,
        rgba(10, 31, 54, 0.45) 100%
    );
    transition: opacity 0.25s var(--ease);
}
.video-card:hover .video-card__thumb::after {
    opacity: 0.7;
}
.video-card__play {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.25s var(--ease),
        background 0.25s var(--ease);
}
.video-card__play .ico {
    width: 22px;
    height: 22px;
    margin-left: 2px;
}
.video-card:hover .video-card__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
}
.video-card__body {
    padding: var(--s3);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
}
.video-card__num {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-tint);
    padding: 6px 10px;
    border-radius: var(--r-pill);
}
.video-card__title {
    font-size: var(--fs-h4);
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
}
.video-card__desc {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: var(--muted);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--s3);
    align-items: stretch;
}
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: var(--s5);
    display: flex;
    flex-direction: column;
}
.contact-card__title {
    color: var(--navy);
    margin-bottom: var(--s3);
}
.contact-row {
    display: flex;
    align-items: center;
    gap: var(--s2);
    padding: var(--s2) 0;
    border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type {
    border-bottom: none;
}
.contact-row__body {
    min-width: 0;
}
.contact-row__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}
.contact-row__value {
    font-size: var(--fs-body);
    font-weight: 600;
    margin-top: 2px;
    overflow-wrap: anywhere;
}
.contact-row__value a:hover {
    color: var(--accent);
}
.contact-card__actions {
    margin-top: auto;
    padding-top: var(--s4);
}
.note-card {
    background: var(--sand);
    border: 1px solid #f0e2c8;
    border-left: 5px solid var(--gold);
    border-radius: var(--r-xl);
    padding: var(--s5);
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}
.note-card__title {
    color: var(--gold-d);
    margin-bottom: var(--s1);
}
.note-card__actions {
    margin-top: auto;
    padding-top: var(--s3);
}

/* ==========================================================================
   10. ШАПКА · ГЕРОЙ · ФУТЕР · ПЛАВАЮЩИЕ КНОПКИ
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition:
        padding 0.3s var(--ease),
        background 0.3s var(--ease),
        border-color 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}
.header--solid,
.header.is-stuck {
    background: rgba(11, 32, 55, 0.96);
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
.header.is-stuck {
    padding: 10px 0;
}
.header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s3);
    min-height: 52px;
}
.header__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.header__logo img {
    height: 52px;
    width: auto;
    transition: height 0.3s var(--ease);
}
.header.is-stuck .header__logo img {
    height: 44px;
}
.header__nav {
    display: flex;
    align-items: center;
    gap: var(--s4);
}
.header__nav a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.86);
    transition: color 0.2s var(--ease);
}
.header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    transition: width 0.25s var(--ease);
}
.header__nav a:hover {
    color: #fff;
}
.header__nav a:hover::after,
.header__nav a.is-current::after {
    width: 100%;
}
/* Резерв места под фиксированную кнопку WhatsApp, чтобы она не перекрывала меню */
.header__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--s2);
    flex: 0 0 auto;
    min-width: 216px;
}

.header__lang-wrap {
    position: relative;
}
.header__lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s var(--ease);
}
.header__lang:hover,
.header__lang-wrap.is-open .header__lang {
    background: rgba(255, 255, 255, 0.12);
}
.header__lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    min-width: 100%;
    padding: 6px;
    border-radius: 12px;
    background: rgba(11, 32, 55, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-sm);
}
.header__lang-menu[hidden] {
    display: none;
}
.header__lang-option {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-align: center;
    transition: background 0.15s var(--ease);
}
.header__lang-option:hover,
.header__lang-option.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
}

.header__wa {
    z-index: 130;
    top: 18px;
    right: max(var(--s3), calc((100vw - var(--container)) / 2 + var(--s3)));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--navy);
    background: var(--gold);
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
    transition:
        background 0.2s var(--ease),
        transform 0.2s var(--ease);
}
.header__wa:hover {
    background: #ffc15e;
    transform: translateY(-1px);
}
.header__wa svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 auto;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    transition: background 0.2s var(--ease);
}
.header__burger:hover {
    background: rgba(255, 255, 255, 0.12);
}
.header__burger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition:
        transform 0.3s var(--ease),
        opacity 0.3s var(--ease);
}
.header__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
    opacity: 0;
}
.header__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header__mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(11, 32, 55, 0.98);
    backdrop-filter: blur(16px);
    padding: calc(var(--header-h) + var(--s2)) var(--gutter) var(--s6);
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}
.header__mobile-nav.is-open {
    display: flex;
    animation: fade-in 0.2s var(--ease);
}
.header__mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-h4);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s var(--ease);
}
.header__mobile-nav a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}
.header__mobile-nav a:hover,
.header__mobile-nav a.is-current {
    color: var(--gold);
}
body:has(.header__mobile-nav.is-open) .header {
    background: rgba(11, 32, 55, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* --- Главный герой -------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: min(100svh, 780px);
    padding: calc(var(--header-h) + var(--s5)) 0 var(--s8);
    color: #fff;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
}
.hero__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            42% 52% at 82% 88%,
            rgba(46, 125, 209, 0.28),
            transparent 70%
        ),
        radial-gradient(
            38% 46% at 8% 6%,
            rgba(108, 92, 231, 0.3),
            transparent 72%
        );
}
.hero__grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.hero__content {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--s1);
    align-self: flex-start;
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero__eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
}
.hero__title {
    font-size: var(--fs-display);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.028em;
    color: #efc85f;
    text-wrap: balance;
}
.hero__desc {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}
.hero__text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--fs-lead);
    line-height: 1.55;
    font-weight: 700;
    color: #fff;
}
.hero__text .itile {
    margin-top: -2px;
}
.hero__text--small {
    font-size: var(--fs-sm);
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.74);
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
    margin-top: var(--s1);
}
.hero__aside {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}
.hero__panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--r-xl);
    padding: var(--s3);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}
.hero__glass-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--r-xl);
    padding: var(--s3);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    transition: border-color 0.3s var(--ease);
}
.hero__glass-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
}
.hero__stats-list {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}
.hero__stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s2);
    padding-bottom: var(--s2);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}
.hero__stat-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.hero__stat-num {
    font-size: 32px;
    line-height: 32px;
    font-weight: 800;
    color: var(--gold);
}
.hero__stat-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    text-align: right;
}
.hero__tags {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: var(--s3);
}
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-xs);
    line-height: 18px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}
.hero__tag--warning {
    background: rgba(244, 105, 76, 0.08);
    border-color: rgba(244, 105, 76, 0.3);
    color: #ff8f7a;
}

.hero__globe img {
    border-radius: var(--r-card);
    width: 100%;
}
.hero__video-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-xs);
    font-weight: 700;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero__video-title .ico {
    color: var(--gold);
}
.hero__video-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-md);
    overflow: hidden;
    background-color: #12081f;
    background-image: var(--mtc-video-image);
    background-size: cover;
    background-position: center;
}
.hero__video-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 26, 0.32);
}
.hero__video-thumb--placeholder {
    cursor: default;
}
.hero__video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s var(--ease);
}
.hero__video-play .ico {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}
a.hero__video-thumb:hover .hero__video-play {
    transform: translate(-50%, -50%) scale(1.07);
}
.hero__video-time {
    position: absolute;
    right: 12px;
    bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: var(--r-pill);
}
.hero-scroll {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: var(--s3);
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.45);
}
.hero-scroll .ico {
    width: 26px;
    height: 26px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* --- Герой бренд-страницы ------------------------------------------------- */
.brand-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-h) + var(--s6)) 0 var(--s8);
    background: var(--brand-hero, var(--grad-dark));
    color: #fff;
}
.brand-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        46% 60% at 88% 10%,
        rgba(242, 169, 59, 0.16),
        transparent 70%
    );
}
.brand-hero__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--s5);
    flex-wrap: wrap;
}
.brand-hero__wordmark-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
    min-width: 0;
}
.brand-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--s1);
    align-self: flex-start;
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-2);
}
.brand-hero__eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-2);
}
.brand-hero__wordmark {
    font-size: var(--fs-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    text-wrap: balance;
}
.brand-hero__rule {
    width: 88px;
    height: 4px;
    border-radius: 4px;
    background: var(--accent-2);
}
.brand-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
    flex: 0 1 auto;
    min-width: 0;
}
.brand-hero__actions .btn {
    max-width: 100%;
}

/* --- Шапка внутренней страницы ------------------------------------------- */
.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: calc(var(--header-h) + var(--s5)) 0 var(--sec-y-sm);
    background-color: var(--navy);
    background-image: var(--mtc-registry-image);
    background-size: cover;
    background-position: center;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 31, 54, 0.92) 0%,
        rgba(10, 31, 54, 0.66) 55%,
        rgba(10, 31, 54, 0.34) 100%
    );
}
.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}
.page-hero__title {
    font-size: var(--fs-h1);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.022em;
    text-wrap: balance;
}
.page-hero__sub {
    font-size: var(--fs-lead);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Футер ---------------------------------------------------------------- */
.footer {
    position: relative;
    overflow: hidden;
    background: var(--grad-dark);
    color: rgba(255, 255, 255, 0.76);
    padding: var(--sec-y-sm) 0 var(--s5);
}
.footer__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            38% 68% at 92% 8%,
            rgba(46, 125, 209, 0.28),
            transparent 70%
        ),
        radial-gradient(
            38% 78% at 4% 100%,
            rgba(19, 138, 134, 0.3),
            transparent 70%
        );
}
.footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: var(--s5);
}
.footer__logo img {
    height: 56px;
    width: auto;
    margin-bottom: var(--s2);
}
.footer__tagline {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.64);
    max-width: 34ch;
}
.footer__heading {
    font-size: var(--fs-xs);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--s2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.2s var(--ease);
}
.footer__links a:hover {
    color: var(--gold);
}
.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-sm);
    line-height: 1.5;
    overflow-wrap: anywhere;
}
.footer__contact-item .ico {
    color: rgba(255, 255, 255, 0.44);
}
.footer__contact-item a:hover {
    color: var(--gold);
}
.footer__wa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--s3);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--gold);
}
.footer__wa-link:hover {
    color: #ffc15e;
}
.footer__divider {
    position: relative;
    z-index: 1;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: var(--s5) 0 var(--s3);
}
.footer__disclaimer {
    position: relative;
    z-index: 1;
    font-size: var(--fs-xs);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.52);
    max-width: 100ch;
}
.footer__brand {
    position: relative;
    z-index: 1;
    margin-top: var(--s2);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.46);
}

/* --- Плавающая кнопка «Выбрать подписку» ---------------------------------- */
.fixed-button-register {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 15px 20px calc(15px + env(safe-area-inset-bottom, 0px));
    font-size: var(--fs-sm);
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff;
    background: var(--violet);
    box-shadow: 0 -6px 22px rgba(14, 27, 42, 0.18);
    transition:
        background 0.25s var(--ease),
        transform 0.25s var(--ease);
}
.fixed-button-register:hover {
    background: var(--violet-d);
}
body {
    padding-bottom: 72px;
}

/* ==========================================================================
   11. АНИМАЦИИ · АДАПТИВ · ДОСТУПНОСТЬ
   ========================================================================== */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes scroll-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(26px);
}
.reveal.is-in {
    opacity: 1;
    transform: none;
}

/* --- ≥ 861px: плавающая кнопка становится компактной пилюлей --------------- */
@media (min-width: 861px) {
    .fixed-button-register {
        left: auto;
        width: auto;
        right: max(var(--s3), calc((100vw - var(--container)) / 2 + var(--s3)));
        bottom: var(--s3);
        border-radius: var(--r-pill);
        padding: 16px 30px;
        box-shadow: var(--shadow-md);
    }
    .fixed-button-register:hover {
        transform: translateY(-2px);
    }
    body {
        padding-bottom: 0;
    }
}

/* --- ≤ 1080px ------------------------------------------------------------- */
@media (max-width: 1080px) {
    .header__nav {
        gap: var(--s3);
    }
    .header__controls {
        min-width: 200px;
    }
    /* Шаги превращаются в вертикальную ленту — без «дыр» в сетке */
    .steps {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
    .step-card {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr);
        column-gap: var(--s3);
        row-gap: 4px;
        align-items: start;
    }
    .step-card__num {
        grid-row: 1 / span 2;
    }
    .step-card__title {
        align-self: center;
    }
}

/* --- ≤ 1024px ------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --header-h: 76px;
    }
    .hero {
        min-height: 0;
        padding: calc(var(--header-h) + var(--s5)) 0 var(--s6);
    }
    .hero__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--s5);
    }
    .hero__content {
        align-items: center;
        text-align: center;
    }
    .hero__eyebrow,
    .hero__actions {
        align-self: center;
        justify-content: center;
    }
    .hero__text {
        justify-content: center;
        text-align: left;
    }
    .hero__text--small {
        text-align: center;
    }
    .hero__aside {
        max-width: 560px;
        width: 100%;
        margin-inline: auto;
    }
    .hero-scroll {
        display: none;
    }
    .contacts-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .grid-3,
    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    /* тройка карточек: последняя занимает всю строку, чтобы не оставалось «дыры» */
    .grid-3 > *:nth-child(3):last-child {
        grid-column: 1 / -1;
    }
    .slot__grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--s5) var(--s4);
    }
}

/* --- ≤ 860px: мобильная навигация ----------------------------------------- */
@media (max-width: 860px) {
    :root {
        --header-h: 68px;
        --gutter: 16px;
    }
    .header {
        padding: 10px 0;
    }
    .header.is-stuck {
        padding: 8px 0;
    }
    .header__bar {
        min-height: 44px;
        gap: var(--s2);
    }
    .header__logo img,
    .header.is-stuck .header__logo img {
        height: 40px;
    }
    .header__nav {
        display: none;
    }
    .header__burger {
        display: flex;
    }
    .header__controls {
        min-width: 0;
        gap: var(--s1);
    }
    .header__lang {
        padding: 8px 10px;
        font-size: var(--fs-xs);
    }
    .header__wa {
        top: 12px;
        right: calc(var(--gutter) + 52px);
        padding: 0;
        width: 44px;
        height: 44px;
    }
    .header__wa-text {
        display: none;
    }

    .panel {
        padding: var(--s4) var(--s3);
        border-radius: var(--r-card);
    }
    .checklist-box {
        padding: var(--s4) var(--s3);
        border-radius: var(--r-card);
    }
    .banner {
        padding: var(--s3);
        gap: var(--s2);
    }
    .fcard {
        padding: var(--s3);
    }
    .contact-card,
    .note-card {
        padding: var(--s4) var(--s3);
        border-radius: var(--r-card);
    }
    .cta__actions .btn,
    .actions-row--center .btn {
        width: 100%;
        max-width: 380px;
    }
    .footer__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--s4);
    }
    .footer__tagline {
        max-width: none;
    }
    .modal {
        padding: var(--s4) var(--s3);
        border-radius: var(--r-card);
    }
    .modal__head {
        padding-right: 44px;
    }
    .faq-item__question {
        padding: 16px var(--s2);
        font-size: var(--fs-sm);
        gap: var(--s2);
    }
    .faq-item.is-open .faq-item__answer {
        padding: 0 var(--s2) 18px;
    }
    .faq-item__answer {
        padding: 0 var(--s2);
    }
    .brand-hero__actions {
        width: 100%;
    }
    .brand-hero__actions .btn {
        width: 100%;
    }
    .sponsor-search-form__group {
        flex-direction: column;
    }
    .sponsor-search-form__group .btn {
        width: 100%;
    }
    .registry-table th,
    .registry-table td {
        padding: 12px;
    }
}

/* --- ≤ 760px: сравнение подписок карточками -------------------------------- */
@media (max-width: 760px) {
    .plans-wrap {
        display: none;
    }
    .plans-cards {
        display: grid;
    }
}

/* --- ≤ 640px --------------------------------------------------------------- */
@media (max-width: 640px) {
    .grid-3,
    .video-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .checklist {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }
}

/* --- ≤ 560px --------------------------------------------------------------- */
@media (max-width: 560px) {
    .q-slot-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .q-slot-field__value {
        text-align: left;
        justify-content: flex-start;
        max-width: 100%;
    }
    .q-slot-field__value a {
        white-space: normal;
        overflow: visible;
    }
    .q-slot-step {
        grid-template-columns: 32px minmax(0, 1fr);
        row-gap: 2px;
    }
    .q-slot-step__circle {
        grid-row: 1 / span 2;
    }
    .q-slot-step__status {
        grid-column: 2;
        text-align: left;
    }
    .slot__body {
        padding: var(--s2);
    }
    .slot__facts {
        padding: 0 var(--s2);
    }
    .sponsor-search-result__row {
        flex-direction: column;
        gap: 2px;
    }
    .sponsor-search-result__row span {
        text-align: left;
    }
    .hero__actions .btn,
    .brand-hero__actions .btn {
        width: 100%;
    }
    .plan-card__row {
        flex-direction: column;
        gap: 4px;
    }
    .plan-card__value {
        text-align: left;
    }
}

/* --- Доступность ----------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
