/* ════════════════════════════════════════════════════════════
   RESET + БАЗА (стиль текущего лендинга)
   ════════════════════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; }

:root {
    --dark:        #00183D;
    --primary:     #2665FE;
    --primary-h:   #004FBD;
    --muted:       #67779C;
    --red:         #DD2D62;
    --green:       #1AAE61;
    --bg-light:    #F1F5F9;
    --bg-blue:     #E2EDFF;
    --bg-tag:      #DAEDFF;
    --bg-tag-2:    #DDE7FF;
    --border:      #EBEDF1;
    --white:       #FFFFFF;
    --shadow-sm:   0 4px 14px rgba(32,49,91,.06);
    --shadow-md:   0 10px 32px rgba(32,49,91,.10);
    --shadow-lg:   1px 8px 118px rgba(32,49,91,.14);
}

body {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-h); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.center { text-align: center; }

/* ── Headings (Unbounded — как на текущем сайте) ── */
h1, h2, h3, .h-display, .h-section {
    font-family: 'Unbounded', sans-serif;
    color: var(--dark);
    line-height: 1.2;
}
h1.h-hero {
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -.01em;
}
h2.h-section {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    letter-spacing: -.01em;
}
h3 { font-weight: 700; font-size: 1.2rem; line-height: 1.3; }
p { color: var(--dark); }

/* ════════════════════════════════════════════════════════════
   КНОПКИ — стиль текущего лендинга
   ════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: 1rem 2.2rem;
    border-radius: 10px;
    font-family: 'Onest', sans-serif;
    font-weight: 600; font-size: 1rem; line-height: 1.4;
    color: var(--dark); background: var(--white);
    border: 0; cursor: pointer; text-decoration: none;
    transition: background-color .3s, color .3s, transform .15s, box-shadow .3s;
    white-space: nowrap;
}
.btn:hover { background: var(--bg-tag-2); text-decoration: none; }
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-h); color: var(--white); }
.btn--ghost { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn--ghost:hover { background: var(--bg-light); border-color: var(--primary); color: var(--primary); }
.btn--sm { padding: .7rem 1.2rem; font-size: .92rem; }
.btn--lg { padding: 1.15rem 2.6rem; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn:active { transform: scale(.98); }

/* ── Highlighter-акценты (как на текущем сайте) ── */
.rect {
    position: relative; display: inline-block; padding: 0 .35em;
    color: var(--white); z-index: 0;
}
.rect::before {
    content: ''; position: absolute; inset: -.1em -.05em -.15em -.05em;
    background: var(--primary); border-radius: 8px;
    z-index: -1; transform: rotate(-1deg);
}
.rect--red::before { background: var(--red); }
.rect--dark::before { background: var(--dark); }

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.hdr {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.hdr__inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; }
.hdr__logo { color: var(--dark); display: inline-flex; align-items: center; }
.hdr__logo svg { height: 30px; width: auto; }
.hdr__nav { display: flex; gap: 1.8rem; margin-left: 1rem; }
.hdr__nav a { color: var(--muted); font-size: .95rem; font-weight: 500; transition: color .3s; }
.hdr__nav a:hover { color: var(--dark); text-decoration: none; }
.hdr__cta { margin-left: auto; display: flex; gap: .55rem; align-items: center; }

/* ── Гамбургер (только мобайл) ─────────────────────────────── */
.hdr__burger {
    display: none;
    width: 42px; height: 42px;
    align-items: center; justify-content: center;
    background: transparent; border: none; cursor: pointer;
    border-radius: 10px;
    color: var(--dark);
    transition: background .2s;
}
.hdr__burger:hover { background: var(--bg-light); }
.hdr__burger svg { width: 26px; height: 26px; }

/* ── Off-canvas drawer ─────────────────────────────────────── */
.m-drawer {
    position: fixed; top: 0; right: 0;
    width: 88%; max-width: 380px; height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 32px rgba(0,24,61,.18);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 100;
    display: flex; flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    overflow-y: auto;
}
.m-drawer.is-open { transform: translateX(0); }
.m-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.m-drawer__close {
    width: 40px; height: 40px; border-radius: 10px;
    border: 1px solid var(--border); background: var(--white);
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); cursor: pointer;
    transition: background .2s;
}
.m-drawer__close:hover { background: var(--bg-light); }
.m-drawer__close svg { width: 20px; height: 20px; }
.m-drawer__nav { display: flex; flex-direction: column; gap: .1rem; margin-bottom: 1.5rem; }
.m-drawer__nav a {
    color: var(--dark); font-weight: 600; font-size: 1.05rem;
    padding: .9rem 0; border-bottom: 1px solid var(--border);
    text-decoration: none; transition: color .2s;
}
.m-drawer__nav a:last-child { border-bottom: 0; }
.m-drawer__nav a:hover { color: var(--primary); }
.m-drawer__cta { display: flex; flex-direction: column; gap: .6rem; margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--border); }

.m-backdrop {
    position: fixed; inset: 0; background: rgba(0,24,61,.55);
    backdrop-filter: blur(2px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s; z-index: 90;
}
.m-backdrop.is-open { opacity: 1; pointer-events: auto; }
body.no-scroll { overflow: hidden; }
.hdr__tg {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .55rem 1.2rem;
    background: var(--primary); color: #fff;
    border-radius: 10px;
    font-weight: 600; font-size: .9rem; line-height: 1.4;
    text-decoration: none;
    transition: background .3s, transform .15s;
    flex-shrink: 0;
    white-space: nowrap;
    box-sizing: border-box;
}
.hdr__tg:hover { background: var(--primary-h); color: #fff; text-decoration: none; }
.hdr__tg:active { transform: scale(.97); }
.hdr__tg svg { width: 22px; height: 22px; display: block; flex-shrink: 0; }

/* Попап пояснения */
.tip-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,24,61,.55); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
}
.tip-overlay.is-open { opacity: 1; visibility: visible; }
.tip-popup {
    background: var(--white); border-radius: 18px; padding: 2rem 2.2rem;
    max-width: 520px; width: 90%; box-shadow: 0 20px 60px rgba(0,24,61,.25);
    position: relative; transform: translateY(20px); transition: transform .25s;
}
.tip-overlay.is-open .tip-popup { transform: translateY(0); }
.tip-popup__close {
    position: absolute; top: .8rem; right: 1rem;
    background: none; border: none; font-size: 1.5rem; color: var(--muted);
    cursor: pointer; line-height: 1;
}
.tip-popup__close:hover { color: var(--dark); }
.tip-popup__title { font-size: 1.15rem; color: var(--dark); margin-bottom: .8rem; }
.tip-popup__text { font-size: .98rem; color: var(--dark); line-height: 1.65; margin: 0; }

/* ════════════════════════════════════════════════════════════
   HERO — A (Attention)
   ════════════════════════════════════════════════════════════ */
.hero {
    position: relative; overflow: hidden;
    background: #E8EEF6;
    padding: 5rem 0 7rem;
}
/* Декоративные пятна на фоне (вместо SVG-паттерна с текущего) */
.hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(38,101,254,.18), transparent 70%);
    pointer-events: none;
}
.hero::before { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero::after  { width: 480px; height: 480px; bottom: -200px; left: -100px; background: radial-gradient(closest-side, rgba(38,101,254,.10), transparent 70%); }

.hero__grid {
    display: grid; grid-template-columns: 1.05fr .95fr;
    gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero__tag {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--bg-tag); color: var(--primary);
    padding: .55rem 1.1rem; border-radius: 999px;
    font-size: .88rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero__tag::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(38,101,254,.2);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(38,101,254,.2); }
    50%      { box-shadow: 0 0 0 7px rgba(38,101,254,0); }
}
.hero__sub { color: var(--muted); font-size: 1.15rem; line-height: 1.6; margin-bottom: 1.8rem; max-width: 560px; }

