/ FAQ PAGE /
.faq-hero {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--divider);
}
.faq-hero__label {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.faq-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.faq-hero p {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 560px;
}

/ Category headers /
.faq-section {
  margin-bottom: 3.5rem;
}
.faq-section__title {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.faq-section__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/ FAQ cards grid /
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.faq-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.faq-card__q {
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.faq-card__q::before {
  content: '?';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-card__a {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 1.75rem;
}

/ CTA /
.faq-cta {
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid var(--divider);
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-cta .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.faq-cta h2 {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .5rem;
}
.faq-cta p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .faq-grid { grid-template-columns: 1fr; }
}
