:root {
    --bg-main: #1f2329;
    --bg-deep: #171b20;
    --bg-panel: rgba(55, 59, 64, 0.96);
    --bg-panel-strong: rgba(66, 70, 77, 0.98);
    --line-soft: rgba(255, 255, 255, 0.08);
    --text-main: #f5f4f2;
    --text-muted: rgba(255, 255, 255, 0.72);
    --accent: #ff3a33;
    --accent-dark: #cd1f1a;
    --graphite: #4a4d53;
    --graphite-dark: #f5f4f2;
    --graphite-soft: rgba(255, 255, 255, 0.72);
    --silver: rgba(255, 255, 255, 0.22);
    --shadow-main: 0 24px 60px rgba(8, 10, 14, 0.22);
    --radius-card: 28px;
    --container: 1880px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(255, 58, 51, 0.1), transparent 22%),
        linear-gradient(180deg, #21252b 0%, #191d22 100%);
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

.site-header {
    position: relative;
    z-index: 30;
    display: grid;
    gap: 0;
    margin: 0 auto 12px;
    max-width: 1880px;
    padding: 76px 18px 0;
}

.site-header__bar,
.site-header__panel {
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(63, 68, 76, 0.92);
    box-shadow: none;
}

.site-header__bar {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 31;
    width: min(calc(100% - 36px), 1880px);
    transform: translateX(-50%);
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    border-radius: 0;
    backdrop-filter: blur(14px);
    border-bottom: 0;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.site-header__brand img {
    width: 100%;
    max-width: 196px;
    height: auto;
}

.site-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.site-header__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.35;
}

.site-header__meta-item i {
    color: #ff3a33;
    font-size: 18px;
    line-height: 1;
}

.site-header__contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-header__messengers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-header__messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.site-header__messenger:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.1);
}

.site-header__messenger i {
    font-size: 20px;
    line-height: 1;
}

.site-header__messenger--tg i {
    color: #2fa7f3;
}

.site-header__messenger--wa i {
    color: #31d067;
}

.site-header__phone {
    color: #f5f4f2;
    font-family: 'Exo 2', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.site-header__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #ffffff;
}

.site-header__panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 12px 18px 14px;
    margin-top: -1px;
    border-top: 1px solid rgba(156, 163, 176, 0.34);
    border-radius: 0 0 24px 24px;
    box-shadow: none;
}

.site-header__panel-meta {
    display: none;
}

.site-header__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-header__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header__nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.site-header__cta {
    min-height: 44px;
    padding: 10px 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, #ff544d 0%, #ff3a33 52%, #cb231c 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow:
        0 12px 24px rgba(255, 58, 51, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.site-header__drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 39;
    background: rgba(7, 10, 14, 0.48);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-header__drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    width: min(100%, 440px);
    height: 100vh;
    padding: 28px 28px 24px;
    display: grid;
    align-content: start;
    gap: 24px;
    background: linear-gradient(180deg, rgba(54, 57, 63, 0.98), rgba(41, 44, 50, 0.98));
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -24px 0 48px rgba(5, 8, 12, 0.22);
    transform: translateX(100%);
    transition: transform 0.28s ease;
}

.site-header__drawer-close {
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    cursor: pointer;
}

.site-header__drawer-close i {
    font-size: 26px;
    line-height: 1;
}

.site-header__drawer-close:hover {
    background: rgba(255, 255, 255, 0.08);
}

.site-header__drawer-brand img {
    width: 100%;
    max-width: 188px;
    height: auto;
}

.site-header__drawer-nav {
    display: grid;
    gap: 8px;
}

.site-header__drawer-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.84);
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header__drawer-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.site-header__drawer-contact {
    display: grid;
    gap: 14px;
}

.site-header__drawer-contact .site-header__phone {
    font-size: 34px;
}

.site-header__drawer-contact .site-header__panel-meta {
    display: grid;
    gap: 10px;
}

.site-header__drawer-messengers {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.site-header.is-open .site-header__drawer-backdrop {
    opacity: 1;
    visibility: visible;
}

.site-header.is-open .site-header__drawer {
    transform: translateX(0);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 28px, var(--container));
    margin: 0 auto;
}

.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: linear-gradient(180deg, #ff524b 0%, #ff3a33 52%, #cf221b 100%);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow:
        0 16px 32px rgba(255, 58, 51, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.site-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 22px 38px rgba(255, 58, 51, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    filter: brightness(1.03);
}

.section {
    position: relative;
    padding: 6px 0;
}

.section .container {
    position: relative;
    padding: 16px clamp(16px, 1.5vw, 28px);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-card);
    background:
        linear-gradient(180deg, rgba(72, 76, 82, 0.98), rgba(57, 61, 67, 0.98)),
        var(--bg-panel);
    box-shadow: var(--shadow-main);
    overflow: hidden;
}

.section .container::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 58, 51, 0.08), transparent 70%);
    pointer-events: none;
}

.hero {
    padding: 4px 0 8px;
}

.hero .container {
    display: grid;
    gap: 6px;
    align-content: start;
    background:
        radial-gradient(circle at top right, rgba(255, 58, 51, 0.08), transparent 24%),
        linear-gradient(180deg, #484c52 0%, #3f4349 100%);
}

.hero__topline {
    position: absolute;
    top: 14px;
    right: 18px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: calc(100% - 36px);
    gap: 10px 22px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(20, 23, 28, 0.44);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.97);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: lowercase;
    text-align: right;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero__topline span {
    position: relative;
}

.hero__topline span:not(:last-child)::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: -15px;
    color: rgba(255, 58, 51, 0.9);
    transform: translateY(-50%);
}

.hero__intro {
    display: grid;
    gap: 8px;
}

.hero h1,
.section h2,
.popup h2 {
    margin: 0;
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero h1 {
    max-width: 920px;
    font-size: clamp(26px, 3vw, 48px);
    line-height: 0.98;
    text-wrap: pretty;
    color: #ffffff;
}

@media (min-width: 1280px) {
    .hero h1 {
        max-width: none;
        white-space: nowrap;
    }
}

.hero p,
.section p,
.hero p {
    max-width: 980px;
}

.section h2,
.popup h2 {
    margin-bottom: 14px;
    font-size: clamp(26px, 3vw, 40px);
    text-transform: uppercase;
}

.section p {
    max-width: 780px;
}

.hero__media {
    position: relative;
    min-height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: #2c3036;
}

.hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 23, 28, 0.1) 0%, rgba(20, 23, 28, 0.02) 40%, rgba(20, 23, 28, 0.12) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
}

.hero__media img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: center 58%;
}

.hero__media-copy {
    position: absolute;
    top: 10px;
    left: 22px;
    z-index: 1;
    width: min(100%, 470px);
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(24, 27, 32, 0.58);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(8, 10, 14, 0.24);
}


.brands-section .container {
    display: grid;
    gap: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.brands-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 20px;
    align-items: end;
}

.brands-section__intro {
    display: grid;
    gap: 12px;
}

.brands-section__intro h2 {
    margin: 0;
    color: #f5f4f2;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 0.98;
    text-transform: none;
    text-wrap: balance;
}

.brands-section__lead {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.5;
}

.brands-section__stats {
    display: grid;
    gap: 12px;
}

.brands-section__stat {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(71, 75, 82, 0.92), rgba(58, 62, 69, 0.96));
    box-shadow:
        0 10px 26px rgba(10, 12, 16, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brands-section__stat strong {
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(34px, 3.2vw, 56px);
    font-weight: 800;
    line-height: 0.9;
}

.brands-section__stat span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.45;
}

.brands-section__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brands-section__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 700;
}

.brands-section__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.brand-card {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 10px;
    min-height: 106px;
    padding: 12px 8px 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.brand-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 36px;
    padding: 4px 6px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 239, 243, 0.98));
    box-shadow:
        0 8px 18px rgba(10, 12, 16, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-card__logo img {
    max-width: 46px;
    max-height: 28px;
    object-fit: contain;
    display: block;
}

.brand-card h3 {
    margin: 0;
    color: #f5f4f2;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-wrap: balance;
}

.brand-card.is-extra {
    display: none;
}

[data-brands-section].is-expanded .brand-card.is-extra {
    display: grid;
}

.brands-section__toggle {
    justify-self: center;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(77, 81, 88, 0.94), rgba(63, 67, 74, 0.98));
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.brands-section__toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 58, 51, 0.32);
    background: linear-gradient(180deg, rgba(88, 92, 99, 0.96), rgba(69, 73, 80, 0.98));
}

@media (max-width: 920px) {
    .brands-section__head {
        grid-template-columns: 1fr;
    }

    .brands-section__lead {
        max-width: 100%;
    }

    .brands-section__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .brands-section .container {
        gap: 14px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .brands-section__head {
        gap: 14px;
    }

    .brands-section__intro h2 {
        font-size: 34px;
        line-height: 0.98;
    }

    .brands-section__lead {
        font-size: 13px;
        line-height: 1.45;
    }

    .brands-section__stat {
        padding: 16px;
    }

    .brands-section__stat strong {
        font-size: 42px;
    }

    .brands-section__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .brand-card {
        min-height: 96px;
        gap: 10px;
        padding: 10px 6px 8px;
    }

    .brand-card__logo {
        width: 48px;
        height: 32px;
        padding: 3px 5px;
        border-radius: 12px;
    }

    .brand-card__logo img {
        max-width: 42px;
        max-height: 24px;
    }

    .brand-card h3 {
        font-size: 12px;
    }

    .brands-section__toggle {
        width: 100%;
    }
}

.docs-section .container {
    display: grid;
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
    background: linear-gradient(180deg, rgba(69, 73, 80, 0.98), rgba(58, 62, 69, 0.98));
    border-color: rgba(255, 255, 255, 0.06);
}

.docs-section__head {
    display: grid;
    gap: 12px;
}

.docs-section__intro {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
}

.docs-section__intro h2 {
    margin: 0;
    max-width: 980px;
    color: #f5f4f2;
    font-size: clamp(30px, 3.1vw, 58px);
    line-height: 0.98;
    text-transform: none;
    text-wrap: balance;
}

.docs-section__lead {
    margin: 0;
    max-width: 860px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.5;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.docs-card {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 14px;
    min-height: 100%;
    padding: 18px 14px 16px;
    text-align: center;
}

.docs-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 239, 243, 0.98));
    color: #363a40;
    font-family: 'Exo 2', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 14px 32px rgba(12, 14, 18, 0.12);
}

