:root {
    --bg: #17191d;
    --panel: #22252b;
    --panel-2: #2c3138;
    --text: #f5f5f5;
    --muted: #bfc3c9;
    --accent: #b80f0a;
    --accent-hi: #d3221c;
    --line: rgba(245, 245, 245, 0.1);
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    /* Decorative absolute elements must not widen the mobile viewport. */
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}
body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #14161a 0%, var(--bg) 44rem, #15171b 100%);
    letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

/* Media and flex/grid children are frequent sources of mobile overflow. */
img, video, iframe, svg, canvas {
    max-width: 100%;
}

main,
.site-header,
.site-footer,
.section-narrow {
    min-width: 0;
}

@media (max-width: 820px) {
    main > *,
    .site-header > *,
    .site-footer > * {
        min-width: 0;
        max-width: 100%;
    }

    input,
    select,
    textarea,
    button {
        max-width: 100%;
    }

    h1, h2, h3, h4, p, a, strong, span {
        overflow-wrap: break-word;
    }
}

.site-header, .section-narrow, .site-footer {
    width: min(1260px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 20;
    color: var(--text);
}

.topbar {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand, .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 178px;
}
.brand-mark {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(#22252b, #15171b) padding-box, linear-gradient(145deg, #d8241f, #7c0906) border-box;
    border: 7px solid transparent;
    box-shadow: inset 0 0 0 2px rgba(245, 245, 245, 0.18), 0 10px 26px rgba(184, 15, 10, 0.25);
}
.brand-mark span {
    font-size: 17px;
    font-weight: 900;
    border-top: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
}
.brand-logo {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    object-fit: contain;
}
.brand strong, .footer-brand strong { display: block; font-size: 18px; line-height: 1.05; }
.brand small, .phone small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.site-header .brand,
.site-header .brand strong,
.site-header .main-nav,
.site-header .main-nav a,
.site-header .main-nav button,
.site-header .new-main-nav > a,
.site-header .new-main-nav .nav-dropdown-toggle,
.site-header .phone,
.site-header .phone strong {
    color: var(--text);
}

.site-header .brand small,
.site-header .phone small {
    color: var(--muted);
}

.site-header .nav-dropdown-menu {
    color: #111318;
}

.site-header .nav-dropdown-menu a,
.site-header .nav-dropdown-menu span {
    color: #111318;
}

.footer-legal {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(191, 195, 201, 0.78);
}
.site-footer .footer-policy {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.45;
}
.footer-legal span {
    display: block;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
    color: var(--muted);
    font-size: 14px;
}
.main-nav a,
.main-nav button {
    transition: color 0.18s ease, transform 0.18s ease;
}
.main-nav a:hover,
.main-nav a:focus,
.main-nav button:hover,
.main-nav button:focus {
    color: var(--text);
    transform: translateY(-1px);
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone { min-width: 178px; }
.phone strong { font-size: 17px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 5px;
    background: linear-gradient(180deg, var(--accent-hi), var(--accent));
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 16px 34px rgba(184, 15, 10, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn:hover,
.btn:focus {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 20px 42px rgba(184, 15, 10, 0.32);
}
.btn-small { min-height: 40px; padding: 0 22px; font-size: 13px; }
.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(16, 18, 22, 0.62);
    box-shadow: none;
}

.hero-slider {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(245, 245, 245, 0.06);
    border-radius: 8px;
    background: #101216;
    box-shadow: var(--shadow);
}
.slider-track, .slide { position: absolute; inset: 0; }
.slide {
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}
.slide.is-active { opacity: 1; pointer-events: auto; }
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 17, 20, 0.96) 0%, rgba(15, 17, 20, 0.75) 38%, rgba(15, 17, 20, 0.12) 70%, rgba(15, 17, 20, 0.78) 100%);
}
.slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-content {
    position: relative;
    z-index: 1;
    width: min(590px, calc(100% - 48px));
    margin-left: 54px;
}
.eyebrow, .section-label {
    display: inline-flex;
    color: #ff403a;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
}
.eyebrow {
    color: var(--text);
    border: 1px solid rgba(245, 245, 245, 0.2);
    border-radius: 100px;
    padding: 6px 11px;
    background: rgba(34, 37, 43, 0.76);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
    margin: 18px 0 22px;
    font-size: clamp(42px, 5.2vw, 74px);
    line-height: 0.98;
}
.home-slider .slide-content h1,
.home-slider .slide-content h2 {
    max-width: 620px;
    font-size: clamp(40px, 4.4vw, 60px);
    line-height: 1.04;
}
.slide-content p {
    max-width: 540px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 30px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-lead-form {
    width: min(510px, 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 10px 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(18, 20, 25, 0.82);
    backdrop-filter: blur(10px);
}
.hero-lead-form input,
.lead-popup input,
.lead-popup textarea,
.cta-band input {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 4px;
    background: #15171b;
    color: var(--text);
    padding: 0 15px;
    outline: 0;
}
.hero-lead-form input:focus,
.lead-popup input:focus,
.lead-popup textarea:focus,
.cta-band input:focus {
    border-color: rgba(211, 34, 28, 0.78);
    box-shadow: 0 0 0 3px rgba(211, 34, 28, 0.16);
}
.slider-controls {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    gap: 8px;
}
.slider-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(17, 19, 23, 0.78);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}
.slider-dots {
    position: absolute;
    left: 54px;
    bottom: 30px;
    z-index: 2;
    display: flex;
    gap: 8px;
}
.slider-dots button {
    width: 28px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
}
.slider-dots button.is-active { background: var(--accent-hi); }
.single-slide .slider-controls, .single-slide .slider-dots { display: none; }

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    background: linear-gradient(180deg, #202329, #1c1f24);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.metrics article { padding: 26px 34px; border-right: 1px solid rgba(245, 245, 245, 0.12); }
.metrics article:last-child { border-right: 0; }
.metrics strong { display: block; font-size: 28px; }
.metrics span, .section-head p, .service-card p, .car-body p, .steps p, .consult p, .site-footer p, .section-lead, .import-intro p, .direction-card p, .included-grid p, .trust-grid p, .faq-list p { color: var(--muted); line-height: 1.65; }

.section { padding-top: 70px; }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 24px;
}
.section-head > a { color: var(--text); font-weight: 800; font-size: 14px; }
.section-head span:last-child { color: var(--accent-hi); font-size: 22px; vertical-align: -2px; margin-left: 8px; }
h2 { margin-bottom: 0; font-size: clamp(30px, 3vw, 42px); line-height: 1.05; }

.section-lead {
    max-width: 860px;
    margin: -8px 0 24px;
    font-size: 16px;
}

.import-intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.import-intro p {
    margin: 0;
    font-size: 17px;
}

.direction-grid,
.included-grid,
.trust-grid {
    display: grid;
    gap: 16px;
}

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

.direction-card,
.included-grid article,
.trust-grid article {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #1d2026, #1a1d22);
}

.direction-card {
    display: grid;
    align-content: start;
    min-height: 230px;
    padding: 24px 24px 22px;
    color: var(--text);
}

.direction-card-primary {
    border-color: rgba(211, 34, 28, 0.46);
    background:
        linear-gradient(135deg, rgba(211, 34, 28, 0.2), transparent 46%),
        linear-gradient(180deg, #22252b, #191c21);
}

.direction-card span,
.included-grid span {
    color: #ff5a54;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.direction-card h3,
.included-grid h3,
.trust-grid h3 {
    margin: 12px 0 10px;
    font-size: 19px;
}

.direction-card p,
.included-grid p,
.trust-grid p {
    margin: 0;
}

.service-grid, .car-grid, .catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.service-card, .car-card, .catalog-card {
    background: linear-gradient(180deg, #1d2026, #1a1d22);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.service-card { min-height: 250px; padding: 34px 30px 26px; }
.line-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 50%;
    border: 2px solid #747b85;
    color: #d2d6df;
    font-size: 38px;
}
.service-card h3, .car-card h3, .catalog-card h3, .steps h3 { margin-bottom: 12px; font-size: 18px; }
.service-card strong, .car-body strong { display: block; font-size: 17px; }

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 560px;
    gap: 28px;
    align-items: center;
    margin-top: 34px;
    padding: 32px 34px;
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(211, 34, 28, 0.18), transparent 38%),
        linear-gradient(180deg, #22252b, #181b20);
    box-shadow: var(--shadow);
}
.cta-band h2 {
    max-width: 720px;
    margin: 8px 0 10px;
    font-size: clamp(28px, 2.8vw, 40px);
}
.cta-band p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}
.cta-band form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.cta-band .btn {
    grid-column: 1 / -1;
}

.cost-band {
    align-items: start;
}

.cost-parts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.cost-parts span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    color: #dbe2ec;
    font-size: 13px;
    font-weight: 800;
}

.inventory-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #111318;
    overflow: hidden;
}
.inventory-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.2s ease;
}
.inventory-card:hover .inventory-photo img, .catalog-card:hover .inventory-photo img { transform: scale(1.035); }
.inventory-photo span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
    border-radius: 4px;
    background: rgba(17, 19, 23, 0.82);
    font-size: 12px;
    font-weight: 800;
}
.car-badge,
.legend-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}
.car-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}
.car-badge.good,
.legend-badge.good { background: #2f963d; }
.car-badge.warn,
.legend-badge.warn { background: #e9782b; }
.car-body { padding: 18px 18px 20px; }
.car-location {
    margin-bottom: 10px;
    color: #cbd5e1;
}
.car-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin: 10px 0 14px;
}
.car-specs span {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: #d6dce6;
    font-size: 14px;
    line-height: 1.25;
}
.car-specs span::before {
    content: "";
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-right: 7px;
    background-color: #aeb6c2;
    -webkit-mask: var(--spec-icon) center / contain no-repeat;
    mask: var(--spec-icon) center / contain no-repeat;
}
.spec-engine { --spec-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10h3l2-3h6l2 3h3v7h-3l-2 2H8l-2-2H3z'/%3E%3Cpath d='M8 7V5M14 7V5M19 12h2M3 14H1'/%3E%3C/svg%3E"); }
.spec-power { --spec-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 4 14h7l-1 8 9-12h-7z'/%3E%3C/svg%3E"); }
.spec-mileage { --spec-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14a8 8 0 1 1 16 0'/%3E%3Cpath d='M12 14l4-4'/%3E%3Cpath d='M4 18h16'/%3E%3C/svg%3E"); }
.spec-fuel { --spec-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 21V4a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v17'/%3E%3Cpath d='M5 10h11M16 7h2l2 2v7a2 2 0 0 1-4 0v-4h4'/%3E%3Cpath d='M4 21h13'/%3E%3C/svg%3E"); }
.source-price {
    margin-top: 10px;
    color: #dbe7ff;
}
.car-body strong {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 4px;
    background: var(--panel-2);
    font-size: 13px;
}

.home-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.home-brand-card {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: linear-gradient(180deg, #202329, #191c21);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.home-brand-card:hover {
    border-color: rgba(211, 34, 28, 0.62);
    background: linear-gradient(180deg, #272b33, #202329);
    color: #fff;
    transform: translateY(-1px);
}

.home-brand-card span {
    min-width: 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    overflow-wrap: anywhere;
}
.home-brands-mobile-link {
    display: none;
}

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

.included-grid article {
    padding: 24px 24px 22px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    position: relative;
    margin-top: 26px;
}
.steps::before {
    content: "";
    position: absolute;
    left: 42px;
    right: 42px;
    top: 18px;
    height: 1px;
    background: rgba(245, 245, 245, 0.18);
}
.steps article { position: relative; padding-right: 18px; }
.steps article span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--accent);
    font-size: 12px;
    font-weight: 800;
}

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

.trust-grid article {
    padding: 24px 24px 22px;
}

.faq-section h2 {
    margin: 10px 0 24px;
}

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

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #1d2026, #1a1d22);
}

.faq-list summary {
    list-style: none;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    color: var(--text);
    font-weight: 900;
    cursor: pointer;
}

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

.faq-list summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--accent-hi);
    font-size: 24px;
    line-height: 1;
}

.faq-list summary h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    max-width: 860px;
    margin: 0;
    padding: 0 22px 20px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs a {
    color: #dfe5ee;
    font-weight: 800;
}

.import-service {
    padding-bottom: 72px;
}

.import-service .section {
    padding-top: 64px;
}

.import-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 28px;
    align-items: stretch;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(15, 17, 20, 0.94), rgba(15, 17, 20, 0.7)),
        url("../img/hero-auto-expert.17e13c47b605.png") center right / cover no-repeat;
    box-shadow: var(--shadow);
}

.import-hero-copy {
    max-width: 760px;
}

.import-hero h1 {
    max-width: 760px;
    font-size: clamp(38px, 4.8vw, 62px);
    line-height: 1.03;
}

.import-hero p,
.cost-section p,
.split-section p,
.service-note {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.import-hero-panel {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(18, 20, 25, 0.76);
    backdrop-filter: blur(10px);
}

.import-hero-panel span {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    color: #e8edf5;
    line-height: 1.45;
}

.import-hero-panel span::before,
.service-check-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--accent-hi);
}

.seo-card-grid,
.seo-step-grid,
.calculation-grid {
    display: grid;
    gap: 16px;
}

.seo-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.seo-step-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 24px;
}

.seo-card-grid article,
.seo-step-grid article,
.calculation-grid article,
.seo-link-grid a {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #1d2026, #1a1d22);
}

.seo-card-grid h3,
.seo-step-grid h3,
.calculation-grid h3,
.seo-link-grid strong {
    display: block;
    margin: 0 0 10px;
    color: var(--text);
    font-size: 18px;
}

.seo-card-grid p,
.seo-step-grid p,
.seo-link-grid span {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.seo-step-grid article > span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--accent-hi);
    font-size: 13px;
    font-weight: 900;
}

.service-filter-row,
.seo-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 24px;
}

.service-filter-row span,
.seo-chip-grid a,
.seo-chip-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    color: #e4e9f1;
    font-size: 13px;
    font-weight: 800;
}

.seo-chip-grid.compact {
    margin-bottom: 0;
}

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

.service-card-price {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.service-card-price span {
    color: var(--muted);
    font-size: 13px;
}

.service-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.service-card-actions .btn {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
}

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

.cost-section,
.split-section,
.risk-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 28px;
    align-items: start;
}

.service-lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #202329, #1a1d22);
}

.service-lead-form input,
.service-lead-form select,
.service-lead-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 4px;
    background: #15171b;
    color: var(--text);
    padding: 0 14px;
    outline: 0;
}

.service-lead-form textarea {
    grid-column: 1 / -1;
    min-height: 92px;
    padding-top: 12px;
    resize: vertical;
}

.service-lead-form .btn,
.service-lead-form p,
.service-lead-form .privacy-consent {
    grid-column: 1 / -1;
}

.service-lead-form p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.calculation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.calculation-grid article div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 13px;
}

.calculation-grid article div strong {
    color: var(--text);
    text-align: right;
}

.service-note {
    margin: 16px 0 0;
    font-size: 14px;
}

.service-check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-check-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    color: #e3e8f0;
    line-height: 1.55;
}

/* Premium import service landing */
.import-service.section-narrow {
    width: min(100% - 64px, 1360px);
}

.import-service {
    color: #f6f8fb;
}

.import-service .section {
    padding-top: 92px;
}

.import-service .section > h2,
.import-service .section-head h2,
.cost-section h2,
.split-section h2,
.risk-section h2,
.service-wide-cta h2 {
    max-width: 920px;
    letter-spacing: 0;
}

.import-service .section-label {
    letter-spacing: 0.08em;
}

.import-service p {
    color: #b7c0cc;
}

.breadcrumbs {
    margin: 28px 0 18px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.import-hero {
    min-height: 610px;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
    gap: 34px;
    align-items: end;
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 70px);
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(12, 14, 18, 0.98) 0%, rgba(12, 14, 18, 0.92) 38%, rgba(12, 14, 18, 0.36) 72%, rgba(12, 14, 18, 0.78) 100%),
        linear-gradient(180deg, rgba(12, 14, 18, 0) 58%, #17191d 100%),
        url("../img/hero-auto-expert.17e13c47b605.png") center right / cover no-repeat;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.import-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 30%, rgba(211, 34, 28, 0.18), transparent 24%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 42%);
    pointer-events: none;
}

.import-hero-copy,
.import-hero-panel {
    position: relative;
    z-index: 1;
}

.import-hero h1 {
    max-width: 760px;
    margin: 18px 0 22px;
    font-size: clamp(44px, 5.6vw, 78px);
    line-height: 0.98;
    text-wrap: balance;
}

.import-hero p {
    max-width: 680px;
    color: #d4d9e2;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.72;
}

.import-hero .hero-trust-line {
    margin: -6px 0 16px;
    color: #fff;
    font-size: clamp(17px, 1.25vw, 20px);
    font-weight: 900;
}

.import-hero .hero-actions {
    gap: 14px;
    margin-top: 30px;
}

.import-hero .btn {
    min-height: 54px;
    padding: 0 28px;
}

.import-hero .btn:first-child {
    box-shadow: 0 16px 34px rgba(211, 34, 28, 0.36);
}

.import-hero-panel {
    align-self: stretch;
    gap: 12px;
    padding: 26px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(21, 24, 30, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 54px rgba(0, 0, 0, 0.3);
}

.hero-fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 6px;
}

