/* ============================================
   Hero Component
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}
.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 44, 78, 0.85) 0%,
        rgba(11, 61, 107, 0.7) 40%,
        rgba(26, 26, 46, 0.75) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--space-md);
    animation: fadeInUp 1s var(--ease-out);
}

.hero__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--space-sm);
}

.hero__title {
    font-size: var(--fs-hero);
    font-weight: var(--fw-extrabold);
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.hero__typed {
    color: var(--color-secondary);
    border-right: 3px solid var(--color-secondary);
    animation: blink 0.8s infinite;
    padding-right: 4px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-lg);
    line-height: var(--lh-loose);
}

.hero__buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-small);
    animation: floatCenter 2s ease-in-out infinite;
}
.hero__scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}
.hero__scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-out infinite;
}

/* Page Hero (shorter, for inner pages) */
.hero--page {
    min-height: 50vh;
    padding-top: var(--nav-height);
}

@media (max-width: 768px) {
    .hero__title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }
    .hero__subtitle {
        font-size: 1rem;
    }
}