.docs-card h3 {
    margin: 0;
    color: #f5f4f2;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-wrap: balance;
}

.docs-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.45;
}

.docs-bonus {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: start;
    padding: 22px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.docs-bonus__label {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.docs-bonus__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 58, 51, 0.18), rgba(255, 58, 51, 0.08));
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.docs-bonus__label h3 {
    margin: 0 0 10px;
    color: #f5f4f2;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.12;
}

.docs-bonus__label p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.45;
}

.docs-bonus__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.45;
}

@media (max-width: 920px) {
    .site-header {
        padding: 72px 12px 0;
    }

    .site-header__bar {
        width: min(calc(100% - 24px), 1880px);
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 0;
    }

    .site-header__brand img {
        max-width: 168px;
    }

    .site-header__meta {
        display: none;
    }

    .site-header__contact {
        gap: 10px;
    }

    .site-header__phone {
        font-size: 18px;
    }

    .site-header__toggle {
        display: inline-flex;
    }

    .site-header__panel {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 10px 14px 12px;
        border-top: 0;
        border-radius: 0 0 20px 20px;
    }

    .site-header__panel-meta {
        display: none;
    }

    .site-header__panel-messengers {
        display: none;
    }

    .site-header__nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .site-header__nav a {
        justify-content: center;
        min-height: 40px;
        padding: 9px 12px;
        text-align: center;
    }

    .site-header__cta {
        width: auto;
    }

    .site-header__drawer {
        width: min(100%, 380px);
        padding: 22px 20px 20px;
    }

    .site-header__drawer-contact .site-header__phone {
        font-size: 26px;
    }

    .docs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .docs-bonus {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .docs-section .container {
        gap: 16px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .docs-section__intro {
        justify-items: start;
        text-align: left;
    }

    .docs-section__intro h2 {
        font-size: 36px;
    }

    .docs-section__lead {
        font-size: 13px;
        line-height: 1.45;
    }

    .docs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .docs-card {
        grid-template-columns: 58px minmax(0, 1fr);
        justify-items: stretch;
        align-items: start;
        text-align: left;
        column-gap: 12px;
        row-gap: 6px;
        padding: 16px 0 14px;
    }

    .docs-card__number {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .docs-card h3 {
        grid-column: 2;
        font-size: 20px;
    }

    .docs-card p {
        grid-column: 2;
        font-size: 13px;
        line-height: 1.45;
    }

    .docs-bonus {
        gap: 16px;
        padding: 18px 0 0;
        background: transparent;
    }

    .docs-bonus__label {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
    }

    .docs-bonus__icon {
        width: 58px;
        height: 58px;
        font-size: 28px;
    }

    .docs-bonus__label h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .docs-bonus__label p,
    .docs-bonus__list {
        font-size: 13px;
        line-height: 1.45;
    }
}

.advantages-section .container {
    display: grid;
    gap: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.advantages-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.advantages-section__title {
    display: grid;
    gap: 12px;
    max-width: 980px;
}

.advantages-section__title h2 {
    margin: 0;
    color: #f5f4f2;
    font-size: clamp(30px, 3vw, 56px);
    line-height: 0.98;
    text-transform: none;
    text-wrap: balance;
}

.advantages-section__controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.advantages-section__arrow {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(70, 74, 81, 0.96), rgba(57, 61, 68, 0.98));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.advantages-section__arrow i {
    font-size: 24px;
    line-height: 1;
}

.advantages-section__arrow:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 58, 51, 0.34);
    background: linear-gradient(180deg, rgba(81, 85, 92, 0.98), rgba(63, 67, 74, 1));
}

.advantages-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(420px, 1fr);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.advantages-track::-webkit-scrollbar {
    display: none;
}

.adv-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    min-height: 260px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(70, 74, 81, 0.94), rgba(57, 61, 68, 0.98));
    box-shadow:
        0 12px 30px rgba(10, 12, 16, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    scroll-snap-align: start;
}

.adv-card__icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 58, 51, 0.22), rgba(255, 58, 51, 0.1));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(255, 58, 51, 0.12);
}

.adv-card__icon i {
    font-size: 44px;
    line-height: 1;
}

.adv-card__body {
    display: grid;
    align-content: start;
    gap: 14px;
}

.adv-card__body h3 {
    margin: 0;
    color: #f5f4f2;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.14;
    text-wrap: balance;
}

.adv-card__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.52;
}

@media (max-width: 920px) {
    .advantages-track {
        grid-auto-columns: minmax(360px, 1fr);
    }

    .adv-card {
        grid-template-columns: 86px minmax(0, 1fr);
        min-height: 240px;
    }

    .adv-card__icon {
        width: 78px;
        height: 78px;
    }

    .adv-card__icon i {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .advantages-section .container {
        gap: 14px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .advantages-section__head {
        align-items: center;
    }

    .advantages-section__title h2 {
        font-size: 34px;
    }

    .advantages-section__controls {
        gap: 8px;
    }

    .advantages-section__arrow {
        width: 42px;
        height: 42px;
    }

    .advantages-section__arrow i {
        font-size: 20px;
    }

    .advantages-track {
        grid-auto-columns: 100%;
        gap: 12px;
    }

    .adv-card {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: auto;
        padding: 18px 16px;
        border-radius: 22px;
    }

    .adv-card__icon {
        width: 68px;
        height: 68px;
    }

    .adv-card__icon i {
        font-size: 30px;
    }

    .adv-card__body {
        gap: 10px;
    }

    .adv-card__body h3 {
        font-size: 20px;
    }

    .adv-card__body p {
        font-size: 13px;
        line-height: 1.45;
    }
}

.messenger-eval-section .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.96fr);
    gap: 0;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 58, 51, 0.12), transparent 22%),
        linear-gradient(90deg, #42464d 0%, #373a40 50%, #1f2329 50%, #1f2329 100%);
    border-color: rgba(255, 255, 255, 0.05);
}

.messenger-eval__content {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px 20px 16px;
    color: #ffffff;
}

.messenger-eval__content .section-kicker {
    justify-self: start;
    border-color: rgba(255, 58, 51, 0.24);
    background: rgba(255, 58, 51, 0.08);
}

.messenger-eval__content h2 {
    margin: 0;
    max-width: 520px;
    color: #f5f4f2;
    font-size: clamp(24px, 2.25vw, 38px);
    line-height: 0.96;
    text-transform: none;
    text-wrap: balance;
}

.messenger-eval__lead {
    margin: 0;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    line-height: 1.38;
}

.messenger-eval__note {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.38;
}

.messenger-eval__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.messenger-eval__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 176px;
    min-height: 44px;
    padding: 9px 16px;
    border-radius: 14px;
    background: rgba(31, 35, 41, 0.76);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.messenger-eval__button i {
    font-size: 22px;
    line-height: 1;
}

.messenger-eval__button--wa i {
    color: #31d067;
}

.messenger-eval__button--tg i {
    color: #2fa7f3;
}

.messenger-eval__media {
    min-height: 100%;
    background: #1f2329;
}

