

:root {
    --t5hev-primary: #0f1419;
    --t5hev-secondary: #1a1f27;
    --t5hev-accent: #ff4444;
    --t5hev-light: #f5f5f5;
    --t5hev-white: #ffffff;
    --t5hev-gray: #666666;
    --t5hev-border: #e5e5e5;
}

/* ===== HERO SECTION ===== */
.t5hev-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f27 100%);
    overflow: hidden;
}

.t5hev-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,68,68,0.05) 0%, transparent 70%);
    z-index: 1;
}

.t5hev-hero .container {
    position: relative;
    z-index: 2;
}

.t5hev-hero-content-wrapper {
    animation: fadeInLeft 1s ease-out;
}

.t5hev-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 68, 68, 0.15);
    color: var(--t5hev-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--t5hev-accent);
    border-radius: 25px;
    margin-bottom: 25px;
}

.t5hev-hero-title {
    font-size: 100px;
    font-weight: 700;
    color: var(--t5hev-white);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.t5hev-hero-subtitle {
    font-size: 28px;
    color: #cccccc;
    margin-bottom: 18px;
    font-weight: 400;
}

.t5hev-hero-description {
    font-size: 16px;
    color: #999999;
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 550px;
}

.t5hev-hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.t5hev-stat-item {
    flex: 0 0 auto;
}

.t5hev-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--t5hev-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.t5hev-stat-label {
    font-size: 12px;
    color: #888888;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.t5hev-hero-buttons {
    display: flex;
    gap: 16px;
}

.t5hev-btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--t5hev-accent);
    color: var(--t5hev-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.t5hev-btn-primary:hover {
    background: #ff5555;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.3);
    color: var(--t5hev-white);
}

.t5hev-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--t5hev-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.t5hev-btn-secondary:hover {
    background: rgba(255, 68, 68, 0.1);
    border-color: var(--t5hev-accent);
    color: var(--t5hev-accent);
    transform: translateY(-2px);
}

.t5hev-hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.t5hev-car-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 70px rgba(255, 68, 68, 0.15));
    transition: all 0.6s ease;
}

/* ===== COLOR SELECTOR SECTION ===== */
.t5hev-color-selector-section {
    padding: 80px 0;
    background: var(--t5hev-white);
}

.t5hev-color-header {
    text-align: center;
    margin-bottom: 50px;
}

.t5hev-color-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--t5hev-primary);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.t5hev-color-header p {
    font-size: 16px;
    color: var(--t5hev-gray);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.t5hev-color-buttons-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.t5hev-color-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.t5hev-color-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.t5hev-color-btn.active {
    border-color: var(--t5hev-primary);
    transform: scale(1.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ===== HIGHLIGHTS SECTION ===== */
.t5hev-highlights {
    padding: 100px 0;
    background: var(--t5hev-light);
}

.t5hev-highlight-card {
    padding: 40px;
    background: var(--t5hev-white);
    border-radius: 12px;
    border: 1px solid var(--t5hev-border);
    text-align: center;
    transition: all 0.4s ease;
}

.t5hev-highlight-card:hover {
    border-color: var(--t5hev-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 68, 68, 0.1);
}

.t5hev-highlight-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

.t5hev-highlight-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--t5hev-primary);
    margin-bottom: 12px;
}

.t5hev-highlight-card p {
    font-size: 14px;
    color: var(--t5hev-gray);
    margin: 0;
    line-height: 1.6;
}

/* ===== FEATURE SECTIONS ===== */
.t5hev-feature-section {
    padding: 100px 0;
}

.t5hev-feature-dark {
    background: var(--t5hev-primary);
    color: var(--t5hev-white);
}

.t5hev-feature-light {
    background: var(--t5hev-white);
    color: var(--t5hev-primary);
}

.t5hev-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.t5hev-feature-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.t5hev-feature-reverse > * {
    direction: ltr;
}

.t5hev-feature-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.6s ease;
}

