:root {
  --bg: #0a1628;
  --bg-alt: #0f1f38;
  --fg: #e8edf5;
  --fg-muted: #8899b0;
  --accent: #f59e0b;
  --accent-dim: #c47d0a;
  --card-bg: #111f35;
  --card-border: rgba(245, 158, 11, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245, 158, 11, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0a1628 0%, #0d1e35 50%, #0a1628 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(245, 158, 11, 0.015) 80px,
      rgba(245, 158, 11, 0.015) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(245, 158, 11, 0.015) 80px,
      rgba(245, 158, 11, 0.015) 81px
    );
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-lede {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 48px;
}
.hero-specs {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  background: rgba(245, 158, 11, 0.04);
}
.spec-item {
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.spec-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
}
.spec-divider {
  width: 1px;
  height: 48px;
  background: var(--card-border);
}

/* STATS */
.stats-section {
  background: var(--bg-alt);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  padding: 64px 40px;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  padding: 0 40px;
  border-right: 1px solid rgba(245, 158, 11, 0.1);
  text-align: left;
}
.stat-block:first-child { padding-left: 0; }
.stat-block:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 180px;
}

/* SERVICES */
.services {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 64px;
}
.services-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.services-header p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s;
}
.service-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW */
.how-section {
  background: var(--bg-alt);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  padding: 100px 40px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.how-left h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 20px;
}
.how-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  min-width: 48px;
  padding-top: 4px;
}
.step-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}
.closing-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  flex: 1;
}
.footer-meta {
  font-size: 0.8rem;
  color: rgba(136, 153, 176, 0.5);
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #0a1628;
}
.btn-primary:hover { background: #fbbf24; }

.btn-secondary {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 13px 24px;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  width: 100%;
}
.btn-outline:hover { background: rgba(245,158,11,0.08); }

/* ─── HERO CTAs ──────────────────────────────────── */
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ─── PRICING ────────────────────────────────────── */
.pricing-section {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(245,158,11,0.08);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.pricing-note {
  font-size: 1rem;
  color: var(--accent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card--featured {
  border-color: rgba(245,158,11,0.35);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Most popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a1628;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 4px 4px;
}
.pc-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.pc-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}
.pc-period {
  font-size: 1.2rem;
  color: var(--fg-muted);
  font-weight: 400;
}
.pc-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245,158,11,0.08);
}
.pc-features {
  list-style: none;
  margin: 0 0 32px;
  flex: 1;
}
.pc-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(245,158,11,0.06);
  line-height: 1.4;
}
.pc-features li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

/* ─── LEAD FORM ──────────────────────────────────── */
.lead-form-section {
  padding: 100px 40px;
}
.lead-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lf-header { padding-top: 12px; }
.lf-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.lf-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.1;
}
.lf-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.lf-body {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 40px;
}
.lf-form { display: flex; flex-direction: column; gap: 20px; }
.lf-field { display: flex; flex-direction: column; gap: 6px; }
.lf-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.lf-field input,
.lf-field select {
  background: rgba(245,158,11,0.04);
  border: 1px solid rgba(245,158,11,0.12);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.lf-field input:focus,
.lf-field select:focus { border-color: var(--accent); }
.lf-field input::placeholder { color: rgba(136,153,176,0.5); }
.lf-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238899b0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.lf-submit { margin-top: 8px; }
.lf-error {
  font-size: 0.88rem;
  color: #f87171;
  padding: 12px;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.2);
  border-radius: 6px;
}
.lf-trust {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,158,11,0.08);
}
.trust-line {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-block { border-right: none; padding: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { order: -1; }
  .lead-form-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-specs { flex-direction: column; width: 100%; }
  .spec-divider { width: 100%; height: 1px; }
  .stats-section { padding: 48px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .services { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .how-section { padding: 60px 20px; }
  .pricing-section { padding: 60px 20px; }
  .pricing-grid { gap: 16px; }
  .lead-form-section { padding: 60px 20px; }
  .lf-body { padding: 28px 20px; }
  .closing { padding: 60px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