.messenger-eval__media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 920px) {
    .messenger-eval-section .container {
        grid-template-columns: 1fr;
        background:
            linear-gradient(180deg, #1f2329 0%, #1f2329 30%, #3a3f46 30%, #3a3f46 100%);
    }

    .messenger-eval__media {
        order: 1;
    }

    .messenger-eval__content {
        order: 2;
    }

    .messenger-eval__media img {
        min-height: 200px;
        max-height: 240px;
    }
}

@media (max-width: 640px) {
    .messenger-eval-section .container {
        background:
            linear-gradient(180deg, #1f2329 0%, #1f2329 24%, #3a3f46 24%, #3a3f46 100%);
    }

    .messenger-eval__content {
        gap: 9px;
        padding: 14px 16px 14px;
    }

    .messenger-eval__content h2 {
        font-size: 28px;
    }

    .messenger-eval__lead,
    .messenger-eval__note {
        font-size: 12px;
        line-height: 1.38;
    }

    .messenger-eval__actions {
        display: grid;
        gap: 10px;
    }

    .messenger-eval__button {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        font-size: 14px;
    }

    .messenger-eval__media img {
        min-height: 160px;
        max-height: 180px;
    }
}

.faq-section .container {
    display: grid;
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
    background: linear-gradient(180deg, rgba(67, 71, 78, 0.98), rgba(56, 60, 67, 0.98));
    border-color: rgba(255, 255, 255, 0.06);
}

.faq-section__head {
    display: grid;
    gap: 12px;
}

.faq-section__head h2 {
    margin: 0;
    max-width: 920px;
    color: #f5f4f2;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 0.98;
    text-transform: none;
    text-wrap: balance;
}

.faq-section__lead {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.5;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(77, 81, 88, 0.92), rgba(64, 68, 75, 0.96));
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    padding: 18px 56px 18px 18px;
    color: #f5f4f2;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #ff3a33;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item__body {
    display: grid;
    gap: 12px;
    padding: 0 18px 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.52;
}

.faq-item__body p,
.faq-item__body ul {
    margin: 0;
}

.faq-item__body ul {
    display: grid;
    gap: 8px;
    padding-left: 18px;
}

@media (max-width: 640px) {
    .site-header {
        margin-bottom: 10px;
        padding: 64px 10px 0;
    }

    .site-header__bar {
        width: min(calc(100% - 20px), 1880px);
        padding: 10px 12px;
        border-radius: 0;
    }

    .site-header__brand img {
        max-width: 146px;
    }

    .site-header__contact {
        gap: 8px;
    }

    .site-header__messengers {
        display: none;
    }

    .site-header__phone {
        font-size: 15px;
    }

    .site-header__toggle {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .site-header__panel {
        display: none;
    }

    .site-header__panel-meta {
        display: none;
    }

    .site-header__drawer {
        width: 100%;
        padding: 20px 18px 18px;
    }

    .site-header__drawer-nav a {
        min-height: 44px;
        font-size: 17px;
    }

    .site-header__drawer-contact .site-header__phone {
        font-size: 22px;
    }

    .faq-section .container {
        gap: 16px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .faq-section__head h2 {
        font-size: 34px;
    }

    .faq-section__lead,
    .faq-item__body {
        font-size: 13px;
        line-height: 1.45;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 18px;
    }

    .faq-item summary {
        padding: 15px 46px 15px 15px;
        font-size: 17px;
    }

    .faq-item summary::after {
        right: 14px;
        font-size: 24px;
    }

    .faq-item__body {
        gap: 10px;
        padding: 0 15px 15px;
    }
}

.geography-section .container {
    display: grid;
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.geography-section__head {
    display: grid;
    gap: 12px;
}

.geography-section__intro {
    display: grid;
    gap: 12px;
}

.geography-section__intro h2 {
    margin: 0;
    max-width: 980px;
    color: #f5f4f2;
    font-size: clamp(28px, 3vw, 50px);
    line-height: 0.98;
    text-transform: none;
    text-wrap: balance;
}

.geography-section__lead {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.5;
}

.geography-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 18px;
    align-items: start;
}

.geography-section__cities {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.geography-list {
    margin: 0;
    padding-left: 18px;
    columns: 3;
    column-gap: 28px;
    color: #f5f4f2;
    font-size: 16px;
    line-height: 1.55;
}

.geography-list li {
    break-inside: avoid;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.84);
}

.geography-section__map {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.geography-section__map img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 920px) {
    .geography-section__layout {
        grid-template-columns: 1fr;
    }

    .geography-list {
        columns: 2;
    }
}

@media (max-width: 640px) {
    .geography-section .container {
        gap: 16px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .geography-section__intro h2 {
        font-size: 34px;
    }

    .geography-section__lead {
        font-size: 13px;
        line-height: 1.45;
    }

    .geography-section__cities,
    .geography-section__map {
        padding: 0;
        border-radius: 0;
    }

    .geography-list {
        columns: 1;
        column-gap: 0;
        font-size: 14px;
        line-height: 1.45;
    }
}
.hero__media-text {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    line-height: 1.45;
}

.hero__badge {
    position: absolute;
    top: 69%;
    left: clamp(40px, 7vw, 120px);
    z-index: 1;
    width: min(100%, 420px);
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(33, 36, 42, 0.72);
    backdrop-filter: blur(8px);
    text-align: left;
    transform: translateY(-50%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.hero__badge strong {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(24px, 2.2vw, 38px);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    text-wrap: pretty;
}

.hero__badge span {
    max-width: 340px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 14px;
    line-height: 1.35;
}

.hero__lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2px 10px;
    align-items: end;
}

.info-tabs-section .container {
    display: grid;
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at top left, rgba(255, 58, 51, 0.08), transparent 28%),
        linear-gradient(180deg, #474b52 0%, #3f4349 100%);
    overflow: hidden;
}

.info-tabs__head {
    display: grid;
    gap: 8px;
    max-width: 920px;
}

.info-tabs__head .section-kicker {
    justify-self: start;
    color: #ffffff;
    border-color: rgba(255, 58, 51, 0.26);
    background: rgba(255, 58, 51, 0.08);
}

.info-tabs__head h2 {
    margin: 0;
    max-width: 820px;
    color: #ffffff;
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 0.96;
}

.info-tabs__lead {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.42;
}

.info-tabs {
    display: grid;
    gap: 14px;
}

.info-tabs__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
}

.info-tabs__button {
    min-height: 48px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(33, 36, 42, 0.48);
    color: rgba(255, 255, 255, 0.72);
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.info-tabs__button:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(33, 36, 42, 0.64);
}

.info-tabs__button.is-active {
    color: #ffffff;
    border-color: rgba(255, 58, 51, 0.28);
    background: linear-gradient(180deg, rgba(255, 58, 51, 0.2), rgba(255, 58, 51, 0.08));
    box-shadow:
        0 14px 26px rgba(16, 18, 22, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.info-tabs__panels {
    position: relative;
}

.info-tabs__panel {
    position: relative;
    display: grid;
    min-height: 0;
    padding: 18px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(39, 42, 48, 0.48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.info-tabs__panel[hidden] {
    display: none;
}

.info-tabs__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    max-width: 900px;
}

.info-tabs__intro {
    display: grid;
    gap: 8px;
}

.info-tabs__intro h3 {
    margin: 0;
    max-width: 760px;
    color: #ffffff;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.04;
}

.info-tabs__intro p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.45;
}

.info-tabs__list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-tabs__list li {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(14px, 1.15vw, 17px);
    line-height: 1.35;
}

.info-tabs__list li::before {
    content: '';
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(255, 58, 51, 0.08);
}

.info-tabs__watermark {
    position: absolute;
    right: 18px;
    bottom: 8px;
    color: rgba(255, 255, 255, 0.05);
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 920px) {
    .info-tabs__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-tabs__panel {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .info-tabs-section .container {
        gap: 14px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .info-tabs__head {
        gap: 8px;
    }

    .info-tabs__head h2 {
        font-size: 24px;
        line-height: 1;
    }

    .info-tabs__lead {
        font-size: 12px;
        line-height: 1.4;
    }

    .info-tabs {
        gap: 12px;
    }

    .info-tabs__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding-bottom: 0;
    }

    .info-tabs__button {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        padding: 9px 12px;
        border-radius: 14px;
        font-size: 13px;
    }

    .info-tabs__panel {
        padding: 16px 14px 18px;
        border-radius: 20px;
    }

    .info-tabs__content {
        gap: 12px;
    }

    .info-tabs__intro {
        gap: 8px;
    }

    .info-tabs__intro h3 {
        font-size: 21px;
        line-height: 1.02;
    }

    .info-tabs__intro p {
        font-size: 12px;
        line-height: 1.42;
    }

    .info-tabs__list {
        gap: 8px;
    }

    .info-tabs__list li {
        padding-left: 15px;
        font-size: 14px;
        line-height: 1.38;
    }

    .info-tabs__list li::before {
        width: 6px;
        height: 6px;
    }

    .info-tabs__watermark {
        right: 12px;
        bottom: 8px;
        font-size: 54px;
    }
}

.hero__lead-caption {
    grid-column: 1 / 2;
    color: rgba(255, 210, 208, 0.92);
    font-weight: 700;
    font-size: 13px;
    margin: 0;
}

.lead-form {
    display: grid;
    gap: 6px;
    margin-top: 0;
}

.hero-form {
    grid-column: 1 / 2;
    grid-template-columns: minmax(140px, 0.7fr) minmax(220px, 1.2fr) minmax(200px, 1fr) auto;
    align-items: center;
    margin-top: 0;
}

.hero-form .site-button {
    min-width: 240px;
}

.lead-form input {
    width: 100%;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid rgba(74, 77, 83, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #2f3238;
    outline: none;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.lead-form input::placeholder {
    color: rgba(74, 77, 83, 0.45);
}

.lead-form input:focus {
    border-color: rgba(255, 58, 51, 0.65);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 58, 51, 0.12);
}

.hero__messengers {
    display: grid;
    gap: 2px;
    align-self: end;
}

.hero__messengers span {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-align: right;
    margin: 0;
}

.hero__messengers-list {
    display: flex;
    gap: 8px;
}

.hero__messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid rgba(74, 77, 83, 0.08);
    border-radius: 12px;
    background: var(--graphite);
    color: #ffffff;
    font-weight: 800;
}

.hero__messenger--wa {
    background: linear-gradient(180deg, rgba(36, 191, 95, 0.26), rgba(23, 118, 58, 0.22));
}

.hero__messenger--tg {
    background: linear-gradient(180deg, rgba(36, 161, 222, 0.26), rgba(15, 95, 146, 0.22));
}

.hero__policy {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
}

.hero__policy input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(58, 62, 68, 0.96), rgba(48, 52, 58, 0.98));
}

.hero__feature {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 13px;
    row-gap: 4px;
    align-items: start;
    padding: 10px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__feature-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    grid-row: 1 / 3;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 244, 247, 0.95));
    color: var(--graphite);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero__feature-icon i {
    font-size: 24px;
    line-height: 1;
    color: currentColor;
}

.hero__feature-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 58, 51, 0.12);
}

.hero__feature:last-child {
    border-right: 0;
}

.hero__feature strong {
    align-self: end;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
}

.hero__feature span {
    grid-column: 2 / 3;
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
}

.popup[hidden] {
    display: none;
}

.popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: 24px 16px;
}

.popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 12, 0.78);
    backdrop-filter: blur(12px);
}

.popup__body {
    position: relative;
    width: min(100%, 460px);
    margin: 8vh auto 0;
    padding: 34px 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 241, 0.98)),
        var(--bg-panel-strong);
    box-shadow: var(--shadow-main);
}

.popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #2f3238;
    cursor: pointer;
}

.popup-form {
    width: min(100%, 560px);
    margin-top: 6vh;
    padding: 30px 28px 26px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(255, 58, 51, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 249, 0.98));
    box-shadow:
        0 24px 60px rgba(8, 10, 14, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.popup-form__head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.popup-form__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    width: fit-content;
    padding: 7px 14px;
    border: 1px solid rgba(255, 58, 51, 0.22);
    border-radius: 999px;
    background: rgba(255, 58, 51, 0.06);
    color: #d12a24;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.popup-form h2 {
    margin: 0;
    color: #2f3238;
    font-size: clamp(28px, 3vw, 40px);
    text-transform: none;
    line-height: 0.98;
}

.popup-form__head p {
    margin: 0;
    color: rgba(47, 50, 56, 0.72);
    font-size: 15px;
    line-height: 1.5;
}

.popup-form__form {
    display: grid;
    gap: 12px;
}

