/* ── FAQ Layout ─────────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-help-card { background: var(--navy); border-radius: 16px; padding: 40px 34px; color: white; margin-top: 40px; }
.faq-help-card h4 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 500; margin: 0 0 10px; }
.faq-help-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.65; margin: 0 0 24px; }
.faq-help-card .btn { width: 100%; justify-content: center; }
.faq-help-phone { display: flex; align-items: center; gap: 12px; margin-top: 18px; text-decoration: none; }
.faq-help-phone .phone-icon-sm { width: 36px; height: 36px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-help-phone-text strong { display: block; font-size: 14px; color: white; }
.faq-help-phone-text span { font-size: 11px; color: rgba(255,255,255,0.55); }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: white; border: 1px solid var(--silver-light); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--sage); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 500; color: var(--navy);
}
.faq-question .faq-chevron { flex-shrink: 0; color: var(--silver); transition: transform 0.3s ease, color 0.2s; }
.faq-item.open .faq-question .faq-chevron { transform: rotate(180deg); color: var(--sage); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 26px 24px; font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; gap: 44px; }
  .faq-sidebar { position: static; }
  .faq-help-card { margin-top: 24px; }
}
@media (max-width: 640px) {
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer-inner { padding: 0 20px 20px; }
}
