.legal-hero {
    animation: legal-fade-in 0.55s ease-out both;
}

.legal-content {
    animation: legal-fade-in 0.65s ease-out 0.12s both;
}

.legal-section {
    animation: legal-fade-in 0.5s ease-out both;
}

.legal-section:nth-child(2) { animation-delay: 0.06s; }
.legal-section:nth-child(3) { animation-delay: 0.1s; }
.legal-section:nth-child(4) { animation-delay: 0.14s; }
.legal-section:nth-child(5) { animation-delay: 0.18s; }
.legal-section:nth-child(6) { animation-delay: 0.22s; }
.legal-section:nth-child(7) { animation-delay: 0.26s; }
.legal-section:nth-child(8) { animation-delay: 0.3s; }
.legal-section:nth-child(9) { animation-delay: 0.34s; }
.legal-section:nth-child(10) { animation-delay: 0.38s; }

@keyframes legal-fade-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .legal-hero,
    .legal-content,
    .legal-section {
        animation: none;
    }
}
