/* ==========================================================================
   HYBRID AUTO ARMENIA - Main Stylesheet
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00A01C;
    --primary-green-80: #00A01CCC;
    --dark-green: #00cc52;
    --white: #ffffff;
    --white-2: #FFFFFF05;
    --white-3: #FFFFFF08;
    --white-5: #FFFFFF0D;
    --white-10: #FFFFFF1A;
    --white-15: #FFFFFF26;
    --white-20: #FFFFFF33;
    --white-30: #FFFFFF4D;
    --white-40: #FFFFFF66;
    --white-50: #FFFFFF80;
    --white-60: #FFFFFF99;
    --white-70: #FFFFFFB2;
    --black: #000000;
    --black-50: #00000080;
    --black-80: #000000CC;
    --text-gray: #999999;
    --text-light-gray: #bbbbbb;
    --text-dark-gray: #666666;
    --bg-card-hover: #1a1a1a;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1728px;
    --header-height: 105px;
    --radius-4: 4px;
    --radius-6: 6px;
    --radius-8: 8px;
    --radius-10: 10px;
    --radius-12: 12px;
    --radius-14: 14px;
    --radius-16: 16px;
    --radius-20: 20px;
    --radius-24: 24px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-green {
    color: var(--primary-green);
}

.text-green-bright {
    color: var(--primary-green);
}

section {
    margin-bottom: 54px;
}

.text-center {
    text-align: center;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: var(--header-height);
    transition: var(--transition);
    font-family: var(--font-heading);
    border-bottom: 1px solid var(--white-5);
    background: var(--black-80);
    box-shadow: 0 4px 24px 0 var(--white-10);
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo img {
    height: 88px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    position: relative;
    padding: 4px 0;
    color: var(--white-70);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 150% */
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-compare-btn {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    text-decoration: none;
}

.header-compare-btn:hover {
    /*border-color: var(--primary-green);*/
    /*color: var(--primary-green);*/
    /*background: rgba(0, 255, 102, 0.05);*/
}

.btn-get-quote {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 32px;
    border: 1px solid var(--primary-green);
    box-shadow: 0 0 15px 0 var(--primary-green)33;
    transition: var(--transition);
    text-decoration: none;
    color: var(--primary-green);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.btn-get-quote:hover {
    background: transparent;
    color: var(--primary-green);
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.2);
}

.lang-selector-dropdown {
    position: relative;
}

.lang-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: transparent;
    border: 0;
    min-width: 60px;
}

.lang-selector, .lang-option {
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    color: var(--white-70);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.lang-selector:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.lang-selector i {
    font-size: 8px;
    transition: var(--transition);
}

.lang-selector-dropdown.open .lang-selector i {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--black-80);
    border: 1px solid var(--white-10);
    min-width: 60px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lang-selector-dropdown.open .lang-dropdown {
    display: block;
}

.lang-option {
    display: block;
    padding: 4px;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.lang-option.active {
    color: var(--primary-green);
    background: rgba(0, 255, 102, 0.08);
}

.mobile-lang-switch {
    display: flex;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--white-5);
    margin-top: 8px;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-60);
    border: 1px solid var(--white-5);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-lang-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.mobile-lang-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.lang-selector i {
    font-size: 8px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--white-5);
}

.mobile-menu.open {
    display: flex;
}

.mobile-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light-gray);
    padding: 12px 0;
    border-bottom: 1px solid var(--white-5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-green);
}

.mobile-quote-btn {
    margin-top: 12px;
    text-align: center;
    display: block;
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 40px;
    background: var(--primary-green);
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 0 20px 0 rgba(0, 255, 0, 0.40);
    color: var(--black);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 1.6px;
    clip-path: polygon(
        0% 0%,
        calc(100% - 20px) 0%,
        100% 20px,
        100% 100%,
        20px 100%,
        0% calc(100% - 20px)
    );

}

.btn-primary:hover, .apply-filters-btn:hover {
    background: transparent;
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.3);
}

.btn-primary:hover svg path {
    stroke: var(--primary-green);
    /*stroke-opacity: 1;*/
}


.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

