/* ==========================================================
   FAQ — accordion
   ========================================================== */
.faq {
  max-width: 660px;
  margin: 0 auto;
  padding: 40px 24px 110px;
}

.faq .section-head { margin-bottom: 44px; }

.faq .section-head h2 { max-width: 420px; }

.faq-item {
  background: var(--card-gray);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
}

.faq-q .plus {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--text-dark);
  border-radius: 1px;
  transition: transform 0.25s ease;
}

.faq-q .plus::before { top: 6px; left: 0; width: 14px; height: 1.6px; }
.faq-q .plus::after  { top: 0; left: 6px; width: 1.6px; height: 14px; }

.faq-item.open .faq-q .plus::after { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-body);
}

.faq-a p a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .faq { padding: 24px 20px 70px; }
}
