/* faq.css — styles for /faq pre-trial objections landing page */

/* === HERO === */
.faq-hero {
  padding: 6rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.faq-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.faq-headline {
  font-family: var(--head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.faq-headline em {
  font-style: italic;
  color: var(--accent);
}
.faq-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* === FAQ LIST === */
.faq-list-section {
  padding: 3rem 2rem 5rem;
  max-width: 760px;
  margin: 0 auto;
}
.faq-list-section .faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: none;
}

.faq-list-section .faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-list-section .faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-list-section .faq-q {
  font-family: var(--head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
  transition: margin-bottom 0.25s ease;
}

.faq-list-section .faq-q::after {
  content: ' +';
  font-family: var(--mono);
  color: var(--accent);
  margin-left: 8px;
  font-weight: 400;
  transition: transform 0.2s ease;
  display: inline-block;
}

.faq-list-section .faq-item.is-open .faq-q {
  margin-bottom: 0.875rem;
}
.faq-list-section .faq-item.is-open .faq-q::after {
  content: ' −';
}

.faq-list-section .faq-a {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-list-section .faq-item.is-open .faq-a {
  max-height: 600px;
}

.faq-list-section .faq-a a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* === CTA === */
.faq-cta {
  padding: 5rem 2rem 6rem;
  border-top: 1px solid var(--border);
}
.faq-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-cta-headline {
  font-family: var(--head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text);
}
.faq-cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .faq-hero { padding: 4rem 1.5rem 2.5rem; }
  .faq-list-section { padding: 2rem 1.5rem 4rem; }
  .faq-cta { padding: 3.5rem 1.5rem 5rem; }
  .faq-headline { font-size: 1.85rem; }
  .faq-q { font-size: 1rem; }
}
