@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(192, 38, 211, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(192, 38, 211, 0);
  }
}

@keyframes count-glow {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(192, 38, 211, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(217, 70, 239, 0.55);
  }
}

.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-accent {
  animation: pulse-accent 2.5s 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;
}

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

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

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

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background-color: rgba(192, 38, 211, 0.2);
  border-color: #d946ef;
  color: #d946ef;
}

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

.mobile-nav {
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: flex;
  height: 100%;
  width: min(18rem, 100vw);
  flex-direction: column;
  border-left: 1px solid #30243a;
  background-color: #1b1420;
  padding: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #30243a;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__link {
  display: block;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #9688a4;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.mobile-nav__link:hover {
  color: #d946ef;
  background-color: rgba(192, 38, 211, 0.1);
}

.mobile-nav__link--active {
  color: #c026d3;
  background-color: rgba(192, 38, 211, 0.1);
  font-weight: 600;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.form-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #30243a;
  background-color: #110c14;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #ebe3f0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
  color: #9688a4;
}

.form-input:focus {
  outline: none;
  border-color: #c026d3;
  box-shadow: 0 0 0 3px rgba(192, 38, 211, 0.15);
}

.form-input--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error-message {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #f87171;
}

.form-toast {
  position: fixed;
  top: 5.5rem;
  right: 1rem;
  z-index: 80;
  max-width: 22rem;
  border-radius: 0.75rem;
  border: 1px solid #c026d3;
  background-color: #1b1420;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ebe3f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

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

.faq-item__panel {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

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