html {
    scroll-behavior: smooth;
    overflow-x: clip;
    scroll-padding-top: 96px;
    /* Match header chrome so mobile top/overscroll isn't a white strip */
    background-color: var(--bg-chrome);
}

:root {
    /* Brand banners: white / amber / charcoal */
    --bg-page: #ffffff;
    --bg-dark: #12141a;
    --bg-card: #ffffff;
    --bg-chrome: #ebebeb; /* logo plate — header/footer match so emblem has no frame */
    --accent-yellow: #ffb300;
    --accent-blue: #12141a;
    --accent-blue-soft: #f3f3f4;
    --accent-red: var(--accent-yellow);
    --accent-red-glow: rgba(255, 179, 0, 0.42);
    --text-main: #12141a;
    --text-muted: #12141a;
    --glass-border: rgba(18, 20, 26, 0.12);
    --glass-blur: 0px;
    --transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    --leads-scrim: linear-gradient(180deg, #12141a 0%, #1a1c24 100%);
    --font-display: "Outfit", "Manrope", "Segoe UI", sans-serif;
    --font-hero: "Unbounded", "Manrope", sans-serif;
    /* No system cursive fallback — avoids flash of wrong glyph while Caveat loads */
    --font-hand: "Caveat", cursive;
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --radius: 8px;
    --radius-sm: 6px;
    --shadow-soft: 0 4px 18px rgba(18, 20, 26, 0.07);
    --shadow-hover: 0 12px 32px rgba(18, 20, 26, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-image: none;
}

/* Chrome strip behind sticky header — hides white safe-area / top gap */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(83px + env(safe-area-inset-top, 0px));
    background: var(--bg-chrome);
    z-index: 2999;
    pointer-events: none;
}

p,
li,
label,
summary,
.vehicle-meta-label {
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #e8ebef;
}
::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 10px;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

input.glass-panel,
textarea.glass-panel {
    width: 100%;
    padding: 12px 14px;
    color: var(--text-main);
    line-height: 1.45;
    font: inherit;
    outline: none;
    box-shadow: none;
    background: #fff;
}

textarea.glass-panel {
    resize: vertical;
}

input.glass-panel::placeholder,
textarea.glass-panel::placeholder {
    color: var(--text-muted);
}

.glass-shadow {
    box-shadow: var(--shadow-soft);
}

h1, h2, h3 {
    font-family: var(--font-hero);
    text-transform: none;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--text-main);
}

.accent-text {
    color: var(--accent-yellow);
    text-shadow: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-logo {
    display: block;
}

header {
    display: flex;
    align-items: stretch;
    position: sticky;
    top: 0;
    z-index: 3000;
    isolation: isolate;
    background: var(--bg-chrome);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 3px solid var(--accent-yellow);
    overflow: visible;
    padding-top: env(safe-area-inset-top, 0px);
    min-height: calc(80px + env(safe-area-inset-top, 0px));
    box-sizing: border-box;
}

header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-chrome);
    z-index: -1;
    pointer-events: none;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    margin-left: auto;
    align-items: stretch;
}

.nav-links > li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    padding: 6px 10px;
    border-radius: 6px;
    position: relative;
    z-index: 2001;
}

.nav-links a:hover {
    color: var(--accent-blue);
    background: var(--accent-blue-soft);
}

.nav-dropdown {
    position: relative;
    z-index: 3001;
    align-self: stretch;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    padding: 12px;
    padding-top: 12px;
    margin-top: 0;
    z-index: 3002;
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(20, 24, 32, 0.14);
    background: #fff;
    border: 1px solid var(--glass-border);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -26px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateX(-50%) translateY(5px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-main) !important;
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 8px;
    transition: all 0.15s ease;
    text-transform: none !important;
}

.nav-dropdown-menu a:hover {
    background: var(--accent-blue-soft);
    color: var(--accent-blue) !important;
    padding-left: 20px;
}

.nav-dropdown-menu a.nav-item-bought {
    display: block;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-main) !important;
    font-weight: 700 !important;
    background: transparent;
}

.nav-dropdown-menu a.nav-item-bought .nav-item-bought__label {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f1419;
    padding: 3px 10px;
    border: 1.5px solid var(--accent-yellow);
    border-radius: 6px;
    background: linear-gradient(
        110deg,
        rgba(255, 179, 0, 0.12) 0%,
        rgba(255, 179, 0, 0.28) 45%,
        rgba(255, 236, 170, 0.55) 50%,
        rgba(255, 179, 0, 0.28) 55%,
        rgba(255, 179, 0, 0.12) 100%
    );
    background-size: 220% 100%;
    box-shadow:
        0 0 0 1px rgba(255, 179, 0, 0.18),
        0 0 12px rgba(255, 179, 0, 0.22);
    animation: nav-bought-shine 2.8s linear infinite;
}

.nav-dropdown-menu a.nav-item-bought .nav-item-bought__label::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: nav-bought-glint 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes nav-bought-shine {
    0% {
        background-position: 100% 0;
        box-shadow:
            0 0 0 1px rgba(255, 179, 0, 0.18),
            0 0 10px rgba(255, 179, 0, 0.18);
    }
    50% {
        background-position: 0% 0;
        box-shadow:
            0 0 0 1px rgba(255, 179, 0, 0.35),
            0 0 16px rgba(255, 179, 0, 0.4);
    }
    100% {
        background-position: -100% 0;
        box-shadow:
            0 0 0 1px rgba(255, 179, 0, 0.18),
            0 0 10px rgba(255, 179, 0, 0.18);
    }
}

@keyframes nav-bought-glint {
    0%,
    55% {
        left: -45%;
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    85% {
        left: 120%;
        opacity: 0.85;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-dropdown-menu a.nav-item-bought .nav-item-bought__label,
    .nav-dropdown-menu a.nav-item-bought .nav-item-bought__label::after,
    .nav-dropdown-menu a.nav-item-new .nav-item-new__label,
    .nav-dropdown-menu a.nav-item-new .nav-item-new__label::after {
        animation: none;
    }

    .badge-new-category {
        animation: none;
    }
}

.nav-dropdown-menu a.nav-item-new {
    display: block;
    color: var(--text-main) !important;
    font-weight: 700 !important;
    background: transparent;
}

.nav-dropdown-menu a.nav-item-new .nav-item-new__label {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f5f5f6;
    padding: 3px 10px;
    border: 1.5px solid #2a2e38;
    border-radius: 6px;
    background: linear-gradient(
        110deg,
        #1a1c24 0%,
        #2a2e38 40%,
        #4a5160 50%,
        #2a2e38 60%,
        #1a1c24 100%
    );
    background-size: 220% 100%;
    box-shadow:
        0 0 0 1px rgba(18, 20, 26, 0.25),
        0 0 12px rgba(18, 20, 26, 0.28);
    animation: nav-new-shine 2.8s linear infinite;
}

.nav-dropdown-menu a.nav-item-new .nav-item-new__label::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: nav-bought-glint 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes nav-new-shine {
    0% {
        background-position: 100% 0;
        box-shadow:
            0 0 0 1px rgba(18, 20, 26, 0.25),
            0 0 10px rgba(18, 20, 26, 0.22);
    }
    50% {
        background-position: 0% 0;
        box-shadow:
            0 0 0 1px rgba(18, 20, 26, 0.4),
            0 0 16px rgba(18, 20, 26, 0.38);
    }
    100% {
        background-position: -100% 0;
        box-shadow:
            0 0 0 1px rgba(18, 20, 26, 0.25),
            0 0 10px rgba(18, 20, 26, 0.22);
    }
}

.nav-dropdown-menu a.nav-item-new:hover,
.nav-dropdown-menu a.nav-item-bought:hover {
    background: rgba(255, 179, 0, 0.1);
    color: var(--text-main) !important;
    padding-left: 16px;
}

.nav-dropdown-menu a.nav-item-new:hover .nav-item-new__label {
    border-color: #3d4452;
    box-shadow:
        0 0 0 1px rgba(18, 20, 26, 0.35),
        0 0 18px rgba(18, 20, 26, 0.4);
}

.nav-dropdown-menu a.nav-item-bought:hover .nav-item-bought__label {
    border-color: #ffc933;
    box-shadow:
        0 0 0 1px rgba(255, 179, 0, 0.35),
        0 0 18px rgba(255, 179, 0, 0.45);
}

.btn-elite {
    background: var(--accent-yellow);
    color: #12141a;
    padding: 13px 22px;
    border: none;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-display);
    font-size: 13px;
    box-shadow: none;
}

.btn-elite::after {
    display: none;
}

.btn-elite:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.btn-elite-ghost {
    background: #12141a;
    color: #fff;
    border: 1px solid #12141a;
    box-shadow: none;
}

.btn-elite-ghost:hover {
    background: #1a1c24;
    border-color: #1a1c24;
    color: var(--accent-yellow);
    box-shadow: none;
}

.car-card {
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}

.car-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-yellow);
}

.car-card::before {
    display: none;
}

.featured-glare {
    position: relative;
}
.featured-glare::after {
    display: none;
}

@keyframes border-pulse {
    0% { opacity: 0.15; }
    50% { opacity: 0.45; }
    100% { opacity: 0.15; }
}

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: 8px;
    padding: 0;
    border: 1px solid rgba(18, 20, 26, 0.12);
    border-radius: 10px;
    background: #f8f9fb;
    cursor: pointer;
    flex-shrink: 0;
    align-self: center;
}

.header-phone {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(18, 20, 26, 0.12);
    border-radius: 10px;
    background: #f8f9fb;
    flex-shrink: 0;
    align-self: center;
    text-decoration: none;
}

.header-phone__icon {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--accent-yellow);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.4 21 3 13.6 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.4 21 3 13.6 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-mobile-quick {
    display: none;
}

.nav-burger__line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--text-main);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

@media (max-width: 991px) {
    .nav-burger {
        display: inline-flex;
    }

    .header-phone {
        display: inline-flex;
        margin-left: 0;
    }

    .site-logo-wrap {
        flex: 1 1 auto;
        min-width: 0;
        margin-right: 8px;
        gap: 0;
    }

    .site-tagline {
        flex: 1 1 auto;
        text-align: center;
        margin: 0 6px 0 4px;
        min-width: 0;
    }

    .site-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2990;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        padding: 20px 16px 96px;
        overflow-y: auto;
        background: var(--bg-page);
        border-top: 1px solid rgba(18, 20, 26, 0.06);
        box-shadow: 0 18px 40px rgba(18, 20, 26, 0.12);
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, visibility 0.28s ease;
    }

    body.is-nav-open {
        overflow: hidden;
    }

    body.is-nav-open .site-nav {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .desktop-search {
        display: flex;
        max-width: none;
        width: 100%;
        order: -1;
    }

    .desktop-search__results {
        width: 100%;
        right: 0;
        left: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
        margin: 0;
    }

    .nav-links > li {
        display: block;
        width: 100%;
    }

    .nav-links a {
        display: flex;
        width: 100%;
        padding: 14px 12px;
        font-size: 16px;
        border-radius: 10px;
        white-space: normal;
    }

    .nav-cta {
        justify-content: center;
        text-align: center;
        margin-top: 8px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > a {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        min-width: 0;
        width: 100%;
        margin: 4px 0 8px;
        padding: 8px;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: 1px solid rgba(18, 20, 26, 0.08);
        animation: none;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
    }

    .nav-burger.is-open .nav-burger__line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-burger.is-open .nav-burger__line:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.is-open .nav-burger__line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 380px) {
    .site-tagline {
        font-size: 12px;
        white-space: normal;
        max-width: 7.2em;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.5rem; }
    .container { padding: 0 16px; }
    body::before {
        height: calc(73px + env(safe-area-inset-top, 0px));
    }

    header {
        min-height: calc(70px + env(safe-area-inset-top, 0px));
    }
    .site-nav { top: calc(70px + env(safe-area-inset-top, 0px)); }
    .site-header-inner {
        min-height: 0;
        height: 100%;
    }
    .site-logo {
        height: 48px;
    }

    .site-tagline {
        font-size: 13px;
        letter-spacing: -0.01em;
    }

    .site-logo-wrap {
        gap: 8px;
        margin-right: 8px;
    }
    section:not(.home-page) {
        padding: 40px 0 !important;
    }
    section.home-page {
        padding: 0 !important;
    }
}

footer {
    margin-top: 0;
}

/* Chrome gray footer — matches logo plate (no emblem frame) */
.site-footer {
    position: relative;
    margin-top: 0;
    padding: 56px 0 36px;
    background: var(--bg-chrome);
    color: var(--text-main);
    border-top: none;
    text-align: left;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--accent-yellow);
}

