/* ─── FAQ (Figma 4069:119) ─── */
.section-faq {
  background: var(--white);
  border-top: 1px solid rgba(197, 193, 174, 0.7);
  padding: 61px 80px 60px;
}

.section-faq__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.31;
  color: var(--red-dark);
  text-align: center;
  margin: 0 auto 60px;
}

.section-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 966px;
  margin: 0 auto;
  align-items: start;
}

.section-faq__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: rgba(248, 243, 255, 0.16);
  border: 2px solid #7d48d1;
  border-radius: 16px;
  overflow: hidden;
}

.faq-item__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px;
  padding-right: 36px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.faq-item__question {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 25px;
  color: var(--red-dark);
}

.faq-item__icon {
  flex-shrink: 0;
  font-family: Inter, var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 16px;
  color: #5b5b5b;
  margin-top: 3px;
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__answer {
  padding: 0 16px 16px;
  font-size: 15px;
  line-height: 24.375px;
  color: var(--footer-tagline);
}

.faq-item__answer p {
  margin: 0 0 12px;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__answer ul {
  margin: 0 0 12px;
  padding-left: 22px;
}

.faq-item__answer li {
  margin-bottom: 4px;
}

.faq-item__answer li:last-child {
  margin-bottom: 0;
}

.faq-item__answer strong {
  font-weight: 700;
}

@media (max-width: 900px) {
  .section-faq {
    padding: 48px 16px 40px;
  }

  .section-faq__title {
    margin-bottom: 32px;
  }

  .section-faq__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-faq__col {
    gap: 16px;
  }

  .faq-item__question {
    font-size: 18px;
    line-height: 1.35;
  }

  .faq-item__trigger {
    padding-right: 16px;
  }
}
