@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="stagger"] > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate="stagger"].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="stagger"].is-visible > *:nth-child(1) { transition-delay: 0s; }
[data-animate="stagger"].is-visible > *:nth-child(2) { transition-delay: 0.1s; }
[data-animate="stagger"].is-visible > *:nth-child(3) { transition-delay: 0.2s; }
[data-animate="stagger"].is-visible > *:nth-child(4) { transition-delay: 0.3s; }
[data-animate="stagger"].is-visible > *:nth-child(5) { transition-delay: 0.4s; }
[data-animate="stagger"].is-visible > *:nth-child(6) { transition-delay: 0.5s; }
[data-animate="stagger"].is-visible > *:nth-child(7) { transition-delay: 0.6s; }
[data-animate="stagger"].is-visible > *:nth-child(8) { transition-delay: 0.7s; }

.lift-hover {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lift-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

@keyframes wa-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--glow-green);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 16px 50px rgba(37,211,102,0.7);
  }
}

.wa-float {
  animation: wa-pulse 3s ease-in-out infinite;
}

.btn-red {
  transition: transform 0.18s ease, box-shadow 0.22s ease;
}

.btn-red:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 50px rgba(255,59,71,0.65);
}

@keyframes floatY {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes drift {
  0%, 100% { translate: 0 0; scale: 1; }
  50% { translate: 30px -20px; scale: 1.08; }
}

.hero-blob-one,
.promo-blob-one,
.final-blob-one { animation: drift 22s ease-in-out infinite; }

.hero-blob-two,
.promo-blob-two,
.final-blob-two { animation: drift 26s ease-in-out infinite reverse; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}