.btn-primary i {
    font-size: 12px;
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border: 1px solid var(--white-20);
    background: var(--white-5);
    backdrop-filter: blur(4px);
    color: var(--white);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    clip-path: polygon(
        0% 0%,
        calc(100% - 20px) 0%,
        100% 20px,
        100% 100%,
        20px 100%,
        0% calc(100% - 20px)
    );
}

.btn-outline:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(0, 255, 102, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
}

.btn-outline:active {
    transform: translateY(0);
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.7) 45%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    padding-top: var(--header-height);
    width: 100%;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-family: "Michroma", sans-serif;
    font-weight: 400;
    line-height: 100%;
    font-size: clamp(64px, 10vw, 200px);
    color: var(--white);
    background: linear-gradient(90deg, #FFF 0%, rgba(153, 153, 153, 0.50) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-green {
    display: block;
    color: var(--primary-green);
    font-size: clamp(64px, 10vw, 150px);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}

.hero-title-outline {
    display: block;
    font-size: clamp(40px, 6vw, 74px);
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    text-shadow: 0 4px 4px #FFF;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 900;
    line-height: 60px;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-description {
    color: var(--white-60);
    margin-bottom: 32px;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px;
    letter-spacing: 0.9px;
    text-transform: capitalize;
    max-width: 570px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* ---------- Stats Section ---------- */
.stats-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--black);
    position: relative;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 255, 0, 0.05);
    filter: blur(60px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.stat-number {
    font-family: var(--font-heading);
    color: var(--white);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 72px;
    letter-spacing: -2.4px;
}

.stat-label {
    color: var(--white-40);
    text-align: center;
    font-size: 9.5px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- Why Choose Section ---------- */
.why-choose-section {
    padding: 96px 0;
}

.why-choose-header {
    margin-bottom: 64px;
    padding: 0 40px;
}

/*.section-subtitle {*/
/*    font-size: 12px;*/
/*    color: var(--white-60);*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 2px;*/
/*    margin-bottom: 8px;*/
/*}*/

.section-title-styled {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 48px;
    letter-spacing: -2.4px;
    text-transform: uppercase;
}

.section-description-24 {
    color: var(--white-60);
    max-width: 672px;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px;
    letter-spacing: 0.9px;
    text-transform: capitalize;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
    padding: 0 40px;
}

.feature-card {
    border: 1px solid var(--white-10);
    border-radius: var(--radius-14);
    transition: var(--transition);
    background: var(--white-3);
    backdrop-filter: blur(6px);
    padding: 32px;
    overflow: hidden;
    word-wrap: break-word;
}

.feature-card:hover {
    border-color: var(--primary-green);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    letter-spacing: 2px;
}

.feature-description {
    color: var(--white-50);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px;
}

/* ---------- Fleet Section ---------- */
.fleet-section {
    padding: 96px 0;
}

.fleet-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
    flex-wrap: wrap;
    gap: 20px;
}

.fleet-section .section-title-styled {
    margin-bottom: 0;
}

.section-subtitle-small {
    color: var(--primary-green);
    font-family: var(--font-heading);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.fleet-filters {
    display: flex;
    gap: 12px;
}

.filter-btn {
    padding: 8px 16px;
    transition: var(--transition);
    border: 1px solid var(--white-10);
    color: var(--white-40);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 1.32px;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    border-radius: 4px;
}

.filter-btn:hover {
    background: var(--white-5);
}

.filter-btn.active {
    background: var(--primary-green);
    color: var(--black);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Vehicle Card */
.vehicle-card {
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-8);
    border: 1px solid var(--white-15);
    background: #0A0A0A;
}

.vehicle-card:hover {
    border-color: rgba(0, 255, 102, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.vehicle-image {
    width: 100%;
    aspect-ratio: 358/268;
    overflow: hidden;
    position: relative;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-compare-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    text-decoration: none;
    border: 1px solid var(--white-40);
    background: #000;
    box-shadow: 0 4px 4px 0 var(--white-20);
    backdrop-filter: blur(6px);
}

.vehicle-compare-icon:hover {
    background: var(--white-15);
    border-color: rgba(0, 255, 102, 0.4);
}

.vehicle-compare-icon:hover svg path {
    stroke: var(--primary-green);
    stroke-opacity: 1;
}

.vehicle-image-placeholder,
.highlight-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    color: var(--white-50);
    font-size: 48px;
}

.vehicle-image-placeholder img,
.highlight-image-placeholder img,
.slot-image-placeholder img {
    object-fit: contain !important;
}

.highlight-image-placeholder {
    aspect-ratio: 16/9;
}

.fleet-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--white-60);
    font-size: 16px;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Name + Armenia price row */
.vehicle-name-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.vehicle-name-col {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
}

.vehicle-name, .vehicle-trim {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 27px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}


/* Armenia price badge */
.vehicle-armenia-price {
    flex-shrink: 0;
    text-align: right;
}

.armenia-label {
    display: block;
    color: var(--white-20);
    text-align: right;
    font-size: 8px;
    font-style: normal;
    font-weight: 900;
    line-height: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.armenia-label span {
    display: block;
}

.armenia-value {
    font-family: var(--font-heading);
    white-space: nowrap;
    color: var(--white);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 18px;
    letter-spacing: -0.3px;
    display: flex;
    padding: 2.5px 8px;
    justify-content: center;
    border-radius: var(--radius-4);
    border: 1px solid var(--white-10);
    background: var(--white-5);
}


.price-green {
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 24px;
}

/* Spec pills */
.vehicle-specs {
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    background-color: var(--white-2);
    margin-bottom: 24px;
    margin-top: auto;
}

.spec-pill {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    min-width: 0;
    padding: 10px 6px;
    gap: 4px;
}

.spec-pill svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.spec-pill span {
    font-size: 10px;
    color: var(--white-60);
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
}

/* Details button - full width, glassmorphism */
.vehicle-details-btn {
    gap: 8px;
    /*margin-top: auto;*/
}

.vehicle-details-btn:hover svg path{
    stroke: var(--primary-green);
    transition: var(--transition);
}

.fleet-view-more {
    text-align: center;
    margin-top: 44px;
}

.view-more-link {
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;


    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px; /* 150% */
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.view-more-link:hover {
    color: var(--white);
}

.view-more-link i {
    font-size: 10px;
    transition: var(--transition);
}

.view-more-link:hover i {
    transform: translateX(3px);
}

/* ---------- Highlight Section ---------- */
.highlight-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #0A0A14 0%, #000 100%);
}

.highlight-wrapper {
    padding: 0 62px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    overflow: hidden;
}

.highlight-image {
    position: relative;
    border: 2px solid transparent;
}

.highlight-image::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 48px;
    height: 48px;
    border-top: 2px solid var(--primary-green);
    border-left: 2px solid var(--primary-green);
    border-top-left-radius: var(--radius-14);
}

/* Правый нижний угол */
.highlight-image::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 48px;
    height: 48px;
    border-bottom: 2px solid var(--primary-green);
    border-right: 2px solid var(--primary-green);
    border-bottom-right-radius: var(--radius-14);
}

.highlight-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-16);
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 84px);
    font-weight: 900;
    line-height: 107%;
    margin-bottom: 8px;
    font-style: normal;
    text-transform: uppercase;
}