.popup-form__form input[type="text"],
.popup-form__form input[type="tel"] {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid rgba(74, 77, 83, 0.14);
    border-radius: 18px;
    background: #ffffff;
    color: #2f3238;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.popup-form__form input::placeholder {
    color: rgba(74, 77, 83, 0.44);
}

.popup-form__form input:focus {
    border-color: rgba(255, 58, 51, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 58, 51, 0.1);
}

.popup-form__policy {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 2px;
    color: rgba(47, 50, 56, 0.76);
    font-size: 13px;
    line-height: 1.45;
}

.popup-form__policy input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.popup-form__policy a {
    color: #d12a24;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.popup-form__submit {
    width: 100%;
    min-height: 56px;
    margin-top: 4px;
    border-radius: 18px;
    font-size: 18px;
}

.site-footer {
    padding: 26px 0 40px;
}

.site-footer .container {
    display: grid;
    gap: 22px;
    padding: 22px 28px;
    border: 1px solid var(--line-soft);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(67, 71, 79, 0.94), rgba(44, 48, 55, 0.96)),
        rgba(55, 59, 64, 0.92);
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(200px, 0.8fr) minmax(260px, 0.9fr);
    gap: 28px;
}

.site-footer__brand,
.site-footer__nav,
.site-footer__contacts {
    display: grid;
    align-content: start;
}

.site-footer__brand {
    gap: 14px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
}

.site-footer__logo img {
    width: 100%;
    max-width: 212px;
    height: auto;
}

.site-footer__lead,
.site-footer__contacts p,
.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.5;
}

.site-footer__cta {
    justify-self: start;
    min-height: 46px;
    padding: 11px 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, #ff544d 0%, #ff3a33 52%, #cb231c 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow:
        0 12px 24px rgba(255, 58, 51, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.site-footer__nav {
    gap: 10px;
}

.site-footer__nav h3,
.site-footer__contacts h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.site-footer__nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.site-footer__nav a:hover,
.site-footer__top:hover {
    color: #ffffff;
}

.site-footer__contacts {
    gap: 10px;
}

.site-footer__phone {
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.site-footer__messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.site-footer__messenger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.site-footer__messenger i {
    font-size: 18px;
    line-height: 1;
}

.site-footer__messenger--tg i {
    color: #2fa7f3;
}

.site-footer__messenger--wa i {
    color: #31d067;
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__top {
    justify-self: end;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 800;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-section .container {
    display: grid;
    gap: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.process-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 18px;
    align-items: end;
}

.process-section__head h2 {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--graphite-dark);
    font-size: clamp(24px, 2.6vw, 42px);
    line-height: 1.02;
    text-transform: none;
    text-wrap: pretty;
}

.process-section__lead {
    margin: 0;
    max-width: 390px;
    justify-self: end;
    color: var(--graphite-soft);
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.45;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.process-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 100%;
    padding: 18px 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(78, 82, 89, 0.9), rgba(68, 72, 79, 0.94));
    box-shadow:
        0 8px 18px rgba(10, 12, 16, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 58, 51, 0.08), transparent 72%);
    pointer-events: none;
}

.process-card__number {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(74, 77, 83, 0.08), rgba(74, 77, 83, 0.04)),
        #ffffff;
    color: #3f4349;
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 8px 18px rgba(44, 49, 56, 0.05);
    position: absolute;
    top: 18px;
    left: 16px;
}

.process-card__number::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 58, 51, 0.1);
}

.process-card h3 {
    margin: 0;
    padding-left: 66px;
    min-height: 52px;
    display: flex;
    align-items: center;
    color: #f5f4f2;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.18;
}

.process-card p {
    margin: 0;
    max-width: none;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.45;
}

.compare-section .container {
    display: grid;
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 22px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.compare-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 16px;
    align-items: end;
}

.compare-section__head h2 {
    margin: 10px 0 0;
    color: var(--graphite-dark);
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1;
    text-transform: none;
    text-wrap: balance;
}

.compare-section__lead {
    margin: 0;
    max-width: 500px;
    justify-self: end;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.compare-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.compare-summary__item,
.compare-board__table {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(74, 78, 85, 0.9), rgba(63, 67, 74, 0.94));
    box-shadow:
        0 8px 20px rgba(10, 12, 16, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.compare-summary__item {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px 18px 16px;
}

.compare-summary__item strong {
    color: #f5f4f2;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.compare-summary__item span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.45;
}

.compare-board {
    display: grid;
    gap: 0;
}

.compare-board__table {
    overflow: hidden;
}

.compare-row {
    display: grid;
    grid-template-columns: minmax(200px, 1.2fr) repeat(3, minmax(140px, 1fr));
}

.compare-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: 16px 18px;
    color: #f5f4f2;
    font-size: 15px;
    text-align: center;
}

.compare-cell:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-cell--label {
    justify-content: flex-start;
    text-align: left;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.03);
}

.compare-cell--accent {
    background: linear-gradient(180deg, rgba(255, 58, 51, 0.1), rgba(255, 58, 51, 0.04));
}

.compare-row--head .compare-cell {
    min-height: 70px;
    font-size: 14px;
    font-weight: 800;
}

.compare-row--head .compare-cell--accent {
    color: #cd1f1a;
}

.compare-check,
.compare-rate {
    font-weight: 800;
    letter-spacing: 0.08em;
}

.compare-check--full {
    color: #f5f4f2;
}

.compare-check--mid {
    color: rgba(255, 255, 255, 0.72);
}

.compare-check--weak {
    color: rgba(255, 255, 255, 0.4);
}

.compare-rate--strong {
    color: #f5f4f2;
}

.compare-rate--mid {
    color: rgba(255, 255, 255, 0.74);
}

.compare-rate--weak {
    color: #ff867f;
}

.cta-section .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(90deg, #42464d 0%, #373a40 52%, #1f2329 52%, #1f2329 100%);
}

.cta-section__content {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px 24px 20px;
    color: #ffffff;
}

.cta-section__content .section-kicker {
    display: inline-flex;
    justify-self: start;
    border-color: rgba(255, 58, 51, 0.24);
    background: rgba(255, 58, 51, 0.08);
    color: #ffffff;
}

.cta-section__content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 2.8vw, 48px);
    line-height: 0.96;
    text-transform: none;
    text-wrap: balance;
}

.cta-section__lead {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.4;
}

.cta-form {
    gap: 10px;
    margin-top: 0;
}

