/* ── FAQ PAGE ── */

.faq-hero {
  background: #0f172a;
  padding: 64px 24px 56px;
  text-align: center;
}

.faq-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.faq-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

.faq-hero p {
  font-size: .97rem;
  color: rgba(255,255,255,.52);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ── Layout ── */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* ── Category heading ── */
.faq-category {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-category:first-of-type { margin-top: 0; }

.faq-category-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
}

/* ── Accordion ── */
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
}

.faq-item:hover { border-color: #cbd5e1; }
.faq-item.open  { border-color: #bfdbfe; box-shadow: 0 2px 12px rgba(37,99,235,.07); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .93rem;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  transition: color .12s;
}

.faq-item.open .faq-question { color: #1d4ed8; }

.faq-chevron {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s, transform .25s cubic-bezier(.34,1.56,.64,1);
}

.faq-chevron svg { width: 10px; height: 10px; color: #64748b; transition: color .15s; }
.faq-item.open .faq-chevron { background: #eff6ff; transform: rotate(180deg); }
.faq-item.open .faq-chevron svg { color: #2563eb; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
}

.faq-answer-inner {
  padding: 0 20px 20px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.faq-answer-inner p {
  font-size: .895rem;
  color: #475569;
  line-height: 1.78;
  margin-bottom: 10px;
}

.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-answer-inner a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.faq-answer-inner a:hover { text-decoration: underline; }

.faq-answer-inner ul {
  padding-left: 18px;
  margin: 8px 0;
}

.faq-answer-inner li {
  font-size: .895rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ── Still have questions CTA ── */
.faq-cta {
  margin-top: 56px;
  background: #0f172a;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.faq-cta h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.025em;
}

.faq-cta p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  line-height: 1.65;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 9px;
  transition: background .15s;
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}

.faq-cta-btn:hover { background: #1d4ed8; }

@media (max-width: 480px) {
  .faq-wrap { padding: 36px 16px 60px; }
  .faq-question { padding: 16px; font-size: .875rem; }
  .faq-answer-inner { padding: 0 16px 16px; padding-top: 14px; }
  .faq-cta { padding: 28px 20px; }
}