.hero-fact-grid strong {
    min-height: 74px;
    display: grid;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(211, 34, 28, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(211, 34, 28, 0.24), transparent 58%),
        rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
}

.import-hero-panel span {
    min-height: 48px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #f1f4f8;
    font-weight: 800;
}

.seo-card-grid,
.seo-step-grid,
.calculation-grid,
.seo-link-grid {
    gap: 20px;
}

.seo-card-grid article,
.seo-step-grid article,
.calculation-grid article,
.seo-link-grid a {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-color: rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 42%),
        linear-gradient(180deg, #22262d, #181b20);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.seo-card-grid article:hover,
.seo-step-grid article:hover,
.calculation-grid article:hover,
.seo-link-grid a:hover,
.service-car-grid .inventory-card:hover {
    transform: translateY(-3px);
    border-color: rgba(211, 34, 28, 0.38);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
}

.seo-card-grid article::before,
.seo-step-grid article::before,
.calculation-grid article::before {
    content: "";
    width: 42px;
    height: 3px;
    display: block;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-hi), rgba(255, 255, 255, 0.24));
}

.seo-card-grid h3,
.seo-step-grid h3,
.calculation-grid h3,
.seo-link-grid strong {
    font-size: 20px;
    line-height: 1.2;
}

.seo-card-grid p,
.seo-step-grid p,
.seo-link-grid span {
    color: #b8c1cd;
    font-size: 15px;
}

.service-icon-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-icon-grid article {
    min-height: 260px;
}

.service-icon-grid article > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    background: rgba(211, 34, 28, 0.14);
}

.catalog-showcase {
    margin-top: 8px;
    padding: 58px 34px 34px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
        #171a1f;
}

.service-filter-row {
    margin: 6px 0 28px;
}

.service-filter-row span,
.seo-chip-grid a,
.seo-chip-grid span {
    min-height: 38px;
    padding: 7px 13px;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
}

.service-car-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-car-grid .inventory-card {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, #242832, #191d24);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.service-car-grid .inventory-photo {
    aspect-ratio: 16 / 10;
}

.service-car-grid .car-body {
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.service-car-grid .car-body h3 {
    min-height: 54px;
    font-size: 20px;
}

.service-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 28px;
    margin-bottom: 12px;
}

.service-badge-row span {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(211, 34, 28, 0.14);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-card-price {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding: 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.service-card-price strong {
    display: grid;
    gap: 2px;
    color: #fff;
    font-size: 24px;
    line-height: 1.08;
}

.service-card-price strong small {
    color: #b8c1cd;
    font-size: 12px;
    text-transform: uppercase;
}

.service-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.service-card-actions .btn {
    width: 100%;
    min-height: 42px;
}

.service-price-note {
    margin: 22px 0 0;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left-color: rgba(211, 34, 28, 0.7);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: #dce2eb;
    font-size: 14px;
}

.service-cta-band,
.service-wide-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 34px;
    padding: 30px 34px;
    border: 1px solid rgba(211, 34, 28, 0.32);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(211, 34, 28, 0.2), transparent 44%),
        linear-gradient(180deg, #252932, #181b20);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.service-cta-band h2,
.service-wide-cta h2 {
    margin: 8px 0 10px;
    font-size: clamp(26px, 2.6vw, 38px);
}

.service-cta-band p,
.service-wide-cta p {
    max-width: 720px;
    margin: 0;
    color: #c2c9d4;
}

.service-wide-cta {
    margin-top: 56px;
}

.cost-section {
    gap: 34px;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(211, 34, 28, 0.12), transparent 42%),
        linear-gradient(180deg, #20242b, #171a1f);
}

.service-lead-form {
    padding: 28px;
    border-color: rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
        #15181e;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
}

.service-lead-form input,
.service-lead-form select,
.service-lead-form textarea {
    min-height: 50px;
    border-color: rgba(255, 255, 255, 0.14);
    background: #0f1116;
}

.cost-flow {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin: 24px 0 20px;
}

.cost-flow span {
    position: relative;
    min-height: 64px;
    display: grid;
    place-items: center;
    padding: 10px;
    border: 1px solid rgba(211, 34, 28, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: #f5f7fb;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.cost-flow span:not(:last-child)::after {
    content: ">";
    position: absolute;
    right: -10px;
    z-index: 1;
    color: var(--accent-hi);
    font-weight: 900;
}

.service-card-section,
.risk-section {
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.service-check-list {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.service-check-list li {
    padding: 8px 0;
    color: #dfe4ec;
}

.risk-section > div:first-child .service-check-list {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
}

.risk-section > div:last-child .service-check-list {
    border-color: rgba(34, 197, 94, 0.25);
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.12), transparent 54%),
        rgba(255, 255, 255, 0.04);
}

.calculation-grid article {
    background:
        linear-gradient(180deg, rgba(211, 34, 28, 0.08), transparent 36%),
        linear-gradient(180deg, #22262d, #171a1f);
}

.calculation-grid article div {
    padding: 12px 0;
    font-size: 14px;
}

.media-section {
    padding: 48px 34px 34px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: #171a1f;
}

.media-section .portfolio-grid,
.media-section .video-grid {
    gap: 22px;
}

.media-section .portfolio-card,
.media-section .review-card,
.media-section .video-card {
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.07), transparent 44%),
        #20242b;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
}

.media-section .video-card-media,
.media-section .review-card-media,
.media-section .portfolio-card-media,
.media-section .portfolio-card-photo {
    min-height: 210px;
    background:
        linear-gradient(135deg, rgba(211, 34, 28, 0.34), transparent 46%),
        linear-gradient(180deg, rgba(42, 47, 56, 0.74), rgba(21, 24, 29, 0.92)),
        url("../img/hero-auto-expert.17e13c47b605.png") center / cover no-repeat;
}

.media-section .portfolio-card-photo::before {
    content: "OK-AUTO кейс";
    position: absolute;
    left: 18px;
    top: 16px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.media-section .portfolio-card-photo:has(img)::before {
    display: none;
}

.media-section .portfolio-card-body,
.media-section .video-card-body {
    padding: 22px;
}

.media-section .video-card-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
}

.media-section .video-card-media img,
.media-section .portfolio-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seo-card-grid article:nth-child(3n + 2),
.seo-step-grid article:nth-child(4n + 2) {
    background:
        linear-gradient(145deg, rgba(70, 96, 125, 0.14), transparent 42%),
        linear-gradient(180deg, #22272f, #181b20);
}

.seo-card-grid article:nth-child(3n),
.seo-step-grid article:nth-child(4n) {
    background:
        linear-gradient(145deg, rgba(211, 34, 28, 0.12), transparent 42%),
        linear-gradient(180deg, #23262e, #181b20);
}

.import-service .faq-list {
    gap: 12px;
}

.import-service .faq-list details {
    border-color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, #20242b, #171a1f);
}

.import-service .faq-list summary {
    min-height: 68px;
    padding: 20px 24px;
}

.import-service .faq-list p {
    max-width: 980px;
    padding: 0 24px 24px;
    color: #b8c1cd;
}

.service-final-cta {
    margin-bottom: 24px;
}

.final-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
}

.final-benefits span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.import-service {
    --service-text: #e3e8f0;
    --service-muted: #aeb8c6;
    --service-panel: #191d23;
    --service-panel-soft: #15191f;
}

.import-service p,
.import-service li {
    color: var(--service-text);
    font-weight: 500;
    line-height: 1.75;
}

.import-service .section {
    padding-top: 108px;
}

.import-service .section > h2,
.import-service .section-head h2,
.cost-section h2,
.split-section h2,
.risk-section h2,
.service-wide-cta h2 {
    max-width: 980px;
    margin-bottom: 24px;
    line-height: 1.08;
}

.service-link-section {
    padding-top: 76px;
}

.service-link-section + .service-link-section {
    padding-top: 64px;
}

.service-link-section h2 {
    margin-bottom: 22px;
}

.service-link-section .seo-chip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 28px;
}

.service-link-section .seo-chip-grid a {
    min-height: 0;
    padding: 0 0 9px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: transparent;
    color: #dfe6f1;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.service-link-section .seo-chip-grid a:hover {
    color: #fff;
    border-bottom-color: rgba(211, 34, 28, 0.75);
}

.cost-section {
    align-items: start;
    padding: clamp(30px, 4vw, 54px);
    background:
        linear-gradient(120deg, rgba(211, 34, 28, 0.12), transparent 36%),
        var(--service-panel-soft);
}

.cost-flow {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 620px;
    margin: 26px 0 24px;
    border-left: 1px solid rgba(211, 34, 28, 0.55);
}

.cost-flow span {
    min-height: 0;
    place-items: start;
    padding: 9px 0 9px 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #eef3fa;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
}

.cost-flow span::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 17px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent-hi);
}

.cost-flow span:not(:last-child)::after {
    display: none;
}

.cost-parts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
    max-width: 760px;
    margin-top: 20px;
}

.cost-parts span {
    min-height: 0;
    padding: 0 0 0 18px;
    border: 0;
    background: transparent;
    color: var(--service-muted);
    font-size: 15px;
    font-weight: 500;
}

.cost-parts span::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    margin: 0 10px 2px -18px;
    border-radius: 50%;
    background: rgba(211, 34, 28, 0.85);
}

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

.calculation-grid article {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%),
        var(--service-panel-soft);
}

.calculation-grid article div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: baseline;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calculation-grid article div:last-child {
    margin-top: auto;
    padding: 18px 0 0;
    border-bottom: 0;
}

.calculation-grid article div:last-child span,
.calculation-grid article div:last-child strong {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.calculation-grid article div span {
    color: var(--service-muted);
    line-height: 1.45;
}

.calculation-grid article div strong {
    color: #f4f7fb;
    font-size: 15px;
    text-align: right;
    white-space: nowrap;
}

.process-section .seo-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 26px;
}

.process-section .seo-step-grid article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.process-section .seo-step-grid article::before {
    display: none;
}

.process-section .seo-step-grid article:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.process-section .seo-step-grid article > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 0;
    border: 1px solid rgba(211, 34, 28, 0.42);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.process-section .seo-step-grid h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.process-section .seo-step-grid p {
    margin: 0;
    color: var(--service-muted);
    font-size: 16px;
}

.team-section .section-head {
    max-width: 820px;
}

.team-section .section-head p {
    max-width: 660px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

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

.team-photo-card {
    position: relative;
    min-height: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111318;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.team-photo-grid-single {
    grid-template-columns: 1fr;
}

.team-photo-grid-single .team-photo-card {
    aspect-ratio: 16 / 7;
    min-height: clamp(360px, 38vw, 520px);
    box-shadow: var(--shadow);
}

.team-photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center top;
}

.team-photo-grid-single .team-photo-card img {
    object-position: center center;
}

.team-photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 19, 24, 0) 44%, rgba(17, 19, 24, 0.82) 100%);
}

.team-photo-grid-single .team-photo-card::after {
    background: linear-gradient(180deg, rgba(17, 19, 24, 0.08) 28%, rgba(17, 19, 24, 0.84) 100%);
}

.team-photo-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 1;
    max-width: 620px;
}

.team-photo-copy h3 {
    margin: 0 0 5px;
    font-size: clamp(22px, 1.8vw, 30px);
    line-height: 1.08;
}

.team-photo-copy p {
    margin: 0;
    color: #d8dde5;
    font-size: 15px;
    line-height: 1.45;
}

@media (max-width: 1120px) {
    .team-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-photo-grid-single {
        grid-template-columns: 1fr;
    }
}

.reviews-widget-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
    align-items: center;
    gap: 34px;
}

.reviews-widget-copy {
    max-width: 560px;
}

.reviews-widget-copy h2 {
    margin: 12px 0 18px;
}

.reviews-widget-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.reviews-widget-card {
    position: relative;
    height: min(800px, 72vh);
    min-height: 560px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.reviews-widget-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.portfolio-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #202329, #1a1d22);
}
.portfolio-cta strong,
.portfolio-cta span {
    display: block;
}
.portfolio-cta strong {
    margin-bottom: 5px;
    font-size: 18px;
}
.portfolio-cta span {
    color: var(--muted);
}