.cta-form__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cta-form input {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.cta-form input:focus {
    background: rgba(255, 255, 255, 0.12);
}

.cta-form__policy {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.cta-form__policy input {
    width: 18px;
    height: 18px;
    accent-color: #ffffff;
}

.cta-form__submit {
    min-height: 48px;
    width: 100%;
    justify-content: center;
    background: linear-gradient(180deg, #ff544d 0%, #ff3a33 52%, #cb231c 100%);
    box-shadow:
        0 16px 30px rgba(255, 58, 51, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.cta-section__messengers {
    display: grid;
    gap: 8px;
    margin-top: 4px;
}

.cta-section__messengers > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cta-section__messenger-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-section__messenger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 800;
}

.cta-section__messenger i {
    font-size: 22px;
    line-height: 1;
}

.cta-section__messenger--wa {
    background: linear-gradient(180deg, #39d36d 0%, #1fb653 100%);
}

.cta-section__messenger--tg {
    background: linear-gradient(180deg, #39b8ff 0%, #1691e5 100%);
}

.cta-section__media {
    position: relative;
    min-height: 420px;
    background: #1f2329;
}

.cta-section__media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center 36%;
    display: block;
}

.categories-section .container {
    display: grid;
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
    background:
        radial-gradient(circle at top left, rgba(255, 58, 51, 0.05), transparent 20%),
        linear-gradient(180deg, #45484f 0%, #3d4046 100%);
    border-color: rgba(255, 255, 255, 0.05);
}

.categories-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 18px;
    align-items: end;
}

.categories-section .section-kicker {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.categories-section__head h2 {
    margin: 10px 0 0;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 46px);
    line-height: 1;
    text-transform: none;
    text-wrap: balance;
}

.categories-section__lead {
    margin: 0;
    max-width: 430px;
    justify-self: end;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.category-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 18px;
    align-content: start;
    align-items: start;
    min-height: 100%;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.category-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: #363a40;
    box-shadow: 0 12px 28px rgba(14, 15, 18, 0.14);
    margin-top: 6px;
}

.category-card__icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.category-card__icon i {
    font-size: 30px;
    line-height: 1;
}

.category-card__icon--blue {
    background: linear-gradient(180deg, #7fc7ff 0%, #4b91ff 100%);
    color: #ffffff;
}

.category-card__icon--green {
    background: linear-gradient(180deg, #9ce7ad 0%, #41b96d 100%);
    color: #ffffff;
}

.category-card__icon--amber {
    background: linear-gradient(180deg, #ffd37f 0%, #f3a11f 100%);
    color: #ffffff;
}

.category-card__icon--red {
    background: linear-gradient(180deg, #ff8b84 0%, #ff3a33 100%);
    color: #ffffff;
}

.category-card__icon--orange {
    background: linear-gradient(180deg, #ffbf7d 0%, #ff7a1a 100%);
    color: #ffffff;
}

.category-card__icon--violet {
    background: linear-gradient(180deg, #b79cff 0%, #6d63ff 100%);
    color: #ffffff;
}

.category-card__body {
    display: grid;
    gap: 10px;
    align-content: start;
    padding-top: 4px;
}

.category-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.category-card p {
    margin: 0;
    max-width: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.45;
}

.category-card__details {
    display: none;
}

.categories-info {
    display: grid;
    gap: 18px;
}

.categories-info__row {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.categories-info__label {
    display: grid;
    gap: 14px;
    align-items: start;
}

.categories-info__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 244, 247, 0.98));
    color: #3f4349;
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.categories-info__label h3 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.categories-info__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.45;
}

@media (max-width: 920px) {
    .site-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .site-footer__top {
        justify-self: start;
    }

    .cta-section .container {
        grid-template-columns: 1fr;
        background: #1f2329;
    }

    .cta-section__content {
        order: 2;
        background: linear-gradient(180deg, #42464d 0%, #373a40 24%, #1f2329 24%, #1f2329 100%);
    }

    .cta-section__media {
        order: 1;
        min-height: 320px;
    }

    .cta-form__grid {
        grid-template-columns: 1fr;
    }

    .compare-section__head {
        grid-template-columns: 1fr;
    }

    .compare-section__lead {
        justify-self: start;
        max-width: 760px;
    }

    .compare-board {
        grid-template-columns: 1fr;
    }

    .compare-row {
        grid-template-columns: minmax(180px, 1.2fr) repeat(3, minmax(110px, 1fr));
    }

    .categories-section__head {
        grid-template-columns: 1fr;
    }

    .categories-section__lead {
        justify-self: start;
        max-width: 760px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .categories-info__row {
        grid-template-columns: 1fr;
    }

    .process-section__head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .process-section__lead {
        justify-self: start;
        max-width: 760px;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero .container {
        min-height: auto;
    }

    .hero__lead {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .hero-form {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .hero-form .site-button,
    .hero__messenger {
        width: 100%;
        min-width: 0;
    }

    .hero__messengers span {
        text-align: left;
    }

    .hero__messengers-list {
        flex-direction: column;
    }

    .hero-form .site-button,
    .hero__messenger {
        min-height: 44px;
    }

    .hero__badge {
        top: auto;
        left: 18px;
        right: 18px;
        bottom: 18px;
        transform: none;
    }

    .hero__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero__feature:nth-child(2) {
        border-right: 0;
    }

    .hero__feature:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 22px 0 34px;
    }

    .site-footer .container {
        gap: 18px;
        padding: 18px 16px;
        border-radius: 22px;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .site-footer__logo img {
        max-width: 184px;
    }

    .site-footer__lead,
    .site-footer__contacts p,
    .site-footer__bottom p,
    .site-footer__nav a {
        font-size: 13px;
        line-height: 1.45;
    }

    .site-footer__nav h3,
    .site-footer__contacts h3 {
        font-size: 16px;
    }

    .site-footer__phone {
        font-size: 22px;
    }

    .site-footer__messengers {
        flex-direction: column;
    }

    .site-footer__messenger {
        justify-content: center;
    }

    .site-footer__bottom {
        gap: 10px;
        padding-top: 14px;
    }

    .container {
        width: min(100% - 20px, var(--container));
    }

    .section .container,
    .hero .container {
        padding: 16px 12px;
        border-radius: 22px;
    }

    .cta-section .container {
        border-radius: 20px;
    }

    .cta-section__content {
        gap: 10px;
        padding: 14px 12px 12px;
    }

    .cta-section__content h2 {
        font-size: 24px;
        line-height: 1;
    }

    .cta-section__lead {
        font-size: 12px;
        line-height: 1.32;
    }

    .cta-section__lead {
        display: none;
    }

    .cta-form__grid {
        gap: 8px;
    }

    .cta-form {
        gap: 8px;
        margin-top: 16px;
    }

    .cta-form input {
        min-height: 40px;
        padding: 8px 12px;
        border-radius: 12px;
    }

    .cta-form__policy {
        gap: 10px;
        font-size: 12px;
    }

    .cta-form__submit {
        min-height: 44px;
        padding: 10px 16px;
    }

    .cta-section__messengers {
        gap: 8px;
        margin-top: 2px;
    }

    .cta-section__messengers > span {
        font-size: 11px;
    }

    .cta-section__messenger-list {
        flex-direction: column;
        gap: 8px;
    }

    .cta-section__messenger {
        min-height: 42px;
        padding: 10px 14px;
        justify-content: center;
    }

    .cta-section__media {
        min-height: 168px;
    }

    .cta-section__media img {
        min-height: 168px;
        object-position: center 38%;
    }

    .compare-section .container {
        gap: 10px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .compare-section__head h2 {
        font-size: 24px;
    }

    .compare-section__lead {
        font-size: 12px;
        line-height: 1.35;
    }

    .compare-summary {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .compare-summary__item,
    .compare-board__table {
        border-radius: 18px;
    }

    .compare-summary__item {
        gap: 8px;
        padding: 12px;
    }

    .compare-summary__item strong {
        font-size: 15px;
    }

    .compare-summary__item span {
        font-size: 12px;
        line-height: 1.35;
    }

    .compare-board {
        gap: 8px;
    }

    .compare-board__table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .compare-row--head {
        display: grid;
    }

    .compare-row {
        grid-template-columns: 144px 134px 134px 120px;
        min-width: 532px;
        margin: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .compare-cell {
        min-height: 58px;
        justify-content: center;
        padding: 9px 10px;
        text-align: center;
        font-size: 12px;
        line-height: 1.24;
        word-break: normal;
        overflow-wrap: break-word;
        white-space: normal;
        hyphens: auto;
        text-wrap: pretty;
    }

    .compare-cell:not(:last-child) {
        border-right: 1px solid rgba(74, 77, 83, 0.08);
        border-bottom: 0;
    }

    .compare-cell--label {
        padding: 9px 10px;
        background: transparent;
        font-size: 12px;
        justify-content: flex-start;
        text-align: left;
        text-wrap: pretty;
    }

    .compare-row--head .compare-cell {
        min-height: 54px;
        font-size: 11px;
        line-height: 1.15;
    }

    .compare-check,
    .compare-rate {
        letter-spacing: 0;
        line-height: 1.18;
    }

    .compare-rate {
        font-size: 11px;
    }

    .categories-section .container {
        gap: 10px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .categories-section__head h2 {
        font-size: 24px;
    }

    .categories-section__lead {
        font-size: 12px;
        line-height: 1.35;
    }

    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .category-card {
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 14px;
        row-gap: 0;
        align-items: start;
        gap: 0;
        padding: 12px 12px;
        border-radius: 16px;
    }

    .category-card__icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        grid-row: 1 / 3;
        margin-top: 2px;
        margin-left: 2px;
    }

    .category-card__icon svg {
        width: 18px;
        height: 18px;
    }

    .category-card__icon i {
        font-size: 18px;
    }

    .category-card > h3,
    .category-card > p,
    .category-card__body > h3,
    .category-card__body > p {
        display: none;
    }

    .category-card__body {
        display: block;
        min-width: 0;
        padding-top: 0;
    }

    .category-card__details {
        display: block;
        grid-column: 2;
        min-width: 0;
    }

    .category-card__details summary {
        position: relative;
        display: block;
        min-height: 0;
        padding: 2px 22px 0 0;
        color: #ffffff;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.2;
        cursor: pointer;
        list-style: none;
        text-wrap: balance;
    }

    .category-card__details summary::-webkit-details-marker {
        display: none;
    }

    .category-card__details summary::after {
        content: '+';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.72);
        font-size: 15px;
        font-weight: 700;
    }

    .category-card__details[open] summary::after {
        content: '-';
    }

    .category-card__details p {
        margin-top: 6px;
        font-size: 11px;
        line-height: 1.3;
    }

    .category-card__details[open] {
        padding-top: 0;
    }

    .categories-info {
        gap: 8px;
    }

    .categories-info__row {
        gap: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .categories-info__badge {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 15px;
    }

    .categories-info__label h3 {
        font-size: 15px;
        line-height: 1.2;
    }

    .categories-info__list {
        gap: 6px;
        font-size: 12px;
        line-height: 1.35;
    }

    .process-section .container {
        gap: 10px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .process-section__head h2 {
        margin-top: 8px;
        font-size: 24px;
    }

    .process-section__lead {
        font-size: 12px;
        line-height: 1.35;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .process-card {
        grid-template-columns: 72px minmax(0, 1fr);
        column-gap: 0;
        row-gap: 8px;
        align-items: start;
        gap: 0;
        padding: 12px;
        border-radius: 16px;
    }

    .process-card__number {
        position: static;
        top: auto;
        left: auto;
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: start;
        width: 44px;
        height: 44px;
        margin-top: 4px;
        margin-left: 6px;
        border-radius: 14px;
        font-size: 16px;
    }

    .process-card h3 {
        margin: 0;
        grid-column: 2;
        grid-row: 1;
        padding-top: 2px;
        padding-left: 0;
        min-height: 0;
        display: block;
        align-self: start;
        font-size: 16px;
        line-height: 1.18;
    }

    .process-card p {
        margin: 0;
        grid-column: 2;
        grid-row: 2;
        padding-top: 2px;
        padding-left: 0;
        font-size: 12px;
        line-height: 1.35;
    }
    .hero__topline {
        justify-content: flex-start;
        gap: 10px 22px;
        font-size: 13px;
    }

    .hero__media,
    .hero__media img {
        min-height: 180px;
    }

    .hero__media {
        min-height: auto;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .hero__media::after,
    .hero__media img {
        display: none;
    }

    .hero__topline {
        position: static;
        display: grid;
        justify-content: stretch;
        text-align: left;
        top: 10px;
        right: auto;
        left: auto;
        max-width: 100%;
        gap: 8px;
        font-size: 16px;
        font-weight: 800;
        line-height: 1.2;
        color: var(--graphite-dark);
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        margin-bottom: 10px;
    }

    .hero__topline span {
        position: relative;
        display: block;
        padding-left: 18px;
    }

    .hero__topline span:not(:last-child)::after {
        content: none;
    }

    .hero__topline span::before {
        content: '';
        position: absolute;
        top: 0.42em;
        left: 0;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(255, 58, 51, 0.12);
    }

    .hero__media-copy {
        display: none;
    }

    .hero__badge {
        display: none;
    }

    .hero__badge span {
        max-width: none;
        font-size: 13px;
    }

    .hero__lead-caption {
        font-size: 15px;
        color: rgba(255, 220, 218, 0.96);
    }

    .hero__features {
        grid-template-columns: 1fr;
    }

    .hero__feature {
        grid-template-columns: 38px minmax(0, 1fr);
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero__feature:last-child {
        border-bottom: 0;
    }

    .popup__body {
        padding: 28px 18px 22px;
    }
}


/* Premium glass refresh */
:root {
    --bg-main: #11151b;
    --bg-deep: #090c11;
    --bg-panel: rgba(45, 50, 58, 0.44);
    --bg-panel-strong: rgba(54, 60, 70, 0.58);
    --line-soft: rgba(255, 255, 255, 0.16);
    --glass-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055) 46%, rgba(255, 255, 255, 0.095));
    --glass-bg-dark: linear-gradient(145deg, rgba(62, 70, 82, 0.58), rgba(26, 31, 39, 0.42) 52%, rgba(78, 86, 98, 0.36));
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow:
        0 24px 70px rgba(2, 6, 12, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06);
    --shadow-main:
        0 28px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body {
    background:
        radial-gradient(circle at 12% 6%, rgba(255, 58, 51, 0.18), transparent 26%),
        radial-gradient(circle at 88% 12%, rgba(92, 134, 255, 0.14), transparent 28%),
        radial-gradient(circle at 52% 54%, rgba(255, 255, 255, 0.055), transparent 34%),
        linear-gradient(135deg, #171c23 0%, #0d1117 46%, #171a20 100%);
}

body::before {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='208' viewBox='0 0 240 208'%3E%3Cdefs%3E%3Cfilter id='s' x='-40%25' y='-40%25' width='180%25' height='180%25'%3E%3CfeDropShadow dx='0' dy='8' stdDeviation='6' flood-color='%23000000' flood-opacity='.58'/%3E%3C/filter%3E%3ClinearGradient id='a' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop stop-color='%23363a40' offset='0'/%3E%3Cstop stop-color='%231b1f24' offset='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop stop-color='%232a2f35' offset='0'/%3E%3Cstop stop-color='%2310151b' offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg opacity='.78'%3E%3Cpath d='M60 4 112 34v60l-52 30L8 94V34Z' fill='url(%23a)' stroke='%23424850' stroke-opacity='.45' filter='url(%23s)'/%3E%3Cpath d='M180 4 232 34v60l-52 30-52-30V34Z' fill='url(%23b)' stroke='%23394149' stroke-opacity='.34'/%3E%3Cpath d='M120 86 172 116v60l-52 30-52-30v-60Z' fill='url(%23a)' stroke='%23424850' stroke-opacity='.4' filter='url(%23s)'/%3E%3Cpath d='M0 86 52 116v60L0 206Z' fill='url(%23b)' stroke='%23394149' stroke-opacity='.28'/%3E%3Cpath d='M240 86v120l-52-30v-60Z' fill='url(%23b)' stroke='%23394149' stroke-opacity='.28'/%3E%3Cpath d='M60 20 96 41v42l-36 21L24 83V41Z' fill='%232c3036' opacity='.72'/%3E%3Cpath d='M180 20 216 41v42l-36 21-36-21V41Z' fill='%2321252b' opacity='.82'/%3E%3Cpath d='M120 102 156 123v42l-36 21-36-21v-42Z' fill='%232b3036' opacity='.68'/%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 34%);
    background-position:
        0 0,
        0 0;
    background-size: 240px 208px, 100% 100%;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.64) 62%, transparent 96%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.34;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
        radial-gradient(circle at 78% 68%, rgba(255, 58, 51, 0.08) 0 1px, transparent 1px);
    background-size: 26px 26px, 38px 38px;
    mix-blend-mode: screen;
}

.site-header__bar,
.site-header__panel,
.section .container,
.hero .container,
.docs-section .container,
.faq-section .container,
.info-tabs-section .container,
.messenger-eval-section .container,
.cta-section .container,
.categories-section .container,
.site-footer .container,
.popup__body,
.popup-form {
    border-color: var(--glass-border);
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.16), transparent 30%),
        radial-gradient(circle at 100% 12%, rgba(255, 58, 51, 0.12), transparent 32%),
        var(--glass-bg-dark);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px) saturate(138%);
    -webkit-backdrop-filter: blur(22px) saturate(138%);
}

.section .container::before {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.13), rgba(255, 58, 51, 0.08) 36%, transparent 72%);
}

.brands-section .container,
.advantages-section .container,
.process-section .container,
.compare-section .container,
.geography-section .container {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero__topline,
.hero__media-copy,
.hero__badge,
.hero__features,
.brands-section__stat,
.brands-section__meta span,
.brands-section__toggle,
.docs-card,
.docs-bonus,
.adv-card,
.messenger-eval__button,
.faq-item,
.info-tabs__button,
.info-tabs__panel,
.hero__messenger,
.site-footer__messenger,
.section-kicker,
.process-card,
.compare-summary__item,
.compare-board__table,
.category-card,
.categories-info__row,
.cta-form input,
.lead-form input {
    border-color: var(--glass-border);
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(18px) saturate(136%);
    -webkit-backdrop-filter: blur(18px) saturate(136%);
}

.docs-card,
.docs-bonus,
.adv-card,
.faq-item,
.info-tabs__panel,
.process-card,
.compare-summary__item,
.compare-board__table,
.category-card,
.categories-info__row {
    position: relative;
    overflow: hidden;
}

.docs-card::after,
.adv-card::after,
.faq-item::after,
.info-tabs__panel::after,
.process-card::after,
.compare-summary__item::after,
.category-card::after,
.categories-info__row::after {
    content: '';
    position: absolute;
    inset: 1px 1px auto;
    height: 42%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent);
    pointer-events: none;
}

.info-tabs__button:hover,
.brands-section__toggle:hover,
.advantages-section__arrow:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.07));
}

.info-tabs__button.is-active {
    border-color: rgba(255, 98, 91, 0.42);
    background:
        linear-gradient(145deg, rgba(255, 58, 51, 0.24), rgba(255, 255, 255, 0.08)),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        0 18px 42px rgba(255, 58, 51, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.lead-form input,
.cta-form input {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.lead-form input::placeholder,
.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.66);
}

.lead-form input:focus,
.cta-form input:focus {
    background: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 0 0 4px rgba(255, 58, 51, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.popup-form h2,
.popup-form__head p,
.popup-form__policy,
.popup-form__form input[type="text"],
.popup-form__form input[type="tel"] {
    color: #ffffff;
}

.popup-form__kicker,
.popup-form__policy a {
    color: #ff8b84;
}

.popup__close {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 800;
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: #ffffff;
}

.site-scroll-top {
    position: fixed;
    right: max(18px, calc((100vw - var(--container)) / 2 + 18px));
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
        rgba(22, 27, 34, 0.58);
    color: #ffffff;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px) saturate(136%);
    -webkit-backdrop-filter: blur(18px) saturate(136%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease,
        background 0.22s ease;
}

.site-scroll-top i {
    font-size: 26px;
    line-height: 1;
}

.site-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-scroll-top:hover {
    background:
        linear-gradient(145deg, rgba(255, 58, 51, 0.28), rgba(255, 255, 255, 0.1)),
        rgba(22, 27, 34, 0.68);
}

.hero__media-copy {
    border-color: rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(20, 24, 31, 0.26), rgba(7, 9, 13, 0.68)),
        rgba(18, 22, 28, 0.54);
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 920px) {
    .messenger-eval-section .container,
    .cta-section .container,
    .cta-section__content {
        background:
            radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.14), transparent 32%),
            var(--glass-bg-dark);
    }

    .hero__media-copy {
        display: none;
    }
}

@media (min-width: 641px) and (max-width: 920px) {
    .hero__topline {
        display: none;
    }
}

.auto-quiz-section .container {
    display: grid;
    gap: 0;
    padding: clamp(18px, 2.3vw, 34px);
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.auto-quiz__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(18px, 2.4vw, 34px);
    align-items: center;
}

.auto-quiz__content {
    display: grid;
    align-content: center;
    gap: 16px;
}

.auto-quiz__content h2 {
    margin: 0;
    max-width: 760px;
    color: #ffffff;
    font-size: clamp(30px, 3.15vw, 56px);
    line-height: 0.98;
    text-transform: none;
    text-wrap: balance;
}

.auto-quiz__lead {
    margin: 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.45;
}

.auto-quiz__start,
.auto-quiz__next,
.auto-quiz__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 22px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #ff625c 0%, #ff3a33 52%, #c81f18 100%);
    color: #ffffff;
    font: inherit;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow:
        0 18px 34px rgba(255, 58, 51, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.auto-quiz__start {
    justify-self: start;
}

.auto-quiz__start:hover,
.auto-quiz__next:hover,
.auto-quiz__submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow:
        0 24px 44px rgba(255, 58, 51, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.auto-quiz__trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.auto-quiz__trust-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 70px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.auto-quiz__trust-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 58, 51, 0.13);
    color: #ff8b84;
    font-size: 23px;
}

.auto-quiz__trust-item span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.28;
}

.auto-quiz {
    display: grid;
    gap: 18px;
    min-height: 620px;
    padding: clamp(16px, 1.8vw, 28px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.065)),
        rgba(18, 23, 30, 0.72);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(22px) saturate(138%);
}

.auto-quiz__progress {
    display: grid;
    gap: 10px;
}

.auto-quiz__progress span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auto-quiz__progress-track {
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.auto-quiz__progress-fill {
    width: 25%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ff3a33, #ff9b38);
    box-shadow: 0 0 22px rgba(255, 58, 51, 0.4);
    transition: width 0.32s ease;
}

.auto-quiz__steps {
    display: grid;
}

.auto-quiz__step {
    display: grid;
    gap: 18px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    animation: quizStepIn 0.28s ease both;
}

.auto-quiz__step[hidden] {
    display: none;
}

.auto-quiz__step legend {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 2px;
    padding: 0;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 900;
    line-height: 1.05;
    text-wrap: balance;
}

.auto-quiz__step legend i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 58, 51, 0.24), rgba(255, 58, 51, 0.1));
    color: #ff8b84;
    font-size: 28px;
}

.auto-quiz__fields {
    display: grid;
    gap: 12px;
}

.auto-quiz__fields label {
    display: grid;
    gap: 7px;
}

.auto-quiz__fields label span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 900;
}

.auto-quiz__fields input {
    width: 100%;
    min-height: 58px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.auto-quiz__fields input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.auto-quiz__fields input:focus {
    border-color: rgba(255, 92, 84, 0.7);
    background: rgba(255, 255, 255, 0.17);
    box-shadow: 0 0 0 4px rgba(255, 58, 51, 0.13);
}

.auto-quiz__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.auto-quiz__options button {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 66px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
    color: rgba(255, 255, 255, 0.86);
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.auto-quiz__options button i {
    flex: 0 0 auto;
    color: #ff8b84;
    font-size: 24px;
}

.auto-quiz__options button:hover,
.auto-quiz__options button.is-selected {
    transform: translateY(-1px);
    border-color: rgba(255, 92, 84, 0.62);
    background:
        linear-gradient(145deg, rgba(255, 58, 51, 0.24), rgba(255, 255, 255, 0.08)),
        rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.auto-quiz__options--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auto-quiz__options--compact button {
    justify-content: center;
    min-height: 52px;
    text-align: center;
}

.auto-quiz__step h3 {
    margin: 6px 0 -4px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
}

.auto-quiz__mini-benefits {
    display: grid;
    gap: 8px;
}

.auto-quiz__mini-benefits span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 800;
}

.auto-quiz__mini-benefits i {
    color: #ff8b84;
    font-size: 20px;
}

.auto-quiz__policy {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    cursor: pointer;
}

.auto-quiz__policy input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--accent);
}

.auto-quiz__policy a {
    color: #ff8b84;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.auto-quiz__upload {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-height: 170px;
    padding: 24px 18px;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.075);
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.auto-quiz__upload:hover {
    border-color: rgba(255, 92, 84, 0.62);
    background: rgba(255, 255, 255, 0.11);
}

.auto-quiz__upload i {
    color: #ff8b84;
    font-size: 42px;
}

.auto-quiz__upload span {
    font-size: 18px;
    font-weight: 900;
}

.auto-quiz__upload small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.auto-quiz__upload input {
    width: 100%;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.auto-quiz__actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.auto-quiz__back {
    min-height: 52px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
}

.auto-quiz__actions .auto-quiz__next,
.auto-quiz__actions .auto-quiz__submit {
    width: 100%;
}

.auto-quiz__submit:disabled {
    cursor: progress;
    filter: saturate(0.8);
}

.auto-quiz__success {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 16px;
    min-height: 460px;
    text-align: center;
    animation: quizStepIn 0.28s ease both;
}

.auto-quiz__success[hidden] {
    display: none;
}

.auto-quiz__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(50, 208, 103, 0.22), rgba(50, 208, 103, 0.1));
    color: #52e58b;
    font-size: 50px;
}

.auto-quiz__success h3 {
    margin: 0;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1;
}

.auto-quiz__success p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.45;
}

.auto-quiz__messengers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.auto-quiz__messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 16px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.auto-quiz__messenger--wa {
    background: linear-gradient(180deg, #39d36d 0%, #1fb653 100%);
}

.auto-quiz__messenger--tg {
    background: linear-gradient(180deg, #39b8ff 0%, #1691e5 100%);
}

.ti-brand-whatsapp {
    color: #25d366;
}

.ti-brand-telegram {
    color: #2aabee;
}

@keyframes quizStepIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 920px) {
    .auto-quiz__layout {
        grid-template-columns: 1fr;
    }

    .auto-quiz {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .auto-quiz-section .container {
        padding: 16px 12px;
    }

    .auto-quiz__content {
        gap: 12px;
    }

    .auto-quiz__content h2 {
        font-size: 28px;
        line-height: 1;
    }

    .auto-quiz__lead {
        font-size: 13px;
        line-height: 1.38;
    }

    .auto-quiz__start,
    .auto-quiz__next,
    .auto-quiz__submit {
        width: 100%;
        min-height: 52px;
        padding: 13px 16px;
    }

    .auto-quiz__trust {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .auto-quiz__trust-item {
        min-height: 60px;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
        border-radius: 16px;
    }

    .auto-quiz__trust-item i {
        width: 38px;
        height: 38px;
        border-radius: 13px;
        font-size: 21px;
    }

    .auto-quiz__trust-item span {
        font-size: 13px;
    }

    .auto-quiz {
        gap: 14px;
        padding: 14px 12px;
        border-radius: 22px;
    }

    .auto-quiz__step {
        gap: 14px;
    }

    .auto-quiz__step legend {
        gap: 10px;
        font-size: 22px;
    }

    .auto-quiz__step legend i {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 24px;
    }

    .auto-quiz__fields input {
        min-height: 54px;
        border-radius: 16px;
        font-size: 15px;
    }

    .auto-quiz__options,
    .auto-quiz__options--compact {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .auto-quiz__options button {
        min-height: 58px;
        border-radius: 16px;
    }

    .auto-quiz__actions {
        grid-template-columns: 1fr;
    }

    .auto-quiz__back {
        order: 2;
        width: 100%;
    }

    .auto-quiz__mini-benefits span {
        font-size: 13px;
        line-height: 1.3;
    }

    .auto-quiz__upload {
        min-height: 150px;
        border-radius: 18px;
    }

    .auto-quiz__messengers {
        display: grid;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero__topline {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero__topline span {
        padding-left: 28px;
    }

    .hero__topline span::before {
        left: 8px;
    }

    .site-footer__links {
        justify-content: flex-start;
    }

    .site-scroll-top {
        right: 14px;
        bottom: 16px;
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
}


.seo-page {
    background: #07090c;
    color: #ffffff;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.breadcrumbs a {
    color: #d6e18c;
    text-decoration: none;
}

.seo-hero {
    padding: 72px 0 46px;
    background: radial-gradient(circle at 20% 20%, rgba(214, 225, 140, 0.14), transparent 34%), #07090c;
}

.seo-hero--compact {
    padding-bottom: 64px;
}

.seo-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 28px;
    align-items: stretch;
}

.seo-hero h1 {
    margin: 0;
    max-width: 920px;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1;
}

.seo-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.55;
}

.seo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
}

.seo-hero__phone,
.seo-side-cta a,
.seo-blog-link a,
.article-card a {
    color: #d6e18c;
    font-weight: 800;
    text-decoration: none;
}

.seo-hero__facts,
.seo-hero__panel ul,
.seo-copy ul,
.seo-steps {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.seo-hero__facts {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
}

.seo-hero__panel,
.seo-side-cta,
.article-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.seo-hero__panel {
    padding: 28px;
}

.seo-hero__panel h2,
.seo-side-cta h2,
.article-card h2 {
    margin-top: 0;
    font-family: 'Exo 2', sans-serif;
    line-height: 1.1;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.seo-copy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.65;
}

.seo-copy h2,
.seo-faq-section h2,
.seo-links-section h2 {
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.08;
}

.seo-side-cta {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 14px;
    padding: 22px;
}

.seo-side-cta small {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.45;
}

.seo-links-section__lead {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.seo-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.seo-links__group {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.seo-links__group h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 18px;
}

.seo-links__group ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.seo-links__group a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.seo-links__group a:hover {
    color: #d6e18c;
}

.seo-blog-link {
    margin-top: 22px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.article-card {
    padding: 22px;
}

.article-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .seo-links,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .seo-hero__grid,
    .seo-content-grid,
    .seo-links,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .seo-side-cta {
        position: static;
    }
}

@media (max-width: 640px) {
    .seo-hero {
        padding: 42px 0 32px;
    }

    .seo-hero p,
    .seo-copy {
        font-size: 15px;
    }

    .seo-hero__actions .hero__cta,
    .seo-hero__actions .site-header__cta {
        width: 100%;
    }
}

.geography-list a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.geography-list a:hover {
    color: #d6e18c;
}
/* seo-links-section--home compact tuning */
.seo-links-section--home .container {
    padding-top: 18px;
    padding-bottom: 18px;
}

.seo-links-section--home h2 {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.05;
}

.seo-links-section--home .seo-links-section__lead {
    max-width: 760px;
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.45;
}

.seo-links-section--home .seo-links {
    gap: 10px;
    margin-top: 16px;
}

.seo-links-section--home .seo-links__group {
    padding: 12px;
}

.seo-links-section--home .seo-links__group h3 {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.2;
}

.seo-links-section--home .seo-links__group ul {
    gap: 5px;
}

.seo-links-section--home .seo-links__group a {
    font-size: 13px;
    line-height: 1.25;
}

.seo-links-section--home .seo-blog-link {
    margin-top: 14px;
}

.seo-links-section--home .seo-blog-link a {
    font-size: 14px;
}

@media (max-width: 640px) {
    .seo-links-section--home .container {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .seo-links-section--home .seo-links {
        margin-top: 12px;
    }
}

/* compact mobile drawer tuning */
@media (max-width: 640px) {
    .site-header__drawer {
        height: 100dvh;
        max-height: 100dvh;
        padding: 12px 14px 12px;
        gap: 10px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .site-header__drawer-close {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .site-header__drawer-close i {
        font-size: 23px;
    }

    .site-header__drawer-brand img {
        max-width: 150px;
    }

    .site-header__drawer-nav {
        gap: 2px;
    }

    .site-header__drawer-nav a {
        min-height: 34px;
        padding: 5px 8px;
        border-radius: 10px;
        font-size: 15px;
        line-height: 1.15;
    }

    .site-header__drawer-contact {
        gap: 8px;
    }

    .site-header__drawer-contact .site-header__phone {
        font-size: clamp(24px, 8vw, 31px);
        line-height: 1;
        white-space: normal;
    }

    .site-header__drawer-contact .site-header__panel-meta {
        gap: 6px;
    }

    .site-header__drawer .site-header__meta-item {
        gap: 8px;
        font-size: 13px;
        line-height: 1.25;
    }

    .site-header__drawer .site-header__meta-item i {
        font-size: 18px;
    }

    .site-header__drawer-messengers {
        gap: 8px;
    }

    .site-header__drawer .site-header__messenger {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .site-header__drawer .site-header__cta {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 640px) and (max-height: 760px) {
    .site-header__drawer {
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 8px;
    }

    .site-header__drawer-brand img {
        max-width: 134px;
    }

    .site-header__drawer-nav a {
        min-height: 30px;
        padding-top: 4px;
        padding-bottom: 4px;
        font-size: 14px;
    }

    .site-header__drawer-contact .site-header__phone {
        font-size: clamp(22px, 7vw, 28px);
    }

    .site-header__drawer .site-header__messenger {
        width: 38px;
        height: 38px;
    }
}

/* compact desktop drawer tuning */
@media (min-width: 641px) {
    .site-header__drawer {
        width: min(92vw, 360px);
        height: 100dvh;
        max-height: 100dvh;
        padding: 18px 20px 18px;
        gap: 12px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .site-header__drawer-close {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .site-header__drawer-close i {
        font-size: 23px;
    }

    .site-header__drawer-brand img {
        max-width: 154px;
    }

    .site-header__drawer-nav {
        gap: 3px;
    }

    .site-header__drawer-nav a {
        min-height: 36px;
        padding: 6px 9px;
        border-radius: 10px;
        font-size: 15px;
        line-height: 1.15;
    }

    .site-header__drawer-contact {
        gap: 9px;
    }

    .site-header__drawer-contact .site-header__phone {
        font-size: clamp(24px, 3vw, 29px);
        line-height: 1;
        white-space: normal;
    }

    .site-header__drawer-contact .site-header__panel-meta {
        gap: 6px;
    }

    .site-header__drawer .site-header__meta-item {
        gap: 8px;
        font-size: 13px;
        line-height: 1.25;
    }

    .site-header__drawer .site-header__meta-item i {
        font-size: 18px;
    }

    .site-header__drawer-messengers {
        gap: 8px;
    }

    .site-header__drawer .site-header__messenger {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .site-header__drawer .site-header__cta {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (min-width: 641px) and (max-height: 760px) {
    .site-header__drawer {
        padding-top: 14px;
        padding-bottom: 14px;
        gap: 9px;
    }

    .site-header__drawer-brand img {
        max-width: 138px;
    }

    .site-header__drawer-nav a {
        min-height: 32px;
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 14px;
    }

    .site-header__drawer-contact .site-header__phone {
        font-size: clamp(22px, 2.8vw, 27px);
    }

    .site-header__drawer .site-header__messenger {
        width: 38px;
        height: 38px;
    }
}

/* popup form readable inputs */
.popup-form .popup-form__form input[type="text"],
.popup-form .popup-form__form input[type="tel"] {
    color: #111111;
    caret-color: #111111;
    -webkit-text-fill-color: #111111;
}

.popup-form .popup-form__form input[type="text"]::placeholder,
.popup-form .popup-form__form input[type="tel"]::placeholder {
    color: rgba(17, 17, 17, 0.42);
    -webkit-text-fill-color: rgba(17, 17, 17, 0.42);
}

.popup-form .popup-form__form input[type="text"]:-webkit-autofill,
.popup-form .popup-form__form input[type="tel"]:-webkit-autofill {
    -webkit-text-fill-color: #111111;
    box-shadow: 0 0 0 1000px #ffffff inset;
}


/* floating contact widgets */
.floating-contact {
    position: fixed;
    left: 18px;
    bottom: 22px;
    z-index: 75;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.floating-contact__link {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(22, 27, 34, 0.74);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px) saturate(136%);
    -webkit-backdrop-filter: blur(18px) saturate(136%);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.floating-contact__link i {
    font-size: 28px;
    line-height: 1;
}

.floating-contact__link--wa i {
    color: #25d366;
}

.floating-contact__link--tg i {
    color: #2aabee;
}

.floating-contact__link--phone {
    display: none;
}

.floating-contact__link--phone i {
    color: #ff4a4a;
}

.floating-contact__link:hover {
    transform: translateX(3px);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(32, 38, 48, 0.84);
}

@media (max-width: 767px) {
    .floating-contact {
        left: 12px;
        bottom: 14px;
        gap: 8px;
    }

    .floating-contact__link {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .floating-contact__link i {
        font-size: 25px;
    }

    .floating-contact__link--phone {
        display: inline-flex;
    }
}


/* cookie notice */
.cookie-notice {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 90;
    width: min(760px, calc(100vw - 28px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 14px 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(22, 27, 34, 0.92);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px) saturate(136%);
    -webkit-backdrop-filter: blur(18px) saturate(136%);
    transform: translateX(-50%);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice__text {
    display: grid;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.45;
}

.cookie-notice__text strong {
    color: #ffffff;
    font-size: 15px;
}

.cookie-notice__text a {
    color: #ff8b84;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-notice__button {
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, #ff4842, #e51f1c);
    color: #ffffff;
    font: 800 14px/1 "Manrope", sans-serif;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(255, 58, 51, 0.24);
}

@media (max-width: 767px) {
    .cookie-notice {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        grid-template-columns: 1fr;
        padding: 14px;
        transform: none;
    }

    .cookie-notice__button {
        width: 100%;
    }

    body.has-cookie-notice .floating-contact {
        bottom: 160px;
    }
}


/* drawer messenger row */
.site-header__drawer .site-header__drawer-messengers {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 4px 0 2px;
}

.site-header__drawer .site-header__drawer-messengers + .site-header__cta {
    margin-top: 2px;
}

.site-header__drawer .site-header__messenger {
    flex: 0 0 auto;
}

@media (max-width: 640px) {
    .site-header__drawer .site-header__drawer-messengers {
        gap: 10px;
        margin-top: 2px;
    }
}

/* mobile scroll performance tuning */
@media (max-width: 767px) {
    html {
        scroll-behavior: auto;
    }

    body::before,
    body::after {
        content: none !important;
        display: none !important;
    }

    .site-header__bar,
    .site-header__drawer,
    .site-header__drawer-backdrop,
    .popup__overlay,
    .popup__body,
    .popup-form,
    .lead-form input,
    .site-scroll-top,
    .floating-contact__link,
    .cookie-notice {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .site-header__bar {
        background: rgba(22, 27, 34, 0.96);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    }

    .site-header__drawer {
        background: rgba(36, 41, 49, 0.98);
        box-shadow: -10px 0 24px rgba(5, 8, 12, 0.22);
    }

    .section .container,
    .hero .container,
    .auto-quiz,
    .popup__body,
    .popup-form {
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    }

    .floating-contact__link,
    .site-scroll-top,
    .cookie-notice {
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
    }

    .floating-contact__link:hover,
    .site-scroll-top:hover,
    .site-button:hover {
        transform: none;
        filter: none;
    }
}

/* ai answer optimization */
.seo-answer-section {
    padding-top: 28px;
    padding-bottom: 28px;
}

.seo-answer {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(18, 23, 30, 0.82);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.seo-answer h2 {
    margin: 8px 0 12px;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(26px, 2.7vw, 40px);
    line-height: 1.12;
}

.seo-answer p,
.seo-answer li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.6;
}

.seo-answer p strong {
    color: #ffffff;
}

.seo-answer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.seo-answer__item {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.seo-answer__item h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
}

.seo-answer__item p {
    margin: 0;
    font-size: 14px;
}

.seo-answer__bullets {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding-left: 20px;
}

@media (max-width: 900px) {
    .seo-answer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .seo-answer-section {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .seo-answer {
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    }

    .seo-answer p,
    .seo-answer li {
        font-size: 15px;
    }
}

/* desktop scroll performance tuning */
@media (min-width: 768px) {
    body::before {
        background:
            linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
            radial-gradient(circle at 15% 8%, rgba(255, 58, 51, 0.12), transparent 28%),
            radial-gradient(circle at 86% 14%, rgba(92, 134, 255, 0.1), transparent 30%);
        background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%;
        opacity: 0.8;
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.48) 62%, transparent 96%);
    }

    body::after {
        display: none !important;
        content: none !important;
    }

    .site-header__bar,
    .site-header__panel,
    .section .container,
    .hero .container,
    .docs-section .container,
    .faq-section .container,
    .info-tabs-section .container,
    .messenger-eval-section .container,
    .cta-section .container,
    .categories-section .container,
    .site-footer .container,
    .popup__body,
    .popup-form,
    .lead-form input,
    .site-scroll-top,
    .floating-contact__link,
    .cookie-notice {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .section .container,
    .hero .container,
    .docs-section .container,
    .faq-section .container,
    .info-tabs-section .container,
    .messenger-eval-section .container,
    .cta-section .container,
    .categories-section .container,
    .site-footer .container,
    .popup__body,
    .popup-form {
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    }

    .floating-contact__link,
    .site-scroll-top,
    .cookie-notice {
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
    }
}
/* desktop background restore */
@media (min-width: 768px) {
    body {
        background:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='208' viewBox='0 0 240 208'%3E%3Cg opacity='.58' fill='none' stroke='%23394149' stroke-width='1'%3E%3Cpath d='M60 4 112 34v60l-52 30L8 94V34Z'/%3E%3Cpath d='M180 4 232 34v60l-52 30-52-30V34Z'/%3E%3Cpath d='M120 86 172 116v60l-52 30-52-30v-60Z'/%3E%3C/g%3E%3Cg opacity='.22' fill='%23363a40'%3E%3Cpath d='M60 20 96 41v42l-36 21L24 83V41Z'/%3E%3Cpath d='M180 20 216 41v42l-36 21-36-21V41Z'/%3E%3Cpath d='M120 102 156 123v42l-36 21-36-21v-42Z'/%3E%3C/g%3E%3C/svg%3E"),
            radial-gradient(circle at 12% 6%, rgba(255, 58, 51, 0.18), transparent 26%),
            radial-gradient(circle at 88% 12%, rgba(92, 134, 255, 0.14), transparent 28%),
            radial-gradient(circle at 52% 54%, rgba(255, 255, 255, 0.055), transparent 34%),
            linear-gradient(135deg, #171c23 0%, #0d1117 46%, #171a20 100%);
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
        background-size: 240px 208px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    }

    body::before {
        background:
            linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
        background-size: 72px 72px;
        opacity: 0.55;
    }
}