.site-footer__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer__brand {
    flex: 1 1 320px;
    max-width: 440px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
}

.site-footer__logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.site-footer__name {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.28em;
    margin: 0 0 12px;
    font-family: var(--font-hero);
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.site-footer__name-dark {
    color: var(--text-main);
}

.site-footer__name-accent {
    color: var(--accent-yellow);
}

.site-footer__tagline {
    margin: 0;
    max-width: 36ch;
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
    padding-left: 12px;
    border-left: 3px solid var(--accent-yellow);
}

.site-footer__col {
    flex: 1 1 200px;
    max-width: 250px;
}

.site-footer__col--contacts {
    flex: 1 1 250px;
    max-width: none;
}

.site-footer__heading {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-yellow);
}

.site-footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.site-footer__nav li {
    margin-bottom: 10px;
}

.site-footer__nav a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__nav a:hover {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-main);
}

.site-footer__contacts p {
    margin: 0;
}

.site-footer__contacts a {
    color: #12141a;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.site-footer__contacts a:hover {
    opacity: 0.75;
}

.site-footer__phone {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #12141a !important;
}

.site-footer__phone:hover {
    opacity: 0.75;
}

.site-footer__telegram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main) !important;
    font-weight: 700;
    text-decoration: none;
}

.site-footer__telegram-icon {
    flex: 0 0 auto;
    color: #229ed9;
}

.site-footer__telegram:hover {
    color: var(--accent-yellow) !important;
    opacity: 1;
}

.site-footer__telegram:hover .site-footer__telegram-icon {
    color: var(--accent-yellow);
}

.site-footer__bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(18, 20, 26, 0.18);
    text-align: center;
    color: var(--text-main);
    font-size: 11px;
}

.site-footer__bottom a {
    color: #12141a;
    text-decoration: none;
    font-weight: 600;
}

.site-footer__bottom a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer__legal {
    margin: 12px auto 0;
    max-width: 920px;
    color: var(--text-main);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 44px 0 28px;
    }

    .site-footer__col,
    .site-footer__col--contacts,
    .site-footer__brand {
        max-width: none;
        flex-basis: 100%;
    }
}

.elite-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    box-shadow: 0 4px 12px rgba(20, 24, 32, 0.15);
}

.car-card__badges {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    pointer-events: none;
    max-width: min(52%, 8.5rem);
}

.car-card__badges .elite-badge {
    position: static;
    padding: 3px 6px;
    font-size: 9px;
    font-size: clamp(8px, 2.4cqi, 9px);
    letter-spacing: 0.03em;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(20, 24, 32, 0.12);
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.badge-red {
    background: var(--accent-yellow);
    color: #141820;
    box-shadow: 0 4px 14px var(--accent-red-glow);
}

.badge-new {
    background: var(--accent-yellow);
    color: #0f1419;
    box-shadow: 0 4px 14px var(--accent-red-glow);
}

.badge-new-category {
    background: linear-gradient(
        110deg,
        #1a1c24 0%,
        #2a2e38 40%,
        #4a5160 50%,
        #2a2e38 60%,
        #1a1c24 100%
    );
    background-size: 220% 100%;
    color: #f5f5f6;
    border-color: #2a2e38;
    animation: nav-new-shine 2.8s linear infinite;
}

.badge-featured {
    background: #141820;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
    animation: none;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.45); }
    70% { box-shadow: 0 0 0 10px rgba(255, 179, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0); }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: none;
    -moz-appearance: textfield;
}

.active-filter-main {
    background: var(--accent-yellow) !important;
    border-color: var(--accent-yellow) !important;
    color: #141820 !important;
    box-shadow: 0 4px 16px var(--accent-red-glow);
}

.active-filter-sub {
    background: var(--accent-blue-soft) !important;
    border-color: var(--accent-blue) !important;
    color: var(--accent-blue) !important;
}

#search-results a:hover {
    background: var(--accent-blue-soft) !important;
}

/* --- PAGE BACKGROUNDS: clean product wash --- */
.bg-default,
.bg-home,
.bg-catalog,
.bg-catalog-cars,
.bg-catalog-trucks,
.bg-catalog-special,
.bg-detail,
.bg-dossier,
.bg-about,
.bg-faq {
    background-color: var(--bg-page);
    background-image: none;
}

.dossier-shot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dossier-shot-img:hover {
    transform: scale(1.05);
}

section.home-page {
    padding: 0 !important;
}

/* ===== Editorial magazine home ===== */
.ed-hero {
    position: relative;
    width: 100%;
    min-height: min(70vh, 680px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--text-main);
    z-index: 0;
    background: #fff;
}

.ed-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(115deg, #ffffff 0%, #ffffff 48%, rgba(255, 179, 0, 0.12) 100%);
}

.ed-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: clamp(36px, 6vh, 64px) 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
    animation: revealUp 0.85s ease both;
}

.ed-hero__copy {
    min-width: 0;
}

.ed-hero__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-family: var(--font-hero);
    font-size: clamp(2.6rem, 7vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.92;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.ed-hero__brand::before {
    display: none;
}

.ed-hero__brand-dark {
    color: var(--text-main);
}

.ed-hero__brand-accent {
    color: var(--accent-yellow);
}

.ed-hero__ribbon {
    display: inline-block;
    margin: 0 0 14px;
    padding: 8px 16px;
    max-width: min(100%, 34rem);
    background: var(--accent-yellow);
    color: #12141a;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-transform: none;
    clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.ed-hero__title {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    margin: 0 0 10px;
    max-width: none;
    white-space: nowrap;
    color: var(--text-main);
    border-left: 3px solid var(--accent-yellow);
    padding-left: 12px;
}

.ed-hero__lead {
    margin: 0 0 22px;
    max-width: 46ch;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 15px;
}

.ed-hero__features {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ed-hero__features li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
}

.ed-hero__feature-mark {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--accent-yellow);
    position: relative;
    flex-shrink: 0;
}

.ed-hero__feature-mark::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 6px;
    width: 7px;
    height: 12px;
    border: solid #12141a;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.ed-hero__features strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 2px;
}

.ed-hero__features span {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-muted);
}

.ed-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ed-hero__photo {
    margin: 0;
    min-width: 0;
    position: relative;
}

.ed-hero__photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 682;
    object-fit: cover;
    border-radius: 4px;
    background: var(--bg-chrome);
    animation: edHeroZoom 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
}

.ed-hero__caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-main);
}

.ed-hero__caption strong {
    font-weight: 700;
}

.ed-hero__caption-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-yellow);
    flex-shrink: 0;
}

.ed-hero__photo-badge {
    position: absolute;
    left: 0;
    bottom: 52px;
    max-width: 86%;
    margin: 0;
    padding: 12px 16px;
    background: #12141a;
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.ed-hero__photo-badge-accent {
    color: var(--accent-yellow);
}

/* Metrics strip — glossy yellow bar like brand banners */
.ed-metrics {
    width: min(1160px, calc(100% - 48px));
    margin: 24px auto 0;
    background: var(--accent-yellow);
    color: #12141a;
    border-bottom: none;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(18, 20, 26, 0.18);
    overflow: hidden;
}

.ed-metrics__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.ed-metrics__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    align-items: center;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 8px 12px;
    border-right: 1px solid rgba(18, 20, 26, 0.18);
}

.ed-metrics__item:last-child {
    border-right: 0;
}

.ed-metrics__item strong {
    font-family: var(--font-hero);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #12141a;
    line-height: 1.15;
    text-transform: uppercase;
}

.ed-metrics__item span {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-main);
    font-weight: 700;
}