.consult {
    display: grid;
    grid-template-columns: 1fr 610px;
    align-items: center;
    gap: 28px;
    margin-top: 74px;
    padding: 30px 34px;
    background: linear-gradient(180deg, var(--panel), #1c1f24);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.consult h2 { font-size: 28px; margin-bottom: 8px; }
.consult form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; }
.consult input {
    min-height: 46px;
    border: 1px solid rgba(245, 245, 245, 0.07);
    border-radius: 4px;
    background: #15171b;
    color: var(--text);
    padding: 0 17px;
}
.consult form small { grid-column: 1 / -1; color: #8f959e; }
.privacy-consent {
    grid-column: 1 / -1;
    display: block;
    color: #9aa1aa;
    font-size: 12px;
    line-height: 1.45;
    max-width: 720px;
}
.privacy-consent a {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(211, 34, 28, 0.6);
    text-underline-offset: 3px;
}
.hero-lead-form .privacy-consent {
    max-width: 470px;
    margin-top: 0;
    color: #aeb4bd;
    font-size: 11px;
    line-height: 1.35;
}
.cta-band .privacy-consent {
    grid-column: 1 / -1;
    max-width: none;
    margin-top: 2px;
}

.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lead-popup.open {
    display: flex;
}
.lead-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 9, 11, 0.72);
    backdrop-filter: blur(6px);
}
.lead-popup-panel {
    position: relative;
    width: min(520px, 100%);
    padding: 34px;
    border: 1px solid rgba(245, 245, 245, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(211, 34, 28, 0.18), transparent 34%),
        linear-gradient(180deg, #23262c, #171a1f);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}
.lead-popup-panel h2 {
    margin: 10px 0 12px;
    font-size: 30px;
}
.lead-popup-panel p {
    color: var(--muted);
    line-height: 1.65;
}
.lead-popup-panel form {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.lead-popup-submit {
    width: 100%;
}
.lead-popup-actions {
    display: grid;
    gap: 8px;
}
.lead-popup-action {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(245, 245, 245, 0.14);
    border-radius: 5px;
    background: #15171b;
    color: var(--text);
    font-weight: 800;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.lead-popup-action span {
    min-width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}
.telegram-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}
.lead-popup-action-max {
    border-color: rgba(211, 34, 28, 0.36);
    background: linear-gradient(180deg, #343840, #24282f);
}
.lead-popup-action-telegram {
    border-color: rgba(245, 245, 245, 0.2);
    background: linear-gradient(180deg, #23262c, #181b20);
}
.lead-popup-action-call {
    color: #ff5a55;
}
.lead-popup-action:hover,
.lead-popup-action:focus {
    color: #fff;
    border-color: rgba(211, 34, 28, 0.7);
    background: linear-gradient(180deg, var(--accent-hi), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(184, 15, 10, 0.24);
}
.lead-popup textarea {
    min-height: 92px;
    padding-top: 13px;
    resize: vertical;
}
.lead-popup small {
    color: #8f959e;
}
.lead-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(17, 19, 23, 0.82);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.catalog-page { padding-top: 52px; }
.catalog-head { align-items: center; }
.counter {
    min-width: 180px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}
.counter strong { display: block; font-size: 32px; }
.counter span { color: var(--muted); }
.catalog-filter {
    margin: 0 0 30px;
}
.catalog-sort {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    margin: -6px 0 16px;
}
.sort-help {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border: 0;
    border-radius: 4px;
    background: #121419;
    color: #fff;
    font-weight: 800;
}
.sort-help::first-letter {
    color: #111;
}
.sort-help > span {
    font-weight: 700;
}
.sort-menu {
    position: relative;
    z-index: 12;
}
.sort-toggle {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}
.sort-toggle span {
    font-size: 26px;
    line-height: 1;
}
.sort-toggle em {
    max-width: 190px;
    font-style: normal;
    text-align: left;
}
.sort-options {
    display: none;
    width: 260px;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    padding: 8px 0;
    border-radius: 10px;
    background: #f4f4f4;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}
.sort-menu.open .sort-options {
    display: block;
}
.sort-options button {
    width: 100%;
    min-height: 34px;
    padding: 8px 14px;
    border: 0;
    background: transparent;
    color: #333;
    text-align: left;
    cursor: pointer;
}
.sort-options button:hover,
.sort-options button.active {
    background: #e8e8e8;
}
.legend-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: 44px 16px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.64);
}
.legend-modal.open { display: block; }
.legend-dialog {
    width: min(1180px, 100%);
    position: relative;
    margin: 0 auto;
    padding: 42px 40px 40px;
    border-radius: 8px;
    background: #fff;
    color: #222;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}
.legend-dialog h2 {
    margin: 0 0 28px;
    color: #222;
    font-size: 42px;
    line-height: 1.1;
}
.legend-dialog p {
    margin: 0 0 18px;
    color: #707070;
    font-size: 20px;
    line-height: 1.42;
}
.legend-close {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    border: 0;
    background: #222;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}
.legend-note {
    margin-top: 26px;
    padding: 20px 26px;
    border-radius: 8px;
    background: #f1f1f1;
}
.legend-note p {
    margin: 0;
    color: #222;
}
.filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    background: #15171b;
}
.filter-tabs label {
    min-height: 54px;
    display: grid;
    place-items: center;
    color: var(--text);
    cursor: pointer;
}
.filter-tabs label + label { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.filter-tabs label.active {
    background: var(--accent);
    border-color: var(--accent);
}
.filter-tabs input { position: absolute; opacity: 0; pointer-events: none; }
.filter-tabs span { font-weight: 800; }
.filter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px 18px;
    margin-top: 28px;
}
.filter-grid label {
    min-width: 0;
    display: grid;
    position: relative;
}
.filter-grid label.wide { grid-column: span 2; }
.filter-grid label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.filter-grid select,
.filter-grid input {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(245, 245, 245, 0.07);
    border-radius: 6px;
    background: #202329;
    color: var(--text);
    padding: 0 42px 0 18px;
    outline: 0;
}
.filter-grid select:disabled,
.filter-grid input:disabled {
    color: #7f8792;
    cursor: not-allowed;
    background-color: #191c21;
    opacity: 1;
}
.filter-grid input { padding-right: 14px; }
.filter-grid select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #aeb4bd 50%),
        linear-gradient(135deg, #aeb4bd 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 20px,
        calc(100% - 12px) 20px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}
.filter-grid select[data-search-select] {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 0;
    opacity: 0;
    pointer-events: none;
}
.search-select {
    position: relative;
    z-index: 4;
}
.search-select.open {
    z-index: 30;
}
.search-select.disabled {
    opacity: 0.7;
}
.search-select-toggle {
    width: 100%;
    min-height: 46px;
    padding: 0 40px 0 16px;
    border: 1px solid rgba(245, 245, 245, 0.07);
    border-radius: 6px;
    background: #20242b;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.search-select-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    right: 16px;
    top: 18px;
    border-right: 2px solid #aeb4bd;
    border-bottom: 2px solid #aeb4bd;
    transform: rotate(45deg);
}
.search-select-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    overflow: hidden;
    border: 1px solid rgba(245, 245, 245, 0.12);
    border-radius: 8px;
    background: #f4f4f4;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.search-select.open .search-select-panel {
    display: block;
}
.search-select-input {
    width: calc(100% - 16px);
    min-height: 38px;
    margin: 8px;
    padding: 0 10px;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    background: #fff;
    color: #111;
}
.search-select-list {
    max-height: 240px;
    overflow-y: auto;
    padding: 0 0 6px;
}
.search-select-option,
.search-select-empty {
    width: 100%;
    min-height: 36px;
    display: block;
    padding: 8px 16px;
    border: 0;
    background: transparent;
    color: #111;
    text-align: left;
}
.search-select-option {
    cursor: pointer;
}
.search-select-option:hover,
.search-select-option.active {
    background: #b7b7b7;
    color: #fff;
}
.search-select-empty {
    color: #777;
}
.filter-grid input::placeholder { color: #969da7; opacity: 1; }
.filter-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin-top: 20px;
}
.switch-field {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    color: var(--text);
    cursor: pointer;
}
.switch-field input { position: absolute; opacity: 0; pointer-events: none; }
.switch-field span {
    width: 46px;
    height: 24px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #c9ccd1;
    transition: background 0.18s ease;
}
.switch-field span::after {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.18s ease;
}
.switch-field input:checked + span {
    background: var(--accent);
}
.switch-field input:checked + span::after {
    transform: translateX(22px);
}
.switch-field em {
    font-style: normal;
}
.filter-reset {
    min-width: 220px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #0f1115;
    color: var(--text);
    font-weight: 800;
}
.filter-actions .btn {
    min-width: 236px;
}
.empty-results {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    color: var(--muted);
}
.brand-filter {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px 14px;
    width: 100%;
    margin-bottom: 24px;
}
.brand-filter-item {
    min-width: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #1c1f24;
    color: var(--text);
    font-size: 15px;
    transition: border-color 0.18s ease, background 0.18s ease;
}
.brand-filter-item:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: #22262d;
}
.brand-filter-item.active {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}
.brand-filter-item span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
}
.brand-filter-item em {
    flex: 0 0 auto;
    color: #8f98a6;
    font-style: normal;
    font-size: 14px;
}
.brand-filter-item.active em { color: rgba(255, 255, 255, 0.82); }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tag { padding: 5px 8px; border-radius: 4px; background: var(--panel-2); color: var(--muted); font-size: 12px; }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.pagination a, .pagination span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--panel); }
.pagination span { color: var(--muted); }

.site-footer {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
    gap: 70px;
    padding: 44px 0 30px;
    margin-top: 74px;
    border-top: 1px solid var(--line);
    color: var(--text);
}
.site-footer h3 { margin: 0 0 18px; text-transform: uppercase; font-size: 14px; }
.site-footer a { display: block; color: var(--muted); margin-bottom: 9px; }
.site-footer h3,
.site-footer strong,
.site-footer .footer-brand,
.site-footer .footer-phone {
    color: var(--text);
}

.site-footer p,
.site-footer a,
.site-footer .footer-policy,
.site-footer .footer-legal {
    color: rgba(245, 245, 245, 0.78);
}

.footer-phone { color: var(--text) !important; font-size: 22px; font-weight: 800; }
.footer-offices {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}
.footer-offices p {
    margin: 0;
}
.footer-offices strong {
    display: block;
    color: var(--text);
    font-size: 13px;
    line-height: 1.35;
}
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 12px;
}
.footer-socials a {
    display: inline-flex;
    margin-bottom: 0;
    transition: color 0.18s ease, transform 0.18s ease;
}
.site-footer a {
    transition: color 0.18s ease, transform 0.18s ease;
}
.site-footer a:hover,
.site-footer a:focus,
.footer-socials a:hover,
.footer-socials a:focus {
    color: var(--text);
    transform: translateY(-1px);
}
.footer-socials a:hover,
.footer-socials a:focus {
    color: #ff5a55;
}

.floating-actions {
    position: fixed;
    right: clamp(14px, 3vw, 34px);
    top: 50%;
    z-index: 70;
    display: grid;
    gap: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}
