@charset "UTF-8";
@font-face {
    font-family: "Involve";
    src: url("/fonts/Involve-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Involve";
    src: url("/fonts/Involve-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Involve";
    src: url("/fonts/Involve-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Involve";
    src: url("/fonts/Involve-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Involve";
    src: url("/fonts/Involve-Oblique.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Involve";
    src: url("/fonts/Involve-MediumOblique.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Involve";
    src: url("/fonts/Involve-SemiBoldOblique.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Involve";
    src: url("/fonts/Involve-BoldOblique.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
:root {
    --brand-dark: #1e2126;
    --header-bg: rgba(30, 33, 38, 0.95);
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: "Involve", sans-serif;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    font-weight: 400;
    background-color: #fff !important;
    margin: 0;
    overflow-x: hidden;
}

.gap-10 {
    gap: 100px;
}

.price,
.number,
.count-badge {
    font-family: "Inter", sans-serif;
}

@media (max-width: 767px) {
    .px-15 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-md-15 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .gap-10 {
        gap: 25px;
    }
    .p-15 {
        padding: 1rem !important;
    }
}
.breadcrumb a {
    text-decoration: none;
    color: #9aa0ad;
}

.breadcrumb-item.active {
    color: var(--color-primary);
}

main {
    /* background: #F5F5F5;*/
}

.white-bg {
    background: white;
}

.p-10 {
    padding: 30px;
}

.px-10 {
    padding-left: 30px;
    padding-right: 30px;
}

.py-10 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.p-15 {
    padding: 40px;
}

@media (min-width: 768px) {
    .px-15 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    .px-md-15 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    .py-15 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
.mt-25 {
    margin-top: 25px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mx-25 {
    margin: 0 25px !important;
}

.my-25 {
    margin: 25px 0 !important;
}

.section-title {
    font-weight: 700;
    font-size: 40px;
    color: #333;
}

.text-primary {
    color: #ff5f1b !important;
}

.btn-primary {
    background-color: #ff5f1b !important;
    border-color: #ff5f1b !important;
    color: #fff;
    padding: 16px 32px;
    border-radius: 30px;
}
.btn-primary:hover {
    background-color: rgb(246.3, 73.4578947368, 0);
    border-color: rgb(246.3, 73.4578947368, 0);
}
.btn-primary:focus,
.btn-primary:focus-visible {
    background-color: #ff5f1b;
    border-color: #ff5f1b;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 95, 27, 0.35) !important;
}
.btn-primary:active,
.btn-primary.active {
    background-color: rgb(231, 68.8947368421, 0);
    border-color: rgb(231, 68.8947368421, 0);
    box-shadow: none;
}

.load_more {
    background: rgba(255, 95, 27, 0.1019607843);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.55rem 1rem;
}

.brand-filters {
    align-items: stretch;
    margin-bottom: 40px !important;
}
.brand-filters .btn-brand {
    background-color: #f5f5f5;
    color: #1b1c1e;
    border: none;
    border-radius: 25px;
    padding: 10px 28px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 100px; /* одинаковая база, но может расширяться */
    text-align: center;
    text-decoration: none;
}
.brand-filters .btn-brand:hover {
    background-color: rgba(255, 95, 27, 0.1019607843);
    color: #000;
}
.brand-filters .btn-brand.active {
    background-color: #ffeadd;
    color: #000;
    font-weight: 500;
    position: relative;
    cursor: none;
}
.brand-filters .btn-brand.active .cursor-hand {
    display: block;
}
.brand-filters .btn-brand .cursor-hand {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, 20%);
    width: 24px;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .brand-filters {
        flex-wrap: nowrap !important; /* перебиваем bootstrap flex-wrap */
        overflow-x: auto !important;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
    }
    .brand-filters .btn-brand {
        flex: 0 0 auto !important; /* перебиваем твой flex: 1 0 100px */
    }
}

.tag-filters-section {
    margin-bottom: 2rem;
}

.tag-filters {
    align-items: stretch;
}

.tag-filter-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
    min-height: 58px;
    padding: 0.65rem 1.15rem;
    border-radius: 0;
    border: 1px solid #ececec;
    background: #f8f8f8;
    color: #1b1c1e;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1 1 180px;
    max-width: 100%;
}

.tag-filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    color: #1b1c1e;
}

.tag-filter-btn__type {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.8;
}

.tag-filter-btn__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
}

.tag-filter-btn--new {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.tag-filter-btn--new .tag-filter-btn__type {
    color: #16a34a;
}

.tag-filter-btn--used {
    background: #f5f5f5;
    border-color: #e5e5e5;
}

.tag-filter-btn--used .tag-filter-btn__type {
    color: #6b7280;
}

.tag-filter-btn--specials {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.tag-filter-btn--specials .tag-filter-btn__type {
    color: #38bdf8;
}

@media (max-width: 768px) {
    .tag-filters {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .tag-filter-btn {
        flex: 0 0 auto;
        min-width: 190px;
    }
}

.header-container {
    background-color: var(--header-bg);
    padding-bottom: 0;
}

.logo-text {
    font-weight: 700;
    font-size: 35px;
    color: white;
    text-decoration: none;
}

.info-label {
    color: #8da0bc;
    font-size: 0.75rem;
    margin-bottom: 2px;
    display: block;
}

.info-value {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}

/* Callback Button */
.btn-callback {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ff5f1b;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-callback:hover {
    background-color: #ff5f1b;
    color: white;
}

/* Navigation */
.nav-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: #ddd;
    font-size: 0.9rem;
    padding: 15px 0;
    margin-right: 1.5rem;
    position: relative;
    transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active {
    color: #fff;
}
.nav-link {
    /* Cursor pointer hover effect for demo */
}
.nav-link.hover-effect {
    color: #ff5f1b;
    cursor: pointer;
}

.badge-custom {
    background-color: white;
    color: black;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}
.badge-custom.badge-orange {
    background-color: #ff5f1b;
    color: white;
}

/* --- Hero Slider Styles --- */
.hero-slider {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark overlay for text readability */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.slide-content {
    position: absolute;
    bottom: 15%;
    left: 100px;
    width: 100%;
    z-index: 5;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.hero-subtitle {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.btn-hero {
    background-color: #ff5f1b;
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    border: none;
    font-size: 20px;
    font-weight: 400;
    transition: background 0.3s;
}
.btn-hero:hover {
    background-color: #d14d1b;
}

.swiper-pagination {
    padding: 0 25px;
}

.swiper-pagination-custom {
    position: absolute;
    left: 10px;
    right: 0;
    bottom: 50px;
    display: flex;
    gap: 10px;
    z-index: 5;
    width: 100%;
}
.swiper-pagination-custom .swiper-pagination-bullet {
    flex: 1;
    height: 8px;
    border-radius: 2px;
    opacity: 1;
    margin: 0 !important;
    padding-left: 5px;
    padding-right: 5px;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.3s;
}
.swiper-pagination-custom .swiper-pagination-bullet-active {
    background: #ff6a1a;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .hero-slider {
        height: 40vh;
    }
    .header-info-row {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    .slide-content {
        margin-top: 180px;
        left: 5px;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    .btn-hero {
        position: relative;
        display: block;
        padding-right: 10px;
        padding-left: 10px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .nav-link {
        margin-right: 0;
        padding: 10px;
    }
}
.header-overlay {
    width: 100%;
    position: relative;
    background: #000;
    z-index: 999;
}

.header-container {
    padding: 15px 0;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    position: relative;
}

/* ================================
   TOP BAR
================================= */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.header-info {
    align-items: center;
    color: #fff;
    justify-content: space-between;
}

.header-info-row {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}
.header-info-row .info-label {
    font-size: 16px;
    color: #fff;
}

/* ================================
   CALL BUTTON
================================= */
.btn-callback {
    background: rgba(255, 255, 255, 0.08);
    color: #ff5f1b;
    border: none;
    border-radius: 50px;
    padding: 8px 25px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
}
.btn-callback i {
    color: #ff5f1b;
}

.nav-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav {
    padding-top: 15px;
}

.nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.nav-link:hover {
    color: #ff5f1b !important;
}

.badge-custom {
    background: #fff;
    border-radius: 50px;
    padding: 4px 8px;
    font-size: 0.7rem;
}
.badge-custom.badge-orange {
    background: #ff5f1b;
}

/* ================================
   MOBILE
================================= */
@media (min-width: 767px) {
    .header-home {
        padding: 40px;
        opacity: 80%;
        position: absolute;
        width: 100%;
        z-index: 999;
    }
}
@media (max-width: 991px) {
    .header-container {
        padding: 10px 0;
    }
    .navbar {
        position: relative;
        z-index: 2000;
    }
    .header-top {
        position: relative;
        z-index: 30;
    }
    #mainNav {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1001;
        background: #111;
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    /* Логотип меньше */
    .logo-text {
        font-size: 1.1rem;
    }
    /* Кнопка только иконка */
    .btn-callback {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    .btn-callback i {
        margin: 0 !important;
        font-size: 1rem;
    }
    .btn-callback .btn-text {
        display: none;
    }
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        width: 100%;
        padding: 15px;
        margin-top: 10px;
        background: #000;
        z-index: 3000;
    }
    .navbar-nav {
        gap: 5px;
    }
    .navbar-toggler {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        color: #ff5f1b;
    }
    .navbar-toggler i {
        color: #ff5f1b;
        font-size: 25px;
    }
    .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-link:last-child {
        border-bottom: none;
    }
    .badge-custom {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}
.count-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #e5e5e5;
    color: #333;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    min-width: 32px;
    margin-left: 5px;
    padding-bottom: 8px;
}

.filter-section .main-section {
    background: #f5f5f5;
    padding: 12px 28px;
}
.filter-section .search-container {
    position: relative;
}
.filter-section .search-container .search-input {
    border-radius: 30px;
    padding: 18px 25px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.filter-section .search-container .search-input::placeholder {
    color: #999;
}
.filter-section .search-container .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
}
.filter-section .filter-tabs .tab-btn {
    border: none;
    background: white;
    padding: 18px 30px;
    border-radius: 30px;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    color: #333;
}
.filter-section .filter-tabs .tab-btn.active {
    background-color: #ff5f1b;
    color: white;
}
.filter-section .filter-tabs .tab-btn:hover:not(.active) {
    color: #ff5f1b;
    background-color: rgb(242.25, 242.25, 242.25);
}
.filter-section .filter-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.filter-section .custom-select,
.filter-section .range-input {
    border-radius: 30px;
    border: none;
    padding: 18px 15px;
    font-size: 18px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}
.filter-section .custom-select:disabled,
.filter-section .range-input:disabled {
    background-color: rgba(255, 255, 255, 0.5);
    color: #ccc;
}
.filter-section .range-input {
    background-color: white;
}
.filter-section .credit-switch .form-check-input,
.filter-section .credit-details .form-check-input {
    width: 50px;
    height: 32px;
    cursor: pointer;
    margin-left: 2px;
}
.filter-section .credit-switch .form-check-input:checked,
.filter-section .credit-details .form-check-input:checked {
    background-color: #ff5f1b;
    border-color: #ff5f1b;
}
.filter-section .credit-switch .form-check-input:focus,
.filter-section .credit-details .form-check-input:focus {
    box-shadow: 0 0 0 2px rgba(255, 95, 27, 0.15);
    outline: none;
}
.filter-section .credit-switch label,
.filter-section .credit-details label {
    font-weight: 600;
    color: #333;
}
.filter-section .reset-btn {
    background: transparent;
    border: none;
    color: rgba(27, 28, 30, 0.5019607843);
    font-size: 14px;
}
.filter-section .reset-btn i {
    font-size: 18px;
}
.filter-section .submit-btn {
    background-color: #ff5f1b;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
}
.filter-section .submit-btn:hover {
    background-color: rgb(255, 87.8421052632, 16.8);
}

.credit-details {
    background: #f5f5f5;
    border-radius: 0 0 10px 10px;
}

.credit-details .form-check-input {
    width: 50px;
    height: 32px;
    cursor: pointer;
    margin-left: 2px;
}
.credit-details .form-check-input:checked {
    background-color: #ff5f1b;
    border-color: #ff5f1b;
}
.credit-details .form-check-input:focus {
    box-shadow: 0 0 0 2px rgba(255, 95, 27, 0.15);
    outline: none;
}
.credit-details label {
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .filter-section .submit-btn {
        width: 100%;
        padding: 12px 35px;
        font-size: 14px;
    }
    .filter-section .reset-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .filter-section .d-flex.align-items-center.gap-4 {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .filter-section .filter-tabs .tab-btn {
        flex: 1 1 100%;
        padding: 6px 10px;
    }
    .filter-section .credit-switch {
        flex-direction: column;
        align-items: flex-start;
    }
    .filter-section .credit-switch .form-check-input {
        margin-left: 0;
    }
    .filter-section .reset-btn,
    .filter-section .submit-btn {
        width: 100%;
    }
}
.custom-multiselect {
    position: relative;
}
.custom-multiselect__toggle {
    width: 100%;
    padding: 18px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color: #1e2126;
    cursor: pointer;
    box-shadow: none;
}
.custom-multiselect__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom-multiselect__arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #6c757d;
    border-bottom: 1.5px solid #6c757d;
    transform: rotate(45deg);
    margin-top: -4px;
}
.custom-multiselect__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #f7f7f7;
    border-radius: 20px;
    padding: 14px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-height: 150px;
    overflow-y: auto;
    z-index: 20;
    display: none;
}
.custom-multiselect__dropdown::-webkit-scrollbar {
    width: 4px;
}
.custom-multiselect__dropdown::-webkit-scrollbar-thumb {
    background: #1e2126;
    border-radius: 10px;
}
.custom-multiselect__option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 10px;
}
.custom-multiselect__option:last-child {
    margin-bottom: 0;
}
.custom-multiselect__option input {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background: #ffffff;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}
.custom-multiselect__option input:checked {
    border-color: #ff6a1a;
    background: #fff;
}
.custom-multiselect__option input:checked::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 9px;
    width: 6px;
    height: 10px;
    color: #ff5f1b;
    border: solid #ff6a1a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-multiselect__option input:checked + span {
    color: #ff6a1a;
}
.custom-multiselect.is-open .custom-multiselect__dropdown {
    display: block;
}
.custom-multiselect.is-open .custom-multiselect__arrow {
    transform: rotate(-135deg);
}

/* MOBILE COMPACT FILTER */
.mobile-filter {
    display: none;
}

@media (max-width: 767.98px) {
    .filter-section {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .filter-section .main-section {
        display: none;
    }
    .mobile-filter {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .mobile-filter__btn {
        width: 100%;
        min-height: 54px;
        border: none;
        border-radius: 28px;
        background: #f3f3f3;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        box-shadow: none;
    }
    .mobile-filter__text {
        font-size: 16px;
        font-weight: 500;
        color: #b0b0b0;
    }
    .mobile-filter__icon {
        font-size: 18px;
        color: #9a9a9a;
        line-height: 1;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 0;
    }
    .count-badge {
        font-size: 16px;
        padding: 4px 10px 6px;
    }
}
.cta-valuation-section {
    min-height: 500px;
    padding: 60px 0;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url(/images/cta-bg.jpg) top center/100% auto no-repeat;
}
.cta-valuation-section .cta-form-card {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 4px;
    color: white;
}
.cta-valuation-section .cta-form-card .cta-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}
.cta-valuation-section .cta-form-card .cta-subtitle {
    font-size: 22px;
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.4;
}
.cta-valuation-section .form-label {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ddd;
}
.cta-valuation-section .pill-input {
    background: white;
    border: none;
    border-radius: 50px;
    padding: 18px 20px;
    font-size: 18px;
}
.cta-valuation-section .pill-input::placeholder {
    color: #999;
}
@media (max-width: 768px) {
    .cta-valuation-section {
        background:
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url(/images/cta-bg.jpg) center/cover no-repeat;
    }
    .cta-valuation-section .cta-form-card {
        padding: 20px;
    }
}
.cta-valuation-section .license-plate-input {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    padding: 2px;
}
.cta-valuation-section .license-plate-input input {
    border: none;
    padding: 18px 15px;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
}
.cta-valuation-section .license-plate-input input:focus {
    outline: none;
}
.cta-valuation-section .license-plate-input .plate-main {
    flex-grow: 1;
    border-right: 1px solid #eee;
}
.cta-valuation-section .license-plate-input .plate-region {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
}
.cta-valuation-section .license-plate-input .plate-region input {
    width: 100%;
    padding: 0;
    font-size: 18px;
    height: 30px;
}
.cta-valuation-section .license-plate-input .plate-region img {
    width: 18px;
    margin-top: 2px;
}
.cta-valuation-section .custom-switch .form-check-label {
    font-size: 18px;
    color: #ffffff;
}
.cta-valuation-section .custom-switch .form-check-input {
    cursor: pointer;
}
.cta-valuation-section .custom-switch .form-check-input:checked {
    background-color: #ff5f1b;
    border-color: #ff5f1b;
}
.cta-valuation-section .btn-cta-orange {
    background-color: #ff5f1b;
    border: none;
    color: white;
    padding: 18px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
}
.cta-valuation-section .btn-cta-orange:hover {
    background-color: rgb(231, 68.8947368421, 0);
    transform: translateY(-2px);
}
.cta-valuation-section .privacy-text {
    font-size: 14px;
    color: #a2a8a2;
}
.cta-valuation-section .privacy-text a {
    color: #a2a8a2;
    text-decoration: underline;
}

/* resources/scss/components/_cta.scss */
.cta2 {
    position: relative;
    padding: 50px 0;
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.cta2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.52) 55%,
        rgba(0, 0, 0, 0.18) 100%
    );
}
.cta2 .container {
    position: relative;
    z-index: 1;
}

.cta__panel {
    padding: 28px 28px 18px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
}

.cta__title {
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
}
@media (min-width: 992px) {
    .cta__title {
        font-size: 40px;
    }
}

.cta__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 22px;
    margin: 0;
}

.cta__label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    margin-bottom: 6px;
}

.cta__control {
    padding: 16px 18px;
    font-size: 18px;
    border: 0;
    outline: 0;
}
.cta__control::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.cta__consent {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.cta__link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}
.cta__link:hover {
    color: #fff;
}

.map-section {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}
.map-section .map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.map-section .map-overlay-card {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 10;
    width: 350px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(4px);
    padding: 40px;
    border-radius: 1px;
    color: white;
}
.map-section .map-overlay-card .map-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}
.map-section .map-overlay-card .map-info-item {
    margin-bottom: 20px;
}
.map-section .map-overlay-card .map-info-item .info-label {
    display: block;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 4px;
}
.map-section .map-overlay-card .map-info-item .info-value {
    font-size: 15px;
    margin-bottom: 0;
    color: #fff;
}
.map-section .map-overlay-card .map-info-item .info-value a {
    color: inherit;
    text-decoration: none;
}
.map-section .map-overlay-card .btn-map-orange {
    background-color: #ff5f1b;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 30px;
    width: 100%;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}
.map-section .map-overlay-card .btn-map-orange:hover {
    background-color: rgb(231, 68.8947368421, 0);
}

@media (max-width: 768px) {
    .map-section {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .map-section .map-container {
        position: relative;
        height: 180px;
    }
    .map-section .map-overlay-card {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        padding: 30px 20px;
        margin-bottom: 10px;
    }
    .map-section .map-info-item {
        margin-bottom: 2px !important;
    }
}
.services-section {
    padding-left: 45px;
    padding-right: 45px;
}
.services-section .service-card {
    cursor: pointer;
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 250px;
}
.services-section .service-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    background-color: #f9f2ed;
}
.services-section .service-card .service-content {
    position: relative;
    z-index: 2;
    max-width: 65%;
}
.services-section .service-card .service-name {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}
.services-section .service-card .service-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 0;
}
.services-section .service-card .service-icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    width: 180px;
    height: auto;
    opacity: 0.6;
    pointer-events: none;
}
.services-section .service-card .service-icon img {
    width: 100%;
    height: auto;
    filter: grayscale(1);
}
.services-section .service-card:hover .service-icon {
    opacity: 1;
}
.services-section .service-card:hover .service-icon img {
    filter: none;
}
.services-section .btn-service {
    background-color: #ff5f1b;
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    transition: background 0.2s;
}
.services-section .btn-service:hover {
    background-color: rgb(231, 68.8947368421, 0);
    color: white;
}

@media (max-width: 768px) {
    .services-section {
        padding-left: 5px;
        padding-right: 5px;
    }
    .services-section .service-card {
        padding: 30px;
    }
    .services-section .service-card .service-content {
        max-width: 100%;
        margin-bottom: 60px;
    }
    .services-section .service-card .service-icon {
        width: 120px;
    }
}
.car-card {
    background: #fff;
    overflow: hidden;
}

.cars--list .car-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    min-height: 270px;
}
.cars--list .car-card__main-img {
    overflow: hidden;
    height: 180px;
}
.cars--list .car-card__thumbs {
    align-content: start;
}

.cars--grid .car-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

@media (max-width: 767.98px) {
    .cars--list .car-card {
        grid-template-columns: 1fr;
    }
}
.pagination {
    gap: 6px;
}
.pagination .page-link {
    border: 0;
    box-shadow: none;
    font-size: 20px;
}
.pagination .page-link:hover {
    background: rgba(0, 0, 0, 0.05);
}
.pagination .page-item.active .page-link {
    pointer-events: none;
}
.pagination .page-item .page-link {
    border: 0;
    background: transparent;
    border-radius: 999px;
    min-width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}
.pagination .page-item.active .page-link {
    background: rgba(253, 126, 20, 0.15);
    color: #fd7e14;
    font-weight: 600;
}

button.btn-light {
    border-radius: 30px;
    background-color: rgba(255, 95, 27, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

button.btn-light:hover {
    background-color: rgba(255, 95, 27, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.car-swiper {
    cursor: pointer;
}
.car-swiper .swiper-pagination-custom {
    position: absolute;
    left: 10px;
    right: 0;
    bottom: 10px;
    display: flex;
    gap: 10px;
    z-index: 5;
    width: 100%;
}
.car-swiper .swiper-pagination-custom .swiper-pagination-bullet {
    flex: 1;
    height: 5px;
    border-radius: 2px;
    opacity: 1;
    margin: 0 !important;
    padding-left: 5px;
    padding-right: 5px;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.3s;
}
.car-swiper .swiper-pagination-custom .swiper-pagination-bullet-active {
    background: #ff6a1a;
}

.model-card {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 3px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.model-card.active,
.model-card:hover {
    background-color: #fff1eb;
}
.model-card .model-media {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.model-card .model-img {
    max-height: 110px;
    object-fit: contain;
}
.model-card .model-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000000;
}

@media (max-width: 992px) {
    .model-card {
        padding: 2px;
    }
    .model-card .model-name {
        font-size: 16px;
    }
    .model-card .btn-outline-model {
        font-size: 12px;
    }
}
.car-detail__h1 {
    font-size: 28px;
    font-weight: 700;
}
.car-detail__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.car-detail__tag {
    background: rgba(0, 0, 0, 0.04);
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    padding: 0.4rem 0.7rem;
}
.car-detail__gallery {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 18px;
    height: 100%;
    display: grid;
    gap: 12px;
}
.car-detail__hero {
    border-radius: 10px;
    background: #fff;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.car-detail__hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.car-detail__colors {
    display: flex;
    align-items: center;
    gap: 12px;
}
.car-detail__colors-label {
    color: rgba(0, 0, 0, 0.6);
    font-size: 13px;
}
.car-detail__dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.car-detail__dot {
    width: 25px;
    height: 25px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--c);
    padding: 0;
    cursor: pointer;
}
.car-detail__dot.is-active {
    outline: 2px solid rgba(253, 126, 20, 0.45);
    outline-offset: 2px;
}
.car-detail__panel {
    border-radius: 10px;
    background: #fff;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.car-detail__price {
    font-size: 22px;
    font-weight: 700;
}
.car-detail__pm {
    font-size: 13px;
    font-weight: 600;
}
.car-detail__icons {
    display: flex;
    gap: 10px;
}
.car-detail__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fff6f0;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.car-detail__specs {
    display: grid;
    gap: 10px;
}
.car-detail__spec {
    display: flex;
    gap: 10px;
    align-items: center;
}
.car-detail__spec-ico {
    width: 26px;
    color: rgba(0, 0, 0, 0.45);
}
.car-detail__spec-txt {
    color: rgba(0, 0, 0, 0.7);
    font-size: 13px;
}
.car-detail__discounts-title {
    font-weight: 600;
    margin-bottom: 10px;
}
.car-detail__discount-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 6px 0;
}
.car-detail__discount-name {
    color: rgba(0, 0, 0, 0.7);
}
.car-detail__discount-val {
    font-weight: 600;
}
.car-detail__total-price {
    font-size: 20px;
    font-weight: 800;
}
.car-detail__cta {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.8rem 1rem;
}
.car-detail__mini-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.car-detail__mini {
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    border: 0;
    padding: 0.55rem 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}
.car-detail__tabs {
    display: flex;
    gap: 22px;
    align-items: center;
}
.car-detail__tab {
    background: transparent;
    border: 0;
    padding: 10px 0;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
    position: relative;
}
.car-detail__tab.is-active {
    color: #fd7e14;
}
.car-detail__tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: #fd7e14;
    border-radius: 2px;
}
.car-detail__paneltab {
    display: none;
}
.car-detail__paneltab.is-active {
    display: block;
}
.car-detail__acc-item {
    border: 0;
    background: #f3f3f3;
    margin-bottom: 8px;
    border-radius: 6px;
    overflow: hidden;
}
.car-detail__acc-btn {
    background: #f3f3f3 !important;
    box-shadow: none !important;
    font-weight: 600;
    padding: 12px 16px;
    color: #212529 !important;
}
.car-detail__acc-btn::after {
    background-size: 14px;
}
.car-detail__acc-body {
    background: #f3f3f3;
    padding: 0 16px 14px 16px;
}
.car-detail__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.car-detail__chip {
    display: inline-flex;
    background: #e1e1e1;
    border-radius: 12px;
    padding: 0.35rem 0.6rem;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.65);
}
.car-detail__kv {
    display: grid;
    gap: 10px;
}
.car-detail__kv-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.car-detail__kv-k {
    color: rgba(0, 0, 0, 0.55);
}
.car-detail__kv-v {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
}
@media (max-width: 991.98px) {
    .car-detail__mini-actions {
        grid-template-columns: 1fr;
    }
}

.car-card {
    background: #f5f5f5;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.car-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.car-card .car-media {
    position: relative;
}
.car-card .car-media .badge-history {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.92);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    color: #333;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}
.car-card .car-media .main-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}
.car-card .car-media .thumbnails {
    display: flex;
}
.car-card .car-media .thumbnails .thumb {
    width: 50%;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.car-card .car-media .thumbnails .thumb:last-child {
    border-right: 0;
}
.car-card .car-media .thumbnails .thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.car-card .car-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.car-card .car-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.car-card .car-specs {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.car-card .tag {
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.car-card .tag.tag-green {
    background: #e8f5e9;
    color: #2e7d32;
}
.car-card .tag.tag-purple {
    background: #f3e5f5;
    color: #7b1fa2;
}
.car-card .tag.tag-blue {
    background: #e3f2fd;
    color: #1976d2;
}
.car-card .car-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding-top: 15px;
    border-top: 1px solid #f3f3f3;
    margin-top: auto;
}
.car-card .car-footer .price-monthly {
    display: block;
    color: #ff5f1b;
    font-size: 16px;
    font-weight: 600;
}
.car-card .car-footer .current-price {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}
.car-card .car-footer .old-price {
    font-size: 15px;
    color: #999;
}
.car-card .car-footer .action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.car-card .car-footer .action-buttons .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}
.car-card .car-footer .action-buttons .btn-icon:hover {
    background: #eee;
}
.car-card .car-footer .action-buttons .btn-call {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ff5f1b;
    color: #ff5f1b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.car-card .car-footer .action-buttons .btn-call:hover {
    background: #ff5f1b;
    color: white;
}
.car-card .car-footer .action-buttons .phone-btn {
    display: none;
}

.cars.cars--list .car-card {
    display: grid;
    grid-template-columns: 500px 1fr;
    align-items: stretch;
}
.cars.cars--list .car-media {
    position: relative;
    padding: 8px;
    min-height: 250px;
}
.cars.cars--list .car-media .badge-history {
    top: 25px;
    right: 25px;
    font-size: 12px;
    padding: 4px 8px;
}
.cars.cars--list .car-body {
    padding: 18px;
}
.cars.cars--list .car-footer .action-buttons .btn-call {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ff5f1b;
    color: #ff5f1b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.cars.cars--list .car-footer .action-buttons .btn-call .phone-btn {
    display: block;
}
.cars.cars--list .car-footer .action-buttons .btn-call .phone-btn {
    opacity: 0;
    max-width: 0;
    padding-left: 5px;
    white-space: nowrap;
    transform: translateX(-10px);
    transition: all 0.35s ease;
    font-weight: 600;
}
.cars.cars--list .car-footer .action-buttons .btn-call:hover {
    background: #ff5f1b;
    color: white;
    border-radius: 40px;
    padding: 0 60px;
    width: auto;
}
.cars.cars--list .car-footer .action-buttons .btn-call:hover .phone-btn {
    opacity: 1;
    max-width: 120px;
    transform: translateX(0);
}

.cars.cars--grid .car-card {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991.98px) {
    .cars.cars--list .car-card {
        grid-template-columns: 1fr;
    }
    .cars.cars--list .car-media {
        grid-template-columns: 1fr;
    }
    .cars.cars--list .car-media .badge-history {
        right: 10px;
    }
    .cars.cars--list .car-media .thumbnails {
        flex-direction: row;
    }
    .cars.cars--list .car-media .thumbnails .thumb {
        width: 33.333%;
    }
    .cars.cars--list .car-media .thumbnails img {
        min-height: 70px;
    }
}
.credit-steps__title,
.credit-banks__title {
    font-size: 40px;
    font-weight: 700;
}

.credit-step {
    background: #f3f3f3;
    border-radius: 6px;
    padding: 32px 20px;
    min-height: 130px;
}
.credit-step__head {
    display: flex;
    gap: 8px;
    align-items: baseline;
    font-weight: 600;
}
.credit-step__num {
    color: rgba(0, 0, 0, 0.75);
    font-size: 28px;
}
.credit-step__name {
    color: rgba(0, 0, 0, 0.9);
    font-size: 28px;
}
.credit-step__text {
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.55);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
    max-width: 520px;
}
.credit-step--accent {
    background: #fdeee6;
}
.credit-step--accent .credit-step__head {
    color: #ff6a1a;
}
.credit-step--accent .credit-step__text {
    color: rgba(0, 0, 0, 0.6);
}

/* Banks */
.credit-banks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 991.98px) {
    .credit-banks__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575.98px) {
    .credit-banks__grid {
        grid-template-columns: 1fr;
    }
}

.credit-bank {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}
.credit-bank__logo {
    max-width: 70%;
    max-height: 90px;
    object-fit: contain;
}

.credit-selection-section {
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url("/images/credit-bg.png") no-repeat center center;
    background-size: cover;
    min-height: 650px;
    padding: 80px 0;
    display: flex;
    align-items: center;
}
.credit-selection-section .credit-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 15px;
}
.credit-selection-section .credit-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}
.credit-selection-section .credit-form-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.credit-selection-section .credit-form-card .form-label {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 400;
}
.credit-selection-section .credit-form-card .pill-input {
    background-color: white;
    border: none;
    border-radius: 30px;
    padding: 18px 20px;
    font-size: 18px;
}
.credit-selection-section .credit-form-card .pill-input::placeholder {
    color: #aaa;
}
.credit-selection-section .credit-form-card .pill-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 95, 27, 0.25);
}
.credit-selection-section .credit-form-card .select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 14px 10px;
}
.credit-selection-section .credit-form-card .btn-credit-orange {
    background-color: #ff5f1b;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}
.credit-selection-section .credit-form-card .btn-credit-orange:hover {
    background-color: rgb(255, 112.8947368421, 52.5);
    transform: translateY(-2px);
}
.credit-selection-section .credit-form-card .privacy-note {
    font-size: 14px;
    color: #a2a8a2;
    margin: 0;
}
.credit-selection-section .credit-form-card .privacy-note a {
    color: #a2a8a2;
    text-decoration: underline;
}
.credit-selection-section .credit-form-card .privacy-note a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .credit-selection-section {
        text-align: center;
    }
    .credit-selection-section .credit-title {
        font-size: 32px;
    }
    .credit-selection-section .credit-form-card {
        margin: 0 auto;
        padding: 30px 20px;
    }
}
.faq-slider-section .custom-faq .accordion-item {
    border: none;
    background-color: #f5f5f5;
    border-radius: 4px !important;
    overflow: hidden;
}
.faq-slider-section .custom-faq .accordion-button {
    background-color: #f5f5f5;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    padding: 20px;
    box-shadow: none;
}
.faq-slider-section .custom-faq .accordion-button:not(.collapsed) {
    color: #000;
    box-shadow: none;
}
.faq-slider-section .custom-faq .accordion-button::after {
    background-size: 12px;
}
.faq-slider-section .custom-faq .accordion-body {
    padding: 0 20px 20px 20px;
    color: rgba(27, 28, 30, 0.4);
    font-size: 20px;
    line-height: 1.6;
}
.faq-slider-section .credit-swiper {
    height: 100%;
    background: #0b0f16;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.faq-slider-section .credit-swiper__slide {
    display: block;
    height: 100%;
    min-height: 260px;
}
.faq-slider-section .credit-swiper__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.faq-slider-section .credit-swiper__title {
    position: absolute;
    top: 10px;
    left: auto;
    right: auto;
    width: 100%;
    text-align: center;
    word-wrap: break-word;
    font-size: 40px;
    color: #ffffff;
    font-weight: 500;
}
.faq-slider-section .credit-swiper__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}
.faq-slider-section .credit-swiper__pagination .swiper-pagination-bullet {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.35);
}
.faq-slider-section
    .credit-swiper__pagination
    .swiper-pagination-bullet-active {
    background: #ff6a1a;
}