.ed-metrics__note {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.ed-warranty {
    width: min(1160px, calc(100% - 48px));
    margin: 22px auto 0;
    background: #fff;
    color: var(--text-main);
    border-block: none;
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(18, 20, 26, 0.18);
    overflow: hidden;
}

.ed-warranty__panel {
    position: relative;
}

.ed-warranty__visual {
    position: relative;
}

.ed-warranty__media {
    display: block;
    width: 100%;
    height: auto;
}

.ed-warranty__copy {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(48%, 480px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(28px, 4.2vw, 52px) clamp(20px, 3.2vw, 40px) clamp(16px, 2vw, 28px);
    z-index: 2;
}

.ed-warranty__write {
    position: absolute;
    top: 1.5%;
    right: 0.8%;
    z-index: 3;
    width: min(22%, 220px);
    height: min(28%, 150px);
    pointer-events: none;
    overflow: visible;
    transform: rotate(-8deg);
    transform-origin: 100% 0;
}

.ed-warranty__write-word {
    margin: 0;
    padding: 8px 6px 8px 4px;
    font-family: var(--font-hand);
    font-size: clamp(1.55rem, 3.2vw, 2.35rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: #12141a;
    white-space: nowrap;
    clip-path: inset(0 100% 0 0);
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.15));
    /* Keep invisible until JS confirms Caveat is ready (or reduced-motion path) */
    visibility: hidden;
}

.ed-warranty__write.is-writing .ed-warranty__write-word,
.ed-warranty__write.is-written .ed-warranty__write-word {
    visibility: visible;
}

.ed-warranty__write.is-writing .ed-warranty__write-word {
    animation: edWriteReveal 2.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
}

.ed-warranty__write.is-written .ed-warranty__write-word {
    clip-path: inset(0 0 0 0);
}

@keyframes edWriteReveal {
    0% { clip-path: inset(0 100% 0 0); }
    12% { clip-path: inset(0 88% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}


.ed-warranty__aside {
    position: absolute;
    right: 2.5%;
    bottom: 4%;
    z-index: 2;
    width: min(38%, 340px);
    color: #fff;
    font-family: var(--font-body);
    padding: 4px 2px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ed-warranty__aside-title {
    margin: 0;
    font-size: clamp(0.88rem, 1.4vw, 1.1rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.35;
    text-transform: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.ed-warranty__aside-sub {
    margin: 0;
    font-size: clamp(0.78rem, 1.2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.ed-warranty__figure {
    display: none;
}

.ed-warranty__num,
.ed-warranty__unit,
.ed-warranty__label {
    display: none;
}

.ed-warranty__eyebrow {
    color: var(--accent-blue);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: none;
    margin: 0 0 18px;
}

.ed-warranty__copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.6vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin: 0 0 16px;
    max-width: 13ch;
    color: #0a0b0e;
}

.ed-warranty__lead {
    color: #12141a;
    font-size: clamp(17px, 1.9vw, 21px);
    font-weight: 600;
    line-height: 1.5;
    max-width: 36ch;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.home-search-block {
    max-width: 1280px;
    margin: 28px auto 0;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    /* Above following .reveal banner: transform creates stacking contexts. */
    position: relative;
    z-index: 20;
}

.home-section--offers {
    padding-top: 48px;
}

.home-promos {
    width: min(980px, calc(100% - 48px));
    margin: 40px auto 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.home-promos .home-section__head {
    margin-bottom: 20px;
}

.home-promos + .home-section.home-section--offers {
    padding-top: 36px;
}

.home-promos__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 18px);
}

.promo-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(18, 20, 26, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .promo-card:hover {
        transform: translateY(-3px);
        border-color: var(--accent-yellow);
        box-shadow: 0 16px 32px rgba(18, 20, 26, 0.14);
    }
}

.promo-card__media {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f3f3f3;
}

.promo-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo-card__title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.promo-card__title a {
    color: inherit;
    text-decoration: none;
}

.promo-card__title a:hover {
    color: var(--accent-blue);
}

.promo-card__teaser {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.45;
}

.home-promo-banner {
    /* Square artwork: natural proportions, no stretch or letterboxing. */
    width: min(860px, calc(100% - 48px));
    margin: 32px auto 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.home-promo-banner + .home-section.home-section--offers {
    padding-top: 32px;
}

.home-promo-banner__link {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(18, 20, 26, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-promo-banner__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(18, 20, 26, 0.2);
}

.home-promo-banner__media {
    display: block;
    width: 100%;
    height: auto;
}

.home-offer-block {
    margin-top: 28px;
}

.home-offer-block + .home-offer-block {
    margin-top: 40px;
}

.home-offer-divider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f3f4f6;
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent-yellow);
}

.home-offer-divider h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.home-offer-divider__link {
    color: var(--text-main);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 4px;
    background: var(--accent-yellow);
}

.home-offer-divider__link:hover {
    filter: brightness(0.97);
}

.home-offer-empty {
    margin: 0;
    padding: 18px 4px;
    color: var(--text-muted);
    font-size: 14px;
}

.home-deep-search {
    margin-top: 0;
    padding: 22px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.home-deep-search__fold {
    border: 0;
}

.home-deep-search__fold-summary {
    list-style: none;
    cursor: default;
    margin-bottom: 14px;
}

.home-deep-search__fold-summary::-webkit-details-marker {
    display: none;
}

.home-deep-search__fold-title {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-main);
}

.home-deep-search__fold-hint {
    display: none;
}

.home-deep-search__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.home-deep-search__head h4 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0;
    color: var(--text-main);
    text-transform: none;
    font-weight: 700;
    font-family: var(--font-display);
}

.home-deep-search__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.home-deep-search__tab {
    flex: 1 1 160px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--glass-border);
    background: #f7f8fa;
    color: var(--text-main);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
}

.home-deep-search__tab:hover {
    border-color: #d7dbe3;
    background: #fff;
}

.home-deep-search__tab.is-active {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--text-main);
}

.home-deep-search__tab:focus-visible {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 2px;
}

.home-deep-search__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.home-deep-search__grid[hidden] {
    display: none !important;
}

.home-deep-search__grid input,
.home-deep-search__grid select,
.home-deep-search__grid .tdv-select {
    min-width: 0;
}

.home-deep-search__grid input,
.home-deep-search__grid select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--glass-border);
    background: #f7f8fa;
    color: var(--text-main);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    font-family: var(--font-body);
}

.home-deep-search__grid select {
    color-scheme: light;
}

.home-deep-search__grid select.tdv-select-native {
    display: none;
}

.home-deep-search__grid input::placeholder {
    color: var(--text-muted);
}

.home-deep-search__grid select option {
    background: #fff;
    color: var(--text-main);
}

.home-deep-search__grid input:focus,
.home-deep-search__grid select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.28);
}

.home-deep-search__submit {
    min-height: 48px;
    min-width: 180px;
    border-radius: 4px;
}

.home-deep-search__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}

.tdv-select {
    position: relative;
    width: 100%;
    z-index: 1;
}

.tdv-select.open {
    z-index: 30;
}

.tdv-select__trigger {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--glass-border);
    background: #f7f8fa;
    color: var(--text-main);
    border-radius: 12px;
    padding: 12px 40px 12px 14px;
    font-size: 14px;
    text-align: left;
    position: relative;
    cursor: pointer;
    font-family: var(--font-body);
}

.tdv-select__trigger::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 11px;
}

.tdv-select.open .tdv-select__trigger {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.28);
}

.tdv-select__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: min(320px, 50vh);
    z-index: 1200;
    box-shadow: var(--shadow-hover);
    -webkit-overflow-scrolling: touch;
}

.tdv-select.open .tdv-select__dropdown { display: block; }

.tdv-select__option {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text-main);
    padding: 10px 12px;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-body);
}

.tdv-select__option:hover,
.tdv-select__option.is-selected {
    background: var(--accent-blue-soft);
    color: var(--accent-blue);
}

.home-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 88px 24px 0;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .home-section {
        padding: 56px 16px 0;
    }

    .car-card__cta {
        min-height: 42px;
    }

    .catalog-brands-reset {
        margin-left: 0;
        width: 100%;
    }
}

.home-section__head {
    margin-bottom: 32px;
    max-width: 640px;
}

