.fas,
.far {
  display: inline-block;
  font-style: normal;
  line-height: 1;
}

.far {
  font-weight: 400;
}

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

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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.35);
  }
  50% {
    box-shadow: 0 0 24px 4px rgba(56, 189, 248, 0.2);
  }
}

@keyframes stat-pop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

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

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

.animate-stat-pop {
  animation: stat-pop 0.6s ease-out forwards;
}

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

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

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

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

[data-animate-on-scroll] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate-on-scroll].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.stat-counter.is-animated {
  animation: stat-pop 0.5s ease-out;
}

#mobile-menu.is-open {
  display: block;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  transform: scale(1.05);
}

.cookie-banner-enter {
  animation: fade-up 0.4s ease-out forwards;
}

.input-invalid {
  border-color: #dc2626 !important;
}

.field-error-msg {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #f87171;
}

.checkbox-invalid {
  outline: 1px solid #dc2626;
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.form-toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: 22rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #2A2210;
  background-color: #191508;
  color: #F5F0E8;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  transform: translateX(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

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

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

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

.faq-answer {
  display: none;
}

.faq-answer.is-open {
  display: block;
}

.faq-trigger[aria-expanded="true"] .faq-icon-plus {
  display: none;
}

.faq-trigger[aria-expanded="false"] .faq-icon-minus,
.faq-trigger:not([aria-expanded="true"]) .faq-icon-minus {
  display: none;
}

.faq-trigger[aria-expanded="true"] .faq-icon-minus {
  display: inline-block;
}

.legal-content h1 {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #F5F0E8;
}

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

.legal-content h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #F5F0E8;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  margin-left: 1.25rem;
  list-style-position: outside;
}

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

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

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: #38BDF8;
  text-decoration: underline;
}

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

.legal-content em {
  color: #9E9070;
  font-style: italic;
}