.comp__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}
.comp__group {
    margin-bottom: 18px;
}
.comp__group-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 10px;
}
.comp__engine {
    color: rgba(0, 0, 0, 0.75);
    font-size: 12px;
}
.comp__promo {
    color: #ff6a1a;
    font-size: 11px;
}
.comp .comp-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 10px;
}
.comp .comp-card__head {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 200px;
    gap: 14px;
    padding: 14px 16px;
    align-items: center;
    background: #f7f7f7;
}
.comp .comp-card__label {
    color: rgba(0, 0, 0, 0.45);
    font-size: 11px;
    margin-bottom: 2px;
}
.comp .comp-card__value {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
}
.comp .comp-card__value--muted {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.45);
}
.comp .comp-card__name {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    font-weight: 700;
    color: #ff6a1a;
    cursor: pointer;
}
.comp .comp-card__name i {
    transition: transform 0.2s ease;
}
.comp .comp-card__name.is-collapsed i {
    transform: rotate(-90deg);
}
.comp .comp-card__cta {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.65rem 1rem;
}
.comp .comp-card__body {
    display: none;
    background: #fff;
}
.comp .comp-card__body.is-open {
    display: block;
}
.comp .comp-acc__item {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}
.comp .comp-acc__btn {
    background: #fff;
    box-shadow: none !important;
    padding: 12px 16px;
    font-weight: 600;
}
.comp .comp-acc__btn.collapsed {
    background: #fff;
}
.comp .comp-acc__btn::after {
    background-size: 14px;
}
.comp .comp-acc__body {
    padding: 0 16px 14px 16px;
}
.comp .comp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.comp .comp-chip {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
}
@media (max-width: 991.98px) {
    .comp .comp-card__head {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        row-gap: 10px;
    }
    .comp .comp-card__col--cta {
        grid-column: 1/-1;
    }
    .comp .comp-card__cta {
        width: 100%;
    }
}

