.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro .btn {
  margin-top: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-item.is-open {
  background: var(--white);
  border-color: rgba(11, 116, 209, 0.2);
  box-shadow: 0 18px 44px rgba(10, 41, 77, 0.08);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--dark);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

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

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

.faq-answer > * {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}
