@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.animate-slide-in-right {
  animation: slide-in-right 0.8s ease-out forwards;
}

.animate-count-pulse {
  animation: count-pulse 2.4s ease-in-out infinite;
}

.is-visible .stat-counter {
  animation: count-pulse 2.4s ease-in-out infinite;
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(20, 26, 36, 0.82) 0%,
    rgba(37, 99, 235, 0.55) 100%
  );
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.swiper-button-prev,
.swiper-button-next {
  color: #2563eb;
}

.swiper-pagination-bullet-active {
  background: #2563eb;
}

.nav-link {
  font-weight: 500;
  color: #5a6474;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link-active {
  color: #2563eb;
  font-weight: 600;
}

.form-field-error {
  border-color: #dc2626 !important;
}

.form-error-message {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #dc2626;
}

.form-success-toast {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 60;
  max-width: 22rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #86efac;
  background-color: #f0fdf4;
  box-shadow: 0 10px 25px rgba(20, 26, 36, 0.12);
  animation: slide-in-right 0.4s ease-out forwards;
}

.form-success-toast.is-hiding {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer {
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

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