.hero {
    min-height: 55vh !important;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #66ccff, #00aaff36);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--bg-dark);
    text-shadow: 0 2px 8px #0003;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.hero-eyebrow,
.hero-title,
.hero-subtitle {
    opacity: 0;
    transform: translateY(16px);
    animation: subHeroFadeUp 0.7s ease-out forwards;
}

.hero-eyebrow {
    animation-delay: 0.05s;
}

.hero-title {
    animation-delay: 0.15s;
}

.hero-subtitle {
    animation-delay: 0.25s;
}

@keyframes subHeroFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 45vh !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-eyebrow,
    .hero-title,
    .hero-subtitle {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
