.faq-body {
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(255, 170, 40, 0.1), transparent 62%),
    #0a0a0a;
  padding: max(20px, env(safe-area-inset-top)) 14px max(28px, env(safe-area-inset-bottom));
  align-items: flex-start;
}

.faq-shell {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #141414;
  border-radius: 28px;
  padding: 18px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: in 0.45s ease both;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #8a8a8a;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  width: fit-content;
  transition: color 0.15s;
}

.faq-back svg {
  width: 16px;
  height: 16px;
}

.faq-back:hover {
  color: #ccc;
}

.faq-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.faq-item {
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  user-select: none;
}

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

.faq-item summary span {
  flex: 1;
  line-height: 1.3;
}

.faq-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #fffc00;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 14px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #9a9a9a;
  line-height: 1.45;
}

.faq-footer {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: #666;
  margin-top: 6px;
  line-height: 1.4;
  padding: 0 8px;
}

@media (max-width: 380px) {
  .faq-shell {
    border-radius: 22px;
    padding: 16px 12px 18px;
  }

  .faq-title {
    font-size: 1.35rem;
  }

  .faq-item summary {
    font-size: 0.82rem;
    padding: 13px 12px;
  }
}
