/* =========================================================
   SEO Практик — дизайн-система v2 (2026)
   Палитра: navy + white + orange. Шрифт: Golos Text (self-hosted).
   ========================================================= */

@font-face {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url(/fonts/golos-var-cyrillic.woff2) format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Golos Text";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url(/fonts/golos-var-latin.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --ink: #0e1626;
    --ink-2: #3b4658;
    --muted: #6b7686;
    --line: #e3e8f0;
    --line-strong: #cfd6e2;
    --bg: #ffffff;
    --bg-soft: #f4f6fa;
    --bg-soft-2: #eaeef5;
    --navy: #0f1b33;
    --navy-2: #16254a;
    --navy-3: #1f3161;
    --accent: #ff7a1a;
    --accent-hover: #ea6a0c;
    --accent-soft: #fff1e6;
    --teal: #14b8a6;
    --teal-soft: #e6faf7;
    --green: #16a34a;
    --green-soft: #e8f7ee;
    --red: #dc2626;
    --red-soft: #fdecec;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 10px 30px rgba(15, 27, 51, .08);
    --shadow-lg: 0 24px 60px rgba(15, 27, 51, .16);
    --container: 1200px;
    --font: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-3); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(32px, 4.6vw, 52px); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(26px, 3.2vw, 38px); }