.hero__price-box {
    display: inline-flex; align-items: stretch; gap: 0;
    background: var(--white); border-radius: 14px; padding: 0;
    box-shadow: var(--shadow-sm); margin-bottom: 1.4rem;
    overflow: hidden;
}
.hero__price-num {
    background: var(--primary); color: var(--white);
    font-family: 'Unbounded', sans-serif; font-weight: 700;
    font-size: 2.2rem; padding: 1rem 1.4rem; line-height: 1;
    display: flex; align-items: center;
}
.hero__price-lbl { padding: 1rem 1.4rem; display: flex; flex-direction: column; justify-content: center; }

/* Таблица цен (2 строки) */
.hero__price-table {
    display: inline-flex; flex-direction: column;
    background: var(--white); border-radius: 14px;
    box-shadow: var(--shadow-sm); margin-bottom: 1.4rem; overflow: hidden;
}
.hero__price-row { display: flex; align-items: stretch; }
.hero__price-row + .hero__price-row { border-top: 1px solid var(--border); }
.hero__price-table .hero__price-num {
    width: 150px; justify-content: center; white-space: nowrap; font-size: 1.9rem;
}
.hero__price-row + .hero__price-row .hero__price-num { background: var(--primary-h); }
@media (max-width: 640px) {
    .hero__price-table .hero__price-num { width: 112px; font-size: 1.45rem; padding: .85rem .6rem; }
    .hero__price-lbl { padding: .85rem 1rem; }
}
.hero__price-lbl strong { font-weight: 600; color: var(--dark); font-size: 1.05rem; }
.hero__price-lbl small { color: var(--muted); font-size: .85rem; }

.hero__bonus-icon { flex-shrink: 0; }
.hero__bonus {
    display: inline-flex; align-items: center; gap: .55rem;
    background: rgba(26,174,97,.08); color: #128152;
    padding: .55rem 1.1rem; border-radius: 999px;
    font-size: .92rem; font-weight: 600; margin-bottom: 2rem; margin-left: .75rem;
}
.hero__buttons { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero__stats { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid rgba(0,24,61,.1); }
.stat__num { font-family: 'Unbounded', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat__lbl { font-size: .82rem; color: var(--muted); margin-top: .35rem; }

/* Визуал справа — карточка с динамикой позиций */
.hero__visual { position: relative; }
.mock {
    background: var(--white); border-radius: 24px; padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative; z-index: 1;
}
.mock__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; padding-bottom: .85rem; border-bottom: 1px solid var(--border); }
.mock__head-title { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: .95rem; color: var(--dark); }
.mock__head-dot { display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; color: var(--muted); }
.mock__head-dot::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.mock__row {
    display: flex; align-items: center; justify-content: space-between; gap: .75rem;
    padding: .65rem 0; font-size: .88rem; border-bottom: 1px solid #f3f4f6;
    transition: transform .3s, background .3s;
}
.mock__row:last-child { border: 0; }
.mock__row:hover { transform: translateX(3px); }
.mock__phrase-wrap { flex: 1; min-width: 0; }
.mock__phrase { color: var(--dark); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.mock__time { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.mock__pos-wrap { flex-shrink: 0; white-space: nowrap; }
.mock__pos { display: inline-flex; align-items: center; gap: .25rem; padding: 3px 9px; border-radius: 6px; font-size: .78rem; font-weight: 700; }
.mock__pos--top  { background: rgba(26,174,97,.12); color: #128152; }
.mock__pos--mid  { background: rgba(245,158,11,.12); color: #b45309; }
.mock__pos--down { background: rgba(221,45,98,.10); color: var(--red); }
.mock__arrow { color: var(--green); margin-left: .35rem; font-weight: 700; }

.mock__phrase-line { display: flex; align-items: baseline; gap: .6rem; min-width: 0; }
.mock__freq { font-size: .72rem; color: #67779C; white-space: nowrap; flex-shrink: 0; }
.mock__cost-wrap { flex-shrink: 0; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: .25rem; }
.mock__clicks { font-size: .72rem; color: #67779C; white-space: nowrap; }
.mock__cost {
    flex-shrink: 0; white-space: nowrap;
    font-family: 'Unbounded', sans-serif; font-weight: 700;
    color: var(--primary); font-size: .92rem;
    background: rgba(38,101,254,.10);
    padding: 4px 10px; border-radius: 8px;
}

/* Волнистый низ hero — как на текущем сайте */
.hero::after { display: none; } /* убираем второе пятно — заменяем волной */
.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0; width: 100%; height: 80px;
    pointer-events: none;
}


/* ════════════════════════════════════════════════════════════
   SECTION GENERIC
   ════════════════════════════════════════════════════════════ */
.section { padding: 6rem 0; position: relative; }
.section--light { background: #E8EEF6; }
.section--dark  { background: var(--dark); color: var(--white); position: relative; overflow: hidden; }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--white); }
.tip-popup h3, .tip-popup p { color: var(--dark); }
.section--dark .section__sub { color: rgba(255,255,255,.7); }

.section__head { text-align: center; margin-bottom: 3.5rem; max-width: 760px; margin-left: auto; margin-right: auto; }
.section__sub { color: var(--muted); font-size: 1.1rem; line-height: 1.6; margin-top: .8rem; }
.section__tag {
    display: inline-block; background: var(--bg-tag); color: var(--primary);
    padding: .4rem 1rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
    margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: .05em;
}
.section--dark .section__tag { background: rgba(255,255,255,.1); color: var(--bg-tag); }

/* ════════════════════════════════════════════════════════════
   I — HOW IT WORKS (Interest)
   ════════════════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step {
    position: relative;
    padding: 2rem 1.5rem 1.5rem;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
    position: absolute; top: -18px; left: 1.5rem;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(38,101,254,.32);
}
.step h3 { margin: .8rem 0 .6rem; }
.step p { color: var(--muted); font-size: .94rem; line-height: 1.55; }

/* ════════════════════════════════════════════════════════════
   I — ВАЖНОЕ УСЛОВИЕ (ТОП-50 для запуска)
   ════════════════════════════════════════════════════════════ */
.matter {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 3rem;
    align-items: center;
}
.matter__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--dark);
    display: flex; flex-direction: column; align-items: flex-start; gap: .4rem;
}
.matter__title span.rect-yellow {
    position: relative; display: inline-block; padding: 0 .35em;
    color: var(--dark); z-index: 0;
}
.matter__title span.rect-yellow::before {
    content: ''; position: absolute; inset: -.05em -.05em -.1em -.05em;
    background: #FACC15; border-radius: 8px;
    z-index: -1; transform: rotate(-2deg);
}
.matter__card {
    background: var(--dark); color: var(--white);
    border-radius: 24px; padding: 2.5rem 3rem;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-md);
}
.matter__card::after {
    content: 'Я'; position: absolute; right: -10px; bottom: -28px;
    width: 86px; height: 86px; border-radius: 50%;
    background: #b0b0b0; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 2.4rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.matter__card-text {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500; font-size: 1.5rem; line-height: 1.35;
    color: var(--white); padding-right: 100px;
}
.matter__note { margin-top: 1.5rem; color: var(--muted); font-size: .98rem; line-height: 1.55; }
.matter__cta { margin-top: 1.6rem; display: flex; gap: .7rem; flex-wrap: wrap; }

@media (max-width: 1024px) {
    .matter { grid-template-columns: 1fr; gap: 1.8rem; }
    .matter__title { font-size: 1.9rem; }
    .matter__card { padding: 2rem 2rem; }
    .matter__card-text { font-size: 1.2rem; padding-right: 80px; }
    .matter__card::after { width: 70px; height: 70px; font-size: 2rem; right: -8px; bottom: -22px; }
}
@media (max-width: 640px) {
    .matter__title { font-size: 1.5rem; }
    .matter__card { padding: 1.5rem; }
    .matter__card-text { font-size: 1.05rem; padding-right: 60px; }
    .matter__card::after { width: 56px; height: 56px; font-size: 1.6rem; right: -6px; bottom: -16px; }
}

/* ════════════════════════════════════════════════════════════
   I — WHY SAFE (Interest, dark section)
   ════════════════════════════════════════════════════════════ */
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.safety {
    padding: 2rem; border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    transition: transform .3s, background .3s, border-color .3s;
}
.safety:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); border-color: rgba(38,101,254,.4); }
.safety__icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1.2rem;
    box-shadow: 0 8px 18px rgba(38,101,254,.35);
}
.safety h3 { color: var(--white); margin-bottom: .55rem; font-size: 1.1rem; }
.safety p { color: rgba(255,255,255,.72); font-size: .94rem; line-height: 1.55; }

