/* ── Inner page layout ───────────────────────────────────── */
main {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

/* ── FAQ groups ──────────────────────────────────────────── */
.faq-group { margin-bottom: 3rem; }

.faq-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Accordion ───────────────────────────────────────────── */
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(232,80,58,0.35); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.4rem;
  text-align: left;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question:hover { color: var(--muted-2); }

.faq-chevron {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--accent);
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-answer-inner a { color: var(--accent); text-decoration: none; }
.faq-answer-inner a:hover { text-decoration: underline; }
.faq-answer-inner ul {
  margin: 0.75rem 0 0 1.2rem;
  line-height: 1.8;
}

/* ── CTA strip ───────────────────────────────────────────── */
.cta-strip {
  background: rgba(232,80,58,0.08);
  border: 1px solid rgba(232,80,58,0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.cta-strip h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cta-strip p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
