/* ─── Compact FAQ Section ─────────────────────────────────── */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item[open] {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  list-style: none;
  letter-spacing: -0.015em;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.faq-answer strong {
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }
  .faq-answer {
    font-size: 13px;
    padding: 0 16px 16px;
  }
}
