:root {
  --navy:    #0D1F3C;
  --navy2:   #0a1828;
  --blue:    #1A6EE8;
  --blue2:   #2D8CF0;
  --blueglow:#1A6EE840;
  --light:   #E8F0FE;
  --white:   #FFFFFF;
  --grey:    #8899BB;
  --text:    #C8D8F0;
  --border:  rgba(26,110,232,0.2);
  --card:    rgba(22,40,64,0.8);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy2);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(10,24,40,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 70px; object-fit: contain; }
.nav-logo a { display: flex; align-items: center; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--blue2) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 5% 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,110,232,0.18) 0%, transparent 70%), var(--navy2);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(26,110,232,0.12); top: -100px; right: -100px; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(45,140,240,0.08); bottom: 0; left: -60px; }
.hero-inner { position: relative; z-index: 1; max-width: 820px; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,110,232,0.15);
  border: 1px solid rgba(26,110,232,0.35);
  border-radius: 999px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--blue2);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 28px;
  animation: fadeUp .6s both;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
h1.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp .7s .1s both;
}
h1.hero-title span { color: var(--blue); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--grey);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
  animation: fadeUp .7s .2s both;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .7s .3s both;
}
.btn-primary {
  background: var(--blue); color: #fff;
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; display: inline-block;
  box-shadow: 0 0 30px rgba(26,110,232,0.35);
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 0 44px rgba(26,110,232,0.5); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--border);
  transition: all .2s; display: inline-block;
}
.btn-secondary:hover { border-color: rgba(26,110,232,0.6); background: rgba(26,110,232,0.08); }
.hero-stats {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 72px;
  animation: fadeUp .7s .4s both;
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── SECTION BASE ── */
section.page-section { padding: 100px 5%; }
.section-label {
  font-size: 11px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 10px;
}
h2.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--white);
  line-height: 1.15; margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--grey); max-width: 540px; line-height: 1.7; }
.section-header { margin-bottom: 60px; }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* ── HOW IT WORKS ── */
#how-it-works { background: rgba(255,255,255,0.015); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 60px; }
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.step-card:hover { border-color: rgba(26,110,232,0.5); transform: translateY(-4px); }
.step-num {
  font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800;
  color: rgba(26,110,232,0.15); position: absolute; top: 16px; right: 20px;
  line-height: 1;
}
.step-icon { font-size: 28px; margin-bottom: 16px; }
.step-title { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 13.5px; color: var(--grey); line-height: 1.65; }

