.requirements-section {
  position: relative;
  overflow: hidden;
  padding: 108px 24px;
  background:
    linear-gradient(180deg, #111111 0%, #161616 100%);
  color: #f3f4f7;
}

.requirements-section::before,
.requirements-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.requirements-section::before {
  display: none;
}

.requirements-section::after {
  background:
    radial-gradient(circle at 14% 18%, rgba(113, 177, 232, 0.18), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.06), transparent 24%);
}

.requirements-section__container {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 46px;
}

.requirements-section__intro {
  padding: 10px 0 0;
  text-align: center;
}

.requirements-section__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.requirements-section__title {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #ffffff;
  text-align: center;
}

.requirements-section__description {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.82;
  margin-inline: auto;
  text-align: center;
}

.requirements-faq {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.24s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item.is-open {
  background: rgba(255, 255, 255, 0.015);
}

.faq-item__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 18px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item__index {
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.faq-item__question {
  color: #f8f9fb;
  font-size: clamp(1.02rem, 1.3vw, 1.26rem);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.faq-item__icon {
  justify-self: end;
  width: 34px;
  height: 34px;
  margin-right: 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.24rem;
  line-height: 1;
  transition: background 0.22s ease, transform 0.22s ease;
}

.faq-item__trigger:hover .faq-item__icon {
  background: rgba(255, 255, 255, 0.14);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.36s ease, opacity 0.26s ease;
}

.faq-item.is-open .faq-item__content {
  opacity: 1;
}

.faq-item__text {
  margin: 0 0 14px;
  padding: 0 68px 0 64px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(232, 235, 241, 0.74);
  max-width: 760px;
}

.faq-item__list {
  margin: 0;
  padding: 0 68px 26px 84px;
  color: rgba(232, 235, 241, 0.74);
}

.faq-item__list li {
  margin-bottom: 10px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item__note {
  margin: 10px 0 0;
  padding: 0 68px 26px 64px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(232, 235, 241, 0.52);
  font-style: italic;
}
