/* -- FAQ SECTIE -- */
.faq-section {
  width: 60vw;
  margin: 120px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2D7DD2;
  text-align: center;
}

.faq-heading {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -1.4px;
  color: #fff;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.faq-list {
  width: 100%;
  max-width: 52vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: #07090c;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  padding: 17px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.18s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.2s ease;
  padding: 0 24px;
}

.faq-answer p {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  padding-bottom: 0;
}

.faq-answer ul {
  list-style: none;
  padding: 6px 0 4px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-answer ul li {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  padding-left: 18px;
  position: relative;
}

.faq-answer ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #2D7DD2;
  font-size: 12px;
  top: 2px;
}

.faq-question[aria-expanded='true'] .faq-icon {
  transform: rotate(45deg);
}

.faq-question[aria-expanded='true'] + .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding: 0 22px 18px;
}

@media (max-width: 1000px) {
  .faq-section {
    width: 88vw;
  }

  .faq-list {
    max-width: 100%;
  }
}

/* FORCE-OVERRIDE: faq text white */
.faq-question,
.faq-answer p,
.faq-answer ul li {
  color: #fff !important;
}
