
:root {
  --void: #03060f;
  --deep: #060d1e;
  --navy: #0a1628;
  --blue: #0d2244;
  --glow: #1a9fff;
  --glow2: #00e5ff;
  --mist: #002d50;
  --solar: #ff9500;
  --white: #f0f8ff;
  --card: rgba(10,22,40,0.85);
  --border: rgba(26,159,255,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--void);
  color: var(--white);
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

/* STAR FIELD */
#stars-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.89);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--solar);
  transition: padding 0.3s, background 0.3s;
}
.logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgb(3, 54, 121);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
}
.logo-img {
  height: 65px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(26, 79, 255, 0.26));
}
.logo span { color: var(--glow); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--solar);
  transition: width 0.3s;
}
.nav-links a.active { color: var(--solar); }
.nav-links a:hover { color:  rgb(8, 158, 228); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

.nav-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.nav-phone a {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--mist);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.nav-phone a:hover { color:  rgb(8, 158, 228); }
.nav-phone span {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  color: var(--solar);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-actions {
  flex: 0 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  background: black;
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-cta:hover { background: rgba(228, 77, 8, 0.89); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,159,255,0.4); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--mist); transition: all 0.3s; }

.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);
}

/* HERO */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 6% 80px;
  z-index: 1;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 90%;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: 20px;
}
.hero-logo {
  max-width: clamp(200px, 60vw, 400px);
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px rgba(209, 223, 10, 0.4));
  display: inline-block;
}
.hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 30px;
  letter-spacing: 2px;
}
.hero h1 .highlight { color: var(--glow); }

.hero-sub {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: rgba(179, 179, 179, 0.986);
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.03em;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}
.btn-primary {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--void);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--glow2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,159,255,0.5); }
.btn-ghost {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-ghost:hover { border-color:  rgb(8, 158, 228); color: var(--white); transform: translateY(-2px); }

/* Specifically target the Book Now button in the Calculator */
.command-center .btn-ghost {
  border-color: var(--white); /* Change this to your desired idle border color */
  color: var(--white);
}

.command-center .btn-ghost:hover {
  border-color: var(--glow); /* Change this to your desired hover border color */
  color:#000957;       /* Change this to your desired hover text color */
  background: rgb(219, 218, 218);
}

 .hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 72px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--glow);
  line-height: 1.2;
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240, 248, 255, 0.6);
  margin-top: 4px;
}

/* Mobile adjustment for stats */
@media (max-width: 768px) {
  .hero-stats { gap: 28px; margin-top: 40px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.75rem; }
}

