/* ===== FAQ (аккордеон) ===== */
.home-faq { padding: 40px 0; }
.home-faq__title { font-size: 36px; line-height: 1.2; margin: 0 0 24px; }
.home-faq__list { border-top: 1px solid var(--color-border, rgba(255,255,255,.15)); }
.home-faq__item { border-bottom: 1px solid var(--color-border, rgba(255,255,255,.15)); }

.home-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
}
.home-faq__q::-webkit-details-marker { display: none; }

.home-faq__icon {
  width: 22px; height: 22px; flex: 0 0 22px; position: relative;
}
.home-faq__icon::before, .home-faq__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 14px; height: 2px; background: currentColor; transform-origin: center;
}
.home-faq__icon::after { transform: rotate(90deg); transition: transform .2s ease; }
details[open] .home-faq__icon::after { transform: rotate(0deg); }

.home-faq__a { padding: 0 0 22px; color: var(--color-text); }
.home-faq__a p { margin: 0 0 12px; }