.floating-action {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 50%;
    background: linear-gradient(180deg, #24282d, #191c20);
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    opacity: 0.92;
    pointer-events: auto;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.floating-action span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.floating-action:hover,
.floating-action:focus {
    color: #fff;
    border-color: rgba(211, 34, 28, 0.66);
    background: linear-gradient(180deg, var(--accent-hi), var(--accent));
    box-shadow: 0 16px 32px rgba(184, 15, 10, 0.3);
    opacity: 1;
    transform: translateY(-2px) scale(1.04);
}
.floating-action-max {
    font-size: 13px;
}
.floating-action-telegram .telegram-icon svg {
    width: 21px;
    height: 21px;
}
.floating-action-top {
    margin-top: 20px;
    border: 0;
    background: linear-gradient(180deg, var(--accent-hi), var(--accent));
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
}
.floating-action-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.floating-action-top:hover,
.floating-action-top:focus {
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 1120px) {
    .topbar { flex-wrap: wrap; padding: 14px 0 22px; }
    .main-nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 8px; }
    .header-actions { margin-left: auto; }
    .service-grid, .car-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .direction-grid,
    .included-grid,
    .trust-grid,
    .seo-card-grid,
    .seo-step-grid,
    .calculation-grid,
    .seo-link-grid,
    .service-car-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .import-hero,
    .cost-section,
    .split-section,
    .risk-section {
        grid-template-columns: 1fr;
    }
    .cta-band { grid-template-columns: 1fr; }
    .info-hero,
    .contacts-layout,
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-stats,
    .about-process > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .filter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .filter-grid label.wide { grid-column: span 2; }
    .brand-filter { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .consult { grid-template-columns: 1fr; }
    .consult form { grid-template-columns: 1fr 1fr auto; }
    .reviews-widget-section {
        grid-template-columns: 1fr;
    }

    .reviews-widget-copy {
        max-width: 760px;
    }

    .reviews-widget-card {
        width: min(560px, 100%);
        justify-self: center;
    }
}

@media (max-width: 820px) {
    .site-header, .section-narrow, .site-footer { width: min(100% - 28px, 1260px); }
    .topbar { gap: 18px; }
    .brand-mark, .brand-logo { width: 58px; height: 58px; }
    .brand-mark { border-width: 6px; }
    .header-actions { width: 100%; justify-content: space-between; }
    .phone { min-width: 0; }
    .hero-slider { min-height: 590px; }
    .slide-content { margin-left: 24px; width: min(560px, calc(100% - 48px)); }
    h1 { font-size: 44px; }
    .home-slider .slide-content h1,
    .home-slider .slide-content h2 { font-size: clamp(36px, 7vw, 46px); }
    .slider-dots { left: 24px; }
    .cta-band { padding: 26px 24px; }
    .import-intro {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .portfolio-cta { align-items: flex-start; flex-direction: column; }
    .metrics, .steps, .site-footer { grid-template-columns: 1fr; }
    .team-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .team-photo-grid-single { grid-template-columns: 1fr; }
    .home-brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .brand-filter { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .metrics article { border-right: 0; border-bottom: 1px solid rgba(245, 245, 245, 0.12); padding: 22px 24px; }
    .section { padding-top: 52px; }
    .section-head { align-items: start; flex-direction: column; }
    .steps::before { display: none; }
    .steps article { padding: 0; }
    .catalog-head { align-items: stretch; }
    .filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .filter-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .switch-field { grid-column: 1 / -1; }
    .filter-actions .btn { min-width: 0; }
    .filter-reset { min-width: 0; }
    .counter { width: 100%; }
    .site-footer { gap: 28px; }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .info-hero-card,
    .contact-card {
        min-height: 170px;
    }
}

@media (max-width: 560px) {
    .main-nav { gap: 22px; font-size: 13px; }
    .phone strong { font-size: 14px; }
    .btn-small { padding: 0 14px; }
    .hero-slider { min-height: 620px; }
    .slide::after { background: linear-gradient(180deg, rgba(15, 17, 20, 0.96) 0%, rgba(15, 17, 20, 0.72) 58%, rgba(15, 17, 20, 0.88) 100%); }
    .hero-actions,
    .hero-lead-form,
    .cta-band form {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        display: grid;
    }
    .hero-lead-form {
        padding: 8px;
    }
    .lead-popup {
        align-items: flex-end;
        padding: 12px;
    }
    .lead-popup-panel {
        padding: 28px 20px 22px;
    }
    .lead-popup-panel h2 {
        font-size: 25px;
    }
    .slider-controls { right: 16px; bottom: 18px; }
    .slider-dots { bottom: 24px; }
    .service-grid, .car-grid, .catalog-grid, .consult form { grid-template-columns: 1fr; }
    .direction-grid,
    .included-grid,
    .trust-grid,
    .seo-card-grid,
    .seo-step-grid,
    .calculation-grid,
    .seo-link-grid,
    .service-car-grid {
        grid-template-columns: 1fr;
    }
    .import-hero {
        padding: 28px 22px;
    }
    .import-hero h1 {
        font-size: clamp(30px, 8.6vw, 40px);
    }
    .import-hero-panel,
    .service-lead-form,
    .seo-card-grid article,
    .seo-step-grid article,
    .calculation-grid article,
    .seo-link-grid a {
        padding: 18px;
    }
    .service-lead-form {
        grid-template-columns: 1fr;
    }
    .service-card-actions {
        grid-template-columns: 1fr;
    }
    .calculation-grid article div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .calculation-grid article div strong {
        text-align: left;
    }
    .direction-card {
        min-height: 0;
    }
    .cost-parts {
        display: grid;
        grid-template-columns: 1fr;
    }
    .team-photo-grid { grid-template-columns: 1fr; }
    .team-photo-card { min-height: 300px; }
    .team-photo-grid-single .team-photo-card { min-height: 300px; }
    .team-photo-copy {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
    .team-photo-copy p {
        font-size: 15px;
    }
    .about-stats,
    .about-process > div {
        grid-template-columns: 1fr;
    }
    .info-hero-card,
    .contact-form-panel,
    .about-principles article,
    .about-process article,
    .about-stats article,
    .contact-card {
        padding: 20px;
    }
    .info-hero-actions {
        display: grid;
    }
    .home-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .filter-tabs,
    .filter-grid,
    .filter-actions { grid-template-columns: 1fr; }
    .filter-grid label.wide,
    .switch-field { grid-column: auto; }
    .brand-filter { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .btn { width: 100%; }
    .reviews-widget-card {
        width: 100%;
        min-height: 520px;
        height: 620px;
    }
    .home-brands-head-link {
        display: none;
    }
    .home-brands .home-brand-card:nth-child(n+7) {
        display: none;
    }
    .home-brands-mobile-link {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
        border-radius: 5px;
        background: linear-gradient(180deg, var(--accent-hi), var(--accent));
        color: #fff;
        font-weight: 900;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 14px 30px rgba(184, 15, 10, 0.24);
        transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    }
    .home-brands-mobile-link:hover,
    .home-brands-mobile-link:focus {
        color: #fff;
        transform: translateY(-1px);
        filter: brightness(1.05);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 36px rgba(184, 15, 10, 0.3);
    }
    .home-brands-mobile-link span {
        color: #fff;
        font-size: 20px;
        line-height: 1;
    }
    .floating-actions {
        right: 12px;
        gap: 8px;
    }
    .floating-action {
        width: 46px;
        height: 46px;
        font-size: 12px;
    }
    .floating-action-top {
        margin-top: 12px;
    }
}

/* Bootstrap-oriented responsive hardening */
img, svg, video {
    max-width: 100%;
}

body {
    overflow-x: hidden;
}

.topbar {
    width: 100%;
}

.brand {
    margin-right: 0;
}

.main-nav a,
.main-nav .nav-link {
    color: var(--muted);
    padding: 0;
}

.main-nav a:hover,
.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    color: var(--text);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
    margin-left: auto;
}

.catalog-card,
.car-card,
.service-card,
.similar-card,
.brand-filter-item {
    min-width: 0;
}

.catalog-card h3,
.car-card h3,
.service-card h3,
.price-row,
.filter-actions,
.catalog-sort,
.footer-socials {
    overflow-wrap: anywhere;
}

.filter-grid input,
.filter-grid select,
.search-select-toggle,
.consult input,
.btn,
.filter-reset,
.sort-toggle,
.sort-help {
    min-width: 0;
}

@media (max-width: 1199.98px) {
    .main-nav {
        gap: 18px;
    }

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

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

@media (max-width: 991.98px) {
    .site-header,
    .section-narrow,
    .site-footer {
        width: min(100% - 32px, 1260px);
    }

    .topbar {
        min-height: auto;
        align-items: flex-start;
        gap: 16px;
        padding: 14px 0 18px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        margin-left: 0;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
    }

    .main-nav a,
    .main-nav .nav-link {
        min-height: 40px;
        display: flex;
        align-items: center;
        padding: 8px 10px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.03);
    }

    .header-actions {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .hero-slider {
        min-height: clamp(480px, 70vw, 620px);
    }

    .slide-content {
        margin-left: 28px;
    }

    .catalog-sort,
    .filter-actions {
        justify-content: stretch;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .sort-help,
    .sort-menu,
    .sort-toggle,
    .filter-reset,
    .filter-actions .btn {
        width: 100%;
    }

    .sort-options {
        width: min(100%, 320px);
        left: 0;
        right: auto;
    }

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

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

    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

@media (max-width: 767.98px) {
    .site-header,
    .section-narrow,
    .site-footer {
        width: min(100% - 24px, 1260px);
    }

    .brand,
    .footer-brand {
        min-width: 0;
    }

    .brand strong,
    .footer-brand strong {
        font-size: 16px;
    }

    .brand small,
    .phone small {
        font-size: 11px;
    }

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

    .header-actions .phone,
    .header-actions .btn {
        flex: 1 1 220px;
    }

    .slide-content {
        width: calc(100% - 32px);
        margin-left: 16px;
    }

    h1 {
        font-size: clamp(32px, 10vw, 44px);
        line-height: 1.05;
    }

    .home-slider .slide-content h1,
    .home-slider .slide-content h2 {
        font-size: clamp(30px, 8.6vw, 40px);
        line-height: 1.08;
    }

    h2 {
        font-size: clamp(26px, 8vw, 34px);
    }

    .metrics strong,
    .counter strong {
        font-size: 24px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .catalog-page {
        padding-top: 34px;
    }

    .legend-dialog {
        padding: 32px 18px 24px;
    }

    .legend-dialog h2 {
        font-size: clamp(24px, 8vw, 32px);
    }

    .legend-dialog p {
        font-size: 16px;
    }

    .pagination {
        flex-wrap: wrap;
        margin: 32px 0 48px;
    }
}

@media (max-width: 575.98px) {
    .site-header,
    .section-narrow,
    .site-footer {
        width: min(100% - 18px, 1260px);
    }

    .topbar {
        gap: 12px;
    }

    .brand-mark,
    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .main-nav,
    .service-grid,
    .car-grid,
    .catalog-grid,
    .home-brand-grid,
    .filter-tabs,
    .filter-grid,
    .filter-actions,
    .brand-filter,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .filter-grid label.wide,
    .switch-field {
        grid-column: auto;
    }

    .header-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .phone {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.03);
    }

    .hero-slider {
        min-height: 560px;
        border-radius: 0;
        margin-left: -9px;
        margin-right: -9px;
    }

    .slide-content p {
        line-height: 1.55;
    }

    .slider-controls {
        right: 12px;
        bottom: 14px;
    }

    .slider-dots {
        left: 16px;
        bottom: 22px;
    }

    .section {
        padding-top: 42px;
    }

    .section-head {
        gap: 14px;
    }

    .catalog-sort {
        margin-top: 0;
    }

    .catalog-card .car-body {
        grid-template-rows: auto;
        gap: 8px;
    }

    .car-specs {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .price-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 399.98px) {
    .site-header,
    .section-narrow,
    .site-footer {
        width: min(100% - 14px, 1260px);
    }

    .brand {
        gap: 10px;
    }

    .brand-mark,
    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .main-nav a,
    .main-nav .nav-link {
        font-size: 13px;
    }

    .btn {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* New sections: dropdown navigation, service pages, news, info pages, calculator */
.new-main-nav { align-items: center; }
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
}
.nav-dropdown-toggle::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: 2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}
.nav-dropdown-menu {
    display: none;
    min-width: 280px;
    max-width: min(360px, calc(100vw - 32px));
    position: absolute;
    left: 0;
    top: calc(100% + 18px);
    z-index: 80;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    color: #111318;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
}
.nav-dropdown-menu a,
.nav-dropdown-menu span {
    display: block;
    padding: 10px 12px;
    border-radius: 5px;
    color: #111318 !important;
    line-height: 1.25;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus,
.nav-dropdown-menu a:active {
    background: #f0f1f3;
    color: #111318 !important;
}
.content-page {
    padding-top: 52px;
}
.site-messages {
    display: grid;
    gap: 10px;
    padding-top: 18px;
}
.site-message {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    color: var(--text);
    font-weight: 800;
}
.site-message.success {
    border-color: rgba(47, 150, 61, 0.45);
    background: rgba(47, 150, 61, 0.16);
}
.site-message.error {
    border-color: rgba(240, 50, 43, 0.45);
    background: rgba(240, 50, 43, 0.16);
}
.content-page h1 {
    margin: 10px 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
}
.page-kicker,
.post-date {
    display: inline-flex;
    color: var(--muted);
    font-size: 14px;
}
.lead-text {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}
.rich-text {
    max-width: 860px;
    color: #d9dee7;
    font-size: 17px;
    line-height: 1.75;
}
.rich-text p { margin-bottom: 18px; }
.info-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: stretch;
}
.info-hero .lead-text {
    max-width: 800px;
}
.info-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.info-hero-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(211, 34, 28, 0.2), transparent 42%),
        linear-gradient(180deg, #22252b, #181b20);
    box-shadow: var(--shadow);
}
.info-hero-card span,
.contact-card span,
.about-principles span,
.about-process article span {
    color: #ff403a;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}
.info-hero-card strong {
    display: block;
    margin: 12px 0 18px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.95;
}
.info-hero-card small {
    color: var(--muted);
    line-height: 1.5;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.about-stats article,
.contact-card,
.contact-form-panel,
.about-principles article,
.about-process article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #1d2026, #1a1d22);
}
.about-stats article {
    min-height: 140px;
    padding: 24px;
}
.about-stats strong {
    display: block;
    margin-bottom: 10px;
    font-size: 28px;
}
.about-stats span,
.about-copy p,
.about-principles p,
.about-process p,
.contact-card small,
.contact-form-panel p {
    color: var(--muted);
    line-height: 1.65;
}
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 26px;
    margin-top: 70px;
}
.about-copy h2,
.about-process h2,
.contact-form-panel h2 {
    margin: 8px 0 18px;
}
.about-principles {
    display: grid;
    gap: 14px;
}
.about-principles article {
    padding: 24px;
}
.about-principles h3 {
    margin: 12px 0 8px;
}
.about-process {
    margin-top: 70px;
}
.about-process > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 22px;
}
.about-process article {
    min-height: 150px;
    padding: 22px;
}
.about-process p {
    margin: 12px 0 0;
}
.contacts-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
    gap: 24px;
    margin-top: 30px;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.contact-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.contact-card strong {
    display: block;
    margin: 12px 0 8px;
    font-size: 22px;
    line-height: 1.2;
}
.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.contact-socials a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(245, 245, 245, 0.12);
    border-radius: 4px;
    background: #15171b;
    color: #fff;
    font-weight: 800;
}
.contact-form-panel {
    padding: 28px;
}
.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    min-height: 48px;
    margin-bottom: 10px;
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 4px;
    background: #15171b;
    color: var(--text);
    padding: 0 15px;
    outline: 0;
}
.contact-form-panel textarea {
    min-height: 116px;
    padding-top: 13px;
    resize: vertical;
}
.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    border-color: rgba(211, 34, 28, 0.78);
    box-shadow: 0 0 0 3px rgba(211, 34, 28, 0.16);
}
.contact-form-panel .btn {
    width: 100%;
}
.contact-form-panel .privacy-consent {
    margin-top: 10px;
}
.info-extra {
    margin-top: 52px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}
.content-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.content-card,
.blog-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #1d2026, #1a1d22);
}
.content-card { padding: 24px; }
.content-card span,
.blog-card time {
    color: var(--accent-hi);
    font-size: 13px;
    font-weight: 800;
}
.content-card h2,
.blog-card h2 {
    margin: 12px 0;
    font-size: 22px;
    line-height: 1.2;
}
.content-card p,
.blog-card p {
    color: var(--muted);
    line-height: 1.55;
}
.blog-cover {
    aspect-ratio: 16 / 10;
    background: #101216;
}
.blog-cover img,
.post-cover {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.blog-card > div:last-child {
    flex: 1;
    padding: 18px;
}
.blog-card {
    position: relative;
    min-height: 100%;
    border-color: rgba(245, 245, 245, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        #12151a;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
    border-color: rgba(238, 36, 31, 0.52);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
    transform: translateY(-3px);
}
.blog-card:hover .blog-cover img {
    transform: scale(1.04);
}
.blog-cover {
    position: relative;
    overflow: hidden;
}
.blog-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(18, 21, 26, 0), rgba(18, 21, 26, 0.74));
    pointer-events: none;
}
.blog-cover img {
    transition: transform 0.35s ease;
}
.blog-card h2 {
    color: var(--text);
}
.blog-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-hi));
    opacity: 0;
    transition: opacity 0.2s ease;
}
.blog-card:hover::after {
    opacity: 1;
}
.news-article {
    background:
        radial-gradient(circle at 18% 4%, rgba(238, 36, 31, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(17, 19, 24, 0.4), rgba(17, 19, 24, 0));
}
.news-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 46px 20px 0;
}
.article-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: #aeb6c2;
    font-size: 13px;
    font-weight: 800;
}
.article-breadcrumbs a {
    color: #cfd3dc;
}
.article-breadcrumbs a:hover {
    color: #fff;
}
.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.news-detail-meta span {
    color: var(--accent-hi);
}
.news-detail-meta span::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-radius: 50%;
    background: rgba(245, 245, 245, 0.32);
    vertical-align: 2px;
}
.news-hero h1 {
    max-width: 920px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
}
.news-hero .lead-text {
    max-width: 780px;
    margin-top: 0;
    color: #cfd3dc;
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.65;
}
.news-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 36px 20px 90px;
    display: grid;
    grid-template-columns: minmax(0, 760px) 320px;
    gap: 36px;
    align-items: start;
}
.news-main {
    min-width: 0;
}
.news-gallery {
    display: grid;
    gap: 14px;
    margin: 32px 0 0;
}
.news-gallery-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 245, 245, 0.12);
    border-radius: 24px;
    background: #0b0d10;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.news-gallery-stage > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: none;
    object-fit: cover;
}
.news-gallery-stage > img.is-active {
    display: block;
}
.news-gallery-count {
    position: absolute;
    right: 16px;
    bottom: 16px;
    min-width: 62px;
    padding: 8px 12px;
    border: 1px solid rgba(245, 245, 245, 0.18);
    border-radius: 999px;
    background: rgba(10, 12, 15, 0.78);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    backdrop-filter: blur(12px);
}
.news-gallery-arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(245, 245, 245, 0.18);
    border-radius: 50%;
    background: rgba(10, 12, 15, 0.72);
    color: var(--text);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(12px);
}
.news-gallery-arrow:hover {
    border-color: rgba(238, 36, 31, 0.65);
    background: rgba(238, 36, 31, 0.86);
}
.news-gallery-prev {
    left: 16px;
}
.news-gallery-next {
    right: 16px;
}
.news-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}
.news-gallery-thumbs button {
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(245, 245, 245, 0.12);
    border-radius: 8px;
    background: #111419;
    cursor: pointer;
    opacity: 0.68;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.news-gallery-thumbs button:hover,
.news-gallery-thumbs button.is-active {
    border-color: rgba(238, 36, 31, 0.72);
    opacity: 1;
}
.news-gallery-thumbs button.is-active {
    transform: translateY(-2px);
}
.news-gallery-thumbs img {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
}
.article-answer,
.news-story,
.news-story-block,
.article-faq,
.related-news,
.related-service {
    margin-bottom: 28px;
}
.article-answer {
    padding: 24px 28px;
    border: 1px solid rgba(227, 34, 34, 0.35);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(227, 34, 34, 0.18), rgba(255, 255, 255, 0.04));
}
.article-answer span,
.article-cta span,
.related-service > span,
.sidebar-cta > span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ff4b4b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.article-answer p {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.55;
}
.news-story,
.news-story-block,
.article-faq,
.related-service {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(18, 21, 27, 0.92);
    color: #e8ebf0;
    font-size: 18px;
    line-height: 1.78;
}
.news-story p,
.news-story-block p,
.article-faq p,
.related-service p {
    margin: 0 0 22px;
}
.news-story h2,
.news-story-block h2,
.article-faq h2,
.related-news h2,
.related-service h2 {
    margin: 48px 0 18px;
    color: #fff;
    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0;
}
.news-story h2:first-child,
.news-story-block h2:first-child,
.article-faq h2:first-child,
.related-news h2:first-child,
.related-service h2:first-child {
    margin-top: 0;
}
.news-story h3,
.news-story-block h3 {
    margin: 34px 0 14px;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
}
.news-story ul,
.news-story ol,
.news-story-block ul,
.news-story-block ol,
.article-links ul {
    margin: 0 0 26px;
    padding-left: 0;
    list-style: none;
}
.news-story li,
.news-story-block li,
.article-links li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 32px;
    color: #dce1e8;
}
.news-story ul li::before,
.news-story-block ul li::before,
.article-links ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #e32222;
    font-weight: 800;
}
.news-story ol,
.news-story-block ol {
    counter-reset: item;
}
.news-story ol li,
.news-story-block ol li {
    counter-increment: item;
}
.news-story ol li::before,
.news-story-block ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e32222;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}
.news-story a,
.news-story-block a,
.article-faq a,
.related-service a:not(.btn) {
    color: #ff4b4b;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 75, 75, 0.45);
}
.news-story a:hover,
.news-story-block a:hover,
.article-faq a:hover,
.related-service a:not(.btn):hover {
    border-bottom-color: transparent;
}
.news-story strong,
.news-story-block strong {
    color: #fff;
    font-weight: 800;
}
.article-cta {
    margin: 34px 0;
    padding: 28px;
    border: 1px solid rgba(227, 34, 34, 0.3);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(227, 34, 34, 0.28), transparent 42%),
        #151922;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}
.article-cta h2 {
    margin: 8px 0 10px;
    color: #fff;
    font-size: 26px;
    line-height: 1.15;
}
.article-cta p {
    margin: 0;
    color: #cfd3dc;
}
.article-table-wrap {
    overflow-x: auto;
}
.news-story table,
.article-table-wrap table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}
.news-story th,
.news-story td,
.article-table-wrap th,
.article-table-wrap td {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    vertical-align: top;
}
.news-story th,
.article-table-wrap th {
    background: rgba(227, 34, 34, 0.16);
    color: #fff;
}
.article-links button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #ff4b4b;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.article-faq details {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}
.article-faq details:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.article-faq summary {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}
.article-faq summary + p {
    margin: 14px 0 0;
    color: #cfd3dc;
}
.news-sidebar {
    position: sticky;
    top: 96px;
}
.article-toc,
.expert-card,
.sidebar-cta {
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(18, 21, 27, 0.9);
}
.article-toc strong {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 15px;
}
.article-toc a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #aeb6c2;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
}
.article-toc a:hover,
.article-toc a.is-active {
    color: #fff;
}
.expert-card-top {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}
.expert-card-top img,
.expert-card-logo {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: #111318;
    object-fit: contain;
    font-weight: 900;
}
.expert-card strong {
    display: block;
    color: #fff;
}
.expert-card span {
    color: #aeb6c2;
    font-size: 13px;
    line-height: 1.35;
}
.expert-card p,
.sidebar-cta p {
    margin: 0;
    color: #cfd3dc;
    font-size: 14px;
    line-height: 1.6;
}
.sidebar-cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
}
.sidebar-cta .btn {
    width: 100%;
    margin-top: 18px;
}
.related-news {
    color: #e8ebf0;
}
.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.related-news-card {
    min-width: 0;
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(18, 21, 27, 0.86);
    color: #dce1e8;
    text-decoration: none;
}
.related-news-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 6px;
    object-fit: cover;
}
.related-news-card span {
    color: #ff4b4b;
    font-size: 12px;
    font-weight: 800;
}
.related-news-card strong {
    color: #fff;
    line-height: 1.25;
}
.related-news-card p {
    margin: 0;
    color: #aeb6c2;
    font-size: 14px;
    line-height: 1.45;
}
@media (max-width: 1024px) {
    .news-layout {
        display: block;
        max-width: 820px;
    }
    .news-sidebar {
        display: none;
    }
    .related-news-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 700px) {
    .article-cta {
        grid-template-columns: 1fr;
    }
    .article-cta .btn,
    .related-service .btn {
        width: 100%;
    }
}
@media (max-width: 640px) {
    .news-hero {
        padding: 24px 16px 0;
    }
    .news-hero h1 {
        font-size: clamp(32px, 10vw, 36px);
    }
    .news-layout {
        padding: 24px 16px 78px;
    }
    .news-story,
    .news-story-block,
    .article-faq,
    .related-service {
        padding: 22px 18px;
        border-radius: 18px;
        font-size: 16.5px;
        line-height: 1.72;
    }
    .news-story h2,
    .news-story-block h2,
    .article-faq h2,
    .related-news h2,
    .related-service h2 {
        margin-top: 36px;
        font-size: 25px;
    }
    .news-gallery-stage {
        border-radius: 18px;
    }
    .news-gallery-stage > img {
        aspect-ratio: 16 / 10;
    }
    .article-answer {
        padding: 22px 18px;
        border-radius: 18px;
    }
    .article-answer p {
        font-size: 17px;
    }
    .article-cta {
        padding: 22px 18px;
        border-radius: 18px;
    }
    .article-cta h2 {
        font-size: 23px;
    }
}
.video-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}
.video-filter a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}
.video-filter a:hover,
.video-filter a.active {
    border-color: rgba(211, 34, 28, 0.68);
    background: rgba(211, 34, 28, 0.16);
    color: #fff;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.video-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #1d2026, #1a1d22);
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.video-card:hover {
    border-color: rgba(245, 245, 245, 0.24);
    transform: translateY(-2px);
}
.video-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(211, 34, 28, 0.18), transparent 44%),
        #101216;
}
.video-card-media > a,
.video-card-media iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.video-card-media > a {
    position: relative;
}
.video-card-hit {
    position: absolute !important;
    inset: 0;
    z-index: 4;
    background: transparent;
}
.video-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.video-card:hover .video-card-media img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.035);
}
.video-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.58));
    pointer-events: none;
}
.video-card-media:has(iframe)::after {
    display: none;
}
.video-fallback-title {
    position: absolute;
    left: 88px;
    right: 18px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}
.video-play {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--accent-hi), var(--accent));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.video-play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 16px solid #fff;
}
.video-duration {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 5px 8px;
    border-radius: 4px;
    background: rgba(17, 19, 23, 0.86);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}
