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

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

@keyframes countGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 20px rgba(14, 165, 233, 0.35); }
}

.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.8s ease-out forwards;
}

.animate-pulse-soft {
  animation: pulseSoft 3s ease-in-out infinite;
}

.animate-count-glow {
  animation: countGlow 2s 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; }

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

.is-visible .animate-on-scroll {
  animation: fadeInUp 0.7s ease-out forwards;
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.82) 0%,
    rgba(14, 165, 233, 0.55) 100%
  );
}

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

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

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

.burger-line {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-enter {
  animation: fadeIn 0.25s ease-out forwards;
}

.form-toast {
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.form-toast-visible {
  transform: translateX(0);
  opacity: 1;
}

.form-toast-hidden {
  transform: translateX(120%);
  opacity: 0;
}

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

.faq-open .faq-question .faq-icon {
  transform: rotate(180deg);
}

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

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

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

.legal-content a {
  color: #0EA5E9;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #0284C7;
}

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

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

.article-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #64748B;
}

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

.article-content strong {
  color: #111827;
}
