.hero-section {
    min-height: 685px;
    height: 100vh;
    max-height: 685px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 48, 135, 0.12) 0%, rgba(0, 95, 185, 0.08) 48%, rgba(0, 0, 0, 0.08) 100%),
        radial-gradient(circle at 13% 42%, rgba(255, 255, 255, 0.14), transparent 18%),
        radial-gradient(circle at 88% 40%, rgba(255, 255, 255, 0.1), transparent 20%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 40px));
    margin-top: 118px;
    text-align: center;
    color: var(--white);
}

.hero-top-text {
    display: block;
    margin-bottom: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.25rem, 2.55vw, 1.95rem);
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.hero-content h1 {
    margin: 0 0 36px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3rem, 6.4vw, 5.08rem);
    line-height: 0.95;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 8px 10px rgba(1, 34, 89, 0.34);
}

.hero-content p {
    width: min(500px, 100%);
    margin: 0 auto;
    font-size: 0.98rem;
    line-height: 1.45;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    margin-top: 84px;
}

.btn-hero {
    min-width: 181px;
    min-height: 53px;
    padding: 15px 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-hero:hover,
.btn-hero:focus-visible {
    transform: translateY(-2px);
}

.btn-saut {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 16px 26px rgba(123, 73, 255, 0.24);
}

.btn-saut:hover,
.btn-saut:focus-visible {
    background: #6b3cf2;
}

.btn-cadeau {
    color: #060606;
    background: var(--accent);
    box-shadow: 0 16px 26px rgba(255, 214, 111, 0.22);
}

.btn-cadeau:hover,
.btn-cadeau:focus-visible {
    background: #ffcf55;
}

@media (max-width: 760px) {
    .hero-section {
        min-height: 620px;
        height: auto;
        max-height: none;
        padding: 160px 0 76px;
        background-position: center bottom;
    }

    .hero-content {
        width: min(100% - 28px, 560px);
        margin-top: 0;
    }

    .hero-content h1 {
        margin-bottom: 24px;
    }

    .hero-cta {
        gap: 16px;
        margin-top: 42px;
        flex-wrap: wrap;
    }

    .btn-hero {
        min-width: 145px;
    }
}

@media (max-width: 520px) {
    .hero-section {
        min-height: 580px;
        padding: 138px 0 62px;
    }

    .hero-top-text {
        font-size: 1.12rem;
    }

    .hero-content h1 {
        font-size: clamp(2.6rem, 15vw, 4rem);
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-cta {
        width: min(100%, 330px);
        margin: 36px auto 0;
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn-hero {
        width: 100%;
        min-height: 50px;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 2.55rem;
    }
}
