/* ── Page FAQ — catégories + accordéons ─────────────── */
.faq-container { max-width: 820px; }

.faq-category { margin-bottom: 48px; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: rgba(108,79,240,0.3);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 20px; height: 20px;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--violet);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; transition: transform 0.2s; }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
  padding: 0 0 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-answer a { color: var(--violet); }
.faq-answer p + p { margin-top: 10px; }

.faq-answer-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.faq-answer-photo {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; flex: none;
  border: 2px solid var(--border-strong);
}
.faq-answer-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq-answer-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.faq-answer-role { color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }

.faq-bullets, .faq-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-bullets li { position: relative; padding-left: 20px; }
.faq-bullets li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--violet); font-weight: 700;
}
.faq-steps { counter-reset: none; }
.faq-steps li strong { color: var(--text); }

@media (max-width: 600px) {
  .faq-item { padding: 4px 16px; }
  .faq-category-title { font-size: 1.15rem; }
}
