.faq {
  padding: 5.5rem clamp(1.25rem, 6vw, 5rem) 6.5rem;
}

.faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  margin: 0 auto 2.5rem;
  max-width: 34rem;
}

.faq__head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin-bottom: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 42rem;
  margin: 0 auto;
}

.faq__item {
  background: var(--surface-soft);
  border: 1px solid var(--surface-line);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq__item[open] {
  background: var(--surface);
  border-color: var(--accent-soft);
  box-shadow: 0 12px 28px -18px rgba(122, 31, 69, 0.35);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: var(--fw-semibold);
  font-size: 1rem;
}

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

.faq__item summary i {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--accent-soft);
  transition: transform 0.25s ease;
}

.faq__item[open] summary i {
  transform: rotate(180deg);
}

.faq__item p {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--surface-line);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.8;
}

@media (max-width: 480px) {
  .faq {
    padding: 4rem 1.25rem 4.5rem;
  }

  .faq__item {
    padding: 1rem 1.15rem;
  }

  .faq__item summary {
    font-size: 0.92rem;
  }
}
