/* ════════════════════════════════════════════════════════
   faq.css — FAQ page
   Loaded only on /faq/
════════════════════════════════════════════════════════ */

.faq-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 12px;
}
.faq-hero {
  background: #0a1628;
  padding: 100px 24px 72px;
  text-align: center;
}
.faq-hero-inner { max-width: 680px; margin: 0 auto; }
.faq-title {
  font-family: Inter, sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
}
.faq-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  margin: 0;
}
.faq-body {
  background: #ffffff;
  padding: 72px 24px;
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.faq-group-title {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f59e0b;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f59e0b;
}
.faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.faq-item:first-of-type { border-top: 1px solid #e2e8f0; }
.faq-item summary {
  padding: 18px 4px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a1628;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: #f59e0b;
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 4px 18px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}
.faq-item a { color: #f59e0b; text-decoration: none; }
.faq-cta {
  background: #0a1628;
  padding: 72px 24px;
  text-align: center;
}
.faq-cta-inner { max-width: 540px; margin: 0 auto; }
.faq-cta h2 {
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.faq-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.faq-cta-btn {
  display: inline-block;
  background: #f59e0b;
  color: #0a1628;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  text-decoration: none;
  transition: background 0.15s;
}
.faq-cta-btn:hover { background: #fbbf24; }

@media (max-width: 640px) {
  .faq-hero { padding: 80px 20px 56px; }
  .faq-body { padding: 52px 20px; }
}
