.hero {
    position: relative;
    min-height: 70vh;
    padding-top: var(--header-height);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    background-image: url(/images/back.webp);
    object-fit: cover;
    background-position: center
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .3));
    z-index: 1;
    pointer-events: none
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none
}

.hero__container {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 960px;
    margin: 0 auto
}

.hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6
}

.hero__cta {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center
}

.hero__cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 8px
}

.button--primary {
    background-color: #ffcb09;
    color: #000
}

.button--secondary {
    background-color: #323747;
    color: #fff
}

@media (max-width:768px) {
    .hero__container {
        padding: 20px 10px
    }

    .hero__subtitle {
        font-size: 1rem
    }
}

@media (max-width:576px) {
    .hero {
        position: relative;
        min-height: 50vh;
        padding-top: var(--header-height);
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-align: center;
        overflow: hidden
    }
}