.video-card-body {
    padding: 18px;
}
.video-category-link {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--accent-hi);
    font-size: 13px;
    font-weight: 800;
}
.video-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.22;
}
.video-card p {
    margin-bottom: 12px;
    color: var(--muted);
    line-height: 1.55;
}
.video-card time {
    color: #8f98a6;
    font-size: 13px;
    font-weight: 800;
}
.video-detail-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
}
.video-detail-head h1 {
    margin: 10px 0 12px;
}
.video-detail-head time {
    color: #8f98a6;
    font-weight: 800;
}
.video-player {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(211, 34, 28, 0.18), transparent 44%),
        #101216;
}
.video-player iframe,
.video-player img,
.video-player > div {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.video-player img {
    object-fit: cover;
}
.video-player > div {
    position: relative;
}
.video-player-fallback {
    display: grid !important;
    place-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}
.video-detail-description {
    margin-top: 28px;
}
.video-comments-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}
.video-comment-form,
.video-comment {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #1d2026, #1a1d22);
}
.video-comment-form {
    display: grid;
    gap: 12px;
    padding: 20px;
}
.video-comment-form input,
.video-comment-form textarea {
    width: 100%;
    border: 1px solid rgba(245, 245, 245, 0.08);
    border-radius: 6px;
    background: #14161a;
    color: var(--text);
    padding: 13px 14px;
    outline: 0;
}
.video-comment-form textarea {
    min-height: 140px;
    resize: vertical;
}
.video-comment-list {
    display: grid;
    gap: 12px;
}
.video-comment {
    padding: 18px;
}
.video-comment strong {
    display: inline-flex;
    margin-right: 10px;
}
.video-comment time {
    color: #8f98a6;
    font-size: 13px;
    font-weight: 800;
}
.video-comment p {
    margin: 12px 0 0;
    color: #d9dee7;
    line-height: 1.65;
}
.post-cover {
    max-height: 520px;
    margin: 14px 0 24px;
    border-radius: 8px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.portfolio-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #1d2026, #1a1d22);
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.portfolio-card:hover {
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
}
.portfolio-card-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #101216;
    overflow: hidden;
}
.portfolio-card-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.2s ease;
}
.portfolio-card:hover .portfolio-card-photo img {
    transform: scale(1.035);
}
.portfolio-card-photo span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(17, 19, 23, 0.82);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.portfolio-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
}
.portfolio-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.25;
}
.portfolio-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}
.portfolio-card .portfolio-car {
    width: max-content;
    max-width: 100%;
    padding: 6px 10px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--panel-2);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.portfolio-detail-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 34px;
    align-items: end;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}
.portfolio-detail-meta {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(245, 245, 245, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(211, 34, 28, 0.18), transparent 42%),
        linear-gradient(180deg, #262a31, #1d2026);
    box-shadow: var(--shadow);
}
.portfolio-detail-meta::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-hi), var(--accent));
}
.portfolio-detail-meta div {
    display: grid;
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}
.portfolio-detail-meta div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.portfolio-detail-meta span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.portfolio-detail-meta strong,
.portfolio-detail-meta a {
    color: var(--text);
    font-weight: 800;
    line-height: 1.35;
}
.portfolio-detail-meta a:hover {
    color: var(--accent-hi);
}
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 12px;
    margin-top: 34px;
}
.portfolio-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    background: #101216;
    border: 1px solid rgba(245, 245, 245, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}
.portfolio-gallery img:hover {
    border-color: rgba(245, 245, 245, 0.24);
    filter: saturate(1.08) contrast(1.03);
    transform: translateY(-2px);
}
.portfolio-gallery-main {
    grid-column: span 2;
    grid-row: span 2;
}
.portfolio-story {
    max-width: 900px;
    margin-top: 36px;
    padding: 30px 34px;
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        #1a1d22;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}
.portfolio-story p {
    margin-bottom: 16px;
}
.portfolio-story p:first-child {
    color: #fff;
    font-size: 19px;
    line-height: 1.7;
}
.portfolio-story p:last-child {
    margin-bottom: 0;
}
.portfolio-more {
    padding-top: 74px;
}
.portfolio-carousel {
    display: grid;
    grid-auto-columns: minmax(280px, 360px);
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
}
.portfolio-carousel .portfolio-card {
    scroll-snap-align: start;
}
.calculator-page {
    padding-top: 70px;
    padding-bottom: 74px;
}
.calculator-panel {
    margin-top: 52px;
    padding: 44px;
    border: 1px solid rgba(245, 245, 245, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(216, 36, 31, 0.08), transparent 34%),
        linear-gradient(180deg, #1c1c1d, #171819);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}
.calculator-panel h1 {
    max-width: 780px;
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 42px);
}
.calculator-panel-lead {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}
.form-alert {
    margin: -8px 0 22px;
    padding: 13px 16px;
    border: 1px solid rgba(240, 50, 43, 0.42);
    border-radius: 6px;
    background: rgba(240, 50, 43, 0.14);
    color: #fff;
    font-weight: 800;
    line-height: 1.45;
}
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.calculator-grid input,
.calculator-grid select {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 6px;
    background: #fff;
    color: #333946;
    padding: 0 18px;
    font: inherit;
}
.calculator-grid input:focus,
.calculator-grid select:focus {
    outline: 2px solid rgba(216, 36, 31, 0.48);
    outline-offset: 2px;
}
.calculator-panel .btn { width: 100%; }
.calculator-result {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 18px;
    margin-top: 24px;
}
.calculator-result > div:first-child,
.calculator-breakdown {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}
.calculator-result > div:first-child {
    border-color: rgba(216, 36, 31, 0.32);
    background:
        linear-gradient(135deg, rgba(216, 36, 31, 0.24), transparent 58%),
        linear-gradient(180deg, #262a31, #1d2026);
}
.calculator-result span {
    display: block;
    color: var(--muted);
}
.calculator-result > div:first-child strong {
    display: block;
    margin-top: 8px;
    font-size: 30px;
}
.calculator-breakdown {
    display: grid;
    gap: 10px;
}
.calculator-breakdown p {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.calculator-breakdown p:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.calculator-breakdown em {
    display: block;
    color: #8f98a6;
    font-style: normal;
    font-size: 12px;
}
.calculator-guide {
    margin-top: 54px;
}
.calculator-guide-head {
    display: grid;
    grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
    gap: 18px 38px;
    align-items: end;
    margin-bottom: 26px;
}
.calculator-guide-head span {
    color: var(--accent-hi);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}
.calculator-guide-head h2 {
    margin: 0;
    max-width: 620px;
    font-size: clamp(30px, 4vw, 48px);
}
.calculator-guide-head p {
    grid-column: 2;
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}
.calculator-guide-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 18px;
}
.calculator-steps,
.calculator-factors {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #202329, #1b1e23);
}
.calculator-steps h3,
.calculator-factors h3 {
    margin: 0 0 14px;
    font-size: 20px;
}
.calculator-steps ol {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: calc-step;
}
.calculator-steps li {
    position: relative;
    min-height: 36px;
    padding-left: 52px;
    color: var(--muted);
    line-height: 1.6;
}
.calculator-steps li::before {
    counter-increment: calc-step;
    content: counter(calc-step);
    position: absolute;
    top: 1px;
    left: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d8241f;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(216, 36, 31, 0.28);
}
.calculator-factor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.calculator-factor-grid div {
    min-height: 142px;
    padding: 18px;
    border: 1px solid rgba(245, 245, 245, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}
.calculator-factor-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 16px;
}
.calculator-factor-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}
.calculator-note {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    margin-top: 18px;
    padding: 22px 24px;
    border: 1px solid rgba(216, 36, 31, 0.28);
    border-radius: 8px;
    background: rgba(216, 36, 31, 0.08);
}
.calculator-note strong {
    color: #fff;
    font-size: 18px;
}
.calculator-note p {
    margin: 0;
    color: #d9dee7;
    line-height: 1.65;
}

@media (max-width: 991.98px) {
    .new-main-nav .nav-dropdown {
        display: block;
    }
    .new-main-nav .nav-dropdown::before {
        display: none;
    }
    .new-main-nav .nav-dropdown-toggle {
        width: 100%;
        min-height: 40px;
        display: flex;
        align-items: center;
        padding: 8px 10px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.03);
    }
    .new-main-nav .nav-dropdown-menu {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 8px;
        box-shadow: none;
    }
    .content-grid,
    .blog-grid,
    .video-grid,
    .portfolio-grid,
    .calculator-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .portfolio-detail-head {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .video-detail-head {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .video-comments-layout {
        grid-template-columns: 1fr;
    }
    .portfolio-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .calculator-result {
        grid-template-columns: 1fr;
    }
    .calculator-guide-head,
    .calculator-guide-layout,
    .calculator-note {
        grid-template-columns: 1fr;
    }
    .calculator-guide-head p {
        grid-column: auto;
    }
}

@media (max-width: 767.98px) {
    .content-page,
    .calculator-page {
        padding-top: 34px;
    }
    .news-detail-head {
        margin-bottom: 22px;
        padding-bottom: 18px;
    }
    .news-gallery {
        margin: 22px 0 26px;
    }
    .news-gallery-stage > img {
        aspect-ratio: 4 / 3;
    }
    .news-gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    .news-gallery-prev {
        left: 10px;
    }
    .news-gallery-next {
        right: 10px;
    }
    .news-gallery-count {
        right: 10px;
        bottom: 10px;
    }
    .news-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .news-story {
        padding: 22px;
    }
    .calculator-panel {
        margin-top: 28px;
        padding: 28px 20px;
    }
    .calculator-guide-head {
        gap: 12px;
    }
    .calculator-factor-grid {
        grid-template-columns: 1fr;
    }
    .calculator-note {
        padding: 20px;
    }
    .portfolio-detail-head {
        gap: 22px;
    }
    .portfolio-detail-meta,
    .portfolio-story {
        padding: 22px;
    }
}

@media (max-width: 575.98px) {
    .content-grid,
    .blog-grid,
    .video-grid,
    .portfolio-grid,
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }
    .portfolio-gallery-main {
        grid-column: auto;
        grid-row: auto;
    }
    .portfolio-gallery img {
        aspect-ratio: 16 / 11;
    }
    .news-gallery-stage > img {
        aspect-ratio: 16 / 11;
    }
    .news-gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
    .news-story {
        padding: 20px;
        font-size: 16px;
    }
    .portfolio-story {
        margin-top: 24px;
        padding: 20px;
        font-size: 16px;
    }
    .portfolio-story p:first-child {
        font-size: 17px;
    }
    .portfolio-carousel {
        grid-auto-columns: minmax(260px, 86vw);
    }
    .calculator-breakdown p {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .site-header {
        width: min(1320px, calc(100% - 48px));
    }

    .topbar {
        min-height: 78px;
        gap: 10px;
    }

    .brand {
        min-width: 172px;
        gap: 10px;
    }

    .brand-mark,
    .brand-logo {
        width: 54px;
        height: 54px;
    }

    .brand-mark {
        border-width: 6px;
    }

    .brand strong {
        font-size: 18px;
    }

    .brand small,
    .phone small {
        font-size: 11px;
    }

    .new-main-nav {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: space-between;
        gap: clamp(7px, 0.78vw, 12px);
        margin-left: 4px;
        font-size: clamp(12px, 0.82vw, 13px);
    }

    .new-main-nav > a,
    .new-main-nav .nav-dropdown-toggle {
        white-space: nowrap;
        line-height: 1.2;
    }

    .nav-dropdown-toggle::after {
        flex: 0 0 auto;
    }

    .header-actions {
        flex: 0 0 auto;
        gap: 8px;
    }

    .phone {
        min-width: 142px;
    }

    .phone strong {
        font-size: 15px;
        white-space: nowrap;
    }

    .btn-small {
        min-height: 38px;
        padding: 0 14px;
        white-space: nowrap;
    }
}

@media (max-width: 1120px) {
    .info-hero,
    .contacts-layout,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-stats,
    .about-process > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .info-hero-card,
    .contact-card {
        min-height: 170px;
    }
}

@media (max-width: 560px) {
    .about-stats,
    .about-process > div {
        grid-template-columns: 1fr;
    }

    .info-hero-card,
    .contact-form-panel,
    .about-principles article,
    .about-process article,
    .about-stats article,
    .contact-card {
        padding: 20px;
    }

    .info-hero-actions {
        display: grid;
    }
}

.contacts-page {
    max-width: 1180px;
}
.contacts-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}
.contacts-head h1 {
    max-width: 720px;
}
.contacts-head .lead-text {
    max-width: 760px;
}
.contacts-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 18px;
    align-items: start;
    margin-top: 0;
}
.contacts-panel,
.contact-form-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #1d2026, #181b20);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}
.contacts-panel {
    display: grid;
    gap: 0;
    overflow: hidden;
}
.contact-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 10px 24px;
    align-items: center;
    min-height: 0;
    padding: 22px 26px;
    border-bottom: 1px solid rgba(245, 245, 245, 0.08);
    background: transparent;
}
.contact-row:last-of-type {
    border-bottom: 0;
}
.contact-row span {
    color: #ff403a;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}
.contact-row strong {
    display: block;
    margin: 0;
    font-size: 23px;
    line-height: 1.22;
}
.contact-row small {
    grid-column: 2;
    color: var(--muted);
    line-height: 1.45;
}
.contact-row.primary {
    background: linear-gradient(90deg, rgba(211, 34, 28, 0.16), transparent 52%);
}
.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}
.contact-socials a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0 13px;
    border: 1px solid rgba(245, 245, 245, 0.14);
    border-radius: 4px;
    background: #15171b;
    color: #fff;
    font-weight: 800;
}
.contacts-note {
    margin: 0 26px 26px;
    padding: 18px 20px;
    border-radius: 8px;
    background: rgba(211, 34, 28, 0.1);
}
.contacts-note strong {
    display: block;
    margin-bottom: 6px;
}
.contacts-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}
.contact-form-panel {
    padding: 26px;
}
.contact-form-panel h2 {
    margin: 8px 0 10px;
    font-size: 30px;
    line-height: 1.08;
}
.contact-form-panel p {
    margin-bottom: 18px;
    color: var(--muted);
}
.contact-form-panel input,
.contact-form-panel textarea {
    margin-bottom: 9px;
}
.contact-form-panel .privacy-consent {
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.4;
}