/* ════════════════════════════════════════════════════════════
   D — CASES (Desire) — карусель
   ════════════════════════════════════════════════════════════ */
.carousel { position: relative; }
.carousel__track {
    display: flex; gap: 1.2rem;
    overflow-x: auto; scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: .5rem 0 1.5rem;
    scrollbar-width: none;
    cursor: grab; user-select: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.carousel__track.is-dragging * { pointer-events: none; }
.carousel__track > * { scroll-snap-align: start; flex: 0 0 calc((100% - 3.6rem) / 4); min-width: 0; }
.carousel__track > * img { -webkit-user-drag: none; user-drag: none; pointer-events: auto; }
.carousel__btn {
    position: absolute; top: 45%; transform: translateY(-50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--white); border: 0;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.4rem; color: var(--dark);
    z-index: 5; transition: background .3s, color .3s, transform .15s;
}
.carousel__btn:hover { background: var(--primary); color: var(--white); }
.carousel__btn:active { transform: translateY(-50%) scale(.95); }
.carousel__btn--prev { left: -28px; }
.carousel__btn--next { right: -28px; }
.carousel__btn:disabled { opacity: .35; cursor: not-allowed; pointer-events: none; }

@media (max-width: 1024px) {
    .carousel__track > * { flex-basis: calc((100% - 1.2rem) / 2); }
    .carousel__btn--prev { left: 4px; }
    .carousel__btn--next { right: 4px; }
}
@media (max-width: 640px) {
    .carousel__track > * { flex-basis: 86%; }
    .carousel__btn { width: 40px; height: 40px; font-size: 1.1rem; }
}

.case {
    background: var(--white); border-radius: 18px;
    overflow: hidden; transition: transform .3s, box-shadow .3s;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case__media {
    aspect-ratio: 4/3; background: var(--bg-light) center/cover no-repeat;
}
.case__body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.case h3 { font-family: 'Onest', sans-serif; font-weight: 600; font-size: 1rem; line-height: 1.4; color: var(--dark); margin-bottom: .9rem; }
.case__growth { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; margin-bottom: 1.1rem; }
.case__growth-lbl { font-size: .78rem; color: var(--muted); }
.case__growth-val {
    color: var(--green); font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: .25rem;
}
.case__growth-val::after { content: '↑'; font-size: 1.1rem; }
.case__btn {
    margin-top: auto; padding: .65rem 1rem;
    background: var(--bg-blue); color: var(--primary);
    border-radius: 10px; font-size: .88rem; font-weight: 600;
    transition: background .3s, color .3s;
}
.case__btn:hover { background: var(--primary); color: var(--white); }

/* ════════════════════════════════════════════════════════════
   D — REVIEWS (Desire)
   ════════════════════════════════════════════════════════════ */
.review-img {
    background: var(--white); border-radius: 18px; overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: zoom-in; transition: transform .3s, box-shadow .3s;
}
.review-img:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-img img { width: 100%; height: auto; display: block; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,24,61,.88);
    display: none; align-items: center; justify-content: center;
    z-index: 1000; padding: 2rem; cursor: zoom-out;
    backdrop-filter: blur(8px);
}
.lightbox.is-open { display: flex; }
.lightbox__inner { max-width: 1100px; width: 100%; text-align: center; cursor: default; }
.lightbox__title { color: var(--white); font-family: 'Unbounded', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.2rem; }
.lightbox img { max-width: 100%; max-height: 80vh; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.6); margin: 0 auto; }
.lightbox__close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.15); color: var(--white);
    font-size: 1.6rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background .3s;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }

/* ════════════════════════════════════════════════════════════
   D — PRICING + CALC (Desire)
   ════════════════════════════════════════════════════════════ */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 920px; margin: 0 auto; }