.t5hev-feature-image:hover {
    transform: scale(1.02);
}

.t5hev-feature-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--t5hev-accent);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.t5hev-feature-section h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.t5hev-feature-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.t5hev-feature-dark p {
    color: #cccccc;
}

.t5hev-feature-light p {
    color: var(--t5hev-gray);
}

.t5hev-feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t5hev-feature-points li {
    font-size: 15px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.t5hev-feature-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--t5hev-accent);
    font-weight: 700;
    font-size: 18px;
}

/* ===== SPECIFICATIONS SECTION ===== */
.t5hev-specs-section {
    padding: 100px 0;
    background: var(--t5hev-light);
}

.t5hev-specs-header {
    text-align: center;
    margin-bottom: 70px;
}

.t5hev-specs-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--t5hev-primary);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.t5hev-specs-header p {
    font-size: 16px;
    color: var(--t5hev-gray);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.t5hev-spec-card {
    background: var(--t5hev-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--t5hev-border);
    transition: all 0.3s ease;
}

.t5hev-spec-card:hover {
    border-color: var(--t5hev-accent);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.08);
    transform: translateY(-5px);
}

.t5hev-spec-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--t5hev-primary);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--t5hev-accent);
}

.t5hev-spec-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.t5hev-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--t5hev-border);
}

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

.t5hev-spec-label {
    font-size: 14px;
    color: var(--t5hev-gray);
    font-weight: 500;
}

.t5hev-spec-value {
    font-size: 14px;
    color: var(--t5hev-primary);
    font-weight: 700;
}

/* ===== GALLERY SECTION ===== */
.t5hev-gallery-section {
    padding: 100px 0;
    background: var(--t5hev-primary);
}

.t5hev-gallery-header {
    text-align: center;
    margin-bottom: 70px;
}

.t5hev-gallery-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--t5hev-white);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.t5hev-gallery-header p {
    font-size: 16px;
    color: #999999;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.t5hev-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.t5hev-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.5s ease;
}

.t5hev-gallery-featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.t5hev-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.t5hev-gallery-item:hover img {
    transform: scale(1.08);
}

.t5hev-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--t5hev-white);
    font-size: 16px;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.t5hev-gallery-item:hover .t5hev-gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* ===== CTA SECTION ===== */
.t5hev-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--t5hev-primary), var(--t5hev-secondary));
}

.t5hev-cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.t5hev-cta-box h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--t5hev-white);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.t5hev-cta-box p {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 50px;
    font-weight: 400;
}

.t5hev-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.t5hev-cta-btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background: var(--t5hev-accent);
    color: var(--t5hev-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.t5hev-cta-btn-primary:hover {
    background: #ff5555;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.4);
    color: var(--t5hev-white);
}

.t5hev-cta-btn-secondary {
    display: inline-block;
    padding: 18px 48px;
    background: transparent;
    color: var(--t5hev-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--t5hev-accent);
    text-transform: uppercase;
}

.t5hev-cta-btn-secondary:hover {
    background: var(--t5hev-accent);
    color: var(--t5hev-white);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.4);
}

/* ===== LIGHTBOX ===== */
.t5hev-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.t5hev-lightbox.active {
    opacity: 1;
}

.t5hev-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.t5hev-lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.3s ease;
    text-align: center;
}

.t5hev-lightbox.active .t5hev-lightbox-content {
    transform: translate(-50%, -50%) scale(1);
}

.t5hev-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}

.t5hev-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 45px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 300;
}

