/* ==========================================================================
   Custom overrides for the self-hosted Imagineerz site
   Loaded AFTER the Webflow CSS so these rules win.
   ========================================================================== */

/* The Webflow badge must not appear on the self-hosted copy. */
.w-webflow-badge { display: none !important; }

/* --------------------------------------------------------------------------
   FAQ accordion fallback.
   Webflow's built-in click interaction (IX2) was never actually bound to the
   FAQ items — the accordion did not open even on the original webflow.io site.
   faq-accordion.js toggles the classes below to open/close each answer.
   -------------------------------------------------------------------------- */
.faq-question { cursor: pointer; }

.image-53 { transition: transform .3s ease; }

.faq-answer.is-faq-open {
  display: block;
  animation: faqReveal .3s ease;
}

.faq-question-wrapper.is-faq-active .image-53 { transform: rotate(180deg); }

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
