html {
    scroll-behavior: smooth;
    color-scheme: light;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #0a0a0c rgba(0, 0, 0, 0.06);
}

html::-webkit-scrollbar {
    width: 14px;
}

html::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

html::-webkit-scrollbar-thumb {
    background-color: #0a0a0c;
    border-radius: 0;
    border: none;
}

:root {
    --sidebar-width: 300px;
    /* Высокая читаемость + красные акценты */
    --surface-base: #ffffff;
    --surface-white: #ffffff;
    --surface-ink: #ffffff;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --accent-red: #e30613;
    --accent-red-glow: rgba(227, 6, 19, 0.45);
    --text-main: #121212;
    --text-muted: #3a3a3a;
    --text-on-ink: #121212;
    --text-on-ink-muted: #4b4b4b;
    --glass-border: rgba(0, 0, 0, 0.12);
    --glass-blur: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
    --leads-scrim: none;
}

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

body {
    background-color: var(--surface-base);
    color: var(--text-main);
    font-family: 'Exo 2', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Базовая читаемость по всему сайту */
p,
li,
label,
summary,
small {
    color: var(--text-main);
}

input::placeholder,
textarea::placeholder,
select {
    color: var(--text-muted);
}

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

/* Вложенные блоки — тонкий скролл, не дублирует полосу страницы */
.site-sidebar::-webkit-scrollbar,
.catalog-sidebar::-webkit-scrollbar,
.tdv-select__dropdown::-webkit-scrollbar,
.modal__body::-webkit-scrollbar,
.lightbox__thumbs::-webkit-scrollbar {
    width: 6px;
}

.site-sidebar::-webkit-scrollbar-thumb,
.catalog-sidebar::-webkit-scrollbar-thumb,
.tdv-select__dropdown::-webkit-scrollbar-thumb,
.modal__body::-webkit-scrollbar-thumb,
.lightbox__thumbs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 6px;
    min-height: 32px;
}

.site-sidebar,
.catalog-sidebar {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.22) transparent;
}

/* Reusable Glassmorphism */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.glass-panel p,
.glass-panel li,
.glass-panel label,
.glass-panel summary {
    color: var(--text-main);
}

/* Form controls based on glass-panel need explicit inner spacing */
input.glass-panel,
textarea.glass-panel {
    width: 100%;
    padding: 12px 14px;
    color: var(--text-main);
    line-height: 1.45;
    font: inherit;
    outline: none;
}

textarea.glass-panel {
    resize: vertical;
}

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

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

/* Typography */
h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.accent-text {
    color: var(--accent-red);
    text-shadow: 0 0 22px rgba(227, 6, 19, 0.22);
}

.article-body a {
    color: var(--accent-red);
}

.article-body a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* App shell: левая колонка + основная область */
.app-shell {
    min-height: 100vh;
}

.sidebar-backdrop[hidden] {
    display: none !important;
}

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.site-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    z-index: 10041;
    background: #ffffff;
    border-right: 1px solid var(--premium-border, #d7dde6);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.04);
}

.site-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 132px;
    padding: 20px 10px 16px;
    border-bottom: 1px solid var(--premium-border, #d7dde6);
    flex-shrink: 0;
    position: relative;
}

.site-sidebar__brand {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-sidebar__logo {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: 96px;
    object-fit: contain;
    object-position: center center;
    transform: none;
    filter: contrast(1.04) saturate(1.05);
}

.site-sidebar__panel-footer {
    margin-top: auto;
    padding: 14px 14px 18px;
    border-top: 1px solid var(--premium-border, #d7dde6);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.site-sidebar__contacts-title {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--premium-accent, #d90416);
}

.site-sidebar__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-sidebar__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #fafbfc 0%, #f3f5f8 100%);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-sidebar__contact-item:has(.site-sidebar__contact-link:hover) {
    border-color: rgba(227, 6, 19, 0.35);
    box-shadow: 0 4px 14px rgba(227, 6, 19, 0.08);
}

.site-sidebar__contact-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(227, 6, 19, 0.1);
    font-size: 15px;
    line-height: 1;
}

.site-sidebar__contact-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.site-sidebar__contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--premium-muted, #596171);
}

.site-sidebar__contact-value {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--premium-ink, #0e1116);
    word-break: break-word;
}

.site-sidebar__contact-link {
    text-decoration: none;
    color: var(--premium-ink, #0e1116);
    transition: color 0.2s ease;
}

.site-sidebar__contact-link:hover {
    color: var(--premium-accent, #d90416);
}

.site-sidebar__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-sidebar__tg,
.site-sidebar__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.site-sidebar__copy {
    margin: 0;
    font-size: 10px;
    line-height: 1.4;
    color: var(--premium-muted, #596171);
    text-align: center;
}

.site-sidebar__policy {
    color: var(--premium-ink, #0e1116);
    text-decoration: none;
}

.site-sidebar__policy:hover {
    color: var(--premium-accent, #d90416);
}

.site-sidebar__close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-on-ink);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.site-sidebar__close:hover {
    background: rgba(255, 0, 0, 0.15);
    color: var(--accent-red);
}

.app-main {
    margin-left: var(--sidebar-width);
    min-width: 0;
    min-height: 100vh;
}

.site-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
}

.sidebar-open-btn {
    display: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-open-btn:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.site-topbar__brand {
    flex-shrink: 0;
}

/* Логотип logo.webp: без фильтров и «ореола», для файла с прозрачным фоном */
.site-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: inherit;
}

.site-logo:not(.site-logo--sidebar):not(.site-logo--footer) {
    width: min(980px, calc(100vw - var(--sidebar-width) - 48px));
    height: clamp(78px, 10vw, 122px);
    max-width: none;
    object-fit: contain;
    object-position: center;
    display: block;
    flex-shrink: 0;
    transform: scaleX(1.18);
    transform-origin: center;
}

.site-logo--footer {
    height: 136px;
    max-width: min(760px, 100%);
}

/* Sidebar navigation */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 12px 8px;
    flex: 1;
    min-height: 0;
}

.sidebar-nav__link {
    color: var(--premium-ink, #0e1116);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 11px 14px;
    border-radius: 8px;
    transition: var(--transition);
    line-height: 1.35;
}

.sidebar-nav__link:hover {
    color: var(--premium-accent, #d90416);
    background: rgba(227, 6, 19, 0.06);
}

.sidebar-nav__group {
    border: none;
    margin: 0;
}

.sidebar-nav__summary {
    list-style: none;
    cursor: pointer;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--premium-ink, #0e1116);
    transition: var(--transition);
    user-select: none;
    line-height: 1.35;
}

.sidebar-nav__summary::-webkit-details-marker {
    display: none;
}

.sidebar-nav__summary::after {
    content: "▾";
    float: right;
    margin-left: 8px;
    font-size: 12px;
    opacity: 0.75;
    display: inline-block;
    transition: transform 0.2s ease;
}

.sidebar-nav__group[open] .sidebar-nav__summary::after {
    transform: rotate(180deg);
}

.sidebar-nav__summary:hover {
    color: var(--accent-red);
    background: rgba(255, 0, 0, 0.06);
}

.sidebar-nav__sub {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 12px 10px;
    margin: 4px 0 0 8px;
    border-left: 2px solid rgba(227, 6, 19, 0.45);
}

.sidebar-nav__sub a {
    color: var(--premium-muted, #596171);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 12px;
    border-radius: 6px;
    transition: var(--transition);
    text-transform: none;
    line-height: 1.35;
}

.sidebar-nav__sub a:hover {
    color: var(--premium-ink, #0e1116);
    background: rgba(227, 6, 19, 0.08);
    padding-left: 12px;
}

/* Top bar (логотип + поиск) */
.site-topbar {
    min-height: 92px;
    height: auto;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 0;
    box-sizing: border-box;
}

.desktop-search input {
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--text-main) !important;
}

.desktop-search input::placeholder {
    color: var(--text-muted);
}

#search-results {
    background: rgba(16, 16, 18, 0.98) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55) !important;
}

#search-results a {
    color: var(--text-main) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

#search-results a:hover {
    background: rgba(227, 6, 19, 0.12) !important;
}

.site-topbar .container {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Full-bleed секции: внутри основной колонки не выходим за контент (без второй полосы прокрутки) */
.app-main .home-hero,
.app-main .home-featured-strip,
.app-main .home-section-2,
.app-main .faq-page {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 992px) {
    #cookie-consent {
        left: calc(var(--sidebar-width) + 16px) !important;
        max-width: min(920px, calc(100vw - var(--sidebar-width) - 40px)) !important;
    }
}

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

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

.nav-links a:hover {
    color: var(--accent-red);
    background: rgba(255, 0, 0, 0.06);
}

/* Dropdown Navigation (TurboDV Style) */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    padding: 12px;
    padding-top: 20px;
    margin-top: 0;
    z-index: 2000;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    background: rgba(18, 18, 21, 0.98);
    backdrop-filter: none;
    border: 1px solid var(--glass-border);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 20px;
    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: rgba(227, 6, 19, 0.08);
    color: var(--accent-red) !important;
    padding-left: 20px;
}

/* Buttons */
.btn-elite {
    background: var(--accent-red);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-elite::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
}

.btn-elite:hover::after {
    left: 100%;
}

.btn-elite:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-red-glow);
}

/* Cards & Reflections */
.car-card {
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}

.car-card:hover {
    transform: perspective(1000px) rotateX(2deg) scale(1.02);
    border-color: var(--accent-red);
}

.car-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.car-card:hover::before {
    opacity: 1;
}

/* Noir: монохром превью в витрине; цвет только при hover */
.bg-home .home-featured-strip .car-card img,
body[class*="bg-catalog"] .car-card img {
    filter: grayscale(0.88) contrast(1.05) brightness(0.92);
    transition: filter 0.35s ease;
}

.bg-home .home-featured-strip .car-card:hover img,
body[class*="bg-catalog"] .car-card:hover img {
    filter: grayscale(0) contrast(1) brightness(1);
}

@media (prefers-reduced-motion: reduce) {
    .bg-home .home-featured-strip .car-card img,
    body[class*="bg-catalog"] .car-card img {
        filter: grayscale(0.25) contrast(1.02);
        transition: none;
    }

    .bg-home .home-featured-strip .car-card:hover img,
    body[class*="bg-catalog"] .car-card:hover img {
        filter: grayscale(0) contrast(1) brightness(1);
    }
}

.featured-glare {
    position: relative;
}
.featured-glare::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    opacity: 0.3;
    z-index: -1;
    animation: border-pulse 2s infinite linear;
}

@keyframes border-pulse {
    0% { opacity: 0.1; }
    50% { opacity: 0.5; }
    100% { opacity: 0.1; }
}

