@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);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.7s ease-out forwards;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.opacity-0-start {
  opacity: 0;
}

.stat-number.is-visible {
  text-shadow: 0 0 18px rgba(37, 99, 235, 0.25);
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.82) 0%,
    rgba(31, 41, 55, 0.55) 45%,
    rgba(31, 41, 55, 0.72) 100%
  );
}

.reviews-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next {
  color: #2563EB;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.08);
}

.reviews-swiper .swiper-button-prev::after,
.reviews-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.reviews-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover {
  background: #EFF6FF;
  color: #1D4ED8;
}

.mobile-nav-open {
  overflow: hidden;
}

.burger-line {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.faq-open [data-faq-icon] {
  transform: rotate(180deg);
}

[data-faq-icon] {
  transition: transform 0.3s ease;
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body a {
  color: #2563EB;
  text-decoration: underline;
}

.legal-body a:hover {
  color: #1D4ED8;
}

.article-content h2 {
  scroll-margin-top: 6rem;
}
