@keyframes cc-fade-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cc-panel-open {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stat-pop {
  from {
    opacity: 0;
    transform: translateY(0.35rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-shimmer {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.55;
  }
}

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

.cc-panel-animate {
  animation: cc-panel-open 0.35s ease-out both;
}

.stat-animate {
  animation: stat-pop 0.6s ease-out both;
}

.stat-animate.is-visible {
  animation: stat-pop 0.6s ease-out both;
}

.hero-overlay {
  animation: hero-shimmer 8s ease-in-out infinite;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  .cc-animate-in,
  .cc-panel-animate,
  .stat-animate,
  .hero-overlay,
  .contact-toast {
    animation: none !important;
  }
}
