/* Animations will include:
   - Fade in on scroll
   - Hero text slide-up
   - Hover effects for cards
*/
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}