:root {
  --bg: #0A140D;
  --bg-card: #111E15;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --amber: #F59E0B;
  --amber-dim: #B45309;
  --text: #E8F5E9;
  --text-muted: #6B8F71;
  --border: #1E3A28;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--green);
  border: 1px solid var(--green-light);
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-headline {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: #fff;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 500;
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 260px;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  border: 2px solid #222;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 20px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #0F1B12;
  border-radius: 28px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}
.lead-card-claimed {
  border-color: var(--green-light);
  position: relative;
}
.lead-badge-claimed {
  position: absolute;
  top: -8px;
  right: 12px;
  background: var(--green-light);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.lead-icon {
  margin-bottom: 8px;
}
.lead-name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
}
.lead-service {
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 6px;
}
.lead-value {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.lead-value strong { color: #4ADE80; }
.lead-source {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Shared section styles */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  max-width: 600px;
}

/* How it works */
.how-it-works {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 48px;
}
.step-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--amber));
  margin: 40px 16px 0;
  border-radius: 2px;
  align-self: start;
}

/* Trades */
.trades {
  padding: 80px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trades .section-headline { max-width: 100%; }
.trades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.trade-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.trade-card:hover { border-color: var(--green-light); }
.trade-icon {
  margin-bottom: 16px;
}
.trade-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.trade-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Why */
.why {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.stat-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.stat-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Closing */
.closing {
  padding: 80px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.closing-model {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.model-card {
  flex: 1;
  padding: 36px;
  text-align: left;
}
.model-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.model-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.model-price span { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.model-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.model-divider {
  width: 1px;
  background: var(--border);
  margin: 20px 0;
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--amber);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-mockup { order: -1; }
  .phone-frame { width: 200px; }
  .hero-headline { font-size: 32px; }
  .how-it-works { padding: 48px 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .trades { padding: 48px 20px; }
  .trades-grid { grid-template-columns: 1fr; }
  .why { padding: 48px 20px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 48px 20px; }
  .closing-model { flex-direction: column; }
  .model-divider { width: 100%; height: 1px; margin: 0; }
  .footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}