.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #7e9682;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #bef264;
}

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

.nav-link--active-mobile {
  background-color: rgba(190, 242, 100, 0.1);
  color: #bef264;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseAccent {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(190, 242, 100, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(190, 242, 100, 0);
  }
}

@keyframes countGlow {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(190, 242, 100, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(190, 242, 100, 0.6);
  }
}

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

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

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

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

.animate-pulse-accent {
  animation: pulseAccent 2.5s ease-in-out infinite;
}

.animate-count-glow {
  animation: countGlow 2s ease-in-out infinite;
}

.animation-delay-100 {
  animation-delay: 0.1s;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

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

.stat-counter.is-visible {
  animation: countGlow 2s ease-in-out infinite;
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(13, 17, 16, 0.92) 0%,
    rgba(13, 17, 16, 0.75) 50%,
    rgba(13, 17, 16, 0.88) 100%
  );
}

.swiper-button-prev,
.swiper-button-next {
  color: #bef264;
  width: 44px;
  height: 44px;
  background: rgba(190, 242, 100, 0.1);
  border-radius: 50%;
  border: 1px solid #26352a;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(190, 242, 100, 0.2);
  color: #d9f99d;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.swiper-pagination-bullet {
  background: #7e9682;
  opacity: 1;
}

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

.mobile-nav-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-in-up,
  .animate-fade-in,
  .animate-slide-in-left,
  .animate-slide-in-right,
  .animate-pulse-accent,
  .animate-count-glow,
  .stat-counter.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

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

.form-field__error {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #f87171;
}

.form-toast {
  position: fixed;
  top: 5.5rem;
  right: 1rem;
  z-index: 90;
  max-width: 22rem;
  padding: 1rem 1.25rem;
  border: 1px solid #26352a;
  border-left: 4px solid #bef264;
  border-radius: 0.75rem;
  background-color: #171e1a;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateX(1rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.form-toast__title {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2ece4;
}

.form-toast__text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #7e9682;
}

.faq-item__trigger {
  width: 100%;
  text-align: left;
}

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

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

@media (max-width: 640px) {
  .form-toast {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}