.char-tabs {
    display: flex;
    gap: 80px;
    align-items: center;
}
.char-tabs__item {
    font-size: 20px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
}
.char-tabs__item.is-active {
    color: rgba(0, 0, 0, 0.85);
}

.char-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 6px 0 18px 0;
}
.char-head__spacer {
    height: 1px;
}
.char-head__title {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}
.char-head__price {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.char-group {
    margin-bottom: 16px;
}
.char-group__title {
    background: #f3f4f6;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 20px;
}

.char-table {
    background: #fff;
}

.char-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 20px;
}
.char-row__label {
    padding-left: 14px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.85);
}
.char-row__val {
    background: #f6f7f9;
    border-radius: 2px;
    padding: 10px 8px;
    text-align: center;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
}

/* Responsive */
@media (max-width: 991.98px) {
    .char-tabs {
        gap: 20px;
        flex-wrap: wrap;
    }
    .char-head,
    .char-row {
        grid-template-columns: 1fr;
    }
    .char-row__val {
        text-align: left;
    }
}
.car-detail__title {
    font-size: 35px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.car-detail__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    background: #fff0e9;
    border-radius: 3px;
    padding: 2px 8px;
    letter-spacing: 0.3px;
}

.car-detail__left {
    position: relative;
}

.car-detail__gallery {
    background: #f7f7f7;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    position: relative;
}

.car-detail__image {
    object-fit: contain;
    max-height: 340px;
    display: block;
    transition: transform 0.4s ease;
}
.car-detail__image:hover {
    transform: scale(1.02);
}

.car-detail__color-label {
    font-size: 22px;
    color: rgba(27, 28, 30, 0.5019607843);
    white-space: nowrap;
}

.car-detail__color-picker {
    position: absolute;
    bottom: 10px;
    left: 48%;
    transform: translate(-50%, -50%);
}

.car-detail__color-swatch {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid transparent;
    background-color: var(--swatch);
    cursor: pointer;
    padding: 0;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.car-detail__color-swatch:hover {
    transform: scale(1.15);
}
.car-detail__color-swatch--active {
    border-color: #ff5c1a;
    box-shadow: 0 0 0 1px #ff5c1a;
}

.car-detail__price-note {
    font-size: 18px;
    color: rgba(27, 28, 30, 0.5019607843);
}

.car-detail__price {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
}

.car-detail__price-monthly {
    font-size: 22px;
    color: #ff5c1a;
    font-weight: 400;
}

.car-detail__icon-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    color: #ff5c1a;
    background: #fff3ee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}
.car-detail__icon-btn:hover {
    border-color: #ff5c1a;
    color: #ff5c1a;
    background: #fff3ee;
}

.car-detail__specs-row {
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.car-detail__spec {
    gap: 4px;
}
.car-detail__spec img {
    height: 45px;
    filter: grayscale(100%);
    opacity: 0.2;
}

.car-detail__spec-text {
    font-size: 11px;
    color: rgba(27, 28, 30, 0.5019607843);
    text-align: center;
    line-height: 1.3;
}

svg.car-detail__spec {
    color: rgba(27, 28, 30, 0.5019607843);
}

.car-detail__benefits-title {
    font-size: 22px;
    color: #1b1c1e;
}

.car-detail__benefit-name {
    font-size: 18px;
    color: #1b1c1e;
    min-width: 120px;
}

.car-detail__benefit-value {
    font-size: 18px;
    font-weight: 400;
    color: #ff5c1a;
    min-width: 90px;
    text-align: center;
}

.car-detail__toggle {
    width: 44px !important;
    height: 24px !important;
    cursor: pointer;
}
.car-detail__toggle:checked {
    background-color: #ff5c1a !important;
    border-color: #ff5c1a !important;
}
.car-detail__toggle:focus {
    box-shadow: 0 0 0 3px rgba(255, 92, 26, 0.2) !important;
}

.car-detail__total-label {
    font-size: 18px;
    color: rgba(27, 28, 30, 0.5019607843);
}

.car-detail__total-price {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #1a1a1a;
}

.car-detail__cta-primary {
    background-color: #ff5f1b !important;
    color: #fff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 16px 65px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.car-detail__cta-primary:hover,
.car-detail__cta-primary:focus-visible {
    background-color: #e04a0a !important;
    box-shadow: 0 6px 18px rgba(255, 92, 26, 0.35);
    transform: translateY(-1px);
}
.car-detail__cta-primary:active {
    transform: translateY(0);
}

.car-detail__cta-secondary {
    background: #f5f5f5 !important;
    color: #1a1a1a !important;
    border: 1.5px solid #e8e8e8 !important;
    border-radius: 30px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding: 16px 16px !important;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}
.car-detail__cta-secondary:hover {
    border-color: #ff5c1a !important;
    color: #ff5c1a !important;
    background: #fff3ee !important;
}

.car-detail__cta-credit {
    background: #fff3ee !important;
    border: 1.5px solid rgb(255, 228.6, 217.6) !important;
    border-radius: 30px !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    padding: 11px 16px !important;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}
.car-detail__cta-credit:hover {
    background: rgb(255, 232.2, 222.7) !important;
    border-color: #ff5c1a !important;
}

@media (max-width: 767.98px) {
    .car-detail__color-label {
        display: none;
    }
    .car-detail__color-picker {
        bottom: -18px;
    }
    .car-detail__gallery {
        min-height: 200px;
    }
    .car-detail__price {
        font-size: 22px;
    }
    .car-detail__total-price {
        font-size: 20px;
    }
    .car-detail__cta-primary {
        width: 100%;
        justify-content: center;
    }
    .car-detail__specs-row {
        gap: 16px !important;
        overflow-x: auto;
        flex-wrap: nowrap !important;
        padding-bottom: 4px;
    }
    .car-detail__spec-text {
        max-width: 80px;
        font-size: 10px;
    }
}
:root {
    --color-primary: #ff6a00;
    --text: #111;
    --muted: #8c8c8c;
    --soft: #f4f5f7;
    --border: rgba(0, 0, 0, 0.08);
}

.car-detail-page .breadcrumb a {
    color: #b2b2b2;
    text-decoration: none;
}
.car-detail-page .breadcrumb .active {
    color: #ff6a00;
}
.car-detail-page .page-title {
    font-weight: 800;
    letter-spacing: -0.02em;
}
.car-detail-page .badge-soft {
    background: #f2f2f2;
    color: #222;
    border-radius: 999px;
    font-weight: 500;
    padding: 0.35rem 0.6rem;
}
.car-detail-page .car-hero-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
}
.car-detail-page .car-hero-img-wrap {
    background: #f6f6f6;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.car-detail-page .car-hero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.25));
}
.car-detail-page .car-hero-footer {
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    background: #fff;
}
.car-detail-page .color-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
    padding: 0;
    cursor: pointer;
}
.car-detail-page .color-dots .dot.is-active {
    border-color: var(--color-primary);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.car-detail-page .color-dots .dot--gray {
    background: #8d97a3;
    box-shadow: none;
}
.car-detail-page .color-dots .dot--blue {
    background: #4b6bff;
    box-shadow: none;
}
.car-detail-page .color-dots .dot--black {
    background: #1f1f1f;
    box-shadow: none;
}
.car-detail-page .color-dots .dot--red {
    background: #cc2b2b;
    box-shadow: none;
}
.car-detail-page .panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
}
.car-detail-page .panel-hr {
    border-color: var(--border);
    opacity: 1;
    margin: 0;
}
.car-detail-page .price-big {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.05;
}
.car-detail-page .price-sub {
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 4px;
}
.car-detail-page .icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: none;
    background: #fff0e9;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    color: var(--color-primary);
    display: grid;
    place-items: center;
}
.car-detail-page .icon-btn:hover {
    transform: translateY(-1px);
}
.car-detail-page .specs .spec {
    flex: 1 1 0;
    min-width: 0;
}
.car-detail-page .specs .spec .spec-ico {
    opacity: 0.45;
    font-size: 18px;
}
.car-detail-page .specs .spec .spec-txt {
    font-size: 12px;
    color: #a0a0a0;
}
.car-detail-page .benefit-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
}
.car-detail-page .benefit-row .benefit-left {
    display: flex;
    gap: 12px;
    align-items: center;
}
.car-detail-page .benefit-row .benefit-name {
    color: #444;
    font-size: 13px;
}
.car-detail-page .benefit-row .benefit-val {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
}
.car-detail-page .form-switch .form-check-input {
    width: 44px;
    height: 24px;
    cursor: pointer;
}
.car-detail-page .form-check-input:checked {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}
.car-detail-page .price-final {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}
.car-detail-page .btn-primary-pill {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    white-space: nowrap;
}
.car-detail-page .btn-primary-pill:hover {
    filter: brightness(0.96);
}
.car-detail-page .btn-primary-pill:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.2);
}
.car-detail-page .btn-light-soft {
    background: #f3f3f3;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 999px;
    padding: 12px 14px;
    font-weight: 500;
    color: #333;
}
.car-detail-page .btn-light-soft:hover {
    background: #ededed;
}
.car-detail-page .credit-pill {
    background: #fdeee6;
    color: #8a3c14;
    border-radius: 999px;
    padding: 10px 12px;
    text-align: center;
    font-size: 13px;
}
@media (max-width: 991.98px) {
    .car-detail-page .car-hero-img-wrap {
        min-height: 320px;
    }
}