.highlight-title-outline {
    text-shadow: 0 4px 4px #FFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 74px;
    font-weight: 900;
    line-height: 60px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #000;
    -webkit-text-stroke: 1px var(--primary-green);

}

.highlight-description {
    color: var(--white-60);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
}

.highlight-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    margin-bottom: 50px;
}

.highlight-spec-value {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 48px;
    text-transform: uppercase;
}

.spec-unit {
    font-size: 14px;
    line-height: 21px;
    color: var(--primary-green);
}

.highlight-spec-label {
    color: var(--white-40);
    font-family: var(--font-heading);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- Calculator Section ---------- */
.calculator-section {
    padding: 96px 0;
}

.calculator-section .container {
    position: relative;
}

.calculator-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 255, 0, 0.05);
    filter: blur(90px);
    border-radius: 33554400px;
}

.calculator-header {
    text-align: center;
    margin: 0 auto 64px;
    max-width: 768px;
}

.section-description-18 {
    color: var(--white-60);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.calculation-container {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.form-column {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: var(--radius-16);
    border: 1px solid var(--white-10);
    background: var(--white-2);
    backdrop-filter: blur(12px);
}

.form-column-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.form-label {
    color: var(--white-60);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
    border: 1px solid var(--white-10);
    background: var(--white-5);
    border-radius: var(--radius-10);
    padding: 12px 16px;
    font-family: var(--font-body);
    color: var(--white);
    transition: var(--transition);
    font-size: 14.6px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.sort-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 15px 0 rgba(0, 255, 0, 0.30);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--white-40);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='white' stroke-opacity='0.4' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option, .slot-vehicle-select option, .sort-select option {
    background: var(--black);
    color: var(--white);
}


.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.auction-type-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--white-10);
    background: var(--white-5);
    border-radius: var(--radius-10);
    padding: 4px;
}

