/* ===== HERO COMPONENTS ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; padding: var(--space-2); }

.hero-title {
    font-size: var(--text-6xl);
    font-weight: var(--font-extrabold);
    color: white;
    margin-bottom: var(--space-4);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.6;
}

.hero-cta { animation: fadeInUp 1s ease-out 0.4s both; }

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

/* Thin Hero Section */
.hero-thin {
    background: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-primary-700) 100%);
    color: white;
    padding: var(--space-8) 0;
    text-align: center;
}

.hero-title { font-size: var(--text-2xl); font-weight: var(--font-bold); margin-bottom: var(--space-2); color: white; }
.hero-subtitle { font-size: var(--text-lg); color: rgba(255, 255, 255, 0.9); margin: 0; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: var(--text-4xl); }
    .hero-subtitle { font-size: var(--text-lg); }
}

@media (max-width: 480px) {
    .hero-title { font-size: var(--text-3xl); }
}


