* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f1530, #050814);
  color: #fff;
}

/* ================= NAVBAR ================= */
.navbar {
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: rgba(5, 8, 20, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.logo {
  font-size: 28px;
  font-weight: 700;
}

.logo span {
  color: #6ee7ff;
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #cfd8ff;
}

.btn-sm {
  padding: 8px 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, #6ee7ff, #9d7bff);
  color: #000 !important;
  font-weight: 600;
}

/* ================= HERO ================= */
.hero {
  min-height: 90vh;
  padding: 0 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 50px;
}

.hero span {
  background: linear-gradient(90deg, #6ee7ff, #9d7bff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 720px;
  margin: 20px auto;
  color: #b9c2ff;
}

.hero-buttons a {
  margin: 12px;
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-outline {
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, #6ee7ff, #9d7bff);
  color: #000;
}

.btn-outline {
  border: 1px solid #6ee7ff;
  color: #6ee7ff;
}

/* ================= SECTIONS ================= */
.section {
  padding: 90px 10%;
  text-align: center;
}

.section.dark {
  background: rgba(255, 255, 255, 0.03);
}

.subtitle {
  max-width: 820px;
  margin: 15px auto;
  color: #b9c2ff;
}

/* ================= SERVICES ================= */
.services-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

/* ================= WORKFLOW ================= */
.workflow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.step {
  padding: 20px 34px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.4;
  transition: 0.4s;
}

.step.active {
  opacity: 1;
  box-shadow: 0 0 30px rgba(110, 231, 255, 0.5);
}

.line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6ee7ff, #9d7bff);
  margin: 0 10px;
}

/* ================= CONTACT CTA – CLEAN FIX ================= */

.contact-cta {
  background: radial-gradient(circle at top, #0c1226, #050814);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-card {
  max-width: 640px;
  width: 100%;
  padding: 50px 40px;
  text-align: center;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

.cta-card h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.cta-subtitle {
  color: #b9c2ff;
  margin-bottom: 30px;
  font-size: 16px;
}

.cta-details {
    margin-bottom: 40px !important;
}
.cta-details {
  color: #cfd8ff;
  line-height: 1.8;
  font-size: 15px;
}

.cta-details p {
  margin-bottom: 6px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
}

/* MOBILE */
@media (max-width: 600px) {
  .cta-card {
    padding: 40px 25px;
  }

  .cta-card h2 {
    font-size: 28px;
  }
}


/* ================= FOOTER ================= */
.footer {
  padding: 30px;
  text-align: center;
  color: #8f9bff;
}
