/* =============================================================================
   Landing Page Styles — Minimal CSS for animations and states only.
   All layout and visual styling is handled by Tailwind/Flowbite inline classes.
   ============================================================================= */

/* Fade-in animation for hero content */
@keyframes landingFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: landingFadeInUp 0.6s ease-out both;
}

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

/* Slow spin for sync arrow */
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spinSlow 3s linear infinite;
}

/* Slow pulse for hero background */
@keyframes pulseSlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-pulse-slow {
  animation: pulseSlow 20s ease-in-out infinite;
}

/* FAQ answer expand/collapse */
.landing-faq__answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.landing-faq__answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.landing-faq__answer p {
  line-height: 1.7;
}

/* FAQ chevron rotation */
button[aria-expanded="true"] i.fa-chevron-down {
  transform: rotate(180deg);
}
