/* ===== FAQ ===== */
.faq-section {
  padding: 110px 0;
  background: var(--white);
}
.faq-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.faq-subtitle {
  font-size: 16px;
  color: var(--gray-500);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-item {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: background 0.2s;
}
.faq-item:hover { background: var(--gray-100); }
button.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  gap: 16px;
  user-select: none;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  line-height: inherit;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gray-400);
}
.faq-item.open .faq-question svg {
  transform: rotate(45deg);
  color: var(--blue-500);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-600);
}

/* View more toggle */
.faq-more-items {
  display: none;
}
.faq-more-items.faq-more-open {
  display: contents;
}
.faq-view-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px auto 0;
  padding: 12px 28px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s;
}
.faq-view-more:hover {
  border-color: var(--blue-300);
  color: var(--blue-600);
  box-shadow: 0 4px 16px rgba(37,99,235,0.1);
}
.faq-view-more svg { transition: transform 0.3s; }
.faq-view-more.faq-btn-open svg { transform: rotate(180deg); }

@media (max-width: 600px) {
  .faq-section { padding: 64px 0; }
  .faq-title { font-size: 26px; }
  button.faq-question { padding: 16px 16px; font-size: 14px; }
  .faq-answer-inner { padding: 0 16px 16px; font-size: 13px; }
}