.auction-btn {
    display: flex;
    padding: 8px 0;
    justify-content: center;
    align-items: center;
    color: var(--white-40);
    background-color: transparent;
    border: 0;
    font-family: var(--font-heading);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.auction-btn:hover {
    color: var(--white);
    background: var(--white-5);
}

.auction-btn.active {
    background: var(--white);
    color: var(--black);
    border-radius: 8px;
    box-shadow: 0 0 15px 0 rgba(0, 255, 0, 0.30);
}

.calculator-submit {
    text-align: center;
    margin-top: 48px;
    margin-bottom: 36px;
}

.btn-calculate span {
    display: flex;
}

.btn-calculate:hover span svg path {
    stroke: var(--primary-green);
    transition: var(--transition);
}

.calculator-disclaimer {
    color: var(--white-30);
    text-align: center;
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- Contact Section ---------- */
.contact-section {
    padding: 96px 0;
    background: #050505;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(1, 255, 0, 0.05);
    filter: blur(75px);
    width: 50%;
    height: 50%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: start;
    padding: 0 40px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 48px;
    letter-spacing: -2.4px;
    text-transform: uppercase;
}

.contact-description {
    color: var(--white-60);
    margin-bottom: 48px;
    max-width: 570px;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0.45px;

}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-detail-item-icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 33554400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #0A0A0A;
}

.contact-detail-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    color: var(--white-40);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-value {
    color: var(--white);
    font-size: 15.5px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.contact-form {
    border-radius: var(--radius-14);
    border: 1px solid var(--white-30);
    background: rgba(5, 10, 16, 0.80);
    backdrop-filter: blur(6px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.contact-form::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 16px;
    height: 16px;
    border-top: 2px solid var(--primary-green);
    border-left: 2px solid var(--primary-green);
    border-top-left-radius: var(--radius-14);
}

/* Правый нижний угол */
.contact-form::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 16px;
    height: 16px;
    border-bottom: 2px solid var(--primary-green);
    border-right: 2px solid var(--primary-green);
    border-bottom-right-radius: var(--radius-14);
}

.contact-form .form-row {
    gap: 24px;
    margin-bottom: 0;
}

.contact-form .form-label {
    color: var(--white-40);
    font-family: var(--font-heading);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form .form-input, .contact-form .form-select, .contact-form .form-textarea {
    border-radius: var(--radius-4);
    border: 1px solid var(--white-20);
    background: var(--black-50);
    padding: 18px 24px;
    color: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.contact-form .form-input::placeholder {
    color: var(--white-20);
}

.btn-send {
    width: fit-content;
    margin: 0 auto;
    /*width: 100%;*/
    /*justify-content: center;*/
    /*margin-top: 16px;*/
    /*padding: 16px;*/
    /*font-size: 14px;*/
    /*border-radius: 50px;*/
}

/* Form Alerts */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-10);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    animation: alertSlideIn 0.4s ease;
}

.form-alert i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-alert-success {
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.25);
    color: var(--primary-green);
}

.form-alert-error {
    background: rgba(255, 59, 59, 0.08);
    border: 1px solid rgba(255, 59, 59, 0.25);
    color: #ff5555;
}

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

/* ---------- Footer ---------- */
.site-footer {
    background: var(--black);
    border-top: 1px solid var(--white-5);
    padding: 80px 0;
    position: relative;
}


.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(1, 255, 0, 0.05);
    filter: blur(50px);
    width: 40%;
    height: 40%;
}

.site-footer .footer-container, .fleat-container {
    padding: 0 62px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    padding-bottom: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-logo img {
    height: 68px;
    width: auto;
    margin-bottom: 22px;
}

.footer-brand-text {
    color: var(--white-40);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px;
    max-width: 310px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-5);
    border-radius: 50%;
    color: var(--white-40);
    font-size: 14px;
    transition: var(--transition);
    background-color: #0A0A0A;
}