.home-section__eyebrow {
    display: inline-block;
    color: #12141a;
    background: var(--accent-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 12px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.home-section__head h2 {
    font-family: var(--font-hero);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    margin: 0 0 10px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.home-section__head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 16px;
}

.home-featured-grid,
.catalog-vehicle-grid {
    display: grid;
    /* Не больше 5 колонок на широких экранах; при зуме/узкой ширине колонки уменьшаются сами */
    grid-template-columns: repeat(
        auto-fill,
        minmax(min(100%, max(200px, calc((100% - 48px) / 5))), 1fr)
    );
    gap: clamp(8px, 1.2vw, 12px);
    width: 100%;
}

.car-card {
    padding: 0 !important;
    overflow: hidden;
    border-radius: 4px !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    border: 1px solid var(--glass-border) !important;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    container-type: inline-size;
    container-name: car-card;
}

@media (hover: hover) and (pointer: fine) {
    .car-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
        border-color: var(--accent-yellow) !important;
    }

    .car-card:hover .car-card__media img,
    .car-card:hover .car-card__media--list img {
        transform: none;
    }
}

.car-card:hover {
    border-color: var(--accent-yellow) !important;
}

.car-card__media,
.car-card__media--list {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #eef1f5;
    flex-shrink: 0;
}

.car-card__media--list {
    border-radius: 0;
    margin-bottom: 0;
}

.car-card__media-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.car-card__brand,
.car-card__brand-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 11;
    background: rgba(15, 20, 25, 0.78);
    color: #fff;
    padding: 3px 8px;
    font-size: 10px;
    font-size: clamp(8px, 2.4cqi, 10px);
    font-weight: 700;
    border-radius: 999px;
    max-width: min(46%, 7.5rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.car-card__brand-badge {
    border-radius: 4px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.car-card__body {
    padding: 10px;
    padding: clamp(8px, 2.5cqi, 12px);
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 2px;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a.car-card__body:hover,
a.car-card__body:focus-visible {
    color: inherit;
    text-decoration: none;
}

a.car-card__body:focus-visible {
    outline: 2px solid var(--accent-blue, #2563eb);
    outline-offset: 2px;
}

.car-card__title {
    font-size: 14px !important;
    font-size: clamp(12px, 3.6cqi, 14px) !important;
    height: auto !important;
    max-height: none;
    margin: 0 0 2px !important;
    line-height: 1.3;
    letter-spacing: -0.02em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.car-card__price {
    font-family: var(--font-hero);
    font-size: 15px;
    font-size: clamp(13px, 4.2cqi, 16px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 2px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.car-card__price-sub {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.4;
    margin: 2px 0 0;
}

.vehicle-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin: 6px 0 8px;
    width: 100%;
}

.vehicle-meta-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 5px 4px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    background: #f7f8fa;
    min-width: 0;
    overflow: hidden;
}

.vehicle-meta-item--full {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 10px;
}

.vehicle-meta-item--full .vehicle-meta-label {
    flex: 0 1 auto;
}

.vehicle-meta-item--full .vehicle-meta-value {
    flex: 0 0 auto;
    text-align: right;
}

.vehicle-meta-label {
    color: var(--text-muted);
    font-size: 8px;
    font-size: clamp(7px, 2.2cqi, 8px);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vehicle-meta-value {
    color: var(--text-main);
    font-size: 10px;
    font-size: clamp(9px, 2.8cqi, 10px);
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@container car-card (max-width: 200px) {
    .vehicle-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .car-card__cta {
        padding: 9px 8px;
        font-size: 10px;
    }
}

@supports not (container-type: inline-size) {
    @media (max-width: 480px) {
        .vehicle-meta-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    counter-reset: step;
}

.process-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 24px 20px;
    position: relative;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--accent-yellow);
}

.process-card__summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    list-style: none;
    cursor: default;
}

.process-card__summary::-webkit-details-marker {
    display: none;
}

.process-card__summary::marker {
    content: "";
}

.process-card::before {
    counter-increment: step;
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: var(--accent-yellow);
    color: #12141a;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 12px;
}

.process-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.process-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.process-card__meta {
    display: inline-flex;
    align-self: flex-start;
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #12141a;
    background: var(--accent-yellow);
    padding: 5px 10px;
    border-radius: 3px;
}

/* Inspection block */
.ed-inspect {
    width: 100%;
    margin-top: 72px;
    background: #f7f7f8;
    border-block: 1px solid var(--glass-border);
}

.ed-inspect__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 72px 24px;
}

.ed-inspect__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ed-inspect__card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 28px 24px;
    border-left: 4px solid var(--accent-yellow);
}

.ed-inspect__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    border-radius: 4px;
    background: var(--accent-yellow);
    color: #12141a;
    font-family: var(--font-hero);
    font-size: 14px;
    font-weight: 800;
}

.ed-inspect__card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.ed-inspect__card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

/* Delivery estimate table */
.ed-delivery {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 20px;
    align-items: stretch;
}

.ed-delivery__table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.ed-delivery__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.ed-delivery__table th,
.ed-delivery__table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.ed-delivery__table th {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: #f3f3f4;
}

.ed-delivery__table tbody tr:last-child td {
    border-bottom: none;
}

.ed-delivery__table td:last-child {
    font-weight: 700;
    white-space: nowrap;
}

.ed-delivery__table tbody tr:hover td {
    background: rgba(255, 179, 0, 0.08);
}

.ed-delivery__aside {
    background: #12141a;
    color: rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.ed-delivery__aside p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.ed-delivery__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.ed-delivery__link {
    color: var(--accent-yellow);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.ed-delivery__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
}

.faq-item h3,
.faq-item summary {
    font-size: 17px;
    margin: 0;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    float: right;
    font-weight: 700;
    color: var(--text-muted);
    margin-left: 12px;
}

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

.faq-item p,
.faq-item__answer {
    margin: 10px 0 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
}

.home-empty {
    text-align: center;
    padding: 48px 28px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

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

@keyframes edHeroZoom {
    from { opacity: 0.85; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}

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

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

@keyframes edFeatureIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes btnShine {
    from { transform: translateX(-120%) skewX(-18deg); }
    to { transform: translateX(220%) skewX(-18deg); }
}

header.is-scrolled {
    box-shadow: 0 8px 28px rgba(18, 20, 26, 0.08);
}

.ed-hero__copy {
    animation: edHeroCopyIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ed-hero__features li {
    opacity: 0;
    animation: edFeatureIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ed-hero__features li:nth-child(1) { animation-delay: 0.28s; }
.ed-hero__features li:nth-child(2) { animation-delay: 0.4s; }
.ed-hero__features li:nth-child(3) { animation-delay: 0.52s; }

.ed-hero__actions {
    opacity: 0;
    animation: edHeroCopyIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

.ed-hero__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
}

.ed-hero__photo:hover::after {
    opacity: 1;
}

.ed-metrics__item {
    opacity: 0;
    animation: edMetricIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ed-metrics__item:nth-child(1) { animation-delay: 0.1s; }
.ed-metrics__item:nth-child(2) { animation-delay: 0.18s; }
.ed-metrics__item:nth-child(3) { animation-delay: 0.26s; }
.ed-metrics__item:nth-child(4) { animation-delay: 0.34s; }

.btn-elite::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: translateX(-120%) skewX(-18deg);
    pointer-events: none;
}

.btn-elite:hover::before {
    animation: btnShine 0.7s ease;
}

.process-card {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-yellow);
    box-shadow: 0 12px 28px rgba(18, 20, 26, 0.08);
}

.ed-inspect__card {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.ed-inspect__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(18, 20, 26, 0.07);
}

.ed-delivery__table tbody tr {
    transition: background 0.2s ease;
}

.ed-delivery__aside {
    transition: transform 0.3s ease;
}

.ed-delivery__aside:hover {
    transform: translateY(-2px);
}

.home-about-strip {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about-strip:hover {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.is-visible,
    .ed-hero__media,
    .ed-hero__inner,
    .ed-hero__copy,
    .ed-hero__features li,
    .ed-hero__actions,
    .ed-hero__photo img,
    .ed-metrics__item,
    .car-card,
    .car-card__media img,
    .process-card,
    .ed-inspect__card,
    .btn-elite::before,
    .ed-warranty__write-word {
        animation: none !important;
        transition: none !important;
        filter: none !important;
    }

    .ed-warranty__write-word {
        clip-path: none !important;
        opacity: 1 !important;
    }

    .ed-hero__photo::after,
    header.is-scrolled {
        display: none;
    }
}

@media (max-width: 960px) {
    .home-deep-search__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-deep-search__grid[hidden] {
        display: none !important;
    }

    .leads-cta-section {
        width: calc(100% - 28px);
        margin-top: 48px;
        border-radius: 0;
        padding: 16px 0 32px;
    }

    .ed-metrics,
    .ed-warranty {
        width: calc(100% - 28px);
        margin-top: 18px;
        border-radius: 12px;
    }

    .home-mobile-quick {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        width: calc(100% - 28px);
        margin: 16px auto 0;
    }

    .home-mobile-quick__item {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 10px 6px;
        border: 1px solid rgba(18, 20, 26, 0.1);
        border-radius: 10px;
        background: #fff;
        text-decoration: none;
        color: var(--text-main);
        box-shadow: 0 4px 12px rgba(18, 20, 26, 0.05);
    }

    .home-mobile-quick__label {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.01em;
        text-align: center;
        line-height: 1.2;
    }

    .home-promos {
        width: calc(100% - 28px);
        margin-top: 28px;
    }

    .home-promos__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-promo-banner {
        width: calc(100% - 28px);
        margin-top: 24px;
    }

    .home-promo-banner__link {
        border-radius: 12px;
    }

    .ed-warranty__panel {
        display: flex;
        flex-direction: column;
    }

    .ed-warranty__copy {
        position: static;
        width: 100%;
        inset: auto;
        padding: 22px 18px 16px;
        background: #fff;
    }

    .ed-warranty__copy h2 {
        max-width: none;
        font-size: clamp(1.15rem, 5.2vw, 1.45rem);
        line-height: 1.25;
    }

    .ed-warranty__lead {
        max-width: none;
        font-size: 0.95rem;
    }

    /* Anchor to top-right of the yellow plate, then scale in so the word fits */
    .ed-warranty__write {
        top: 0.5%;
        right: 0;
        width: auto;
        height: auto;
        max-height: none;
        overflow: visible;
        transform: rotate(-8deg) scale(0.52);
        transform-origin: top right;
    }

    .ed-warranty__write-word {
        font-size: 1.45rem;
        padding: 6px 10px 4px 0;
        line-height: 0.95;
        letter-spacing: 0;
        white-space: nowrap;
    }

    /* Keep diagnostic copy below the image — no white-on-photo overlay on phones */
    .ed-warranty__aside {
        position: static;
        right: auto;
        bottom: auto;
        width: 100%;
        gap: 8px;
        padding: 18px 22px 24px;
        color: var(--text-main);
        background: #fff;
    }

    .ed-warranty__aside-title {
        font-size: 0.95rem;
        line-height: 1.4;
        color: var(--text-main);
        text-shadow: none;
    }

    .ed-warranty__aside-sub {
        font-size: 0.88rem;
        line-height: 1.4;
        color: var(--text-muted);
        text-shadow: none;
    }

    .ed-inspect__grid,
    .ed-delivery {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-card {
        padding: 0;
        overflow: hidden;
    }

    .process-card::before {
        position: absolute;
        top: 14px;
        left: 14px;
        margin: 0;
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .process-card__summary {
        cursor: pointer;
        padding: 14px 14px 14px 52px;
        position: relative;
    }

    .process-card__summary::after {
        content: "";
        position: absolute;
        top: 22px;
        right: 16px;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--text-main);
        border-bottom: 2px solid var(--text-main);
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    .process-card[open] .process-card__summary::after {
        top: 26px;
        transform: rotate(-135deg);
    }

    .process-card__summary h3 {
        margin: 4px 0 0;
        font-size: 16px;
        padding-right: 18px;
    }

    .process-card > p {
        margin: 0;
        padding: 0 14px 16px 52px;
        font-size: 0.92rem;
        color: var(--text-muted);
    }

    .ed-metrics {
        overflow: hidden;
    }

    .ed-metrics__inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        overflow: visible;
        scroll-snap-type: none;
        padding: 0;
    }

    .ed-metrics__inner::-webkit-scrollbar {
        display: none;
    }

    .ed-metrics__item {
        flex: none;
        width: auto;
        border: 0;
        border-radius: 0;
        background: transparent;
        padding: 10px 10px;
        text-align: left;
        border-right: 1px solid rgba(18, 20, 26, 0.14);
        border-bottom: 1px solid rgba(18, 20, 26, 0.14);
    }

    .ed-metrics__item:nth-child(2n) {
        border-right: 0;
    }

    .ed-metrics__item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .ed-metrics__item:last-child {
        border-right: 0;
    }

    .ed-metrics__item strong {
        font-size: 0.78rem;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .ed-metrics__item span {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-top: 2px;
    }

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

    .ed-hero {
        min-height: 0;
        align-items: stretch;
    }

    .ed-hero__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 16px 20px;
    }

    .ed-hero__photo {
        order: -1;
        max-width: none;
        margin: 0;
    }

    .ed-hero__photo img {
        clip-path: none;
        border-radius: var(--radius);
        max-height: 200px;
        width: 100%;
        object-fit: cover;
        object-position: center 28%;
    }

    .ed-hero__photo-badge {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        font-size: 11px;
        padding: 8px 10px;
    }

    .ed-hero__caption {
        display: none;
    }

    .ed-hero__brand {
        font-size: clamp(1.35rem, 6.5vw, 1.7rem);
        margin: 0 0 4px;
        line-height: 1.05;
    }

    .ed-hero__title {
        max-width: none;
        font-size: 0.98rem;
        white-space: normal;
        margin: 0 0 6px;
        line-height: 1.3;
    }

    .ed-hero__lead {
        max-width: none;
        font-size: 0.9rem;
        margin: 0 0 10px;
        line-height: 1.4;
    }

    .ed-hero__features {
        display: none;
    }

    .ed-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ed-hero__cta-primary {
        width: 100%;
        justify-content: center;
        text-align: center;
        min-height: 46px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .ed-hero__cta-secondary {
        display: none;
    }

    .ed-hero__photo img {
        clip-path: none;
        border-radius: var(--radius);
        max-height: 160px;
        width: 100%;
        object-fit: cover;
        object-position: center 28%;
    }

    .ed-hero__photo-badge {
        bottom: 8px;
        left: 8px;
        right: 8px;
        max-width: none;
        font-size: 10px;
        padding: 6px 8px;
    }

    .ed-hero__inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px 14px 16px;
    }

    .home-deep-search {
        padding: 12px;
    }

    .home-deep-search__fold-summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin: 0;
        padding: 4px 2px;
        cursor: pointer;
    }

    .home-deep-search__fold-title {
        font-size: 15px;
    }

    .home-deep-search__fold-hint {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(18, 20, 26, 0.06);
        color: var(--text-muted);
        font-size: 11px;
        font-weight: 700;
    }

    .home-deep-search__fold[open] .home-deep-search__fold-hint {
        display: none;
    }

    .home-deep-search__fold-body {
        margin-top: 12px;
    }

    .home-deep-search__tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 6px;
        margin-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .home-deep-search__tabs::-webkit-scrollbar {
        display: none;
    }

    .home-deep-search__tab {
        flex: 0 0 auto;
        min-height: 36px;
        padding: 8px 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .home-deep-search__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-deep-search__grid > input[name="q"],
    .home-deep-search__grid > .tdv-select:first-of-type,
    .home-deep-search__actions {
        grid-column: 1 / -1;
    }

    .home-deep-search__grid input,
    .home-deep-search__grid select,
    .home-deep-search__grid .tdv-select {
        min-width: 0;
    }

    .home-deep-search__grid input,
    .home-deep-search__grid select,
    .tdv-select__trigger {
        min-height: 40px;
        padding: 8px 10px;
        font-size: 13px;
        border-radius: 8px;
    }

    .home-deep-search__submit {
        width: 100%;
        min-height: 44px;
        font-size: 14px;
    }

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

    .promo-card__body {
        padding: 10px 10px 12px;
        gap: 4px;
    }

    .promo-card__title {
        font-size: 13px;
    }

    .promo-card__teaser {
        font-size: 11px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ed-warranty__aside {
        display: none;
    }

    .ed-warranty__copy {
        padding: 16px 14px 12px;
    }

    .home-section__head p {
        font-size: 0.9rem;
    }

    .home-section__head h2 {
        font-size: clamp(1.2rem, 5.2vw, 1.45rem);
    }
}

@media (min-width: 961px) {
    .home-mobile-quick {
        display: none !important;
    }

    .process-card__summary {
        pointer-events: none;
    }

    .process-card > p {
        display: block !important;
    }

    .home-deep-search__fold-summary {
        pointer-events: none;
        margin-bottom: 14px;
    }

    .home-deep-search__fold-body {
        display: block !important;
    }
}

@media (max-width: 640px) {
    .leads-cta-section {
        width: calc(100% - 20px);
        margin-top: 40px;
        border-radius: 0;
        padding: 12px 0 28px;
    }

    .ed-metrics,
    .ed-warranty {
        width: calc(100% - 20px);
        margin-top: 14px;
        border-radius: 10px;
    }

    .ed-warranty__write {
        transform: rotate(-8deg) scale(0.46);
    }

    .ed-warranty__write-word {
        font-size: 1.35rem;
        padding-right: 8px;
    }

    .process-grid,
    .ed-inspect__grid {
        grid-template-columns: 1fr;
    }

    .home-deep-search__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-deep-search__grid[hidden] {
        display: none !important;
    }

    .home-deep-search__submit {
        width: 100%;
        min-width: 0;
    }

    .ed-metrics__inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        overflow: visible;
        padding: 0;
    }

    .home-section {
        padding-top: 48px;
    }

    .ed-inspect__inner {
        padding: 40px 18px;
    }

    .home-mobile-quick {
        width: calc(100% - 20px);
    }

}

.home-section--faq {
    padding-bottom: 24px;
}

.home-section--reviews {
    padding-top: 48px;
}

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

.home-review {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.home-review__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-review__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    background: #1f8a4c;
}

.home-review__avatar--0 { background: #1f8a4c; }
.home-review__avatar--1 { background: #c2410c; }
.home-review__avatar--2 { background: #1d4ed8; }
.home-review__avatar--3 { background: #12141a; }

.home-review__avatar--photo {
    object-fit: cover;
    object-position: center;
    background: #e8eaee;
    padding: 0;
}

.home-review__avatar--avito {
    background: #f3f4f6;
    border: 1px solid var(--glass-border);
}

.home-review__avatar--avito img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.home-review--placeholder {
    background: #fafbfc;
    border-style: dashed;
}

.home-review--placeholder .home-review__text {
    color: var(--text-muted);
}

.home-review__who {
    min-width: 0;
}

.home-review__name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
}

.home-review__subtitle {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.35;
}

.home-review__rating {
    display: flex;
    gap: 2px;
    line-height: 1;
}

.home-review__star {
    color: rgba(18, 20, 26, 0.18);
    font-size: 16px;
}

.home-review__star.is-on {
    color: var(--accent-yellow);
}

.home-review__text {
    margin: 0;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.55;
    white-space: pre-line;
}

.home-review__text.is-clamped {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    white-space: normal;
}

.home-review__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-review__more {
    align-self: flex-start;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--text-main);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home-review__more:hover {
    color: #000;
}

.home-review__source-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #1f8a4c;
}

.home-review__source-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home-review__source-link.is-static {
    color: var(--text-muted);
    cursor: default;
}

.home-review__source-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.home-review__source-link--yandex {
    color: #e11d48;
}

.home-review__source-link--2gis {
    color: #15803d;
}

.home-review__source-link--avito {
    color: #7c3aed;
}

.home-reviews-platforms {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.home-reviews-platform {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

a.home-reviews-platform:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 20, 26, 0.22);
}

.home-reviews-platform.is-static {
    opacity: 0.72;
}

.home-reviews-platform__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.home-reviews-platform--yandex .home-reviews-platform__icon,
.home-reviews-platform--2gis .home-reviews-platform__icon,
.home-reviews-platform--avito .home-reviews-platform__icon {
    border-radius: 10px;
}

.home-reviews-platform__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-reviews-platform__score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-main);
    line-height: 1;
}

.home-reviews-platform__score.is-empty {
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 600;
}

.home-reviews-platform__star {
    color: var(--accent-yellow);
    font-size: 16px;
}

.home-reviews-platform__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
}

.home-reviews-platform__label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.35;
}

.home-reviews-carousel {
    position: relative;
}

.home-reviews-nav {
    display: none;
}

.home-reviews-swipe-hint {
    display: none;
}

.home-reviews-empty {
    min-height: 220px;
    display: flex;
    align-items: stretch;
}

.home-reviews-empty__card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 36px 28px;
    background: #fff;
    border: 1px dashed rgba(18, 20, 26, 0.22);
    border-radius: 12px;
}

.home-reviews-empty__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.home-reviews-empty__text {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
    max-width: 54ch;
}

@media (max-width: 960px) {
    .home-section--reviews {
        padding-top: 36px;
    }

    .home-section--reviews .home-section__head {
        margin-bottom: 16px;
    }

    .home-section--reviews .home-section__head p {
        font-size: 14px;
        line-height: 1.45;
    }

    .home-reviews-carousel {
        position: relative;
        margin-bottom: 4px;
    }

    .home-reviews-carousel.has-scroll .home-reviews-grid {
        mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
    }

    .home-reviews-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 42%;
        z-index: 2;
        width: 36px;
        height: 36px;
        margin-top: -18px;
        border: 1px solid rgba(18, 20, 26, 0.12);
        border-radius: 50%;
        background: #fff;
        color: var(--text-main);
        font-size: 26px;
        line-height: 1;
        box-shadow: 0 6px 18px rgba(18, 20, 26, 0.12);
        cursor: pointer;
        padding: 0;
    }

    .home-reviews-nav:disabled {
        opacity: 0.35;
        cursor: default;
    }

    .home-reviews-nav--prev {
        left: -2px;
    }

    .home-reviews-nav--next {
        right: -2px;
    }

    .home-reviews-swipe-hint {
        display: block;
        margin: 0 0 10px;
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.02em;
        color: var(--text-muted);
    }

    .home-reviews-grid {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 2px 8px 10px;
        margin: 0 -4px 4px;
        scrollbar-width: none;
    }

    .home-reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .home-review {
        flex: 0 0 min(78vw, 280px);
        width: min(78vw, 280px);
        max-width: 280px;
        scroll-snap-align: start;
        height: auto;
        min-height: 0;
        padding: 16px;
        gap: 10px;
        border-radius: 14px;
    }

    .home-review__avatar {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .home-review__name {
        font-size: 14px;
    }

    .home-review__subtitle {
        font-size: 12px;
    }

    .home-review__star {
        font-size: 14px;
    }

    .home-review__text {
        font-size: 13px;
        line-height: 1.45;
    }

    .home-review__text.is-clamped {
        -webkit-line-clamp: 4;
    }

    .home-review__content {
        flex: 0 1 auto;
    }

    .home-review__more {
        font-size: 12px;
    }

    .home-review__source-link {
        font-size: 12px;
        gap: 6px;
        margin-top: auto;
    }

    .home-reviews-platforms {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 12px;
    }

    .home-reviews-platform {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
        padding: 12px 8px 10px;
        border-radius: 12px;
        min-width: 0;
        box-shadow: none;
    }

    .home-reviews-platform__icon {
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }

    .home-reviews-platform__body {
        align-items: center;
        gap: 2px;
        width: 100%;
    }

    .home-reviews-platform__score {
        font-size: 1.05rem;
        gap: 3px;
    }

    .home-reviews-platform__score.is-empty {
        font-size: 1rem;
    }

    .home-reviews-platform__star {
        font-size: 13px;
    }

    .home-reviews-platform__name {
        font-size: 11px;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .home-reviews-platform__label {
        font-size: 10px;
        line-height: 1.2;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .home-review {
        flex-basis: calc(100vw - 72px);
        width: calc(100vw - 72px);
        max-width: none;
    }

    .home-reviews-nav {
        width: 32px;
        height: 32px;
        font-size: 22px;
        margin-top: -16px;
    }
}

.faq-list__more {
    padding-top: 8px;
}

.faq-list__more a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
}

.home-process-note {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 13px;
    max-width: 720px;
}

.home-process-note a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
}

.home-process-note a:hover {
    text-decoration: underline;
}

.info-page {
    padding: 80px 0 48px;
}

.info-page__intro {
    margin-bottom: 40px;
}

.info-page__intro h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 12px 0 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.info-page__intro p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0;
}

.info-page__payment {
    margin-top: 64px;
}

.info-page__cta {
    margin-top: 56px;
    padding: 40px;
    text-align: center;
}

.info-page__cta h3 {
    font-size: 24px;
    margin: 0 0 12px;
}

.info-page__cta p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 24px;
}

/* —— Services & price list —— */
.services-page__block {
    padding: 28px 28px 32px;
    margin-bottom: 48px;
}

.services-page__block h2 {
    margin: 8px 0 12px;
    font-size: clamp(22px, 3vw, 28px);
}

.services-page__lead {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 0 18px;
}

.services-page__bullets {
    margin: 0;
}

.services-page__section {
    padding-top: 8px;
    margin-bottom: 24px;
}

.services-page__step-title {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.services-price {
    padding: 24px 24px 20px;
    margin-bottom: 16px;
}

.services-price__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px 20px;
    margin-bottom: 18px;
}

.services-price__head h3 {
    margin: 6px 0 0;
    font-size: clamp(22px, 3vw, 28px);
}

.services-price__total {
    margin: 0;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.services-price__table td:last-child,
.services-price__table th:last-child {
    white-space: nowrap;
    font-weight: 700;
}

.services-price__note {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f7f8fa;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.services-price__note strong {
    color: var(--text-main);
}

.services-page__payment-ways {
    padding: 22px 24px;
}

.services-page__payment-ways h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.services-page__payment-ways p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.services-page__cta a:not(.btn-elite) {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 720px) {
    .services-page__block,
    .services-price,
    .services-page__payment-ways {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* —— Price landing /avto-pod-zakaz/ —— */
.price-landing__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 0;
}

.price-landing__note {
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.price-landing__note a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.price-landing__brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.price-landing__brand-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(18, 20, 26, 0.12);
    background: #fff;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.price-landing__brand-chip:hover {
    border-color: var(--accent-yellow);
    background: #fff8e6;
}

.price-landing__group {
    padding: 22px 24px;
    margin-bottom: 16px;
}

.price-landing__group-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px 16px;
    margin-bottom: 14px;
}

.price-landing__group-head h2 {
    margin: 0;
    font-size: 20px;
}

.price-landing__group-head a {
    font-size: 14px;
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.price-landing__table td:nth-child(2),
.price-landing__table th:nth-child(2) {
    white-space: nowrap;
    font-weight: 700;
}

.price-landing__table td:last-child {
    color: var(--text-muted);
    white-space: nowrap;
}

.price-landing__updated {
    margin: 8px 0 0;
    color: var(--text-muted);
    font-size: 13px;
}

.price-landing__faq {
    display: grid;
    gap: 10px;
}

.price-landing__faq-item {
    padding: 0;
}

.price-landing__faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 15px;
}

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

.price-landing__faq-item p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 720px) {
    .price-landing__group {
        padding: 14px 12px;
    }

    .price-landing__group-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 10px;
    }

    .price-landing__group-head h2 {
        font-size: 16px;
        line-height: 1.25;
    }

    .price-landing__group-head a {
        font-size: 13px;
    }

    .price-landing__group .ed-delivery__table-wrap {
        overflow: visible;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        margin: 0 -4px;
    }

    .price-landing__table {
        font-size: 13px;
        table-layout: fixed;
        width: 100%;
    }

    .price-landing__table thead {
        display: none;
    }

    .price-landing__table tbody tr {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: baseline;
        gap: 4px 12px;
        padding: 11px 4px;
        border-bottom: 1px solid var(--glass-border);
    }

    .price-landing__table tbody tr:last-child {
        border-bottom: none;
    }

    .price-landing__table td {
        display: block;
        padding: 0;
        border: none;
        white-space: normal;
    }

    .price-landing__table td:first-child {
        min-width: 0;
        font-size: 13px;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .price-landing__table td:nth-child(2) {
        font-size: 13px;
        font-weight: 800;
        white-space: nowrap;
        text-align: right;
        justify-self: end;
    }

    /* Status is the same for every row — hide on phones */
    .price-landing__table td:nth-child(3) {
        display: none;
    }

    .price-landing__table tbody tr:hover td {
        background: transparent;
    }

    .price-landing__brands {
        gap: 6px;
        margin-bottom: 16px;
    }
}

/* —— About company case —— */
.about-case__intro {
    max-width: 960px;
    margin-bottom: 56px;
}

.info-page__intro h1.about-case__manifesto {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0;
    color: var(--text-main);
    max-width: 760px;
    margin: 16px 0 0;
}

.about-case__manifesto-brand {
    color: var(--accent-yellow);
    font-weight: 700;
}

.about-case__lead {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 36px;
    padding: 28px;
    margin-bottom: 72px;
    align-items: center;
}

.about-case__photo {
    margin: 0;
}

.about-case__photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
}

.about-case__photo figcaption {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 13px;
}

.about-case__sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-yellow);
}

.about-case__lead-copy h2 {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    margin: 0 0 14px;
    letter-spacing: -0.03em;
}

.about-case__lead-copy p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 14px;
}

.about-case__bullets {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-case__bullets li {
    position: relative;
    padding-left: 18px;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.about-case__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent-yellow);
}

.about-case__block {
    margin-bottom: 56px;
}

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

.about-case__pillars--two {
    grid-template-columns: repeat(2, 1fr);
}

.about-case__pillar {
    padding: 28px 24px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    border-top: 3px solid var(--accent-yellow);
    background: #fff;
}

.about-case__pillar h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.about-case__pillar p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.about-case__dealer {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 16px;
    margin-top: 18px;
    padding: 18px 22px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent-yellow);
    background: #fff;
}

