.hero {
  animation: gradientShift 10s linear infinite;
}

.hero-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.6s ease-out forwards;
}

.hero-animate-2 { animation-delay: 0.2s; }
.hero-animate-3 { animation-delay: 0.4s; }
.hero-animate-4 { animation-delay: 0.6s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.recommended {
  animation: cardGlow 2.6s ease-in-out infinite;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% { background-position: 0 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

@keyframes cardGlow {
  50% { box-shadow: var(--shadow-lg); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