.price-card {
    background: var(--white); border-radius: 24px; padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    position: relative; transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--main {
    background: var(--dark); color: var(--white);
    box-shadow: 0 20px 50px rgba(0,24,61,.25);
    overflow: hidden;
}
.price-card--main::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(38,101,254,.4), transparent 70%);
    pointer-events: none;
}
.price-card__label { font-family: 'Onest', sans-serif; font-size: .85rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.price-card--main .price-card__label { color: rgba(255,255,255,.65); }
.price-card__num {
    font-family: 'Unbounded', sans-serif; font-weight: 700;
    font-size: 4.5rem; line-height: 1; color: var(--primary);
}
.price-card--main .price-card__num { color: var(--white); }
.price-card__custom {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.7rem; font-weight: 700; line-height: 1;
    color: var(--dark);
    white-space: nowrap;
}
.price-card__suff { font-size: 1.1rem; color: var(--muted); margin-top: .5rem; margin-bottom: 1.8rem; }
.price-card--main .price-card__suff { color: rgba(255,255,255,.7); }
.price-card__list { list-style: none; margin: 1.5rem 0 2rem; }
.price-card__list li { padding: .5rem 0; padding-left: 2rem; position: relative; font-size: .98rem; color: var(--dark); }
.price-card--main .price-card__list li { color: rgba(255,255,255,.92); }
.price-card__list li::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(38,101,254,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='%232665FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
}
.price-card--main .price-card__list li::before {
    background: rgba(255,255,255,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
}

/* Калькулятор */
.calc {
    max-width: 820px; margin: 0 auto;
    background: var(--white); border-radius: 24px; padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.calc__row { margin-bottom: 1.6rem; }
.calc__row label { display: block; font-weight: 600; font-size: 1rem; margin-bottom: .8rem; color: var(--dark); }
.calc__row .vline { display: flex; align-items: center; gap: 1.2rem; }
.calc__row input[type=range] {
    flex: 1; accent-color: var(--primary);
    height: 6px;
}
.calc__value {
    font-family: 'Unbounded', sans-serif; font-weight: 700;
    color: var(--primary); width: 170px; font-size: 1.1rem;
    display: inline-flex; align-items: center; gap: .55rem; justify-content: flex-start;
    flex-shrink: 0;
}
.calc__input {
    font-family: 'Unbounded', sans-serif; font-weight: 700;
    color: var(--primary); font-size: 1.1rem;
    width: 100px; height: 44px; padding: 0 .8rem; text-align: left;
    border: 1.5px solid var(--border); border-radius: 8px;
    background: var(--bg-light);
    outline: none; transition: border-color .2s, background .2s;
    -moz-appearance: textfield;
    box-sizing: border-box;
}
.calc__input::-webkit-outer-spin-button,
.calc__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc__input:focus { border-color: var(--primary); background: var(--white); }
.calc__value-unit { color: var(--muted); font-weight: 500; font-size: .92rem; }
.calc__result {
    margin-top: 2rem; padding: 1.8rem;
    background: var(--dark); color: var(--white);
    border-radius: 18px; position: relative; overflow: hidden;
}
.calc__result::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 250px; height: 250px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(38,101,254,.4), transparent 70%);
    pointer-events: none;
}
.calc__result-row { display: flex; justify-content: space-between; align-items: center; padding: .45rem 0; font-size: 1rem; color: rgba(255,255,255,.85); position: relative; }
.calc__result-row strong { color: var(--white); font-weight: 600; font-size: 1.05rem; }
.calc__result-row--total {
    padding-top: .9rem; margin-top: .7rem;
    border-top: 1px solid rgba(255,255,255,.2);
    font-family: 'Unbounded', sans-serif;
    font-size: 1.15rem; color: var(--white);
}
.calc__result-row--total strong { font-size: 1.5rem; color: var(--white); }

/* ════════════════════════════════════════════════════════════
   A — FAQ (Action support)
   ════════════════════════════════════════════════════════════ */
.faq { max-width: 880px; margin: 0 auto; }
.faq__search-wrap { margin-bottom: 1.2rem; }
.faq__search {
    width: 100%; box-sizing: border-box;
    padding: .85rem 1.2rem .85rem 2.8rem;
    border: 1.5px solid var(--border); border-radius: 12px;
    font-size: 1rem; color: var(--dark); background: var(--white);
    outline: none; transition: border-color .2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2367779C' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: .9rem center;
}
.faq__search:focus { border-color: var(--primary); }
.faq__search::placeholder { color: var(--muted); }
.faq__scroll {
    max-height: 640px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 1rem;
    /* кастомный скроллбар */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-light);
    /* плавная "тень" сверху/снизу — намёк, что есть прокрутка */
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}
.faq__scroll::-webkit-scrollbar { width: 8px; }
.faq__scroll::-webkit-scrollbar-track { background: var(--bg-light); border-radius: 8px; }
.faq__scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 8px; }
.faq__scroll::-webkit-scrollbar-thumb:hover { background: var(--primary-h); }
@media (max-width: 640px) {
    .faq__scroll { max-height: 520px; padding-right: .6rem; }
}
.faq__item {
    background: var(--white); border-radius: 14px;
    box-shadow: var(--shadow-sm);
    margin-bottom: .8rem; overflow: hidden;
    transition: box-shadow .3s;
}
.faq__item[open] { box-shadow: var(--shadow-md); }
.faq__q {
    padding: 1.4rem 1.6rem; font-weight: 600; cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
    color: var(--dark); font-size: 1.05rem; gap: 1rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
    content: ''; flex-shrink: 0;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--bg-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M7 1V13M1 7H13' stroke='%232665FE' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center no-repeat;
    transition: transform .3s, background .3s;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.6rem 1.4rem; color: var(--muted); font-size: .98rem; line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   A — FINAL CTA (Action)
   ════════════════════════════════════════════════════════════ */
.cta-final {
    position: relative; overflow: hidden;
    background: var(--primary); color: var(--white);
    padding: 5.5rem 1.25rem; text-align: center;
}
.cta-final::before, .cta-final::after {
    content: ''; position: absolute; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent 70%);
    pointer-events: none;
}
.cta-final::before { width: 500px; height: 500px; top: -200px; right: -150px; }
.cta-final::after  { width: 400px; height: 400px; bottom: -200px; left: -100px; }
.cta-final__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-final h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 1rem; }
.cta-final p { color: rgba(255,255,255,.9); font-size: 1.2rem; margin-bottom: 2.2rem; line-height: 1.55; }
.cta-final .btn { background: var(--white); color: var(--primary); }
.cta-final .btn:hover { background: var(--bg-tag-2); color: var(--primary-h); }
.cta-final small { display: block; margin-top: 1.2rem; color: rgba(255,255,255,.75); font-size: .9rem; }
.cta-final__guarantee {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.18);
    font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.9);
    letter-spacing: .01em;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 4rem 0 2rem; }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.foot__brand { display: block; margin-bottom: 1.2rem; color: var(--white); }