.t5hev-lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--t5hev-accent);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .t5hev-hero-title {
        font-size: 80px;
    }

    .t5hev-feature-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .t5hev-hero-title {
        font-size: 64px;
    }

    .t5hev-feature-grid {
        grid-template-columns: 1fr;
    }

    .t5hev-feature-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .t5hev-feature-image {
        height: 400px;
    }

    .t5hev-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .t5hev-gallery-featured {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) {
    .t5hev-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .t5hev-hero-title {
        font-size: 48px;
    }

    .t5hev-hero-subtitle {
        font-size: 22px;
    }

    .t5hev-hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .t5hev-hero-buttons {
        flex-direction: column;
    }

    .t5hev-btn-primary,
    .t5hev-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .t5hev-color-buttons-container {
        gap: 16px;
    }

    .t5hev-color-btn {
        width: 60px;
        height: 60px;
    }

    .t5hev-color-header h2 {
        font-size: 36px;
    }

    .t5hev-highlight-card {
        margin-bottom: 20px;
    }

    .t5hev-feature-section {
        padding: 80px 0;
    }

    .t5hev-feature-section h2 {
        font-size: 32px;
    }

    .t5hev-specs-header h2 {
        font-size: 36px;
    }

    .t5hev-spec-card {
        margin-bottom: 20px;
    }

    .t5hev-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .t5hev-gallery-header h2 {
        font-size: 36px;
    }

    .t5hev-cta-box h2 {
        font-size: 40px;
    }

    .t5hev-cta-buttons {
        flex-direction: column;
    }

    .t5hev-cta-btn-primary,
    .t5hev-cta-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .t5hev-hero-title {
        font-size: 40px;
    }

    .t5hev-stat-number {
        font-size: 32px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* additional styles */


.hev-hero-unified {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(150deg, #0a0e14 0%, #1a1f27 50%, #0f1419 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hev-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 68, 68, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 68, 68, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.hev-hero-unified .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   LEFT CONTENT ZONE
======================================== */
.hev-content-zone {
    padding: 60px 40px 60px 20px;
}

.hev-intro-block {
    max-width: 580px;
    animation: hevFadeInUp 1s ease-out;
}

/* Badge */
.hev-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 68, 68, 0.12);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 30px;
    color: #ff4444;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: hevFadeInUp 0.8s ease-out 0.2s forwards;
}

.hev-badge-icon {
    font-size: 14px;
}

/* Title */
.hev-main-title {
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    opacity: 0;
    animation: hevFadeInUp 0.8s ease-out 0.4s forwards;
}

.hev-model-name {
    display: block;
    font-weight: 800;
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(52px, 7vw, 88px);
    letter-spacing: -2px;
}

/* Subtitle */
.hev-subtitle-text {
    font-size: 22px;
    color: #b0b0b0;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    animation: hevFadeInUp 0.8s ease-out 0.6s forwards;
}

/* Description */
.hev-description-text {
    font-size: 16px;
    color: #888888;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    animation: hevFadeInUp 0.8s ease-out 0.8s forwards;
}

/* Quick Stats */
.hev-quick-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: hevFadeInUp 0.8s ease-out 1s forwards;
}

.hev-stat-box {
    flex: 1;
    min-width: 0;
}

.hev-stat-figure {
    font-size: 36px;
    font-weight: 800;
    color: #ff4444;
    line-height: 1;
    margin-bottom: 8px;
}

.hev-unit {
    font-size: 20px;
    font-weight: 600;
    color: #ff6666;
    margin-left: 2px;
}

.hev-stat-caption {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


.hev-color-picker-module {
    margin-bottom: 45px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: hevFadeInUp 0.8s ease-out 1.2s forwards;
}

.hev-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hev-picker-label {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.hev-current-color {
    font-size: 14px;
    color: #ff4444;
    font-weight: 600;
    margin: 0;
}

.hev-current-color span {
    font-weight: 700;
}

/* Color Swatches */
.hev-color-swatches {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hev-swatch {
    position: relative;
    width: 56px;
    height: 56px;
    padding: 0;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    outline: none;
}

.hev-swatch-fill {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
    display: block;
}

.hev-swatch-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.hev-swatch:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hev-swatch.active {
    border-color: #ff4444;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2),
                0 8px 24px rgba(255, 68, 68, 0.3);
}

.hev-swatch.active .hev-swatch-check {
    transform: translate(-50%, -50%) scale(1);
}

/* ========================================
   ACTION BUTTONS
======================================== */
.hev-action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: hevFadeInUp 0.8s ease-out 1.4s forwards;
}

.hev-btn-filled,
.hev-btn-outlined {
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.hev-btn-filled {
    background: #ff4444;
    color: #ffffff;
    border: 2px solid #ff4444;
}

.hev-btn-filled:hover {
    background: #ff5555;
    border-color: #ff5555;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 68, 68, 0.4);
    color: #ffffff;
}

.hev-btn-outlined {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.hev-btn-outlined:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #ffffff;
}

/* ========================================
   RIGHT VISUAL ZONE
======================================== */
.hev-visual-zone {
    padding: 60px 20px 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hev-car-display {
    position: relative;
    width: 100%;
    animation: hevFadeInRight 1.2s ease-out;
}

.hev-car-photo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 80px rgba(255, 68, 68, 0.2));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hev-car-photo:hover {
    transform: scale(1.04) translateY(-8px);
    filter: drop-shadow(0 40px 100px rgba(255, 68, 68, 0.3));
}

/* Image Transition Effect */
.hev-car-photo.hev-changing {
    opacity: 0.5;
    transform: scale(0.98);
}

/* Floating Badge */
.hev-floating-badge {
    position: absolute;
    top: 10%;
    right: 5%;
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: hevFloat 3s ease-in-out infinite;
}

.hev-badge-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.hev-badge-label {
    font-size: 11px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hev-badge-value {
    font-size: 18px;
    color: #ff4444;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* ========================================
   SCROLL HINT
======================================== */
.hev-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    animation: hevFadeInUp 0.8s ease-out 1.6s forwards;
}

.hev-hint-text {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hev-hint-arrow {
    font-size: 20px;
    color: #ff4444;
    animation: hevBounce 2s ease-in-out infinite;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes hevFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hevFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hevFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1199px) {
    .hev-main-title {
        font-size: 52px;
    }
    
    .hev-model-name {
        font-size: 68px;
    }
}

@media (max-width: 991px) {
    .hev-hero-unified {
        min-height: auto;
    }
    
    .hev-content-zone,
    .hev-visual-zone {
        padding: 50px 20px;
    }
    
    .hev-intro-block {
        max-width: 100%;
    }
    
    .hev-quick-stats {
        gap: 24px;
    }
    
    .hev-floating-badge {
        top: 5%;
        right: 5%;
        padding: 16px 20px;
    }
}

@media (max-width: 767px) {
    .hev-content-zone {
        padding: 40px 20px 30px;
    }
    
    .hev-visual-zone {
        padding: 20px 20px 50px;
    }
    
    .hev-main-title {
        font-size: 38px;
    }
    
    .hev-model-name {
        font-size: 52px;
    }
    
    .hev-subtitle-text {
        font-size: 18px;
    }
    
    .hev-quick-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .hev-stat-figure {
        font-size: 28px;
    }
    
    .hev-color-picker-module {
        padding: 20px;
    }
    
    .hev-picker-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .hev-color-swatches {
        gap: 12px;
    }
    
    .hev-swatch {
        width: 50px;
        height: 50px;
    }
    
    .hev-action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hev-btn-filled,
    .hev-btn-outlined {
        width: 100%;
        text-align: center;
        padding: 18px 36px;
    }
    
    .hev-floating-badge {
        display: none;
    }
    
    .hev-scroll-hint {
        display: none;
    }
}

@media (max-width: 480px) {
    .hev-main-title {
        font-size: 32px;
    }
    
    .hev-model-name {
        font-size: 44px;
    }
    
    .hev-stat-figure {
        font-size: 24px;
    }
    
    .hev-color-swatches {
        gap: 10px;
    }
    
    .hev-swatch {
        width: 46px;
        height: 46px;
    }
}

/* ========================================
   ACCESSIBILITY
======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
