.vlsat-hero-clean {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

.vlsat-hero-clean::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center center;
    transform: scale(1.03);
    animation: vlsatHeroSlowZoom 38s ease-in-out infinite alternate;
    z-index: 0;
    filter: brightness(1.05) contrast(1.05) saturate(1.05);
}

@keyframes vlsatHeroSlowZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }
}

.vlsat-hero-clean-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(4, 34, 31, 0.82) 0%,
            rgba(4, 34, 31, 0.60) 30%,
            rgba(4, 34, 31, 0.24) 60%,
            rgba(4, 34, 31, 0.06) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.16) 0%,
            rgba(0, 0, 0, 0.05) 42%,
            rgba(0, 0, 0, 0.18) 100%);
    z-index: 1;
}

.vlsat-hero-clean .container {
    position: relative;
    z-index: 2;
}

.vlsat-hero-clean-content {
    max-width: 660px;
    color: #fff;
    padding: 7rem 0 8rem;
    margin-left: 80px;
}

.vlsat-hero-clean-content h1 {
    font-size: clamp(3.4rem, 5.8vw, 6.4rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.065em;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow:
        0 8px 26px rgba(0, 0, 0, 0.45),
        0 3px 8px rgba(0, 0, 0, 0.38);
}

.vlsat-hero-clean-content p {
    max-width: 540px;
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 2.25rem;
    font-weight: 650;
    text-shadow:
        0 4px 16px rgba(0, 0, 0, 0.42),
        0 2px 6px rgba(0, 0, 0, 0.30);
}

.vlsat-hero-clean-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    border-radius: 999px;
    padding: 0.95rem 1.75rem;
    font-weight: 800;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.vlsat-hero-clean-btn:hover {
    background: #ffffff;
    color: #0f4f4a;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .vlsat-hero-clean {
        min-height: 82vh;
        text-align: center;
    }

    .vlsat-hero-clean-overlay {
        background:
            linear-gradient(180deg,
                rgba(4, 34, 31, 0.68) 0%,
                rgba(4, 34, 31, 0.56) 50%,
                rgba(4, 34, 31, 0.68) 100%);
    }

    .vlsat-hero-clean-content {
        margin: 0 auto;
        padding: 5rem 0;
    }

    .vlsat-hero-clean-content h1 {
        font-size: clamp(2.8rem, 12vw, 4.4rem);
    }
}