/* ASTRONAUT FLOATING */
.astronaut-float {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(26,159,255,0.4));
  pointer-events: none;
  opacity: 0.85;
}
@keyframes float {
  0%, 100% { transform: translateY(-50%) rotate(-5deg); }
  50% { transform: translateY(calc(-50% - 20px)) rotate(5deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTION BASE */
section {
  position: relative;
  z-index: 1;
  padding: 100px 6%;
}
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-label::before { content: '['; color: var(--glow); opacity: 0.4; }
.section-label::after { content: ']'; color: var(--glow); opacity: 0.4; }
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-align: center; /* Center the section title */
}
.section-sub {
  color: rgba(240, 248, 255, 0.7); /* Using a faded white for better contrast on dark backgrounds */
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
  text-align: center;
  margin: 0 auto;
}

/* DIVIDER */
.orbit-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.orbit-divider::after {
  content: '';
  position: absolute;
  top: 0; left: -20%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  opacity: 0.4;
  animation: dividerScan 6s linear infinite;
}
@keyframes dividerScan {
  0% { left: -30%; }
  100% { left: 130%; }
}

/* SERVICES */
#services { background: var(--void); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: black;
  border: 1px solid white;
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.35s cubic-bezier(.25,.46,.45,.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.service-card::before, .service-card::after {
  content: '';
  position: absolute;
  width: 15px; height: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.service-card::before {
  top: 0; left: 0;
  border-top-color: var(--white);
  border-left-color: var(--white);
}
.service-card::after {
  bottom: 0; right: 0;
  border-bottom-color: var(--white);
  border-right-color: var(--white);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(26,159,255,0.4); box-shadow: 0 20px 60px rgba(26,159,255,0.1); }
.service-card:hover::before { border-top-color: var(--glow); border-left-color: var(--glow); width: 30px; height: 30px; }
.service-card:hover::after { border-bottom-color: var(--glow); border-right-color: var(--glow); width: 30px; height: 30px; }

.service-card:hover h3 { color: var(--glow2); text-shadow: 0 0 10px rgba(0, 229, 255, 0.4); }

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(26,159,255,0.5));
}
.service-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p {
  color: white;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}
.service-features {
  margin-top: 20px;
  list-style: none;
}
.service-features li {
  font-size: 0.82rem;
  font-family: 'Space Mono', monospace;
  color: rgba(221, 221, 221, 0.884);
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '◈';
  color:  rgb(8, 158, 228);
  font-size: 0.6rem;
}

/* HOW IT WORKS */
#how-it-works { background: var(--deep); }
.steps-container {
  margin-top: 64px;
  width: 100%;
}
.step {
  background: rgb(0, 0, 0);
  border: 1px solid var(--white);
  border-radius: 8px;
  padding: 40px;
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
}

.step-num {
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: 'Space Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgb(8, 158, 228);
  line-height: 1;
}
.step-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.step-content p {
  color: rgba(240, 248, 255, 0.8); 
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
}
.step-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 15px;
  display: block;
}
.steps-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .steps-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .steps-cols { grid-template-columns: 1fr; } }

/* GALLERY */
#gallery { background: var(--void); overflow: hidden; }
.gallery-scene {
  margin-top: 60px;
  position: relative;
  height: 420px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.gallery-track {
  display: flex;
  gap: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-card {
  width: 260px;
  height: 340px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-drag: none;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -130px;
  margin-top: -170px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  will-change: transform, opacity;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-card .card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(3,6,15,0.9));
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.gallery-dot.active { background: var(--glow); box-shadow: 0 0 10px rgba(26,159,255,0.6); transform: scale(1.3); }
.gallery-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.gallery-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.gallery-arrow:hover { border-color: var(--glow); background: rgba(26,159,255,0.1); }

/* PRICES */
#prices { background: var(--deep); }
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 48px;
  background: rgba(0, 0, 0, 0.788);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid var(--white);
  width: fit-content;
}
.toggle-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}
.pricing-toggle:has(.active) .toggle-label:last-child { color: var(--white); }
.pricing-toggle:not(:has(.active)) .toggle-label:first-child { color: var(--white); }