.foot__brand svg { height: 28px; width: auto; }
.foot p { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.6; }
.foot__title { font-family: 'Unbounded', sans-serif; font-size: .82rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.2rem; }
.foot__col a { display: block; color: rgba(255,255,255,.65); padding: .3rem 0; font-size: .94rem; transition: color .3s; }
.foot__col a:hover { color: var(--white); text-decoration: none; }
.foot__col a.foot__tg {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .55rem 1.2rem;
    background: var(--primary); color: #fff;
    border-radius: 10px;
    font-weight: 600; font-size: .9rem; line-height: 1.4;
    margin-top: .4rem;
    transition: background .3s, transform .15s;
    white-space: nowrap;
    box-sizing: border-box;
}
.foot__col a.foot__tg:hover { background: var(--primary-h); color: #fff; text-decoration: none; }
.foot__col a.foot__tg:active { transform: scale(.97); }
.foot__col a.foot__tg svg { width: 22px; height: 22px; flex-shrink: 0; display: block; }
.foot__bot { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; font-size: .85rem; flex-wrap: wrap; gap: 1rem; }

/* ════════════════════════════════════════════════════════════
   AOS-style scroll animations (как на текущем сайте)
   ════════════════════════════════════════════════════════════ */
[data-aos] {
    opacity: 0;
    transition: opacity .8s ease, transform .8s ease;
}
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"]    { transform: scale(.92); }
[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}
[data-aos-delay="100"]  { transition-delay: .1s; }
[data-aos-delay="200"]  { transition-delay: .2s; }
[data-aos-delay="300"]  { transition-delay: .3s; }
[data-aos-delay="400"]  { transition-delay: .4s; }
[data-aos-delay="500"]  { transition-delay: .5s; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    h1.h-hero { font-size: 2.3rem; }
    h2.h-section { font-size: 1.9rem; }
    .hero { padding: 3rem 0 5rem; }
    .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__visual { display: block; margin-top: 1rem; }
    .section { padding: 4rem 0; }
    .steps        { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .safety-grid  { grid-template-columns: repeat(2, 1fr); }
    .pricing      { grid-template-columns: 1fr; }
    .foot         { grid-template-columns: 1.4fr 1fr 1fr; gap: 1.8rem; }
    /* Header: на планшете уже мобильный режим — бутерброд */
    .hdr__nav { display: none; }
    .hdr__cta .btn { display: none; }
    .hdr__burger { display: inline-flex; }
    .hdr__inner { height: 68px; }
}
@media (max-width: 640px) {
    .container { padding: 0 1rem; }
    h1.h-hero { font-size: 1.7rem; }
    h2.h-section { font-size: 1.45rem; }
    .hero__sub { font-size: 1rem; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { width: 100%; }
    .hero__stats { gap: 1.5rem; }
    .stat__num { font-size: 1.4rem; }
    .hero__price-num { font-size: 1.6rem; padding: .85rem 1.1rem; }
    .hero__bonus-icon { flex-shrink: 0; }
.hero__bonus { margin-left: 0; }
    .section { padding: 3rem 0; }
    .section__head { margin-bottom: 2.5rem; }
    .steps, .safety-grid, .pricing { grid-template-columns: 1fr; }
    .foot { grid-template-columns: 1fr; gap: 1.8rem; }
    .hdr__tg { padding: .45rem .85rem; font-size: .82rem; gap: .35rem; }
    .hdr__tg svg { width: 18px; height: 18px; }
    .hdr__inner { height: 60px; }
    .price-card { padding: 1.8rem 1.25rem; }
    .price-card__num { font-size: 2.6rem; }
    .price-card__custom { font-size: 1.7rem; }
    .price-card__suff { font-size: .95rem; }
    .price-card__list li { font-size: .92rem; padding-left: 1.8rem; }
    .calc { padding: 1.5rem 1rem; }
    .cta-final { padding: 4rem 1.25rem; }
    .cta-final h2 { font-size: 1.6rem; }
    .cta-final p { font-size: 1rem; }

    /* ── Кнопки: разрешаем перенос текста и уменьшаем padding ── */
    .btn { white-space: normal; line-height: 1.3; padding: .75rem 1rem; font-size: .92rem; }
    .btn--lg { padding: .95rem 1.2rem; font-size: 1rem; }
    .btn--sm { padding: .5rem .9rem; font-size: .85rem; }
    /* Кнопки внутри карточек и калькулятора — на всю ширину */
    .price-card .btn,
    .calc .btn--lg,
    .cta-final .btn { width: 100%; max-width: 100%; box-sizing: border-box; }
    /* Матёр-блок: кнопки стопятся в колонку и тянутся на ширину */
    .matter__cta { flex-direction: column; align-items: stretch; }
    .matter__cta .btn { width: 100%; box-sizing: border-box; }
    /* Калькулятор: убираем фиксированную ширину поля */
    .calc__value { width: auto; min-width: 0; gap: .35rem; }
    .calc__input { width: 80px; }
}

/* ════════════════════════════════════════════════════════════
   LEGAL pages — типографика для оферты/политики/рекуррент.
   ════════════════════════════════════════════════════════════ */
.legal { padding: 100px 0 80px; max-width: 100%; }
.legal .container { max-width: 920px; }
.legal h1 {
    font-family: 'Unbounded', sans-serif; font-weight: 700;
    font-size: 1.8rem; line-height: 1.3; color: var(--dark);
    margin-bottom: 1.5rem; text-transform: uppercase;
}
.legal h2 {
    font-family: 'Unbounded', sans-serif; font-weight: 700;
    font-size: 1.25rem; line-height: 1.4; color: var(--dark);
    margin: 2rem 0 .8rem;
}
.legal p, .legal li {
    font-size: 1rem; line-height: 1.65; color: #243044;
    margin-bottom: .75rem;
}
.legal ul, .legal ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal li { margin-bottom: .3rem; }
.legal a { color: var(--primary); text-decoration: underline; }
.legal a:hover { color: var(--primary-h); }
.legal strong { color: var(--dark); font-weight: 600; }
.legal em { color: var(--muted); font-style: italic; font-size: .92rem; }

@media (max-width: 640px) {
    .legal { padding: 60px 0 40px; }
    .legal h1 { font-size: 1.3rem; }
    .legal h2 { font-size: 1.1rem; }
    .legal p, .legal li { font-size: .94rem; }
}

/* ════════════════════════════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════════════════════════════ */
.cookie {
    position: fixed; bottom: 20px; left: 20px; right: 20px;
    max-width: 720px; margin-left: auto; margin-right: auto;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,24,61,.15);
    padding: 1rem 1.2rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    z-index: 80; font-size: .92rem; color: var(--dark);
    border: 1px solid var(--border);
}
.cookie a { color: var(--primary); text-decoration: underline; }
.cookie .btn { flex-shrink: 0; }
@media (max-width: 640px) {
    .cookie { flex-direction: column; align-items: stretch; text-align: center; padding: .9rem; }
    .cookie .btn { width: 100%; }
}

[x-cloak] { display: none !important; }

/* Регион в live-фиде */
.mock__region { color: var(--primary); font-weight: 600; }
.mock__note { font-size: .76rem; line-height: 1.4; color: var(--muted); margin: -.4rem 0 .9rem; }

/* ════════════════════════════════════════════════════════════
   Пошаговый блок «Как это работает» (howx)
   ════════════════════════════════════════════════════════════ */
.howx { max-width: 940px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.4rem; }
.howx__step {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 2rem; align-items: center;
    background: var(--white); border: 1px solid var(--border); border-radius: 20px;
    padding: 1.8rem 2rem; box-shadow: var(--shadow-sm);
}
.howx__num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-blue); color: var(--primary);
    font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.1rem;
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.howx__info h3 { font-size: 1.25rem; color: var(--dark); margin-bottom: .6rem; line-height: 1.3; }
.howx__info p { color: var(--muted); font-size: .98rem; line-height: 1.6; }

.howx__panel { background: var(--bg-light); border-radius: 14px; padding: 1.1rem 1.2rem; }
.howx__panel--form { display: flex; flex-direction: column; gap: .9rem; }
.howx__field { display: flex; justify-content: space-between; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: .7rem 1rem; }
.howx__field-lbl { color: var(--muted); font-size: .9rem; }
.howx__field-val { color: var(--dark); font-weight: 600; }
.howx__fakebtn { background: var(--primary); color: #fff; text-align: center; font-weight: 600; border-radius: 10px; padding: .7rem 1rem; font-size: .95rem; }
.howx__panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .7rem; font-weight: 600; font-size: .9rem; color: var(--dark); }
.howx__live { display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; color: var(--muted); font-weight: 500; }
.howx__live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

.howx__table { display: flex; flex-direction: column; gap: .4rem; }
.howx__tr { display: grid; grid-template-columns: 1.6fr .8fr .8fr; gap: .5rem; align-items: center; background: var(--white); border-radius: 8px; padding: .55rem .8rem; font-size: .9rem; color: var(--dark); }
.howx__table:not(.howx__table--days) .howx__tr { grid-template-columns: 1.6fr auto; }
.howx__table--days .howx__tr { grid-template-columns: 1.6fr .7fr .7fr .7fr; text-align: center; }
.howx__table--days .howx__tr > span:first-child { text-align: left; }
.howx__tr--head { background: transparent; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .03em; font-weight: 600; padding-top: 0; padding-bottom: 0; }
.howx__clicks { color: var(--green); font-weight: 600; text-align: right; }
.pos { display: inline-flex; align-items: center; justify-content: center; min-width: 30px; padding: .15rem .45rem; border-radius: 6px; font-weight: 700; font-size: .85rem; }
.pos--top { background: rgba(26,174,97,.14); color: var(--green); }
.pos--mid { background: rgba(234,179,8,.16); color: #B45309; }
.pos--low { background: rgba(103,119,156,.14); color: var(--muted); }
.howx__note { margin-top: .8rem; text-align: right; font-size: .85rem; font-weight: 600; color: var(--green); }
.howx__cta { text-align: center; margin-top: 2.2rem; }

/* ════════════════════════════════════════════════════════════
   «Как это работает» — howitworks (SEO vs ПФ + техника)
   ════════════════════════════════════════════════════════════ */

/* 1. SEO vs ПФ — сравнение бок-о-бок */
/* Формула: SEO + ПФ = Рост */
.hiw__formula {
    display: flex; align-items: center; justify-content: center;
    gap: 1.2rem; max-width: 980px; margin: 0 auto 2rem; flex-wrap: wrap;
}
.hiw__formula-card {
    flex: 1; min-width: 200px; max-width: 260px;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 20px; padding: 2rem 1.6rem 1.8rem;
    text-align: center; box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
}
.hiw__formula-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hiw__formula-card--accent {
    border-color: rgba(38,101,254,.3); background: var(--bg-blue);
}
.hiw__formula-card--result {
    border-color: rgba(26,174,97,.3); background: rgba(26,174,97,.04);
}
.hiw__formula-icon { margin-bottom: 1rem; }
.hiw__formula-icon img { display: block; margin: 0 auto; }
.hiw__formula-label {
    font-family: 'Unbounded', sans-serif; font-weight: 700;
    font-size: 1rem; color: var(--dark); margin-bottom: .6rem; line-height: 1.3;
}
.hiw__formula-desc { font-size: .9rem; color: var(--muted); line-height: 1.55; margin: 0; }
.hiw__formula-op {
    font-family: 'Unbounded', sans-serif; font-weight: 700;
    font-size: 2.2rem; color: var(--muted); flex-shrink: 0; line-height: 1;
}
.hiw__formula-op--eq { color: var(--green); }

/* Иконки в цветных кругах */
.hiw__icon-wrap {
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; flex-shrink: 0;
}
.hiw__icon-wrap--gray  { background: #EEF0F4; color: #67779C; }
.hiw__icon-wrap--blue  { background: var(--bg-blue); color: var(--primary); }
.hiw__icon-wrap--green { background: rgba(26,174,97,.12); color: var(--green); }


/* 2. Примечание — ускоритель */
.hiw__note {
    max-width: 780px; margin: 0 auto 2.5rem;
    background: rgba(38,101,254,.06); border: 1px solid rgba(38,101,254,.15);
    border-radius: 14px; padding: 1.2rem 1.8rem; text-align: center;
}
.hiw__note p { font-size: .98rem; color: var(--dark); line-height: 1.6; margin: 0; }

/* 3. Техника — 3 шага в ряд */
.hiw__tech { max-width: 900px; margin: 0 auto 2.5rem; }
.hiw__tech-title { text-align: center; font-size: 1.3rem; color: var(--dark); margin-bottom: 1.6rem; }
.hiw__tech-steps { display: flex; align-items: flex-start; gap: 0; }
.hiw__tech-step {
    flex: 1; text-align: center; padding: 1.5rem 1.2rem;
    background: var(--white); border: 1px solid var(--border); border-radius: 16px;
    box-shadow: var(--shadow-sm); position: relative;
}
.hiw__tech-num {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff;
    font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: .78rem;
    display: flex; align-items: center; justify-content: center;
}
.hiw__tech-icon { font-size: 2rem; margin-bottom: .6rem; margin-top: .4rem; }
.hiw__tech-step h4 { font-size: 1rem; color: var(--dark); margin-bottom: .5rem; line-height: 1.3; }
.hiw__tech-step p { font-size: .88rem; color: var(--muted); line-height: 1.5; margin: 0; }
.hiw__tech-arrow {
    flex-shrink: 0; display: flex; align-items: center; padding: 0 .6rem;
    font-size: 1.4rem; color: var(--primary); font-weight: 700; margin-top: 3rem;
}

/* 4. Почему это работает */
.hiw__why {
    display: flex; align-items: flex-start; gap: 1.2rem;
    max-width: 900px; margin: 0 auto;
    background: var(--white); border: 1px solid var(--border); border-radius: 16px;
    padding: 1.8rem 2rem; box-shadow: var(--shadow-sm);
}
.hiw__why-icon { font-size: 2.5rem; flex-shrink: 0; }
.hiw__why-text h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: .5rem; }
.hiw__why-text p { font-size: .98rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 768px) {
    .hiw__formula { flex-direction: column; gap: 1rem; }
    .hiw__formula-card { max-width: 100%; width: 100%; }
    .hiw__formula-op { font-size: 1.6rem; }
    .hiw__tech-steps { flex-direction: column; gap: 1.2rem; }
    .hiw__tech-arrow { transform: rotate(90deg); padding: .3rem 0; margin: 0 auto; }
    .hiw__why { flex-direction: column; text-align: center; }
    .hiw__why-icon { margin: 0 auto; }
}

/* «Блокнот» с фразами и регионами (шаг 2) */
.howx__notepad { background: #0F172A; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.howx__notepad-head {
    background: rgba(255,255,255,.06); color: rgba(255,255,255,.55);
    font-family: 'Onest', sans-serif; font-size: .72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em;
    padding: .6rem 1rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.howx__notepad-body { padding: .7rem 0; }
.howx__notepad-row {
    position: relative; padding: .35rem 1rem .35rem 2.6rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .88rem; color: #E2E8F0; line-height: 1.5; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
}
.howx__notepad-row::before {
    content: counter(npline);
    counter-increment: npline;
    position: absolute; left: 0; top: .35rem;
    width: 2.1rem; text-align: right;
    color: rgba(255,255,255,.32); font-size: .78rem;
    border-right: 1px solid rgba(255,255,255,.08); padding-right: .4rem;
}
.howx__notepad-body { counter-reset: npline; }

@media (max-width: 768px) {
    .howx__step { grid-template-columns: 1fr; gap: 1.3rem; padding: 1.4rem 1.25rem; }
    .howx__num { margin-bottom: .6rem; }
}

/* ════════════════════════════════════════════════════════════
   HERO trust-строка (20 лет опыта / 9 из 10)
   ════════════════════════════════════════════════════════════ */
.hero__price-note { margin-top: .6rem; font-size: .92rem; font-weight: 500; color: var(--muted); }
/* Цена + чип-пилюля внахлёст */
.hero__price-wrap { position: relative; display: inline-block; margin-bottom: 2.6rem; }
.hero__price-wrap .hero__price-box { margin-bottom: 0; }
.hero__price-chip {
    position: absolute; right: 16px; bottom: -26px;
    background: var(--dark); color: #fff;
    font-size: .82rem; font-weight: 600; white-space: nowrap;
    padding: .4rem .9rem; border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0,24,61,.22);
}
.hero__trust { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.4rem; }
.hero__trust-item { font-size: .95rem; font-weight: 600; color: var(--dark); }

/* Отдельная секция-полоса с цифрами и trust-бейджами (под hero) */
.section--trust { background: var(--bg-blue); padding: 2.4rem 0; }
.trustbar__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem; margin-bottom: 1.6rem; }
.trustbar__stats { justify-content: center; gap: 3rem; border-top: none; padding-top: 0; }
.trustbar__stats > div { text-align: center; }
.trustbar__stats .stat__num { font-size: 2.1rem; }
@media (max-width: 640px) {
    .trustbar__stats { gap: 1.6rem; }
    .trustbar__badges { gap: .6rem 1.2rem; }
}

/* ════════════════════════════════════════════════════════════
   Дропдаун «Связаться с нами» в шапке
   ════════════════════════════════════════════════════════════ */
.hdr__contact { position: relative; }
.hdr__contact .hdr__tg { border: none; cursor: pointer; font: inherit; }
.hdr__contact-caret { transition: transform .2s; margin-left: .1rem; }
.hdr__contact.is-open .hdr__contact-caret { transform: rotate(180deg); }
.hdr__contact-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 250px;
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    box-shadow: var(--shadow-md); padding: .4rem; z-index: 90;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .18s, transform .18s, visibility .18s;
}
.hdr__contact.is-open .hdr__contact-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.hdr__contact-menu a {
    display: flex; align-items: center; gap: .55rem;
    padding: .6rem .8rem; border-radius: 8px;
    color: var(--dark); font-size: .95rem; font-weight: 500; white-space: nowrap;
}
.hdr__contact-menu a:hover { background: var(--bg-light); color: var(--primary); text-decoration: none; }
.hdr__contact-menu a svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); }