.footer {
    background-color: #000000;
    color: #f6f2f2;
    font-size: 0.85rem;
}
.footer__title {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}
.footer__link {
    color: #f6f2f2;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer__link:hover {
    color: #ffffff;
}
.footer__phone {
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.footer__phone:hover {
    color: #ef9c30 !important;
}
.footer__hours {
    font-size: 0.85rem;
}
.footer__address {
    font-size: 0.85rem;
}
.footer__social-icon__youtube {
    height: 45px;
    margin-left: -6px;
}
.footer__social-icon__max {
    height: 35px;
    margin-left: -2px;
}
.footer__social-icon__vk {
    height: 45px;
    margin-left: -2px;
}
.footer__social-icon__whatsapp {
    height: 35px;
}
.footer__social-icon__telegram {
    height: 35px;
    background: white;
    border-radius: 4px;
    margin-right: 4px;
}
.footer__social-icon:hover {
    transform: translateY(-1px);
}
.footer__barnoma {
    font-size: 0.4rem;
    letter-spacing: 0.2px;
    cursor: pointer;
    text-decoration: none;
}

.nm-gallery__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.nm-gallery__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 10px;
    align-items: stretch;
}
.nm-gallery__main {
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
    height: 440px;
    width: 100%;
    cursor: pointer;
}
.nm-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nm-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 10px;
    height: 440px;
}
.nm-gallery__thumb {
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.nm-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nm-gallery__thumb.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #ff6a1a;
    border-radius: 6px;
    pointer-events: none;
}
@media (max-width: 991.98px) {
    .nm-gallery__grid {
        grid-template-columns: 1fr;
    }
    .nm-gallery__main,
    .nm-gallery__thumbs {
        height: 400px;
    }
}
@media (max-width: 575.98px) {
    .nm-gallery__thumbs {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    .nm-gallery__thumb {
        height: 130px;
    }
    .nm-gallery__main {
        height: 200px;
    }
}

.service-hero {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}
.service-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
}
.service-hero .hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}
.service-hero .hero-subtitle {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
}

.custom-breadcrumb .breadcrumb-item {
    font-size: 12px;
}
.custom-breadcrumb .breadcrumb-item a {
    color: #999;
    text-decoration: none;
}
.custom-breadcrumb .breadcrumb-item.active {
    color: #ff5c00;
}
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    font-size: 10px;
    color: #ccc;
}

.service-card {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.service-card.active {
    background-color: #f9f2ed;
}
.service-card.active .service-icon img {
    filter: none;
    opacity: 1;
}
.service-card .service-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
}
.service-card .service-name {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}
.service-card .service-desc {
    font-size: 17px;
    color: #999;
    line-height: 1.6;
}
.service-card .service-icon {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 200px;
    z-index: 1;
}
.service-card .service-icon img {
    width: 100%;
    opacity: 0.4;
    filter: grayscale(1);
    transition: all 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.btn-orange {
    background-color: #ff5c00;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}
.btn-orange:hover {
    background-color: rgb(204, 73.6, 0);
    color: white;
}

@media (max-width: 991px) {
    .service-hero {
        height: 40vh;
    }
    .service-hero .hero-title {
        font-size: 32px;
    }
    .service-card {
        padding: 30px;
    }
    .service-card .service-content {
        max-width: 100%;
        margin-bottom: 100px;
    }
    .service-card .service-icon {
        width: 140px;
    }
}
.docs-section {
    margin: 0 auto;
}

.docs-title {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px; /* это и есть белые разделители */
}

.doc-card {
    background: #f3f3f3;
    padding: 18px 22px;
    border-radius: 2px;
    min-height: 68px;
    display: flex;
    align-items: center;
}

.doc-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #222;
    font-size: 14px;
    line-height: 1.35;
}

.doc-num {
    color: #444;
    flex: 0 0 auto;
}

.doc-text {
    color: #222;
}

.doc-note {
    background: #f5e6de; /* нежно-бежевый как на скрине */
    padding: 18px 22px;
    border-radius: 2px;
    font-size: 12.5px;
    line-height: 1.45;
    color: #333;
    min-height: 78px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .docs-title {
        font-size: 22px;
    }
    .docs-grid {
        grid-template-columns: 1fr;
    }
}
.custom-faq .accordion-item {
    border: none;
    background-color: #f8f8f8;
    border-radius: 4px !important;
    overflow: hidden;
}
.custom-faq .accordion-button {
    background-color: #f8f8f8;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 20px;
    box-shadow: none;
}
.custom-faq .accordion-button:not(.collapsed) {
    color: #000;
    box-shadow: none;
}
.custom-faq .accordion-button::after {
    background-size: 12px;
}
.custom-faq .accordion-body {
    padding: 0 20px 20px 20px;
    color: rgba(27, 28, 30, 0.4);
    font-size: 20px;
    line-height: 1.6;
}

.ui-modal {
    z-index: 2500;
}
.ui-modal .modal-dialog {
    max-width: 1100px;
}
.ui-modal__content {
    border: 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.ui-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 10px;
    color: #ffffff;
    opacity: 100;
}
.ui-modal__close:focus {
    border: none;
}
.ui-modal__grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    min-height: 460px;
}
.ui-modal__left {
    background: #f5f5f5;
    padding: 22px 18px;
}
.ui-modal__right {
    background: #000;
    position: relative;
}
.ui-modal__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ui-modal__title {
    font-size: 34px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.15;
}
.ui-modal__label {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 6px;
}
.ui-modal__input {
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 18px;
}
.ui-modal__input:focus {
    box-shadow: none;
    border-color: #ff5f1b;
}
.ui-modal__btn {
    margin-top: 18px;
    width: 100%;
    background-color: #ff5f1b;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 700;
    padding: 16px 18px;
}
.ui-modal__btn:focus {
    box-shadow: none;
    border-color: #ff5f1b;
}
.ui-modal__btn:hover {
    box-shadow: none;
    background-color: #ff5f1b;
    color: #ffffff;
    border-color: #ff5f1b;
}
.ui-modal__policy {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
    text-align: center;
}
.ui-modal__policy a {
    color: rgba(0, 0, 0, 0.55);
}
@media (max-width: 991.98px) {
    .ui-modal__grid {
        grid-template-columns: 1fr;
    }
    .ui-modal__right {
        display: none;
    }
}

.compare {
    overflow-anchor: none;
    --compare-grid-gap: 14px;
    --compare-grid-columns-desktop: repeat(4, minmax(0, 1fr));
}
.compare__count {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.65);
}
.compare__switch {
    display: flex;
    align-items: center;
    gap: 10px;
}
.compare__switch .form-check-input:checked {
    background-color: #ff5c1a;
    border-color: #ff5c1a;
}
.compare__switch .form-check-input:focus,
.compare__switch .form-check-input:focus-visible {
    border-color: var(--bs-border-color);
    box-shadow: 0 0 0 0.25rem #fff0e9;
    outline: 0;
}
.compare__switch-text {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.icon-btn {
    width: 43px;
    height: 43px;
    min-width: 43px;
    min-height: 43px;
    border-radius: 50%;
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    background: transparent;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}
.icon-btn:not(.icon-btn--slot):not(.icon-btn--remove):not(
        .icon-btn--empty-slot
    ):not(.icon-btn--detail):not(.icon-btn--left-icon):not(
        .icon-btn--right-icon
    ):hover,
.icon-btn:not(.icon-btn--slot):not(.icon-btn--remove):not(
        .icon-btn--empty-slot
    ):not(.icon-btn--detail):not(.icon-btn--left-icon):not(
        .icon-btn--right-icon
    ):focus-visible {
    background: #fff;
    color: #ff5c1a;
}
.icon-btn.compare-btn--active {
    background: #ff5c1a;
    color: #fff;
}
.icon-btn.compare-btn--active:hover,
.icon-btn.compare-btn--active:focus-visible {
    background: #ff5c1a;
    color: #fff;
}
.icon-btn__icon {
    display: block;
    width: 16px;
    height: 16px;
}
.icon-btn--detail {
    width: 65px;
    height: 65px;
    min-width: 65px;
    min-height: 65px;
    background: #fff3ee;
    color: #ff5c1a;
}
.icon-btn--detail .icon-btn__icon {
    width: 24px;
    height: 24px;
}
.icon-btn--detail:hover,
.icon-btn--detail:focus-visible {
    background: #fff3ee;
}
.icon-btn--detail.compare-btn--active {
    background: #ff5c1a;
    color: #fff;
}
.icon-btn--detail.compare-btn--active:hover,
.icon-btn--detail.compare-btn--active:focus-visible {
    background: #ff5c1a;
}
.icon-btn--slot {
    background: #000;
    color: #fff;
    cursor: default;
}
.icon-btn--slot:hover,
.icon-btn--slot:focus-visible {
    background: #000;
    color: #fff;
}
.icon-btn--empty-slot {
    background: #fff;
    margin-bottom: 16px;
    cursor: inherit;
}
.icon-btn--empty-slot .icon-btn__icon {
    width: auto;
    height: auto;
    font-size: 16px;
    line-height: 1;
}
.icon-btn--empty-slot:hover,
.icon-btn--empty-slot:focus-visible {
    background: #fff;
    color: #000;
}
.icon-btn--left-icon,
.icon-btn--right-icon {
    background: #fff;
    color: #ff5c1a;
}
.icon-btn--left-icon .icon-btn__icon,
.icon-btn--right-icon .icon-btn__icon {
    width: auto;
    height: auto;
    font-size: 16px;
    line-height: 1;
}
.icon-btn--left-icon:hover,
.icon-btn--left-icon:focus-visible,
.icon-btn--right-icon:hover,
.icon-btn--right-icon:focus-visible {
    background: #fff;
    color: #000;
}
.icon-btn--remove {
    background: #fff;
    color: #000;
    cursor: pointer;
}
.icon-btn--remove:hover,
.icon-btn--remove:focus-visible {
    background: #fff;
    color: #000;
}
.compare-btn--disabled,
.icon-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.model-card__compare {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}

.car-detail-page .model-card__compare .icon-btn {
    width: 43px;
    height: 43px;
    min-width: 43px;
    min-height: 43px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #000;
    box-shadow: none;
}
.car-detail-page .model-card__compare .icon-btn:hover,
.car-detail-page .model-card__compare .icon-btn:focus-visible {
    transform: none;
    background: #fff;
    color: #ff5c1a;
}
.car-detail-page .model-card__compare .icon-btn.compare-btn--active,
.car-detail-page .model-card__compare .icon-btn.compare-btn--active:hover,
.car-detail-page
    .model-card__compare
    .icon-btn.compare-btn--active:focus-visible {
    background: #ff5c1a;
    color: #fff;
}

/* Sticky header anchor */
.compare-header-sentinel {
    height: 0;
    visibility: hidden;
    pointer-events: none;
}
.compare-header {
    --compare-header-duration: 0.3s;
    --compare-header-ease: ease;
    --compare-header-card-base: calc(4px + 90px + 180px + 20px);
    --compare-header-compact-scale: 0.35;
    --compare-header-media-compact-scale: 0.5;
    --compare-header-footer-max: 5rem;
    --compare-header-footer-collapse: 3rem;
    --compare-header-compact-card-height: calc(
        4px + 90px + 180px * var(--compare-header-media-compact-scale)
    );
    --compare-header-collapse-offset: calc(
        var(--compare-header-card-base) -
            var(--compare-header-compact-card-height) +
            var(--compare-header-footer-collapse)
    );
    position: sticky;
    top: var(--compare-sticky-top, 0px);
    z-index: 10;
    padding: 15px 0;
    margin-bottom: 0;
    transition: margin-bottom var(--compare-header-duration)
        var(--compare-header-ease);
}
@media (min-width: 992px) {
    .compare-header {
        --compare-header-card-base: calc(6px + 90px + 1rem + 180px + 20px);
        --compare-header-compact-card-height: calc(
            6px + 90px + 1rem + 180px *
                var(--compare-header-media-compact-scale)
        );
    }
}
@media (max-width: 575.98px) {
    .compare-header {
        --compare-header-footer-max: 8rem;
        --compare-header-footer-collapse: 5rem;
    }
}
.compare-header--is-sticky {
    background: transparent;
    box-shadow: none;
    isolation: isolate;
}
@media (min-width: 992px) {
    .compare-header--is-sticky {
        margin-bottom: var(--compare-header-collapse-offset);
    }
}
.compare-header--is-sticky::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    pointer-events: none;
}
@media (min-width: 992px) {
    .compare-header--is-sticky .compare-header__footer {
        max-height: 0;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        pointer-events: none;
        transition:
            max-height var(--compare-header-duration) var(--compare-header-ease),
            opacity var(--compare-header-duration) var(--compare-header-ease),
            visibility 0s linear var(--compare-header-duration);
    }
    .compare-header--is-sticky .compare-header__model-card {
        min-height: calc((90px) * 0.65);
    }
    .compare-header--is-sticky .compare-header__model-card .model-media {
        min-height: calc(180px * var(--compare-header-media-compact-scale));
    }
    .compare-header--is-sticky .compare-header__model-card .model-img {
        max-height: calc(160px * var(--compare-header-media-compact-scale));
    }
    .compare-header--is-sticky .compare-header__media-link {
        min-height: calc(180px * var(--compare-header-media-compact-scale));
    }
}
@media (max-width: 991.98px) {
    .compare-header .compare-header__footer {
        max-height: 0;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        pointer-events: none;
    }
    .compare-header .compare-header__config {
        margin-top: auto;
        flex-grow: 0;
    }
    .compare-header .compare-header__model-card {
        min-height: calc((4px + 90px + 70px + 20px) * 0.65);
    }
    .compare-header .compare-header__model-card .model-media {
        min-height: calc(180px * var(--compare-header-media-compact-scale));
    }
    .compare-header .compare-header__model-card .model-img {
        max-height: calc(160px * var(--compare-header-media-compact-scale));
    }
    .compare-header .compare-header__media-link {
        min-height: calc(180px * var(--compare-header-media-compact-scale));
    }
}

