@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-accent {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 167, 106, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(212, 167, 106, 0);
  }
}

@keyframes count-glow {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(212, 167, 106, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(212, 167, 106, 0.45);
  }
}

.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.8s ease-out forwards;
}

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

.animate-count-glow {
  animation: count-glow 2s 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.is-visible {
  animation: count-glow 2s ease-in-out infinite;
}

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

.reviews-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next {
  color: #d4a76a;
  width: 44px;
  height: 44px;
  background: rgba(28, 26, 20, 0.9);
  border: 1px solid #333024;
  border-radius: 50%;
}

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

.reviews-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover {
  background: rgba(212, 167, 106, 0.15);
  border-color: #d4a76a;
}

.nav-link--active {
  color: #d4a76a;
}

.nav-link--active:hover {
  color: #e2be8a;
}

.nav-link--active:hover {
  color: #e2be8a;
}

.form-field--error .form-input {
  border-color: #c47070;
}

.form-field--error .form-input:focus {
  border-color: #c47070;
  box-shadow: 0 0 0 2px rgba(196, 112, 112, 0.25);
}

.form-field__error {
  color: #c47070;
  font-size: 0.75rem;
  margin-top: 0.375rem;
}

.form-toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  display: flex;
  max-width: calc(100vw - 2rem);
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border: 1px solid #333024;
  border-left: 4px solid #d4a76a;
  border-radius: 0.75rem;
  background: #1c1a14;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

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

.form-toast__icon {
  margin-top: 0.125rem;
  font-size: 1.25rem;
  color: #d4a76a;
  flex-shrink: 0;
}

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

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

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

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

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