.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 1rem;
    background: radial-gradient(circle at top, #eef2ff 0%, var(--bg-body) 100%);
    min-height: 60vh;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    background: #e0e7ff;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-section h1 span {
    color: var(--primary);
}

.hero-section .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
}
