/* ── bwa-hero-cta ─────────────────────────────────────────────────────────── */

.bwa-hero-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 640px;
    overflow: hidden;
    background-color: #111;
}

/* ── Background video / image ────────────────────────────────────────────── */

.bwa-hero-cta__video,
.bwa-hero-cta__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* ── Overlay sombre ──────────────────────────────────────────────────────── */

.bwa-hero-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.45);
}

/* ── Contenu centré ──────────────────────────────────────────────────────── */

.bwa-hero-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 80px 24px;
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
    color: #fff;
    font-family: var(--font-primary, 'Mona Sans', 'Mona sans', 'Aptos', 'Segoe UI', sans-serif);
}

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */

.bwa-hero-cta__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ── Titre ───────────────────────────────────────────────────────────────── */

.bwa-hero-cta__title {
    font-family: var(--font-primary, 'Mona Sans', 'Mona sans', 'Aptos', 'Segoe UI', sans-serif);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

/* ── Description ─────────────────────────────────────────────────────────── */

.bwa-hero-cta__description {
    font-family: var(--font-primary, 'Mona Sans', 'Mona sans', 'Aptos', 'Segoe UI', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.80);
    max-width: 560px;
    margin: 0;
}

/* ── Boutons CTA ─────────────────────────────────────────────────────────── */

.bwa-hero-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
}

.bwa-hero-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 61px;
    padding: 10px 40px;
    border: 2px solid transparent;
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-primary, 'Mona Sans', 'Mona sans', 'Aptos', 'Segoe UI', sans-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
}

.bwa-hero-cta__button--accent {
    background: linear-gradient(
        90deg,
        var(--bwa-hero-cta-button-gradient-start, #e76f2e) 0%,
        var(--bwa-hero-cta-button-gradient-end, #ff914d) 100%
    );
}

.bwa-hero-cta__button--outline {
    border-color: #fff;
    background: transparent;
}

.bwa-hero-cta__button:hover,
.bwa-hero-cta__button:focus-visible {
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.bwa-hero-cta__button--accent:hover,
.bwa-hero-cta__button--accent:focus-visible {
    opacity: 0.94;
}

.bwa-hero-cta__button--outline:hover,
.bwa-hero-cta__button--outline:focus-visible {
    background-color: rgba(255, 255, 255, 0.12);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
    .bwa-hero-cta {
        min-height: 480px;
    }

    .bwa-hero-cta__inner {
        padding: 60px 20px;
        gap: 12px;
    }

    .bwa-hero-cta__title {
        font-size: 32px;
    }

    .bwa-hero-cta__description {
        font-size: 15px;
    }

    .bwa-hero-cta__actions {
        width: 100%;
        gap: 12px;
    }

    .bwa-hero-cta__button {
        width: 100%;
        min-height: 56px;
        white-space: normal;
    }
}