.about-case__dealer-mark {
    flex: 0 0 auto;
    color: #12141a;
    background: var(--accent-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.about-case__dealer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-main);
}

.about-case__dealer a {
    color: var(--text-main);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-yellow);
}

.about-case__dealer a:hover {
    color: var(--accent-yellow);
}

.about-case__quote {
    margin: 0 0 56px;
    padding: 28px 32px;
    border-left: 3px solid var(--accent-yellow);
}

.about-case__quote p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: var(--text-main);
    max-width: 820px;
}

.about-case__services {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-case__service {
    padding: 24px 22px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: #fff;
}

.about-case__service .info-feature-mark {
    margin-bottom: 10px;
}

.about-case__service p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.about-case__service:last-child {
    grid-column: 1 / -1;
}

.services-page .about-case__service:last-child {
    grid-column: auto;
}

.about-case__principles {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.about-case__principle {
    grid-column: span 2;
    padding: 24px 22px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    border-top: 3px solid var(--accent-yellow);
    background: #fff;
}

.about-case__principle:nth-child(4),
.about-case__principle:nth-child(5) {
    grid-column: span 3;
}

.about-case__principle h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.about-case__principle p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.about-case__office {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    padding: 36px 40px;
    margin-bottom: 8px;
}

.about-case__office h2 {
    margin: 8px 0 12px;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.about-case__office p {
    margin: 0 0 10px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 560px;
}

.about-case__phone {
    margin-top: 8px !important;
}

.about-case__phone a {
    color: var(--text-main);
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
}

.about-case__phone a:hover {
    color: var(--accent-yellow);
}

.about-case__office-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 960px) {
    .about-case__lead,
    .about-case__pillars,
    .about-case__services,
    .about-case__principles {
        grid-template-columns: 1fr;
    }

    .about-case__service:last-child,
    .about-case__principle,
    .about-case__principle:nth-child(4),
    .about-case__principle:nth-child(5) {
        grid-column: auto;
    }

    .about-case__lead {
        padding: 20px;
        gap: 22px;
    }

    .about-case__quote {
        padding: 22px 20px;
    }

    .about-case__office {
        padding: 28px 24px;
        align-items: flex-start;
    }
}

.home-about-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.home-about-strip .home-section__eyebrow {
    margin-bottom: 8px;
}

.home-about-strip h2 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: -0.03em;
}

.home-about-strip p {
    margin: 0;
    max-width: 52ch;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
}

.home-section--about {
    padding-bottom: 8px;
}

.info-feature-mark {
    font-family: var(--font-hero);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--accent-yellow);
    margin-bottom: 12px;
}