/* Header cards */
.compare-header__slide {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
}
.compare-header__slide--empty .compare-slot--empty {
    flex: 1 1 auto;
    align-self: stretch;
    width: 100%;
    min-height: 0;
    height: auto;
    transition:
        min-height var(--compare-header-duration) var(--compare-header-ease),
        background-color var(--compare-header-duration)
            var(--compare-header-ease),
        border-color var(--compare-header-duration) var(--compare-header-ease);
}
.compare-header__swiper
    .swiper-slide:only-child
    .compare-header__slide--empty
    .compare-slot--empty {
    min-height: var(--compare-header-card-base);
}
.compare-header__card-area {
    position: relative;
    width: 100%;
}
.compare-header__model-card {
    overflow: hidden;
    min-height: calc(4px + 90px + 180px + 20px);
    transition:
        min-height var(--compare-header-duration) var(--compare-header-ease),
        background-color var(--compare-header-duration)
            var(--compare-header-ease),
        border-color var(--compare-header-duration) var(--compare-header-ease);
}
@media (min-width: 992px) {
    .compare-header__model-card {
        min-height: calc(6px + 90px + 1rem + 16px);
    }
}
.compare-header__model-card .model-media {
    margin-top: auto;
    margin-bottom: 0;
    transition: min-height var(--compare-header-duration)
        var(--compare-header-ease);
}
.compare-header__model-card .model-img {
    transition: max-height var(--compare-header-duration)
        var(--compare-header-ease);
}
.compare-header__media-link {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    min-height: 110px;
    text-decoration: none;
    transition: min-height var(--compare-header-duration)
        var(--compare-header-ease);
}
.compare-header__actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    display: flex;
    align-items: center;
    width: fit-content;
}
.compare-header__compare {
    pointer-events: none;
}
.compare-header__remove {
    width: fit-content;
}
.compare-header__details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
    min-height: 0;
}
.compare-header__name a {
    color: inherit;
    text-decoration: none;
}
.compare-header__badge {
    align-self: flex-start;
}
.compare-header__config-text {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.55);
}
.compare-header__config {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 auto;
    min-height: 0;
}
.compare-header__dimension-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
}
@media (max-width: 575.98px) {
    .compare-header__dimension-row {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        min-height: 0;
    }
}
.compare-header__dimension-label {
    flex: 0 0 auto;
    min-width: 88px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}
@media (max-width: 575.98px) {
    .compare-header__dimension-label {
        min-width: 0;
        font-size: xx-small;
    }
}
.compare-header__dimension-value {
    flex: 1 1 auto;
    min-width: 0;
}
.compare-header__dimension-text {
    display: block;
    color: #1a1a1a;
}
.compare-header__select {
    width: 100%;
    border-radius: 30px;
    border: none;
    padding: 4px 8px;
    font-size: 13px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.compare-header__select:focus,
.compare-header__select:focus-visible {
    border-color: #fd7e14;
    box-shadow: none;
    outline: 0;
}
.compare-header__select:disabled {
    background-color: rgba(255, 255, 255, 0.5);
    color: #ccc;
}
@media (max-width: 575.98px) {
    .compare-header__select {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        padding-right: 2.25rem;
    }
}
.compare-header__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    flex-wrap: nowrap !important;
    overflow: hidden;
    min-height: 0;
    max-height: 5rem;
    opacity: 1;
    visibility: visible;
    transition:
        max-height var(--compare-header-duration) var(--compare-header-ease),
        opacity var(--compare-header-duration) var(--compare-header-ease),
        visibility 0s linear 0s;
}
@media (max-width: 575.98px) {
    .compare-header__footer {
        flex-wrap: wrap !important;
        align-items: stretch;
        max-height: 8rem;
    }
}
.compare-header__price {
    flex: 0 1 auto;
    min-width: 0;
}
.compare-header__price-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    width: fit-content;
    max-width: 100%;
}
.compare-header__price-prefix {
    grid-column: 1;
    grid-row: 2;
    font-size: 18px;
    white-space: nowrap;
}
.compare-header__price-old {
    grid-column: 2;
    grid-row: 1;
    white-space: nowrap;
    line-height: 0.7;
}
.compare-header__price-new {
    grid-column: 2;
    grid-row: 2;
    white-space: nowrap;
}
.compare-header__offers {
    flex-shrink: 0;
    align-self: center;
    margin-left: auto;
}
@media (max-width: 575.98px) {
    .compare-header__offers {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}
@media (prefers-reduced-motion: reduce) {
    .compare-header {
        --compare-header-duration: 0s;
    }
}
.compare-header__compare .icon-btn--remove,
.compare-header__remove .icon-btn--remove {
    background: transparent;
    color: #000;
}
.compare-header__compare .icon-btn--remove:hover,
.compare-header__compare .icon-btn--remove:focus-visible,
.compare-header__remove .icon-btn--remove:hover,
.compare-header__remove .icon-btn--remove:focus-visible {
    background: #fff;
    color: #000;
}

/* Cards */
.compare-cards__grid:not(.swiper-wrapper) {
    display: grid;
    grid-template-columns: var(--compare-grid-columns-desktop);
    gap: var(--compare-grid-gap);
    align-items: stretch;
}
@media (max-width: 991.98px) {
    .compare-cards__grid:not(.swiper-wrapper) {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575.98px) {
    .compare-cards__grid:not(.swiper-wrapper) {
        grid-template-columns: 1fr;
    }
}

.compare-header__swiper {
    position: relative;
    overflow: hidden;
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 8px;
    padding-right: 8px;
}
.compare-header__swiper .swiper-wrapper {
    align-items: stretch;
}
.compare-header__swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}
.compare-header__swiper .swiper-button-prev,
.compare-header__swiper .swiper-button-next {
    top: 25%;
    transform: translateY(-50%);
    margin-top: 0;
}
.compare-header__swiper .swiper-button-prev {
    left: 0;
}
.compare-header__swiper .swiper-button-next {
    right: 0;
}
@media (min-width: 992px) {
    .compare-header__swiper {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .compare-header__swiper .swiper-button-prev,
    .compare-header__swiper .swiper-button-next {
        display: none;
    }
}

.js-compare-configurations-swiper,
.js-compare-cta-swiper,
.js-compare-values-swiper {
    overflow: hidden;
    width: 100%;
}
@media (min-width: 992px) {
    .js-compare-configurations-swiper .swiper-button-prev,
    .js-compare-configurations-swiper .swiper-button-next,
    .js-compare-cta-swiper .swiper-button-prev,
    .js-compare-cta-swiper .swiper-button-next,
    .js-compare-values-swiper .swiper-button-prev,
    .js-compare-values-swiper .swiper-button-next {
        display: none;
    }
}

.compare-slot {
    overflow: hidden;
}
.compare-slot .model-name a {
    color: inherit;
    text-decoration: none;
}
.compare-slot .model-media > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 180px;
    text-decoration: none;
}
.compare-slot__compare {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 3;
    pointer-events: none;
}
.compare-slot__remove {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: auto;
    z-index: 4;
    width: fit-content;
}
.compare-slot__remove .icon-btn--remove {
    background: transparent;
    color: #000;
}
.compare-slot__remove .icon-btn--remove:hover,
.compare-slot__remove .icon-btn--remove:focus-visible {
    background: #fff;
    color: #ff5c1a;
}
.compare-slot--empty {
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 320px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.compare-slot--empty:hover {
    background-color: #fff1eb;
    color: inherit;
}
.compare-slot__add-title {
    color: #333;
}
.compare-slot__add-link {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.55);
}

.compare-card {
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 25px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}
.compare-card--empty {
    border-style: dashed;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.compare-card__img {
    position: relative;
    background: #f3f3f3;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.compare-card__action {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    color: #000;
}
.compare-card__name {
    padding: 10px 0 4px;
    font-weight: 700;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.8);
}
.compare-card__price {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}
.compare-card__link {
    font-size: 12px;
    margin-top: auto;
}
.compare-card__placeholder-text {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
}

.compare-price-grid {
    display: grid;
    grid-template-columns: repeat(var(--compare-cols, 4), minmax(0, 1fr));
    gap: 14px;
}
@media (max-width: 991.98px) {
    .compare-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.compare-price-grid__item {
    background: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 14px;
}
.compare-price-grid__old {
    font-size: 12px;
}
.compare-price-grid__new {
    font-size: 18px;
}

/* Blocks */
.compare-block__sub {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.55);
}

.compare-block__text {
    font-size: 18px;
    line-height: 1.45;
    color: #1a1a1a;
}

.compare-block__cta {
    min-width: 0;
}
@media (max-width: 575.98px) {
    .compare-block__cta .complectations__cta {
        font-size: 12px !important;
    }
}
.compare-block__cta--empty {
    min-height: 0;
}

.compare-configurations.swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.compare-configurations:not(.swiper-wrapper) {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 991.98px) {
    .compare-configurations:not(.swiper-wrapper) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .compare-configurations:not(.swiper-wrapper) {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .compare-configurations:not(.swiper-wrapper) {
        grid-template-rows: auto repeat(3, auto) auto;
    }
}

.compare-configurations__car {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.compare-configurations__car--empty {
    pointer-events: none;
}

@media (min-width: 992px) {
    .compare-configurations:not(.swiper-wrapper) .compare-configurations__car {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: 1 / -1;
    }

    .compare-configurations:not(.swiper-wrapper)
        .compare-configurations__car:nth-child(1) {
        grid-column: 1;
    }
    .compare-configurations:not(.swiper-wrapper)
        .compare-configurations__car:nth-child(2) {
        grid-column: 2;
    }
    .compare-configurations:not(.swiper-wrapper)
        .compare-configurations__car:nth-child(3) {
        grid-column: 3;
    }
    .compare-configurations:not(.swiper-wrapper)
        .compare-configurations__car:nth-child(4) {
        grid-column: 4;
    }
}

.compare-configurations__heading {
    margin-bottom: 0;
}
.compare-configurations__heading--placeholder {
    visibility: hidden;
}

.compare-configurations__modification {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #1a1a1a;
}

.compare-configurations .complectations__trim-name {
    font-weight: 400;
}

.compare-configurations__item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.compare-configurations__item--empty {
    padding: 10px 0;
}

.compare-configurations__prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.compare-configurations__link {
    font-size: 18px;
    color: #1a1a1a;
}

.compare-configurations__link--placeholder {
    display: block;
    min-height: 0;
    visibility: hidden;
}

.compare-trims__link {
    font-size: 18px;
    color: #1a1a1a;
}

/* Table */
.compare-table {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.compare-table--scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-row {
    display: grid;
    grid-template-columns: minmax(140px, 1.35fr) repeat(
            var(--compare-cols, 4),
            minmax(120px, 1fr)
        );
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    min-width: calc(140px + (var(--compare-cols, 4) * 120px));
}
.compare-row:first-child {
    border-top: 0;
}
.compare-row--header {
    position: sticky;
    top: 0;
    z-index: 2;
}

.compare-cell {
    padding: 12px 12px;
    font-size: 12px;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
}
.compare-cell:first-child {
    border-left: 0;
    text-align: left;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65);
    position: sticky;
    left: 0;
    z-index: 1;
}

.compare-cell--label {
    background: #f3f3f3;
    z-index: 3;
}

.compare-cell--highlight {
    background: #fff1eb;
}

.compare-row--header .compare-cell {
    background: #ececec;
    font-weight: 700;
}
.compare-row--header .compare-cell--label {
    z-index: 4;
}

.compare--only-diff .compare-row--same {
    display: none;
}

.compare-comparison-section {
    display: flex;
    flex-direction: column;
}

.compare-comparison-rows {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.compare-spec-row {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0;
    min-width: 0;
}
.compare-spec-row.compare-row {
    min-width: 0;
}
.compare-spec-row:first-child {
    border-top: 0;
    padding-top: 0;
}
.compare-spec-row__label {
    font-size: 18px;
    font-weight: 400;
    color: rgba(27, 28, 30, 0.5019607843);
    padding-bottom: 8px;
    text-transform: capitalize;
}
.compare-spec-row__values {
    min-width: 0;
}
.compare-spec-row .compare-cell {
    padding: 10px 0;
    font-size: 18px;
    background: transparent;
    border-left: 0;
    text-align: center;
    font-weight: 400;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-spec-row .compare-cell--value {
    min-width: 0;
}
.compare-spec-row .compare-cell--highlight {
    background: #fff1eb;
    border-radius: 4px;
}
.compare-spec-row .compare-cell--empty {
    min-width: 0;
}

.compare-values-grid {
    width: 100%;
    padding-bottom: 10px;
}
.compare-values-grid:not(.swiper-wrapper) {
    display: grid;
    grid-template-columns: var(--compare-grid-columns-desktop);
    gap: var(--compare-grid-gap);
}

.compare-details {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.compare-details__summary {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 14px 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
    width: 100%;
}
.compare-details__summary::-webkit-details-marker {
    display: none;
}
.compare-details__summary::marker {
    content: "";
}
.compare-details__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.1px;
}
.compare-details__chevron {
    transition: transform 0.25s ease;
}
.compare-details[open] .compare-details__chevron {
    transform: rotate(180deg);
}
.compare-details__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}
.compare-details[open] .compare-details__content {
    grid-template-rows: 1fr;
}
.compare-details__content-inner {
    overflow: hidden;
    padding-bottom: 0px;
}

@media (prefers-reduced-motion: reduce) {
    .compare-details .compare-details__chevron,
    .compare-details__content {
        transition-duration: 0s;
    }
}

@media (max-width: 991.98px) {
    .compare-row--header {
        top: 0;
    }

    /* Step 16A: data swipers must share the header track width, not the legacy
       620px compare-table floor (140px + 4 * 120px from .compare-row). */
    .compare-comparison-section,
    .compare-details,
    .compare-details__content,
    .compare-details__content-inner,
    .compare-comparison-rows,
    .compare-spec-row,
    .compare-spec-row.compare-row,
    .compare-spec-row__values {
        min-width: 0;
        max-width: 100%;
    }

    .compare-comparison-section .compare-row {
        min-width: 0;
    }

    .js-compare-values-swiper {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .js-compare-values-swiper .swiper-wrapper.compare-values-grid {
        display: flex;
        width: auto;
        box-sizing: border-box;
    }

    .js-compare-values-swiper .swiper-slide.compare-cell {
        width: auto;
        min-width: 0;
        max-width: none;
        flex-shrink: 0;
        box-sizing: border-box;
    }
}

/* Comparison toasts (Toastr overrides — forms unchanged) */
#toast-container > .toast-compare {
    background-image: none !important;
    background-color: #ff5c1a !important;
    width: 320px;
    max-width: calc(100vw - 24px);
    padding: 14px 36px 16px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 1;
    color: #fff;
    cursor: pointer;
}

#toast-container > .toast-compare:hover,
#toast-container > .toast-compare:focus,
#toast-container > .toast-compare:focus-visible {
    background-color: #ff5c1a !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 1;
    cursor: pointer;
    outline: none;
}

#toast-container > .toast-compare--success {
    background-color: #ff5c1a !important;
}

#toast-container > .toast-compare--warning {
    background-color: #cc2b2b !important;
}

#toast-container > .toast-compare--warning:hover,
#toast-container > .toast-compare--warning:focus,
#toast-container > .toast-compare--warning:focus-visible {
    background-color: #cc2b2b !important;
}