/* Mobile & Tablet Adaptation */
@media (max-width: 991px) {
    .desktop-search {
        display: none;
    }
    .sidebar-open-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .site-sidebar {
        transform: translateX(-105%);
    }
    .app-shell.is-sidebar-open .site-sidebar {
        transform: translateX(0);
        box-shadow: 12px 0 48px rgba(0, 0, 0, 0.55);
    }
    .app-main {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .sidebar-backdrop {
        display: none !important;
    }
    .site-sidebar {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.5rem; }
    .container { padding: 0 15px; }
    .site-topbar {
        min-height: 78px;
        padding: 3px 0;
    }
    .site-topbar .site-logo {
        width: min(92vw, 620px);
        height: clamp(64px, 12vw, 92px);
        max-width: 92vw;
        transform: scaleX(1.12);
    }
    .site-logo--footer {
        height: 112px;
        max-width: min(680px, 100%);
    }
    section:not(.home-page) {
        padding: 40px 0 !important;
    }
    section.home-page {
        padding: 0 !important;
    }
    .home-hero {
        min-height: 62vh;
    }
    .home-hero__layout {
        padding: 56px 16px 22px;
    }
    .home-hero__stats {
        margin-top: 22px;
        padding-top: 18px;
        gap: 10px;
    }
    .home-hero__content h1 {
        font-size: 2rem !important;
        line-height: 1.15;
    }
    .home-section-2 {
        padding: 36px 0 28px;
    }
    .home-section-2 > * {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== Sport Premium Mode ===== */
:root {
    --sport-ink: #0a0b0d;
    --sport-red: #e10619;
    --sport-red-dark: #b30514;
    --sport-silver: #e9ecf2;
    --sport-border: #cfd5df;
}

body {
    background: linear-gradient(180deg, #f5f7fb 0%, #eef2f7 100%) !important;
}

.site-topbar,
.mobile-actions {
    background: #050607 !important;
}

.site-sidebar {
    background: #ffffff !important;
}

footer.site-footer {
    background: var(--premium-bg, #f3f4f6) !important;
}

.site-topbar {
    border-bottom: 2px solid rgba(225, 6, 25, 0.75) !important;
}

footer.site-footer {
    border-top: 1px solid var(--premium-border, #d7dde6) !important;
}

.site-logo {
    filter: contrast(1.08) saturate(1.08);
}

.glass-panel,
.home-deep-search,
.home-hero__stat,
.vehicle-meta-item {
    background: #ffffff !important;
    border: 1px solid var(--sport-border) !important;
    border-radius: 8px !important;
}

.car-card {
    border: 1px solid var(--sport-border) !important;
    transition: transform 0.18s ease, border-color 0.18s ease !important;
}

.car-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(225, 6, 25, 0.55) !important;
}

.btn-elite {
    background: linear-gradient(180deg, var(--sport-red) 0%, #c60516 100%) !important;
    border-color: #8f0310 !important;
    color: #fff !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
}

.btn-elite:hover {
    background: linear-gradient(180deg, #f20a1e 0%, var(--sport-red-dark) 100%) !important;
    border-color: #7d020e !important;
}

.btn-elite[style*="background: #fff"],
.btn-elite[style*="background: #ffffff"],
.btn-elite[style*="background: rgba(255, 255, 255"] {
    background: #0d1016 !important;
    border-color: #0d1016 !important;
    color: #fff !important;
}

h1,
h2,
h3 {
    color: var(--sport-ink) !important;
    text-transform: uppercase;
}

.accent-text {
    color: var(--sport-red) !important;
}

.home-hero__content h1 .accent-text {
    color: var(--sport-red) !important;
}

.home-hero__content p,
.why-us-item-text,
.home-faq-answer,
.vehicle-meta-label {
    color: #4d5563 !important;
}

.sidebar-nav__link,
.sidebar-nav__summary,
.sidebar-nav__sub a {
    border-left: 2px solid transparent;
}

.sidebar-nav__link:hover,
.sidebar-nav__summary:hover,
.sidebar-nav__sub a:hover {
    border-left-color: var(--sport-red) !important;
    background: rgba(225, 6, 25, 0.2) !important;
}

input.glass-panel:focus,
textarea.glass-panel:focus,
.home-deep-search__grid input:focus,
.home-deep-search__grid select:focus,
.tdv-select__trigger:focus {
    border-color: rgba(225, 6, 25, 0.75) !important;
    box-shadow: 0 0 0 2px rgba(225, 6, 25, 0.18) !important;
}

/* ===== Sport Premium+ micro details ===== */
.site-topbar,
footer.site-footer {
    position: relative;
}

.site-topbar::after,
footer.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 14%,
        rgba(225, 6, 25, 0.55) 50%,
        rgba(255, 255, 255, 0.35) 86%,
        transparent 100%
    );
    pointer-events: none;
}

.site-topbar::after {
    bottom: -1px;
}

footer.site-footer::before {
    top: -1px;
}

.site-sidebar__head {
    position: relative;
}

.site-sidebar__head::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(225, 6, 25, 0.45) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

.sidebar-nav__cta.btn-elite {
    position: relative;
    overflow: hidden;
}

.sidebar-nav__cta.btn-elite::before {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 5px;
    pointer-events: none;
}

.glass-panel {
    position: relative;
}

.glass-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(225, 6, 25, 0.22) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.car-card::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(225, 6, 25, 0) 0%,
        rgba(225, 6, 25, 0.65) 50%,
        rgba(225, 6, 25, 0) 100%
    );
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.car-card:hover::after {
    opacity: 1;
}

.elite-badge {
    border: 1px solid rgba(255, 255, 255, 0.38) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.badge-red {
    background: linear-gradient(180deg, #ef1024 0%, #b00514 100%) !important;
}

.badge-featured {
    background: #0f1116 !important;
    color: #ffffff !important;
    border-color: rgba(225, 6, 25, 0.8) !important;
    animation: none !important;
}

.badge-green {
    background: linear-gradient(180deg, #1a8f4a 0%, #0d6b38 100%) !important;
    color: #fff !important;
}

.home-hero__stat-value {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.home-hero__stat-value::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(225, 6, 25, 0) 0%,
        rgba(225, 6, 25, 0.8) 50%,
        rgba(225, 6, 25, 0) 100%
    );
}

.tdv-select__option:hover,
.tdv-select__option.is-selected {
    background: #11141b !important;
    color: #fff !important;
}

.tdv-select__option.is-selected::after {
    content: "•";
    float: right;
    color: var(--sport-red);
    font-weight: 800;
}

/* ===== Premium System Layer ===== */
:root {
    --premium-bg: #f3f4f6;
    --premium-surface: #ffffff;
    --premium-surface-alt: #f8f9fb;
    --premium-ink: #0e1116;
    --premium-muted: #596171;
    --premium-border: #d7dde6;
    --premium-accent: #d90416;
    --premium-accent-dark: #a80312;
    --premium-radius: 10px;
}

body {
    background: var(--premium-bg) !important;
    color: var(--premium-ink) !important;
    letter-spacing: 0.01em !important;
}

.app-main__content {
    background:
        linear-gradient(
            180deg,
            rgba(245, 247, 251, 0.9) 0%,
            rgba(238, 242, 247, 0.9) 100%
        ),
        url("/static/images/hero/site-bg.webp") center top / cover no-repeat fixed;
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
    .app-main__content {
        background-attachment: scroll;
    }
}

.container {
    max-width: 1180px !important;
}

section {
    padding-top: 48px !important;
    padding-bottom: 34px !important;
}

h1,
h2,
h3 {
    color: var(--premium-ink) !important;
    letter-spacing: 0.03em !important;
    text-wrap: balance;
}

p,
li,
label,
summary,
small {
    color: #1e2430 !important;
}

.site-topbar,
.mobile-actions {
    background: #090a0c !important;
}

.site-sidebar {
    background: #ffffff !important;
}

footer.site-footer {
    background: var(--premium-bg, #f3f4f6) !important;
}

.site-topbar {
    min-height: 86px !important;
    padding: 4px 0 !important;
}

.site-topbar__inner {
    min-height: 76px;
}

.site-logo:not(.site-logo--sidebar):not(.site-logo--footer) {
    width: min(980px, calc(100vw - var(--sidebar-width) - 40px)) !important;
    height: clamp(74px, 9vw, 112px) !important;
    transform: scaleX(1.14) !important;
}

.sidebar-nav__link,
.sidebar-nav__summary,
.sidebar-nav__sub a {
    color: rgba(255, 255, 255, 0.92) !important;
}

.sidebar-nav__link,
.sidebar-nav__summary {
    border: 1px solid transparent;
}

.sidebar-nav__link:hover,
.sidebar-nav__summary:hover,
.sidebar-nav__sub a:hover {
    border-color: rgba(217, 4, 22, 0.42) !important;
    background: rgba(217, 4, 22, 0.18) !important;
}

.glass-panel,
.home-deep-search,
.home-hero__stat,
.vehicle-meta-item,
.tdv-select__trigger,
.tdv-select__dropdown {
    background: var(--premium-surface) !important;
    border: 1px solid var(--premium-border) !important;
    border-radius: var(--premium-radius) !important;
}

.vehicle-meta-label,
.home-hero__stat-label,
.home-faq-answer,
.why-us-item-text {
    color: var(--premium-muted) !important;
}

.home-hero__content p {
    max-width: 780px !important;
    font-size: 16px !important;
}

.home-hero__content h1 {
    max-width: 920px !important;
}

.btn-elite {
    background: var(--premium-accent) !important;
    border-color: var(--premium-accent) !important;
    color: #fff !important;
    border-radius: 8px !important;
    min-height: 42px !important;
    padding: 10px 18px !important;
}

.btn-elite:hover {
    background: var(--premium-accent-dark) !important;
    border-color: var(--premium-accent-dark) !important;
}

.btn-elite[style*="background: rgba(255, 255, 255, 0.08)"] {
    background: #fff !important;
    color: var(--premium-ink) !important;
    border: 1px solid var(--premium-border) !important;
}

.accent-text {
    color: var(--premium-accent) !important;
}

input.glass-panel,
textarea.glass-panel,
.home-deep-search__grid input,
.home-deep-search__grid select {
    background: var(--premium-surface-alt) !important;
    border: 1px solid var(--premium-border) !important;
    color: var(--premium-ink) !important;
}

input.glass-panel:focus,
textarea.glass-panel:focus,
.home-deep-search__grid input:focus,
.home-deep-search__grid select:focus,
.tdv-select__trigger:focus {
    border-color: rgba(217, 4, 22, 0.65) !important;
    box-shadow: 0 0 0 2px rgba(217, 4, 22, 0.14) !important;
}

footer.site-footer h5,
footer.site-footer a {
    color: var(--premium-ink, #0e1116) !important;
}

footer.site-footer p,
footer.site-footer li,
footer.site-footer div {
    color: var(--premium-muted, #596171) !important;
}

#cookie-consent {
    background: #ffffff !important;
    border: 1px solid var(--premium-border) !important;
}

#cookie-consent p {
    color: var(--premium-muted) !important;
}

@media (max-width: 768px) {
    .site-topbar {
        min-height: 74px !important;
    }

    .site-topbar .site-logo {
        width: min(92vw, 620px) !important;
        height: clamp(62px, 11vw, 88px) !important;
        transform: scaleX(1.1) !important;
    }

    section {
        padding-top: 36px !important;
        padding-bottom: 26px !important;
    }
}

/* Footer */
footer.site-footer {
    margin-top: 0;
    padding: 48px 0 40px;
    border-top: 1px solid var(--premium-border, #d7dde6);
    text-align: center;
    background: var(--premium-bg, #f3f4f6);
    color: var(--premium-muted, #596171);
}

footer.site-footer h5 {
    color: var(--premium-ink, #0e1116);
}

footer.site-footer a {
    color: var(--premium-ink, #0e1116);
}

footer.site-footer a:hover {
    color: var(--accent-red);
}

/* Badge & Labels */
.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;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.badge-red {
    background: linear-gradient(135deg, var(--accent-red) 0%, #a00 100%);
    color: white;
    box-shadow: 0 0 15px var(--accent-red-glow);
}

.badge-featured {
    background: rgba(0,0,0,0.8);
    color: var(--accent-red);
    border-color: var(--accent-red);
    animation: pulse-border 2s infinite;
}

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

/* --- UI POLISH: Hide Default Number Spinners --- */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

/* --- UI POLISH: Active Filters --- */
.active-filter-main {
    background: var(--accent-red) !important;
    border-color: var(--accent-red) !important;
    box-shadow: 0 0 20px var(--accent-red-glow);
}

.active-filter-sub {
    background: rgba(227, 6, 19, 0.12) !important;
    border-color: var(--accent-red) !important;
    color: var(--text-main) !important;
}

/* --- PAGE BACKGROUNDS --- */
.bg-default {
    background: radial-gradient(circle at 78% 8%, rgba(227, 6, 19, 0.09) 0%, transparent 38%),
        radial-gradient(circle at 14% 72%, rgba(255, 255, 255, 0.03) 0%, transparent 42%),
        linear-gradient(180deg, var(--surface-base) 0%, #050506 100%);
    background-color: var(--surface-base);
}

/*
 * Главная (body.bg-home): фото — только в слое ::before (ч/б), цветное «неон» из файла скрыто.
 */
.bg-home {
    background-color: #060607;
    --home-page-bg-image: none;
    --noir-bg-scrim:
        radial-gradient(circle at 76% 12%, rgba(227, 6, 19, 0.07) 0%, transparent 36%),
        radial-gradient(circle at 14% 88%, rgba(0, 0, 0, 0.85) 0%, transparent 55%),
        linear-gradient(180deg, rgba(5, 5, 8, 0.88) 0%, rgba(2, 2, 4, 0.94) 100%);
    background-image: none;
}

/* Полноэкранное фото: ч/б-слой + оверлеи (красный только тонкий акцент в градиенте) */
body.bg-home .app-shell,
body.bg-catalog-cars .app-shell,
body.bg-catalog-trucks .app-shell,
body.bg-catalog-special .app-shell,
body.bg-about .app-shell,
body.bg-how-to-buy .app-shell,
body.bg-delivery .app-shell,
body.bg-customs .app-shell,
body.bg-blog .app-shell,
body.bg-faq .app-shell {
    position: relative;
    isolation: isolate;
}

body.bg-home .app-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--home-page-bg-image);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.08) brightness(0.4);
}

body.bg-home .app-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--noir-bg-scrim);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

body.bg-catalog-cars .app-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--catalog-cars-bg-image);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.06) brightness(0.38);
}

body.bg-catalog-cars .app-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--noir-catalog-cars-scrim);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

body.bg-catalog-trucks .app-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--catalog-trucks-bg-image);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.06) brightness(0.38);
}

body.bg-catalog-trucks .app-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--noir-catalog-trucks-scrim);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

body.bg-catalog-special .app-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--catalog-special-bg-image);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.06) brightness(0.38);
}