h3 { font-size: clamp(19px, 2vw, 23px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
li { margin-bottom: .35em; }
strong { font-weight: 700; }
small { font-size: .875em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }
table { border-collapse: collapse; width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(255, 122, 26, .55); outline-offset: 2px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 860px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #dfe6f3; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy a { color: #ffd0ae; }
.section--accent { background: var(--accent-soft); }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 19px; color: var(--ink-2); }
.section--navy .section-head p { color: #b9c4d9; }
.eyebrow {
    display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--accent-hover); margin-bottom: 12px;
}
.section--navy .eyebrow { color: #ffb27a; }
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.lead { font-size: 20px; color: var(--ink-2); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 26px; border-radius: 12px; border: 2px solid transparent;
    font-weight: 700; font-size: 16px; line-height: 1.2; text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(255, 122, 26, .35); }
.btn--primary:hover { background: var(--accent-hover); color: #fff; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); color: #fff; }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .25); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.btn--lg { padding: 18px 32px; font-size: 18px; border-radius: 14px; }
.btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 10px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 44px; height: 38px; object-fit: contain; }
.brand__name { font-weight: 800; font-size: 20px; letter-spacing: -.01em; line-height: 1.1; }
.brand__tag { display: block; font-size: 12px; font-weight: 500; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav__item { position: relative; }
.nav__link {
    display: inline-flex; align-items: center; gap: 6px; padding: 10px 12px; border-radius: 10px;
    font-weight: 600; font-size: 15px; color: var(--ink); text-decoration: none;
}
.nav__link:hover, .nav__item.is-open > .nav__link { background: var(--bg-soft); color: var(--ink); }
.nav__link .chev { width: 12px; height: 12px; transition: transform .15s; }
.nav__item.is-open > .nav__link .chev { transform: rotate(180deg); }
.nav__drop {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg);
    padding: 20px; min-width: 260px; z-index: 60;
}
.nav__drop--mega { width: 900px; left: -140px; display: none; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.nav__drop--cols { width: 640px; display: none; grid-template-columns: repeat(3, 1fr); gap: 4px 24px; }
.nav__item.is-open > .nav__drop { display: grid; }
.nav__item.is-open > .nav__drop:not(.nav__drop--mega):not(.nav__drop--cols) { display: block; }
.nav__group h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 0 0 10px; }
.nav__drop a { display: block; padding: 6px 8px; border-radius: 8px; font-size: 14px; color: var(--ink); text-decoration: none; }
.nav__drop a:hover { background: var(--bg-soft); color: var(--accent-hover); }
.nav__drop a.is-all { font-weight: 700; color: var(--navy-3); margin-top: 6px; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-phone { font-weight: 700; font-size: 16px; text-decoration: none; color: var(--ink); white-space: nowrap; }
.header-phone small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; line-height: 1; }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 0; align-items: center; justify-content: center; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.mobile-nav {
    display: none; position: fixed; inset: 76px 0 0 0; background: #fff; z-index: 49; overflow-y: auto; padding: 16px 20px 40px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav details { border-bottom: 1px solid var(--line); }
.mobile-nav summary { list-style: none; cursor: pointer; padding: 14px 0; font-weight: 700; font-size: 17px; display: flex; justify-content: space-between; align-items: center; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: "+"; font-size: 22px; color: var(--muted); }
.mobile-nav details[open] summary::after { content: "–"; }
.mobile-nav a { display: block; padding: 10px 0; text-decoration: none; color: var(--ink-2); font-size: 15px; }
.mobile-nav > a { font-weight: 700; font-size: 17px; color: var(--ink); border-bottom: 1px solid var(--line); padding: 14px 0; }
.mobile-nav .mobile-nav__group { padding: 0 0 12px 12px; }
.mobile-nav .mobile-nav__group h4 { font-size: 12px; text-transform: uppercase; color: var(--muted); margin: 10px 0 4px; }
.mobile-nav .btn { margin-top: 20px; }
body.nav-locked { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #e7ecf6; padding: 64px 0 72px; }
.hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(60% 80% at 85% 20%, rgba(255, 122, 26, .22), transparent 60%),
                radial-gradient(40% 60% at 10% 90%, rgba(20, 184, 166, .16), transparent 60%);
}
.hero .container { position: relative; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em, .hero .mark { font-style: normal; color: #ffb27a; }
.hero__sub { font-size: 20px; line-height: 1.5; color: #c4cee0; max-width: 620px; margin-bottom: 26px; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 10px; }
.hero__bullets li { position: relative; padding-left: 30px; color: #e7ecf6; font-size: 17px; }
.hero__bullets li::before {
    content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%;
    background: var(--teal) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center/12px no-repeat;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero__note { font-size: 14px; color: #93a0b8; }
.hero--light { background: var(--bg-soft); color: var(--ink); }
.hero--light::before { background: radial-gradient(50% 70% at 90% 10%, rgba(255, 122, 26, .18), transparent 60%); }
.hero--light h1 { color: var(--ink); }
.hero--light .hero__sub { color: var(--ink-2); }
.hero--light .hero__bullets li { color: var(--ink); }
.hero--light .hero__note { color: var(--muted); }
.hero--center { text-align: center; }
.hero--center .hero__sub, .hero--center .hero__bullets { margin-left: auto; margin-right: auto; }
.hero--center .hero__bullets { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; }
.hero--image .hero__grid { grid-template-columns: 1fr 1fr; }
.hero__art img { width: 100%; max-width: 560px; margin: 0 auto; border-radius: 20px; box-shadow: var(--shadow-lg); }
.hero__stats { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .14); }
.hero__stat b { display: block; font-size: 30px; font-weight: 800; color: #fff; line-height: 1; }
.hero__stat span { font-size: 14px; color: #a9b5cb; }
.hero--light .hero__stats { border-top-color: var(--line); }
.hero--light .hero__stat b { color: var(--ink); }
.hero--light .hero__stat span { color: var(--muted); }

/* ---------- Lead card / forms ---------- */
.lead-card {
    background: #fff; color: var(--ink); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-lg);
}
.lead-card h3 { margin-bottom: 6px; }
.lead-card__sub { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.lead-form { display: grid; gap: 12px; }
.lead-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
    width: 100%; border: 1.5px solid var(--line-strong); border-radius: 12px; padding: 13px 14px; background: #fff;
    font-size: 16px; transition: border-color .12s, box-shadow .12s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255, 122, 26, .15); }
.field textarea { min-height: 96px; resize: vertical; }
.field.is-invalid input { border-color: var(--red); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.45; color: var(--ink-2); }
.consent input { margin: 3px 0 0; width: 18px; height: 18px; flex: 0 0 18px; accent-color: var(--accent); }
.consent a { color: var(--navy-3); }
.form-note { font-size: 13px; color: var(--muted); margin: 0; }
.form-msg { font-size: 15px; font-weight: 600; min-height: 0; }
.form-msg.is-ok { color: var(--green); }
.form-msg.is-err { color: var(--red); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.lead-form .btn { width: 100%; }
.lead-inline { display: flex; gap: 10px; flex-wrap: wrap; }
.lead-inline input { flex: 1 1 220px; }
.lead-inline .btn { flex: 0 0 auto; }
.lead-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.lead-section__list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.lead-section__list li { display: flex; gap: 12px; align-items: flex-start; }
.lead-section__list li b { flex: 0 0 34px; height: 34px; border-radius: 10px; background: rgba(255, 255, 255, .1); color: #ffb27a; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.section--navy .lead-card { color: var(--ink); }
.section--navy .lead-card h3 { color: var(--ink); }

/* ---------- Trust bar ---------- */
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); }
.trust-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-bar__item { padding: 22px 18px; display: flex; gap: 14px; align-items: center; border-left: 1px solid var(--line); }
.trust-bar__item:first-child { border-left: 0; }
.trust-bar__item b { display: block; font-size: 22px; font-weight: 800; line-height: 1.1; }
.trust-bar__item span { font-size: 14px; color: var(--muted); }
.trust-bar__ico { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-hover); display: inline-flex; align-items: center; justify-content: center; }
.trust-bar__ico svg { width: 22px; height: 22px; }

/* ---------- Cards / generic ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card--soft { background: var(--bg-soft); border-color: transparent; }
.card--navy { background: var(--navy-2); color: #dfe6f3; border-color: transparent; }
.card--navy h3, .card--navy h4 { color: #fff; }
.card--accent { background: var(--accent-soft); border-color: transparent; }
.card__ico { width: 48px; height: 48px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-hover); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card__ico svg { width: 24px; height: 24px; }
.card--navy .card__ico { background: rgba(255, 255, 255, .1); color: #ffb27a; }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card--num { position: relative; }
.card--num::before { content: attr(data-num); display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .06em; color: var(--accent-hover); background: var(--accent-soft); padding: 5px 10px; border-radius: 8px; margin-bottom: 14px; line-height: 1; }

/* ---------- Pain points ---------- */
.pain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain__item { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius-sm); padding: 22px 24px; }
.pain__item h3 { font-size: 18px; margin-bottom: 8px; }
.pain__item p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* ---------- Steps / timeline ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px 24px; }
.step::before {
    counter-increment: step; content: counter(step, decimal-leading-zero);
    display: inline-block; font-weight: 800; font-size: 14px; color: var(--accent-hover); background: var(--accent-soft);
    padding: 6px 10px; border-radius: 8px; margin-bottom: 14px; letter-spacing: .04em;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-2); margin: 0; }
.step__meta { display: block; margin-top: 12px; font-size: 13px; color: var(--muted); }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps--2 { grid-template-columns: repeat(2, 1fr); }
.steps--vertical { grid-template-columns: 1fr; max-width: 820px; }
.steps--vertical .step { display: grid; grid-template-columns: 70px 1fr; gap: 10px 20px; align-items: start; }
.steps--vertical .step::before { margin: 0; text-align: center; }
.steps--vertical .step h3 { grid-column: 2; }
.steps--vertical .step p, .steps--vertical .step .step__meta { grid-column: 2; }
.section--navy .step { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); }
.section--navy .step h3 { color: #fff; }
.section--navy .step p { color: #b9c4d9; }
.section--navy .step::before { background: rgba(255, 178, 122, .15); color: #ffb27a; }

/* ---------- Checklist / included ---------- */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks--2 { grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.checks--3 { grid-template-columns: repeat(3, 1fr); gap: 12px 24px; }
.checks li { position: relative; padding-left: 32px; }
.checks li::before {
    content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 7px; background: var(--green-soft);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
    background-size: 13px; background-repeat: no-repeat; background-position: center;
}
.checks--x li::before { background: var(--red-soft); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3' stroke-linecap='round'><path d='M18 6L6 18M6 6l12 12'/></svg>"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.checks li b { display: block; }
.checks li span { color: var(--ink-2); font-size: 15px; }
.section--navy .checks li span { color: #b9c4d9; }
.section--navy .checks li::before { background-color: rgba(20, 184, 166, .2); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: 20px; padding: 30px 28px; display: flex; flex-direction: column; }
.price-card--hot { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.price-card__badge { position: absolute; top: -13px; left: 24px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.price-card h3 { font-size: 22px; margin-bottom: 4px; }
.price-card__for { color: var(--muted); font-size: 14px; min-height: 42px; margin-bottom: 14px; }
.price-card__price { font-size: 34px; font-weight: 800; letter-spacing: -.02em; line-height: 1; margin-bottom: 4px; }
.price-card__price small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-card__period { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 9px; font-size: 15px; }
.price-card ul li { position: relative; padding-left: 26px; }
.price-card ul li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--teal-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f9d8f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center/9px no-repeat; }
.price-card ul li.is-off { color: var(--muted); }
.price-card ul li.is-off::before { background: var(--bg-soft-2); background-image: none; }
.price-card .btn { margin-top: auto; }
.price-note { margin-top: 20px; font-size: 14px; color: var(--muted); }
.price-list { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.price-list__row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 16px 22px; border-top: 1px solid var(--line); align-items: center; }
.price-list__row:first-child { border-top: 0; }
.price-list__row b { font-weight: 600; }
.price-list__row span { color: var(--ink-2); font-size: 14px; display: block; }
.price-list__row em { font-style: normal; font-weight: 800; white-space: nowrap; }

/* ---------- Compare table ---------- */
.compare { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.compare table { min-width: 720px; }
.compare th, .compare td { padding: 14px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 15px; }
.compare th { background: var(--bg-soft); font-weight: 700; font-size: 14px; }
.compare th.is-me, .compare td.is-me { background: var(--accent-soft); }
.compare th.is-me { color: var(--accent-hover); }
.compare tr:last-child td { border-bottom: 0; }
.compare td:first-child { font-weight: 600; color: var(--ink-2); }
.compare .yes { color: var(--green); font-weight: 700; }
.compare .no { color: var(--red); font-weight: 700; }
.compare .so { color: var(--muted); }

/* ---------- Results / cases ---------- */
.results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.result-card { background: var(--navy-2); color: #dfe6f3; border-radius: 20px; padding: 30px; position: relative; overflow: hidden; }
.result-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 122, 26, .35), transparent 70%); }
.result-card__num { font-size: 44px; font-weight: 800; letter-spacing: -.02em; color: #ffb27a; line-height: 1; margin-bottom: 6px; }
.result-card__what { color: #fff; font-weight: 600; margin-bottom: 12px; }
.result-card p { color: #b9c4d9; font-size: 15px; margin-bottom: 14px; }
.result-card a { color: #fff; font-weight: 600; }
.result-card__tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #8fd9d0; margin-bottom: 14px; }

/* ---------- Metrics ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.metric { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 18px; }
.metric b { display: block; font-size: 34px; font-weight: 800; letter-spacing: -.02em; line-height: 1; color: var(--navy); margin-bottom: 8px; }
.metric span { color: var(--ink-2); font-size: 14px; }
.section--navy .metric { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); }
.section--navy .metric b { color: #ffb27a; }
.section--navy .metric span { color: #b9c4d9; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: #fff; margin-bottom: 10px; padding: 0 22px; }
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; font-weight: 700; font-size: 17px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 0; top: 50%; width: 28px; height: 28px; margin-top: -14px; border-radius: 50%; background: var(--bg-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e1626' stroke-width='2.5' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>") center/14px no-repeat; }
.faq details[open] summary::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e1626' stroke-width='2.5' stroke-linecap='round'><path d='M5 12h14'/></svg>"); }
.faq .faq__a { padding: 0 0 20px; color: var(--ink-2); }
.faq .faq__a p:last-child { margin-bottom: 0; }

/* ---------- Author / expert ---------- */
.author { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 36px; }
.author__photo { border-radius: 20px; overflow: hidden; background: linear-gradient(160deg, #e9eef7, #f7f9fc); aspect-ratio: 4 / 5; display: flex; align-items: flex-end; justify-content: center; }
.author__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.author__role { color: var(--accent-hover); font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.author h3 { font-size: 26px; margin-bottom: 12px; }
.author__facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; padding: 0; list-style: none; }
.author__facts li { background: var(--bg-soft); border-radius: 999px; padding: 6px 14px; font-size: 14px; font-weight: 600; }
.author p { color: var(--ink-2); }
.section--navy .author { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); }
.section--navy .author h3 { color: #fff; }
.section--navy .author p { color: #b9c4d9; }
.section--navy .author__facts li { background: rgba(255, 255, 255, .1); color: #fff; }

/* ---------- Guarantee ---------- */
.guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guarantee { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: var(--radius); padding: 26px; }
.guarantee h3 { font-size: 18px; }
.guarantee p { font-size: 15px; color: var(--ink-2); margin: 0; }

/* ---------- Months timeline ---------- */
.months { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.month { padding: 26px 22px; border-left: 1px solid var(--line); }
.month:first-child { border-left: 0; }
.month__when { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-hover); margin-bottom: 10px; }
.month h3 { font-size: 17px; margin-bottom: 8px; }
.month p { font-size: 14px; color: var(--ink-2); margin: 0; }
.month ul { padding-left: 18px; font-size: 14px; color: var(--ink-2); margin: 8px 0 0; }

/* ---------- Fit / not fit ---------- */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit__col { border-radius: var(--radius); padding: 28px; }
.fit__col--yes { background: var(--green-soft); }
.fit__col--no { background: var(--red-soft); }
.fit__col h3 { font-size: 20px; margin-bottom: 14px; }

/* ---------- Myths ---------- */
.myths { display: grid; gap: 14px; max-width: 900px; }
.myth { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.myth > div { padding: 20px 22px; }
.myth__m { background: var(--red-soft); }
.myth__m b, .myth__t b { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.myth__m b { color: var(--red); }
.myth__t b { color: var(--green); }
.myth p { margin: 0; font-size: 15px; }

/* ---------- Self-check ---------- */
.selfcheck { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; max-width: 860px; }
.selfcheck label { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.selfcheck label:last-of-type { border-bottom: 0; }
.selfcheck input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 3px; accent-color: var(--accent); }
.selfcheck__result { margin-top: 18px; padding: 16px 18px; border-radius: 12px; background: var(--bg-soft); font-weight: 600; }
.selfcheck__result.is-warn { background: var(--accent-soft); color: var(--accent-hover); }

/* ---------- Calculator ---------- */
.calc { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 32px; }
.calc__opts { display: grid; gap: 20px; }
.calc__group h4 { margin-bottom: 10px; font-size: 15px; }
.calc__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.calc__chips label { position: relative; }
.calc__chips input { position: absolute; opacity: 0; width: 0; height: 0; }
.calc__chips span { display: inline-block; padding: 9px 14px; border-radius: 999px; border: 1.5px solid var(--line-strong); font-size: 14px; font-weight: 600; cursor: pointer; }
.calc__chips input:checked + span { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-hover); }
.calc__out { background: var(--navy); color: #fff; border-radius: 18px; padding: 28px; display: flex; flex-direction: column; }
.calc__out small { color: #a9b5cb; }
.calc__price { font-size: 38px; font-weight: 800; letter-spacing: -.02em; line-height: 1.05; margin: 8px 0 4px; color: #ffb27a; }
.calc__price + small { margin-bottom: 18px; }
.calc__out ul { list-style: none; padding: 0; margin: 0 0 22px; font-size: 14px; color: #dfe6f3; display: grid; gap: 6px; }
.calc__out .btn { margin-top: auto; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--accent) 0%, #ff9a4d 100%); color: #fff; border-radius: 24px; padding: 40px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 6px; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, .9); }
.cta-band .btn--navy { background: var(--navy); }
.cta-band--navy { background: var(--navy-2); }
.cta-band--navy .btn { background: var(--accent); }

/* ---------- Links grid (internal linking) ---------- */
.links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.links-grid a { display: block; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink); transition: border-color .12s, transform .12s; }
.links-grid a:hover { border-color: var(--accent); color: var(--accent-hover); transform: translateY(-1px); }
.links-grid a small { display: block; font-weight: 500; color: var(--muted); font-size: 13px; }
.section--navy .links-grid a { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); color: #fff; }
.section--navy .links-grid a:hover { border-color: #ffb27a; color: #ffb27a; }
.links-inline { display: flex; flex-wrap: wrap; gap: 8px; }
.links-inline a { display: inline-block; padding: 8px 14px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); font-size: 14px; font-weight: 600; text-decoration: none; color: var(--ink); }
.links-inline a:hover { border-color: var(--accent); color: var(--accent-hover); }

/* ---------- Long-form text ---------- */
.prose { max-width: 820px; font-size: 18px; }
.prose h2 { margin-top: 1.6em; font-size: clamp(24px, 2.6vw, 32px); }
.prose h3 { margin-top: 1.4em; }
.prose img { border-radius: 14px; margin: 24px auto; }
.prose blockquote { margin: 24px 0; padding: 18px 24px; border-left: 4px solid var(--accent); background: var(--accent-soft); border-radius: 0 12px 12px 0; }
.prose table { font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose th { background: var(--bg-soft); }
.prose pre { background: var(--navy); color: #e7ecf6; padding: 18px; border-radius: 12px; overflow-x: auto; font-size: 14px; }
.prose code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92em; }
.text-cols { columns: 2; column-gap: 48px; font-size: 16px; color: var(--ink-2); }
.text-cols h3 { break-after: avoid; color: var(--ink); font-size: 19px; margin-top: 0; }
.text-cols p { break-inside: avoid; }
.quote { border-left: 4px solid var(--accent); padding: 8px 0 8px 24px; font-size: 22px; line-height: 1.45; font-weight: 500; max-width: 820px; }
.quote footer { margin-top: 12px; font-size: 15px; color: var(--muted); font-weight: 400; }
.section--navy .quote { color: #fff; }
.section--navy .quote footer { color: #a9b5cb; }

/* ---------- Process after request ---------- */
.after { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.after__item { text-align: center; padding: 28px 22px; }
.after__num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: #ffb27a; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.after__item h3 { font-size: 18px; }
.after__item p { font-size: 15px; color: var(--ink-2); margin: 0; }

/* ---------- Badges / tools ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badges span { display: inline-block; padding: 8px 14px; border-radius: 10px; background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.section--navy .badges span { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: #fff; }

/* ---------- Table plain ---------- */
.table-plain { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; overflow-x: auto; }
.table-plain th, .table-plain td { padding: 14px 18px; border-bottom: 1px solid var(--line); text-align: left; font-size: 15px; vertical-align: top; }
.table-plain th { background: var(--bg-soft); font-weight: 700; }
.table-plain tr:last-child td { border-bottom: 0; }

/* ---------- Two-column feature ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature--rev > :first-child { order: 2; }
.feature__art img { border-radius: 20px; box-shadow: var(--shadow-lg); }
.feature h2 { margin-bottom: 14px; }
.feature p { color: var(--ink-2); }

/* ---------- Blog / cases listing ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.post-card__img { aspect-ratio: 16 / 10; background: var(--bg-soft); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card h2, .post-card h3 { font-size: 19px; margin-bottom: 10px; }
.post-card h2 a, .post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--accent-hover); }
.post-card p { font-size: 15px; color: var(--ink-2); }
.post-card__result { font-weight: 700; color: var(--navy-3); font-size: 15px; }
.post-card__more { margin-top: auto; font-weight: 700; text-decoration: none; }
.admin-tools { margin-top: 12px; font-size: 13px; }
.admin-tools a { margin-right: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9c4d9; padding: 56px 0 28px; font-size: 14px; }
.site-footer a { color: #dfe6f3; text-decoration: none; }
.site-footer a:hover { color: #ffb27a; }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand__tag { color: #a9b5cb; }
.site-footer__phone { display: block; color: #fff; font-weight: 800; font-size: 20px; margin: 4px 0; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 40px; padding-top: 22px; display: grid; grid-template-columns: 1fr auto; gap: 12px 24px; align-items: start; font-size: 13px; color: #8f9cb5; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.site-footer__req { line-height: 1.6; }

/* ---------- Cookie banner ---------- */
.cookie {
    position: fixed; left: 16px; bottom: 16px; z-index: 70; display: none; width: calc(100% - 32px);
    background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
    padding: 12px 16px; max-width: 520px; font-size: 13px; line-height: 1.45; gap: 14px; align-items: center;
}
.cookie.is-visible { display: flex; }
.cookie p { margin: 0; flex: 1; }
.cookie .btn { flex: 0 0 auto; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(8, 14, 28, .6); backdrop-filter: blur(4px); }
.modal.is-open { display: flex; }
.modal__box { width: 100%; max-width: 480px; position: relative; max-height: 100%; overflow-y: auto; }
.modal__close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--bg-soft); font-size: 20px; line-height: 1; }
body.modal-open { overflow: hidden; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 12px; background: rgba(255, 255, 255, .96); border-top: 1px solid var(--line); gap: 10px; }
.sticky-cta .btn { flex: 1; padding: 13px 10px; font-size: 15px; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: 13px; color: #93a0b8; margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; }
.crumbs a { color: #c4cee0; text-decoration: none; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: #5d6b86; }
.hero--light .crumbs a { color: var(--muted); }

/* ---------- Admin compatibility ---------- */
.adminMenu { display: flex; flex-wrap: wrap; gap: 6px 14px; padding: 8px 0; font-size: 14px; border-top: 1px dashed var(--line); }
.adminMenu a { text-decoration: none; font-weight: 600; }
.admin-page { padding: 40px 0; }
.table { width: 100%; margin-bottom: 1rem; border: 1px solid var(--line); border-collapse: collapse; background: #fff; }
.table td, .table th { border: 1px solid var(--line); padding: .6rem .75rem; vertical-align: top; }
.table tr:nth-of-type(odd) { background: var(--bg-soft); }
.form-control, form input:not([type=checkbox]):not([type=radio]):not(.no-style), form select, form textarea {
    display: block; width: 100%; padding: 10px 12px; border: 1.5px solid var(--line-strong); border-radius: 10px; background: #fff; margin-bottom: 14px;
}
.form-control:focus { outline: none; border-color: var(--accent); }
.lead-form input, .lead-form textarea, .lead-form select { margin-bottom: 0; }
form button[type=submit], .btn-primary { background: var(--navy); color: #fff; border: 0; border-radius: 10px; padding: 12px 22px; font-weight: 700; cursor: pointer; }
form button[type=submit]:hover { background: var(--navy-2); }
.btn.btn-secondary { background: var(--bg-soft); color: var(--ink); border-color: var(--line-strong); }
.btn.btn-danger { background: var(--red); color: #fff; }
.textTask { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; }
.projects { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.projects img { border-radius: 12px; box-shadow: var(--shadow); }
.formTwo { display: flex; gap: 16px; justify-content: center; padding: 24px; background: var(--bg-soft); border-radius: 16px; }
.messengers { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.messengers a { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; border-radius: 12px; border: 1px solid var(--line); background: #fff; text-decoration: none; font-weight: 600; color: var(--ink); }
.messengers a:hover { border-color: var(--accent); color: var(--accent-hover); }
.messengers img { width: 36px; height: 36px; }
.section--navy .messengers a { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: #fff; }
.hidden { display: none !important; }

@media (max-width: 400px) {
    .header-phone { display: none; }
}

/* ---------- Legal pages ---------- */
.legal { max-width: 860px; font-size: 16px; }
.legal h2 { font-size: 24px; margin-top: 1.8em; }
.legal h3 { font-size: 19px; margin-top: 1.4em; }
.legal ol, .legal ul { padding-left: 1.4em; }
.legal .legal__meta { color: var(--muted); font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .nav__drop--mega { width: min(900px, calc(100vw - 40px)); left: -200px; grid-template-columns: repeat(2, 1fr); }
    .nav__drop--cols { width: 560px; }
    .links-grid { grid-template-columns: repeat(3, 1fr); }
    .metrics { grid-template-columns: repeat(2, 1fr); }
    .steps, .steps--3 { grid-template-columns: repeat(2, 1fr); }
    .months { grid-template-columns: repeat(2, 1fr); }
    .month:nth-child(3) { border-left: 0; }
    .month:nth-child(n+3) { border-top: 1px solid var(--line); }
    .site-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
    .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
    .trust-bar__item:nth-child(3) { border-left: 0; }
    .trust-bar__item:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 960px) {
    .nav, .header-actions .btn { display: none; }
    .burger { display: inline-flex; }
    .header-phone small { display: none; }
    .hero__grid, .hero--image .hero__grid, .lead-section__grid, .feature, .calc { grid-template-columns: 1fr; }
    .feature--rev > :first-child { order: 0; }
    .hero__art { order: -1; }
    .hero__art img { max-width: 420px; }
    .grid--3, .grid--4, .pain, .guarantees, .after, .post-grid, .pricing { grid-template-columns: repeat(2, 1fr); }
    .results { grid-template-columns: 1fr; }
    .author { grid-template-columns: 200px 1fr; gap: 28px; padding: 28px; }
    .text-cols { columns: 1; }
    .cta-band { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .sticky-cta { display: flex; }
    body { padding-bottom: 64px; }
    .cookie { bottom: 72px; }
}
@media (max-width: 640px) {
    body { font-size: 16px; }
    .container { padding: 0 16px; }
    .section { padding: 44px 0; }
    .hero { padding: 40px 0 48px; }
    .hero__sub { font-size: 17px; }
    .grid--2, .grid--3, .grid--4, .pain, .guarantees, .after, .post-grid, .pricing, .fit, .checks--2, .checks--3, .steps, .steps--3, .steps--2, .metrics, .links-grid, .months, .myth, .site-footer__grid, .site-footer__bottom, .trust-bar__inner { grid-template-columns: 1fr; }
    .month { border-left: 0; border-top: 1px solid var(--line); }
    .month:first-child { border-top: 0; }
    .trust-bar__item { border-left: 0; border-top: 1px solid var(--line); padding: 14px 0; }
    .trust-bar__item:first-child { border-top: 0; }
    .author { grid-template-columns: 1fr; }
    .author__photo { max-width: 260px; }
    .lead-card { padding: 22px 18px; }
    .lead-form .row-2 { grid-template-columns: 1fr; }
    .calc { padding: 20px; }
    .cta-band { padding: 26px 22px; }
    .steps--vertical .step { grid-template-columns: 1fr; }
    .steps--vertical .step h3, .steps--vertical .step p, .steps--vertical .step .step__meta { grid-column: 1; }
    .price-card__price { font-size: 30px; }
    .brand__tag { display: none; }
    .brand__name { font-size: 18px; white-space: nowrap; }
    .brand img { width: 36px; height: 32px; }
    .header-phone { font-size: 14px; }
    .site-header__inner { min-height: 64px; gap: 12px; }
    .mobile-nav { inset: 64px 0 0 0; }
    .compare table { min-width: 620px; }
}