#toast-container > .toast-compare .toast-compare__icon-hidden {
    display: none !important;
}

#toast-container > .toast-compare .toast-compare__title-hidden {
    display: none !important;
}

#toast-container > .toast-compare .toast-compare__message {
    padding: 0;
    margin: 0;
    line-height: 1.35;
}

.toast-compare__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-compare__heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}

.toast-compare__subtitle {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}

.toast-compare__link {
    display: inline-block;
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.35;
    color: #fff;
    text-decoration: underline;
}

.toast-compare__link:hover,
.toast-compare__link:focus {
    color: #fff;
    opacity: 1;
}

#toast-container > .toast-compare .toast-close-button {
    position: absolute;
    float: none;
    color: #fff;
    opacity: 0.85;
    font-weight: 400;
    top: 8px;
    right: 8px;
}

#toast-container > .toast-compare .toast-close-button:hover,
#toast-container > .toast-compare .toast-close-button:focus {
    color: #fff;
    opacity: 0.85;
}

#toast-container > .toast-compare .toast-progress {
    background-color: #dc3f00;
    height: 3px;
    opacity: 1;
}

.tradein__h1 {
    font-size: 28px;
    font-weight: 700;
}
.tradein__h2 {
    font-size: 22px;
    font-weight: 700;
}
.tradein__label {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 6px;
}
.tradein__input {
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 18px;
}
.tradein__input:focus {
    box-shadow: none;
    border-color: #ff5f1b;
}
.tradein__submit {
    width: 100%;
    background: #ff5f1b !important;
    border-radius: 30px;
    font-weight: 700;
    color: #ffffff;
    padding: 16px 18px;
}
.tradein__submit:focus {
    box-shadow: none;
    border-color: #ff5f1b;
}
.tradein__submit:hover {
    box-shadow: none;
    border-color: #ff5f1b;
    color: #ffffff;
}
.tradein__policy {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    color: rgba(0, 0, 0, 0.45);
}
.tradein__policy a {
    color: rgba(0, 0, 0, 0.55);
}

/* Hero block */
.tradein-hero {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}
.tradein-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
}

.tradein-form {
    padding: 18px;
    background: #f5f5f5;
}

.tradein-promo {
    background: #f7f7f7;
    padding: 18px;
    position: relative;
}
.tradein-promo__text {
    font-size: 36px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.35;
    margin-top: 10px;
}
.tradein-promo__accent {
    color: #ff6a1a;
    font-weight: 700;
}
.tradein-promo__img {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tradein-promo__img img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
}

/* Steps */
.tradein-step {
    background: #f3f3f3;
    border-radius: 6px;
    padding: 28px 18px;
    min-height: 130px;
}
.tradein-step__t {
    font-weight: 600;
    font-size: 26px;
}
.tradein-step__d {
    margin-top: 8px;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.35;
}
.tradein-step--accent {
    background: #fdeee6;
}
.tradein-step--accent .tradein-step__t {
    color: #ff6a1a;
}
.tradein-step--accent .tradein-step__d {
    color: rgba(0, 0, 0, 0.6);
}

/* FAQ */
.tradein-faq {
    border-radius: 6px;
    overflow: hidden;
}
.tradein-faq__item {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #f3f3f3;
    margin-bottom: 10px;
}
.tradein-faq__btn {
    background-color: #f3f3f3 !important;
    box-shadow: none !important;
    padding: 14px 16px;
    font-weight: 500;
}
.tradein-faq__btn.collapsed {
    background: #f3f3f3;
}
.tradein-faq__btn::after {
    background-size: 14px;
}
.tradein-faq__body {
    padding: 0 16px 14px 16px;
    color: rgba(0, 0, 0, 0.55);
    font-size: 13px;
    line-height: 1.35;
    background: #f3f3f3;
}

@media (max-width: 991.98px) {
    .tradein-hero__grid {
        grid-template-columns: 1fr;
    }
}
.fav__h1 {
    font-size: 22px;
    font-weight: 700;
}
.fav__count {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.65);
}
.fav__sort {
    border-radius: 10px;
}
.fav__view {
    display: inline-flex;
    gap: 8px;
}
.fav__view-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.55);
}
.fav__view-btn.is-active {
    color: #ff6a1a;
    border-color: rgba(255, 106, 26, 0.25);
    background: rgba(255, 106, 26, 0.08);
}
.fav__pagination {
    gap: 6px;
}
.fav__pagination .page-link {
    border: 0;
    background: transparent;
    border-radius: 999px;
    min-width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
    font-size: 14px;
}
.fav__pagination .page-item.active .page-link {
    background: rgba(253, 126, 20, 0.15);
    color: #fd7e14;
    font-weight: 700;
}

/* Card */
.fav-card {
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 20px;
}
.fav-card__img {
    position: relative;
    background: #f3f3f3;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fav-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fav-card__actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
}
.fav-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.55);
}
.fav-card__icon.is-active {
    color: #ff6a1a;
}
.fav-card__name {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 26px;
    color: rgba(0, 0, 0, 0.85);
}

/* List view (optional layout change) */
.fav__root--list .fav-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: stretch;
}
.fav__root--list .fav-card .fav-card__img {
    height: 240px;
    width: 400px;
}
.fav__root--list .fav-card .fav-card__name {
    display: flex;
    align-items: center;
}

@media (max-width: 575.98px) {
    .fav__root--list .fav-card {
        grid-template-columns: 1fr;
    }
}
.privacy main a {
    border-bottom: 1.5px dotted #fa8669;
}
.privacy main a {
    display: inline;
    padding: 0.05em;
    background-color: #fcf8e3;
    word-wrap: break-word;
}
.privacy__accordion-item {
    border: none;
    background: transparent;
}
.privacy__accordion-button {
    background-color: #f2f2f2;
    border-radius: 4px !important;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
    padding: 12px 20px;
    margin-bottom: 5px;
    box-shadow: none;
}
.privacy__accordion-button::after {
    filter: grayscale(1);
    scale: 0.8;
}
.privacy__accordion-button:not(.collapsed) {
    background-color: #eee;
    color: #000;
}
.privacy__accordion-button:focus {
    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.15);
}
.privacy__nav-link {
    color: rgba(30, 30, 30, 0.6);
    padding: 0px;
}
.privacy__nav-link:hover {
    color: rgba(30, 30, 30, 0.8);
}

.vacancies-section {
    --bg-soft: #f6f6f6;
    --card-bg: #f5f5f5;
    --card-hover: #fff3ec;
    --text: #222;
    --muted: #9aa0ad;
    margin-bottom: 25px;
}
.vacancies-section .vacancies-filters .filter-select {
    min-width: 240px;
    flex: 0 0 auto;
}
.vacancies-section .vacancies-filters .form-select {
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    padding-left: 14px;
}
.vacancies-section .vacancies-filters .btn-apply {
    height: 40px;
    border-radius: 999px;
    padding: 0 26px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    min-width: 220px;
}
.vacancies-section .vacancies-filters .btn-apply:hover {
    filter: brightness(0.96);
}
.vacancies-section .vacancies-filters .btn-reset {
    color: #9aa0ad;
    text-decoration: none;
    font-size: 13px;
    border: none;
    background: transparent;
    padding: 0;
}
.vacancies-section .vacancies-filters .btn-reset:hover {
    color: #666;
}
.vacancies-section .vacancy-card {
    cursor: pointer;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 18px 18px 16px;
    min-height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s ease;
}
.vacancies-section .vacancy-card:hover {
    background: rgba(255, 95, 27, 0.1019607843);
}
.vacancies-section .vacancy-card.is-active {
    background: #fff3ec;
}
.vacancies-section .vacancy-card__title {
    font-weight: 800;
    color: #1b1c1e;
    font-size: 26px;
    margin-bottom: 10px;
}
.vacancies-section .vacancy-card__badges {
    display: flex;
    font-size: 17px;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.vacancies-section .vacancy-card .pill {
    font-size: 14px;
    color: #777;
    background: #e9e9e9;
    padding: 8px 12px;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
}
.vacancies-section .vacancy-card__text {
    font-size: 17px;
    color: #8b8b8b;
    line-height: 1.45;
    margin-top: 2px;
    flex: 1 1 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vacancies-section .vacancy-card__footer {
    margin-top: 12px;
}
.vacancies-section .vacancy-card .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.04);
    line-height: 1;
}
.vacancies-section .vacancy-card .tag--orange {
    background: var(--color-primary);
    color: #fff;
}
@media (max-width: 991.98px) {
    .vacancies-section .vacancies-filters .filter-select {
        min-width: 100%;
    }
    .vacancies-section .vacancies-filters .btn-apply {
        width: 100%;
        min-width: 100%;
    }
    .vacancies-section .vacancies-filters .btn-reset {
        margin-left: 0 !important;
    }
}

.resume-section {
    padding: 70px 0;
}

.resume-wrap {
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    background: url("/images/resume-bg.jpg") center/cover no-repeat; /* поменяй путь */
}

/* карточка слева */
.resume-card {
    width: 540px;
    max-width: 100%;
    margin: 50px 0 50px 60px;
    padding: 34px 34px 28px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    color: #fff;
}

.resume-title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: -0.02em;
}

/* labels */
.resume-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    margin-bottom: 6px;
}

/* inputs like white pills */
.resume-input,
.resume-textarea {
    border: 0;
    outline: 0;
    background: #fff;
    border-radius: 30px;
    padding: 18px;
    font-size: 18px;
}

.resume-textarea {
    border-radius: 16px;
    height: auto;
    padding: 14px 18px;
    resize: none;
}

/* focus */
.resume-input:focus,
.resume-textarea:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.22);
}

/* file */
.resume-file__input {
    display: none;
}

.resume-file__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    font-weight: 500;
}

.resume-file__ico {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.resume-file__hint {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

/* submit btn */
.resume-submit {
    border-radius: 30px;
    padding: 18px;
    background: var(--color-primary);
    border: none;
    color: #fff;
    font-weight: 700;
}

.resume-submit:hover {
    filter: brightness(0.96);
}

.resume-submit:active {
    transform: translateY(1px);
}

.resume-submit:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.22);
}

/* policy */
.resume-policy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.resume-policy a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}

/* responsive */
@media (max-width: 991.98px) {
    .resume-wrap {
        padding: 8px;
    }
    .resume-card {
        margin: 4px 6px;
        width: auto;
        padding: 15px;
    }
    .resume-title {
        font-size: 26px;
    }
}
.vacancy-single {
    --border: rgba(0, 0, 0, 0.08);
    --muted: #9aa0ad;
}
.vacancy-single .vacancy-title {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
}
.vacancy-single .vacancy-pills {
    align-items: center;
}
.vacancy-single .pill {
    font-size: 14px;
    color: #777;
    background: #eee;
    padding: 8px 12px;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.vacancy-single .pill--orange {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    font-weight: 700;
}
.vacancy-single .vacancy-block {
    margin-top: 18px;
}
.vacancy-single .vacancy-block__title {
    font-weight: 800;
    font-size: 14px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.vacancy-single .vacancy-list {
    padding-left: 18px;
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.55;
}
.vacancy-single .vacancy-list li {
    margin-bottom: 8px;
}
.vacancy-single {
    /* Right panel */
}
.vacancy-single .resume-panel {
    background: #f6f6f6;
    border: 1px solid var(--border);
    padding: 18px;
}
.vacancy-single .resume-panel__title {
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--color-primary);
}
.vacancy-single .rp-input {
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    font-size: 18px;
    padding-left: 16px;
}
.vacancy-single .rp-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.14);
    border-color: rgba(255, 106, 0, 0.35);
}
.vacancy-single .rp-textarea {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    font-size: 14px;
    padding: 12px 16px;
    resize: none;
}
.vacancy-single .rp-textarea:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.14);
    border-color: rgba(255, 106, 0, 0.35);
}
.vacancy-single .rp-file__input {
    display: none;
}
.vacancy-single .rp-file__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #444;
    font-weight: 600;
    font-size: 13px;
}
.vacancy-single .rp-file__ico {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.06);
}
.vacancy-single .rp-file__hint {
    margin-top: 8px;
    color: #a3a3a3;
    font-size: 11px;
    line-height: 1.4;
}
.vacancy-single .rp-submit {
    border-radius: 30px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-weight: 800;
    padding: 18px;
    font-size: 18px;
}
.vacancy-single .rp-submit:hover {
    filter: brightness(0.96);
}
.vacancy-single .rp-submit:active {
    transform: translateY(1px);
}
.vacancy-single .rp-submit:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.18);
}
.vacancy-single .rp-policy {
    font-size: 11px;
    color: #b0b0b0;
    text-align: center;
}
.vacancy-single .rp-policy a {
    color: #9a9a9a;
    text-decoration: underline;
}
.vacancy-single .rp-policy a:hover {
    color: #666;
}

