/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #00BFFF;
  --gold: #FFB800;
  --black: #0A0A0F;
  --dark: #0D0D15;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(0,191,255,0.15);
  --teal: #00CC88;
  --orange: #FF8C00;
  --white: #FFFFFF;
  --gray: rgba(255,255,255,0.6);
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== BLACK HOLE CANVAS ===== */
#bh-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: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,191,255,0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000 !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(255,184,0,0.3);
  transition: box-shadow 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  box-shadow: 0 0 35px rgba(255,184,0,0.6) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid rgba(0,191,255,0.1);
  gap: 16px;
}

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
}

.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,191,255,0.15);
  animation: orbit 20s linear infinite;
}

.ring-1 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 25s; }
.ring-2 { width: 650px; height: 650px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 35s; animation-direction: reverse; border-color: rgba(255,184,0,0.08); }
.ring-3 { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 50s; border-color: rgba(0,204,136,0.05); }

@keyframes orbit {
  0% { transform: translate(-50%,-50%) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg); }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-badge {
  display: inline-block;
  background: rgba(0,191,255,0.1);
  border: 1px solid rgba(0,191,255,0.3);
  color: var(--blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num { font-size: 32px; font-weight: 800; display: block; }
.stat-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 0 30px rgba(255,184,0,0.3);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  box-shadow: 0 0 50px rgba(255,184,0,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(0,191,255,0.4);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(0,191,255,0.2);
  background: rgba(0,191,255,0.05);
}

.btn-full { width: 100%; text-align: center; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ===== SECTIONS ===== */
.section { padding: 100px 24px; position: relative; z-index: 1; }
.section-dark { background: transparent; }

/* Dark panel overlays so black hole peeks through */
.section .container {
  background: rgba(5,5,10,0.88);
  border: 1px solid rgba(0,191,255,0.1);
  border-radius: 12px;
  padding: 60px 48px;
  box-shadow: 0 0 40px rgba(0,191,255,0.05);
}

/* Hero has no panel — full transparency to show black hole */
.hero { background: transparent; }
.hero .hero-content {
  background: rgba(5,5,10,0.7);
  border: 1px solid rgba(0,191,255,0.08);
  border-radius: 20px;
  padding: 60px 48px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 60px rgba(0,191,255,0.06);
}

.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { color: var(--gray); font-size: 18px; max-width: 600px; margin: 16px auto 0; }

.section-badge {
  display: inline-block;
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.3);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.blue-badge {
  background: rgba(0,191,255,0.1);
  border-color: rgba(0,191,255,0.3);
  color: var(--blue);
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.blue-glow { text-shadow: 0 0 40px rgba(0,191,255,0.4); }

/* ===== GLASS CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.glass-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,191,255,0.4), transparent);
}

.glass-card:hover {
  border-color: rgba(255,184,0,0.4);
  box-shadow: 0 0 40px rgba(0,191,255,0.1), 0 0 40px rgba(255,184,0,0.05);
  transform: translateY(-4px);
}

.card-icon { font-size: 40px; margin-bottom: 20px; }
.glass-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.glass-card p { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }

.card-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.card-link:hover { color: var(--gold); }

/* ===== HOW IT WORKS ===== */
.circuit-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,191,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.step-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(var(--blue), var(--gold));
  margin: 0 auto;
  margin-left: 63px;
}

.step-num {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  min-width: 60px;
}

.step-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-content p { color: var(--gray); font-size: 15px; line-height: 1.7; }

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ===== WHY US ===== */
.why-body {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
}

.why-body strong { color: var(--white); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.diff-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
}

.diff-card:hover {
  border-color: rgba(0,191,255,0.3);
  transform: translateY(-3px);
}

.diff-icon { font-size: 32px; margin-bottom: 14px; }
.diff-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.diff-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card { text-align: center; }
.pricing-featured {
  border-color: rgba(255,184,0,0.4) !important;
  box-shadow: 0 0 50px rgba(255,184,0,0.1) !important;
  transform: scale(1.02);
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.plan-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.plan-tagline { color: var(--gray); font-size: 14px; margin-bottom: 24px; }
.plan-price { font-size: 20px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.plan-price-sub { font-size: 13px; color: var(--gray); font-weight: 400; }

.plan-features {
  list-style: none;
  text-align: left;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li { font-size: 14px; color: rgba(255,255,255,0.8); }

/* ===== FORM ===== */
.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,191,255,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(0,191,255,0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: #1a1a2e; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  margin-top: 16px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon { font-size: 60px; margin-bottom: 20px; }
.form-success h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.form-success p { color: var(--gray); font-size: 17px; }

/* ===== FOOTER ===== */
footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(0,191,255,0.1);
  padding: 60px 24px 30px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo { font-size: 28px; font-weight: 900; letter-spacing: 2px; margin-bottom: 10px; }
.footer-tagline { color: var(--gray); font-size: 15px; margin-bottom: 12px; }
.footer-email { color: var(--blue); text-decoration: none; font-size: 15px; }
.footer-email:hover { color: var(--gold); }

.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
}

/* ===== UTILITY ===== */
.gold { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 32px 24px; }
  .steps { gap: 0; }
  .step { flex-direction: column; gap: 16px; }
  .step-connector { margin-left: 24px; }
  .pricing-featured { transform: scale(1); }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; }
}
