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

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

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

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

@keyframes countGlow {
  0%,
  100% {
    text-shadow: 0 0 0 transparent;
  }
  50% {
    text-shadow: 0 0 12px rgba(134, 25, 143, 0.35);
  }
}

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

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

.animate-slide-in-right {
  animation: slideInRight 0.7s ease forwards;
}

.animate-pulse-soft {
  animation: pulseSoft 3s ease-in-out infinite;
}

.animate-count-glow {
  animation: countGlow 2s ease-in-out infinite;
}

.animation-delay-100 {
  animation-delay: 0.1s;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

.opacity-0-start {
  opacity: 0;
}

.stat-counter.is-visible {
  animation: countGlow 2.5s ease-in-out infinite;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(38, 27, 46, 0.82) 0%,
    rgba(134, 25, 143, 0.55) 100%
  );
}

.swiper-button-prev,
.swiper-button-next {
  color: #86198f;
}

.swiper-pagination-bullet-active {
  background: #86198f;
}

.form-toast {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10000;
  max-width: 22rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #d8cee0;
  background: #ffffff;
  color: #261b2e;
  font-size: 0.875rem;
  line-height: 1.5;
  box-shadow: 0 10px 25px rgba(38, 27, 46, 0.12);
  opacity: 0;
  transform: translateY(-0.75rem);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.faq-trigger[aria-expanded='true'] .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform 0.25s ease;
}

.nav-link--active {
  color: #86198f !important;
  font-weight: 600;
}

.nav-link--active.rounded-lg {
  background-color: rgba(134, 25, 143, 0.07);
}

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