.news-index {
    --border: rgba(0, 0, 0, 0.06);
    --muted: #9aa0ad;
}
.news-index .news-filters .nf-select {
    min-width: 260px;
}
.news-index .news-filters .nf-input {
    min-width: 260px;
    flex: 1 1 auto;
}
.news-index .news-filters .form-select,
.news-index .news-filters .input-group {
    height: 40px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
}
.news-index .news-filters .input-group-text {
    border-radius: 999px 0 0 999px;
    color: #b5b5b5;
}
.news-index .news-filters .form-control {
    border-radius: 0 999px 999px 0;
    box-shadow: none !important;
    padding-left: 6px;
}
.news-index .news-filters .form-select:focus,
.news-index .news-filters .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.12);
    border-color: rgba(255, 106, 0, 0.35);
}
.news-index .news-filters .nf-apply {
    height: 40px;
    min-width: 220px;
    border-radius: 999px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    padding: 0 26px;
}
.news-index .news-filters .nf-apply:hover {
    filter: brightness(0.96);
}
.news-index .news-filters .nf-reset {
    text-decoration: none;
    color: #9aa0ad;
    font-size: 13px;
}
.news-index .news-filters .nf-reset:hover {
    color: #666;
}
.news-index .news-card {
    background: #f7f7f7;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: 0.2s ease;
}
.news-index .news-card:hover {
    background: #fff3ec;
}
.news-index .news-card.is-highlight {
    background: #fff3ec;
}
.news-index .news-card__img {
    display: block;
    height: 380px;
    overflow: hidden;
}
.news-index .news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 18px 28px;
}
.news-index .news-card__body {
    padding: 14px 14px 12px;
}
.news-index .news-card__title {
    display: block;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.25;
    margin-top: 12px;
    margin-left: 28px;
    color: #222;
    text-decoration: none;
}
.news-index .news-card__title:hover {
    text-decoration: underline;
}
.news-index .news-card__meta {
    margin-top: 10px;
    display: flex;
    gap: 14px;
    margin-left: 28px;
    flex-wrap: wrap;
    font-size: 16px;
    color: #b0b0b0;
}
@media (max-width: 991.98px) {
    .news-index .news-filters .nf-select,
    .news-index .news-filters .nf-input {
        min-width: 100%;
    }
    .news-index .news-filters .nf-apply {
        width: 100%;
        min-width: 100%;
    }
    .news-index .news-filters .nf-reset {
        margin-left: 0 !important;
    }
}

.news-detail {
    --border: rgba(0, 0, 0, 0.06);
    --muted: #9aa0ad;
}
.news-detail__title {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.02em;
    margin: 0;
}
.news-detail .nd-figure {
    margin: 0;
}
.news-detail .nd-figure__img {
    border-radius: 12px;
    overflow: hidden;
    background: #eee;
}
.news-detail .nd-figure__img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.news-detail .nd-figure__cap {
    margin-top: 10px;
    font-size: 16px;
    color: #777;
    line-height: 1.45;
}
.news-detail .nd-figure__cap span {
    display: block;
    color: #b0b0b0;
    margin-top: 4px;
}
.news-detail .nd-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.55;
    margin-bottom: 10px;
}
.news-detail .nd-text h3 {
    font-size: 18px;
    font-weight: 900;
    color: #111;
    margin: 12px 0 8px;
}
.news-detail .nd-note {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #f7f7f7;
}
.news-detail .nd-note__icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(255, 106, 0, 0.14);
    color: var(--color-primary);
    font-weight: 900;
    flex: 0 0 auto;
}
.news-detail .nd-note__text {
    font-size: 16px;
    color: #666;
    line-height: 1.45;
}
.news-detail .nd-table-title {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.news-detail .nd-table {
    margin: 0;
    border-color: var(--border);
}
.news-detail .nd-table th {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 900;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.news-detail .nd-table td {
    font-size: 16px;
    color: #666;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: top;
}
.news-detail .nd-list-title {
    font-weight: 900;
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.news-detail .nd-list {
    margin: 0;
    padding-left: 18px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}
.news-detail .nd-list li {
    margin-bottom: 7px;
}
.news-detail .nd-list--ul {
    list-style: disc;
}
.news-detail .nd-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.news-detail .nd-side__img {
    border-radius: 12px;
    overflow: hidden;
    background: #eee;
}
.news-detail .nd-side__img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.news-detail .nd-date {
    text-align: right;
    font-size: 16px;
    color: #b0b0b0;
}
@media (max-width: 991.98px) {
    .news-detail .nd-figure__img img {
        height: 260px;
    }
    .news-detail .nd-side__img img {
        height: 360px;
    }
}

.reviews-page {
    --border: rgba(0, 0, 0, 0.06);
    --muted: #9aa0ad;
    --card: #f7f7f7;
}
.reviews-page__title {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
}
.reviews-page__count {
    font-size: 14px;
    color: #666;
    background: #eee;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.reviews-page__btn {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}
.reviews-page__btn:hover {
    filter: brightness(0.96);
}
.reviews-page .reviews-sort__btn {
    color: #b0b0b0;
    font-size: 14px;
    text-decoration: none;
}
.reviews-page .reviews-sort__btn:hover {
    color: #777;
}
.reviews-page .review-item {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 16px;
    min-height: 175px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.reviews-page .review-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.reviews-page .review-item__user {
    display: flex;
    align-items: center;
    gap: 10px;
}
.reviews-page .review-item__name {
    font-size: 14px;
    color: #b5b5b5;
    margin-bottom: 0;
}
.reviews-page .review-item__thumb {
    width: 120px;
    height: 90px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.reviews-page .review-item__thumb img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}
.reviews-page .review-item__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #666;
    font-size: 14px;
}
.reviews-page .review-item__stars {
    color: var(--color-primary);
    letter-spacing: 2px;
    font-size: 20px;
    white-space: nowrap;
    margin-top: 2px;
}
.reviews-page .review-item__text {
    font-size: 14px;
    color: #777;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.reviews-page .review-item__actions {
    margin-top: auto;
}
.reviews-page .review-item__read {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.reviews-page .review-item__read.is-orange {
    color: var(--color-primary);
    border-bottom-color: rgba(255, 106, 0, 0.35);
}
.reviews-page .review-item__read:hover {
    color: #777;
}
.reviews-page .review-item__date {
    font-size: 10px;
    color: #c0c0c0;
}
@media (max-width: 575.98px) {
    .reviews-page__title {
        font-size: 18px;
    }
}

.write-review {
    --border: rgba(0, 0, 0, 0.06);
    --muted: #9aa0ad;
    --soft: #f7f7f7;
}
.write-review__title {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
}
.write-review .wr-card {
    background: #f7f7f7;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}
.write-review .wr-label {
    font-size: 18px;
    margin-bottom: 6px;
    margin-left: 10px;
}
.write-review .wr-input {
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px;
    font-size: 18px;
}
.write-review .wr-input:focus {
    background: #fff;
    border-color: rgba(255, 106, 0, 0.35);
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.12);
}
.write-review .wr-textarea {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px 16px;
    resize: none;
}
.write-review .wr-textarea:focus {
    background: #fff;
    border-color: rgba(255, 106, 0, 0.35);
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.12);
}
.write-review .wr-upload {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.write-review .wr-upload__input {
    display: none;
}
.write-review .wr-upload__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #b0b0b0;
    font-size: 12px;
    text-decoration: none;
    width: fit-content;
}
.write-review .wr-upload__btn:hover {
    color: #777;
}
.write-review .wr-upload__ico {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.05);
    color: #777;
}
.write-review .wr-upload__hint {
    font-size: 14px;
    color: #c0c0c0;
}
.write-review .wr-submit {
    border-radius: 309px;
    padding: 18px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}
.write-review .wr-submit:hover {
    filter: brightness(0.96);
}
.write-review .wr-submit:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.15);
}
.write-review .wr-policy {
    font-size: 11px;
    color: #c0c0c0;
    text-align: center;
}
.write-review .wr-policy a {
    color: #b0b0b0;
    text-decoration: underline;
}
.write-review .wr-policy a:hover {
    color: #777;
}
.write-review {
    /* right info block */
}
.write-review .wr-info {
    height: 100%;
    background: #f7f7f7;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.write-review .wr-info__title {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: #111;
    margin-bottom: 6px;
}
.write-review .wr-info__sub {
    font-size: 12px;
    color: #8c8c8c;
    line-height: 1.4;
}
.write-review .wr-info__list {
    margin: 0;
    padding-left: 18px;
    font-size: 12px;
    color: #444;
    line-height: 1.5;
}
.write-review .wr-info__list li {
    margin-bottom: 8px;
}
.write-review .wr-info__img {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.write-review .wr-info__img img {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 991.98px) {
    .write-review .wr-info__img {
        justify-content: center;
    }
    .write-review .wr-info__img img {
        max-width: 200px;
    }
}

.promo-card {
    display: block;
    position: relative;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    background-color: #eee;
}
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
    filter: brightness(45%);
}
.promo-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}
.promo-card .promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 15px;
    z-index: 2;
    color: white;
}
.promo-card .promo-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}
.promo-card .promo-content p {
    font-size: 17px;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}
.promo-card .promo-content .discount-tag {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}
.promo-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: #ff5f1b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}
.promo-card .play-btn i {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 3px;
}
.promo-card:hover img {
    transform: scale(1.05);
}
.promo-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 767px) {
    .promo-card {
        height: 320px;
    }
}
.reviews-section {
    --card-bg: #f5f5f5;
    --muted: #8c8c8c;
    --star: #ff6a00;
}
.reviews-section .reviews-title {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
}
.reviews-section .reviews-count {
    font-size: 12px;
    color: #666;
    background: #eee;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.reviews-section .reviews-btn {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #111;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}
.reviews-section .reviews-btn:hover {
    filter: brightness(0.96);
}
.reviews-section .review-card {
    background: var(--card-bg);
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.reviews-section .review-card--big {
    padding: 18px;
}
.reviews-section .review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.reviews-section .review-photo {
    width: auto;
    height: 180px;
    overflow: hidden;
    margin-bottom: 25px;
    flex: 0 0 auto;
}
.reviews-section .review-photo img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    display: block;
}
.reviews-section .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #555;
    flex: 0 0 auto;
}
.reviews-section .review-meta {
    flex: 1 1 auto;
    min-width: 0;
}
.reviews-section .review-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
.reviews-section .review-stars {
    color: var(--star);
    letter-spacing: 2px;
    font-size: 18px;
    text-align: right;
    white-space: nowrap;
}
.reviews-section .review-text {
    color: #444;
    font-size: 12.5px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* обрезка как в макете */
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
    overflow: hidden;
}
.reviews-section .review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 2px;
}
.reviews-section .review-date {
    font-size: 11px;
    color: var(--muted);
}
.reviews-section .review-link {
    font-size: 11px;
    color: var(--star);
    text-decoration: none;
    font-weight: 600;
}
.reviews-section .review-link:hover {
    text-decoration: underline;
}
@media (max-width: 575.98px) {
    .reviews-section .reviews-title {
        font-size: 18px;
    }
    .reviews-section .review-stars {
        text-align: left;
    }
}

.modern-card {
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}
.modern-card .swiper-wrapper {
    background: #f5f5f5 !important;
}
.modern-card .swiper-backface-hidden .swiper-slide {
    background: #f5f5f5 !important;
}
.modern-card:hover {
    background-color: #fff0e9 !important;
}
.modern-card__media {
    position: relative;
    max-height: 360px;
    object-fit: cover;
    padding: 0;
    overflow: hidden;
}
.modern-card__mediaLink {
    display: block;
    height: 100%;
    text-decoration: none;
}
.modern-card {
    /* Swiper внутри карточки */
}
.modern-card__swiper {
    height: 100%;
}
.modern-card .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modern-card .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 14px;
}
.modern-card {
    /* Длинные bullets-полоски (как на макете) */
}
.modern-card__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 45px !important;
    z-index: 4;
    height: 5px;
    display: flex;
    justify-content: center;
    gap: 8px;
    pointer-events: auto;
}
.modern-card .swiper-pagination-bullet {
    width: 40px;
    height: 5px;
    background: rgba(0, 0, 0, 0.22);
    opacity: 1;
    margin: 0 !important;
    transition: 0.2s ease;
}
.modern-card .swiper-pagination-bullet-active {
    background: var(--color-primary);
}
.modern-card {
    /* Кнопки справа сверху */
}
.modern-card__actions {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}
.modern-card .icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: #fff0e9;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    display: grid;
    place-items: center;
    line-height: 1;
    transition: 0.2s ease;
}
.modern-card .icon-btn:hover {
    transform: translateY(-1px);
}
.modern-card .icon-btn.is-active {
    color: var(--color-primary);
}
.modern-card__body {
    padding: 0 28px 28px 28px;
}