.social-link:hover {
    border-color: var(--primary-green);
    color: var(--black);
    background: var(--primary-green);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    font-size: 13.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    color: var(--white-40);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-newsletter-text {
    font-size: 13px;
    color: var(--white-40);
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    position: relative;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 18px 56px 18px 24px;
    border: 1px solid var(--white-10);
    background-color: var(--white-10);
    border-radius: var(--radius-4);
    overflow: hidden;
    color: var(--white);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--white-20);
}

.newsletter-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border: none;
    padding: 12px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-4);
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.newsletter-btn:hover {
    background: var(--dark-green);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0 0;
    border-top: 1px solid var(--white-5);
    font-family: var(--font-heading);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--white-70);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--text-light-gray);
}

/* ---------- Animations ---------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--white-10);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-dark-gray);
}

/* ---------- Compare Page ---------- */
.compare-section {
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 100px;
    min-height: 100vh;
}

.compare-header {
    margin-bottom: 48px;
}

.compare-slots {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 60px;
}

.compare-description {
    display: flex;
    align-items: center;
}

.compare-description p {
    font-size: 14px;
    color: var(--white-60);
    line-height: 1.7;
}

.compare-slot {
    border: 1px solid var(--white-40);
    background: #0A0A0A;
    box-shadow: 0 20px 50px 0 var(--black-50);
    border-radius: var(--radius-16);
    overflow: hidden;
    position: relative;
    min-height: 220px;
    transition: var(--transition);
}

.compare-slot.filled:hover {
    border-color: rgba(0, 255, 102, 0.3);
}

.slot-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--white-5);
    border-radius: 50%;
    color: var(--white-60);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
    line-height: 1;
}

.slot-remove:hover {
    background: #ff4444;
    color: white;
    border-color: #ff4444;
}

.slot-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slot-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: var(--white-40);
    font-size: 36px;
}

.slot-name {
    padding: 16px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.compare-slot.empty {
    border-style: dashed;
    border-color: var(--white-40);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slot-empty-content {
    padding: 24px;
}

.slot-plus {
    width: 48px;
    height: 48px;
    border: 2px solid var(--white-40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white-60);
    font-size: 18px;
    transition: var(--transition);
}

.compare-slot.empty:hover .slot-plus {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.slot-empty-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white-60);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.slot-empty-text {
    font-size: 11px;
    color: var(--text-dark-gray);
    line-height: 1.5;
    margin-bottom: 14px;
}

.slot-select-wrapper {
    position: relative;
}

.slot-vehicle-select {
    width: 100%;
    background: var(--white-5);
    border: 1px solid var(--white-5);
    border-radius: 8px;
    padding: 10px 32px 10px 12px;
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    transition: var(--transition);
}

.slot-vehicle-select:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Comparison Table */
.compare-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compare-category {
    margin-bottom: 12px;
}

.compare-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    margin-bottom: 4px;
}

.compare-category-header i {
    color: var(--primary-green);
    font-size: 14px;
}

.compare-category-header span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.compare-row {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--white-5);
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--white-60);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-value {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light-gray);
    padding: 10px 16px;
    border-bottom: 1px solid var(--white-3);
    background: rgba(1, 255, 0, 0.02);
    border-radius: 8px;
}

.compare-value.empty-val {
    color: var(--text-dark-gray);
    background: transparent;
    border-color: transparent;
}

.compare-prompt {
    text-align: center;
    padding: 60px 20px;
    color: var(--white-60);
    font-size: 15px;
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(0, 255, 102, 0.2);
    color: var(--white);
}


.calculation-results {
    display: flex;
    border-radius: var(--radius-20);
    border: 1px solid var(--white-10);
    background: var(--white-2);
    margin: 50px 0 24px;
}

.results-inner {
    display: flex;
}

/* Левая колонка */
.results-breakdown {
    flex: 2;
    padding: 40px;
    gap: 32px;
    border-right: 1px solid var(--white-10);
    background: var(--white-2);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-20) 0 0 var(--radius-20);
}

