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

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes count-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.25);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(15, 118, 110, 0);
  }
}

@keyframes scan-line {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(400%);
    opacity: 0;
  }
}

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

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

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

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

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

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

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(20, 40, 40, 0.82) 0%,
    rgba(15, 118, 110, 0.55) 100%
  );
}

.hero-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.8), transparent);
  animation: scan-line 4s ease-in-out infinite;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-button-next {
  color: #0f766e;
}

.swiper-pagination-bullet-active {
  background: #0f766e;
}

.nav-link--active {
  color: #0f766e;
  font-weight: 600;
}

.nav-link--active-desktop {
  position: relative;
  color: #0f766e;
  font-weight: 600;
}

.nav-link--active-desktop::after {
  content: '';
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  right: 0;
  height: 2px;
  background: #0f766e;
  border-radius: 1px;
}

.nav-link--active-mobile {
  color: #0f766e;
  font-weight: 600;
  background: rgba(15, 118, 110, 0.07);
}

.form-field--error input,
.form-field--error textarea {
  border-color: #ef4444;
}

.form-field--error input:focus,
.form-field--error textarea:focus {
  border-color: #ef4444;
  --tw-ring-color: rgba(239, 68, 68, 0.2);
}

.form-toast {
  transition: opacity 0.3s ease;
}

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

.form-toast.opacity-0 {
  opacity: 0;
}

.faq-item--open .faq-question {
  color: #0f766e;
}

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

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