/* ════════════════════════════════════════════════════════════
   Графики «до/после» (metrics)
   ════════════════════════════════════════════════════════════ */
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2.5rem; max-width: 980px; margin: 0 auto; }
.metric { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); }
.metric__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; gap: 1rem; }
.metric__name { font-weight: 600; font-size: 1.02rem; color: var(--dark); }
.metric__delta { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--green); white-space: nowrap; }
.metric__row { display: flex; align-items: center; gap: .7rem; margin-bottom: .55rem; }
.metric__cap { width: 52px; flex-shrink: 0; font-size: .8rem; color: var(--muted); font-weight: 600; }
.metric__track { flex: 1; height: 12px; background: var(--bg-light); border-radius: 8px; overflow: hidden; }
.metric__fill { height: 100%; width: 0; border-radius: 8px; transition: width 1.1s cubic-bezier(.22,.61,.36,1); }
.metric__fill--before { background: #C7D2E4; }
.metric__fill--after  { background: linear-gradient(90deg, var(--primary), #4f8bff); }
.metrics.is-in .metric__fill { width: var(--w); }
.metrics__disclaimer { max-width: 980px; margin: 1.4rem auto 0; font-size: .82rem; color: var(--muted); text-align: center; }

/* ════════════════════════════════════════════════════════════
   Сравнительная таблица «как у других / как у нас»
   ════════════════════════════════════════════════════════════ */
.cmp { margin-top: 3rem; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.cmp__row { display: grid; grid-template-columns: 1.1fr 1.4fr 1.6fr; }
.cmp__cell { padding: 1rem 1.2rem; font-size: .95rem; line-height: 1.45; border-bottom: 1px solid rgba(255,255,255,.1); }
.cmp__row:last-child .cmp__cell { border-bottom: none; }
.cmp__cell--feature { font-weight: 600; color: rgba(255,255,255,.92); background: rgba(255,255,255,.04); }
.cmp__cell--them { color: rgba(255,255,255,.62); }
.cmp__cell--us { color: #fff; background: rgba(38,101,254,.16); }
.cmp__cell--us strong { color: #fff; }
.cmp__row--head .cmp__cell { font-family: 'Unbounded', sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.cmp__row--head .cmp__cell--us { background: var(--primary); }

/* Тултипы «Что это такое» в таблице */
.cmp__tip {
    background: none; border: none; padding: 0; margin: 0;
    font: inherit; color: inherit; cursor: pointer; text-align: left;
    display: inline-flex; align-items: center; gap: .4rem;
}
.cmp__tip:hover { text-decoration: underline; }
.cmp__tip-q {
    font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.5);
    text-decoration: underline; text-decoration-style: dotted;
    text-underline-offset: 2px; transition: color .2s; white-space: nowrap;
}
.cmp__tip:hover .cmp__tip-q { color: #fff; }



/* ════════════════════════════════════════════════════════════
   SLA / гарантия (полоса над тарифами)
   ════════════════════════════════════════════════════════════ */
.sla { background: var(--bg-blue); padding: 2.2rem 0; }
.sla__inner { display: flex; align-items: center; gap: 1.6rem; max-width: 860px; margin: 0 auto; flex-wrap: wrap; justify-content: center; text-align: left; }
.sla__num { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 3rem; line-height: 1; color: var(--primary); flex-shrink: 0; }
.sla__text { max-width: 560px; }
.sla__text strong { display: block; font-size: 1.3rem; color: var(--dark); margin-bottom: .25rem; }
.sla__text span { font-size: .98rem; color: var(--muted); line-height: 1.55; }

/* ════════════════════════════════════════════════════════════
   Оффер перехода от конкурента (switch)
   ════════════════════════════════════════════════════════════ */
.switch { background: var(--white); border: 2px solid var(--primary); border-radius: 24px; padding: 2.6rem; text-align: center; max-width: 820px; margin: 0 auto; box-shadow: var(--shadow-md); }
.switch__badge { display: inline-block; background: var(--red); color: #fff; font-weight: 700; font-size: .88rem; padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.2rem; }
.switch__title { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 2rem; line-height: 1.25; color: var(--dark); margin-bottom: 1rem; }
.switch__text { font-size: 1.05rem; color: var(--muted); line-height: 1.6; max-width: 640px; margin: 0 auto 1.8rem; }
.switch__text strong { color: var(--dark); }

/* Примечание про безнал под тарифами */
.pricing__note { text-align: center; margin-top: 1.6rem; font-size: .98rem; color: var(--muted); }

@media (max-width: 1024px) {
    .metrics { grid-template-columns: 1fr; max-width: 640px; }
}
@media (max-width: 640px) {
    .hdr__contact-menu { right: auto; left: 0; }
    .cmp__row { grid-template-columns: 1fr; gap: 0; margin-bottom: .8rem; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
    .cmp__row:last-child { margin-bottom: 0; }
    .cmp__cell { border-bottom: none; padding: .75rem 1rem; font-size: .9rem; }
    .cmp__cell--feature { background: rgba(255,255,255,.07); font-size: .88rem; text-align: center; padding: .65rem 1rem; }
    .cmp__cell--them { position: relative; padding-left: 1rem; padding-top: .55rem; padding-bottom: .55rem; background: rgba(255,80,80,.08); border-left: 3px solid #ff5252; }
    .cmp__cell--them::before { content: 'Другие'; display: flex; align-items: center; gap: .35rem; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #ff5252; margin-bottom: .3rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff5252' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: 14px 14px; background-position: left center; padding-left: 18px; }
    .cmp__cell--us { position: relative; padding-left: 1rem; padding-top: .55rem; padding-bottom: .55rem; background: rgba(38,101,254,.18); border-left: 3px solid var(--primary); }
    .cmp__cell--us::before { content: 'У нас'; display: flex; align-items: center; gap: .35rem; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--primary); margin-bottom: .3rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232665fe' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: 14px 14px; background-position: left center; padding-left: 18px; }
    .cmp__row--head { display: none; }
    .sla__inner { flex-direction: column; text-align: center; gap: .8rem; }
    .sla__num { font-size: 2.4rem; }
    .switch { padding: 1.8rem 1.25rem; }
    .switch__title { font-size: 1.4rem; }
    .switch__text { font-size: .98rem; }
}

/* ── Metrika examples button ───────────────────────────────── */
.metric__examples-btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: .75rem;
    padding: 0;
    background: none;
    border: none;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color .2s, color .2s;
}
.metric__examples-btn:hover { color: var(--primary-dark, #2563eb); text-decoration-color: currentColor; }

/* ── Metrika carousel popup ────────────────────────────────── */
.mcarousel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,14,26,.88);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}
.mcarousel-overlay.is-open { display: flex; }
.mcarousel-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.mcarousel-close:hover { background: rgba(255,255,255,.25); }
.mcarousel-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: min(92vw, 1100px);
    width: 100%;
    padding: 0 1rem;
}
.mcarousel-img-wrap {
    flex: 1;
    min-width: 0;
    text-align: center;
    position: relative;
}
.mcarousel-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: .75rem;
    box-shadow: 0 8px 40px rgba(0,0,0,.5);
    display: block;
    margin: 0 auto;
}
.mcarousel-counter {
    margin-top: .75rem;
    color: rgba(255,255,255,.6);
    font-size: .85rem;
}
.mcarousel-nav {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.mcarousel-nav:hover { background: rgba(255,255,255,.25); }
@media (max-width: 600px) {
    .mcarousel-nav { width: 2.2rem; height: 2.2rem; font-size: 1.3rem; }
}

/* ── Pricing bonus banner ──────────────────────────────────── */
.pricing__bonus {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(26,174,97,.1), rgba(26,174,97,.05));
    border: 1.5px solid rgba(26,174,97,.3);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin: 1.5rem auto 0;
    max-width: 540px;
    font-size: .95rem;
    color: var(--dark);
}
.pricing__bonus-icon { font-size: 1.6rem; flex-shrink: 0; }
.pricing__bonus strong { color: var(--green); }

/* ── Pricing "available for all" block ─────────────────────── */
.pricing__all {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    padding: 2rem 2.5rem;
    max-width: 920px;
    margin: 1.5rem auto 0;
}
.pricing__all-title {
    font-family: 'Onest', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1.25rem;
}
.pricing__all-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem 2.5rem;
}
.pricing__all-list li {
    padding: .45rem 0 .45rem 2rem;
    position: relative;
    font-size: .98rem;
    color: var(--dark);
}
.pricing__all-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(38,101,254,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='%232665FE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
}
@media (max-width: 600px) {
    .pricing__all { padding: 1.5rem 1.25rem; }
    .pricing__all-list { gap: 0; }
}

/* ── Hero h1 sub-line ───────────────────────────────────────── */
.h-hero__sub {
    font-size: .58em;
    font-weight: 500;
    color: var(--muted);
    display: block;
    margin-top: .4em;
}
.cta-final__bonus { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: .6rem; }

/* ── Mock speed selector ───────────────────────────────────── */
.mock__speed {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .35rem;
    padding: .35rem;
    background: rgba(38,101,254,.06);
    border-radius: .85rem;
    margin: .9rem 0 1rem;
}
.mock__speed-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    padding: .65rem .3rem;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: .65rem;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
    color: var(--muted);
}
.mock__speed-btn:hover {
    background: rgba(255,255,255,.6);
    color: var(--dark);
}
.mock__speed-btn.is-active {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(38,101,254,.18);
}
.mock__speed-lbl {
    font-family: 'Onest', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
}
.mock__speed-time {
    font-family: 'Onest', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .01em;
}
@media (max-width: 600px) {
    .mock__speed-btn { padding: .5rem .15rem; }
    .mock__speed-lbl { font-size: .72rem; }
    .mock__speed-time { font-size: .62rem; }
}
.mock__speed-label {
    font-family: "Onest", sans-serif;
    font-size: .72rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 1rem 0 .4rem;
}

/* ── Mock block on mobile ──────────────────────────────────── */
@media (max-width: 640px) {
    .hero__visual { max-width: 100%; overflow: hidden; }
    .mock { padding: 1.25rem .9rem !important; max-width: 100%; box-sizing: border-box; overflow: hidden; }
    .mock__head { flex-wrap: wrap; gap: .35rem; }
    .mock__head-title { font-size: .82rem; }
    .mock__row { gap: .4rem .5rem; flex-wrap: wrap; }
    .mock__phrase-wrap { flex: 1 1 100%; min-width: 0; overflow: hidden; }
    .mock__phrase-line { flex-wrap: wrap; gap: .2rem .5rem; }
    .mock__phrase { font-size: .82rem; max-width: 100%; white-space: normal !important; word-break: break-word; overflow-wrap: break-word; }
    .mock__freq { font-size: .64rem; }
    .mock__time { font-size: .74rem; }
    .mock__cost-wrap { flex: 1 1 100%; max-width: 100%; display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
    .mock__cost { font-size: .85rem; white-space: nowrap; }
    .mock__clicks { font-size: .64rem; line-height: 1.25; white-space: normal; text-align: right; }
    .mock__speed-btn { padding: .5rem .15rem; }
    .mock__speed-time { font-size: .7rem; white-space: nowrap; }
    .mock__speed-label { font-size: .65rem; }
}

/* ── Howx «Быстрый старт» — мобильная адаптация ─────────────── */
@media (max-width: 640px) {
    .howx { gap: 1rem; }
    .howx__step {
        grid-template-columns: 1fr !important;
        gap: 1.1rem;
        padding: 1.25rem 1rem;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .howx__info, .howx__visual { min-width: 0; max-width: 100%; }
    .howx__info h3 { font-size: 1.1rem; }
    .howx__info p { font-size: .92rem; }
    .howx__panel { padding: .85rem; max-width: 100%; box-sizing: border-box; overflow: hidden; }
    .howx__field { padding: .55rem .75rem; flex-wrap: wrap; gap: .35rem; }
    .howx__field-lbl, .howx__field-val { font-size: .82rem; }
    .howx__tr, .howx__table--days .howx__tr {
        grid-template-columns: 1.4fr .6fr .6fr .6fr !important;
        gap: .3rem !important;
        padding: .45rem .55rem !important;
        font-size: .76rem !important;
    }
    .howx__table:not(.howx__table--days) .howx__tr { grid-template-columns: 1.4fr auto !important; }
    .howx__tr--head { font-size: .65rem !important; }
    .howx__notepad-head { font-size: .8rem; padding: .65rem .85rem !important; }
    .howx__notepad-row { font-size: .82rem; padding: .35rem .85rem !important; }
    .howx__panel-head { font-size: .82rem; flex-wrap: wrap; gap: .35rem; }
    .howx__live { font-size: .68rem; }
    .howx__clicks { font-size: .78rem; }
}

/* ════════════════════════════════════════════════════════════
   TEMPO CARDS (hero — информационные карточки темпов)
   ════════════════════════════════════════════════════════════ */
.tempo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-top: .8rem;
}
.tempo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1rem;
    text-align: center;
    transition: box-shadow .2s;
}
.tempo-card:hover { box-shadow: 0 4px 20px rgba(0,24,61,.08); }
.tempo-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    margin-bottom: .6rem;
}
.tempo-card--fast .tempo-card__icon { background: rgba(255,152,0,.12); color: #ff9800; }
.tempo-card--mid .tempo-card__icon { background: rgba(38,101,254,.10); color: var(--primary); }
.tempo-card--slow .tempo-card__icon { background: rgba(18,129,82,.10); color: var(--green); }

.tempo-card--fast { border-color: rgba(255,152,0,.3); }
.tempo-card--mid { border-color: rgba(38,101,254,.2); }
.tempo-card--slow { border-color: rgba(18,129,82,.2); }

.tempo-card__name {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--dark);
    margin-bottom: .15rem;
}
.tempo-card__days {
    font-size: .88rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: .7rem;
}
.tempo-card__price {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1.2;
}
.tempo-card__per {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: .5rem;
}
.tempo-card__note {
    font-size: .72rem;
    color: var(--muted);
    background: var(--bg-light);
    border-radius: 6px;
    padding: .3rem .6rem;
    display: inline-block;
}

.tempo-cards__footnote {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.45;
    margin-top: .8rem;
    text-align: center;
}

@media (max-width: 640px) {
    .tempo-cards { grid-template-columns: 1fr; gap: .55rem; }
    .tempo-card { padding: .85rem .8rem; display: grid; grid-template-columns: 40px 1fr auto; grid-template-rows: auto auto; gap: 0 .7rem; align-items: center; text-align: left; }
    .tempo-card__icon { grid-row: 1 / 3; margin-bottom: 0; }
    .tempo-card__name { grid-column: 2; font-size: .78rem; }
    .tempo-card__days { grid-column: 2; margin-bottom: 0; font-size: .78rem; }
    .tempo-card__price { grid-column: 3; grid-row: 1; font-size: .95rem; text-align: right; }
    .tempo-card__per { grid-column: 3; grid-row: 2; font-size: .7rem; text-align: right; margin-bottom: 0; }
    .tempo-card__note { grid-column: 1 / -1; margin-top: .45rem; text-align: center; }
    .tempo-cards__footnote { font-size: .68rem; }
}

/* ════════════════════════════════════════════════════════════
   METRICS WHY (аккордеон-аргументация)
   ════════════════════════════════════════════════════════════ */
.metrics__why {
    max-width: 760px;
    margin: 1.5rem auto 0;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.metrics__why-toggle {
    display: block;
    width: 100%;
    padding: .9rem 1.2rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2.5rem;
}
.metrics__why-toggle::-webkit-details-marker { display: none; }
.metrics__why-toggle::after {
    content: '';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--primary);
    transition: transform .2s;
}
.metrics__why[open] .metrics__why-toggle::after { transform: translateY(-50%) rotate(180deg); }
.metrics__why-body {
    padding: 0 1.2rem 1.1rem;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.6;
}
.metrics__why-body p { margin-bottom: .6rem; }
.metrics__why-body ul { padding-left: 1rem; margin-bottom: .6rem; }
.metrics__why-body li { margin-bottom: .4rem; }
.metrics__why-body strong { color: var(--dark); }

/* ════════════════════════════════════════════════════════════
   CMP CELL NOTE (подпись в ячейке сравнения)
   ════════════════════════════════════════════════════════════ */
.cmp__cell-note {
    display: block;
    font-size: .78rem;
    font-weight: 400;
    color: rgba(255,255,255,.6);
    margin-top: .3rem;
    line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   HEADER: кнопка «Личный кабинет»
   ════════════════════════════════════════════════════════════ */
.hdr__lk {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.hdr__lk-icon { flex-shrink: 0; }

/* Авторизованное состояние */
.hdr__lk.is-auth {
    background: var(--bg-light);
    color: var(--dark);
    border: 1px solid var(--border);
}
.hdr__lk.is-auth:hover {
    background: var(--white);
    border-color: var(--primary);
}
.hdr__lk.is-auth .hdr__lk-icon { color: var(--green); }

.drawer__lk.is-auth {
    background: var(--bg-light);
    color: var(--dark);
    border: 1px solid var(--border);
}
.drawer__lk.is-auth:hover {
    background: var(--white);
    border-color: var(--primary);
}
