@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 pulse-soft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(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.8s ease-out forwards;
}

.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-counter.is-visible {
  animation: fade-in-up 0.5s ease-out forwards;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.swiper-button-prev,
.swiper-button-next {
  color: #fb923c !important;
  width: 44px !important;
  height: 44px !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
}

.swiper-pagination-bullet {
  background: #a09188 !important;
  opacity: 0.6 !important;
}

.swiper-pagination-bullet-active {
  background: #fb923c !important;
  opacity: 1 !important;
}

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

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

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

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

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

.form-notification {
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.form-notification--visible {
  transform: translateX(0);
}

.faq-panel {
  overflow: hidden;
}

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

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

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #eee8e3;
}

.legal-content h2:first-of-type {
  margin-top: 1.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #a09188;
}

.legal-content ul {
  margin-bottom: 1rem;
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #a09188;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.legal-content a {
  color: #fb923c;
  transition: color 0.2s ease;
}

.legal-content a:hover {
  color: #fdba74;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #eee8e3;
}

.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fdba74;
}

.article-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #a09188;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: #a09188;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content ul {
  list-style-type: disc;
}

.article-content ol {
  list-style-type: decimal;
}
