@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-soft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes count-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.25);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(236, 72, 153, 0);
  }
}

@keyframes signature-draw {
  from {
    stroke-dashoffset: 120;
  }
  to {
    stroke-dashoffset: 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.7s ease-out forwards;
}

.animate-pulse-soft {
  animation: pulse-soft 3s ease-in-out infinite;
}

.animate-count-glow {
  animation: count-glow 2.5s 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 {
  font-variant-numeric: tabular-nums;
}

.hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(19, 14, 16, 0.88) 0%,
    rgba(236, 72, 153, 0.35) 100%
  );
}

.signature-line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: signature-draw 2s ease-out 0.5s forwards;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ec4899;
}

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

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

.nav-link--active-desktop {
  position: relative;
  color: #ec4899;
  font-weight: 600;
}

.nav-link--active-desktop::after {
  content: '';
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  right: 0;
  height: 2px;
  background: #ec4899;
  border-radius: 1px;
}

.nav-link--active-mobile {
  color: #ec4899;
  font-weight: 600;
  background: rgba(236, 72, 153, 0.1);
}

.form-field--error input,
.form-field--error textarea {
  border-color: #f87171;
}

.form-field--error input:focus,
.form-field--error textarea:focus {
  border-color: #f87171;
  --tw-ring-color: rgba(248, 113, 113, 0.2);
}

.form-toast {
  transition: opacity 0.3s ease;
}

.form-toast.hidden {
  display: none;
}

.form-toast.opacity-0 {
  opacity: 0;
}

.faq-item--open .faq-question {
  color: #ec4899;
}

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

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