/* ═══════════════════════════════════════
   FAQ.CSS — Dedicated FAQ page
   ═══════════════════════════════════════ */

/* ─── Funnel Nav ─── */
.funnel-nav {
  position: fixed;
  top: 90px; left: 0; right: 0;
  z-index: 998;
  background: rgba(6,14,26,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(200,165,92,0.08);
  border-bottom: 1px solid rgba(200,165,92,0.08);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: center; /* change to flex-start for left, flex-end for right */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}
.funnel-nav::-webkit-scrollbar { display: none; }
.funnel-nav.show {
  transform: translateY(-15px);
}
.funnel-nav a {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0 18px;
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.funnel-nav a:hover { color: var(--gold); }

@media (max-width: 1250px) {
  .funnel-nav {
    padding: 12px 20px;
    justify-content: flex-start; /* always left on mobile for scroll */
  }
}
.funnel-nav.show {
  transform: translateY(-15px);
}

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

/* ─── Section ─── */
.faq-section {
  scroll-margin-top: 100px;
}
.faq-section { padding-top: 64px; }
.faq-section .section-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.faq-section .section-label .step {
  font-family: var(--f-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 3px 10px; border-radius: 2px;
  flex-shrink: 0;
}
.faq-section .section-label h2 {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.faq-section .section-rule {
  flex: 1; height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ─── Accordion ─── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 16px;
  width: 100%; background: none; border: none;
  color: #fff; text-align: left; cursor: pointer;
  padding: 22px 0;
  font-family: var(--f-body); font-size: 16px;
  font-weight: 500; line-height: 1.45;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q.open { color: var(--gold); }

.faq-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 1px solid rgba(200,165,92,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}
.faq-q.open .faq-icon {
  background: var(--gold); border-color: var(--gold);
}
.faq-icon::before,
.faq-icon::after {
  content: ""; position: absolute;
  background: var(--text-light);
  transition: opacity 0.2s, background 0.2s;
  border-radius: 1px;
}
.faq-icon::before { width: 8px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 8px; }
.faq-q.open .faq-icon::before { background: var(--navy); }
.faq-q.open .faq-icon::after { opacity: 0; }

.faq-a {
  display: none; padding-bottom: 24px;
  color: var(--text-light); font-size: 15px;
  line-height: 1.8;
}
.faq-a.open { display: block; }
.faq-a p + p { margin-top: 12px; }
.faq-a strong { color: #fff; font-weight: 500; }
.faq-a a {
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(200,165,92,0.3);
  transition: border-color 0.2s;
}
.faq-a a:hover { border-bottom-color: var(--gold); }

/* ─── Pills ─── */
.pill-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 14px;
}
.pill {
  font-family: var(--f-mono); font-size: 11px;
  font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(200,165,92,0.2);
  padding: 4px 12px; border-radius: 2px;
}

/* ─── Note Box ─── */
.note-box {
  background: rgba(200,165,92,0.06);
  border-left: 2px solid var(--gold);
  padding: 14px 18px; margin-top: 14px;
  border-radius: 0 2px 2px 0;
}
.note-box p {
  font-size: 14px; color: #fff; margin: 0;
}

/* ─── CTA Block ─── */
.cta-block {
  margin-top: 72px;
  border: 1px solid rgba(200,165,92,0.2);
  border-radius: 4px; padding: 56px 48px;
  text-align: center;
  background: var(--navy-mid);
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200,165,92,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400; letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff; margin: 0 0 12px; line-height: 1.1;
}
.cta-block h3 em {
  font-style: normal; color: var(--gold);
}
.cta-block > p {
  color: var(--text-light); font-size: 15px;
  max-width: 440px; margin: 0 auto 28px;
}
.cta-btns {
  display: flex; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  position: relative;
}
.btn-outline {
  font-family: var(--f-body); font-size: 13px;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent; color: #fff;
  border: 1px solid rgba(200,165,92,0.25);
  padding: 14px 28px; border-radius: 4px;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold-light);
}

/* ─── Social Row ─── */
.social-row {
  display: flex; justify-content: center; gap: 16px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.social-row a {
  font-family: var(--f-mono); font-size: 11px;
  font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light); text-decoration: none;
  transition: color 0.2s;
}
.social-row a:hover { color: var(--gold); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .faq-section .section-label .section-rule { display: none; }
}
@media (max-width: 560px) {
  .faq-wrap { padding: 0 20px 60px; }
  .cta-block { padding: 40px 24px; }
}