/* ============================================
   HERO VIDEO SECTION
   ============================================ */

.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 8rem;
}

.hero-video__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #f5f7fa 100%);
}

.hero-video__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #e8f4f8 0%, #f5f7fa 100%);
}

.hero-video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(240, 249, 255, 0.75) 0%, 
        rgba(250, 245, 255, 0.90) 100%);
    backdrop-filter: blur(2px);
    animation: fadeIn 1.2s ease-out;
}

.hero-video__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-video__title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.08;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-video__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.65;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-video__content .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