/* ── ABOUT ── */
#about { scroll-margin-top: 72px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-label { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 12px; }
.about-text { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 16px; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.founder-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px;
}
.founder-name { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.founder-role { font-size: 12px; color: var(--blue2); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.founder-desc { font-size: 12.5px; color: var(--grey); line-height: 1.6; }
.about-visual {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 40px; display: flex; flex-direction: column; gap: 16px;
}
.about-stat-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: rgba(26,110,232,0.07);
  border-radius: 10px; border: 1px solid var(--border);
}
.about-stat-icon { font-size: 22px; }
.about-stat-text h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.about-stat-text p { font-size: 12px; color: var(--grey); }

/* ── SERVICES / PRICING ── */
#services { scroll-margin-top: 72px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 30px;
  position: relative; transition: all .25s;
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(26,110,232,0.45); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.pricing-card.featured {
  border-color: var(--blue); background: linear-gradient(160deg, rgba(26,110,232,0.15) 0%, var(--card) 60%);
  box-shadow: 0 0 40px rgba(26,110,232,0.15);
}
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 5px 16px; border-radius: 999px;
}
.pricing-tier { font-size: 11px; font-weight: 700; color: var(--blue2); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.pricing-name { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.pricing-tagline { font-size: 13px; color: var(--grey); margin-bottom: 24px; }
.pricing-deposit { font-size: 12px; color: var(--grey); margin-bottom: 4px; }
.pricing-setup { font-size: 28px; font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--white); }
.pricing-setup span { font-size: 14px; font-weight: 400; color: var(--grey); }
.pricing-retainer { font-size: 13px; color: var(--blue2); font-weight: 600; margin-bottom: 8px; margin-top: 4px; }
.pricing-build { font-size: 12px; color: var(--grey); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-features { list-style: none; flex: 1; margin-bottom: 28px; }
.pricing-features li {
  font-size: 13.5px; color: var(--text);
  padding: 8px 0; display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--blue2); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-cta {
  display: block; text-align: center; text-decoration: none;
  padding: 13px; border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: all .2s; cursor: pointer; border: none;
}
.pricing-cta-outline { background: transparent; color: var(--blue2); border: 1.5px solid rgba(26,110,232,0.4); }
.pricing-cta-outline:hover { background: rgba(26,110,232,0.1); border-color: var(--blue); }
.pricing-cta-solid { background: var(--blue); color: #fff; box-shadow: 0 0 24px rgba(26,110,232,.3); }
.pricing-cta-solid:hover { background: var(--blue2); }

/* Retainer includes */
.retainer-section { margin-top: 60px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.retainer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 28px; }
.retainer-item { display: flex; align-items: flex-start; gap: 12px; }
.retainer-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.retainer-item h4 { font-size: 13.5px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.retainer-item p { font-size: 12px; color: var(--grey); line-height: 1.5; }

/* ── NICHES ── */
#niches { background: rgba(255,255,255,0.015); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.niches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 16px; margin-top: 48px; }
.niche-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 20px; transition: all .2s; text-align: center; cursor: default;
}
.niche-card:hover { border-color: rgba(26,110,232,0.5); transform: translateY(-3px); }
.niche-icon { font-size: 30px; margin-bottom: 10px; }
.niche-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.niche-desc { font-size: 11.5px; color: var(--grey); line-height: 1.5; }

/* ── SIGNUP PAGE ── */
#signup { scroll-margin-top: 72px; }
.signup-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.signup-info h2 { margin-bottom: 16px; }
.signup-info .section-sub { margin-bottom: 32px; }
.signup-checklist { list-style: none; }
.signup-checklist li {
  font-size: 14px; color: var(--text); padding: 10px 0;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.signup-checklist li::before { content: '✓'; background: rgba(26,110,232,0.15); color: var(--blue2); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; font-weight: 700; }
.signup-form-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  padding: 44px 40px;
}
.form-progress { display: flex; align-items: center; margin-bottom: 40px; }
.progress-step {
  display: flex; align-items: center; gap: 8px; flex: 1;
  font-size: 12px; font-weight: 600; color: var(--grey);
  text-transform: uppercase; letter-spacing: 1px;
}
.progress-step.active { color: var(--blue2); }
.progress-step.done { color: var(--blue2); opacity: 0.5; }
.step-circle {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0; color: var(--grey);
}
.progress-step.active .step-circle { border-color: var(--blue); background: var(--blue); color: #fff; }
.progress-step.done .step-circle { border-color: var(--blue2); background: transparent; color: var(--blue2); }
.progress-line { flex: 1; height: 1px; background: var(--border); margin: 0 8px; }
.progress-line.done { background: var(--blue2); opacity: 0.4; }

/* Form stages */
.form-stage { display: none; }
.form-stage.active { display: block; }
.form-title { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.form-subtitle { font-size: 13px; color: var(--grey); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-label { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-size: 14px; color: var(--white); font-family: 'DM Sans', sans-serif;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(136,153,187,0.5); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(26,110,232,0.6);
  background: rgba(26,110,232,0.05);
}
.form-select option { background: var(--navy); color: var(--white); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Package selector */
.package-selector { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.package-option { display: none; }
.package-label {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.03); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 18px 20px; cursor: pointer;
  transition: all .2s;
}
.package-label:hover { border-color: rgba(26,110,232,0.4); background: rgba(26,110,232,0.04); }
.package-option:checked + .package-label {
  border-color: var(--blue);
  background: rgba(26,110,232,0.1);
}
.pkg-radio {
  width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; margin-top: 2px; transition: all .2s; position: relative;
}
.package-option:checked + .package-label .pkg-radio {
  border-color: var(--blue); background: var(--blue);
}
.package-option:checked + .package-label .pkg-radio::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%; background: #fff;
}
.pkg-info { flex: 1; }
.pkg-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.pkg-details { font-size: 12px; color: var(--grey); }
.pkg-price { text-align: right; flex-shrink: 0; }
.pkg-price-setup { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; color: var(--white); }
.pkg-price-retainer { font-size: 11px; color: var(--blue2); }

/* Waiver */
.waiver-box {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(26,110,232,0.2);
  border-radius: 12px; padding: 22px 20px; margin-bottom: 20px;
  max-height: 280px; overflow-y: auto; font-size: 12.5px; color: var(--grey);
  line-height: 1.75;
  scrollbar-width: thin; scrollbar-color: var(--blue) transparent;
}
.waiver-box::-webkit-scrollbar { width: 4px; }
.waiver-box::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }
.waiver-heading { font-size: 13px; font-weight: 700; color: var(--white); margin: 14px 0 6px; }
.waiver-heading:first-child { margin-top: 0; }
.waiver-checkbox-row {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(26,110,232,0.07); border: 1px solid rgba(26,110,232,0.2);
  border-radius: 8px; padding: 14px 16px; margin-bottom: 12px;
  cursor: pointer;
}
.waiver-checkbox-row input[type=checkbox] {
  width: 18px; height: 18px; accent-color: var(--blue); flex-shrink: 0; margin-top: 1px; cursor: pointer;
}
.waiver-checkbox-row label { font-size: 13px; color: var(--text); line-height: 1.6; cursor: pointer; }
.sig-input {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px; font-family: 'Outfit', sans-serif;
  font-size: 18px; color: var(--white); letter-spacing: 1px; outline: none;
}
.sig-input:focus { border-color: rgba(26,110,232,0.6); }
.sig-note { font-size: 11px; color: var(--grey); margin-top: 6px; font-style: italic; }

/* Form nav buttons */
.form-nav { display: flex; gap: 12px; margin-top: 28px; }
.btn-back {
  background: transparent; color: var(--grey); border: 1px solid var(--border);
  padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.btn-back:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-next {
  flex: 1; background: var(--blue); color: #fff; border: none;
  padding: 13px; border-radius: 8px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 0 24px rgba(26,110,232,.25);
}
.btn-next:hover { background: var(--blue2); transform: translateY(-1px); }
.btn-submit {
  flex: 1; background: linear-gradient(135deg, #1A6EE8, #2D8CF0); color: #fff; border: none;
  padding: 14px; border-radius: 8px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 0 30px rgba(26,110,232,.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(26,110,232,.5); }

/* Success */
.success-screen {
  display: none; text-align: center; padding: 20px 0;
}
.success-icon { font-size: 56px; margin-bottom: 20px; }
.success-title { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.success-text { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 28px; }
.success-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; padding: 13px 28px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none; transition: all .2s;
}
.success-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo img { height: 90px; opacity: 0.25; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--grey); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(136,153,187,0.5); }
.footer-sla { font-size: 11px; color: rgba(136,153,187,0.4); margin-top: 4px; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid .pricing-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; width: 100%; }
}
@media(max-width:900px) {
  .about-grid, .signup-wrapper { grid-template-columns: 1fr; gap: 40px; }
}
@media(max-width:768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(10,24,40,0.97); padding: 20px 5%; border-bottom: 1px solid var(--border); gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card:last-child { grid-column: auto; max-width: none; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .signup-form-card { padding: 28px 22px; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* Validation error */
.field-error { border-color: #D32F2F !important; }
.error-msg { font-size: 11px; color: #ef5350; margin-top: 4px; display: none; }
.error-msg.visible { display: block; }
