/* =========================================================
   HOME HERO (VIDEO VERSION)
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 110px;
}

/* =========================
   HERO VIDEO BACKGROUND
========================= */

.hero .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,17,21,0.5);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-shadow:
        0 2px 6px rgba(0,0,0,0.9),
        0 8px 24px rgba(0,0,0,0.6);
}

.hero h1 {
    font-size: clamp(24px, 5vw, 48px);
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #cbd5e1;
    margin-top: 20px;
}

/* =========================================
   HERO FADE IN (GLOBAL)
========================================= */

.hero-content,
.industry-content {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-content.animate,
.industry-content.animate {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   HERO – ENTERPRISE RESPONSIVE PATCH
   ========================================================= */

@media (max-width: 1024px) {

    .hero h1 {
        font-size: 40px;
    }

}


@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 100svh;
        padding: 120px 0 80px 0;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 16px;
        margin-top: 16px;
    }

}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

}

/* =========================================================
   HOME SECTION SPACING TIGHTEN
   ========================================================= */

.home-page .page-section {
    padding: 20px 0;
}

.home-page .page-section.dark-surface {
    padding: 20px 0;
}

.home-page .industry-cta {
    padding: 20px 0;
}