/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#faq {
  background: var(--white);
}

.faq-header {
  padding: 100px 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.faq-header-left {}

.faq-header-h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin-top: 16px;
}

.faq-header-h2 em {
  font-style: italic;
  color: var(--gold);
}

.faq-header-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
}

.faq-header-body {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--muted);
}

/* Category tabs */
.faq-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--pale);
  overflow-x: auto;
  scrollbar-width: none;
}

.faq-tabs::-webkit-scrollbar {
  display: none;
}

.faq-tab {
  font-family: var(--type-mono);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 20px 32px;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.faq-tab:hover {
  color: var(--ink);
}

.faq-tab.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
  background: var(--white);
}

/* FAQ body */
.faq-body {
  background: var(--white);
}

.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
}

/* Accordion item */
.faq-item {
  border-bottom: 1px solid var(--border);
  position: relative;
}

.faq-item:first-child {
  border-top: none;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 80px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: var(--pale);
}

.faq-q-left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}

.faq-q-num {
  font-family: var(--type-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--gold);
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 24px;
}

.faq-q-text {
  font-family: var(--type-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
}

.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .35s ease;
  color: var(--muted);
  margin-top: 2px;
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  transition: transform .35s ease;
}

.faq-item.open .faq-chevron {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.faq-item.open .faq-chevron svg {
  transform: rotate(180deg);
}

.faq-item.open .faq-q-text {
  color: var(--ink);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer-inner {
  padding: 0 80px 36px 128px;
}

.faq-answer-body {
  font-size: .93rem;
  line-height: 1.9;
  color: var(--ink2);
}

.faq-answer-body p {
  margin-bottom: 12px;
}

.faq-answer-body p:last-child {
  margin-bottom: 0;
}

.faq-answer-body ol,
.faq-answer-body ul {
  padding-left: 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer-body li {
  color: var(--ink2);
  font-size: .93rem;
  line-height: 1.8;
}

.faq-answer-body strong {
  color: var(--ink);
  font-weight: 500;
}

/* Highlight box inside answer */
.faq-highlight {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--pale);
  border-left: 2px solid var(--gold);
  font-family: var(--type-mono);
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--ink2);
  line-height: 1.7;
}

/* CTA at bottom */
.faq-cta {
  padding: 64px 80px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '?';
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--type-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.faq-cta-text {
  position: relative;
  z-index: 1;
}

.faq-cta-eyebrow {
  font-family: var(--type-mono);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 12px;
}

.faq-cta-heading {
  font-family: var(--type-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #FDFCFA;
  line-height: 1.2;
  margin-bottom: 8px;
}

.faq-cta-heading em {
  font-style: italic;
  color: var(--gold);
}

.faq-cta-sub {
  font-size: .88rem;
  color: rgba(255, 255, 255, .35);
  max-width: 440px;
  line-height: 1.75;
}

.faq-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* FAQ Responsive */
@media(max-width: 1024px) {
  .faq-header {
    grid-template-columns: 1fr;
    padding: 64px 40px;
    gap: 24px;
  }

  .faq-question {
    padding: 28px 40px;
  }

  .faq-answer-inner {
    padding: 0 40px 28px 40px;
  }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 40px;
    gap: 32px;
  }

  .faq-cta::before {
    display: none;
  }
}

@media(max-width: 768px) {
  .faq-header {
    padding: 48px 24px;
  }

  .faq-tab {
    padding: 16px 20px;
    font-size: .6rem;
  }

  .faq-question {
    padding: 24px 24px;
    gap: 16px;
  }

  .faq-q-left {
    gap: 14px;
  }

  .faq-q-text {
    font-size: .97rem;
  }

  .faq-answer-inner {
    padding: 0 24px 24px 24px;
  }

  .faq-cta {
    padding: 48px 24px;
  }

  .faq-cta-actions {
    width: 100%;
  }

  .faq-cta .btn-email {
    display: block;
    text-align: center;
  }
}

