.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
    --hero-scale: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-bg) center / cover no-repeat;
    transform: scale(var(--hero-scale));
    transform-origin: center;
    transition: transform 0.25s ease-out;
    z-index: -1;
}

.althero-text-overlay {
    background: transparent;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 1200px;
    color: #F2F6FC;
    transform: translateY(-33px);
}

.althero-title {
    font-size: clamp(2.5rem, 8vw + 1rem, 6rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 14px;
}

.althero-subtitle {
    font-size: clamp(1rem, 2.5vw + 0.4rem, 2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}

.althero-description {
    font-size: clamp(1rem, 0.8vw + 0.7rem, 1.6rem);
    line-height: 1.45;
}

@media (max-width: 260px) {

    .althero-title {
        font-size: clamp(1.2rem, 12vw, 6rem);
        line-height: 1.1;
    }

    .althero-subtitle {
        font-size: clamp(0.7rem, 7vw, 2rem);
    }

    .althero-description {
        font-size: clamp(0.7rem, 4vw, 1.1rem);
        line-height: 1.35;
    }

}