.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 40px 0;
}

.hero-content {
    max-width: 800px;
    padding: 60px 50px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(110, 168, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(110, 168, 255, 0.2);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.lead {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 40px;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .actions {
        flex-direction: column;
    }
}