body.bg-catalog-special .app-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--noir-catalog-special-scrim);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

body.bg-about .app-shell::before,
body.bg-how-to-buy .app-shell::before,
body.bg-delivery .app-shell::before,
body.bg-customs .app-shell::before,
body.bg-blog .app-shell::before,
body.bg-faq .app-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--noir-page-photo);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: grayscale(100%) contrast(1.05) brightness(0.42);
}

body.bg-about .app-shell::after,
body.bg-how-to-buy .app-shell::after,
body.bg-delivery .app-shell::after,
body.bg-customs .app-shell::after,
body.bg-blog .app-shell::after,
body.bg-faq .app-shell::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--noir-page-scrim);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    body.bg-home .app-shell::before,
    body.bg-catalog-cars .app-shell::before,
    body.bg-catalog-trucks .app-shell::before,
    body.bg-catalog-special .app-shell::before,
    body.bg-about .app-shell::before,
    body.bg-how-to-buy .app-shell::before,
    body.bg-delivery .app-shell::before,
    body.bg-customs .app-shell::before,
    body.bg-blog .app-shell::before,
    body.bg-faq .app-shell::before {
        background-attachment: scroll;
    }
}

/* Не даём общим правилам section ломать full-bleed на главной; нижний padding даёт «чёрную полосу» до #leads-section */
section.home-page {
    padding: 0 !important;
}

.home-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    border-radius: 0;
    min-height: 72vh;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: none;
    background: transparent;
}

/* Колонка: заголовок сверху, цифры прижаты к низу hero — без отдельной чёрной полосы под баннером */
.home-hero__layout {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(72px, 12vh, 120px) 20px 16px;
    box-sizing: border-box;
    min-height: inherit;
}

.home-hero__content {
    position: relative;
    width: 100%;
    padding-bottom: 8px;
}

.home-hero__content > .accent-text {
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.88), 0 0 8px rgba(0, 0, 0, 0.55);
}

.home-hero__content h1 {
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.92), 0 1px 4px rgba(0, 0, 0, 0.95);
}

.home-hero__content h1 .accent-text {
    font-size: 0.92em;
    text-shadow:
        0 2px 24px rgba(0, 0, 0, 0.9),
        0 0 16px rgba(227, 6, 19, 0.25);
}

.home-hero__content p {
    max-width: 600px;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.home-deep-search {
    margin-top: 0;
    padding: 28px;
    border-radius: 18px;
    background: rgba(12, 12, 15, 0.92);
    border-color: rgba(255, 255, 255, 0.1);
}

.home-hero__search-wrap {
    width: 100%;
    margin-top: 142px;
    position: relative;
    /* Выше блока статистики (backdrop-filter ниже создаёт новый stacking context) */
    z-index: 50;
}

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

.home-deep-search__head h4 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

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

.home-deep-search__grid input,
.home-deep-search__grid select {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    outline: none;
}

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

.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: var(--surface-ink);
    color: var(--text-main);
}

.home-deep-search__grid input:focus,
.home-deep-search__grid select:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.35);
}

.home-deep-search__grid select option:checked,
.home-deep-search__grid select option:hover,
.home-deep-search__grid select option:focus {
    background: #b10000;
    color: #fff;
    box-shadow: 0 0 10px 100px #b10000 inset;
}

.home-deep-search__submit {
    min-height: 56px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

.tdv-select__trigger {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    border-radius: 12px;
    padding: 14px 40px 14px 16px;
    font-size: 15px;
    text-align: left;
    position: relative;
    cursor: pointer;
}

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

.tdv-select.open .tdv-select__trigger {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.35);
}

.tdv-select__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: rgba(20, 20, 23, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1200;
}

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

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

.tdv-select__option:hover,
.tdv-select__option.is-selected {
    background: var(--accent-red);
    color: #fff;
}