.breakdown-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.breakdown-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breakdown-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--white-5);
    color: var(--white-60);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.35px;
}

.breakdown-list li .item-label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.breakdown-list li .item-label span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-10);
    background: var(--white-3);
}

.item-value {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}


.results-summary {
    flex: 1;
    background: linear-gradient(135deg, rgba(1, 255, 0, 0.05) 0%, rgba(0, 0, 0, 0.00) 100%);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.summary-label {
    color: var(--primary-green);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px;
    letter-spacing: 3.6px;
    text-transform: uppercase;
}

.total-amount {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 60px);
    font-style: normal;
    font-weight: 900;
    line-height: 60px;
    letter-spacing: -3px;
    margin-bottom: 16px;
}

.total-amount .currency {
    color: var(--primary-green);
    font-size: 24px;
    line-height: 32px;
}

.btn-pdf {
    margin-bottom: 16px;
}

.btn-pdf, .btn-secure {
    width: 100%;
    padding: 16px;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.btn-pdf {
    background: var(--white-5);
    color: var(--white);
}

.btn-secure {
    background: var(--primary-green);
    color: var(--black);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

.reference-id {
    margin-top: 16px;
    color: var(--white-20);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    text-transform: uppercase;
}


/*vehicle list*/


.vehicle-page {
    padding: 105px 0 24px;
}

.vehicle-container {
    padding: 0 30px;
}

.vehicle-header {
    padding: 24px 0 80px;
}


.vehicle-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 4vw, 72px);
    margin-bottom: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 48px;
    letter-spacing: -2.4px;
    text-transform: uppercase;
}

.vehicle-header .section-description-18 {
    max-width: 640px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
}


.filters {
    width: 288px;
    flex-shrink: 0;
}
.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filters h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 21px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.close-filters-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
.filter-group {
    margin-top: 24px;
}

.filters-label {
    color: var(--white-40);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.filters-price {
    color: var(--primary-green);
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
}

.search-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border-radius: var(--radius-4);
    border: 1px solid var(--white-15);
    background: var(--white-5);
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 58px;
}

.search-input::placeholder {
    color: var(--white-20);
}

.search-btn {
    border: 0;
    background-color: transparent;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.range-container {
    width: 100%;
    padding: 4px 0;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--white-10);
    border-radius: 33554400px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: var(--primary-green);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.40));
    transition: transform 0.2s ease-in-out;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-checkbox input {
    display: none;
}

.filter-checkbox span {
    display: block;
    padding: 8px 12px;
    background: transparent;
    border-radius: var(--radius-4);
    border: 1px solid var(--white-10);
    background: var(--white-5);
    color: var(--white-60);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);

}


.filter-checkbox span:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.filter-checkbox input:checked + span {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--black);
}

.filters-form-btn-group {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}

.filters-form-btn-group button {
    text-align: center;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: calc(50% - 4px);
    cursor: pointer;
    transition: var(--transition);
}

.apply-filters-btn {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 40px;
    background: var(--primary-green);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 0 20px 0 rgba(0, 255, 0, 0.40);
    color: var(--black);
    clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 20px, 100% 100%, 20px 100%, 0% calc(100% - 20px));
}

.reset-filters-btn {
    color: var(--primary-green);
    font-size: 10px;
    background-color: transparent;
    border: 0;
}

.reset-filters-btn:hover {
    text-decoration: underline;
}

