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

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

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

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

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

@keyframes hero-shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.hero-gradient-motion {
  background-size: 200% 200%;
  animation: hero-shine 18s ease-in-out infinite alternate;
}

.nav-link--active {
  color: #7c2d12;
  font-weight: 600;
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
  font-style: normal;
  display: inline-block;
  line-height: 1;
}
