/* Home Hook Accroche */
.hha-home-hero {
    position: relative;
    min-height: var(--hha-height, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #333333;
    background-image: var(--hha-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
}

.hha-home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, var(--hha-overlay, 0.45));
}

.hha-home-hero__inner {
    position: relative;
    z-index: 2;
    width: min(960px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(50px, 7vw, 95px) 20px;
}

.hha-home-hero__title {
    margin: 0 auto 28px;
    max-width: 820px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0.01em;
    text-transform: none;
}

.hha-home-hero__subtitle {
    max-width: 820px;
    margin: 0 auto 34px;
    color: #ffffff;
    font-size: clamp(18px, 1.55vw, 25px);
    font-weight: 500;
    line-height: 1.45;
}

.hha-home-hero__subtitle p {
    margin: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
}

.hha-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.hha-home-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 42px;
    padding: 12px 28px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111 !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hha-home-hero__btn:hover,
.hha-home-hero__btn:focus {
    background: #f5f5f5;
    color: #111111 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
    .hha-home-hero {
        min-height: clamp(420px, 65vw, var(--hha-height, 600px));
    }

    .hha-home-hero__inner {
        width: min(760px, calc(100% - 32px));
        padding: 64px 16px;
    }

    .hha-home-hero__title {
        font-size: clamp(31px, 6vw, 44px);
        line-height: 1.18;
    }

    .hha-home-hero__subtitle {
        font-size: clamp(16px, 3.1vw, 21px);
    }
}

@media (max-width: 575.98px) {
    .hha-home-hero {
        min-height: 460px;
        background-position: center center;
    }

    .hha-home-hero__inner {
        width: calc(100% - 24px);
        padding: 54px 12px;
    }

    .hha-home-hero__title {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .hha-home-hero__subtitle {
        margin-bottom: 26px;
        font-size: 16px;
    }

    .hha-home-hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .hha-home-hero__btn {
        width: min(260px, 100%);
    }
}
