@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 slide-in-right {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

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

.animate-pulse-soft {
  animation: pulse-soft 3s 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 both;
}

.hero-bg-overlay {
  background: linear-gradient(
    105deg,
    rgba(30, 37, 46, 0.88) 0%,
    rgba(30, 37, 46, 0.72) 45%,
    rgba(91, 124, 153, 0.55) 100%
  );
}

.swiper-button-prev,
.swiper-button-next {
  color: #5b7c99;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.25rem;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: #5b7c99;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7a8d;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #5b7c99;
}

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

.nav-link--active-mobile {
  border-radius: 0.5rem;
  background-color: rgba(91, 124, 153, 0.07);
  color: #5b7c99;
  font-weight: 600;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.form-field--error {
  border-color: #c0392b !important;
  background-color: #fff5f5;
}

.form-error-msg {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #c0392b;
}

.form-toast {
  animation: toast-in 0.35s ease-out both;
}

.form-toast--hide {
  animation: toast-out 0.35s ease-in both;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer--open {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  overflow: hidden;
}
