@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.25);
  }
  50% {
    box-shadow: 0 0 24px 4px rgba(6, 182, 212, 0.15);
  }
}

@keyframes countPop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

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

.animate-slide-in-left {
  animation: slideInLeft 0.7s ease-out forwards;
}

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

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

.animate-count-pop {
  animation: countPop 0.5s ease-out forwards;
}

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

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

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

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

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

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.94) 0%,
    rgba(2, 6, 23, 0.78) 45%,
    rgba(17, 24, 39, 0.88) 100%
  );
}

.stat-number {
  font-variant-numeric: tabular-nums;
}

.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: #06b6d4;
  border-color: #06b6d4;
  color: #020617;
}

.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.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);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.faq-panel {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-open [data-faq-icon] {
  transform: rotate(180deg);
}

[data-faq-icon] {
  transition: transform 0.3s ease;
}

.toast-enter {
  animation: fadeIn 0.3s ease-out forwards;
}

.toast-exit {
  animation: fadeIn 0.3s ease-out reverse forwards;
}

#form-success-toast.hidden {
  display: none;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f3f4f6;
}

.legal-content p,
.legal-content li {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #94a3b8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: #06b6d4;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #22d3ee;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f3f4f6;
}

.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #f3f4f6;
}

.article-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #94a3b8;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: #94a3b8;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.scroll-animate {
  opacity: 1;
}