.car-card__cta {
    width: 100%;
    margin-top: auto;
    padding: 10px 12px;
    font-size: 11px;
}

.home-empty h3 {
    margin-bottom: 8px;
}

.home-empty p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.leads-cta-section {
    width: min(1160px, calc(100% - 48px));
    padding: 24px 0 48px;
    margin: 56px auto 0;
    background-color: transparent;
    background-image: none;
    border: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

body.bg-home .leads-cta-section,
body.bg-catalog-cars .leads-cta-section,
body.bg-catalog-trucks .leads-cta-section,
body.bg-catalog-special .leads-cta-section,
.bg-about .leads-cta-section,
body.bg-faq .leads-cta-section {
    background-image: none;
    background-color: transparent;
}

.faq-page {
    position: relative;
    width: 100%;
    margin: 0;
}

.brand-chip-active {
    background: var(--accent-yellow) !important;
    border: 1px solid var(--accent-yellow) !important;
    color: #0f1419 !important;
}

/* —— Header layout —— */
.site-header-inner {
    display: flex;
    width: 100%;
    align-items: center;
    flex: 1;
    min-height: 77px;
    position: relative;
    z-index: 1;
}

.site-logo-wrap {
    flex-shrink: 1;
    min-width: 0;
    margin-right: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.site-tagline {
    margin: 0;
    padding: 0;
    font-family: var(--font-hero);
    font-size: clamp(12px, 3.2vw, 14px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text-main);
    white-space: nowrap;
    max-width: 100%;
}

@media (min-width: 992px) {
    body::before {
        height: calc(96px + env(safe-area-inset-top, 0px));
    }

    header {
        min-height: 0;
        align-items: stretch;
    }

    .site-header-inner {
        display: grid;
        grid-template-columns: auto minmax(132px, 168px) minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 8px;
        row-gap: 6px;
        min-height: 0;
        padding-top: 10px;
        padding-bottom: 12px;
        box-sizing: border-box;
    }

    /* Flatten wrappers so emblem / tagline / search / menu can sit on the grid */
    .site-logo-wrap,
    .site-nav {
        display: contents;
    }

    .site-logo-link {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .site-tagline {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        justify-self: center;
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.01em;
        line-height: 1.2;
        width: 100%;
        max-width: 160px;
    }

    .desktop-search {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        justify-self: start;
        width: 100%;
        max-width: 160px;
        margin: 0;
        padding: 0;
    }

    .desktop-search__input {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 6px 12px;
        font-size: 12px;
    }

    .desktop-search__results {
        left: 0;
        right: auto;
        width: min(300px, 70vw);
    }

    .nav-links {
        grid-column: 3;
        grid-row: 1 / span 2;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 4px;
        margin: 0;
        margin-left: 20px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .nav-links a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .nav-cta {
        padding: 9px 14px;
        font-size: 13px;
        white-space: nowrap;
    }
}

.desktop-search {
    position: relative;
    max-width: 250px;
    width: 100%;
    display: flex;
    align-items: center;
}

.desktop-search__input {
    width: 100%;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: #f8f9fb;
    color: var(--text-main);
    outline: none;
    font-size: 13px;
}

.desktop-search__results {
    position: absolute;
    top: calc(100% + 10px);
    width: 300px;
    right: 0;
    z-index: 1000;
    border-radius: 12px;
    display: none;
    overflow: hidden;
}

.nav-links {
    margin-left: 0;
}

.nav-cta {
    padding: 8px 16px;
}

.site-main {
    min-height: 80vh;
}

/* —— Catalog list —— */
.catalog-brands-bar {
    padding: clamp(12px, 2vw, 20px);
    margin-bottom: clamp(20px, 4vw, 40px);
    border-radius: 15px;
    overflow: hidden;
}

.catalog-brands-row {
    display: flex;
    gap: 8px 10px;
    flex-wrap: wrap;
    align-items: center;
}

.catalog-brands-label {
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--accent-red);
    letter-spacing: 1px;
    flex: 0 0 auto;
}

.catalog-brand-chip {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    line-height: 1.2;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.catalog-filters {
    padding: clamp(14px, 2.5vw, 25px);
    margin-bottom: clamp(20px, 4vw, 40px);
    border-radius: 16px;
}

.catalog-filters__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 14px 16px;
    align-items: end;
}

.catalog-filters__q {
    grid-column: 1 / -1;
}

.catalog-filters__field label,
.catalog-filters__q label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.catalog-filters__field input,
.catalog-filters__q input {
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    background: #f8f9fb;
    box-sizing: border-box;
}

.catalog-filters__range {
    display: flex;
    gap: 6px;
    min-width: 0;
}

.catalog-filters__range input {
    width: 50%;
    min-width: 0;
}

.catalog-brand-chip:hover {
    color: var(--accent-blue);
    background: var(--accent-blue-soft);
}

.catalog-brand-chip.is-active {
    color: #141820;
    background: var(--accent-yellow);
    border: 1px solid var(--accent-yellow);
}

.catalog-brands-reset {
    text-decoration: none;
    color: var(--accent-red);
    font-size: 12px;
    margin-left: auto;
}

.car-card--list {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.car-card__no-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
}

/* —— Vehicle detail —— */
.detail-page-section {
    padding: 40px 0;
    overflow-x: clip;
}

.detail-breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.detail-breadcrumbs a {
    color: var(--accent-red);
    text-decoration: none;
}

.detail-breadcrumbs a:hover {
    text-decoration: underline;
}

.detail-breadcrumbs__sep {
    margin: 0 6px;
    opacity: 0.55;
}

.detail-breadcrumbs__current {
    color: var(--text-main);
}

.catalog-seo-intro {
    max-width: 980px;
    margin: 0 auto 28px;
    text-align: center;
}

.catalog-seo-intro__title {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    letter-spacing: -0.03em;
    margin: 0 0 12px;
    color: var(--text-main);
}

.catalog-seo-intro__text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 720px;
}

.catalog-models-bar {
    margin-bottom: 24px;
    padding: 16px 18px;
}

.seo-landing-section {
    padding: 60px 0;
}

.seo-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.seo-breadcrumbs a {
    color: var(--accent-blue);
    text-decoration: none;
}

.seo-breadcrumbs a:hover {
    text-decoration: underline;
}

.seo-breadcrumbs__sep {
    opacity: 0.45;
}

.seo-landing-section__subtitle {
    margin: 36px 0 18px;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.seo-empty-callout-wrap,
.catalog-empty-callout-wrap {
    margin: 28px 0;
}

.catalog-empty-callout-wrap {
    grid-column: 1 / -1;
}

.seo-empty-callout {
    margin: 0;
    padding: 36px 28px 32px;
    text-align: center;
    border-top: 3px solid var(--accent-yellow);
}

.seo-empty-callout__eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-blue);
}

.seo-empty-callout__title {
    margin: 0 0 14px;
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.seo-empty-callout__text {
    margin: 0 auto 22px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 640px;
    font-size: 16px;
}

.seo-empty-callout__perks {
    list-style: none;
    margin: 0 auto 26px;
    padding: 0;
    max-width: 420px;
    text-align: left;
}

.seo-empty-callout__perks li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.45;
}

.seo-empty-callout__perks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-yellow);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85);
}

.seo-empty-callout__cta {
    min-width: min(100%, 320px);
}

.brands-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.brands-index-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.brands-index-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-yellow);
}

.brands-index-card__logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.brands-index-card__placeholder {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.06);
    font-weight: 700;
    font-size: 22px;
}

.brands-index-card__name {
    font-weight: 600;
    text-align: center;
}

.brands-index-card__cta {
    font-size: 12px;
    color: var(--text-muted);
}

