/* =====================================================================
   WebChoice — основной сайт
   Без фреймворков: ~20 КБ после сжатия, 0 внешних скриптов.
   ===================================================================== */

/* ---------- Запасные шрифты с подогнанной шириной (замерено: Unbounded 600 = 1,305 × Arial Bold,
   Onest 400 = 1,044 × Arial) — строки не перескакивают, когда веб-шрифт догружается ---------- */
@font-face {
    font-family: "Unbounded Fallback";
    src: local("Arial Bold"), local("Arial-BoldMT"), local("Arial");
    font-weight: 500 700;
    size-adjust: 130.5%;
    ascent-override: 76%;
    descent-override: 20%;
    line-gap-override: 0%;
}
@font-face {
    font-family: "Onest Fallback";
    src: local("Arial"), local("ArialMT");
    font-weight: 400;
    size-adjust: 104.4%;
    ascent-override: 97%;
    descent-override: 26%;
    line-gap-override: 0%;
}
@font-face {
    font-family: "Onest Fallback";
    src: local("Arial"), local("ArialMT");
    font-weight: 500;
    size-adjust: 106%;
    ascent-override: 97%;
    descent-override: 26%;
    line-gap-override: 0%;
}
@font-face {
    font-family: "Onest Fallback";
    src: local("Arial Bold"), local("Arial-BoldMT");
    font-weight: 600 700;
    size-adjust: 99.8%;
    ascent-override: 97%;
    descent-override: 26%;
    line-gap-override: 0%;
}
/* Знак ₽ берём из системного шрифта: иначе ради одного символа браузер качает
   latin-ext подмножества Onest и Unbounded (~146 КБ) */
@font-face {
    font-family: "Rub";
    src: local("Arial"), local("ArialMT"), local("Helvetica"), local("Roboto");
    font-weight: 400 500;
    unicode-range: U+20BD;
}
@font-face {
    font-family: "Rub";
    src: local("Arial Bold"), local("Arial-BoldMT"), local("Helvetica Bold"), local("Roboto Bold");
    font-weight: 600 800;
    unicode-range: U+20BD;
}

:root {
    --bg: #07080A;
    --bg-2: #0B0C10;
    --surface: #101217;
    --surface-2: #161920;
    --line: rgba(255, 255, 255, 0.08);
    --line-2: rgba(255, 255, 255, 0.14);
    --text: #F3F4F6;
    --text-2: #A6ABB6;
    --text-3: #808694;
    --accent: #C8FF2E;
    --accent-ink: #0B0C0F;
    --accent-soft: rgba(200, 255, 46, 0.12);
    --violet: #8B6CFF;
    --danger: #FF6B5B;
    --tg: #2AABEE;

    --font: "Rub", "Onest", "Onest Fallback", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-display: "Rub", "Unbounded", "Unbounded Fallback", system-ui, sans-serif;

    --container: 1200px;
    --gutter: clamp(16px, 4vw, 32px);
    --header-h: 72px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text-2);
    font: 400 16px/1.6 var(--font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { color: var(--text); font-weight: 600; line-height: 1.2; }
b, strong { font-weight: 600; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--accent); color: var(--accent-ink); }

.i {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.text-accent { color: var(--accent); }

.skip-link {
    position: fixed;
    top: -80px;
    left: 16px;
    z-index: 1000;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 600;
    transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font: 600 15.5px/1.2 var(--font);
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn .i { font-size: 1.1em; transition: transform 0.3s var(--ease); }
.btn:hover .i { transform: translateX(3px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(200, 255, 46, 0.28); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: rgba(255, 255, 255, 0.03); border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.3); }
.btn--lg { padding: 18px 28px; font-size: 16.5px; }
.btn--sm { padding: 10px 18px; font-size: 14.5px; }
.btn--block { width: 100%; white-space: normal; }

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-2);
    color: var(--text);
    font-size: 20px;
    flex-shrink: 0;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
.icon-btn:hover { color: var(--tg); border-color: var(--tg); background: rgba(42, 171, 238, 0.08); }
.icon-btn--lg { width: 52px; height: 52px; font-size: 22px; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    transition: color 0.3s;
}
.link-arrow .i { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover .i { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-h);
}
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 8, 10, 0.78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    opacity: 0;
    transition: opacity 0.4s;
}
.header.is-scrolled::before { opacity: 1; }

.header__inner { position: relative; height: 100%; display: flex; align-items: center; gap: 32px; }

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); flex-shrink: 0; }
.logo__mark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    transition: transform 0.5s var(--ease);
}
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }
.logo__text { font: 600 17px/1 var(--font-display); letter-spacing: -0.02em; }

.nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; gap: 6px; }
.nav__link {
    display: block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.3s, background-color 0.3s;
}
.nav__link:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav__mobile-cta { display: none; }

.header__actions { position: relative; z-index: 95; display: flex; align-items: center; gap: 10px; margin-left: auto; }

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    background: rgba(7, 8, 10, 0.6);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.burger span { width: 18px; height: 2px; border-radius: 2px; background: var(--text); transition: transform 0.4s var(--ease); }
.burger.is-active span:first-child { transform: translateY(4px) rotate(45deg); }
.burger.is-active span:last-child { transform: translateY(-4px) rotate(-45deg); }

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.menu-overlay.is-visible { opacity: 1; pointer-events: auto; }

@media (max-width: 1023px) {
    .burger { display: flex; }
    .header__cta { display: none; }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 90;
        width: min(360px, 88vw);
        flex-direction: column;
        justify-content: flex-start;
        gap: 24px;
        padding: calc(var(--header-h) + 24px) 24px calc(24px + env(safe-area-inset-bottom));
        background: var(--bg-2);
        border-left: 1px solid var(--line);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.5s var(--ease), visibility 0s 0.5s;
        overflow-y: auto;
    }
    .nav.is-open { transform: none; visibility: visible; transition: transform 0.5s var(--ease); }
    .nav__list { flex-direction: column; gap: 0; }
    .nav__link { padding: 16px 4px; border-radius: 0; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 600; color: var(--text); }
    .nav__link:hover { background: none; color: var(--accent); }
    .nav__mobile-cta { display: grid; gap: 10px; margin-top: auto; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }

.section-head { max-width: 780px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head--left { text-align: left; margin: 0; }
.section-head--split { max-width: none; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px 48px; align-items: end; text-align: left; }
.section-head--split .lead { margin: 0; }

.eyebrow {
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.h2 {
    font: 600 clamp(1.6rem, 1rem + 2vw, 2.5rem)/1.14 var(--font-display);
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.lead { margin-top: 18px; font-size: clamp(16px, 1.1vw + 11px, 18px); line-height: 1.65; color: var(--text-2); text-wrap: pretty; }

.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.tag--bad { background: rgba(255, 107, 91, 0.12); color: #FF8A7D; }
.tag--good { background: var(--accent-soft); color: var(--accent); }

/* Подсветка под курсором */
.spot { position: relative; isolation: isolate; }
.spot::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(480px circle at var(--mx, 50%) var(--my, -30%), rgba(200, 255, 46, 0.075), transparent 42%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
@media (hover: hover) {
    .spot:hover::before { opacity: 1; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: calc(var(--header-h) + clamp(32px, 7vh, 88px)) 0 clamp(40px, 6vw, 72px);
    overflow: clip;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(52% 58% at 78% 32%, rgba(139, 108, 255, 0.2), transparent 70%),
        radial-gradient(38% 42% at 12% 18%, rgba(200, 255, 46, 0.09), transparent 70%);
}
.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 35%, #000 10%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 60% 35%, #000 10%, transparent 75%);
}

.hero__inner { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(40px, 5vw, 64px); align-items: center; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}
.pill b { font-weight: 600; }
.pill > span[aria-hidden] { color: var(--text-3); }
.pill__avail { display: inline-block; }
.pill__photo { width: 28px; height: 28px; margin: -4px 0 -4px -6px; border-radius: 50%; object-fit: cover; }
.pill__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.pill__dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: ping 2.2s var(--ease) infinite;
}
@keyframes ping {
    0% { opacity: 0.8; transform: scale(0.6); }
    80%, 100% { opacity: 0; transform: scale(1.8); }
}

.hero__title {
    margin: 24px 0 22px;
    font: 600 clamp(2.15rem, 0.9rem + 4vw, 3.7rem)/1.04 var(--font-display);
    letter-spacing: -0.04em;
    text-wrap: balance;
}
.hl { position: relative; color: var(--accent); white-space: nowrap; }
.hl::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.04em;
    height: 0.07em;
    border-radius: 99px;
    background: var(--accent);
    transform-origin: left;
    animation: draw 1s 0.5s var(--ease) both;
}
@keyframes draw { from { transform: scaleX(0); } }

.hero__lead { max-width: 36em; font-size: clamp(16px, 0.9vw + 12px, 18.5px); line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-2); }
.hero__trust .i { color: var(--accent); font-size: 16px; }

/* Макет «собирающегося» лендинга */
.hero__visual { position: relative; padding: 28px 0 44px; perspective: 1600px; }
.mock {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0F1116;
    border: 1px solid var(--line-2);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    transform: rotateY(-9deg) rotateX(4deg);
    transform-origin: 60% 50%;
    transition: transform 1s var(--ease);
    animation: mock-in 1.1s var(--ease) both;
}
.hero__visual:hover .mock { transform: rotateY(-3deg) rotateX(1deg); }
@keyframes mock-in { from { opacity: 0; transform: rotateY(-20deg) rotateX(8deg) translateY(30px); } }

.mock__bar { display: flex; align-items: center; gap: 7px; height: 38px; padding: 0 14px; background: #15171D; border-bottom: 1px solid var(--line); }
.mock__bar > i { width: 10px; height: 10px; border-radius: 50%; background: #FF5F57; opacity: 0.85; }
.mock__bar > i:nth-child(2) { background: #FEBC2E; }
.mock__bar > i:nth-child(3) { background: #28C840; }
.mock__url {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    max-width: 240px;
    height: 24px;
    margin-left: 10px;
    padding: 0 10px;
    border-radius: 7px;
    background: #0A0B0E;
    color: var(--text-3);
    font-size: 12px;
}
.mock__url .i { font-size: 11px; color: #28C840; }

/* Шоурил концептов в браузерном окне: три превью сменяют друг друга */
.mock__screen { position: relative; aspect-ratio: 16 / 10.5; overflow: hidden; container-type: inline-size; background: #0D0D12; }
.mock__slide { position: absolute; inset: 0; display: block; opacity: 0; visibility: hidden; animation: reel 13.5s var(--ease) infinite; }
.mock__slide:nth-child(2) { animation-delay: 4.5s; }
.mock__slide:nth-child(3) { animation-delay: 9s; }
.mock__slide .pv { transition: none; }
@keyframes reel {
    0% { opacity: 0; visibility: hidden; transform: scale(1.04); }
    4%, 31% { opacity: 1; visibility: visible; transform: none; }
    36%, 100% { opacity: 0; visibility: hidden; transform: scale(0.99); }
}
.mock__urls { position: relative; display: block; flex: 1; height: 1.3em; overflow: hidden; }
.mock__urls span { position: absolute; inset: 0; white-space: nowrap; opacity: 0; animation: reel-url 13.5s infinite; }
.mock__urls span:nth-child(2) { animation-delay: 4.5s; }
.mock__urls span:nth-child(3) { animation-delay: 9s; }
@keyframes reel-url {
    0% { opacity: 0; transform: translateY(80%); }
    4%, 31% { opacity: 1; transform: none; }
    36%, 100% { opacity: 0; transform: translateY(-80%); }
}
.hero__reel-link {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    margin: 22px auto 0;
    padding: 8px 14px;
    border: 1px solid var(--line-2);
    border-radius: 99px;
    background: rgba(7, 8, 10, 0.6);
    color: var(--text-2);
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.3s, border-color 0.3s;
}
.hero__reel-link .i { color: var(--accent); font-size: 16px; }
.hero__reel-link:hover { color: var(--text); border-color: var(--accent); }

.float {
    position: absolute;
    z-index: 3;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(18, 20, 26, 0.92);
    border: 1px solid var(--line-2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: float-in 0.9s var(--ease) both, bob 7s ease-in-out infinite;
}
@keyframes float-in { from { opacity: 0; transform: translateY(20px) scale(0.95); } }
@keyframes bob { 50% { translate: 0 -8px; } }

.float__label { display: flex; align-items: center; gap: 6px; color: var(--text); font-size: 12.5px; font-weight: 600; }
.float__label .i { color: var(--accent); }
.float__caption { display: block; margin-top: 8px; color: var(--text-3); font-size: 11.5px; }

.float--goals { left: -30px; bottom: 58px; width: 228px; animation-delay: 1.6s, 2.6s; }
.goals { display: grid; gap: 7px; margin-top: 10px; }
.goals li { display: flex; align-items: center; gap: 8px; color: var(--text); font-size: 13px; animation: goal-in 0.5s var(--ease) both; }
.goals li:nth-child(1) { animation-delay: 2s; }
.goals li:nth-child(2) { animation-delay: 2.25s; }
.goals li:nth-child(3) { animation-delay: 2.5s; }
.goals .i { width: 18px; height: 18px; padding: 3px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); stroke-width: 3; }
@keyframes goal-in { from { opacity: 0; transform: translateX(-8px); } }

.float--toast { right: -22px; top: -6px; width: 290px; animation-delay: 2.3s, 3.2s; }
.toast__app { display: flex; align-items: center; gap: 6px; color: var(--text-3); font-size: 12px; font-weight: 500; }
.toast__app .i { color: var(--tg); font-size: 15px; }
.toast__app em { margin-left: auto; padding: 2px 7px; border-radius: 99px; background: rgba(255, 255, 255, 0.08); font-style: normal; font-size: 11px; }
.toast__stack { position: relative; display: block; height: 22px; margin-top: 8px; overflow: hidden; }
.toast__msg {
    position: absolute;
    inset: 0;
    color: var(--text);
    font-size: 13.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    animation: toast 9s infinite;
    animation-delay: 2.6s;
}
.toast__msg:nth-child(2) { animation-delay: 5.6s; }
.toast__msg:nth-child(3) { animation-delay: 8.6s; }
.toast__msg b { color: var(--accent); }
@keyframes toast {
    0% { opacity: 0; transform: translateY(100%); }
    4%, 30% { opacity: 1; transform: none; }
    34%, 100% { opacity: 0; transform: translateY(-100%); }
}

/* ---------- Speed proof & facts ---------- */
.proof { padding: 8px 0 clamp(24px, 4vw, 40px); }
.speed {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px 16px 16px;
    border-radius: 18px;
    border: 1px solid rgba(200, 255, 46, 0.28);
    background: linear-gradient(90deg, rgba(200, 255, 46, 0.08), rgba(200, 255, 46, 0.01) 70%);
}
.speed__pulse {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 20px;
}
.speed__pulse::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: ping 2.4s var(--ease) infinite;
}
.speed__text { flex: 1; color: var(--text); font-size: 15.5px; line-height: 1.5; }
.speed__text b { color: var(--accent); font-weight: 700; }
.speed__link { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; color: var(--text-2); font-size: 14px; font-weight: 500; transition: color 0.3s; }
.speed__link:hover { color: var(--accent); }

.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.facts li { padding: 20px 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.facts b { display: block; color: var(--text); font: 600 clamp(1.5rem, 1rem + 1.6vw, 2.1rem)/1.1 var(--font-display); letter-spacing: -0.03em; }
.facts span { display: block; margin-top: 6px; font-size: 14px; }
.facts b small { font: 500 0.55em var(--font); color: var(--text-2); letter-spacing: 0; }

/* ---------- Leaks ---------- */
.leaks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.leak { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.leak__problem { padding: 28px 28px 24px; }
.leak__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(255, 107, 91, 0.1);
    color: var(--danger);
    font-size: 22px;
}
.leak h3 { margin: 14px 0 8px; font-size: 20px; letter-spacing: -0.01em; }
.leak p { font-size: 15px; }
.leak__fix { margin-top: auto; padding: 20px 28px 26px; border-top: 1px dashed var(--line-2); background: rgba(200, 255, 46, 0.03); }
.leak__fix p { margin-top: 10px; color: var(--text); }

/* ---------- Before / After ---------- */
.ba {
    --pos: 50%;
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid var(--line-2);
    border-radius: 24px;
    background: #fff;
    container-type: inline-size;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
    user-select: none;
    -webkit-user-select: none;
}
.ba:has(.ba__range:focus-visible) { outline: 2px solid var(--accent); outline-offset: 4px; }
.ba__side { position: absolute; inset: 0; }
.ba__side--after { clip-path: inset(0 0 0 var(--pos)); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 3; width: 3px; margin-left: -1.5px; background: var(--accent); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25); pointer-events: none; }
.ba__handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 18px;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.ba__handle .i { stroke-width: 2.4; margin: 0 -3px; }
.ba__label { position: absolute; bottom: 14px; z-index: 4; padding: 6px 12px; border-radius: 99px; background: rgba(7, 8, 10, 0.78); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; pointer-events: none; }
.ba__label--before { left: 14px; }
.ba__label--after { right: 14px; color: var(--accent); }
.ba__range { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0; opacity: 0; pointer-events: none; -webkit-appearance: none; appearance: none; }
.ba__caption { max-width: 640px; margin: 18px auto 0; text-align: center; color: var(--text-2); font-size: 14.5px; }
.ba__caption b { color: var(--text); font-weight: 600; }
.ba__fiction { position: absolute; top: 12px; left: 50%; z-index: 4; transform: translateX(-50%); padding: 5px 12px; border-radius: 99px; background: rgba(7, 8, 10, 0.78); color: #fff; font-size: 12px; font-weight: 500; white-space: nowrap; pointer-events: none; }
.ba { cursor: ew-resize; touch-action: pan-y; }
.ba-switch { display: none; }

.site { --u: 1cqw; position: absolute; inset: 0; isolation: isolate; padding: calc(var(--u) * 3.4) calc(var(--u) * 4.2); overflow: hidden; }
.ba__side { isolation: isolate; }
.site__nav { display: flex; align-items: center; gap: calc(var(--u) * 2); }
.site__cols { display: grid; gap: calc(var(--u) * 4); align-items: start; margin-top: calc(var(--u) * 4.5); }

.site--before { background: #E7E8EA; color: #666; font-family: "Times New Roman", Georgia, serif; }
.site--before .site__nav b { font-size: calc(var(--u) * 2.1); color: #333; }
.site--before .site__nav span { font-size: calc(var(--u) * 1.25); color: #7a7a7a; }
.site--before .site__cols { grid-template-columns: 1fr 1fr; }
.site__welcome { color: #8a8f96; font-size: calc(var(--u) * 2.6); font-style: italic; }
.site--before .site__h { margin-top: calc(var(--u) * 1.4); font-size: calc(var(--u) * 2.5); font-weight: 700; color: #444; line-height: 1.25; }
.site__p { margin-top: calc(var(--u) * 1.4); font-size: calc(var(--u) * 1.4); line-height: 1.5; }
.site--before .site__btn { display: inline-block; margin-top: calc(var(--u) * 2.2); padding: calc(var(--u) * 0.8) calc(var(--u) * 2); background: #B6BBC1; color: #fff; font-size: calc(var(--u) * 1.3); }
.site__stock {
    position: relative;
    height: calc(var(--u) * 34);
    background: linear-gradient(180deg, #B9C3CC 0%, #D6DBE0 55%, #A3ADB6 55.2%, #8E99A3 100%);
}
.site__stock::before { content: ""; position: absolute; top: 18%; right: 20%; width: 18%; aspect-ratio: 1; border-radius: 50%; background: #EDEFF1; }
.site__stock::after { content: "stock"; position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255, 255, 255, 0.55); font: italic 700 calc(var(--u) * 5) Arial, sans-serif; transform: rotate(-18deg); }

.site--after { background: #FAFAF7; color: #111; font-family: var(--font); }
.site--after .site__cols { grid-template-columns: 1fr 1fr; }
.site--after .site__nav b { font-size: calc(var(--u) * 2.1); font-weight: 800; letter-spacing: -0.02em; }
.site__phone { margin-left: auto; font-size: calc(var(--u) * 1.35); font-weight: 600; }
.site__nav-btn { padding: calc(var(--u) * 0.8) calc(var(--u) * 1.6); border-radius: calc(var(--u) * 0.8); background: #111; color: #fff; font-size: calc(var(--u) * 1.25); font-weight: 600; }
.site__photo {
    position: relative;
    height: calc(var(--u) * 38);
    border-radius: calc(var(--u) * 1.8);
    background:
        linear-gradient(180deg, transparent 62%, rgba(60, 40, 20, 0.22)),
        linear-gradient(90deg, transparent 18%, rgba(255, 255, 255, 0.7) 18%, rgba(255, 255, 255, 0.7) 19%, transparent 19%, transparent 44%, rgba(255, 255, 255, 0.7) 44%, rgba(255, 255, 255, 0.7) 45%, transparent 45%),
        radial-gradient(60% 40% at 30% 22%, rgba(255, 255, 255, 0.85), transparent 70%),
        linear-gradient(160deg, #F1E7D8 0%, #D8C5A8 45%, #A98F70 100%);
    box-shadow: 0 calc(var(--u) * 2) calc(var(--u) * 5) rgba(0, 0, 0, 0.15);
}
.site__photo-badge { position: absolute; left: calc(var(--u) * 1.6); bottom: calc(var(--u) * 1.6); display: flex; align-items: center; gap: calc(var(--u) * 0.6); padding: calc(var(--u) * 0.9) calc(var(--u) * 1.4); border-radius: 99px; background: #fff; color: #111; font-size: calc(var(--u) * 1.3); font-weight: 600; box-shadow: 0 calc(var(--u) * 0.6) calc(var(--u) * 1.6) rgba(0, 0, 0, 0.12); }
.site__photo-badge .i { color: #16A34A; }
.site__eyebrow { display: flex; align-items: center; gap: calc(var(--u) * 0.8); color: #666; font-size: calc(var(--u) * 1.3); }
.site__eyebrow::before { content: ""; width: calc(var(--u) * 0.9); height: calc(var(--u) * 0.9); border-radius: 50%; background: #16A34A; }
.site--after .site__h { margin: calc(var(--u) * 1.2) 0 calc(var(--u) * 2.2); font: 700 calc(var(--u) * 3.1)/1.12 var(--font-display); letter-spacing: -0.03em; color: #0B0C0F; }
.site__list { display: grid; gap: calc(var(--u) * 0.9); }
.site__list li { display: flex; align-items: center; gap: calc(var(--u) * 0.8); font-size: calc(var(--u) * 1.5); font-weight: 500; color: #222; }
.site__list .i { color: #16A34A; stroke-width: 2.6; }
.site__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: calc(var(--u) * 1.6) calc(var(--u) * 2); margin-top: calc(var(--u) * 2.8); }
.site--after .site__btn { padding: calc(var(--u) * 1.3) calc(var(--u) * 2.4); border-radius: calc(var(--u) * 1); background: #E5461A; color: #fff; font-size: calc(var(--u) * 1.55); font-weight: 700; box-shadow: 0 calc(var(--u) * 0.8) calc(var(--u) * 2) rgba(255, 91, 46, 0.35); }
.site__rating { display: flex; align-items: center; gap: calc(var(--u) * 0.5); font-size: calc(var(--u) * 1.3); font-weight: 600; }
.site__rating .i { color: #F59E0B; }

.note {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 2;
    padding: calc(var(--u) * 0.7) calc(var(--u) * 1.2);
    border-radius: 99px;
    font: 700 max(10px, calc(var(--u) * 1.3))/1.2 var(--font);
    white-space: nowrap;
    box-shadow: 0 calc(var(--u) * 0.6) calc(var(--u) * 1.6) rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}
.note--bad { background: #E5341F; color: #fff; }
.note--good { background: var(--accent); color: var(--accent-ink); transform: rotate(2deg); }

@container (max-width: 620px) {
    .site { --u: 1.9cqw; }
    .site--before .site__nav span, .site__phone, .site__stock, .site__photo { display: none; }
    .site__nav-btn { margin-left: auto; }
    .site--before .site__cols, .site--after .site__cols { grid-template-columns: 1fr; margin-top: calc(var(--u) * 5); }
    .site__cta-row { flex-direction: column; align-items: flex-start; }
    .note { max-width: 46%; white-space: normal; font-size: max(10.5px, calc(var(--u) * 1.15)); }
    .note--bad:nth-of-type(1) { --x: 44% !important; --y: 20% !important; }
    .note--good:nth-of-type(1) { --x: 50% !important; --y: 20% !important; }
    .note--mid { --x: 50% !important; --y: 52% !important; }
    .note--good:last-of-type { --x: 40% !important; --y: 77% !important; }
}
@media (max-width: 640px) {
    .ba { aspect-ratio: 4 / 5; cursor: default; }
    .ba-switch { display: flex; gap: 4px; width: max-content; margin: 0 auto 14px; padding: 4px; border: 1px solid var(--line-2); border-radius: 99px; }
    .ba-switch button { min-width: 96px; padding: 11px 22px; border: 0; border-radius: 99px; background: none; color: var(--text-2); font: 600 15px var(--font); cursor: pointer; transition: background-color 0.3s, color 0.3s; }
    .ba-switch button[aria-pressed="true"] { background: var(--accent); color: var(--accent-ink); }
    .ba__range, .ba__handle, .ba__label { display: none; }
    .ba__side--after { transition: clip-path 0.7s var(--ease); }
}

/* ---------- Calculator ---------- */
.calc { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; align-items: stretch; }
.calc__mini { display: none; }
.calc__inputs { display: grid; gap: 30px; align-content: center; padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line); border-radius: 26px; background: var(--surface); }

.range label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; font-size: 15px; }
.range output { flex-shrink: 0; color: var(--text); font: 600 18px/1 var(--font-display); letter-spacing: -0.02em; }
.range--accent output { color: var(--accent); }

.range input {
    --c: #fff;
    --fill: 50%;
    width: 100%;
    height: 28px;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.range--accent input { --c: var(--accent); }
.range input::-webkit-slider-runnable-track { height: 6px; border-radius: 99px; background: linear-gradient(to right, var(--c) var(--fill), rgba(255, 255, 255, 0.1) var(--fill)); }
.range input::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; margin-top: -9px; border-radius: 50%; background: var(--bg); border: 3px solid var(--c); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06); transition: transform 0.2s var(--ease); }
.range input:active::-webkit-slider-thumb { transform: scale(1.15); }
.range input::-moz-range-track { height: 6px; border-radius: 99px; background: rgba(255, 255, 255, 0.1); }
.range input::-moz-range-progress { height: 6px; border-radius: 99px; background: var(--c); }
.range input::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--bg); border: 3px solid var(--c); }
.range input:focus-visible { outline: none; }
.range input:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent); }
.range input:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent); }

.calc__result {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(200, 255, 46, 0.28);
    border-radius: 26px;
    background: linear-gradient(160deg, #141810 0%, #0E0F12 60%);
}
.calc__row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.calc__row > span { font-size: 14.5px; }
.calc__row p { display: flex; align-items: center; gap: 10px; color: var(--text); font: 600 20px/1 var(--font-display); letter-spacing: -0.02em; white-space: nowrap; }
.calc__row s { color: var(--text-3); font-size: 15px; text-decoration-thickness: 2px; }
.calc__row .i { color: var(--text-3); font-size: 15px; }
.calc__big { padding: 22px 20px; border-radius: 18px; background: var(--accent); color: var(--accent-ink); text-align: center; }
.calc__big span { display: block; font-size: 14px; font-weight: 600; line-height: 1.4; opacity: 0.72; }
.calc__big strong { display: block; margin: 6px 0; font: 700 clamp(2rem, 1.3rem + 2.4vw, 2.8rem)/1 var(--font-display); letter-spacing: -0.04em; }
.calc__payback { color: var(--text); text-align: center; font-size: 15px; }
.calc__note { color: var(--text-3); text-align: center; font-size: 12.5px; line-height: 1.5; }

/* ---------- Showcase ---------- */
.cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.case { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); transition: border-color 0.4s; }
.case:hover { border-color: var(--line-2); }
.case--wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.35fr 1fr; }
.case__preview { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; container-type: inline-size; }
.case--wide .case__preview { aspect-ratio: auto; min-height: 380px; }
.case__body { display: flex; flex-direction: column; gap: 14px; padding: clamp(24px, 3vw, 34px); flex: 1; }
.case__tag { color: var(--text-3); font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.case__name { font: 600 clamp(22px, 2vw, 28px)/1.1 var(--font-display); letter-spacing: -0.03em; }
.case__facts { display: grid; gap: 12px; }
.case__facts div { display: grid; grid-template-columns: 76px 1fr; gap: 12px; }
.case__facts dt { padding-top: 3px; color: var(--accent); font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.case__facts dd { font-size: 15px; }
.case__links { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: auto; padding-top: 8px; }

/* Мини-превью концептов (масштабируются от ширины карточки) */
.pv { --u: 1cqw; position: absolute; inset: 0; overflow: hidden; transition: transform 0.8s var(--ease); }
.case:hover .pv { transform: scale(1.025); }
.pv span, .pv strong, .pv em, .pv b { display: block; }
.pv__nav { display: flex !important; align-items: center; gap: calc(var(--u) * 2); padding: calc(var(--u) * 3) calc(var(--u) * 4.5); }
.pv__nav b { font-size: calc(var(--u) * 2.4); font-weight: 800; }
.pv__nav i { width: calc(var(--u) * 7); height: calc(var(--u) * 0.9); border-radius: 9px; background: currentColor; opacity: 0.2; }
.pv__nav em { margin-left: auto; padding: calc(var(--u) * 1) calc(var(--u) * 2.4); border-radius: 99px; font: 600 calc(var(--u) * 1.8)/1 var(--font); font-style: normal; }

.pv--fp {
    background:
        radial-gradient(55% 80% at 78% 35%, rgba(124, 58, 255, 0.5), transparent 62%),
        radial-gradient(40% 55% at 8% 95%, rgba(255, 107, 107, 0.32), transparent 60%),
        #0D0D12;
    color: #fff;
}
.case--wide .pv { --u: 0.8cqw; }
.pv--fp .pv__nav b { letter-spacing: 0.12em; font-family: var(--font-display); }
.pv--fp .pv__nav em { background: linear-gradient(135deg, #7C3AFF, #FF6B6B); color: #fff; }
.pv__fp { display: grid !important; grid-template-columns: 1.25fr 1fr; align-items: center; gap: calc(var(--u) * 3); height: calc(100% - var(--u) * 10); padding: 0 calc(var(--u) * 5); }
.pv__fp-badge { justify-self: start; width: max-content; padding: calc(var(--u) * 0.8) calc(var(--u) * 1.8); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 99px; font-size: calc(var(--u) * 1.7); font-weight: 600; }
.pv__fp strong { margin: calc(var(--u) * 2) 0 calc(var(--u) * 3); font: 700 calc(var(--u) * 6.4)/0.98 var(--font-display); letter-spacing: -0.03em; text-transform: uppercase; }
.pv__fp-btn { width: max-content; padding: calc(var(--u) * 1.6) calc(var(--u) * 3.2); border-radius: 99px; background: linear-gradient(135deg, #7C3AFF, #FF6B6B); font-size: calc(var(--u) * 2); font-weight: 700; box-shadow: 0 calc(var(--u) * 1.4) calc(var(--u) * 4) rgba(124, 58, 255, 0.45); }
.pv__phone {
    justify-self: center;
    display: flex !important;
    flex-direction: column;
    gap: calc(var(--u) * 2);
    width: calc(var(--u) * 23);
    aspect-ratio: 9 / 18.5;
    padding: calc(var(--u) * 3) calc(var(--u) * 2.2);
    border: calc(var(--u) * 0.6) solid #2B2B38;
    border-radius: calc(var(--u) * 3.6);
    background: #15151D;
    box-shadow: 0 calc(var(--u) * 4) calc(var(--u) * 8) rgba(0, 0, 0, 0.5);
    transform: rotate(7deg);
}
.pv__rings { position: relative; align-self: center; width: calc(var(--u) * 13); aspect-ratio: 1; }
.pv__rings i { position: absolute; border-radius: 50%; border: calc(var(--u) * 1.3) solid; transform: rotate(-35deg); }
.pv__rings i:nth-child(1) { inset: 0; border-color: #FF6B6B #FF6B6B #FF6B6B rgba(255, 107, 107, 0.15); }
.pv__rings i:nth-child(2) { inset: calc(var(--u) * 1.9); border-color: #7C3AFF #7C3AFF rgba(124, 58, 255, 0.15) rgba(124, 58, 255, 0.15); }
.pv__rings i:nth-child(3) { inset: calc(var(--u) * 3.8); border-color: #2DD4BF #2DD4BF #2DD4BF rgba(45, 212, 191, 0.15); transform: rotate(10deg); }
.pv__line { height: calc(var(--u) * 1.1); border-radius: 9px; background: rgba(255, 255, 255, 0.2); }
.pv__line--s { width: 60%; }
.pv__card { flex: 1; border-radius: calc(var(--u) * 1.6); background: linear-gradient(135deg, rgba(124, 58, 255, 0.6), rgba(255, 107, 107, 0.45)); }

.pv--cd { background: #F8FAFC; color: #0F172A; }
.pv--cd .pv__nav em { background: #0EA5E9; color: #fff; }
.pv__cd { display: grid !important; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: calc(var(--u) * 4); padding: calc(var(--u) * 1) calc(var(--u) * 4.5) calc(var(--u) * 4); }
.pv__cd-copy strong { font: 800 calc(var(--u) * 4.6)/1.08 var(--font); letter-spacing: -0.035em; }
.pv__cd-copy i { display: block; width: 80%; height: calc(var(--u) * 1.3); margin: calc(var(--u) * 2) 0 calc(var(--u) * 3); border-radius: 9px; background: #CBD5E1; }
.pv__cd-copy em { width: max-content; padding: calc(var(--u) * 1.4) calc(var(--u) * 2.6); border-radius: calc(var(--u) * 1.2); background: #0EA5E9; color: #fff; font: 600 calc(var(--u) * 2)/1 var(--font); font-style: normal; }
.pv__board { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: calc(var(--u) * 1.4); padding: calc(var(--u) * 1.8); border: 1px solid #E2E8F0; border-radius: calc(var(--u) * 2); background: #fff; box-shadow: 0 calc(var(--u) * 3) calc(var(--u) * 6) rgba(15, 23, 42, 0.1); }
.pv__board > span { display: flex !important; flex-direction: column; gap: calc(var(--u) * 1.1); min-height: calc(var(--u) * 22); padding: calc(var(--u) * 1.1); border-radius: calc(var(--u) * 1.2); background: #F1F5F9; }
.pv__board i { height: calc(var(--u) * 5); border-radius: calc(var(--u) * 0.9); background: #fff; box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08); border-left: calc(var(--u) * 0.5) solid #0EA5E9; }
.pv__board > span:nth-child(2) i { border-left-color: #F59E0B; }
.pv__board > span:nth-child(3) i { border-left-color: #22C55E; }
.pv__board i.pv__drag { border-left-color: #22C55E; box-shadow: 0 calc(var(--u) * 2) calc(var(--u) * 4) rgba(15, 23, 42, 0.2); animation: drag 4s var(--ease) infinite; }
@keyframes drag {
    0%, 15% { transform: none; }
    45%, 70% { transform: translate(calc(var(--u) * 9), calc(var(--u) * -2)) rotate(-5deg); }
    100% { transform: none; }
}

.pv--mn { background: #F4EFE6; color: #1A1A1A; }
.pv__mn { display: flex !important; flex-direction: column; align-items: center; justify-content: center; gap: calc(var(--u) * 2.4); height: 100%; padding: calc(var(--u) * 6); text-align: center; }
.pv__mn strong { font: 400 calc(var(--u) * 6.6)/1 Georgia, "Times New Roman", serif; letter-spacing: 0.2em; }
.pv__rule { width: calc(var(--u) * 12); height: 1px; background: #9C7F32; }
.pv__mn em { color: #5A5A5A; font: italic calc(var(--u) * 2.4)/1 Georgia, serif; letter-spacing: 0.06em; }
.pv__looks { display: grid !important; grid-template-columns: repeat(3, calc(var(--u) * 12)); gap: calc(var(--u) * 2); margin-top: calc(var(--u) * 3); }
.pv__looks i { aspect-ratio: 3 / 4; background: linear-gradient(160deg, #2B2622, #6B5B4B); }
.pv__looks i:nth-child(2) { background: linear-gradient(160deg, #D8C08A, #9C7F32); }
.pv__looks i:nth-child(3) { background: linear-gradient(160deg, #E3D2C4, #A58C7B); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
.step { position: relative; display: flex; flex-direction: column; padding: 24px 20px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.step::before { content: counter(step, decimal-leading-zero); counter-increment: step; margin-bottom: 22px; color: var(--accent); font: 600 14px/1 var(--font-display); }
.step__day { position: absolute; top: 20px; right: 16px; padding: 4px 9px; border: 1px solid var(--line-2); border-radius: 99px; color: var(--text-2); font-size: 12px; font-weight: 500; }
.step h3 { margin-bottom: 8px; font-size: 18px; }
.step p { font-size: 14.5px; }
.step .step__get { display: flex; gap: 8px; margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line-2); color: var(--text); font-weight: 500; }
.step__get .i { margin-top: 3px; color: var(--accent); }
.steps__note { max-width: 760px; margin: 22px auto 0; color: var(--text-2); font-size: 14.5px; text-align: center; }
.subhead { max-width: var(--container); margin: clamp(44px, 6vw, 72px) auto 24px; font: 600 clamp(1.25rem, 1rem + 1vw, 1.6rem)/1.2 var(--font-display); letter-spacing: -0.02em; text-align: center; }
.step > p:not(.step__get) { margin-bottom: 16px; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.plan { display: flex; flex-direction: column; padding: 32px 22px 24px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); }
.plan--featured {
    border-color: rgba(200, 255, 46, 0.55);
    background: linear-gradient(180deg, rgba(200, 255, 46, 0.09), transparent 45%), var(--surface);
    box-shadow: 0 30px 80px rgba(200, 255, 46, 0.08);
}
.plan__badge {
    position: absolute;
    top: -14px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 99px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 12.5px;
    font-weight: 700;
}
.plan__name { font: 600 20px/1.1 var(--font-display); letter-spacing: -0.02em; }
.plan__pitch { min-height: 4.3em; margin: 10px 0 22px; font-size: 14.5px; }
.plan__price { color: var(--text); font: 700 clamp(1.75rem, 1.1rem + 1.5vw, 2.15rem)/1 var(--font-display); letter-spacing: -0.04em; }
.plan__price small { color: var(--text-2); font: 500 15px var(--font); letter-spacing: 0; }
.plan__term { display: flex; align-items: center; gap: 8px; margin: 10px 0 24px; font-size: 14px; }
.plan__term .i { color: var(--accent); }
.plan__list { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; align-content: start; }
.plan__list li { display: flex; gap: 9px; color: var(--text); font-size: 14px; line-height: 1.45; }
.plan__list .i { margin-top: 3px; color: var(--accent); }

.audit {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
    padding: 24px 28px;
    border: 1px dashed rgba(200, 255, 46, 0.45);
    border-radius: 24px;
    background: rgba(200, 255, 46, 0.035);
}
.audit__icon { width: 56px; height: 56px; flex-shrink: 0; display: grid; place-items: center; border-radius: 16px; background: var(--accent); color: var(--accent-ink); font-size: 26px; }
.audit__text { flex: 1; }
.audit h3 { font-size: 20px; }
.audit p { margin-top: 4px; font-size: 15px; }

/* ---------- Versus ---------- */
.versus { overflow-x: auto; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); -webkit-overflow-scrolling: touch; }
.versus table { width: 100%; min-width: 760px; border-collapse: collapse; }
.versus th, .versus td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 15px; }
.versus tr:last-child th, .versus tr:last-child td { border-bottom: 0; }
.versus thead th { color: var(--text-2); font-size: 14px; font-weight: 600; }
.versus thead th.versus__me { background: var(--accent); color: var(--accent-ink); font: 600 15px var(--font-display); }
.versus tbody th { width: 21%; color: var(--text); font-weight: 600; }
.versus td { color: var(--text-2); }
.versus td.versus__me { background: rgba(200, 255, 46, 0.06); color: var(--text); font-weight: 500; }
.versus__when th, .versus__when td { background: rgba(255, 255, 255, 0.02); }
.versus thead th:first-child, .versus tbody th { position: sticky; left: 0; z-index: 1; background: var(--surface); }

/* ---------- Guarantees: лаймовая полоса — единственное место, где меняется фон ---------- */
.guarantees-band { background: var(--accent); color: var(--accent-ink); }
.guarantees-band .eyebrow { color: rgba(11, 12, 15, 0.62); }
.guarantees-band .h2 { color: var(--accent-ink); }
.guarantees-band .lead { color: rgba(11, 12, 15, 0.72); }
.guarantees-band ::selection { background: var(--accent-ink); color: var(--accent); }
.guarantees-band .guarantee { background: rgba(11, 12, 15, 0.05); border-color: rgba(11, 12, 15, 0.14); }
.guarantees-band .guarantee h3 { color: var(--accent-ink); }
.guarantees-band .guarantee p { color: rgba(11, 12, 15, 0.76); }
.guarantees-band .guarantee__icon { background: var(--accent-ink); color: var(--accent); }
.guarantees-band .guarantee--accent { background: var(--accent-ink); border-color: var(--accent-ink); }
.guarantees-band .guarantee--accent h3 { color: #fff; }
.guarantees-band .guarantee--accent p { color: rgba(255, 255, 255, 0.72); }
.guarantees-band .guarantee--accent .guarantee__icon { background: var(--accent); color: var(--accent-ink); }
.guarantees-band :focus-visible { outline-color: var(--accent-ink); }

/* ---------- Guarantees ---------- */
.guarantees { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.guarantee { padding: 28px 24px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.guarantee__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); font-size: 22px; }
.guarantee h3 { font-size: 18px; }
.guarantee p { margin-top: 10px; font-size: 14.5px; }
.guarantee--accent { border-color: rgba(200, 255, 46, 0.45); background: linear-gradient(180deg, rgba(200, 255, 46, 0.08), transparent 55%), var(--surface); }
.guarantee--accent .guarantee__icon { background: var(--accent); color: var(--accent-ink); }

/* ---------- Trust checks ---------- */
.checks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.check { display: flex; flex-direction: column; gap: 10px; padding: 26px 22px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.check__icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 6px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); font-size: 21px; }
.check h3 { font-size: 17.5px; }
.check p { font-size: 14.5px; }
.check .link-arrow { margin-top: auto; padding-top: 6px; font-size: 14.5px; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 240px 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line); border-radius: 26px; background: var(--surface); }
.about__photo { width: 100%; aspect-ratio: 240 / 290; object-fit: cover; border-radius: 20px; }
.about__photo--mark { display: grid; place-items: center; border: 1px solid var(--line); background: radial-gradient(90% 80% at 30% 20%, rgba(200, 255, 46, 0.16), transparent 70%), var(--surface-2); }
.about__mark { width: 46%; height: auto; transform: rotate(-6deg); filter: drop-shadow(0 18px 40px rgba(200, 255, 46, 0.25)); }
.about__photo--initials { display: grid; place-items: center; background: radial-gradient(120% 90% at 20% 10%, var(--accent), #7FD13B 45%, var(--violet)); color: var(--accent-ink); font: 700 110px/1 var(--font-display); letter-spacing: -0.06em; }
.about .eyebrow { margin-bottom: 10px; }
.about__name { font: 600 clamp(1.3rem, 1rem + 1.2vw, 1.9rem)/1.2 var(--font-display); letter-spacing: -0.03em; }
.about__role { margin-top: 8px; color: var(--accent); font-weight: 600; }
.about__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.about__chips li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 99px; color: var(--text); font-size: 14px; }
.about__chips .i { color: var(--accent); }
.about__bio { margin-top: 14px; font-size: 16px; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq-wrap .section-head { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-wrap .btn { margin-top: 28px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; cursor: pointer; list-style: none; color: var(--text); font-size: 17px; font-weight: 600; transition: color 0.3s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__item summary .i { font-size: 22px; color: var(--accent); transition: transform 0.4s var(--ease); }
.faq__item[open] summary .i { transform: rotate(45deg); }
.faq__item p { padding: 0 40px 24px 0; font-size: 15.5px; line-height: 1.7; }

@supports (interpolate-size: allow-keywords) {
    :root { interpolate-size: allow-keywords; }
    .faq__item::details-content { height: 0; overflow: clip; transition: height 0.45s var(--ease), content-visibility 0.45s allow-discrete; }
    .faq__item[open]::details-content { height: auto; }
}

/* ---------- Contact ---------- */
.contact {
    position: relative;
    background:
        radial-gradient(45% 55% at 85% 35%, rgba(139, 108, 255, 0.14), transparent 70%),
        radial-gradient(40% 50% at 8% 85%, rgba(200, 255, 46, 0.07), transparent 70%);
}
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.next { display: grid; gap: 14px; margin: 30px 0; }
.next li { display: flex; align-items: center; gap: 14px; color: var(--text); font-size: 16px; }
.next b { width: 32px; height: 32px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); font-size: 14px; }
.tg-card { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; padding: 16px 20px; border: 1px solid rgba(42, 171, 238, 0.35); border-radius: 18px; background: rgba(42, 171, 238, 0.08); color: var(--text-2); font-size: 14.5px; line-height: 1.45; transition: background-color 0.3s, border-color 0.3s; }
.tg-card b { color: var(--text); font-size: 16px; }
.tg-card:hover { background: rgba(42, 171, 238, 0.14); border-color: var(--tg); }
.tg-card--mail { border-color: var(--line-2); background: rgba(255, 255, 255, 0.03); }
.tg-card--mail .tg-card__icon { background: var(--accent); color: var(--accent-ink); }
.tg-card--mail:hover { border-color: var(--accent); background: rgba(200, 255, 46, 0.05); }
.tg-card__icon { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: var(--tg); color: #fff; font-size: 22px; }
.tg-card > .i { margin-left: auto; font-size: 20px; }
.contact__guarantee { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.contact__guarantee .i { color: var(--accent); font-size: 18px; }

#lead { scroll-margin-top: calc(var(--header-h) + 32px); }
.form-card { padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line-2); border-radius: 28px; background: #0F1115; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45); }
.form { display: grid; gap: 18px; }
.field { border: 0; min-width: 0; }
.field label, .field legend { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; color: var(--text); font-size: 14px; font-weight: 500; }
.optional { color: var(--text-3); font-size: 13px; font-weight: 400; }
.field input, .field textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--line-2);
    border-radius: 14px;
    background: #0A0B0E;
    color: var(--text);
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(200, 255, 46, 0.14); }
.field input[aria-invalid="true"] { border-color: var(--danger); }
.field__error { margin-top: 6px; color: #FF8A7D; font-size: 13px; }
.field__error:empty { display: none; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { display: inline-flex; padding: 10px 16px; border: 1px solid var(--line-2); border-radius: 99px; color: var(--text-2); font-size: 14px; cursor: pointer; transition: all 0.25s; }
.chip span:hover { border-color: rgba(255, 255, 255, 0.3); color: var(--text); }
.chip input:checked + span { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); font-weight: 600; }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.hp { display: none; }

.consent { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); font-size: 13.5px; line-height: 1.5; cursor: pointer; }
.consent input {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0;
    display: grid;
    place-content: center;
    border: 1.5px solid var(--line-2);
    border-radius: 7px;
    background: #0A0B0E;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: background-color 0.2s, border-color 0.2s;
}
.consent input::after { content: ""; width: 10px; height: 6px; border: solid var(--accent-ink); border-width: 0 0 2.5px 2.5px; transform: translateY(-1px) rotate(-45deg) scale(0); transition: transform 0.2s var(--ease); }
.consent input:checked { background: var(--accent); border-color: var(--accent); }
.consent input:checked::after { transform: translateY(-1px) rotate(-45deg) scale(1); }
.consent input[aria-invalid="true"] { border-color: var(--danger); }
.consent a { color: var(--text); text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 3px; }
.consent a:hover { text-decoration-color: var(--accent); }

.form__more { border: 1px dashed var(--line-2); border-radius: 14px; }
.form__more summary { display: flex; align-items: center; gap: 8px; padding: 13px 16px; color: var(--text-2); font-size: 14.5px; cursor: pointer; list-style: none; }
.form__more summary::-webkit-details-marker { display: none; }
.form__more summary .i { color: var(--accent); transition: transform 0.3s var(--ease); }
.form__more summary .optional { margin-left: auto; }
.form__more summary:hover { color: var(--text); }
.form__more[open] summary .i { transform: rotate(45deg); }
.form__more-body { display: grid; gap: 16px; padding: 4px 16px 16px; }
.form__eta { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: -6px; color: var(--text-2); font-size: 13.5px; }
.form__eta .i { color: var(--accent); }
[data-submit][aria-busy="true"] { opacity: 0.7; pointer-events: none; }
.form__error { padding: 12px 14px; border-radius: 12px; background: rgba(255, 107, 91, 0.1); color: #FF8A7D; font-size: 14px; }
.form__error[hidden] { display: none; }
.form__note { color: var(--text-3); font-size: 13px; text-align: center; }
.form__note a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }

.form-success { padding: 28px 8px; text-align: center; outline: none; }
.form-success[hidden] { display: none; }
.form-success__icon { width: 76px; height: 76px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-size: 36px; animation: pop 0.6s var(--ease) both; }
.form-success__icon .i { stroke-width: 2.6; }
.form-success h3 { font: 600 26px/1.2 var(--font-display); letter-spacing: -0.03em; }
.form-success p { margin: 12px auto 26px; max-width: 34ch; }
@keyframes pop { from { transform: scale(0.4); opacity: 0; } }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 calc(32px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #050608; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer__brand p { max-width: 34ch; margin-top: 16px; font-size: 14.5px; }
.footer__title { margin-bottom: 16px; color: var(--text-3); font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; transition: color 0.3s; }
.footer__col a:hover { color: var(--text); }
.footer__col .i { color: var(--text-3); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--text-3); font-size: 13.5px; }
.footer__bottom a { transition: color 0.3s; }
.footer__bottom a:hover { color: var(--text); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 1023px) {
    .sticky-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        z-index: 70;
        display: flex;
        gap: 8px;
        padding: 8px;
        border: 1px solid var(--line-2);
        border-radius: 22px;
        background: rgba(12, 13, 17, 0.9);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transform: translateY(160%);
        visibility: hidden;
        transition: transform 0.5s var(--ease), visibility 0s 0.5s;
    }
    .sticky-cta.is-visible { transform: none; visibility: visible; transition: transform 0.5s var(--ease); }
    .sticky-cta .btn { padding: 14px 18px; }
    .footer { padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
}

/* ---------- Documents (политика, согласие, спасибо, ошибки) ---------- */
.doc { max-width: 780px; margin: 0 auto; padding: calc(var(--header-h) + clamp(40px, 7vw, 80px)) var(--gutter) clamp(64px, 9vw, 112px); }
.doc h1 { font: 600 clamp(1.25rem, min(1.2rem + 2.6vw, 6.4vw), 2.8rem)/1.12 var(--font-display); letter-spacing: -0.035em; text-wrap: balance; overflow-wrap: break-word; }
.doc .doc__meta { margin-top: 14px; color: var(--text-3); font-size: 14px; }
.doc h2 { margin: 40px 0 12px; font-size: 20px; }
.doc p, .doc li { font-size: 16px; line-height: 1.75; }
.doc p + p { margin-top: 12px; }
.doc ul { margin-top: 10px; padding-left: 22px; list-style: disc; }
.doc li + li { margin-top: 6px; }
.doc a:not(.btn) { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

.status { min-height: 78vh; display: grid; place-items: center; text-align: center; }
.status__code { display: block; color: var(--accent); font: 700 clamp(5rem, 3rem + 10vw, 10rem)/0.9 var(--font-display); letter-spacing: -0.06em; }
.status__icon { width: 88px; height: 88px; margin: 0 auto 28px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-size: 42px; }
.status h1 { margin-top: 20px; }
.status p { max-width: 46ch; margin: 16px auto 0; font-size: 17px; }
.status__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }

/* ---------- Reveal ---------- */
.js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: calc(var(--i, 0) * 80ms);
}
.js [data-reveal="scale"] { transform: scale(0.96); }
/* Если site.js не загрузился, контент всё равно проявится через 2,5 с */
.js:not(.rv) [data-reveal] { animation: reveal-failsafe 0s 2.5s forwards; }
@keyframes reveal-failsafe { to { opacity: 1; transform: none; } }
.is-offscreen, .is-offscreen * { animation-play-state: paused !important; }
/* content-visibility только у футера: у секций выше он сбивал переходы по якорям (плейсхолдеры не совпадают с реальной высотой) */
.footer { content-visibility: auto; contain-intrinsic-size: auto 600px; }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (min-width: 1024px) and (max-width: 1180px) {
    .hero__title { font-size: 3.1rem; }
}

@media (max-width: 1240px) {
    .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin: 0 auto; }
}

@media (max-width: 1100px) {
    .steps { grid-template-columns: repeat(3, 1fr); }
    .checks { grid-template-columns: repeat(2, 1fr); }
    .guarantees { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: repeat(3, 1fr); }
    .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1023px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { max-width: 620px; margin: 8px auto 0; width: 100%; }
    .mock, .hero__visual:hover .mock { transform: none; }
    @keyframes mock-in { from { opacity: 0; transform: translateY(30px); } }
    .float--goals { left: -8px; }
    .float--toast { right: -8px; }
    .calc { grid-template-columns: 1fr; }
    .case--wide { grid-template-columns: 1fr; }
    .case--wide .case__preview { aspect-ratio: 16 / 10; min-height: 0; }
    .case--wide .pv { --u: 1cqw; }
    .plans { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .plan--featured { order: -1; }
    .calc__mini {
        position: sticky;
        top: calc(var(--header-h) + 8px);
        z-index: 2;
        display: block;
        margin: -8px 0 -6px;
        padding: 10px 14px;
        border: 1px solid rgba(200, 255, 46, 0.3);
        border-radius: 14px;
        background: rgba(16, 18, 23, 0.94);
        color: var(--text);
        font: 600 15px/1.3 var(--font-display);
        letter-spacing: -0.02em;
        text-align: center;
    }
    .plan__pitch { min-height: 0; }
    .faq-wrap { grid-template-columns: 1fr; }
    .faq-wrap .section-head { position: static; }
    .contact__grid { grid-template-columns: 1fr; }
    .section-head--split { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .leaks { grid-template-columns: 1fr; }
    /* Карусели с «подглядыванием» следующей карточки вместо длинных колонок */
    .swipe {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 86%;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 var(--gutter);
        margin: 0 calc(var(--gutter) * -1);
        padding: 4px var(--gutter) 10px;
        scrollbar-width: none;
    }
    .swipe::-webkit-scrollbar { display: none; }
    .swipe > * { scroll-snap-align: start; }
    .checks { grid-template-columns: 1fr; }
    /* Процесс — компактная линия времени */
    .step { padding: 14px 0 14px 22px; border: 0; border-left: 2px solid var(--line-2); border-radius: 0; background: none; }
    .step::before { margin-bottom: 8px; }
    .step__day { position: static; align-self: flex-start; margin-bottom: 8px; }
    .step > p:not(.step__get) { margin-bottom: 10px; }
    .step .step__get { padding-top: 0; border-top: 0; }
    .steps { gap: 0; }
    /* Сравнение — карточки, мой вариант первым */
    .versus { overflow: visible; border: 0; border-radius: 0; background: none; }
    .versus table { min-width: 0; }
    .versus thead { display: none; }
    .versus table, .versus tbody, .versus th, .versus td { display: block; }
    .versus tr { display: flex; flex-direction: column; margin-bottom: 12px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
    .versus tbody th { position: static; width: auto; padding: 16px 18px 6px; border: 0; background: none; font-size: 16px; }
    .versus td { padding: 8px 18px; border: 0; font-size: 14.5px; }
    .versus td::before { content: attr(data-label); display: block; margin-bottom: 2px; color: var(--text-3); font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
    .versus td.versus__me { margin: 4px 10px 6px; padding: 10px 12px; border-radius: 12px; background: var(--accent-soft); }
    .versus td.versus__me::before { color: var(--accent); }
    .versus tr > td:last-child { padding-bottom: 16px; }
    .cases { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step__day { top: 22px; }
    .audit { flex-direction: column; align-items: flex-start; }
    .about { grid-template-columns: 1fr; }
    .about__photo { max-width: 220px; }
    .speed { flex-wrap: wrap; }
    .speed__text { flex-basis: calc(100% - 60px); }
    .speed__link { margin-left: 58px; }
}

@media (max-width: 420px) {
    .pill__product, .pill__sep { display: none; }
    .pill__avail::first-letter { text-transform: uppercase; }
}

@media (max-width: 560px) {
    /* Первый экран на телефоне: визуал поднимается сразу под кнопку */
    .hero__inner { display: flex; flex-direction: column; gap: 0; }
    .hero__copy { display: contents; }
    .pill { order: 1; align-self: flex-start; }
    .hero__title { order: 2; }
    .hero__lead { order: 3; }
    .hero__actions { order: 4; margin-top: 26px; }
    .hero__visual { order: 5; margin-top: 18px; }
    .hero__trust { order: 6; flex-direction: column; gap: 10px; margin-top: 8px; }
    .hero__actions .btn--primary { width: 100%; }
    .hero__actions .btn--ghost { width: 100%; padding: 8px 0; border: 0; background: none; color: var(--text-2); text-decoration: underline; text-underline-offset: 4px; }
    .float--goals { display: none; }
    .float--toast { right: 8px; top: -14px; width: 236px; }
    .pill { font-size: 13px; }
    .ba__fiction { top: auto; bottom: 12px; }
    .guarantees { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
    .footer__col:last-child { grid-column: 1 / -1; }
    .calc__row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .faq__item p { padding-right: 0; }
    .form-card { border-radius: 22px; }
}

@media (max-width: 359px) {
    .facts li { padding: 16px 14px; }
    .facts b { font-size: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
    .toast__msg:first-child { opacity: 1; transform: none; }
    .mock__slide { animation: none !important; }
    .mock__slide:first-child { opacity: 1; visibility: visible; }
    .mock__urls span { animation: none !important; }
    .mock__urls span:first-child { opacity: 1; }
}
