.sp-faq-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.sp-faq-hero {
  background: radial-gradient(circle at center, #07162c 0%, #050505 55%, #000 100%);
  color: #fff;
  text-align: center;
  padding: 70px 24px 0;
  margin-bottom: 50px;
}

.sp-faq-badge {
  display: inline-block;
  border: 1px solid #005cff;
  color: #005cff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  margin-bottom: 26px;
}

.sp-faq-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.sp-faq-hero h1 span {
  color: #005cff;
}

.sp-faq-hero p {
  max-width: 560px;
  margin: 24px auto 70px;
  font-size: 16px;
  line-height: 1.7;
  color: #d7d7d7;
}

.sp-faq-strip {
  background: #005cff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 16px 20px;
  margin: 0 -24px;
}

.sp-faq-strip span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sp-faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.sp-faq-content h2 {
  margin: 45px 0 20px;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.sp-accordion {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-bottom: 16px;
  background: #fff;
  overflow: hidden;
}

.sp-accordion summary {
  cursor: pointer;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
  position: relative;
}

.sp-accordion summary::-webkit-details-marker {
  display: none;
}

.sp-accordion summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
}

.sp-accordion[open] summary::after {
  content: "−";
}

.sp-accordion div {
  padding: 0 24px 22px;
  color: #333;
  line-height: 1.7;
}

.sp-accordion p {
  margin: 0;
}

.sp-accordion a {
  color: #005cff;
  text-decoration: underline;
}

@media (max-width: 749px) {
  .sp-faq-page {
    padding: 0 15px 40px;
  }

  .sp-faq-hero {
    padding-top: 50px;
  }

  .sp-faq-strip {
    gap: 14px;
  }

  .sp-faq-strip span {
    font-size: 11px;
  }

  .sp-accordion summary {
    padding: 18px 48px 18px 18px;
  }

  .sp-accordion div {
    padding: 0 18px 20px;
  }
}