.oca-faq-section {
  padding: 88px 48px;
  background: #07050d;
  border-top: 1px solid rgba(113, 75, 103, 0.15);
}

.oca-faq-inner {
  max-width: 920px;
  margin: 0 auto;
}

.oca-faq-head {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.oca-faq-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.08;
}

.oca-faq-list {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
}

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

.oca-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: rgba(242, 238, 246, 0.88);
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  transition: color 0.2s ease;
}

.oca-faq-trigger:hover {
  color: #c49abd;
}

.oca-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(113, 75, 103, 0.42);
  color: #d7b8cc;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease;
}

.oca-faq-item.open .oca-faq-icon {
  transform: rotate(45deg);
  background: rgba(113, 75, 103, 0.20);
}

.oca-faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.oca-faq-item.open .oca-faq-body {
  max-height: 320px;
  opacity: 1;
}

.oca-faq-body p {
  margin: 0;
  padding: 0 0 20px;
  color: rgba(242, 238, 246, 0.64);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 720px) {
  .oca-faq-section {
    padding: 64px 20px;
  }
}
