:root {
  --bg: #0a0e1f;
  --text: #f5f8ff;
  --accent: #6ea0ff;
  --accent2: #9bffd6;
  --muted: #9aa1b9;
}

/* HERO */
.services-hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #0a0e1f, #0e1635);
  color: var(--text);
}
.services-hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.3), #000);
}
.services-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* OVERVIEW */
.overview {
  background: #0b1026;
  padding: 100px 20px;
  text-align: center;
}
.overview p { max-width: 800px; margin: 10px auto; }
.overview .highlights {
  list-style: none;
  margin-top: 30px;
  line-height: 1.8;
  color: var(--muted);
}

/* CORE SERVICES */
.core-services {
  background: linear-gradient(180deg, #0a0e1f, #0b142f);
  padding: 100px 20px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}
.service-card {
  background: #101633;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  padding: 25px;
  transition: 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(110,160,255,0.3);
}
.service-card h3 { color: var(--accent); margin-bottom: 5px; }
.service-card h4 { color: var(--accent2); margin-bottom: 10px; font-size: 1rem; }
.service-card p { color: var(--text); margin-bottom: 10px; line-height: 1.6; }
.service-card ul {
  list-style: none;
  margin-top: 10px;
  color: var(--muted);
}

/* WHY MODEL */
.why-model {
  background: #0b0f25;
  padding: 100px 20px;
  text-align: center;
}
.stats-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.stat {
  background: #101633;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 15px;
  color: var(--muted);
  font-style: italic;
}

/* Final CTA full background fix */
.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  color: var(--text);
  background: linear-gradient(180deg, #0a0e1f, #0e1630 60%, #0a0e1f);
}

.final-cta .container {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.final-cta h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.final-cta p {
  color: var(--muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.final-cta .cta {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.final-cta .btn {
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
}

.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;
}

/* Fix stars canvas full coverage */
#stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}

/* Animations */
.fade-up, .fade-in, .pop, .reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}
.fade-up.show, .fade-in.show, .pop.show, .reveal-up.show {
  opacity: 1;
  transform: translateY(0);
}