.brands-index-note {
    margin-top: 28px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.brands-index-note a {
    color: var(--accent-blue);
}

.catalog-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 24px;
}

.catalog-empty-state__lead {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.catalog-empty-state__sub {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.catalog-empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.catalog-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.catalog-pagination__btn {
    padding: 8px 14px;
    font-size: 12px;
}

.catalog-vehicle-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.vehicle-detail-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.vehicle-detail-layout > * {
    min-width: 0;
    max-width: 100%;
}

.vehicle-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 100%;
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.vehicle-gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.vehicle-gallery-main__img {
    width: 100%;
    display: block;
    object-fit: cover;
    cursor: zoom-in;
    touch-action: pan-y;
    -webkit-user-drag: none;
}

.vehicle-gallery-chrome {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
    z-index: 2;
}

.vehicle-gallery-counter,
.vehicle-gallery-expand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(10, 10, 14, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

.vehicle-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(16px, env(safe-area-inset-top, 0px)) 12px max(16px, env(safe-area-inset-bottom, 0px));
    background: rgba(10, 10, 14, 0.92);
    touch-action: none;
    overscroll-behavior: none;
}

.vehicle-lightbox[hidden] {
    display: none !important;
}

.vehicle-lightbox__backdrop {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}

.vehicle-lightbox__stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(96vw, 1400px);
    height: min(88vh, 100%);
    transition: transform 0.16s ease-out;
    will-change: transform;
}

.vehicle-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    cursor: default;
    -webkit-user-drag: none;
    user-select: none;
}

.vehicle-lightbox__close,
.vehicle-lightbox__nav {
    position: absolute;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.vehicle-lightbox__close {
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
    font-size: 28px;
    line-height: 1;
}

.vehicle-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    font-size: 28px;
    line-height: 1;
}

.vehicle-lightbox__nav--prev {
    left: max(8px, env(safe-area-inset-left, 0px));
}

.vehicle-lightbox__nav--next {
    right: max(8px, env(safe-area-inset-right, 0px));
}

.vehicle-lightbox__counter {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    min-width: 64px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(8px);
}

body.vehicle-lightbox-open {
    overflow: hidden;
    touch-action: none;
}

.vehicle-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(10, 10, 14, 0.68);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.vehicle-gallery-nav--prev {
    left: 10px;
}

.vehicle-gallery-nav--next {
    right: 10px;
}

.vehicle-gallery-empty {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.vehicle-gallery-thumb {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    border: 1px solid var(--glass-border);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vehicle-gallery-thumb.is-active {
    border-color: var(--accent-red);
    box-shadow: 0 0 14px rgba(255, 179, 0, 0.28);
}

.vehicle-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.vehicle-video {
    margin: 8px 0 24px;
}

.vehicle-video__title {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-main);
}

.vehicle-video__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #0a0b0e;
    border: 1px solid var(--glass-border);
}

.vehicle-video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vehicle-detail-sidebar {
    padding: 30px;
    border-radius: 20px;
}

.vehicle-detail-head {
    margin-bottom: 30px;
}

.vehicle-detail-brand {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 2px;
}

.vehicle-detail-title {
    font-size: 36px;
    margin: 10px 0;
}

.vehicle-price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.vehicle-price-main {
    font-size: 32px;
    font-weight: 900;
}

.vehicle-price-note {
    margin-top: 12px;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
    border-color: rgba(255, 179, 0, 0.5);
    background: rgba(255, 179, 0, 0.12);
}

.vehicle-spec-card {
    padding: 12px;
    border-radius: 10px;
}

.vehicle-spec-card--year {
    background: var(--accent-blue-soft);
    border-color: rgba(255, 179, 0, 0.28);
}

.vehicle-spec-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.vehicle-spec-value {
    font-size: 16px;
    font-weight: bold;
}

.vehicle-spec-value--lg {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
}

.vehicle-description {
    margin-bottom: 40px;
    color: var(--text-muted);
    line-height: 1.8;
}

.vehicle-description h4 {
    color: var(--text-main);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.vehicle-spec-sheet {
    display: grid;
    width: 100%;
    margin: 0 0 16px;
    border: 1px solid rgba(15, 20, 25, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.vehicle-spec-sheet__row {
    display: grid;
    grid-template-columns: minmax(118px, 38%) minmax(0, 1fr);
    border-bottom: 1px solid rgba(15, 20, 25, 0.08);
}

.vehicle-spec-sheet__row:last-child {
    border-bottom: 0;
}

.vehicle-spec-sheet__row:nth-child(even) {
    background: #f7f8fa;
}

.vehicle-spec-sheet__row--span {
    grid-template-columns: 1fr;
}

.vehicle-spec-sheet__key,
.vehicle-spec-sheet__value,
.vehicle-spec-sheet__heading {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
}

.vehicle-spec-sheet__key {
    font-weight: 700;
    color: var(--text-main);
    background: rgba(255, 179, 0, 0.12);
    border-right: 1px solid rgba(15, 20, 25, 0.08);
}

.vehicle-spec-sheet__value {
    color: var(--text-main);
}

.vehicle-spec-sheet__heading {
    text-align: center;
    font-weight: 800;
    color: var(--text-main);
    background: rgba(255, 179, 0, 0.16);
}

.vehicle-description__rest {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.vehicle-consult-btn {
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    margin-bottom: 12px;
}

.vehicle-price-key-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-main);
    border-color: rgba(255, 179, 0, 0.4);
    background: rgba(255, 179, 0, 0.08);
    cursor: pointer;
}

.vehicle-dossier-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    color: var(--text-main);
    border-color: var(--accent-red);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.vehicle-dossier-link__icon {
    color: var(--accent-red);
}

.vehicle-price-disclaimer {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
    color: #999;
}

@media (max-width: 1100px) {
    .vehicle-detail-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .detail-page-section {
        padding: 24px 0;
    }

    .detail-breadcrumbs {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .vehicle-detail-sidebar {
        padding: 20px;
        border-radius: 16px;
    }

    .vehicle-detail-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .vehicle-price-main {
        font-size: 26px;
    }

    .vehicle-price-note {
        font-size: 12px;
        padding: 10px;
        margin-top: 10px;
    }

    .vehicle-specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 24px;
    }

    .vehicle-thumbs-grid {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        margin: 0;
        max-width: 100%;
        min-width: 0;
        width: 100%;
        scrollbar-width: none;
    }

    .vehicle-thumbs-grid::-webkit-scrollbar {
        display: none;
    }

    .vehicle-gallery-thumb {
        flex: 0 0 auto;
        width: 88px;
        height: 72px;
        max-width: 88px;
        scroll-snap-align: start;
    }

    .vehicle-gallery-main {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 4 / 3;
        max-height: 320px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .vehicle-gallery-main__img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 320px;
        object-fit: cover;
    }

    .vehicle-description {
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .vehicle-spec-sheet__row {
        grid-template-columns: minmax(100px, 42%) minmax(0, 1fr);
    }

    .vehicle-spec-sheet__row--span {
        grid-template-columns: 1fr;
    }

    .vehicle-spec-sheet__key,
    .vehicle-spec-sheet__value,
    .vehicle-spec-sheet__heading {
        padding: 8px 10px;
        font-size: 12px;
    }

    .vehicle-consult-btn {
        padding: 14px;
        font-size: 15px;
        margin-bottom: 12px;
    }

    .vehicle-gallery-nav {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .vehicle-lightbox__nav {
        width: 48px;
        height: 48px;
        font-size: 30px;
    }

    .vehicle-lightbox__stage {
        width: 100%;
        height: min(78vh, 100%);
    }

    .vehicle-lightbox__img {
        border-radius: 0;
        max-height: min(78vh, 100%);
    }
}

@media (max-width: 480px) {
    .vehicle-specs-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-gallery-thumb {
        width: 78px;
        height: 64px;
    }
}



/* === brand-glossy-global === */
.ed-warranty__eyebrow {
    display: inline-block !important;
    color: #12141a !important;
    background: var(--accent-yellow) !important;
    padding: 10px 18px 10px 14px !important;
    clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    font-size: clamp(18px, 2vw, 22px) !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
}

.ed-warranty__copy h2 {
    color: #0a0b0e !important;
    text-transform: uppercase;
    font-weight: 800;
}

.ed-warranty__lead {
    color: #12141a !important;
    font-size: clamp(17px, 1.9vw, 21px) !important;
    font-weight: 600 !important;
}

.home-about-strip {
    background: #12141a !important;
    color: #fff !important;
    border-radius: 4px !important;
    border: none !important;
}

.home-about-strip .home-section__eyebrow {
    color: #12141a !important;
}

.home-about-strip h2 {
    color: #fff !important;
    text-transform: uppercase;
}

.home-about-strip p {
    color: rgba(255, 255, 255, 0.72) !important;
}

.home-empty {
    border: 1px solid var(--glass-border);
    border-top: 4px solid var(--accent-yellow);
    border-radius: 4px;
    padding: 40px 28px;
    background: #fff;
}

.faq-item {
    border-left: 4px solid var(--accent-yellow) !important;
    border-radius: 4px !important;
}

.ed-delivery__table th {
    background: #12141a !important;
    color: var(--accent-yellow) !important;
}

.ed-delivery__aside {
    background: #12141a !important;
    color: #fff !important;
    border-radius: 4px !important;
}

.ed-delivery__aside p {
    color: rgba(255, 255, 255, 0.78) !important;
}

.ed-delivery__link {
    color: var(--accent-yellow) !important;
}

.site-footer__phone,
.site-footer__contacts a {
    color: #12141a !important;
}

.site-footer__phone:hover,
.site-footer__contacts a:hover {
    color: var(--text-main) !important;
    opacity: 0.8;
}

.site-footer__bottom {
    border-top-color: rgba(18, 20, 26, 0.14) !important;
    color: var(--text-main) !important;
}

.site-footer__bottom a {
    color: #12141a !important;
}

.site-footer__bottom a:hover {
    color: var(--text-main) !important;
}

.nav-links a:hover {
    color: #12141a !important;
    background: var(--accent-yellow) !important;
}

/* Keep trigger lit while pointer is over the item, gap, or open submenu */
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
    color: #12141a !important;
    background: var(--accent-yellow) !important;
}

.elite-badge,
.badge-red,
.badge-new,
.badge-new-category,
.badge-featured {
    border-radius: 3px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.glass-panel {
    border-radius: 4px !important;
}

#leads-section {
    background: transparent !important;
}

#leads-section > .container > .glass-panel > h2.accent-text,
#leads-section h2.accent-text {
    color: var(--text-main) !important;
}

#leads-section > .container > .glass-panel > h2::before {
    content: none;
}

.leads-cta-section .glass-panel {
    border-top: 4px solid var(--accent-yellow) !important;
    box-shadow: 0 18px 38px rgba(18, 20, 26, 0.12) !important;
}

.leads-cta-section .glass-panel > p {
    color: var(--text-muted) !important;
}

.mobile-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-chrome);
    backdrop-filter: none;
    border-top: 3px solid var(--accent-yellow);
    z-index: 9999;
    padding: 12px 10px calc(12px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 24px rgba(20, 24, 32, 0.08);
}
.mobile-actions a {
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.mobile-actions__label {
    color: var(--accent-yellow);
    font-size: 11px;
    letter-spacing: 0.04em;
}
.mobile-actions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .mobile-actions { display: block; }
    body { padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px)); }
    .cookie-consent {
        left: 12px !important;
        right: 12px !important;
        bottom: calc(82px + env(safe-area-inset-bottom, 0px) + 12px) !important;
    }
    .leads-form-panel {
        padding: 24px 18px !important;
    }
}

