/* animations.css — MOT-3 stagger marque + reveal sobre */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .05s; }
.stagger.in > *:nth-child(2) { transition-delay: .12s; }
.stagger.in > *:nth-child(3) { transition-delay: .19s; }
.stagger.in > *:nth-child(4) { transition-delay: .26s; }
.stagger.in > *:nth-child(5) { transition-delay: .33s; }
.stagger.in > *:nth-child(6) { transition-delay: .40s; }
.stagger.in > *:nth-child(7) { transition-delay: .47s; }
.stagger.in > *:nth-child(8) { transition-delay: .54s; }

/* FAQ accordion transition */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 800px;
  padding: 0 0 22px;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-mega__media img { transition: none !important; }
}
