/* Section Finale - Basée sur le design Figma */
.heho-final {
    background: var(--color-black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.heho-final__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/final-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.heho-final__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 75px;
    align-items: center;
    text-align: center;
}

.heho-final__logo {
    width: 436px;
    height: 283px;
    background-image: url('../images/final-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.heho-final__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.heho-final__subtitle {
    font-family: var(--font-base);
    font-size: var(--font-h5-desktop);
    color: var(--color-white);
    text-transform: uppercase;
}

.heho-final__hehocom-logo {
    width: 182px;
    height: 38px;
    background-image: url('../images/hehocom-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Responsive */
@media (max-width: 768px) {
    .heho-final {
        padding: 50px 0;
    }
    
    .heho-final__inner {
        gap: 50px;
    }
    
    .heho-final__logo {
        width: 300px;
        height: 195px;
    }
    
    .heho-final__subtitle {
        font-size: var(--font-h5-mobile);
    }
    
    .heho-final__hehocom-logo {
        width: 150px;
        height: 31px;
    }
}

@media (max-width: 480px) {
    .heho-final__logo {
        width: 250px;
        height: 162px;
    }
    
    .heho-final__hehocom-logo {
        width: 120px;
        height: 25px;
    }
}