.home-hero__stats {
    position: relative;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 132px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero__stat {
    padding: 16px 12px;
    text-align: center;
    background: rgba(8, 8, 11, 0.72) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-hero__stat-value {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 800;
    color: rgba(250, 250, 248, 0.98);
    margin-bottom: 6px;
    line-height: 1.15;
}

.home-hero__stat-label {
    color: rgba(200, 200, 196, 0.75);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.35;
}

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

/* ===== Style Lock (global guardrails against inline drift) ===== */
.app-main :is(h1, h2, h3):not(.accent-text) {
    color: #111318 !important;
}

.app-main :is(p, li, label, summary, strong, span) {
    color: #1e2430;
}

.app-main .accent-text,
.app-main :is(h1, h2, h3) .accent-text {
    color: var(--sport-red) !important;
}

.app-main .glass-panel,
.app-main .home-deep-search,
.app-main .home-hero__stat,
.app-main .vehicle-meta-item,
.app-main .vehicle-detail-sidebar {
    background: #ffffff !important;
    border: 1px solid var(--sport-border) !important;
    border-radius: 10px !important;
}

.app-main a.btn-elite,
.app-main button.btn-elite,
.app-main .btn-elite {
    background: linear-gradient(180deg, var(--sport-red) 0%, #c60516 100%) !important;
    border: 1px solid #8f0310 !important;
    color: #fff !important;
    font-family: 'Russo One', 'Exo 2', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.app-main .btn-elite:hover {
    background: linear-gradient(180deg, #f20a1e 0%, var(--sport-red-dark) 100%) !important;
    border-color: #7d020e !important;
}

.app-main input,
.app-main textarea,
.app-main select {
    background: #f8f9fb !important;
    color: #0f1420 !important;
    border: 1px solid var(--sport-border) !important;
}

.app-main input::placeholder,
.app-main textarea::placeholder {
    color: #6a7280 !important;
}

.app-main :is(input, textarea, select):focus {
    border-color: rgba(225, 6, 25, 0.75) !important;
    box-shadow: 0 0 0 2px rgba(225, 6, 25, 0.14) !important;
    outline: none !important;
}

.app-main .vehicle-meta-label,
.app-main .home-hero__stat-label,
.app-main .home-faq-answer,
.app-main .why-us-item-text {
    color: #4f5867 !important;
}

/* Catalog index cleanup classes */
.catalog-page-section {
    padding: 60px 0;
}

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

.catalog-page-intro__text {
    color: var(--text-muted);
    font-size: 16px;
}

.catalog-filter-panel {
    padding: 25px !important;
    margin-bottom: 40px;
    border-radius: 20px !important;
}

.catalog-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

.catalog-filter-grid__keyword {
    grid-column: span 2;
}

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

.catalog-filter-row {
    display: flex;
    gap: 5px;
}

.catalog-filter-input {
    width: 50%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    background: var(--surface-white);
}

.catalog-filter-input--lg,
.catalog-filter-input--full {
    width: 100%;
}

.catalog-filter-input--lg {
    padding: 12px 20px;
    border-radius: 10px;
}

.catalog-filter-submit {
    width: 100%;
    padding: 12px !important;
}

.catalog-brand-panel {
    padding: 20px !important;
    margin-bottom: 40px;
    border-radius: 15px !important;
}

.catalog-brand-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.catalog-brand-label {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--accent-red);
    letter-spacing: 1px;
}

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

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.catalog-card {
    padding: 10px !important;
    display: flex;
    flex-direction: column;
}

.catalog-card__image-wrap {
    display: block;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.catalog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-card__empty {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
}

.catalog-card__brand-chip {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.catalog-card__body {
    padding: 10px;
}

.catalog-card__title {
    font-size: 18px;
    margin-bottom: 8px;
    height: 50px;
    overflow: hidden;
}

.catalog-card__price {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.catalog-card__price-main {
    font-size: 20px;
    font-weight: 800;
}

.catalog-card__price-cny {
    color: var(--text-muted);
    font-size: 14px;
}

.catalog-card__meta-grid {
    margin-bottom: 20px !important;
}

.catalog-card__more {
    width: 100%;
    text-align: center;
}

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

.catalog-empty__text {
    color: var(--text-muted);
}

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

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

.catalog-pagination__current {
    padding: 8px 12px;
    border-color: var(--accent-red) !important;
    background: var(--accent-red) !important;
    color: #fff;
    font-size: 12px;
}

.catalog-pagination__link {
    padding: 8px 12px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 12px;
}

/* Catalog detail cleanup classes */
.detail-breadcrumbs--main {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

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

.vehicle-gallery-main {
    position: relative;
    border-radius: 20px !important;
    overflow: hidden;
    margin-bottom: 20px;
}

.vehicle-main-image {
    width: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.vehicle-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    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-main-empty {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.vehicle-gallery-thumb--btn {
    height: 100px;
    border-radius: 8px !important;
    overflow: hidden;
    cursor: pointer;
    padding: 0 !important;
    border: 1px solid var(--glass-border) !important;
}

.vehicle-gallery-thumb__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.vehicle-price-cny { color: var(--text-muted); }

.vehicle-spec-item {
    padding: 12px !important;
    border-radius: 10px !important;
}

.vehicle-spec-item--accent {
    background: rgba(255, 0, 0, 0.03) !important;
    border-color: rgba(255, 0, 0, 0.2) !important;
}

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

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

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

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

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

.vehicle-pricekey-btn {
    width: 100%;
    text-align: center;
    padding: 14px !important;
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-main);
    border-color: rgba(227, 6, 19, 0.35) !important;
    background: rgba(227, 6, 19, 0.06) !important;
    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) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

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

.vehicle-disclaimer {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
    color: var(--text-muted);
}

/* Info/content pages cleanup classes */
.info-page-section {
    padding: 80px 0 40px;
}

.info-hero {
    margin-bottom: 60px;
}

.info-kicker {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
}

.info-title {
    font-size: 48px;
    margin-top: 15px;
    margin-bottom: 15px;
}

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

.info-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.info-feature-card {
    padding: 40px !important;
}

.info-feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.info-feature-title {
    margin-bottom: 12px;
    font-size: 26px;
}

.info-feature-title--sm {
    font-size: 18px;
}

.info-feature-text {
    color: var(--text-muted);
    font-size: 14px;
}

.info-feature-text--lg {
    font-size: 22px;
}

.info-cta-card {
    padding: 50px !important;
    text-align: center;
    border-color: rgba(255, 0, 0, 0.15) !important;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), transparent) !important;
}

.info-cta-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.info-cta-text {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

.info-cta-btn {
    padding: 15px 40px !important;
    font-size: 16px !important;
}

.info-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.info-stat-card {
    padding: 40px !important;
    text-align: center;
}

.info-stat-value {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.info-stat-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.info-stat-text {
    color: var(--text-muted);
    font-size: 14px;
}

.info-columns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.info-column-card {
    padding: 40px !important;
}

.info-column-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.info-column-text {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.info-list {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.info-list-dot {
    font-size: 16px;
    line-height: 1;
}

.info-list-title {
    font-size: 18px;
}

.info-list-text {
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 3px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-list-check {
    font-size: 20px;
}

.why-list-text {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 4px;
}

.about-iceco-wrap {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-iceco-card {
    padding: 18px 16px !important;
    border-radius: 12px !important;
    border-color: rgba(255, 0, 0, 0.24) !important;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(255, 255, 255, 0.02)) !important;
}

.about-iceco-head {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.about-iceco-star {
    font-size: 16px;
    line-height: 1;
}

.about-iceco-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.about-iceco-link {
    color: var(--accent-red);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-hero {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
}

.faq-hero__title {
    font-size: 42px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.faq-hero__text {
    color: var(--text-muted);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 0 !important;
    border-radius: 14px !important;
    overflow: hidden;
}

.faq-item__summary {
    padding: 22px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item__answer {
    padding: 0 30px 22px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.faq-empty {
    color: var(--text-muted);
    text-align: center;
}

.blog-hero {
    max-width: 960px;
    margin: 0 auto 48px;
    text-align: center;
}

.blog-hero__title {
    font-size: 42px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.blog-hero__text {
    color: var(--text-muted);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-card {
    text-decoration: none;
    color: inherit;
    border-radius: 16px !important;
    overflow: hidden;
    display: block;
    padding: 0 !important;
}

.blog-card__image-wrap {
    height: 180px;
    overflow: hidden;
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__body {
    padding: 20px;
}

.blog-card__title {
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--text-main);
}

.blog-card__summary {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.blog-empty {
    color: var(--text-muted);
    text-align: center;
    grid-column: 1 / -1;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.12);
}

.scroll-progress > span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #7d020e 0%, #e10619 55%, #ff3348 100%);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.06s linear;
}

.catalog-sticky-stack {
    position: static;
    z-index: 40;
    display: grid;
    gap: 14px;
}

.catalog-sticky-stack .catalog-filter-panel,
.catalog-sticky-stack .catalog-brand-panel {
    margin-bottom: 0;
}

.catalog-filter-panel,
.catalog-brand-panel {
    transition: box-shadow 0.2s ease, border-color 0.2s ease, padding 0.2s ease;
}

.catalog-sticky-stack.is-compact .catalog-filter-panel {
    padding: 14px !important;
    border-color: rgba(225, 6, 25, 0.35) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.catalog-sticky-stack.is-compact .catalog-filter-grid {
    grid-template-columns: 1fr auto !important;
    gap: 10px;
    align-items: center;
}

.catalog-sticky-stack.is-compact .catalog-filter-grid__keyword {
    grid-column: auto;
}

.catalog-sticky-stack.is-compact .catalog-filter-group--year,
.catalog-sticky-stack.is-compact .catalog-filter-group--price,
.catalog-sticky-stack.is-compact .catalog-filter-group--mileage {
    display: none;
}

.catalog-sticky-stack.is-compact .catalog-filter-label {
    margin-bottom: 4px;
    font-size: 10px;
}

.catalog-sticky-stack.is-compact .catalog-filter-input--lg {
    min-width: min(52vw, 460px);
    padding: 10px 14px;
}

.catalog-sticky-stack.is-compact .catalog-filter-group--submit {
    min-width: 220px;
}

.catalog-sticky-stack.is-compact .catalog-filter-submit {
    min-height: 42px !important;
}

.catalog-sticky-stack.is-compact .catalog-brand-panel {
    padding: 10px 14px !important;
}

.catalog-sticky-stack.is-compact .catalog-brand-row {
    gap: 10px;
}

.catalog-sticky-stack.is-compact .catalog-brand-label {
    font-size: 12px;
}

.catalog-sticky-stack.is-compact .catalog-brand-row a {
    font-size: 12px !important;
    padding: 4px 8px !important;
}

.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    background: rgba(8, 10, 12, 0.92);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 1100;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: rgba(15, 15, 18, 0.95);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .catalog-sticky-stack {
        position: static;
        gap: 0;
    }

    .catalog-sticky-stack.is-compact .catalog-filter-group--year,
    .catalog-sticky-stack.is-compact .catalog-filter-group--price,
    .catalog-sticky-stack.is-compact .catalog-filter-group--mileage {
        display: block;
    }
}

/* Фон перенесён на .app-main (см. блок «Сквозная витрина» в конце файла) */

/* Inline cleanup helpers */
.main-content {
    min-height: 80vh;
}

.main-messages {
    padding-top: 20px;
}

.ui-alert {
    padding: 15px;
    margin-bottom: 20px;
    border-color: var(--sport-red) !important;
    background: rgba(225, 6, 25, 0.06) !important;
}

.lead-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 28px 24px !important;
    border-radius: var(--premium-radius, 10px) !important;
}

.lead-card__title {
    margin-bottom: 8px;
    text-align: center;
    font-size: clamp(20px, 1.8vw, 28px);
    letter-spacing: 0.04em;
}

.lead-card__subtitle {
    text-align: center;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--premium-muted) !important;
}

.lead-card__toggle {
    width: 100%;
    margin-bottom: 0;
}

.lead-card__hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0 auto 10px;
    text-decoration: none !important;
}

.lead-card__hint-arrow {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.12);
    color: var(--accent-red);
    font-size: 18px;
    font-weight: 800;
    animation: leadHintBounce 1.25s ease-in-out infinite;
}

.lead-card__hint-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@keyframes leadHintBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

.lead-card__form-wrap {
    margin-top: 18px;
}

.lead-card:not(.is-open) .lead-card__subtitle {
    margin-bottom: 14px;
}

.lead-field {
    margin-bottom: 20px;
}

.lead-input {
    width: 100%;
}

.lead-submit {
    width: 100%;
}

.site-footer--main {
    padding: 48px 0 40px;
    margin-top: 0;
}

.site-footer--legal {
    padding: 16px 0 20px;
    margin-top: 0;
    background: var(--premium-bg, #f3f4f6) !important;
    border-top: 1px solid var(--premium-border, #d7dde6);
}

.site-footer--legal__inner {
    max-width: 920px;
}

.site-footer--legal .footer-disclaimer {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
    color: var(--premium-muted, #596171) !important;
}

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

.footer-col--brand {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: left;
}

.footer-col--nav {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: left;
}

.footer-col--contacts {
    flex: 1 1 250px;
    text-align: left;
}

.footer-brand-wrap {
    margin-bottom: 20px;
}

.footer-note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--premium-muted, #596171) !important;
}

.footer-heading {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    font-size: 14px;
    text-align: left;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    text-decoration: none;
}

.footer-contacts {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contacts p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    width: 20px;
    text-align: center;
}

.footer-legal {
    padding-top: 30px;
    border-top: 1px solid var(--premium-border, rgba(0, 0, 0, 0.12));
    text-align: center;
    font-size: 11px;
    color: var(--premium-muted, #596171) !important;
}

.footer-policy-link {
    color: var(--premium-ink, #0e1116);
    text-decoration: none;
}

.footer-policy-link:hover {
    color: var(--premium-accent, #d90416);
}

.footer-disclaimer {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.6;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    color: var(--premium-muted, #596171) !important;
}

.home-hero-kicker {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 13px;
    color: var(--text-muted);
}

.home-hero-title {
    font-size: 52px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.home-hero-title > span:first-child {
    color: var(--text-main);
}

.home-hero-text {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
}

.home-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.btn-elite--ghost {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--glass-border) !important;
}

.home-hero-note {
    margin-top: 12px;
    max-width: 720px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 420px) {
    .home-hero__stats {
        grid-template-columns: 1fr;
    }
    .home-deep-search__grid {
        grid-template-columns: 1fr;
    }
}

/* Витрина: без своего фона — виден только body.bg-home (иначе у каждого блока своя яркость) */
.home-featured-strip {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    padding: 28px 20px 56px;
    min-height: clamp(420px, 58vh, 780px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: none;
    border: none;
}

.home-featured-strip__inner {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.home-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

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

.vehicle-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px 7px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.vehicle-meta-label {
    color: var(--text-muted);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.vehicle-meta-value {
    color: var(--text-main);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.home-section-2 {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    padding: 52px 0 40px;
    background: none;
    border: none;
}

.home-section-2 > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Форма заявки: без отдельного фона — продолжение контента страницы */
.leads-cta-section {
    padding: 48px 0 40px;
    margin-top: 0;
    background: transparent;
    background-image: none;
    border-top: none;
}

@media (max-width: 768px) {
    .leads-cta-section {
        padding: 56px 0 64px;
    }

    /* Home mobile readability tuning for enlarged sections */
    .why-us-subtitle {
        font-size: 16px !important;
        line-height: 1.45 !important;
    }

    .why-us-item-title {
        font-size: 17px !important;
        line-height: 1.35 !important;
    }

    .why-us-item-text {
        font-size: 14px !important;
        line-height: 1.45 !important;
    }

    .home-faq-question {
        font-size: 19px !important;
        line-height: 1.35 !important;
    }

    .home-faq-answer {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
}

.bg-catalog {
    position: relative;
    background-color: var(--surface-base);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    background-attachment: fixed;
}

.bg-catalog-cars {
    background-color: #080809;
    --catalog-cars-bg-image: none;
    --noir-catalog-cars-scrim:
        linear-gradient(270deg, rgba(8, 8, 10, 0.97) 0%, rgba(8, 8, 10, 0.88) 45%, rgba(10, 10, 12, 0.5) 100%),
        linear-gradient(180deg, rgba(6, 6, 8, 0.85) 0%, rgba(3, 3, 4, 0.94) 100%),
        radial-gradient(circle at 82% 14%, rgba(227, 6, 19, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 14% 88%, rgba(0, 0, 0, 0.58) 0%, transparent 50%);
    background-image: none;
}

.bg-catalog-trucks {
    background-color: #080809;
    --catalog-trucks-bg-image: none;
    --noir-catalog-trucks-scrim:
        linear-gradient(270deg, rgba(8, 8, 10, 0.96) 0%, rgba(8, 8, 10, 0.82) 55%, rgba(10, 10, 14, 0.45) 100%),
        linear-gradient(180deg, rgba(6, 6, 8, 0.86) 0%, rgba(3, 3, 4, 0.93) 100%),
        radial-gradient(circle at 82% 14%, rgba(227, 6, 19, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 16% 88%, rgba(0, 0, 0, 0.52) 0%, transparent 52%);
    background-image: none;
}

.bg-catalog-special {
    background-color: #080809;
    --catalog-special-bg-image: none;
    --noir-catalog-special-scrim:
        linear-gradient(270deg, rgba(8, 8, 10, 0.97) 0%, rgba(8, 8, 10, 0.8) 58%, rgba(10, 10, 12, 0.48) 100%),
        linear-gradient(180deg, rgba(6, 6, 8, 0.87) 0%, rgba(3, 3, 4, 0.93) 100%),
        radial-gradient(circle at 82% 14%, rgba(227, 6, 19, 0.07) 0%, transparent 41%),
        radial-gradient(circle at 14% 88%, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
    background-image: none;
}

.bg-detail {
    background:
        radial-gradient(ellipse at bottom, rgba(227, 6, 19, 0.07) 0%, transparent 62%),
        radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.04) 0%, transparent 48%);
    background-color: var(--surface-base);
    background-attachment: fixed;
}

.bg-dossier {
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 0);
    background-size: 14px 14px;
    background-color: var(--surface-base);
    background-attachment: fixed;
}

.bg-about {
    background-color: var(--surface-base);
    --noir-page-photo: none;
    --noir-page-scrim:
        linear-gradient(180deg, rgba(6, 6, 8, 0.92) 0%, rgba(3, 3, 5, 0.94) 100%),
        radial-gradient(circle at 84% 14%, rgba(227, 6, 19, 0.08) 0%, transparent 42%);
    background-image: none;
}

.bg-about .leads-cta-section {
    background-image: none;
}

.bg-how-to-buy {
    background-color: var(--surface-base);
    --noir-page-photo: none;
    --noir-page-scrim:
        linear-gradient(180deg, rgba(6, 6, 8, 0.92) 0%, rgba(3, 3, 5, 0.94) 100%),
        radial-gradient(circle at 84% 14%, rgba(227, 6, 19, 0.08) 0%, transparent 42%);
    background-image: none;
}

.bg-how-to-buy .leads-cta-section {
    background-image: none;
}

.bg-delivery {
    background-color: var(--surface-base);
    --noir-page-photo: none;
    --noir-page-scrim:
        linear-gradient(180deg, rgba(6, 6, 8, 0.92) 0%, rgba(3, 3, 5, 0.94) 100%),
        radial-gradient(circle at 84% 14%, rgba(227, 6, 19, 0.08) 0%, transparent 42%);
    background-image: none;
}

.bg-delivery .leads-cta-section {
    background-image: none;
}

.bg-customs {
    background-color: var(--surface-base);
    --noir-page-photo: none;
    --noir-page-scrim:
        linear-gradient(180deg, rgba(6, 6, 8, 0.92) 0%, rgba(3, 3, 5, 0.94) 100%),
        radial-gradient(circle at 84% 14%, rgba(227, 6, 19, 0.08) 0%, transparent 42%);
    background-image: none;
}

.bg-customs .leads-cta-section {
    background-image: none;
}

.bg-blog {
    background-color: var(--surface-base);
    --noir-page-photo: none;
    --noir-page-scrim:
        linear-gradient(180deg, rgba(6, 6, 8, 0.92) 0%, rgba(3, 3, 5, 0.94) 100%),
        radial-gradient(circle at 84% 14%, rgba(227, 6, 19, 0.08) 0%, transparent 42%);
    background-image: none;
}

.bg-blog .leads-cta-section {
    background-image: none;
}

/* FAQ page background */
.bg-faq {
    background-color: var(--surface-base);
    --noir-page-photo: none;
    --noir-page-scrim:
        linear-gradient(180deg, rgba(6, 6, 8, 0.92) 0%, rgba(3, 3, 5, 0.94) 100%),
        radial-gradient(circle at 84% 16%, rgba(227, 6, 19, 0.08) 0%, transparent 42%);
    background-image: none;
}

.faq-page {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

body.bg-faq .leads-cta-section {
    background-image: none;
}

/* Глобально отключаем декоративные фоновые слои с фото */
body.bg-home .app-shell::before,
body.bg-home .app-shell::after,
body.bg-catalog-cars .app-shell::before,
body.bg-catalog-cars .app-shell::after,
body.bg-catalog-trucks .app-shell::before,
body.bg-catalog-trucks .app-shell::after,
body.bg-catalog-special .app-shell::before,
body.bg-catalog-special .app-shell::after,
body.bg-about .app-shell::before,
body.bg-about .app-shell::after,
body.bg-how-to-buy .app-shell::before,
body.bg-how-to-buy .app-shell::after,
body.bg-delivery .app-shell::before,
body.bg-delivery .app-shell::after,
body.bg-customs .app-shell::before,
body.bg-customs .app-shell::after,
body.bg-blog .app-shell::before,
body.bg-blog .app-shell::after,
body.bg-faq .app-shell::before,
body.bg-faq .app-shell::after {
    content: none !important;
    display: none !important;
    background-image: none !important;
}

/* Левое меню: светлая панель */
.site-sidebar {
    background: #ffffff !important;
    border-right: 1px solid var(--premium-border, #d7dde6) !important;
}

.site-sidebar__head,
.site-sidebar__panel-footer {
    border-color: var(--premium-border, #d7dde6) !important;
}

.sidebar-nav__link,
.sidebar-nav__summary {
    color: var(--premium-ink, #0e1116) !important;
}

.sidebar-nav__sub a {
    color: var(--premium-muted, #596171) !important;
}

.site-sidebar__contact-link {
    color: var(--premium-ink, #0e1116) !important;
}

.sidebar-nav__sub {
    border-left: 2px solid rgba(227, 6, 19, 0.45) !important;
}

.site-sidebar__close {
    background: rgba(0, 0, 0, 0.04) !important;
    color: var(--premium-ink, #0e1116) !important;
}

.site-sidebar__close:hover {
    background: rgba(227, 6, 19, 0.1) !important;
    color: var(--premium-accent, #d90416) !important;
}

.site-topbar {
    background: #060606 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.desktop-search input {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #f3f3f3 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.desktop-search input::placeholder {
    color: rgba(255, 255, 255, 0.62) !important;
}

#search-results {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
}

#search-results a {
    color: #121212 !important;
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

footer.site-footer {
    background: var(--premium-bg, #f3f4f6) !important;
    color: var(--premium-muted, #596171) !important;
    border-top: 1px solid var(--premium-border, #d7dde6) !important;
}

footer.site-footer h5,
footer.site-footer a {
    color: var(--premium-ink, #0e1116) !important;
}

.mobile-actions {
    background: rgba(255, 255, 255, 0.96) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.mobile-actions a {
    color: #121212 !important;
}

.bg-default,
.bg-home,
.bg-catalog,
.bg-catalog-cars,
.bg-catalog-trucks,
.bg-catalog-special,
.bg-detail,
.bg-dossier,
.bg-about,
.bg-how-to-buy,
.bg-delivery,
.bg-customs,
.bg-blog,
.bg-faq {
    background: #ffffff !important;
    background-image: none !important;
    background-color: #ffffff !important;
}

.home-deep-search,
.home-hero__stat,
.vehicle-meta-item,
.tdv-select__trigger,
.tdv-select__dropdown,
.home-deep-search__grid input,
.home-deep-search__grid select {
    background: #ffffff !important;
    color: #121212 !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
}

.home-hero__stat-label,
.vehicle-meta-label {
    color: #585858 !important;
}

.glass-panel {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
}

/* Газетный нуар: строгие разделители, минимум блеска */
:root {
    --shadow-soft: none;
}

* {
    text-shadow: none !important;
}

.glass-panel,
.glass-shadow,
.car-card,
.home-deep-search,
.home-hero__stat,
.vehicle-meta-item,
.tdv-select__dropdown,
.nav-dropdown-menu,
#search-results {
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 8px !important;
}

.site-topbar,
.site-sidebar,
.mobile-actions {
    box-shadow: none !important;
}

footer.site-footer {
    box-shadow: none !important;
}

.site-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.site-sidebar {
    border-right: 1px solid var(--premium-border, #d7dde6) !important;
}

footer.site-footer {
    border-top: 1px solid var(--premium-border, #d7dde6) !important;
}

footer.site-footer::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(227, 6, 19, 0.35) 50%,
        transparent 100%
    ) !important;
}

.sidebar-nav__link,
.sidebar-nav__summary,
.sidebar-nav__sub a,
.nav-links a {
    font-family: 'Russo One', 'Exo 2', sans-serif;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

.sidebar-nav__link:hover,
.sidebar-nav__summary:hover,
.sidebar-nav__sub a:hover,
.nav-links a:hover {
    background: rgba(227, 6, 19, 0.2) !important;
}

.btn-elite {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #111 !important;
    box-shadow: none !important;
    border-radius: 6px !important;
    font-family: 'Russo One', 'Exo 2', sans-serif;
    letter-spacing: 0.04em;
}

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

.btn-elite:hover {
    background: #e30613 !important;
    border-color: #e30613 !important;
    transform: none !important;
}

.accent-text {
    color: #c40011 !important;
    text-shadow: none !important;
}

h1,
h2,
h3 {
    font-family: 'Russo One', 'Exo 2', sans-serif;
    color: #111;
    letter-spacing: 0.04em;
}

h1 {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.14;
    margin-bottom: 0.45em;
}

h2 {
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.18;
    margin-bottom: 0.42em;
}

h3 {
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.22;
    margin-bottom: 0.4em;
}

p,
li,
label,
summary,
small,
span {
    color: #1f1f1f;
}

.home-hero__content p,
.home-faq-answer,
.why-us-item-text,
.vehicle-meta-label,
.home-hero__stat-label {
    color: #3f3f3f !important;
}

/* Финальная типографика: ровные интервалы и ритм */
p {
    line-height: 1.58;
    margin-bottom: 0.78em;
}

li {
    line-height: 1.5;
}

.container {
    max-width: 1160px;
}

section {
    padding-top: 56px !important;
    padding-bottom: 40px !important;
}

.glass-panel {
    padding: 22px;
}

.home-hero__content h1 {
    max-width: 860px;
    margin-top: 12px !important;
}

.home-hero__content p {
    font-size: 16px !important;
    max-width: 760px !important;
}

.home-hero__stats {
    gap: 10px;
}

.home-hero__stat {
    padding: 12px 10px !important;
}

.home-hero__stat-value {
    font-size: clamp(20px, 2.7vw, 28px);
}

.home-hero__stat-label {
    font-size: 10px;
    letter-spacing: 0.03em;
}

.btn-elite {
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 10px 18px !important;
    min-height: 40px;
}

@media (min-width: 992px) {
    .sidebar-nav__link,
    .sidebar-nav__summary {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 17px;
    }

    .sidebar-nav__sub a {
        font-size: 15px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

@media (max-width: 768px) {
    section {
        padding-top: 42px !important;
        padding-bottom: 30px !important;
    }

    h1 {
        font-size: clamp(26px, 6.2vw, 34px);
    }

    h2 {
        font-size: clamp(22px, 5.4vw, 30px);
    }

    h3 {
        font-size: clamp(18px, 4.8vw, 24px);
    }

    p {
        font-size: 15px;
        line-height: 1.54;
    }
}

/* ===== Final Combat Polish (home/catalog/detail) ===== */
.home-hero__layout {
    padding: 44px 20px 12px !important;
}

.home-hero__content > span:first-child {
    font-size: 11px !important;
    letter-spacing: 0.24em !important;
    color: #5e6572 !important;
}

.home-hero__content h1 {
    font-size: clamp(34px, 4.2vw, 56px) !important;
    line-height: 1.06 !important;
    margin-bottom: 12px !important;
}

.home-hero__content p {
    color: #404755 !important;
    line-height: 1.52 !important;
}

.home-deep-search {
    margin-top: 10px !important;
    padding: 20px !important;
}

.home-hero__stats {
    margin-top: 18px !important;
    padding-top: 14px !important;
    gap: 8px !important;
}

.home-hero__stat {
    min-height: 92px;
    padding: 10px 8px !important;
}

.home-hero__stat-value {
    font-size: clamp(19px, 2.2vw, 26px) !important;
}

.home-hero__stat-label {
    font-size: 10px !important;
    line-height: 1.28 !important;
}

.car-card {
    border-radius: 10px !important;
    overflow: hidden !important;
}

.car-card h3 {
    font-size: 17px !important;
    line-height: 1.24 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
}

.vehicle-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.vehicle-meta-item {
    padding: 8px 9px !important;
}

.vehicle-meta-label {
    font-size: 9px !important;
    letter-spacing: 0.04em !important;
}

.vehicle-meta-value {
    font-size: 12px !important;
}

.catalog-list-filters,
.catalog-list-brands {
    border-radius: 10px !important;
}

.btn-elite {
    min-height: 40px !important;
    padding: 9px 16px !important;
    font-size: 12px !important;
}

.detail-breadcrumbs {
    font-size: 12px !important;
    color: #5a6370 !important;
}

.vehicle-detail-sidebar {
    border-radius: 12px !important;
}

.vehicle-price-main {
    font-size: clamp(28px, 3.1vw, 40px) !important;
    letter-spacing: 0.01em !important;
}

.vehicle-price-note {
    color: #4d5563 !important;
    border-color: rgba(217, 4, 22, 0.35) !important;
    background: linear-gradient(180deg, rgba(217, 4, 22, 0.08) 0%, rgba(217, 4, 22, 0.04) 100%) !important;
}

.vehicle-description {
    color: #2c3442 !important;
    line-height: 1.62 !important;
}

.vehicle-description h4 {
    color: #141820 !important;
    letter-spacing: 0.03em !important;
}

.vehicle-consult-btn {
    border-radius: 8px !important;
}

@media (max-width: 900px) {
    .home-hero__layout {
        padding: 28px 14px 8px !important;
    }

    .home-hero__content h1 {
        font-size: clamp(28px, 7vw, 40px) !important;
    }

    .vehicle-meta-grid {
        grid-template-columns: 1fr !important;
    }
}

/* === Левое меню + компактная шапка (мобильная) === */
@media (min-width: 992px) {
    .site-header--compact {
        display: none !important;
    }

    .sidebar-open-btn,
    .site-sidebar__close {
        display: none !important;
    }

    .app-main {
        margin-left: var(--sidebar-width) !important;
    }

    .site-sidebar {
        transform: none !important;
    }
}

.site-header {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: none !important;
    min-height: 72px !important;
}

.site-header__inner {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    position: relative;
    justify-items: center;
}

.site-logo--header {
    width: auto !important;
    height: 52px !important;
    max-width: 200px !important;
    transform: none !important;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
}

.site-logo--footer {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.site-header__nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.site-header__link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.site-header__link:hover {
    color: var(--accent-red);
    background: rgba(227, 6, 19, 0.06);
}

.site-header__actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.site-header__phone {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.site-header__phone:hover {
    color: var(--accent-red);
}

.btn-elite--sm {
    padding: 10px 14px !important;
    font-size: 13px !important;
}

@media (max-width: 991px) {
    .site-header__brand {
        grid-column: 2;
    }

    .site-header__menu-btn {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        position: static !important;
        transform: none !important;
        display: flex !important;
    }

    .site-logo--header {
        height: clamp(48px, 10vw, 64px) !important;
        max-width: min(72vw, 320px) !important;
    }
}

.mobile-actions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    max-width: 520px;
    margin: 0 auto;
}

.mobile-actions__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-actions__icon {
    font-size: 18px;
}


/* === Redesign step 2: homepage hero, yuan rate, steps === */
.home-hero__layout--v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: start;
    padding: 44px 20px 24px !important;
}

.home-hero-note--muted {
    font-size: 13px !important;
    color: #5a6370 !important;
}

.home-quick-search {
    padding: 18px !important;
    border-radius: 12px !important;
}

.home-quick-search--pro {
    padding: 14px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.home-quick-search__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.home-quick-search__head h4 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0b0b0b;
}

.home-quick-search__all {
    color: #0b0b0b;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.home-quick-search__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

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

.home-quick-search__input,
.home-quick-search select,
.home-quick-search__form .desh-select__trigger {
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--text-main);
    font-size: 14px;
}

.home-quick-search--pro .home-quick-search__input,
.home-quick-search--pro .home-quick-search select {
    padding: 11px 12px;
    border-radius: 9px;
    border: 1px solid rgba(15, 23, 42, 0.14) !important;
    background: rgba(255, 255, 255, 0.92) !important;
    color: #0b0b0b !important;
    font-size: 15px;
    line-height: 1.3;
    min-height: 44px;
}

.home-quick-search--pro .home-quick-search__input::placeholder {
    color: #0b0b0b;
    opacity: 1;
}

.home-quick-search--pro .home-quick-search__submit {
    color: #0b0b0b !important;
}

.home-quick-search__form .desh-select {
    min-width: 0;
}

.home-quick-search .desh-select-native {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.home-quick-search .desh-select {
    position: relative;
    min-width: 0;
}

.home-quick-search .desh-select__trigger {
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.home-quick-search .desh-select__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    max-height: 220px;
    overflow: auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.14);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    padding: 4px;
}

.home-quick-search .desh-select.open .desh-select__dropdown {
    display: block;
}

.home-quick-search .desh-select__option {
    display: block;
    width: 100%;
    border: none;
    background: transparent;
    padding: 9px 10px;
    border-radius: 8px;
    text-align: left;
    color: #0b0b0b;
    cursor: pointer;
}

.home-quick-search .desh-select__option:hover {
    background: rgba(227, 6, 19, 0.08);
}

.home-quick-search .desh-select__option.is-selected {
    background: rgba(227, 6, 19, 0.14);
    color: #8f0310;
    font-weight: 700;
}

.home-quick-search__submit {
    grid-column: 1 / -1;
    width: 100%;
}

.home-quick-search__form--pro .home-quick-search__submit {
    grid-column: 1 / -1;
    min-height: 40px;
}

.home-steps {
    margin: 8px 0 36px;
    padding: 0 20px;
}

.home-steps__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.home-steps__title {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.6vw, 34px);
}

.home-steps__subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.5;
}

.home-steps__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.home-steps__item {
    padding: 16px 14px !important;
    border-radius: 12px !important;
    min-height: 100%;
}

.home-steps__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.1);
    color: var(--accent-red);
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 10px;
}

.home-steps__name {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

.home-steps__text {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}

.home-steps__footer {
    margin-top: 22px;
    text-align: center;
}

.home-featured-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto 18px;
    padding: 0 20px;
}

.home-featured-head__title {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 30px);
}

.home-featured-head__link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .home-quick-search__form--pro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-quick-search__form--pro .home-quick-search__submit {
        grid-column: 1 / -1;
    }

    .home-steps__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-hero__layout--v2 {
        grid-template-columns: 1fr;
        padding: 28px 14px 16px !important;
    }

    .home-quick-search__form {
        grid-template-columns: 1fr;
    }

    .home-quick-search__form--pro {
        grid-template-columns: 1fr;
    }

    .home-quick-search__form--pro .home-quick-search__submit {
        grid-column: 1 / -1;
    }

    .home-steps__grid {
        grid-template-columns: 1fr;
    }

    .home-featured-head {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* === Redesign step 3: catalog sidebar + chips === */
.catalog-layout {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding-top: 24px;
    padding-bottom: 48px;
}

.catalog-sidebar {
    position: sticky;
    top: 88px;
    padding: 18px !important;
    border-radius: 12px !important;
}

.catalog-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.catalog-sidebar__title {
    margin: 0;
    font-size: 18px;
}

.catalog-sidebar__close {
    display: none;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-main);
}

.catalog-sidebar__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.catalog-sidebar__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.catalog-sidebar__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.catalog-sidebar__input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--text-main);
    font-size: 14px;
}

.catalog-sidebar__submit {
    width: 100%;
    margin-top: 4px;
}

.catalog-sidebar__reset {
    text-align: center;
    color: var(--accent-red);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.catalog-main {
    min-width: 0;
}

.catalog-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.catalog-toolbar__title {
    margin: 0 0 6px;
    font-size: clamp(24px, 2.4vw, 34px);
}

.catalog-toolbar__count {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.catalog-filters-toggle {
    display: none;
    flex-shrink: 0;
}

.catalog-type-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.catalog-type-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.catalog-type-chip:hover {
    border-color: rgba(227, 6, 19, 0.35);
    color: var(--accent-red);
}

.catalog-type-chip.is-active {
    background: rgba(227, 6, 19, 0.08);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.catalog-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.catalog-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.08);
    border: 1px solid rgba(227, 6, 19, 0.22);
    color: var(--text-main);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.catalog-chip__x {
    color: var(--accent-red);
    font-size: 14px;
    line-height: 1;
}

.catalog-chip--reset {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.14);
    color: var(--text-muted);
}

.catalog-filters-backdrop {
    display: none;
}

body.catalog-filters-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .catalog-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1200;
        width: min(92vw, 360px);
        border-radius: 0 !important;
        transform: translateX(-105%);
        transition: transform 0.24s ease;
        overflow-y: auto;
    }

    .catalog-sidebar.is-open {
        transform: translateX(0);
    }

    .catalog-sidebar__close {
        display: inline-flex;
    }

    .catalog-filters-toggle {
        display: inline-flex;
    }

    .catalog-filters-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1190;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
    }

    .catalog-filters-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (min-width: 992px) {
    .catalog-filters-toggle,
    .catalog-sidebar__close,
    .catalog-filters-backdrop {
        display: none !important;
    }
}


/* === Redesign step 4: vehicle detail sticky buybox + gallery === */

.detail-page-section {
    padding: 24px 0 48px;
}

.vehicle-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.vehicle-detail-gallery-col,
.vehicle-detail-main {
    min-width: 0;
}

.vehicle-detail-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vehicle-detail-buybox {
    position: sticky;
    top: 96px;
    padding: 22px;
    z-index: 5;
}

.vehicle-detail-title {
    margin: 8px 0 14px;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.15;
    color: var(--text-main);
}

.vehicle-detail-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.vehicle-detail-cta-stack .vehicle-consult-btn--primary,
.vehicle-detail-cta-stack .vehicle-pricekey-btn {
    margin-bottom: 0;
}

.vehicle-detail-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 12px;
}

.vehicle-detail-contact-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.vehicle-detail-contact-link:hover {
    color: var(--accent-red);
}

.vehicle-dossier-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
}

.vehicle-disclaimer {
    margin: 0;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

.vehicle-detail-info {
    padding: 22px;
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.vehicle-gallery-main {
    aspect-ratio: 16 / 10;
    margin-bottom: 12px;
}

.vehicle-main-image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
}

.vehicle-gallery-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(10, 10, 14, 0.65);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    z-index: 2;
}

.vehicle-gallery-counter {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(10, 10, 14, 0.68);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.vehicle-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 8px;
}

.vehicle-gallery-thumb--btn.is-active {
    outline: 2px solid var(--accent-red);
    outline-offset: 2px;
}

.vehicle-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 12, 0.92);
    padding: 24px;
}

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

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

.vehicle-lightbox__image {
    max-width: min(96vw, 1200px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 8px;
}

.vehicle-lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.vehicle-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(10, 10, 14, 0.68);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.vehicle-lightbox__nav--prev { left: 16px; }
.vehicle-lightbox__nav--next { right: 16px; }

.vehicle-lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.vehicle-sticky-cta {
    display: none;
}

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

    .vehicle-detail-buybox {
        position: static;
    }

    .vehicle-detail-page .app-main {
        padding-bottom: 72px;
    }

    .vehicle-sticky-cta {
        display: grid;
        grid-template-columns: 1fr 1fr 1.2fr;
        gap: 8px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(8px);
    }

    .vehicle-sticky-cta__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 8px 10px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: #fff;
        color: var(--text-main);
    }

    .vehicle-sticky-cta__btn--call {
        color: var(--accent-red);
        border-color: rgba(227, 6, 19, 0.25);
    }

    .vehicle-sticky-cta__btn--tg {
        color: #229ED9;
        border-color: rgba(34, 158, 217, 0.3);
    }

    .vehicle-sticky-cta__btn--primary {
        background: var(--accent-red);
        border-color: var(--accent-red);
        color: #fff;
    }
}

@media (min-width: 992px) {
    .vehicle-sticky-cta {
        display: none !important;
    }
}


/* === Redesign step 5: match quiz + mobile bar === */

.has-mobile-bar {
    padding-bottom: 0;
}

@media (max-width: 991px) {
    .has-mobile-bar:not(.vehicle-detail-page) {
        padding-bottom: calc(68px + env(safe-area-inset-bottom));
    }

    #cookie-consent {
        bottom: calc(72px + env(safe-area-inset-bottom)) !important;
    }
}

.mobile-actions {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

@media (max-width: 991px) {
    .mobile-actions {
        display: block;
    }
}

body.vehicle-detail-page .mobile-actions {
    display: none !important;
}

.mobile-actions__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    max-width: 560px;
}

.mobile-actions__item {
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-main);
    font-family: inherit;
    padding: 4px 2px;
}

.mobile-actions__item--quiz {
    color: var(--accent-red);
}

.mobile-actions__item--quiz .mobile-actions__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.12);
    border: 1px solid rgba(227, 6, 19, 0.28);
}

.mobile-actions__item--call {
    color: var(--accent-red);
}

.mobile-actions__item--tg {
    color: #229ED9;
}

.mobile-actions__label {
    font-size: 9px;
    line-height: 1.1;
}

.site-header__cta.js-open-match-quiz,
.sidebar-nav__cta.js-open-match-quiz {
    cursor: pointer;
    border: none;
    font: inherit;
}

.sidebar-nav__cta.js-open-match-quiz {
    width: 100%;
    text-align: center;
}

/* Match quiz modal */
.match-quiz {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 16px;
}

.match-quiz[hidden] {
    display: none !important;
}

body.match-quiz-open {
    overflow: hidden;
}

.match-quiz__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 12, 0.55);
}

.match-quiz__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: min(92vh, 720px);
    overflow: auto;
    padding: 20px;
    border-radius: 16px;
}

.match-quiz__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.match-quiz__kicker {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-red);
}

.match-quiz__title {
    margin: 0;
    font-size: clamp(20px, 4vw, 26px);
    color: var(--text-main);
}

.match-quiz__close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--text-main);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.match-quiz__progress {
    height: 4px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 8px;
}

.match-quiz__progress-bar {
    display: block;
    height: 100%;
    width: 20%;
    background: var(--accent-red);
    transition: width 0.2s ease;
}

.match-quiz__step-label {
    margin: 0 0 14px;
    font-size: 12px;
    color: var(--text-muted);
}

.match-quiz__question {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--text-main);
}

.match-quiz__hint {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
}

.match-quiz__options {
    display: grid;
    gap: 8px;
}

.match-quiz__option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.match-quiz__option:has(input:checked) {
    border-color: var(--accent-red);
    background: rgba(227, 6, 19, 0.06);
}

.match-quiz__option input {
    accent-color: var(--accent-red);
}

.match-quiz__fields {
    display: grid;
    gap: 10px;
}

.match-quiz__input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
}

.match-quiz__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.match-quiz__footer {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.match-quiz__footer .btn-elite,
.match-quiz__footer .btn-elite--ghost {
    flex: 1;
}

.match-quiz__error {
    margin: 10px 0 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(227, 6, 19, 0.08);
    border: 1px solid rgba(227, 6, 19, 0.25);
    color: #8f0310;
    font-size: 13px;
}

.match-quiz__success {
    margin: 10px 0 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(34, 158, 73, 0.1);
    border: 1px solid rgba(34, 158, 73, 0.25);
    color: #1d6b38;
    font-size: 13px;
}

@media (min-width: 992px) {
    .mobile-actions {
        display: none !important;
    }

    .has-mobile-bar {
        padding-bottom: 0 !important;
    }
}

/* Заявка: стили в блоке «Сквозная витрина» в конце файла */

footer.site-footer,
footer.site-footer.site-footer--main {
    background: linear-gradient(180deg, #eef1f5 0%, var(--premium-bg, #f3f4f6) 100%) !important;
    color: var(--premium-muted, #596171) !important;
}

footer.site-footer .footer-heading {
    color: var(--premium-ink, #0e1116) !important;
    font-family: 'Russo One', 'Exo 2', sans-serif;
    letter-spacing: 0.04em;
}

footer.site-footer .footer-link,
footer.site-footer .footer-policy-link {
    color: var(--premium-ink, #0e1116) !important;
}

footer.site-footer .footer-link:hover,
footer.site-footer .footer-policy-link:hover,
footer.site-footer a:hover {
    color: var(--premium-accent, #d90416) !important;
}

footer.site-footer .footer-contacts p {
    color: var(--premium-muted, #596171) !important;
}

footer.site-footer .footer-icon {
    color: var(--premium-accent, #d90416) !important;
}

.site-footer--legal {
    padding: 14px 0 18px !important;
    border-top: 1px solid var(--premium-border, #d7dde6) !important;
}

.site-footer--legal .footer-disclaimer {
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    text-align: center !important;
    color: var(--premium-muted, #596171) !important;
}

/* Левое меню — финальный приоритет */
@media (min-width: 992px) {
    .app-main {
        margin-left: var(--sidebar-width) !important;
    }

    .site-sidebar {
        display: flex !important;
        transform: none !important;
    }
}

.site-sidebar__logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 96px !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
}

.site-sidebar__head {
    justify-content: center !important;
    min-height: 132px !important;
    padding: 20px 10px 16px !important;
}

@media (max-width: 991px) {
    .site-sidebar__head {
        justify-content: space-between !important;
        min-height: 88px !important;
        padding: 18px 14px 14px !important;
    }

    .site-sidebar__close {
        position: absolute;
        top: 14px;
        right: 12px;
    }

    .site-sidebar__brand {
        max-width: calc(100% - 48px);
    }
}

/* === Homepage visual upgrade v11 === */
.home-page__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 48px;
}

.home-icon {
    width: 22px;
    height: 22px;
    display: block;
    color: var(--accent-red, #e30613);
}

.home-hero__layout--v3 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: 24px;
    align-items: stretch;
    padding: clamp(36px, 8vh, 88px) 20px 28px !important;
    min-height: min(78vh, 720px);
}

.home-hero__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-hero__aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-hero__visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 120px;
    padding: 18px 16px !important;
    border-radius: 12px !important;
    border-left: 3px solid rgba(227, 6, 19, 0.75) !important;
}

.home-hero__visual-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-red, #e30613);
}

.home-hero__visual-title {
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.2;
    color: var(--premium-ink, #0e1116);
}

.home-hero__visual-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
}

.home-hero__visual-list li::before {
    content: "→ ";
    color: var(--accent-red, #e30613);
}

.home-trust {
    list-style: none;
    margin: 0 auto 32px;
    padding: 0 20px;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.home-trust__item {
    padding: 14px 12px !important;
    border-radius: 12px !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.94) !important;
}

.home-trust__icon .home-icon {
    width: 20px;
    height: 20px;
}

.home-trust__title {
    font-size: 14px;
    font-weight: 800;
    color: var(--premium-ink, #0e1116);
}

.home-trust__text {
    font-size: 12px;
    color: var(--premium-muted, #596171);
    line-height: 1.35;
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.home-section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-section-head__title {
    margin: 0 0 6px;
    font-size: clamp(22px, 2.4vw, 32px);
}

.home-section-head__sub {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.45;
    max-width: 560px;
}

.home-section-head__link {
    color: var(--accent-red);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.home-popular {
    margin-bottom: 28px;
}

.home-popular__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-popular__card {
    padding: 16px 14px !important;
    border-radius: 12px !important;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    background: rgba(255, 255, 255, 0.94) !important;
}

.home-popular__card:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 6, 19, 0.35) !important;
    box-shadow: 0 12px 28px rgba(227, 6, 19, 0.12);
}

.home-popular__brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-red);
}

.home-popular__model {
    font-size: 17px;
    line-height: 1.2;
}

.home-popular__body {
    font-size: 13px;
    color: var(--text-muted);
}

.home-popular__price {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 800;
    color: var(--premium-ink, #0e1116);
}

.home-popular__cta {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-red);
}

.home-brands {
    list-style: none;
    margin: 0 auto 36px;
    padding: 14px 20px;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-brands--inline {
    margin: -8px auto 16px;
    padding: 10px 20px;
    background: transparent;
    border: none;
    justify-content: flex-start;
}

.home-popular__grid--few {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-why__grid--few {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-timeline__links {
    text-align: center;
    margin: 18px 0 0;
    font-size: 14px;
}

.home-timeline__links a {
    color: var(--accent-red);
    font-weight: 700;
    text-decoration: none;
}

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

.home-timeline__links span {
    margin: 0 8px;
    color: var(--text-muted);
}

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


.home-brands__item {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 700;
    color: var(--premium-ink, #0e1116);
    letter-spacing: 0.02em;
}

.home-timeline {
    margin-bottom: 40px;
}

.home-timeline__track {
    list-style: none;
    margin: 0 auto;
    padding: 8px 20px 0;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    position: relative;
}

.home-timeline__track::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(227, 6, 19, 0.15), rgba(227, 6, 19, 0.55), rgba(227, 6, 19, 0.15));
    z-index: 0;
}

.home-timeline__step {
    position: relative;
    z-index: 1;
    padding: 16px 12px !important;
    border-radius: 12px !important;
    text-align: center;
    background: rgba(255, 255, 255, 0.94) !important;
}

.home-timeline__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(227, 6, 19, 0.1);
    margin-bottom: 8px;
}

.home-timeline__index {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-red);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.home-timeline__name {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.home-timeline__text {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.home-timeline__footer {
    text-align: center;
    margin-top: 22px;
}

.home-showcase {
    margin-bottom: 40px;
}

.home-showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-price {
    margin-bottom: 40px;
}

.home-price__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto 16px;
}

.home-price__item {
    padding: 16px 14px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.94) !important;
}

.home-price__step {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent-red);
    margin-bottom: 6px;
}

.home-price__name {
    margin: 0 0 6px;
    font-size: 16px;
}

.home-price__text {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
}

.home-price__cta {
    max-width: 1160px;
    margin: 0 auto;
    padding: 18px 20px !important;
    border-radius: 14px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
}

.home-price__cta-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1 1 320px;
}

.home-price__cta-icon .home-icon {
    width: 28px;
    height: 28px;
}

.home-price__cta-text strong {
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
}

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

.home-why {
    margin-bottom: 40px;
}

.home-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-why__card {
    padding: 18px 16px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.94) !important;
}

.home-why__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(227, 6, 19, 0.1);
    margin-bottom: 10px;
}

.home-why__title {
    margin: 0 0 8px;
    font-size: 16px;
}

.home-why__text {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
}

.home-social {
    margin-bottom: 40px;
}

.home-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto 18px;
}

.home-gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
}

.home-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-gallery__item:hover img {
    transform: scale(1.05);
}

.home-gallery__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.home-gallery--placeholder {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home-gallery__placeholder {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08) !important;
}

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

.home-reviews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto 16px;
}

.home-reviews__card {
    padding: 16px 14px !important;
    border-radius: 12px !important;
    margin: 0;
    background: rgba(255, 255, 255, 0.94) !important;
}

.home-reviews__stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.home-reviews__text {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--premium-ink, #0e1116);
}

.home-reviews__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    color: var(--text-muted);
}

.home-social__tg {
    max-width: 1160px;
    margin: 0 auto;
    padding: 18px 20px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.94) !important;
}

.home-social__tg p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.home-social__tg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-faq-block {
    margin-bottom: 24px;
}

.home-faq-block__list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-faq-item {
    padding: 0 !important;
    border-radius: 12px !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94) !important;
}

.home-faq-item__q {
    padding: 14px 16px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
}

.home-faq-item__q::-webkit-details-marker {
    display: none;
}

.home-faq-item[open] .home-faq-item__q {
    color: var(--accent-red);
}

.home-faq-item__a {
    padding: 0 16px 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
}

.home-faq-block__more {
    text-align: center;
    margin-top: 14px;
}

.home-faq-block__more a {
    color: var(--accent-red);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

/* Unified vehicle card */
.vehicle-card {
    padding: 10px !important;
    display: flex;
    flex-direction: column;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.96) !important;
}

.vehicle-card__media {
    display: block;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.vehicle-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.vehicle-card:hover .vehicle-card__img {
    transform: scale(1.04);
}

.vehicle-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
    font-size: 13px;
}

.vehicle-card__brand {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.vehicle-card__badge {
    top: 10px;
    right: 10px;
    left: auto !important;
}

.vehicle-card__body {
    padding: 4px 6px 6px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vehicle-card__title {
    margin: 0 0 4px;
    font-size: 17px;
    line-height: 1.25;
    min-height: 44px;
}

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

.vehicle-card__title a:hover {
    color: var(--accent-red);
}

.vehicle-card__delivery {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.vehicle-card__price-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.vehicle-card__price {
    font-size: 20px;
    font-weight: 800;
}

.vehicle-card__price-cny {
    font-size: 13px;
    color: var(--text-muted);
}

.vehicle-card__chips {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vehicle-card__chips li {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--premium-ink, #0e1116);
}

.vehicle-card__cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.catalog-grid .vehicle-card {
    height: 100%;
}

.badge-green {
    background: linear-gradient(180deg, #1a9a52 0%, #0d7340 100%) !important;
    color: #fff !important;
}

.site-sidebar__contact-icon svg {
    display: block;
}

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

    .home-timeline__track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-timeline__track::before {
        display: none;
    }

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

    .home-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .home-hero__layout--v3 {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 24px !important;
    }

    .home-hero__search-wrap,
    .home-hero__visual {
        order: 0;
    }

    .home-trust {
        grid-template-columns: 1fr;
    }

    .home-timeline__track {
        grid-template-columns: 1fr;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 78vw);
    }

    .home-timeline__step {
        scroll-snap-align: start;
    }

    .home-popular__grid,
    .home-popular__grid--few,
    .home-price__grid,
    .home-why__grid,
    .home-why__grid--few,
    .home-reviews,
    .home-gallery,
    .home-gallery--placeholder {
        grid-template-columns: 1fr;
    }

    .home-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-price__cta {
        flex-direction: column;
        align-items: stretch;
    }
}

/* === Сквозная витрина: все страницы, один фон, без полосы у заявки === */
body.bg-home,
body.bg-default,
body.bg-catalog,
body.bg-catalog-cars,
body.bg-catalog-trucks,
body.bg-catalog-special,
body.bg-detail,
body.bg-dossier,
body.bg-about,
body.bg-how-to-buy,
body.bg-delivery,
body.bg-customs,
body.bg-blog,
body.bg-faq {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.app-main {
    background:
        linear-gradient(
            180deg,
            rgba(245, 247, 251, 0.55) 0%,
            rgba(238, 242, 247, 0.62) 100%
        ),
        url("/static/images/hero/site-bg.webp") center center / cover no-repeat fixed;
}

.app-main__content,
.leads-cta-section {
    background: transparent !important;
    background-image: none !important;
}

.leads-cta-section {
    border-top: none !important;
}

footer.site-footer.site-footer--legal {
    background: rgba(255, 255, 255, 0.82) !important;
    border-top: 1px solid rgba(15, 23, 42, 0.14) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

footer.site-footer.site-footer--legal .footer-disclaimer {
    color: #334155 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    font-weight: 500 !important;
}

.app-main .glass-panel,
.app-main .vehicle-card,
.app-main .car-card,
.app-main .catalog-card,
.app-main .catalog-sidebar,
.app-main .home-trust__item,
.app-main .home-popular__card,
.app-main .home-timeline__step,
.app-main .home-why__card,
.app-main .home-reviews__card,
.app-main .home-faq-item,
.app-main .home-quick-search,
.app-main .home-brands--inline,
.app-main .info-feature-card,
.app-main .info-cta-card,
.app-main .faq-item,
.app-main .blog-card,
.app-main .glass-panel.lead-card {
    background: rgba(255, 255, 255, 0.68) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: none !important;
}

.app-main .home-brands__item {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.app-main input.glass-panel,
.app-main textarea.glass-panel,
.app-main .lead-input,
.app-main .catalog-sidebar__input,
.app-main .home-quick-search__input,
.app-main .home-quick-search select,
.app-main .desh-select__trigger,
.app-main input:not([type="hidden"]):not([type="submit"]):not([type="button"]),
.app-main textarea,
.app-main select {
    background: rgba(255, 255, 255, 0.42) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.bg-home .home-hero {
    background: transparent !important;
}

body.bg-home .home-hero__content > .accent-text,
body.bg-home .home-hero__content h1,
body.bg-home .home-hero__content h1 .accent-text,
body.bg-home .home-hero__content p,
body.bg-home .home-hero-kicker {
    text-shadow: none !important;
    color: var(--premium-ink, #0e1116);
}

body.bg-home .home-hero-text,
body.bg-home .home-hero-kicker {
    color: var(--text-muted, #596171) !important;
}

body.bg-home .home-hero__content h1 .accent-text {
    color: var(--accent-red, #e30613) !important;
}

body.bg-home .home-page__body {
    padding-top: 8px;
}

.app-main .home-hero__visual {
    background: rgba(255, 255, 255, 0.68) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-left: 3px solid rgba(227, 6, 19, 0.75) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: none !important;
}

.app-main .home-hero__visual {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(15, 23, 42, 0.14) !important;
}

.app-main .home-hero__visual .home-hero__visual-title {
    color: #0f172a !important;
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
    .app-main {
        background-attachment: scroll;
    }
}

/* Mobile tap targets: improve finger usability */
@media (max-width: 768px) {
    .sidebar-nav__link,
    .sidebar-nav__summary,
    .site-sidebar__contact-link,
    .home-timeline__links a,
    .app-main a.btn-elite,
    .app-main button.btn-elite,
    .app-main .btn-elite,
    .mobile-actions__item {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .sidebar-nav__link,
    .sidebar-nav__summary {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .site-sidebar__contact-link {
        padding: 6px 0;
    }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   Используют только opacity + transform (GPU, без reflow)
   ============================================================ */

/* Базовое скрытое состояние */
.sr {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* Вариант: появление снизу с чуть большим сдвигом */
.sr--up {
    transform: translateY(44px);
}

/* Вариант: появление слева */
.sr--left {
    transform: translateX(-32px);
}

/* Вариант: появление справа */
.sr--right {
    transform: translateX(32px);
}

/* Вариант: просто fade без сдвига */
.sr--fade {
    transform: none;
}

/* Вариант: масштаб снизу (карточки) */
.sr--scale {
    transform: translateY(20px) scale(0.97);
}

/* Видимое состояние — JS добавляет класс .sr-visible */
.sr.sr-visible {
    opacity: 1;
    transform: none;
}

/* Задержки для stagger-эффекта в группах */
.sr[data-sr-delay="100"] { transition-delay: 0.10s; }
.sr[data-sr-delay="150"] { transition-delay: 0.15s; }
.sr[data-sr-delay="200"] { transition-delay: 0.20s; }
.sr[data-sr-delay="250"] { transition-delay: 0.25s; }
.sr[data-sr-delay="300"] { transition-delay: 0.30s; }
.sr[data-sr-delay="350"] { transition-delay: 0.35s; }
.sr[data-sr-delay="400"] { transition-delay: 0.40s; }
.sr[data-sr-delay="500"] { transition-delay: 0.50s; }

/* Отключаем анимации для prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .sr {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
