.faq {
  padding: 0 24px 24px 24px;
  background: var(--c-bg);
}

.faq__inner {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #101214;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 2rem 80px 32px;
}

.faq__title {
  font-family: var(--font-body);
  font-size: clamp(28px, 3.4vw, 40px);
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
  font-weight: 700;
}

.faq__text {
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.faq-item[open] {
  background: #161f33;
  border-color: #4da3ff66;
}

.faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 16px 24px 16px 16px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__chevron {
  transition: transform 0.2s ease;
  color: var(--c-muted);
  display: inline-flex;
}
.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  color: #fff;
}

.faq-item__a {
  padding: 0 24px 16px;
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.65;
}
.faq-item__a p {
  margin: 0;
}

@media (max-width: 1023px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 24px;
  }
}