.sort-select {
    border-radius: var(--radius-4);
    border: 1px solid var(--white-15);
    background: var(--white-5);
    padding: 18px 48px 18px 16px;
    color: var(--white-40);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='white' stroke-opacity='0.4' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.results {
    flex-grow: 1;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.results-header span {
    color: var(--white-40);
    font-family: var(--font-heading);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.vehicles-count {
    color: var(--white) !important;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.view-more {
    text-align: center;
    margin-top: 40px;
}

.view-more a {
    color: var(--primary-green);
    text-decoration: none;
}


.filters-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    display: none;
}

.filters-overlay.active {
    display: block;
}



.mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--black);
    border: none;
    padding: 16px 30px;
    border-radius: var(--radius-4);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 999;
    box-shadow: 0 0 20px 0 rgba(0, 255, 0, 0.40);
    cursor: pointer;
    align-items: center;
    gap: 8px;
}
.mobile-filter-btn span{
    color: var(--black) !important;
}

.mobile-filter-btn svg {
    width: 18px;
    height: 18px;
}





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

.pagination nav div div:first-child {
    display: none;
}

.pagination nav div:last-child {
    box-shadow: none !important;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #0A0A0A;
    border: 1px solid var(--white-15);
    color: var(--white-60);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    border-radius: var(--radius-4);
}

.pagination a:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.pagination .active span,
.pagination span[aria-current="page"] {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    color: var(--black) !important;
}

.pagination .disabled span {
    opacity: 0.5;
    background: transparent;
}
























.vehicle-main-content{
    padding-top: 64px;
    display: grid;
    gap: 64px;
    grid-template-columns: 1.3fr 1fr;
}


.gallery-container {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

/* Главное фото */
.main-slider {
    position: relative;
    aspect-ratio: 881/494;
    margin-bottom: 24px;

}

.main-slider .swiper-slide{
    border-radius: var(--radius-12);
    border: 1px solid var(--white-10);
    padding: 1px;
    background: transparent;
    box-shadow: 0 0 50px 0 var(--black-50);
}
.main-slider .swiper-slide::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 32px;
    height: 32px;
    border-top: 2px solid var(--primary-green);
    border-left: 2px solid var(--primary-green);
    border-top-left-radius: var(--radius-12);
}
.main-slider .swiper-slide::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 32px;
    height: 32px;
    border-bottom: 2px solid var(--primary-green);
    border-right: 2px solid var(--primary-green);
    border-bottom-right-radius: var(--radius-12);
}
.main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-10);
}

/* Миниатюры */
.thumb-slider {
    height: 204px;
    box-sizing: border-box;
}

.thumb-slider .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.6;
    cursor: pointer;
    transition: 0.3s;
    border-radius: var(--radius-8);
    border: 2px solid var(--white-5);
}

.thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border-radius: var(--radius-8);
    border: 2px solid var(--primary-green);
    background: transparent;
    box-shadow: 0 0 15px 0 rgba(0, 255, 0, 0.30);
}

.thumb-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-6);
}


.empty-slide {
    opacity: 0.4;
    background: rgba(243, 244, 246, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info{
    max-width: 590px;
}
.section-short-description{
    color: var(--primary-green-80);
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    max-width: 540px;
    margin-bottom: 24px;
}

.single-page-vehicle-price{
    color: var(--primary-green);
    font-family: var(--font-heading);
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 54px;
    margin-bottom: 32px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.spec-card{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-radius: var(--radius-12);
    border: 1px solid var(--white-10);
    background: var(--white-5);
}

.spec-card-label{
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-card-label small{
    color: var(--white-40);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spec-card .value{
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 36px;
}

.spec-card .value span{
    color: var(--primary-green);
    font-size: 14px;
    line-height: 21px;
}

.mb-60{
    margin-bottom: 60px;
}


.vehicle-detail-content{
    padding: 96px 0 80px;
}



















/* Навигация */
.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--white-10);
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 48px;
}

.tab-item {
    margin-right: 48px;
    cursor: pointer;
    color: var(--white-40);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 21px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    transition: var(--transition);

}

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

/* Зеленая линия под активным табом */
.tab-item.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: var(--primary-green);
    margin-top: 12px;
    box-shadow: 0 0 10px 0 #0F0;
}

/* Контент */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.main-text {
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 40px;
}

/* Карточки в Description */
.cards-container {
    display: flex;
    gap: 20px;
}

.info-card {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    width: 50%;
    border-left: 2px solid #00ff41;
}

.info-card h3 {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.info-card p {
    font-size: 12px;
    color: #777;
    margin: 5px 0 0 0;
}

.icon {
    font-size: 24px;
    margin-right: 15px;
    color: #00ff41;
}

/* Сетка спецификаций */
.specifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.specifications-item span {
    display: block;
    font-size: 10px;
    color: #555;
    text-transform: uppercase;
}

.specifications-item strong {
    font-size: 16px;
    color: #fff;
}

/* Список фич */
.features-list {
    display: flex;
    justify-content: space-between;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding-left: 25px;
    margin-bottom: 15px;
    position: relative;
    color: #ccc;
}

.features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #00ff41;
}

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