.faq-page {
  min-height: 100vh;
}

.faq-shell {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.faq-top {
  margin-bottom: 24px;
}

.faq-back {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.faq-back:hover {
  color: var(--cyan);
}

.faq-top h1 {
  margin: 4px 0 8px;
  font-size: clamp(28px, 6vw, 34px);
  letter-spacing: -0.03em;
}

.faq-intro {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

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

.faq-item p,
.faq-item ul {
  margin: 0;
  padding: 0 18px 16px;
  color: #c8cdd8;
  font-size: 14px;
  line-height: 1.6;
}

.faq-item p + p,
.faq-item ul {
  margin-top: 10px;
}

.faq-item ul {
  padding-left: 34px;
}

.faq-item li {
  margin-bottom: 6px;
}

.faq-item strong {
  color: var(--text);
}

.faq-cta {
  margin-top: 32px;
  text-align: center;
  padding: 24px 16px;
  border-radius: 20px;
  border: 1px solid rgba(22, 244, 255, 0.2);
  background: rgba(22, 244, 255, 0.05);
}

.faq-cta p {
  margin: 0 0 14px;
  font-weight: 700;
}

.faq-cta-btn {
  display: inline-flex;
  justify-content: center;
  min-width: 200px;
  text-decoration: none;
}
