:root {
    --red:    #d0181e;
    --red-dk: #9e0f13;
    --gold:   #f5a623;
    --dark:   #0a0a0a;
    --light:  #f0ece4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* ── HERO SECTION ── */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

/* cinematic background */
.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,10,10,.92) 38%, rgba(10,10,10,.35) 75%, rgba(10,10,10,.12) 100%), url('../images/banner.jpeg') center/cover no-repeat;
    transform: scale(1.04);
    animation: bgDrift 14s ease-in-out infinite alternate;
}
@keyframes bgDrift {
    from { transform: scale(1.04) translateX(0); }
    to   { transform: scale(1.08) translateX(-1.5%); }
}

/* speed-line overlay */
.hero__lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
    98deg,
    transparent 0px, transparent 120px,
    rgba(255,255,255,.028) 120px, rgba(255,255,255,.028) 122px
    );
    pointer-events: none;
}

/* red accent bar left edge */
/* .hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--red), var(--gold));
    z-index: 2;
} */

/* ── CONTENT ── */
.hero__inner {
    position: relative;
    z-index: 3;
    padding: 80px 0 70px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp .6s .1s forwards;
}
.hero__eyebrow span {
    display: inline-block;
    width: 28px; height: 2px;
    background: var(--gold);
}

.hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 4.2rem);
    line-height: .95;
    color: #fff;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp .65s .25s forwards;
}
.hero__title em {
    font-style: normal;
    color: var(--red);
}

.hero__sub {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(.875rem, 1.5vw, 1.05rem);
    color: rgba(255,255,255,.68);
    max-width: 420px;
    line-height: 1.65;
    margin-bottom: 38px;
    opacity: 0;
    animation: fadeUp .65s .4s forwards;
}

/* ── BUTTONS ── */
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    opacity: 0;
    animation: fadeUp .65s .55s forwards;
}

.btn-primary-hero {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    border: 2px solid var(--red);
    padding: 14px 34px;
    border-radius: 3px;
    text-decoration: none;
    transition: background .22s, transform .18s, box-shadow .22s;
    box-shadow: 0 4px 22px rgba(208,24,30,.45);
}
.btn-primary-hero:hover {
    background: var(--red-dk);
    border-color: var(--red-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(208,24,30,.55);
    color: #fff;
}

.btn-ghost-hero {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255,255,255,.45);
    padding: 14px 34px;
    border-radius: 3px;
    text-decoration: none;
    transition: border-color .22s, background .22s, transform .18s;
}
.btn-ghost-hero:hover {
    border-color: #fff;
    background: rgba(255,255,255,.09);
    transform: translateY(-2px);
    color: #fff;
}

/* ── STAT STRIP ── */
.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 52px;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 28px;
    opacity: 0;
    animation: fadeUp .65s .7s forwards;
}
.hero__stat {
    flex: 1 1 120px;
    padding-right: 24px;
}
.hero__stat + .hero__stat {
    border-left: 1px solid rgba(255,255,255,.12);
    padding-left: 24px;
}
.hero__stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}
.hero__stat-label {
    font-family: 'Barlow', sans-serif;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
}

/* ── FLOATING CAR BADGE ── */
.hero__badge {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-58%);
    z-index: 3;
    text-align: center;
    opacity: 0;
    animation: fadeRight .8s .6s forwards;
}
.hero__badge-ring {
    width: 130px; height: 130px;
    border: 2px solid rgba(245,166,35,.45);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(10,10,10,.55);
    backdrop-filter: blur(6px);
    animation: pulse 3s ease-in-out infinite;
}
.hero__badge-inner {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: .06em;
    color: var(--gold);
    text-align: center;
}
.hero__badge-inner strong {
    display: block;
    font-size: 2.2rem;
    color: #fff;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(245,166,35,.25); }
    50%      { box-shadow: 0 0 0 16px rgba(245,166,35,0); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity:0; transform:translateY(22px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeRight {
    from { opacity:0; transform:translate(30px,-58%); }
    to   { opacity:1; transform:translate(0,-58%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero__badge { display: none; }
    .hero__bg {
    background-position: 70% center;
    }
}

@media (max-width: 767px) {
    .hero {
    min-height: auto;
    }
    .hero__inner {
    padding: 10px 0 10px;
    }
    .hero__sub {
    max-width: 100%;
    }
    .hero__stats {
    gap: 16px;
    }
    .hero__stat + .hero__stat {
    border-left: none;
    padding-left: 0;
    }
}

@media (max-width: 480px) {
    .btn-primary-hero,
    .btn-ghost-hero {
    width: 100%;
    text-align: center;
    }
}