:root {
  --bg: #0a0e1f;
  --text: #f5f8ff;
  --accent: #6ea0ff;
  --muted: #a8b0cc;
}

/* HERO */
.faq-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  background: linear-gradient(180deg, #0a0e1f, #0e1635);
  padding: 60px 20px;
}
.faq-hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.3), #000);
}
.faq-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* FAQ SECTION */
.faq-section {
  background: #0b1026;
  padding: 100px 20px;
  color: var(--text);
}
.faq-section h2 {
  margin-top: 60px;
  text-align: center;
  color: var(--accent);
  margin-bottom: 30px;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Accordion Style */
.faq-item {
  background: #101633;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(110,160,255,0.2);
}
.faq-item .question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item .question::after {
  content: "+";
  font-weight: bold;
  transition: transform 0.3s;
}
.faq-item.open .question::after {
  content: "–";
  transform: rotate(180deg);
}
.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: all 0.3s ease;
  color: var(--muted);
  line-height: 1.6;
}
.faq-item.open .answer {
  max-height: 500px;
  padding: 15px 25px 25px;
}

/* Lists inside answers */
.faq-item ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
}

/* CTA Section */
.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(180deg, #0a0e1f, #0e1630 60%, #0a0e1f);
  color: var(--text);
}
.final-cta .container {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.final-cta .btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  margin: 10px;
}
.final-cta .btn.accent {
  background: linear-gradient(90deg, #6ea0ff, #9bffd6);
  color: #0a0e1f;
  border: none;
}
.final-cta .btn.btn-outline {
  border: 1px solid #6ea0ff;
  color: #6ea0ff;
  background: transparent;
}
#stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent;
}
