/* ─── FAQ ─────────────────────────────────────────── */
.faq-list {
  max-width: 700px;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: white;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(100,65,165,0.08); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--off); }

.faq-icon {
  width: 22px; height: 22px;
  background: var(--soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--violet);
  font-weight: 700;
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--violet); color: white; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 1.4rem;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.4rem 1.2rem; }
