@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out both;
}

.fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal {
  opacity: 0;
}

.reveal.is-visible {
  opacity: 1;
}

.swiper-slide-active .hero__content > * {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.swiper-slide-active .hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.swiper-slide-active .hero__content > *:nth-child(2) { animation-delay: 0.25s; }
.swiper-slide-active .hero__content > *:nth-child(3) { animation-delay: 0.4s; }
.swiper-slide-active .hero__content > *:nth-child(4) { animation-delay: 0.55s; }

.swiper-slide-active .hero__bg {
  animation: zoomBg 8s ease-out forwards;
}

@keyframes zoomBg {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
