.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    /* Subtle background */
    z-index: 0;
    pointer-events: none;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    max-width: 100%;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 100%;
    margin-bottom: 5rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.75rem;
    }
}