@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.35);
  }
  50% {
    box-shadow: 0 0 24px 4px rgba(249, 115, 22, 0.15);
  }
}

@keyframes countPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.opacity-0-start {
  opacity: 0;
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(1, 4, 9, 0.92) 0%,
    rgba(2, 6, 23, 0.78) 50%,
    rgba(15, 23, 42, 0.88) 100%
  );
}

.stat-number.is-visible {
  animation: countPulse 0.4s ease-out;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  transform: scale(1.05);
}

.mobile-nav-open {
  overflow: hidden;
}

.form-notification {
  animation: fadeIn 0.4s ease-out forwards;
}

.rotate-180 {
  transform: rotate(180deg);
}

[data-faq-icon] {
  transition: transform 0.2s ease;
}

.legal-content h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #E5E7EB;
}

.legal-content p,
.legal-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: #94A3B8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: #F97316;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #EA580C;
}

.article-content h2 {
  padding-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #E5E7EB;
}

@media (min-width: 640px) {
  .article-content h2 {
    font-size: 1.5rem;
  }
}

.article-content p,
.article-content li {
  color: #94A3B8;
}

.article-content strong {
  color: #E5E7EB;
}

.article-content ul,
.article-content ol {
  padding-left: 1.5rem;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.field-input.is-invalid {
  border-color: #F97316;
}

.form-toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: 20rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.form-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
}
