.faq-section {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
  margin-top: 16px;
  border: 1px solid var(--line-light);
}
.faq-section .section-head {
  max-width: none;
  align-items: center;
  text-align: center;
  margin: 0 auto 56px;
}
.faq-section .section-head .eyebrow { justify-content: center; }
.faq-section .section-head .lead { text-align: center; }
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.faq-item {
  background: var(--bone);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background .25s ease;
  border: 1px solid transparent;
}
.faq-item:hover { background: var(--bone-warm); }
.faq-item.open {
  background: var(--paper);
  border-color: var(--line-light);
  box-shadow: 0 8px 24px -16px rgba(10,10,10,0.1);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
}
.faq-q .chevron {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all .3s var(--ease-out);
  flex-shrink: 0;
}
.faq-q .chevron svg { width: 16px; height: 16px; }
.faq-item:hover .faq-q .chevron { background: var(--ink); color: var(--lime); }
.faq-item.open .faq-q .chevron { background: var(--lime); color: var(--ink); transform: rotate(180deg); }
.faq-a {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 28px 24px;
}
.faq-a p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--muted-strong);
  line-height: 1.6;
  max-width: 760px;
}
