.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}

.faq__eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.faq__title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--teal-900);
}

.faq__lead {
  margin: 0 0 56px;
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--teal-800);
}

.faq__lead a {
  color: var(--teal-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__group {
  margin-bottom: 48px;
}

.faq__group-title {
  margin: 0 0 20px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal-900);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-100);
}

.faq__item {
  border-bottom: 1px solid var(--teal-100);
  padding: 18px 0;
}

.faq__item summary {
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--teal-900);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--teal-600);
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--teal-800);
}

.faq__item p a {
  color: var(--teal-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}
