/* Hero Section - CORRECT VERSION */
.lvh-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B1220 0%, #1E3A5F 100%);
    padding: 80px 24px;
}

.lvh-hero__content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    color: #FFFFFF;
}

.lvh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF6B00;
    margin-bottom: 24px;
}

.lvh-hero__pulse {
    width: 6px;
    height: 6px;
    background: #FF6B00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* HERO TITLE - SMALLER TEXT, WHITE NOT GRAY */
.lvh-hero__title {
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.lvh-hero__title-line {
    display: block;
    color: #FFFFFF !important;
}

.lvh-hero__title-accent {
    color: #FF6B00 !important;
}

.lvh-hero__title-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

.lvh-hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lvh-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.lvh-hero__btn {
    padding: 12px 28px;
    background: #0056A3;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    border: none;
}

.lvh-hero__btn:hover {
    background: #004080;
    transform: translateY(-1px);
}

.lvh-hero__btn--primary {
    background: #0056A3;
}

.lvh-hero__btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lvh-hero__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lvh-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    width: 32px;
    height: 32px;
    animation: bounce 2s infinite;
}

.lvh-hero__scroll svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 768px) {
    .lvh-hero {
        min-height: 70vh;
        padding: 60px 16px;
    }
    
    .lvh-hero__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    }
    
    .lvh-hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .lvh-hero__btn {
        width: 100%;
    }
}
