.nav-link {
  color: #1e2440;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: #4338ca;
}

.nav-link--active {
  color: #4338ca;
  font-weight: 600;
}

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

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

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

.stat-card--active {
  animation: stat-pulse 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .cc-animate-in,
  .stat-card--active {
    animation: none;
  }
}

.form-field--error {
  border-color: #dc2626 !important;
}

.form-field-msg {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #dc2626;
}

.contact-toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: min(22rem, calc(100vw - 2rem));
  border-radius: 0.75rem;
  border: 1px solid #dce2f5;
  background: #fff;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #1e2440;
  box-shadow: 0 12px 40px rgba(30, 36, 64, 0.15);
  animation: cc-fade-in 0.35s ease-out both;
}

.faq-panel[hidden] {
  display: none;
}