.toggle-switch {
  width: 48px; height: 24px;
  background: var(--void);
  border: 1px solid #1a2a4c;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: inset 0 2px 4px var(--glow2);
}
.toggle-switch.active { background: var(--glow); border-color: var(--glow); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  transition: all 0.3s;
}
.toggle-switch.active .toggle-knob { left: 27px; background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: 
    linear-gradient(rgba(26, 159, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 159, 255, 0.05) 1px, transparent 1px),
  rgb(0, 0, 0);
  background-size: 30px 30px, 30px 30px, 100% 100%;
  backdrop-filter: blur(12px);
  border: 1px solid rgb(248, 248, 248);
  border-radius: 14px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  animation: cardGridFlow 60s linear infinite;
}
@keyframes cardGridFlow {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 30px 30px, 30px 30px, 0 0; }
}
.pricing-card:hover { 
  transform: translateY(-8px); 
  border-color: var(--glow2);
  box-shadow: 0 15px 45px rgba(0, 229, 255, 0.15);
}
.plan-icon { 
  width: 50px;
  height: 50px;
  margin-bottom: 20px; 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.plan-icon img { width: 100%; height: 100%; object-fit: contain; }
.pricing-card:hover .plan-name,
.pricing-card:hover .plan-price {
  transform: scale(1.03);
  color: var(--glow2);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}
.plan-name {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:  rgb(8, 158, 228);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.plan-price {
  font-family: 'Orbitron', monospace;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
.plan-price span { font-size: 1rem; color: rgba(240, 248, 255, 0.6); }
.plan-freq {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(240, 248, 255, 0.6);
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-family: 'Space Mono', monospace;
  color: rgba(240, 248, 255, 0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan-features li .check { color: var(--glow); font-size: 0.6rem; opacity: 0.8; }
.plan-features li.cross { opacity: 0.4; }
.plan-features li.cross .check { color: #555; }
.plan-btn {
  width: 100%;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.25s;
}
.plan-btn-outline {
  background: transparent;
  color:  rgb(8, 158, 228);
  border: 1px solid  rgb(8, 158, 228);
}
.plan-btn-outline:hover { background: rgba(26,159,255,0.1); }
.plan-btn-solid {
  background: var(--glow);
  color: var(--void);
  border: none;
}
.plan-btn-solid:hover { background: var(--glow2); box-shadow: 0 4px 20px rgba(26,159,255,0.4); }

.command-center {
  background: rgba(0, 0, 0, 0.76);
  border: 1px solid white;
  border-radius: 4px;
  padding: 40px;
  margin: 60px auto 0;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.system-status { font-family: 'Space Mono', monospace; font-size: 0.6rem; color: var(--glow); margin-bottom: 30px; display: flex; align-items: center; gap: 10px; position: relative; z-index: 1; text-shadow: 0 0 5px rgba(26,159,255,0.5); }
.system-status span { width: 8px; height: 8px; background: var(--glow); border-radius: 50%; box-shadow: 0 0 10px var(--glow); animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes scanline {
  0% { top: -5%; }
  100% { top: 105%; }
}

.config-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 40px; position: relative; z-index: 1; }
.module-label { display: block; font-family: 'Space Mono', monospace; font-size: 0.55rem; color: var(--white); margin-bottom: 15px; letter-spacing: 2px; }
.module-options { display: flex; gap: 8px; flex-wrap: wrap; }
.opt-btn {
  flex: 1; min-width: 100px;
  background: #000000; /* Darker navy for better contrast */
  border: 1px solid white; color: var(--white);
  padding: 12px 10px; font-family: 'Space Mono', monospace;
  font-size: 0.65rem; cursor: pointer; transition: all 0.2s;
}
.opt-btn.active { background: rgb(219, 218, 218); color: #ffffff; border-color: var(--glow); font-weight: 700; color: #000957;}
.opt-btn:hover:not(.active) { background: rgb(219, 218, 218); border-color: var(--glow); color:#000957; }
.metrics { grid-column: 1 / -1; }
.metric-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.qty-label { font-size: 0.65rem; color: rgb(255, 255, 255); margin-bottom: 8px; display: block; font-family: 'Space Mono', monospace; }
.stepper-wrap { display: flex; border: 1px solid var(--border); background: var(--void); border-radius: 4px; overflow: hidden; }
.stepper-wrap button { width: 44px; height: 44px; border: none; background: rgb(0, 0, 0); color: var(--glow); cursor: pointer; font-size: 1.4rem; transition: background 0.2s; }
.stepper-wrap button:hover { background: rgba(255, 255, 255, 0.973); }
.stepper-wrap input { flex: 1; border: none; background: transparent; color: var(--white); text-align: center; font-family: 'Orbitron', monospace; font-size: 1rem; }
.stepper-wrap input::-webkit-inner-spin-button { display: none; }

.telemetry-panel { border-top: 1px solid var(--border); padding-top: 30px; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; position: relative; z-index: 1; }
.data-label { display: block; font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--glow); margin-bottom: 4px; font-weight: 700; }
.data-value { font-family: 'Orbitron', monospace; font-size: 3rem; color: var(--glow); font-weight: 900; line-height: 1; }
.data-note { font-size: 0.9rem; color: var(--white); margin-top: 10px; max-width: 400px; line-height: 1.6; opacity: 0.8; }

@media (max-width: 768px) {
  .config-grid, .metric-controls { grid-template-columns: 1fr; }
  .telemetry-panel { flex-direction: column; align-items: stretch; text-align: center; }
  .data-note { margin: 15px auto; }
  .command-center { padding: 32px 0; border-radius: 0; border-left: none; border-right: none; }
  .system-status, .module-label, .qty-label, .data-label, .data-note, .telemetry-panel, .comm-note { padding-left: 20px; padding-right: 20px; }
  .data-value { font-size: 3.5rem; margin-bottom: 8px; }
  .system-status { font-size: 0.8rem; }
  .module-label { font-size: 0.8rem; }
  .comm-note { font-size: 0.75rem !important; }
  .module-options { flex-direction: column; align-items: stretch; gap: 0; }
  .opt-btn { 
    padding: 20px 16px; font-size: 0.8rem; width: 100%; margin: 0; min-width: 0; 
    white-space: normal; box-sizing: border-box; border-left: none; border-right: none; border-radius: 0; 
  }
  .stepper-wrap { border-radius: 0; border-left: none; border-right: none; }
  .metric-controls { gap: 15px; }
  .qty-label { font-size: 0.85rem; }
  .data-label { font-size: 0.8rem; }
  .calc-list-breakdown { font-size: 0.8rem; line-height: 1.6; }
}

/* FAQ */
#faq { background: var(--deep); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
}
.faq-item {
  background: black;
  border: 1px solid  white;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color:  rgb(8, 158, 228); }
.faq-q {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
}
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid  rgb(8, 158, 228);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--glow);
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: rgba(26,159,255,0.1); transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease-out, padding 0.3s;
  padding: 0 24px;
  color: rgba(240, 248, 255, 0.7);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; padding-bottom: 22px; }
.faq-a div { min-height: 0; font-size: 0.88rem; line-height: 1.7; font-weight: 300; }

/* BOOKING */
#booking { background: var(--void); }
.booking-mission-control {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}
.module-header { font-family: 'Space Mono', monospace; font-size: 0.6rem; color:  rgb(8, 158, 228); margin-bottom: 20px; letter-spacing: 2px; }
.calendly-module { background: rgba(0, 0, 0, 0.877); border: 1px solid  rgb(8, 158, 228); border-radius: 8px; padding: 24px; }
.mission-telemetry-module { display: flex; flex-direction: column; gap: 20px; }
.telemetry-box { background: black; border: 1px solid var(--white); border-radius: 8px; padding: 24px; }
.telemetry-item { display: flex; justify-content: space-between; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px; }
.telemetry-item .label { font-family: 'Space Mono', monospace; font-size: 0.6rem; color: rgba(240, 248, 255, 0.6); }
.telemetry-item .value { font-family: 'Orbitron', monospace; font-size: 0.75rem; color: var(--white); }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-list li { font-size: 0.85rem; color: rgba(240, 248, 255, 0.8); display: flex; align-items: center; gap: 10px; }
.contact-list .icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; filter: grayscale(1); }
.contact-list .icon img { width: 100%; height: 100%; object-fit: contain; }
.service-area-display { text-align: center; padding: 20px; border: 1px solid rgba(26,159,255,0.1); border-radius: 6px; background: rgba(26,159,255,0.02); }
.sector-map-placeholder { font-family: 'Space Mono', monospace; font-size: 0.75rem; line-height: 1.6; }
.sector-map-placeholder span { font-size: 1.5rem; display: block; margin-bottom: 10px; }

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  background: black;
  border-top: 1px solid var(--border);
  padding: 60px 6% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.1rem; display: block; margin-bottom: 16px; }
.footer-brand p { color: rgba(240, 248, 255, 0.6); font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color:  rgb(8, 158, 228);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(240, 248, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col h4 {
  font-size: 0.8rem; /* Increased from 0.62rem for mobile */
}
.footer-brand p {
  font-size: 1rem; /* Increased from 0.85rem for mobile */
}
.footer-col ul a {
  font-size: 0.95rem; /* Better tap targets and readability */
}
.footer-bottom {
  border-top: 1px solid var(--solar);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  color: rgba(138,180,212,0.4);
}

/* MOBILE NAV DRAWER */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 100%;
  background: rgba(3,6,15,0.98);
  backdrop-filter: blur(20px);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.4s;
  visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }

.mobile-nav a {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s, opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}
.mobile-nav.open a { opacity: 1; transform: translateY(0); }

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--solar);
  transition: width 0.3s;
}

.mobile-nav.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(7) { transition-delay: 0.35s; }

.mobile-nav a.active { color: var(--solar); }
.mobile-nav a:hover { color: var(--glow); }
.mobile-nav a.active::after,
.mobile-nav a:hover::after { width: 100%; }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ORBIT DECORATION */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,159,255,0.07);
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .booking-mission-control { grid-template-columns: 1fr; gap: 20px; }
  .calendly-module, .telemetry-box { padding: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 12px 5%; }
  .logo-img { height: 45px; }
  .logo { font-size: 1.1rem; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero-content { padding: 24px; }
  .astronaut-float { display: none; }
  .hero-stats { gap: 28px; }
  .faq-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .field-group { grid-template-columns: 1fr; }
  section { padding: 60px 6%; }
  .hero-logo { max-width: 260px; margin-bottom: 20px; }
  .hero-sub { font-size: 1.1rem; line-height: 1.6; }
  .btn-ghost { padding: 12px 16px; font-size: 0.7rem; }

  .section-sub { font-size: 1.1rem; }
  .step { padding: 32px 24px; }
  .step-num { 
    top: 15px; 
    right: 20px; 
    font-size: 1.8rem; 
  }
  .service-card h3, .step-content h3 { font-size: 1.2rem; }
  .service-card p, .step-content p { font-size: 1rem; }

  /* Improve performance by reducing blur intensity on mobile */
  .hero-content, .pricing-card, .command-center, nav {
    backdrop-filter: blur(8px);
  }

  @keyframes pulse-card-glow {
    0%, 100% { 
      border-color:  rgb(8, 158, 228);
      box-shadow: 0 0 15px rgba(26, 159, 255, 0.05);
    }
    50% { 
      border-color: var(--glow2);
      box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
    }
  }

  .pricing-card {
    animation: cardGridFlow 30s linear infinite, pulse-card-glow 4s ease-in-out infinite;
  }

  @keyframes pulse-price-glow {
    0%, 100% { text-shadow: 0 0 12px rgba(0, 229, 255, 0.6); }
    50% { text-shadow: 0 0 22px rgba(0, 229, 255, 0.9), 0 0 8px rgba(0, 229, 255, 0.4); }
  }

  .plan-price {
    color: var(--glow2);
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
    animation: pulse-price-glow 3s ease-in-out infinite;
  }
}
@media (max-width: 480px) {
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .gallery-scene { height: 300px; }
  section { padding: 56px 6%; }
  .command-center { padding: 32px 0; }
  .plan-price { font-size: 2.2rem; }
  .data-value { font-size: 3rem; }
  /* Larger touch targets for better mobile usability */
  .stepper-wrap button { width: 48px; height: 48px; } 
  /* Prevent toggle overflow on narrow devices */
  .pricing-toggle { gap: 12px; padding: 10px 16px; }
  .btn-primary { padding: 16px 20px; font-size: 0.7rem; }
}

@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
