/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(6,12,22,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--blue); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

/* ── HAMBURGER (mobile only) ── */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: border-color 0.2s, background 0.2s;
}
.hamburger:hover,
.hamburger:focus-visible {
  border-color: rgba(0,102,255,0.5);
  background: rgba(0,102,255,0.08);
  outline: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s;
  transform-origin: center;
}

.hamburger.active span { background: var(--blue); }
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: #0052cc !important; transform: translateY(-1px); }

/* ── SECTIONS ── */
section { padding: 96px 6%; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,102,255,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  bottom: 50px; left: 10%;
  pointer-events: none;
}

.hero-inner { max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,102,255,0.1);
  border: 1px solid rgba(0,102,255,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* ── STAT STRIP ── */
.stats-strip {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 64px;
  overflow: hidden;
  animation: fadeUp 0.6s 0.4s ease both;
  background: var(--surface);
}

.stat {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── SECTION BACKGROUNDS ── */
#services { background: var(--surface); }
#pricing { background: var(--bg); }
#process { background: var(--surface); }
#faq { background: var(--bg); }
#contact { background: var(--surface); }

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--teal), var(--blue), transparent);
  opacity: 0.4;
}

.step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px; height: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-detail .icon {
  width: 36px; height: 36px;
  background: rgba(0,102,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,232,130,0.08);
  border: 1px solid rgba(0,232,130,0.25);
  color: var(--green);
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 8px;
}
.booking-btn:hover { background: rgba(0,232,130,0.15); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 6% 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo { display: flex; margin-bottom: 12px; }
.footer-brand p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 280px;
}

footer h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--muted);
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--white); }

.footer-tagline {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-style: italic;
  color: var(--blue);
  letter-spacing: 0.3px;
  padding-top: 16px;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  footer { grid-template-columns: 1fr; }
  .stats-strip { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }

  /* Mobile nav */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0A0A0A;
    border-top: 1px solid #1a1a2e;
    padding: 1rem 0;
    gap: 0;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    color: var(--white);
  }
  .nav-links a.nav-cta {
    margin: 0.5rem 2rem 0;
    width: calc(100% - 4rem);
    text-align: center;
    padding: 14px 22px !important;
    border-radius: 8px;
  }
}