@media (max-width: 991px) {
    .desktop-search__input,
    .home-deep-search__grid input,
    .home-deep-search__grid select,
    .tdv-select__trigger {
        font-size: 16px !important;
    }
}

/* Mobile nav must win over later desktop header rules */
@media (max-width: 991px) {
    .nav-burger {
        display: inline-flex !important;
    }

    header .site-nav#site-nav {
        position: fixed !important;
        top: calc(80px + env(safe-area-inset-top, 0px)) !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 10050 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 16px !important;
        flex: none !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 20px 16px 110px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        border-top: 1px solid rgba(18, 20, 26, 0.06) !important;
        box-shadow: 0 18px 40px rgba(18, 20, 26, 0.12) !important;
        transform: translateX(100%) !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.is-nav-open header .site-nav#site-nav {
        transform: translateX(0) !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    header .site-nav#site-nav .desktop-search {
        display: flex !important;
        max-width: none !important;
        width: 100% !important;
        order: -1;
    }

    header .site-nav#site-nav .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 4px !important;
        width: 100% !important;
        margin: 0 !important;
    }

    header .site-nav#site-nav .nav-links > li {
        display: block !important;
        width: 100% !important;
    }

    header .site-nav#site-nav .nav-links > li > a {
        display: flex !important;
        width: 100% !important;
        padding: 14px 12px !important;
        font-size: 16px !important;
        color: var(--text-main) !important;
        background: transparent !important;
        white-space: normal !important;
    }

    header .site-nav#site-nav .nav-cta {
        justify-content: center !important;
        text-align: center !important;
        margin-top: 8px !important;
        color: #0f1419 !important;
        background: var(--accent-yellow) !important;
    }

    header .site-nav#site-nav .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        display: none !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 4px 0 8px !important;
        box-shadow: none !important;
        animation: none !important;
    }

    header .site-nav#site-nav .nav-dropdown:hover .nav-dropdown-menu {
        display: none !important;
    }

    header .site-nav#site-nav .nav-dropdown.is-open .nav-dropdown-menu {
        display: block !important;
    }
}

@media (max-width: 768px) {
    header .site-nav#site-nav {
        top: calc(70px + env(safe-area-inset-top, 0px)) !important;
    }
}

/* —— Site-wide mobile page polish —— */
.catalog-page {
    padding: 60px 0;
}

.faq-page__intro {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.faq-page__intro h1 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
}

.faq-page__intro p {
    margin-left: auto;
    margin-right: auto;
}

.faq-page__list {
    max-width: 850px;
    margin: 0 auto 48px;
}

.faq-page__empty {
    color: var(--text-muted);
    text-align: center;
}

.leasing-page__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.leasing-page__card {
    padding: 28px;
}

.leasing-page__card h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.leasing-page__card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.leasing-page__calc {
    padding: 40px;
    margin-bottom: 40px;
}

.leasing-page__calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.leasing-page__calc-title {
    margin: 0 0 8px;
    font-size: 22px;
}

.leasing-page__calc-lead {
    margin: 0 0 24px;
    color: var(--text-muted);
    font-size: 14px;
}

.leasing-page__field {
    margin-bottom: 22px;
}

.leasing-page__field--last {
    margin-bottom: 0;
}

.leasing-page__field label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.leasing-page__field input[type="range"] {
    width: 100%;
    accent-color: var(--accent-red);
}

.leasing-page__field-value {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-weight: 700;
}

.leasing-page__result {
    padding: 36px 28px;
    text-align: center;
    border-color: rgba(255, 179, 0, 0.25);
    background: rgba(255, 179, 0, 0.05);
}

.leasing-page__result-label {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.leasing-page__result-value {
    margin-bottom: 8px;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
}

.leasing-page__result-note {
    color: var(--text-muted);
    font-size: 13px;
}

.leasing-page__disclaimer {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.55;
    max-width: 920px;
}

.leasing-page__cta {
    border-color: rgba(255, 179, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.06), transparent);
}

.privacy-page__panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 36px;
    border-radius: 20px;
}

.privacy-page__panel h1 {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    margin: 0 0 24px;
}

.privacy-page__body {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

.privacy-page__body strong {
    color: var(--text-main);
}

.privacy-page__body h3 {
    font-size: 1.1rem;
    margin: 28px 0 14px;
}

.privacy-page__body p {
    margin: 0 0 14px;
}

.privacy-page__body ul {
    padding-left: 18px;
    margin: 0 0 18px;
}

.privacy-page__body li {
    margin-bottom: 8px;
}

.privacy-page__updated {
    margin-top: 36px !important;
    font-size: 12px;
    opacity: 0.45;
}

.dossier-page {
    padding: 60px 0 40px;
}

.dossier-page__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 36px;
}

.dossier-page__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 14px;
}

.dossier-page__badge {
    background: var(--accent-yellow);
    color: #141820;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dossier-page__date {
    color: var(--text-muted);
    font-size: 13px;
}

.dossier-page__title {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    margin: 0 0 8px;
    line-height: 1.15;
}

.dossier-page__uid {
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.dossier-page__price {
    padding: 16px 28px;
    border-radius: 14px;
    border-color: var(--accent-red);
    flex-shrink: 0;
}

.dossier-page__price-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.dossier-page__price-value {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 900;
}

.dossier-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 28px;
}

.dossier-page__panel {
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.dossier-page__panel-title {
    font-size: 16px;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.dossier-page__panel-title--accent {
    color: var(--accent-red);
    border-bottom: none;
    padding-bottom: 0;
}

.dossier-page__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.dossier-page__row strong {
    color: var(--text-main);
}

.dossier-page__verdict {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-line;
}

.dossier-page__pdf {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    font-size: 14px;
    box-sizing: border-box;
}

.dossier-page__shots-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.dossier-page__shots-head h3 {
    margin: 0;
    font-size: 18px;
}

.dossier-page__shots-head p {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

.dossier-page__shots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.dossier-page__shot {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    border: 1px solid var(--glass-border);
}

.dossier-page__shot img,
.dossier-shot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dossier-page__shots-note {
    text-align: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.dossier-page__shots-note p {
    margin: 0;
    color: var(--text-muted);
    font-size: 11px;
}

@media (max-width: 960px) {
    .info-page,
    .faq-page.info-page {
        padding: 36px 0 28px;
    }

    .info-page__intro {
        margin-bottom: 28px;
    }

    .info-page__intro h1 {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
        margin: 8px 0 12px;
    }

    .info-page__intro p {
        font-size: 15px;
        line-height: 1.55;
    }

    .info-page__cta {
        margin-top: 36px;
        padding: 24px 18px;
    }

    .info-page__cta h3 {
        font-size: 1.2rem;
    }

    .info-feature-mark {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .info-page__intro h1.about-case__manifesto {
        font-size: 15px;
        line-height: 1.55;
        margin-top: 10px;
    }

    .about-case__intro {
        margin-bottom: 32px;
    }

    .about-case__lead {
        margin-bottom: 40px;
        padding: 16px;
        gap: 16px;
    }

    .about-case__lead-copy h2 {
        font-size: 1.25rem;
    }

    .about-case__lead-copy p {
        font-size: 14px;
        line-height: 1.55;
    }

    .about-case__bullets li {
        font-size: 14px;
    }

    .services-page__block {
        padding: 18px 16px 20px;
        margin-bottom: 28px;
    }

    .services-page__block h2 {
        font-size: 1.25rem;
    }

    .services-page__lead {
        font-size: 14px;
    }

    .services-price {
        padding: 16px;
    }

    .price-landing__hero-actions {
        margin-top: 16px;
        gap: 10px;
    }

    .price-landing__hero-actions .btn-elite {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .price-landing__group {
        padding: 14px 12px;
        margin-bottom: 12px;
    }

    .price-landing__group-head h2 {
        font-size: 17px;
    }

    .price-landing__brand-chip {
        padding: 7px 12px;
        font-size: 12px;
    }

    .catalog-page {
        padding: 28px 0 24px;
    }

    .catalog-seo-intro {
        margin-bottom: 18px;
        text-align: left;
    }

    .catalog-seo-intro__title {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .catalog-seo-intro__text {
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
    }

    .catalog-filters {
        padding: 12px;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .catalog-filters__grid {
        gap: 10px;
    }

    .catalog-filters__field label,
    .catalog-filters__q label {
        margin-bottom: 4px;
        font-size: 10px;
    }

    .catalog-filters__field input,
    .catalog-filters__q input {
        padding: 9px 10px;
        font-size: 16px;
    }

    .catalog-models-bar {
        margin-bottom: 16px;
        padding: 12px;
    }

    .seo-landing-section {
        padding: 28px 0 24px;
    }

    .seo-landing-section__subtitle {
        margin: 24px 0 12px;
        font-size: 18px;
    }

    .seo-empty-callout {
        padding: 24px 16px 20px;
    }

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

    .brands-index-card {
        padding: 14px 12px;
    }

    .brands-index-card__name {
        font-size: 14px;
    }

    .vehicle-detail-title {
        font-size: 1.35rem;
    }

    .vehicle-price-main {
        font-size: 1.45rem;
    }

    .vehicle-detail-sidebar {
        padding: 16px;
    }

    .vehicle-meta-label {
        font-size: 9px;
        font-size: clamp(8px, 2.6cqi, 10px);
    }

    .vehicle-meta-value {
        font-size: 11px;
        font-size: clamp(10px, 3.2cqi, 12px);
    }

    .vehicle-meta-item {
        padding: 6px 5px;
    }

    .faq-page__intro {
        margin-bottom: 28px;
        text-align: left;
    }

    .faq-page__list {
        margin-bottom: 28px;
    }

    .faq-item {
        padding: 14px 14px;
    }

    .faq-item summary {
        font-size: 15px;
        line-height: 1.35;
    }

    .faq-item__answer {
        font-size: 14px;
        line-height: 1.55;
    }

    .leasing-page__cards {
        gap: 12px;
        margin-bottom: 24px;
    }

    .leasing-page__card {
        padding: 18px 16px;
    }

    .leasing-page__card h4 {
        font-size: 16px;
    }

    .leasing-page__calc {
        padding: 18px 16px;
        margin-bottom: 24px;
    }

    .leasing-page__calc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .leasing-page__calc-title {
        font-size: 1.15rem;
    }

    .leasing-page__result {
        padding: 22px 16px;
    }

    .leasing-page__field {
        margin-bottom: 18px;
    }

    .privacy-page__panel {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .privacy-page__body {
        font-size: 14px;
        line-height: 1.6;
    }

    .privacy-page__body h3 {
        font-size: 1rem;
        margin: 22px 0 10px;
    }

    .dossier-page {
        padding: 28px 0 24px;
    }

    .dossier-page__header {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 20px;
        gap: 14px;
    }

    .dossier-page__layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dossier-page__panel {
        padding: 16px;
        margin-bottom: 14px;
    }

    .dossier-page__shots {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dossier-page__shot {
        height: 180px;
    }

    .dossier-page__shots-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .mobile-actions {
        padding: 10px 8px calc(10px + env(safe-area-inset-bottom, 0px));
    }

    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 480px) {
    .brands-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .vehicle-gallery-main,
    .vehicle-gallery-main__img {
        max-height: 260px;
    }

    .vehicle-gallery-thumb {
        width: 72px;
        height: 58px;
        max-width: 72px;
    }
}