.main-nav .nav-link,
.contact-socials a {
    transition: color 0.18s ease, transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.contact-socials a:hover,
.contact-socials a:focus {
    color: #fff;
    transform: translateY(-1px);
}

.contact-socials a:hover,
.contact-socials a:focus {
    border-color: rgba(211, 34, 28, 0.7);
    background: rgba(211, 34, 28, 0.14);
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu-panel {
    display: contents;
}

@media (max-width: 767.98px) {
    .site-header .topbar {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        align-items: center;
        gap: 12px;
        padding: 16px 0;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        justify-self: end;
        border: 1px solid rgba(245, 245, 245, 0.16);
        border-radius: 6px;
        background: linear-gradient(180deg, #24282d, #191c20);
        color: #fff;
        cursor: pointer;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
        transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        display: block;
        border-radius: 10px;
        background: currentColor;
        transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus,
    .mobile-menu-toggle.is-open {
        border-color: rgba(211, 34, 28, 0.7);
        background: linear-gradient(180deg, var(--accent-hi), var(--accent));
        transform: translateY(-1px);
    }

    .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu-panel {
        grid-column: 1 / -1;
        display: none;
        gap: 10px;
        padding: 12px;
        border: 1px solid rgba(245, 245, 245, 0.1);
        border-radius: 8px;
        background: linear-gradient(180deg, #1d2026, #14171b);
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    }

    .mobile-menu-panel.is-open {
        display: grid;
    }

    .mobile-menu-panel .new-main-nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 0;
        padding: 0;
        overflow: visible;
        order: initial;
        font-size: 14px;
    }

    .mobile-menu-panel .new-main-nav > a,
    .mobile-menu-panel .new-main-nav .nav-dropdown-toggle {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 9px 12px;
        border: 1px solid rgba(245, 245, 245, 0.1);
        border-radius: 6px;
        background: linear-gradient(180deg, #202329, #191c21);
        color: var(--text);
        white-space: normal;
    }

    .mobile-menu-panel .nav-dropdown {
        display: grid;
        gap: 8px;
    }

    .mobile-menu-panel .nav-dropdown-menu {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 0;
        padding: 8px;
        border: 1px solid rgba(245, 245, 245, 0.1);
        background: #15171b;
        color: var(--text);
        box-shadow: none;
    }

    .mobile-menu-panel .nav-dropdown-menu a,
    .mobile-menu-panel .nav-dropdown-menu span {
        color: var(--text) !important;
    }

    .mobile-menu-panel .nav-dropdown-menu a:hover,
    .mobile-menu-panel .nav-dropdown-menu a:focus {
        background: rgba(211, 34, 28, 0.16);
        color: #fff !important;
    }

    .mobile-menu-panel .header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 0;
    }

    .mobile-menu-panel .phone {
        min-width: 0;
        padding: 12px;
        border: 1px solid rgba(245, 245, 245, 0.1);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.03);
    }

    .mobile-menu-panel .phone strong {
        font-size: 16px;
    }

    .mobile-menu-panel .btn-small {
        width: 100%;
        min-height: 46px;
    }
}

@media (max-width: 1120px) {
    .contacts-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .contacts-head {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .contacts-head .btn {
        width: 100%;
    }
    .contact-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px;
    }
    .contact-row small {
        grid-column: auto;
    }
    .contacts-note {
        margin: 0 20px 20px;
    }
}

/* Give the content-heavy home slide enough breathing room. */
.hero-slider.home-slider {
    min-height: clamp(620px, 46vw, 680px);
}

.home-slider .slide {
    padding-block: 32px;
}

/* Keep matching listing details on the same horizontal lines. */
.car-grid .inventory-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.car-grid .inventory-card .car-body {
    display: grid;
    grid-template-rows: 66px 27px 54px auto;
    align-content: start;
    gap: 10px;
}

.car-grid .inventory-card .car-body h3,
.car-grid .inventory-card .car-body p {
    margin: 0;
    overflow: hidden;
}

.car-grid .inventory-card .car-body h3 {
    line-height: 1.22;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.car-grid .inventory-card .car-body p {
    line-height: 1.65;
}

.car-grid .inventory-card .car-body p:nth-of-type(2) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.car-grid .inventory-card .car-body strong {
    align-self: start;
    justify-self: start;
}

.service-car-grid .inventory-card .car-body {
    display: flex;
    grid-template-rows: none;
    gap: 0;
}

.service-car-grid .inventory-card .car-body h3 {
    margin-bottom: 10px;
}

.service-car-grid .inventory-card .car-body p {
    margin: 0 0 6px;
}

.service-car-grid .inventory-card .service-card-price strong {
    align-self: stretch;
    justify-self: stretch;
}

@media (max-width: 820px) {
    .hero-slider.home-slider {
        min-height: 640px;
    }

    .home-slider .slide {
        padding-block: 28px;
    }
}

@media (max-width: 560px) {
    .hero-slider.home-slider {
        min-height: 680px;
    }

    .home-slider .slide {
        padding: 24px 0 64px;
    }
}

@media (max-width: 1120px) {
    .import-service.section-narrow {
        width: min(100% - 36px, 1360px);
    }

    .import-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        background-position: center right;
    }

    .import-hero-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-self: auto;
    }

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

    .cost-flow span:not(:last-child)::after {
        display: none;
    }

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

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

    .service-cta-band,
    .service-wide-cta,
    .cost-section,
    .split-section,
    .risk-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .import-service.section-narrow {
        width: min(100% - 24px, 1360px);
    }

    .breadcrumbs {
        border-radius: 8px;
    }

    .import-service .section {
        padding-top: 58px;
    }

    .import-hero {
        padding: 28px 20px;
        background:
            linear-gradient(180deg, rgba(12, 14, 18, 0.98) 0%, rgba(12, 14, 18, 0.86) 62%, rgba(12, 14, 18, 0.94) 100%),
            url("../img/hero-auto-expert.17e13c47b605.png") center bottom / cover no-repeat;
    }

    .import-hero h1 {
        font-size: clamp(31px, 9vw, 42px);
        line-height: 1.05;
    }

    .import-hero p {
        font-size: 16px;
        line-height: 1.62;
    }

    .import-hero-panel,
    .hero-fact-grid,
    .cost-flow,
    .service-icon-grid,
    .service-car-grid,
    .seo-card-grid,
    .seo-step-grid,
    .calculation-grid,
    .seo-link-grid {
        grid-template-columns: 1fr;
    }

    .catalog-showcase,
    .cost-section,
    .service-card-section,
    .risk-section,
    .media-section,
    .service-cta-band,
    .service-wide-cta {
        padding: 24px 18px;
    }

    .service-cta-band .btn,
    .service-wide-cta .btn {
        width: 100%;
    }

    .service-card-actions {
        grid-template-columns: 1fr;
    }

    .service-lead-form {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .service-lead-form input,
    .service-lead-form select,
    .service-lead-form textarea {
        font-size: 16px;
    }
}

/* Final readability pass for the import service landing. */
.import-service .service-link-section .seo-chip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.import-service .cost-flow {
    grid-template-columns: 1fr;
}

.import-service .process-section .seo-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1120px) {
    .import-service .service-link-section .seo-chip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .import-service .calculation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .import-service .service-link-section .seo-chip-grid,
    .import-service .process-section .seo-step-grid,
    .import-service .cost-parts {
        grid-template-columns: 1fr;
    }

    .import-service .process-section .seo-step-grid article {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 18px 0;
    }

    .import-service .calculation-grid article {
        padding: 22px 18px;
    }

    .import-service .calculation-grid article div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .import-service .calculation-grid article div strong {
        text-align: left;
        white-space: normal;
    }
}

/* Import landing reset: keep it readable, not card-heavy. */
.import-service {
    width: min(100% - 64px, 1240px);
}

.import-service .section {
    padding-top: 86px;
}

.import-service .section-label {
    margin-bottom: 12px;
    color: #ff3b35;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.import-service h2 {
    max-width: 840px;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
}

.import-service p {
    max-width: 760px;
    color: #c8d0dc;
    font-size: 16px;
    line-height: 1.72;
}

.import-hero {
    min-height: 520px;
    align-items: center;
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(90deg, rgba(15, 17, 21, 0.98) 0%, rgba(15, 17, 21, 0.9) 50%, rgba(15, 17, 21, 0.45) 100%),
        url("../img/hero-auto-expert.17e13c47b605.png") center right / cover no-repeat;
    box-shadow: none;
}

.import-hero::before {
    display: none;
}

.import-hero h1 {
    max-width: 620px;
    margin: 14px 0 18px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
}

.import-hero .hero-trust-line {
    margin: 0 0 12px;
    color: #f3f6fb;
    font-size: 18px;
}

.import-hero p:not(.hero-trust-line) {
    max-width: 620px;
    color: #c8d0dc;
    font-size: 17px;
}

.import-hero-panel {
    align-self: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.hero-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.hero-fact-grid strong {
    min-height: 0;
    padding: 0 0 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
    font-size: 18px;
}

.import-hero-panel > span {
    min-height: 0;
    display: block;
    padding: 9px 0 9px 20px;
    border-radius: 0;
    background: transparent;
    color: #d9e0ea;
    font-size: 15px;
    font-weight: 600;
}

.import-hero-panel > span::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    margin: 0 12px 2px -18px;
    border-radius: 50%;
    background: #ff332d;
}

.service-simple-section .seo-card-grid,
.service-simple-section .seo-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 42px;
}

.service-simple-section .seo-card-grid article,
.service-simple-section .seo-step-grid article {
    min-height: 0;
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.service-simple-section .seo-card-grid article::before,
.service-simple-section .seo-step-grid article::before {
    display: none;
}

.service-simple-section .seo-card-grid article:hover,
.service-simple-section .seo-step-grid article:hover {
    transform: none;
    border-bottom-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.service-simple-section .seo-step-grid article > span {
    width: auto;
    height: auto;
    display: block;
    margin: 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ff3b35;
    font-size: 13px;
    font-weight: 900;
}

.service-simple-section .seo-card-grid h3,
.service-simple-section .seo-step-grid h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.service-simple-section .seo-card-grid p,
.service-simple-section .seo-step-grid p {
    margin: 0;
    color: #aeb8c6;
    font-size: 15px;
}

.catalog-showcase,
.media-section {
    padding: 0;
    border: 0;
    background: transparent;
}

.catalog-showcase .section-head {
    margin-bottom: 28px;
}

.service-car-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-car-grid .inventory-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #171b21;
    box-shadow: none;
}

.service-car-grid .inventory-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.service-car-grid .inventory-photo {
    aspect-ratio: 16 / 10.5;
}

.service-car-grid .car-body {
    padding: 18px;
}

.service-badge-row {
    display: none;
}

.service-car-grid .car-body h3 {
    min-height: 0;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.25;
}

.service-car-grid .car-body p {
    color: #aeb8c6;
    font-size: 14px;
}

.service-card-price {
    margin-top: 14px;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
}

.service-card-price span {
    color: #9da8b7;
    font-size: 13px;
}

.service-card-price strong {
    margin-top: 4px;
    font-size: 22px;
}

.service-card-actions {
    grid-template-columns: 1fr 1fr;
}

.service-card-actions .btn {
    min-height: 38px;
    font-size: 13px;
}

.service-price-note {
    margin-top: 22px;
    padding: 0 0 0 18px;
    border: 0;
    border-left: 2px solid rgba(255, 51, 45, 0.75);
    border-radius: 0;
    background: transparent;
    color: #aeb8c6;
}

.service-cta-band,
.service-wide-cta {
    padding: 26px 30px;
    border: 1px solid rgba(255, 51, 45, 0.22);
    background: #191d23;
    box-shadow: none;
}

.service-cta-band h2,
.service-wide-cta h2 {
    font-size: clamp(24px, 2.3vw, 34px);
}

.service-link-section .seo-chip-grid {
    gap: 8px 32px;
}

.cost-section {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #171b21;
    box-shadow: none;
}

.service-lead-form {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #111419;
    box-shadow: none;
}

.service-lead-form input,
.service-lead-form select,
.service-lead-form textarea {
    border-color: rgba(255, 255, 255, 0.1);
    background: #0c0f14;
}

.calculation-grid {
    gap: 18px;
}

.calculation-grid article {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #171b21;
    box-shadow: none;
}

.calculation-grid article::before {
    display: none;
}

.service-card-section,
.risk-section {
    padding: 0;
    border: 0;
    background: transparent;
}

.split-section,
.risk-section {
    gap: 54px;
}

.service-check-list {
    padding: 0;
    border: 0;
    background: transparent;
}

.service-check-list li {
    padding: 10px 0 10px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #c8d0dc;
}

.service-check-list li::marker {
    color: #ff332d;
}

.risk-section > div:first-child .service-check-list,
.risk-section > div:last-child .service-check-list {
    border: 0;
    background: transparent;
}

.media-section .portfolio-card,
.media-section .review-card,
.media-section .video-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #171b21;
    box-shadow: none;
}

.import-service .faq-list details {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
}

.import-service .faq-list summary {
    padding: 18px 0;
}

.import-service .faq-list p {
    padding: 0 0 22px;
    color: #aeb8c6;
}

.final-benefits span {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #c8d0dc;
}

@media (max-width: 1120px) {
    .import-service {
        width: min(100% - 36px, 1240px);
    }

    .service-car-grid,
    .service-simple-section .seo-card-grid,
    .service-simple-section .seo-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .import-service {
        width: min(100% - 24px, 1240px);
    }

    .import-service .section {
        padding-top: 58px;
    }

    .import-hero {
        padding: 28px 20px;
    }

    .hero-fact-grid,
    .service-car-grid,
    .service-simple-section .seo-card-grid,
    .service-simple-section .seo-step-grid {
        grid-template-columns: 1fr;
    }

    .cost-section,
    .service-cta-band,
    .service-wide-cta {
        padding: 22px 18px;
    }
}

/* Reusable premium service template components. */
.service-template {
    --svc-bg: #0a0f16;
    --svc-surface: #111823;
    --svc-surface-2: #151d29;
    --svc-line: rgba(255, 255, 255, 0.08);
    --svc-line-hot: rgba(255, 59, 48, 0.35);
    --svc-text: rgba(255, 255, 255, 0.84);
    --svc-muted: rgba(255, 255, 255, 0.62);
    --svc-red: #d71916;
    --svc-red-hi: #ff3b35;
    width: min(100% - 48px, 1280px);
    isolation: isolate;
}

.service-template .section {
    padding-top: clamp(86px, 8vw, 112px);
}

.service-template .section-head {
    margin-bottom: 32px;
}

.service-template .section-label {
    color: var(--svc-red-hi);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-template h1 {
    font-weight: 800;
    letter-spacing: 0;
}

.service-template h2 {
    max-width: 880px;
    color: #fff;
    font-size: clamp(38px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.service-template h3 {
    color: #fff;
    font-size: clamp(21px, 2vw, 26px);
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: 0;
}

.service-template p {
    color: var(--svc-text);
    font-size: 17px;
    line-height: 1.65;
}

.service-hero {
    min-height: 620px;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
    gap: clamp(28px, 5vw, 70px);
    padding: clamp(42px, 6vw, 72px);
    border: 1px solid var(--svc-line);
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(10, 15, 22, 0.98) 0%, rgba(10, 15, 22, 0.88) 48%, rgba(10, 15, 22, 0.42) 100%),
        radial-gradient(circle at 86% 28%, rgba(255, 59, 48, 0.22), transparent 24%),
        url("../img/hero-auto-expert.17e13c47b605.png") center right / cover no-repeat;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}

.service-hero h1 {
    max-width: 720px;
    margin: 14px 0 18px;
    font-size: clamp(48px, 5.4vw, 68px);
    line-height: 1;
}

.service-hero .hero-trust-line {
    max-width: 650px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.service-hero p:not(.hero-trust-line) {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.service-hero .hero-actions {
    margin-top: 32px;
    gap: 14px;
}

.service-hero .btn {
    min-height: 54px;
    border-radius: 14px;
}

.service-hero .btn:first-child,
.service-lead-form .btn,
.service-final-cta .btn {
    box-shadow: 0 14px 30px rgba(215, 25, 22, 0.34);
}

.service-template .btn {
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.service-template .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(215, 25, 22, 0.28);
}

.service-template .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
}

.service-hero-card {
    align-self: center;
    padding: 26px;
    border: 1px solid var(--svc-line);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
        rgba(13, 18, 26, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.hero-panel-title {
    display: block;
    margin-bottom: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-hero-card .hero-fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.service-hero-card .hero-fact-grid strong {
    min-height: 82px;
    display: flex;
    align-items: end;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    font-size: 19px;
    line-height: 1.15;
}

.service-hero-card > span:not(.hero-panel-title) {
    display: block;
    padding: 11px 0 11px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    font-weight: 650;
}

.service-hero-card > span:not(.hero-panel-title)::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    margin: 0 10px 2px -16px;
    border-radius: 50%;
    background: var(--svc-red-hi);
}

.service-section--commercial,
.cost-section,
.service-final-cta {
    border-radius: 24px;
}

.service-simple-section .seo-card-grid,
.service-simple-section .seo-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-simple-section .seo-card-grid article,
.service-simple-section .seo-step-grid article,
.process-section .seo-step-grid article {
    position: relative;
    min-height: 210px;
    padding: 26px;
    border: 1px solid var(--svc-line);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        var(--svc-surface);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-simple-section .seo-card-grid article::before,
.service-simple-section .seo-step-grid article::before {
    content: "";
    width: 40px;
    height: 3px;
    display: block;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--svc-red-hi), rgba(255, 255, 255, 0.16));
}

.service-simple-section .seo-card-grid article:hover,
.service-simple-section .seo-step-grid article:hover,
.process-section .seo-step-grid article:hover,
.service-car-grid .inventory-card:hover,
.calculation-grid article:hover,
.media-section .video-card:hover,
.media-section .portfolio-card:hover {
    transform: translateY(-3px);
    border-color: var(--svc-line-hot);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.service-simple-section .seo-step-grid article > span,
.process-section .seo-step-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 59, 48, 0.28);
    border-radius: 14px;
    background: rgba(255, 59, 48, 0.08);
    color: var(--svc-red-hi);
    font-size: 14px;
    font-weight: 900;
}

.service-simple-section p,
.process-section p {
    color: var(--svc-muted);
    font-size: 16px;
}

.catalog-showcase {
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid var(--svc-line);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 44%),
        var(--svc-surface);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.service-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
}

.service-filter-row span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid var(--svc-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 750;
}

.service-car-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-car-grid .inventory-card {
    overflow: hidden;
    border: 1px solid var(--svc-line);
    border-radius: 20px;
    background: #0f151f;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.service-car-grid .inventory-photo {
    aspect-ratio: 16 / 11;
}

.service-car-grid .car-body {
    padding: 20px;
}

.service-car-grid .car-body h3 {
    min-height: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.service-car-grid .car-body p {
    margin: 0 0 6px;
    color: var(--svc-muted);
    font-size: 14px;
}

.service-badge-row {
    display: flex;
    gap: 7px;
    margin-bottom: 12px;
}

.service-badge-row span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 59, 48, 0.11);
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
    font-weight: 850;
}

.service-card-price {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.service-card-price span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.service-card-price strong {
    color: #fff;
    font-size: 24px;
}

.service-card-price strong small {
    color: var(--svc-red-hi);
}

.service-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.service-card-actions .btn {
    min-height: 42px;
    border-radius: 12px;
}

.service-price-note {
    margin: 24px 0 0;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-left: 3px solid var(--svc-red-hi);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--svc-muted);
    font-size: 15px;
}

.cost-section {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
    padding: clamp(32px, 5vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.095);
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 59, 48, 0.16), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 46%),
        #101722;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.cost-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 28px 0 24px;
    border-left: 1px solid rgba(255, 59, 48, 0.5);
}

.cost-flow span {
    position: relative;
    min-height: 0;
    padding: 8px 0 8px 22px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 750;
}

.cost-flow span::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 16px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--svc-red-hi);
}

.cost-parts {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.cost-parts span,
.seo-chip-grid a,
.seo-chip-grid span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid var(--svc-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
}

.service-lead-form {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.095);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        #0d121b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.service-form-head {
    grid-column: 1 / -1;
    margin-bottom: 4px;
}

.service-form-head h3 {
    margin: 6px 0 8px;
    font-size: 26px;
}

.service-form-head p {
    margin: 0;
    color: var(--svc-muted);
    font-size: 15px;
}

.service-lead-form input,
.service-lead-form select,
.service-lead-form textarea {
    min-height: 50px;
    border-radius: 14px;
    border-color: rgba(255, 255, 255, 0.1);
    background: #090d13;
}

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

