/* ===========================================================
   FAQ / PRIVACY / TERMS — shared styles
   =========================================================== */

/* --- FAQ accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 780px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary .icon { transform: rotate(45deg); }

.faq-item .faq-answer {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* --- Legal prose (Privacy / Terms) --- */
.legal-content {
  max-width: 780px;
}
.legal-content .updated {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 40px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin: 40px 0 14px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.75;
}
.legal-content ul {
  margin: 0 0 14px;
  padding-left: 0;
}
.legal-content ul li {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}