/* faq.css — styles for /faq public page */

/* ── Nav ──────────────────────────────────────────────────────────────── */
.faq-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #2a2520;
}

.faq-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-brand {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #c4842d;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.faq-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-nav-link {
  font-size: 0.88rem;
  color: #8a8580;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.15s;
}

.faq-nav-link:hover {
  color: #e8e4df;
  text-decoration: none;
}

.faq-nav-active {
  color: #c4842d !important;
}

.faq-nav-cta {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  background: #c4842d;
  color: #0a0a0a;
  padding: 7px 18px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.15s;
  letter-spacing: 0.04em;
}

.faq-nav-cta:hover {
  opacity: 0.85;
  text-decoration: none;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.faq-hero {
  padding: 80px 24px 72px;
  background: linear-gradient(180deg, #0e1114 0%, #0b0d0f 100%);
  border-bottom: 1px solid #2a2520;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(196, 132, 45, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.faq-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.faq-badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: #c4842d;
  border: 1px solid #3a3020;
  background: #111111;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.faq-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  color: #e8e4df;
  margin-bottom: 18px;
}

.faq-lede {
  font-size: 1.05rem;
  color: #8a8580;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.faq-nav-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-pill {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #8a8580;
  border: 1px solid #2a2520;
  background: #111111;
  padding: 7px 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: border-color 0.15s, color 0.15s;
  scroll-behavior: smooth;
}

.faq-pill:hover {
  border-color: #c4842d;
  color: #c4842d;
  text-decoration: none;
}

/* ── Main content ─────────────────────────────────────────────────────── */
.faq-main {
  max-width: 960px;
  margin: 0 auto;
}

/* ── Section ─────────────────────────────────────────────────────────── */
.faq-section {
  padding: 72px 24px;
  border-bottom: 1px solid #2a2520;
}

.faq-section-alt {
  background: #111111;
}

.faq-section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 40px;
}

.faq-section-icon {
  font-size: 0.6rem;
  color: #c4842d;
  line-height: 1.8;
  margin-top: 8px;
}

.faq-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: #e8e4df;
  margin-bottom: 6px;
  line-height: 1.1;
}

.faq-section-sub {
  font-size: 0.88rem;
  color: #8a8580;
}

/* ── Accordion ────────────────────────────────────────────────────────── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: #111111;
  border: 1px solid #2a2520;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: #3a3020;
}

.faq-item-open {
  border-color: #c4842d;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e8e4df;
  transition: color 0.15s;
}

.faq-question:hover {
  color: #c4842d;
}

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

.faq-chevron {
  font-size: 1.2rem;
  color: #8a8580;
  transition: transform 0.25s, color 0.25s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item-open .faq-chevron {
  transform: rotate(90deg);
  color: #c4842d;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item-open .faq-answer {
  max-height: 600px;
}

.faq-answer p,
.faq-answer ul {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: #8a8580;
  line-height: 1.7;
}

.faq-answer p a,
.faq-answer ul li a {
  color: #c4842d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer ul {
  list-style: disc;
  padding-left: 40px;
}

.faq-answer ul li {
  margin-bottom: 4px;
}

.faq-answer ul li:last-child {
  margin-bottom: 0;
}

/* ── CTA Banner ─────────────────────────────────────────────────────── */
.faq-cta {
  background: linear-gradient(135deg, #111418 0%, #0e1114 100%);
  border-top: 1px solid #2a2520;
  padding: 80px 24px;
  text-align: center;
}

.faq-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.faq-cta h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #e8e4df;
  margin-bottom: 12px;
}

.faq-cta p {
  color: #8a8580;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.faq-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-faq-primary {
  display: inline-block;
  background: #c4842d;
  color: #0b0d0f;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-faq-primary:hover {
  opacity: 0.88;
  transform: translateX(2px);
  text-decoration: none;
}

.btn-faq-secondary {
  display: inline-block;
  color: #e8e4df;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 24px;
  border: 1px solid #3a3020;
  border-radius: 4px;
  text-decoration: none;
  background: #111111;
  transition: border-color 0.15s, color 0.15s;
}

.btn-faq-secondary:hover {
  border-color: #c4842d;
  color: #c4842d;
  text-decoration: none;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.faq-footer {
  border-top: 1px solid #2a2520;
  padding: 20px 24px;
  text-align: center;
}

.faq-footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-footer-brand {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #c4842d;
  letter-spacing: 0.06em;
}

.faq-footer-text {
  font-size: 0.8rem;
  color: #8a8580;
}

.faq-footer-sep {
  color: #3a3020;
}

.faq-footer-link {
  font-size: 0.8rem;
  color: #8a8580;
  text-decoration: none;
  transition: color 0.15s;
}

.faq-footer-link:hover {
  color: #c4842d;
  text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-nav-link:not(.faq-nav-active):not(.faq-nav-cta) {
    display: none;
  }

  .faq-hero {
    padding: 56px 20px 52px;
  }

  .faq-section {
    padding: 52px 20px;
  }

  .faq-nav-pills {
    gap: 8px;
  }

  .faq-pill {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
}

@media (max-width: 540px) {
  .faq-nav {
    gap: 4px;
  }

  .faq-hero h1 {
    font-size: 2.2rem;
  }

  .faq-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-faq-primary,
  .btn-faq-secondary {
    width: 100%;
    text-align: center;
  }
}