/* ══════════════════════════════════════════════════
   FAQ Section — Two-column: form card + accordion
   ══════════════════════════════════════════════════ */

.bh-faq-section {
  background: linear-gradient(to bottom, #000 0%, #000 70%, #050507 88%, #0a0a0b 100%);
  padding: clamp(60px, 8vw, 100px) 0;
}

.bh-faq-container {
  max-width: clamp(320px, 83.33vw, 1600px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ── Title ── */
.bh-faq-title {
  font-family: var(--font-family-primary, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(1.5rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0 0 clamp(40px, 5vw, 64px);
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}

.bh-faq-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4a90d9, transparent);
  border-radius: 2px;
}

/* ── Layout ── */
.bh-faq-layout {
  display: flex;
  justify-content: center;
  gap: 48px;
}

/* ══════════════════════════════════════════════════
   Accordion
   ══════════════════════════════════════════════════ */

.bh-faq-right {
  width: 100%;
  max-width: clamp(720px, 72vw, 1080px);
}

.bh-faq-accordion-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,.035) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px -30px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05);
}

.bh-faq-accordion {
  max-height: 480px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-right: 4px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.2) transparent;
}

/* Custom scrollbar */
.bh-faq-accordion::-webkit-scrollbar {
  width: 4px;
}

.bh-faq-accordion::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,.18);
  border-radius: 8px;
}

.bh-faq-accordion::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255,255,255,.3);
}

.bh-faq-accordion::-webkit-scrollbar-track {
  background: transparent;
}

/* ── Accordion item ── */
.bh-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 26px 18px 24px 48px;
  transition: background .25s ease;
}

.bh-faq-item:hover {
  background: rgba(255,255,255,.02);
}

.bh-faq-item.is-open {
  background: rgba(96,165,250,.04);
}

.bh-faq-item:first-child {
  padding-top: 32px;
}

.bh-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 32px;
}

.bh-faq-item-inner {
  display: flex;
  gap: 24px;
}

/* ── FAQ number ── */
.bh-faq-num {
  width: 50px;
  flex-shrink: 0;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(96,165,250,.85);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.bh-faq-content-right {
  width: calc(100% - 74px);
}

/* ── Question header ── */
.bh-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  gap: 24px;
}

.bh-faq-question {
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  transition: color .2s ease;
}

.bh-faq-item:hover .bh-faq-question {
  color: #cfe3ff;
}

/* ── Toggle icon ── */
.bh-faq-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform 0.3s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.bh-faq-item.is-open .bh-faq-toggle {
  transform: rotate(180deg);
  color: #fff;
  background: rgba(96,165,250,.15);
  border-color: rgba(96,165,250,.35);
}

/* ── Answer ── */
.bh-faq-answer {
  display: none;
  margin: 16px 80px 0 0;
}

.bh-faq-answer p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */

@media (max-width: 1440px) {
  .bh-faq-item {
    padding: 22px 18px 20px 42px;
  }
}

@media (max-width: 1200px) {
  .bh-faq-item-inner {
    gap: 16px;
  }

  .bh-faq-answer {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .bh-faq-item {
    padding: 18px 12px 18px 16px;
  }

  .bh-faq-num {
    width: 36px;
    font-size: 12px;
  }

  .bh-faq-item-inner {
    gap: 8px;
  }

  .bh-faq-header {
    gap: 8px;
  }

  .bh-faq-toggle {
    max-width: 22px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .bh-faq-toggle {
    transition: none;
  }
}
