.faq{
      padding: 100px 150px;
      font-family: 'Heebo', sans-serif;
      background: #07111c;
    }

    @media (max-width: 1300px) {
  .faq {
    padding: 50px 20px;
  }
}

.faq-wrap {
      display: grid;
      gap: 16px;
      font-family: 'Heebo', sans-serif;
    }

    .faq-item {
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      overflow: hidden;
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    .faq-item.active {
      border-color: rgba(234, 211, 154, 0.16);
      /* background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); */
    }

    .faq-question {
      width: 100%;
      border: 0;
      background: transparent;
      color: #d1d1d1;
      font: inherit;
      text-align: right;
      cursor: pointer;
      padding: 24px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .faq-question span {
      font-size: 1.08rem;
      font-weight: 700;
    }

    .faq-toggle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--gold-3);
      flex-shrink: 0;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
      color: #ead39a;
    }

    .faq-answer-inner {
      padding: 0 26px 24px;
    }
