/* ===== FAQ ===== */
.faq-head { margin-bottom: var(--space-4); }

.faq-list { border-top: 1px solid var(--c-line); }

.faq-item { border-bottom: 1px solid var(--c-line); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-num {
  flex: 0 0 auto;
  font-size: var(--fs-micro);
  color: var(--c-sand);
}

.faq-text {
  flex: 1;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--c-text);
  transition: color 0.3s var(--ease);
}

.faq-q:hover .faq-text { color: var(--c-white); }

/* Плюс → минус */
.faq-icon {
  position: relative;
  flex: 0 0 14px;
  height: 14px;
  align-self: center;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--c-sand);
  transition: transform 0.4s var(--ease);
}
.faq-icon::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-icon::after  { left: 6px; top: 0; width: 2px; height: 14px; }

.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg) scaleY(0);
}

/* Ответ */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-a p {
  padding: 0 2rem var(--space-3) 2.25rem;
  max-width: 60ch;
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  line-height: 1.7;
}

@media (max-width: 560px) {
  .faq-a p { padding-left: 0; }
}