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

:root {
  --bg: #0A0F1C;
  --surface: #111827;
  --surface-2: #1F2937;
  --amber: #F59E0B;
  --amber-dim: #D97706;
  --amber-glow: rgba(245, 158, 11, 0.15);
  --text: #F9FAFB;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;
  --green: #10B981;
  --red: #EF4444;
  --border: #1F2937;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 24px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--amber);
  text-decoration: none;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 120px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--amber-glow);
  border: 1px solid var(--amber-dim);
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {}

.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === PHONE MOCKUP === */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.phone-mockup {
  position: relative;
  width: 280px;
}

.phone-screen {
  background: #0D1117;
  border-radius: 36px;
  padding: 12px;
  border: 2px solid #2D3748;
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.1),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(245, 158, 11, 0.05);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #0D1117;
  border-radius: 20px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 8px;
}

.phone-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.phone-signal {
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

.signal-bar {
  width: 3px;
  background: var(--text-muted);
  border-radius: 1px;
}
.signal-bar:nth-child(1) { height: 6px; }
.signal-bar:nth-child(2) { height: 9px; }
.signal-bar:nth-child(3) { height: 12px; }
.signal-bar:nth-child(4) { height: 15px; }

.phone-app {
  background: #161B22;
  border-radius: 24px;
  padding: 16px 14px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #21262D;
  margin-bottom: 4px;
}

.app-logo {
  width: 32px;
  height: 32px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: #0A0F1C;
  font-weight: 700;
}

.app-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

/* Notification */
.notification {
  background: var(--amber-glow);
  border: 1px solid var(--amber-dim);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}

.notif-dot {
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 8px var(--amber);
}

.notif-body { flex: 1; }

.notif-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--amber);
  margin-bottom: 2px;
}

.notif-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.notif-time {
  font-size: 10px;
  color: var(--amber-dim);
  font-weight: 500;
}

/* Lead items */
.lead-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #1C2128;
  border: 1px solid #21262D;
}

.lead-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
}

.lead-icon.roof { background: linear-gradient(135deg, #EF4444, #DC2626); }
.lead-icon.electric { background: linear-gradient(135deg, #F59E0B, #D97706); }
.lead-icon.plumber { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.lead-icon.painter { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }

.lead-info { flex: 1; }

.lead-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.lead-val {
  font-size: 11px;
  color: var(--text-dim);
}

.lead-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* App footer */
.app-footer {
  display: flex;
  justify-content: space-around;
  padding: 12px 0 4px;
  border-top: 1px solid #21262D;
  margin-top: auto;
}

.footer-tab { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.footer-tab.active .tab-icon { color: var(--amber); }
.footer-tab.active .tab-label { color: var(--amber); }

.tab-icon { font-size: 16px; color: var(--text-dim); }
.tab-label { font-size: 10px; color: var(--text-dim); }

/* Badge */
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid var(--amber-dim);
  padding: 8px 16px;
  border-radius: 100px;
}

/* === HOW IT WORKS === */
.hiw {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
}

.step {
  flex: 1;
  max-width: 220px;
  text-align: center;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber-dim), transparent);
  margin-top: 40px;
  flex-shrink: 0;
}

/* === NICHES === */
.niches {
  padding: 120px 48px;
  background: var(--surface);
}

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

.niches-header {
  max-width: 500px;
  margin-bottom: 64px;
}

.niches-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.niche-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.niche-card:hover {
  border-color: var(--amber-dim);
  transform: translateY(-2px);
}

.niche-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.niche-icon.roof { background: linear-gradient(135deg, #EF4444, #B91C1C); }
.niche-icon.electric { background: linear-gradient(135deg, var(--amber), var(--amber-dim)); }
.niche-icon.plumber { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.niche-icon.landscaper { background: linear-gradient(135deg, #10B981, #059669); }
.niche-icon.painter { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.niche-icon.removals { background: linear-gradient(135deg, #06B6D4, #0891B2); }

.niche-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 10px;
}

.niche-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.niche-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid var(--amber-dim);
  padding: 4px 12px;
  border-radius: 100px;
}

/* === EXCLUSIVE === */
.exclusive {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.exclusive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.exclusive-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.exclusive-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* VS Table */
.vs-table {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.vs-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.vs-row:last-child { border-bottom: none; }

.vs-row.vs-head .vs-col {
  background: var(--surface);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.vs-col {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}

.vs-col:last-child { border-right: none; }

.vs-col.vs-lf {
  color: var(--green);
  font-weight: 600;
}

.vs-label { font-weight: 600; color: var(--text) !important; }

/* Pipe graphic */
.exclusive-graphic {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.pipe-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pipe-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  min-width: 200px;
}

.pipe-label.pipe-final {
  background: var(--amber-glow);
  border-color: var(--amber-dim);
  color: var(--amber);
  font-weight: 700;
}

.pipe-arrow {
  font-size: 20px;
  color: var(--amber-dim);
  margin: 6px 0 6px 24px;
}

.pipe-connector {
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, var(--amber-dim), transparent);
  margin-left: 24px;
}

/* === RESULTS === */
.results {
  padding: 120px 48px;
  background: var(--surface);
}

.results-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.results-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.result-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.result-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.result-note {
  font-size: 12px;
  color: var(--text-dim);
}

.results-cta {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 1200px;
  margin: 48px auto 0;
}

/* === CLOSING === */
.closing {
  padding: 120px 48px;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-footer {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cf-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-icon {
  color: var(--green);
  font-size: 16px;
}

/* === FOOTER === */
.footer {
  padding: 60px 48px 40px;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber); }

.footer-legal {
  font-size: 12px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: -1; }
  .exclusive-inner { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hiw { padding: 80px 24px; }
  .steps { flex-direction: column; align-items: center; gap: 40px; }
  .step-connector { transform: rotate(90deg); margin: 0; }
  .niches { padding: 80px 24px; }
  .niches-grid { grid-template-columns: 1fr; }
  .exclusive { padding: 80px 24px; }
  .results { padding: 80px 24px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .hero-stats { gap: 24px; }
  .closing-footer { gap: 16px; }
}

@media (max-width: 480px) {
  .stat-num { font-size: 28px; }
  .result-val { font-size: 36px; }
  .phone-mockup { width: 240px; }
}