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

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse-accent {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(249, 115, 22, 0);
  }
}

@keyframes stat-fill {
  from {
    width: 0;
  }
}

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

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

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

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

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

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

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

.stat-bar-fill {
  animation: stat-fill 1.4s ease-out forwards;
}

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

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(14, 17, 22, 0.92) 0%,
    rgba(14, 17, 22, 0.78) 50%,
    rgba(14, 17, 22, 0.88) 100%
  );
}

.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(249, 115, 22, 0.12);
  border-color: #f97316;
  color: #f97316;
}

.mobile-nav-open {
  overflow: hidden;
}

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

.form-toast {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  max-width: 22rem;
  padding: 1rem 1.25rem;
  border: 1px solid #f97316;
  border-radius: 0.75rem;
  background-color: #171b22;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.form-toast__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f2f4f7;
}

.form-toast__text {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #9aa4b2;
}

.checkbox-field--error {
  border-color: #ef4444;
}

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

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