@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.license-badge {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero .col-md-6:last-child img {
    animation: fadeInRight 1s ease-out 0.8s both;
}

@media (prefers-reduced-motion: reduce) {
    .hero h1,
    .hero p,
    .license-badge,
    .hero .col-md-6:last-child img {
        animation: none;
    }
}