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

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

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.35);
  }
  50% {
    box-shadow: 0 0 24px 4px rgba(45, 212, 191, 0.15);
  }
}

@keyframes countPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.7s ease-out forwards;
}

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

.animate-count-pulse {
  animation: countPulse 0.4s ease-out;
}

.animate-delay-100 {
  animation-delay: 0.1s;
  opacity: 0;
}

.animate-delay-200 {
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-delay-300 {
  animation-delay: 0.3s;
  opacity: 0;
}

.animate-delay-400 {
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(8, 16, 15, 0.92) 0%,
    rgba(8, 16, 15, 0.75) 50%,
    rgba(9, 21, 18, 0.88) 100%
  );
}

.stat-number.is-visible {
  animation: countPulse 0.5s ease-out;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background-color: rgba(45, 212, 191, 0.12);
  border-color: #2DD4BF;
  color: #2DD4BF;
}

.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.form-toast {
  transition: opacity 0.3s ease;
}

.form-toast.hidden {
  display: none;
}

.form-toast.opacity-0 {
  opacity: 0;
}

.faq-panel {
  transition: opacity 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-in-up,
  .animate-fade-in,
  .animate-slide-in-left,
  .animate-pulse-glow,
  .animate-count-pulse,
  .stat-number.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