.calculation-grid article {
    padding: 26px;
    border: 1px solid var(--svc-line);
    border-radius: 20px;
    background: var(--svc-surface);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.calculation-grid article::before {
    display: none;
}

.calculation-grid article div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.calculation-grid article div:last-child {
    margin-top: 10px;
    padding: 18px;
    border: 1px solid rgba(255, 59, 48, 0.22);
    border-radius: 16px;
    background: rgba(255, 59, 48, 0.075);
}

.calculation-grid article div strong {
    color: #fff;
    text-align: right;
}

.process-section .seo-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card-section,
.risk-section {
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid var(--svc-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.025);
}

.service-check-list {
    padding: 0;
    border: 0;
    background: transparent;
}

.service-check-list li {
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
}

.risk-section > div:last-child {
    padding: 24px;
    border: 1px solid rgba(70, 220, 130, 0.18);
    border-radius: 20px;
    background: rgba(70, 220, 130, 0.045);
}

.media-section {
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid var(--svc-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.022);
}

.media-section .portfolio-card,
.media-section .video-card {
    overflow: hidden;
    border: 1px solid var(--svc-line);
    border-radius: 20px;
    background: var(--svc-surface);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.media-section .video-card-media,
.media-section .portfolio-card-photo {
    aspect-ratio: 16 / 10;
    min-height: 0;
}

.service-faq-section .faq-list {
    gap: 12px;
}

.service-faq-section .faq-list details {
    border: 1px solid var(--svc-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
}

.service-faq-section .faq-list details[open] {
    border-color: rgba(255, 59, 48, 0.24);
    background: rgba(255, 255, 255, 0.04);
}

.service-faq-section .faq-list summary {
    min-height: 72px;
    padding: 22px 24px;
}

.service-faq-section .faq-list p {
    max-width: 960px;
    padding: 0 24px 24px;
    color: var(--svc-muted);
    font-size: 16px;
}

.service-wide-cta {
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(255, 59, 48, 0.24);
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 20%, rgba(255, 59, 48, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 44%),
        #111823;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.service-final-cta h2 {
    font-size: clamp(34px, 4vw, 48px);
}

.final-benefits {
    gap: 12px;
}

.final-benefits span {
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid var(--svc-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1120px) {
    .service-template {
        width: min(100% - 40px, 1280px);
    }

    .service-hero,
    .cost-section,
    .split-section,
    .risk-section {
        grid-template-columns: 1fr;
    }

    .service-simple-section .seo-card-grid,
    .service-simple-section .seo-step-grid,
    .process-section .seo-step-grid,
    .service-car-grid,
    .calculation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .service-template {
        width: min(100% - 32px, 1280px);
    }

    .service-template .section {
        padding-top: 68px;
    }

    .service-hero {
        min-height: 0;
        padding: 28px 20px;
        background:
            linear-gradient(180deg, rgba(10, 15, 22, 0.98), rgba(10, 15, 22, 0.86)),
            url("../img/hero-auto-expert.17e13c47b605.png") center bottom / cover no-repeat;
    }

    .service-hero h1 {
        font-size: clamp(36px, 10vw, 46px);
    }

    .service-hero .hero-actions,
    .service-card-actions {
        grid-template-columns: 1fr;
    }

    .service-hero-card .hero-fact-grid,
    .service-simple-section .seo-card-grid,
    .service-simple-section .seo-step-grid,
    .process-section .seo-step-grid,
    .service-car-grid,
    .calculation-grid {
        grid-template-columns: 1fr;
    }

    .catalog-showcase,
    .cost-section,
    .service-card-section,
    .risk-section,
    .media-section,
    .service-wide-cta {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .calculation-grid article div {
        grid-template-columns: 1fr;
    }

    .calculation-grid article div strong {
        text-align: left;
    }
}

/* China import landing redesign */
.service-template.import-service.section-narrow,
.service-template.import-service {
    width: min(100% - 48px, 1280px);
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 0;
}

.service-template {
    --svc-bg: #080c12;
    --svc-panel: #111923;
    --svc-panel-soft: #17212d;
    --svc-border: rgba(255, 255, 255, 0.1);
    --svc-border-strong: rgba(255, 255, 255, 0.16);
    --svc-copy: rgba(255, 255, 255, 0.84);
    --svc-muted: rgba(255, 255, 255, 0.62);
    --svc-red: #e51f1f;
    --svc-red-soft: rgba(229, 31, 31, 0.16);
    --svc-green: #52d98a;
    color: #fff;
}

.service-template .section {
    margin-top: 96px;
    padding-top: 0;
}

.service-template .section-head,
.service-template h2 {
    margin-bottom: 32px;
}

.service-template h1 {
    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.95;
    letter-spacing: 0;
}

.service-template h2,
.service-template .section-head h2,
.cost-section h2 {
    font-size: clamp(36px, 3.2vw, 52px);
    line-height: 1.05;
    letter-spacing: 0;
}

.service-template h3 {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0;
}

.service-template p,
.service-template li {
    font-size: 17px;
    line-height: 1.65;
}

.service-template .section-label {
    color: #ff4a45;
    letter-spacing: 0.08em;
}

.service-hero.import-hero {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 56px;
    margin-top: 18px;
    padding: clamp(48px, 5.8vw, 72px);
    border: 1px solid var(--svc-border);
    border-radius: 32px;
    background:
        linear-gradient(90deg, rgba(7, 10, 15, 0.97) 0%, rgba(7, 10, 15, 0.82) 48%, rgba(7, 10, 15, 0.58) 100%),
        radial-gradient(circle at 82% 18%, rgba(229, 31, 31, 0.34), transparent 34%),
        url("../img/hero-auto-expert.17e13c47b605.png") center right / cover no-repeat;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.service-hero h1 {
    max-width: 760px;
    margin: 14px 0 18px;
}

.service-hero .hero-trust-line {
    max-width: 720px;
    color: #fff;
    font-size: 19px;
    font-weight: 850;
}

.service-hero p:not(.hero-trust-line) {
    max-width: 700px;
    font-size: 18px;
}

.service-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-fact-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.hero-fact-strip strong {
    min-height: 86px;
    display: flex;
    align-items: end;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.065);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 18px;
    line-height: 1.15;
}

.service-hero-card {
    display: grid;
    gap: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-calc-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        rgba(12, 17, 24, 0.9);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
}

.hero-calc-form .hero-panel-title,
.hero-calc-form .privacy-consent,
.hero-calc-form button {
    grid-column: 1 / -1;
}

.hero-calc-form input,
.service-lead-form input,
.service-lead-form select,
.service-lead-form textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(5, 8, 12, 0.78);
    color: #fff;
}

.hero-calc-form .btn,
.service-lead-form .btn,
.service-template .btn {
    min-height: 52px;
    border-radius: 14px;
    font-weight: 850;
}

.hero-trust-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-trust-stack span {
    min-height: 76px;
    display: flex;
    align-items: center;
    padding: 16px 16px 16px 42px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
    position: relative;
}

.hero-trust-stack span::before {
    content: "";
    position: absolute;
    left: 18px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--svc-red);
    box-shadow: 0 0 0 6px rgba(229, 31, 31, 0.14);
}

.service-section--info {
    background: transparent;
}

.service-simple-section .seo-card-grid,
.service-simple-section .seo-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-simple-section .seo-card-grid article {
    min-height: 205px;
    padding: 28px;
    border: 1px solid var(--svc-border);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        rgba(14, 21, 30, 0.78);
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.18);
}

.service-simple-section .seo-card-grid article::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--svc-red), rgba(255, 255, 255, 0.2));
}

.service-simple-section .seo-card-grid article:hover,
.service-simple-section .seo-step-grid article:hover,
.process-section .seo-step-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 31, 31, 0.38);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.service-simple-section .seo-step-grid,
.process-section .seo-step-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.service-simple-section .seo-step-grid::before,
.process-section .seo-step-grid::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 31, 31, 0.42), transparent);
}

.service-simple-section .seo-step-grid article,
.process-section .seo-step-grid article {
    position: relative;
    min-height: 230px;
    padding: 30px;
    border: 1px solid var(--svc-border);
    border-radius: 22px;
    background: rgba(12, 18, 26, 0.92);
}

.service-simple-section .seo-step-grid article > span,
.process-section .seo-step-grid article > span {
    width: auto;
    height: auto;
    display: block;
    margin-bottom: 26px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.16);
    font-size: 54px;
    line-height: 0.85;
    font-weight: 900;
}

.catalog-showcase,
.cost-section,
.service-section--commercial:not(.service-wide-cta) {
    padding: clamp(48px, 5vw, 64px);
    border: 1px solid var(--svc-border);
    border-radius: 32px;
    background:
        radial-gradient(circle at 86% 12%, rgba(229, 31, 31, 0.2), transparent 30%),
        linear-gradient(135deg, rgba(28, 35, 46, 0.96), rgba(10, 14, 21, 0.98));
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.catalog-showcase .section-head,
.media-section .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.catalog-showcase .section-head > a,
.media-section .section-head > a {
    flex: 0 0 auto;
    color: #fff;
    font-weight: 850;
}

.service-filter-row {
    margin-bottom: 32px;
}

.service-filter-row span {
    min-height: 40px;
    padding: 8px 14px;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.06);
}

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

.service-car-grid .inventory-card {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(28, 35, 46, 0.96), rgba(12, 17, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.service-car-grid .inventory-photo {
    height: 245px;
    aspect-ratio: auto;
}

.service-car-grid .inventory-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-car-grid .car-body {
    padding: 24px;
}

.service-car-grid .car-body h3 {
    font-size: 23px;
}

.service-card-price {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    margin-top: 18px;
}

.service-card-price strong {
    display: block;
    margin-top: 6px;
    font-size: 24px;
    line-height: 1.1;
    color: #fff;
}

.service-card-price strong small {
    display: block;
    margin-bottom: 5px;
    color: #ff4a45;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.service-link-section {
    padding: 0;
}

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

.seo-category-grid a {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border: 1px solid var(--svc-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
}

.seo-category-grid span {
    color: var(--svc-muted);
    font-size: 15px;
    line-height: 1.5;
}

.model-chip-grid .model-chip-extra {
    display: none;
}

.model-chip-grid.is-expanded .model-chip-extra {
    display: inline-flex;
}

.model-more-button {
    min-height: 44px;
    margin-top: 18px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
}

.cost-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 430px;
    gap: 48px;
    align-items: start;
}

.cost-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 34px 0 24px;
    border: 0;
}

.cost-flow span {
    position: relative;
    min-height: 92px;
    display: flex;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    font-weight: 800;
}

.cost-flow span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    width: 10px;
    height: 1px;
    background: rgba(229, 31, 31, 0.55);
}

.cost-flow span::before {
    content: "";
    position: static;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    margin-right: 10px;
    border-radius: 999px;
    background: var(--svc-red);
}

.service-lead-form {
    display: grid;
    gap: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background:
        radial-gradient(circle at 0 0, rgba(229, 31, 31, 0.18), transparent 34%),
        rgba(8, 12, 18, 0.94);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.3);
}

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

.calculation-grid article {
    padding: 28px;
    border: 1px solid var(--svc-border);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.calculation-grid article h3 {
    margin-bottom: 18px;
}

.calculation-grid article div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.calculation-grid article div strong {
    color: #fff;
    text-align: right;
}

.calculation-grid article div:last-child {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid rgba(229, 31, 31, 0.32);
    border-radius: 18px;
    background: rgba(229, 31, 31, 0.13);
}

.risk-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 0;
    border: 0;
    background: transparent;
}

.risk-section > div {
    padding: 34px;
    border: 1px solid rgba(229, 31, 31, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at 0 0, rgba(229, 31, 31, 0.16), transparent 34%),
        rgba(18, 20, 26, 0.86);
}

.risk-section > div:last-child {
    border-color: rgba(82, 217, 138, 0.28);
    background:
        radial-gradient(circle at 100% 0, rgba(82, 217, 138, 0.14), transparent 34%),
        rgba(14, 24, 22, 0.9);
}

.risk-section .service-check-list li {
    position: relative;
    padding-left: 28px;
}

.risk-section .service-check-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    top: 11px;
    color: #ff4a45;
    font-weight: 900;
}

.risk-section > div:last-child .service-check-list li::before {
    content: "";
    width: 11px;
    height: 6px;
    top: 18px;
    border-left: 2px solid var(--svc-green);
    border-bottom: 2px solid var(--svc-green);
    transform: rotate(-45deg);
}

.media-section {
    padding: clamp(48px, 5vw, 64px);
    border: 1px solid var(--svc-border);
    border-radius: 32px;
    background:
        radial-gradient(circle at 8% 0, rgba(255, 255, 255, 0.08), transparent 30%),
        rgba(11, 16, 23, 0.86);
}

.media-section .video-card,
.media-section .portfolio-card {
    border-radius: 24px;
}

.media-section .video-card-media,
.media-section .portfolio-card-photo {
    min-height: 235px;
    aspect-ratio: 16 / 10;
}

.video-card-media--fallback > a {
    min-height: 235px;
    background:
        linear-gradient(180deg, rgba(5, 8, 13, 0.16), rgba(5, 8, 13, 0.82)),
        radial-gradient(circle at 72% 24%, rgba(229, 31, 31, 0.32), transparent 30%),
        url("../img/hero-auto-expert.17e13c47b605.png") center / cover no-repeat;
}

.video-card-media--fallback .video-fallback-title {
    max-width: 82%;
    color: #fff;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 850;
    text-align: left;
}

.video-card-media .video-play {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(229, 31, 31, 0.95);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.service-faq-section {
    padding: clamp(48px, 5vw, 64px);
    border: 1px solid var(--svc-border);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.035);
}

.service-faq-section .faq-list {
    display: grid;
    gap: 14px;
}

.service-faq-section .faq-list details {
    border: 1px solid var(--svc-border);
    border-radius: 20px;
    background: rgba(10, 15, 22, 0.68);
    overflow: hidden;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.service-faq-section .faq-list details[open] {
    border-color: rgba(229, 31, 31, 0.46);
    background: rgba(255, 255, 255, 0.065);
}

.service-faq-section .faq-list summary {
    min-height: 78px;
    display: flex;
    align-items: center;
    padding: 22px 26px;
    cursor: pointer;
}

.service-faq-section .faq-list summary h3 {
    margin: 0;
}

.service-faq-section .faq-list p {
    max-width: 980px;
    padding: 0 26px 26px;
    font-size: 17px;
    line-height: 1.65;
}

.service-wide-cta {
    min-height: 220px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    margin-top: 96px;
    padding: clamp(38px, 5vw, 58px);
    border: 1px solid rgba(229, 31, 31, 0.3);
    border-radius: 32px;
    background:
        radial-gradient(circle at 86% 22%, rgba(229, 31, 31, 0.26), transparent 30%),
        linear-gradient(135deg, rgba(29, 36, 47, 0.98), rgba(9, 13, 19, 0.98));
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.32);
}

.service-final-cta h2 {
    max-width: 760px;
    margin-bottom: 14px;
}

.final-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.final-benefits span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

@media (max-width: 1120px) {
    .service-template.import-service.section-narrow,
    .service-template.import-service {
        width: min(100% - 40px, 1280px);
    }

    .service-hero.import-hero,
    .cost-section,
    .risk-section,
    .service-wide-cta {
        grid-template-columns: 1fr;
    }

    .service-hero.import-hero {
        gap: 32px;
    }

    .hero-fact-strip,
    .service-car-grid,
    .calculation-grid,
    .seo-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 767.98px) {
    .service-template.import-service.section-narrow,
    .service-template.import-service {
        width: min(100% - 28px, 1280px);
    }

    .service-template .section,
    .service-wide-cta {
        margin-top: 72px;
    }

    .service-hero.import-hero {
        min-height: 0;
        padding: 28px 20px;
        border-radius: 24px;
        background:
            linear-gradient(180deg, rgba(7, 10, 15, 0.98), rgba(7, 10, 15, 0.86)),
            radial-gradient(circle at 72% 18%, rgba(229, 31, 31, 0.22), transparent 36%),
            url("../img/hero-auto-expert.17e13c47b605.png") center bottom / cover no-repeat;
    }

    .service-template h1 {
        font-size: clamp(36px, 11vw, 46px);
        line-height: 1;
    }

    .service-template h2,
    .service-template .section-head h2,
    .cost-section h2 {
        font-size: clamp(30px, 9vw, 38px);
    }

    .service-hero .hero-actions,
    .service-card-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-fact-strip,
    .hero-calc-form,
    .hero-trust-stack,
    .service-simple-section .seo-card-grid,
    .service-simple-section .seo-step-grid,
    .process-section .seo-step-grid,
    .service-car-grid,
    .calculation-grid,
    .seo-category-grid,
    .cost-flow {
        grid-template-columns: 1fr;
    }

    .service-simple-section .seo-step-grid::before,
    .process-section .seo-step-grid::before,
    .cost-flow span:not(:last-child)::after {
        display: none;
    }

    .catalog-showcase,
    .cost-section,
    .service-section--commercial:not(.service-wide-cta),
    .media-section,
    .service-faq-section,
    .service-wide-cta {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .catalog-showcase .section-head,
    .media-section .section-head {
        display: grid;
    }

    .service-car-grid .inventory-photo,
    .media-section .video-card-media,
    .media-section .portfolio-card-photo,
    .video-card-media--fallback > a {
        min-height: 220px;
        height: 220px;
    }

    .calculation-grid article div {
        grid-template-columns: 1fr;
    }

    .calculation-grid article div strong {
        text-align: left;
    }
}

/* Import service readability repair */
.service-template.import-service .catalog-showcase {
    padding: clamp(54px, 5vw, 72px);
}

.service-template.import-service .service-car-grid {
    align-items: stretch;
}

.service-template.import-service .service-car-grid .inventory-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-template.import-service .service-car-grid .inventory-card > a {
    display: block;
    flex: 0 0 auto;
}

.service-template.import-service .service-car-grid .car-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 26px 24px 24px;
}

