
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { display: block; }

#page-loader {
  transition: opacity .55s ease, visibility .55s ease;
}
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-ring {
  width: 72px;
  height: 72px;
  border-radius: 9999px;
  border: 4px solid rgba(255,255,255,.12);
  border-top-color: #FFD700;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.floating-mouse { animation: mouseBob 2s infinite; }
@keyframes mouseBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

#floating-cta.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.faq-content {
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease, opacity .3s ease;
}
.faq-content.open {
  max-height: 260px;
  opacity: 1;
}

@media (max-width: 640px) {
  .faq-content.open { max-height: 420px; }
}
