/* === Hero Section Component === */
.hero-section {
    position: relative;
    background: var(--gradient-primary);
    color: var(--text-inverse);
    padding: var(--space-3xl) 0;
    margin-bottom: var(--space-2xl);
    overflow: hidden;
    /* Full-bleed background without horizontal scroll */
    width: 100%;
}

/* Removed dark overlay for cleaner white text */

.hero-content {
    position: relative;
    max-width: var(--container-xl); /* 1280px */
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-lg);
    color: white !important;
    /* Clean white text without shadows */
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    color: white !important;
    /* Clean white text without opacity reduction */
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.hero-metric {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-metric-number {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    display: block;
    margin-bottom: var(--space-sm);
    color: white !important;
    /* Clean white text without shadows */
}

.hero-metric-label {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    color: white !important;
    /* Clean white text without opacity reduction */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: var(--space-2xl) 0;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-md);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-xl);
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-top: var(--space-xl);
    }
    
    .hero-metric {
        padding: var(--space-md);
    }
    
    .hero-metric-number {
        font-size: var(--font-size-2xl);
    }
}

/* Animation Support */
.hero-section.animate-on-scroll {
    opacity: 1;
    transform: none;
}

.hero-metric {
    transition: transform var(--timing-base) var(--ease-out);
}

.hero-metric:hover {
    transform: translateY(-4px);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-metric {
        transition: none;
    }
    
    .hero-metric:hover {
        transform: none;
    }
}