/* ══════════════════════════════════════════════════════════════
   SECTION 9 — FAQ ("Got questions?")
   Centred heading + a glass accordion. Each item toggles open via
   js/faq.js (or the native <details> fallback). Sits on the mesh.
   ══════════════════════════════════════════════════════════════ */
.faq {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: clamp(50px, 8vh, 110px) 24px clamp(70px, 11vh, 150px);
}
.faq-title {
  text-align: center;
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: clamp(36px, 6vh, 64px);
}
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* — Accordion item (native <details>, styled glass) — */
.faq-item {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 600;
  color: #ffffff;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-plus {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #ffffff;
  border-radius: 2px;
}
.faq-plus::before { width: 100%; height: 2px; }
.faq-plus::after  { width: 2px; height: 100%; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 22px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
