.faq-section {
  padding: 7rem 4rem;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(212, 175, 55, 0.07),
      transparent 26%
    ),
    #0a0c10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 7rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.faq-header h2 {
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.01)
    ),
    #0d1320;
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(212, 175, 55, 0.22);
  background:
    linear-gradient(
      180deg,
      rgba(212, 175, 55, 0.055),
      rgba(255, 255, 255, 0.01)
    ),
    #0d1320;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: -0.25rem 1.5rem 1.45rem;
  max-width: 760px;
  color: #aab4c9;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 960px) {
  .faq-section {
    padding: 5rem 1.5rem;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-header {
    position: static;
  }
}

@media (max-width: 640px) {
  .faq-item summary {
    padding: 1.15rem 1.2rem;
    font-size: 0.96rem;
  }

  .faq-item p {
    margin: -0.15rem 1.2rem 1.25rem;
  }
}