.modern-card__title {
    font-weight: 800;
    font-size: 30px;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    min-height: 100px;
}
.modern-card__title:hover {
    text-decoration: underline;
}
.modern-card__spec {
    padding: 10px 0;
}
.modern-card__spec .spec-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 3px 0;
    font-size: 16px;
}
.modern-card__spec .spec-row span {
    color: rgba(27, 28, 30, 0.5019607843);
}
.modern-card__spec .spec-row span:first-child {
    display: flex;
    align-items: center;
    flex: 1;
}
.modern-card__spec .spec-row span:first-child::after {
    content: "";
    flex: 1;
    border-bottom: 1px dotted #999;
    margin: 0 10px;
}
.modern-card__prices {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.modern-card__prices .label {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 2px;
}
.modern-card__prices .price {
    font-weight: 600;
    font-size: 20px;
    color: #000000;
}
.modern-card__prices .credit {
    font-weight: 600;
    font-size: 20px;
    color: var(--color-primary);
    white-space: nowrap;
}
.modern-card {
    /* LIST variant */
}
.modern-card--list {
    flex-direction: row;
}
.modern-card--list .modern-card__media {
    width: 450px;
    height: auto;
}
.modern-card--list .modern-card__body {
    width: 100%;
    height: auto;
    padding-right: 20px;
}
@media (max-width: 767.98px) {
    .modern-card--list {
        flex-direction: column;
    }
    .modern-card--list .modern-card__media {
        width: 100%;
        height: 320px;
    }
}

.buyout-form-section {
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url("/images/cta-bg.jpg") no-repeat center center;
    background-size: cover;
    min-height: 650px;
    padding: 80px 0;
    display: flex;
    align-items: center;
}
.buyout-form-section .buyout-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 15px;
}
.buyout-form-section .buyout-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}
.buyout-form-section .buyout-form-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.buyout-form-section .buyout-form-card .form-label {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 400;
}
.buyout-form-section .buyout-form-card .pill-input {
    background-color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 20px;
    font-size: 14px;
}
.buyout-form-section .buyout-form-card .pill-input::placeholder {
    color: #aaa;
}
.buyout-form-section .buyout-form-card .pill-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 95, 27, 0.25);
}
.buyout-form-section .buyout-form-card .select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 14px 10px;
}
.buyout-form-section .buyout-form-card .btn-buyout-orange {
    background-color: #ff5f1b;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}
.buyout-form-section .buyout-form-card .btn-buyout-orange:hover {
    background-color: rgb(255, 112.8947368421, 52.5);
    transform: translateY(-2px);
}
.buyout-form-section .buyout-form-card .privacy-note {
    font-size: 11px;
    color: #888;
    margin: 0;
}
.buyout-form-section .buyout-form-card .privacy-note a {
    color: #888;
    text-decoration: underline;
}
.buyout-form-section .buyout-form-card .privacy-note a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .buyout-form-section {
        text-align: center;
    }
    .buyout-form-section .buyout-title {
        font-size: 32px;
    }
    .buyout-form-section .buyout-form-card {
        margin: 0 auto;
        padding: 30px 20px;
    }
}
.complectations__title {
    font-size: 24px;
    letter-spacing: -0.3px;
}

.complectations__engine {
    font-size: 18px;
}

.complectations__promo {
    font-size: 18px;
    color: #ff5f1b;
}

.complectations__card {
    background-color: #f5f5f5;
    margin-top: 4px;
    margin-bottom: 4px;
}

.complectations__fg {
    background-color: #ffffff;
    margin: 6px 20px;
}

.complectations__trim-toggle {
    color: #ff5f1b;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
}
.complectations__trim-toggle:hover {
    color: #e04a0a;
}
.complectations__trim-toggle[aria-expanded="true"] .complectations__chevron {
    transform: rotate(180deg);
}

.complectations__chevron {
    transition: transform 0.2s ease;
    color: currentColor;
}

.complectations__price-label {
    font-size: 18px;
    color: rgba(27, 28, 30, 0.5019607843);
    letter-spacing: 0.5px;
}

.complectations__price-old {
    font-size: 18px;
    color: #c0c0c0;
}

.complectations__price-new {
    font-size: 18px;
}

.complectations__price-credit {
    font-size: 18px;
}

.complectations__trim-name {
    font-size: 18px;
    font-weight: 700;
}

.complectations__cta {
    background-color: #ff5f1b !important;
    color: #fff !important;
    border: none !important;
    border-radius: 30px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 6px 20px;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.complectations__cta:hover,
.complectations__cta:focus-visible {
    background-color: #e04a0a !important;
    box-shadow: 0 4px 14px rgba(255, 95, 27, 0.32);
    transform: translateY(-1px);
}
.complectations__cta:active {
    transform: translateY(0);
}

.complectations__features {
    background: #fafafa;
}

.complectations__fg-toggle {
    font-size: 18px;
    font-weight: 500;
    padding: 3px;
    color: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
}
.complectations__fg-toggle:hover {
    color: #ff5f1b;
}
.complectations__fg-toggle[aria-expanded="true"] .complectations__chevron {
    transform: rotate(180deg);
}

.complectations__fg-list {
    gap: 2px 0;
}
.complectations__fg-list .complectations__fg-item {
    font-size: 16px;
    color: rgba(27, 28, 30, 0.5019607843);
    line-height: 1.6;
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 8px;
    margin: 2px;
}

@media (max-width: 575.98px) {
    .complectations__cta {
        width: 100%;
        text-align: center;
        padding: 16px 10px;
    }
}
:root {
    --swiper-navigation-color: #f67035;
}
.model-content {
    min-height: 90px;
}
@media (max-width: 767.98px) {
    .car-detail__color-swatch {
        width: 20px;
        height: 20px;
    }
    .car-detail__color-label {
        display: block;
        font-size: 12px;
    }
    .car-detail__color-picker > div {
        margin-top: 0 !important;
    }
    .car-detail__image {
        margin-bottom: 30px;
    }
    .modern-card__title {
        min-height: fit-content;
    }
}
.modern-card__pagination .swiper-pagination-bullet {
    border-radius: 0 !important;
}
.btn-more {
    background-color: rgba(255, 95, 27, 0.1);
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
}
.modern-card .swiper-wrapper {
    background: transparent !important;
}

.ucd__title {
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 700;
}

.ucd__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    background: #fff0e9;
    border-radius: 8px;
    padding: 2px 8px;
    letter-spacing: 0.3px;
}

.ucd__badge--new {
    background: #f0f8ee;
    color: #3a7d2e;
}

.ucd__badge--year {
    background: #f5f5f5;
    color: #909090;
}

.ucd__price {
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.4px;
    white-space: nowrap;
}

.ucd__price--mobile {
    font-size: 20px;
}

.ucd__price-credit {
    font-size: 18px;
    color: #ff5f1b;
    font-weight: 500;
    white-space: nowrap;
}

.ucd__cta-primary {
    background-color: #ff5f1b !important;
    color: #fff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.ucd__cta-primary:hover,
.ucd__cta-primary:focus-visible {
    background-color: #e04a0a !important;
    box-shadow: 0 6px 18px #ff5f1b52;
    transform: translateY(-1px);
}

.ucd__cta-primary:active {
    transform: translateY(0);
}

.ucd__cta-secondary {
    background: #f5f5f5 !important;
    color: #1a1a1a !important;
    border: 1.5px solid #f5f5f5 !important;
    border-radius: 30px !important;
    padding: 10px 18px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    white-space: nowrap;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.ucd__cta-secondary:hover {
    border-color: #ff5f1b !important;
    color: #ff5f1b !important;
    background: #fff3ee !important;
}

.ucd__icon-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1.5px solid #e8e8e8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff5f1b;
    background: #fff3ee;
    cursor: pointer;
    flex-shrink: 0;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.ucd__icon-btn:hover {
    color: #ff5f1b;
    background: #fff3ee;
}

.ucd-gallery {
    display: grid;
    gap: 4px;
}

@media (min-width: 768px) {
    .ucd-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 500px;
        grid-template-areas: "main thumbs";
        height: 500px;
    }
}

@media (max-width: 767.98px) {
    .ucd-gallery {
        grid-template-columns: 1fr;
        grid-template-areas: "main" "thumbs";
    }
}

.ucd-gallery__main {
    grid-area: main;
    display: block;
    overflow: hidden;
    background: #f0f0f0;
}

@media (max-width: 767.98px) {
    .ucd-gallery__main {
        border-radius: 6px 6px 0 0;
        height: 260px;
    }
}

.ucd-gallery__img {
    transition: transform 0.4s ease;
    display: block;
}

.ucd-gallery__main:hover .ucd-gallery__img {
    transform: scale(1.03);
}

.ucd-gallery__thumbs {
    grid-area: thumbs;
    display: grid;
    gap: 4px;
}

@media (min-width: 768px) {
    .ucd-gallery__thumbs {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .ucd-gallery__thumbs {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 88px;
    }

    .ucd-gallery__thumbs a:nth-child(n + 4) {
        display: none;
    }
}

.ucd-gallery__thumb {
    display: block;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

@media (min-width: 768px) {
    .ucd-gallery__thumb:nth-child(3) {
        border-radius: 0 6px 0 0;
    }

    .ucd-gallery__thumb:nth-child(6) {
        border-radius: 0 0 6px;
    }
}

@media (max-width: 767.98px) {
    .ucd-gallery__thumb:nth-child(3) {
        border-radius: 0 0 6px;
    }

    .ucd-gallery__thumb:nth-child(1) {
        border-radius: 0 0 0 6px;
    }
}

.ucd-gallery__thumb-img {
    display: block;
    transition: transform 0.3s ease;
}

.ucd-gallery__thumb:hover .ucd-gallery__thumb-img {
    transform: scale(1.06);
}

.ucd-gallery__thumb--more .ucd-gallery__thumb-img {
    filter: brightness(0.55);
}

.ucd-gallery__more-badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    pointer-events: none;
}

.promo-container {
    margin-top: -64px;
    transform: rotate(1.6deg);
    transform-origin: left center;
}

.promo-container .promo-ticker {
    background-color: #fff1eb;
    overflow: hidden;
    z-index: auto;
    width: 100%;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 92, 0, 0.1);
    border-bottom: 1px solid rgba(255, 92, 0, 0.1);
    padding: 18px 0;
    transform-origin: left center;
}

.promo-container .promo-ticker .ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: ticker 30s linear infinite;
}

.promo-container .promo-ticker .ticker-content {
    display: flex;
    flex-shrink: 0;
}

.promo-container .promo-ticker .ticker-content span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 50px;
    color: #ff5c00;
    font-weight: 500;
    font-size: 0.9rem;
}

.promo-container .promo-ticker .ticker-content span i {
    margin-right: 8px;
}

@keyframes ticker {
    0% {
        transform: translate(0);
    }

    to {
        transform: translate(-33.333%);
    }
}

@media (max-width: 575.98px) {
    .ucd__cta-secondary {
        padding: 12px 14px !important;
        font-size: 12px !important;
    }

    .ucd-promo__text {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .desktop-price,
    .desktop-buttons {
        display: none !important;
    }

    .ucd__cta-secondary {
        width: 100%;
    }
    .promo-container {
        display: none;
    }
}

.ucd-tabs__nav {
    gap: 0;
    flex-wrap: nowrap;
}

.ucd-tabs__btn {
    position: relative;
    padding: 10px 0;
    margin-right: 28px;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #1a1a1a !important;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.ucd-tabs__btn:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff5f1b;
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
}

.ucd-tabs__btn:hover {
    color: #ff5f1b !important;
}

.ucd-tabs__btn.active {
    color: #ff5f1b !important;
    font-weight: 600;
}

.ucd-tabs__btn.active:after {
    transform: scaleX(1);
}

.ucd-specs {
    padding-top: 12px;
}

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

.ucd-specs__item {
    display: flex;
    align-items: baseline;
    width: 100%;
    font-size: 18px;
}

.ucd-specs__label,
.ucd-specs__value {
    background: #fff;
    position: relative;
    z-index: 2;
}

.ucd-specs__label {
    padding-right: 8px;
    white-space: nowrap;
    order: 1;
}

.ucd-specs__value {
    padding-left: 8px;
    white-space: nowrap;
    order: 3;
}

.ucd-specs__item:before {
    content: "";
    flex: 1;
    order: 2;
    margin: 0 8px;
    height: 1px;
    background-image: radial-gradient(circle, #d8d2cc 1px, transparent 1px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    background-position: center;
}

@media (max-width: 1200px) {
    .ucd-specs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ucd-specs__grid {
        grid-template-columns: 1fr;
    }
}

.ucd-complect {
    padding-top: 8px;
}

.ucd-complect__group-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.1px;
    margin-bottom: 10px;
    margin-top: 0;
}

.ucd-complect__list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ucd-complect__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.45;
}

.ucd-complect__check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    color: #ff5f1b;
}

@media (max-width: 767.98px) {
    .ucd-complect__col {
        padding-bottom: 8px;
        margin-bottom: 20px;
    }

    .ucd-complect__col:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    .slide-content {
        bottom: 0;
    }
    .car-detail__title {
        font-size: 24px;
    }
    .modern-card__prices .credit {
        font-size: 18px;
    }
    .btn-callback {
        margin-left: auto;
    }
    .modern-card__prices .price {
        font-size: 18px;
    }
    .tradein-promo__text {
        font-size: 22px;
    }
    .tradein-step__t {
        font-size: 22px;
    }
    .cta-valuation-section .cta-form-card .cta-title {
        font-size: 26px;
    }
    .cta-valuation-section .cta-form-card .cta-subtitle {
        font-size: 16px;
    }
    .cta__title {
        font-size: 26px;
    }
    .cta__subtitle {
        font-size: 16px;
    }
    nav.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
}
.ucd-complect__grid {
    column-count: 3;
    column-gap: 24px;
}

.ucd-complect__col {
    break-inside: avoid;
    margin-bottom: 24px;
}
.desktop-header-city__button {
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin: 0;
    padding: 0 25px 0 0;
    background: url("../images/arrow-down-dark-icon.svg") no-repeat right 6px;
    text-decoration: none;
}
@media (max-width: 992px) {
    .ucd-complect__grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .ucd-complect__grid {
        column-count: 1;
    }
}

.popup-geo-form {
    padding: 30px;
}

.popup-geo-form__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

.popup-geo-form__content {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    font-size: 14px;
    max-height: 64vh;
    overflow: auto;
}

.main-popup-geo {
    width: 100%;
    max-width: 755px;
}

.popup-geo-form__input {
    max-width: 300px;
    margin-bottom: 25px;
}

.popup-geo-block__heading {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
}

.popup-geo-block__item {
    font-weight: bold;
    text-decoration: none;
    padding-left: 10px;
}

.popup-geo-block a:hover {
    color: #ec021e;
}

.popup-geo-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.popup-geo-form__content__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.--scrollbar-style::-webkit-scrollbar {
    width: 8px;
}

.--scrollbar-style::-webkit-scrollbar-track {
    background-color: #dddddd;
    border-radius: 8px;
}

.--scrollbar-style::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #b5b5b5;
}