.service-template.import-service .service-badge-row {
    min-height: 28px;
    align-items: flex-start;
}

.service-template.import-service .service-car-grid .car-body h3 {
    min-height: 88px;
    margin: 0 0 16px;
    font-size: 23px;
    line-height: 1.22;
}

.service-template.import-service .service-car-grid .car-body p {
    min-height: 24px;
    margin: 0 0 8px;
    line-height: 1.45;
}

.service-template.import-service .service-card-price {
    margin-top: auto;
    padding: 20px;
}

.service-template.import-service .service-card-actions {
    margin-top: 18px;
}

.service-template.import-service .service-price-note {
    width: 100%;
    max-width: none;
    padding: 24px 28px;
    font-size: 17px;
    line-height: 1.7;
}

.service-template.import-service .service-cta-band,
.service-template.import-service .service-card-section,
.service-template.import-service .split-section,
.service-template.import-service .risk-section > div,
.service-template.import-service .media-section {
    padding: clamp(42px, 4.5vw, 64px);
}

.service-template.import-service .process-section .seo-step-grid,
.service-template.import-service .service-simple-section .seo-step-grid {
    align-items: stretch;
    gap: 28px;
}

.service-template.import-service .process-section .seo-step-grid article,
.service-template.import-service .service-simple-section .seo-step-grid article {
    display: block;
    min-width: 0;
    min-height: 250px;
    padding: 34px 34px 38px;
}

.service-template.import-service .process-section .seo-step-grid article > span,
.service-template.import-service .service-simple-section .seo-step-grid article > span {
    display: block;
    margin: 0 0 18px;
}

.service-template.import-service .process-section .seo-step-grid h3,
.service-template.import-service .service-simple-section .seo-step-grid h3 {
    margin: 0 0 22px;
}

.service-template.import-service .process-section .seo-step-grid p,
.service-template.import-service .service-simple-section .seo-step-grid p,
.service-template.import-service .split-section p,
.service-template.import-service .risk-section p {
    width: auto;
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.7;
    overflow-wrap: normal;
    word-break: normal;
}

.service-template.import-service .split-section {
    align-items: start;
    gap: 64px;
}

.service-template.import-service .split-section > div,
.service-template.import-service .split-section > ul {
    min-width: 0;
}

.service-template.import-service .split-section h2,
.service-template.import-service .risk-section h2 {
    margin-top: 12px;
    margin-bottom: 28px;
}

.service-template.import-service .service-check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
}

.service-template.import-service .service-check-list li {
    display: block;
    position: relative;
    width: 100%;
    max-width: none;
    padding: 18px 0 18px 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.6;
    overflow-wrap: normal;
    word-break: normal;
}

.service-template.import-service .service-check-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 27px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--svc-red);
}

.service-template.import-service .risk-section {
    align-items: stretch;
}

.service-template.import-service .risk-section > div {
    display: grid;
    grid-template-rows: 310px 1fr;
    height: 100%;
}

.service-template.import-service .risk-card-head {
    display: flex;
    flex-direction: column;
}

.service-template.import-service .risk-card-head h2 {
    margin-top: 28px;
    margin-bottom: 0;
}

.service-template.import-service .risk-section .service-check-list {
    display: grid;
    grid-auto-rows: 1fr;
    align-self: stretch;
}

.service-template.import-service .risk-section .service-check-list li {
    display: flex;
    align-items: center;
    min-height: 0;
}

.service-template.import-service .risk-section .service-check-list li::before {
    content: "!";
    top: 17px;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #ff4a45;
    font-weight: 900;
}

.service-template.import-service .risk-section > div:last-child .service-check-list li::before {
    content: "";
    top: 26px;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--svc-green);
    border-bottom: 2px solid var(--svc-green);
    background: transparent;
    transform: rotate(-45deg);
}

.service-template.import-service .media-section .video-grid,
.service-template.import-service .media-section .portfolio-grid {
    gap: 28px;
}

.service-template.import-service .media-section .video-card-body {
    padding: 26px;
}

.service-template.import-service .media-section .video-card h3 {
    min-height: 92px;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.18;
}

.service-template.import-service .video-card-media--fallback .video-fallback-title {
    left: 92px;
    right: 22px;
    bottom: 30px;
    max-width: none;
}

@media (max-width: 1120px) {
    .service-template.import-service .service-car-grid .car-body h3,
    .service-template.import-service .media-section .video-card h3 {
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    .service-template.import-service .catalog-showcase,
    .service-template.import-service .service-cta-band,
    .service-template.import-service .service-card-section,
    .service-template.import-service .split-section,
    .service-template.import-service .risk-section > div,
    .service-template.import-service .media-section {
        padding: 28px 20px;
    }

    .service-template.import-service .service-car-grid .car-body h3,
    .service-template.import-service .service-car-grid .car-body p {
        min-height: 0;
    }

    .service-template.import-service .process-section .seo-step-grid article,
    .service-template.import-service .service-simple-section .seo-step-grid article {
        min-height: 0;
        padding: 28px 22px;
    }

    .service-template.import-service .service-price-note {
        padding: 20px;
    }

    .service-template.import-service .risk-section > div {
        grid-template-rows: auto 1fr;
    }
}

.site-header .hero-slider:not(.home-slider):not(.catalog-slider) {
    display: none;
}

/* Import service content polish: keep service styling inside cards and prevent cramped text. */
.service-template.import-service,
.service-template.import-service * {
    min-width: 0;
}

.service-template.import-service h1,
.service-template.import-service h2,
.service-template.import-service h3,
.service-template.import-service p,
.service-template.import-service li,
.service-template.import-service a,
.service-template.import-service span,
.service-template.import-service strong {
    overflow-wrap: anywhere;
}

.service-template.import-service .section {
    scroll-margin-top: 28px;
}

.service-template.import-service .service-hero.import-hero,
.service-template.import-service .catalog-showcase,
.service-template.import-service .service-cta-band,
.service-template.import-service .service-card-section,
.service-template.import-service .split-section,
.service-template.import-service .risk-section > div,
.service-template.import-service .media-section,
.service-template.import-service .service-faq-section,
.service-template.import-service .service-wide-cta {
    overflow: hidden;
}

.service-template.import-service .service-hero.import-hero {
    align-items: center;
}

.service-template.import-service .hero-fact-strip {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    align-items: stretch;
}

.service-template.import-service .hero-fact-strip strong {
    min-height: 78px;
    display: flex;
    align-items: center;
    padding: 18px 20px;
    line-height: 1.25;
}

.service-template.import-service .hero-calc-form {
    align-items: stretch;
}

.service-template.import-service .hero-calc-form input,
.service-template.import-service .service-lead-form input,
.service-template.import-service .service-lead-form select,
.service-template.import-service .service-lead-form textarea {
    min-height: 52px;
    padding: 0 16px;
    line-height: 1.35;
}

.service-template.import-service .service-lead-form textarea {
    min-height: 118px;
    padding-top: 14px;
    resize: vertical;
}

.service-template.import-service .service-simple-section .seo-card-grid article,
.service-template.import-service .service-simple-section .seo-step-grid article,
.service-template.import-service .process-section .seo-step-grid article,
.service-template.import-service .calculation-grid article,
.service-template.import-service .seo-category-grid a,
.service-template.import-service .seo-link-grid a {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(26px, 3vw, 34px);
}

.service-template.import-service .service-simple-section .seo-card-grid h3,
.service-template.import-service .service-simple-section .seo-step-grid h3,
.service-template.import-service .process-section .seo-step-grid h3,
.service-template.import-service .calculation-grid h3,
.service-template.import-service .seo-category-grid strong {
    margin: 0;
    line-height: 1.22;
}

.service-template.import-service .service-simple-section .seo-card-grid p,
.service-template.import-service .service-simple-section .seo-step-grid p,
.service-template.import-service .process-section .seo-step-grid p,
.service-template.import-service .seo-category-grid span {
    margin: 0;
    line-height: 1.62;
}

.service-template.import-service .service-simple-section .seo-step-grid article,
.service-template.import-service .process-section .seo-step-grid article {
    grid-template-rows: auto auto 1fr;
    min-height: 0;
}

.service-template.import-service .service-simple-section .seo-step-grid article > span,
.service-template.import-service .process-section .seo-step-grid article > span {
    margin: 0 0 6px;
}

.service-template.import-service .service-car-grid {
    align-items: stretch;
}

.service-template.import-service .service-car-grid .inventory-card {
    min-height: 0;
}

.service-template.import-service .service-car-grid .car-body {
    gap: 12px;
}

.service-template.import-service .service-badge-row {
    min-height: 0;
}

.service-template.import-service .service-car-grid .car-body h3 {
    min-height: 0;
    margin: 0;
    line-height: 1.2;
}

.service-template.import-service .service-car-grid .car-body p {
    min-height: 0;
    margin: 0;
    line-height: 1.45;
}

.service-template.import-service .service-card-price {
    width: 100%;
    margin-top: auto;
}

.service-template.import-service .service-card-price span,
.service-template.import-service .service-card-price strong {
    line-height: 1.18;
}

.service-template.import-service .service-card-actions {
    align-items: stretch;
}

.service-template.import-service .service-card-actions .btn {
    min-width: 0;
    white-space: normal;
    text-align: center;
}

.service-template.import-service .service-filter-row,
.service-template.import-service .seo-chip-grid,
.service-template.import-service .cost-parts,
.service-template.import-service .final-benefits {
    align-items: stretch;
}

.service-template.import-service .service-filter-row span,
.service-template.import-service .seo-chip-grid a,
.service-template.import-service .seo-chip-grid span,
.service-template.import-service .cost-parts span,
.service-template.import-service .final-benefits span {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    white-space: normal;
    line-height: 1.3;
}

.service-template.import-service .service-price-note {
    max-width: min(100%, 960px);
    margin-top: 34px;
}

.service-template.import-service .split-section {
    align-items: stretch;
}

.service-template.import-service .split-section > div,
.service-template.import-service .split-section > ul,
.service-template.import-service .risk-section > div {
    min-height: 0;
}

.service-template.import-service .split-section h2,
.service-template.import-service .risk-section h2 {
    margin-top: 10px;
    margin-bottom: 22px;
}

.service-template.import-service .service-check-list {
    gap: 0;
}

.service-template.import-service .service-check-list li {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1.55;
}

.service-template.import-service .service-check-list li::before {
    top: 50%;
    transform: translateY(-50%);
}

.service-template.import-service .risk-section {
    align-items: stretch;
}

.service-template.import-service .risk-section > div {
    display: flex;
    flex-direction: column;
    height: auto;
}

.service-template.import-service .risk-card-head {
    min-height: 0;
    padding-bottom: 8px;
}

.service-template.import-service .risk-card-head h2 {
    margin-top: 22px;
}

.service-template.import-service .risk-section .service-check-list {
    grid-auto-rows: minmax(62px, auto);
    align-self: stretch;
}

.service-template.import-service .risk-section .service-check-list li {
    min-height: 62px;
}

.service-template.import-service .risk-section .service-check-list li::before,
.service-template.import-service .risk-section > div:last-child .service-check-list li::before {
    top: 50%;
    transform: translateY(-50%);
}

.service-template.import-service .risk-section > div:last-child .service-check-list li::before {
    transform: translateY(-50%) rotate(-45deg);
}

.service-template.import-service .calculation-grid article div {
    gap: 16px;
}

.service-template.import-service .calculation-grid article div span,
.service-template.import-service .calculation-grid article div strong {
    min-width: 0;
    line-height: 1.3;
}

.service-template.import-service .calculation-grid article div strong {
    text-align: right;
}

.service-template.import-service .service-cta-band,
.service-template.import-service .service-wide-cta {
    gap: clamp(24px, 4vw, 44px);
}

.service-template.import-service .service-cta-band h2,
.service-template.import-service .service-wide-cta h2 {
    max-width: 860px;
}

.service-template.import-service .service-cta-band p,
.service-template.import-service .service-wide-cta p {
    max-width: 760px;
}

.service-template.import-service .media-section .video-grid,
.service-template.import-service .media-section .portfolio-grid {
    align-items: stretch;
}

.service-template.import-service .media-section .video-card,
.service-template.import-service .media-section .portfolio-card,
.service-template.import-service .media-section .review-card {
    min-height: 0;
}

.service-template.import-service .media-section .video-card-body,
.service-template.import-service .media-section .portfolio-card-body {
    display: grid;
    align-content: start;
    gap: 14px;
}

.service-template.import-service .media-section .video-card h3,
.service-template.import-service .media-section .portfolio-card h3 {
    min-height: 0;
    margin: 0;
    line-height: 1.2;
}

.service-template.import-service .video-card-media--fallback .video-fallback-title {
    max-width: calc(100% - 118px);
    line-height: 1.18;
}

.service-template.import-service .service-faq-section .faq-list summary {
    min-height: 0;
    padding: 24px 28px;
}

.service-template.import-service .service-faq-section .faq-list p {
    padding: 0 28px 28px;
}

.service-template.import-service .service-wide-cta {
    align-items: center;
}

.service-template.import-service .final-benefits span {
    line-height: 1.3;
}

@media (max-width: 1120px) {
    .service-template.import-service .service-price-note {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .service-template.import-service .hero-fact-strip strong,
    .service-template.import-service .service-check-list li,
    .service-template.import-service .risk-section .service-check-list li {
        min-height: 0;
    }

    .service-template.import-service .service-simple-section .seo-card-grid article,
    .service-template.import-service .service-simple-section .seo-step-grid article,
    .service-template.import-service .process-section .seo-step-grid article,
    .service-template.import-service .calculation-grid article,
    .service-template.import-service .seo-category-grid a,
    .service-template.import-service .seo-link-grid a {
        padding: 24px 20px;
    }

    .service-template.import-service .service-cta-band,
    .service-template.import-service .service-wide-cta {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .service-template.import-service .calculation-grid article div,
    .service-template.import-service .calculation-grid article div strong {
        text-align: left;
    }

    .service-template.import-service .video-card-media--fallback .video-fallback-title {
        left: 84px;
        right: 18px;
        max-width: none;
    }
}

/* Final repair for service step cards: old grid columns squeezed copy into a narrow strip. */
.service-template.import-service .process-section .seo-step-grid article,
.service-template.import-service .service-simple-section .seo-step-grid article {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    gap: 18px;
    min-height: 0;
    padding: clamp(30px, 3vw, 38px);
}

.service-template.import-service .process-section .seo-step-grid article > span,
.service-template.import-service .service-simple-section .seo-step-grid article > span {
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 0 2px;
    white-space: nowrap;
    line-height: 0.9;
}

.service-template.import-service .process-section .seo-step-grid h3,
.service-template.import-service .service-simple-section .seo-step-grid h3,
.service-template.import-service .process-section .seo-step-grid p,
.service-template.import-service .service-simple-section .seo-step-grid p {
    width: 100%;
    max-width: none;
    margin: 0;
    grid-column: auto;
    overflow-wrap: normal;
    word-break: normal;
}

.service-template.import-service .process-section .seo-step-grid p,
.service-template.import-service .service-simple-section .seo-step-grid p {
    line-height: 1.65;
}

/* Final repair for import catalog cards: keep card internals aligned and spec tokens unbroken. */
.service-template.import-service .service-car-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    align-items: stretch;
    gap: 28px;
}

.service-template.import-service .service-car-grid .inventory-card {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.service-template.import-service .service-car-grid .inventory-photo {
    height: auto;
    aspect-ratio: 16 / 11;
}

.service-template.import-service .service-car-grid .car-body {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
    padding: 24px;
}

.service-template.import-service .service-badge-row {
    min-height: 28px;
}

.service-template.import-service .service-car-grid .car-body h3 {
    min-height: 88px;
    margin: 0;
    line-height: 1.2;
}

.service-template.import-service .service-card-specs {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 7px;
    min-height: 22px;
    margin: 0;
    line-height: 1.35;
}

.service-template.import-service .service-card-specs span,
.service-template.import-service .service-card-specs i {
    display: inline-block;
    white-space: nowrap;
    font-style: normal;
}

.service-template.import-service .service-card-price {
    align-self: end;
    width: 100%;
    margin-top: auto;
}

.service-template.import-service .service-card-actions {
    align-self: end;
    width: 100%;
    margin-top: 10px;
}

.service-template.import-service .service-card-actions .btn {
    white-space: nowrap;
}

@media (max-width: 1120px) {
    .service-template.import-service .service-car-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .service-template.import-service .service-car-grid {
        grid-template-columns: 1fr;
    }

    .service-template.import-service .service-car-grid .car-body h3 {
        min-height: 0;
    }
}

@media (max-width: 1024px) {
    .news-layout {
        display: block;
        max-width: 820px;
    }
    .news-sidebar {
        display: none;
    }
}

@media (max-width: 640px) {
    .news-hero {
        padding: 24px 16px 0;
    }
    .news-gallery-stage > img {
        aspect-ratio: 16 / 10;
    }
    .news-gallery-thumbs {
        display: none;
    }
    .news-story,
    .news-story-block,
    .article-faq,
    .related-service {
        font-size: 16.5px;
        line-height: 1.72;
    }
    .floating-actions {
        right: 10px;
        bottom: calc(12px + env(safe-area-inset-bottom));
    }
}
