/* ============ SSS / FAQ page ============ */
.faq-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 90px 32px 130px;
}

.faq-group { margin-bottom: 44px; }
.faq-group-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 14px;
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}
.faq-answer p { margin: 0 0 14px; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer .legal-warning {
  margin: 4px 0 0;
}
