.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 50%, var(--primary-15) 0%, transparent 55%),
        radial-gradient(circle at 15% 80%, var(--accent-10) 0%, transparent 40%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-10);
    border: 1px solid var(--accent-30);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.6s ease both;
}

.hero-eyebrow svg {
    width: 8px;
    height: 8px;
    fill: var(--accent);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.6s 0.1s ease both;
}

.hero-title .highlight {
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-40);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.75;
    animation: fadeSlideUp 0.6s 0.2s ease both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.6s 0.3s ease both;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.6s 0.4s ease both;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--primary-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.hero-car-scene {
    width: 100%;
    max-width: 660px;
    position: relative;
    animation: fadeSlideRight 0.8s 0.2s ease both;
}

.hero-car-scene svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.car-body {
    animation: carFloat 4s ease-in-out infinite;
    transform-origin: center;
}



.shine-beam {
    animation: shineMove 3s ease-in-out infinite;
    transform-origin: 50% 50%;
}

.shine-beam-2 {
    animation: shineMove 3s 1s ease-in-out infinite;
    transform-origin: 50% 50%;
}

.sparkle {
    animation: sparklePop 2s ease-in-out infinite;
}

.sparkle-2 {
    animation: sparklePop 2s 0.7s ease-in-out infinite;
}

.sparkle-3 {
    animation: sparklePop 2s 1.4s ease-in-out infinite;
}

.mist-particle {
    animation: mistFloat 3.5s ease-in-out infinite;
}

.mist-particle-2 {
    animation: mistFloat 3.5s 0.8s ease-in-out infinite;
}

.mist-particle-3 {
    animation: mistFloat 3.5s 1.6s ease-in-out infinite;
}

.scan-line {
    animation: scanSlide 2.5s ease-in-out infinite;
}

.glow-ring {
    animation: glowPulse 2s ease-in-out infinite;
}

.hero-badge {
    position: absolute;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: badgeFloat 3s ease-in-out infinite;
    backdrop-filter: blur(8px);
}

.hero-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-badge-icon svg {
    width: 16px;
    height: 16px;
}

.hero-badge-top {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-badge-bot {
    bottom: 10%;
    left: -5%;
    animation-delay: 1.5s;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideRight {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes carFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}



@keyframes shineMove {
    0%, 100% { opacity: 0; transform: translateX(-20px) scaleX(0.8); }
    50%       { opacity: 1; transform: translateX(20px) scaleX(1.2); }
}

@keyframes sparklePop {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50%       { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes mistFloat {
    0%   { opacity: 0; transform: translateX(0) translateY(0) scale(1); }
    50%  { opacity: 0.6; transform: translateX(12px) translateY(-8px) scale(1.3); }
    100% { opacity: 0; transform: translateX(24px) translateY(-16px) scale(1.6); }
}

@keyframes scanSlide {
    0%   { transform: translateY(-60px); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(60px); opacity: 0; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(1.05); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-visual { order: -1; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-badge-top { right: 2%; }
    .hero-badge-bot { left: 2%; }
}

@media (max-width: 480px) {
    .hero { min-height: 70vh; }
    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-stats { gap: 20px; }
    .hero-badge { display: none; }
}