*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface2: #1A1A1A;
  --border: #222222;
  --orange: #F97316;
  --orange-d: #EA580C;
  --white: #FAFAFA;
  --gray: #A3A3A3;
  --gray-d: #737373;
  --green: #22C55E;
  --radius: 12px;
}
html, body { height: 100%; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--white); line-height: 1.5; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,10,10,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; }
.logo-icon { font-size: 1.4rem; }
.logo-sub { color: var(--orange); }
.header-stat { font-size: 0.8rem; color: var(--gray); background: var(--surface2); padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border); }

/* Main */
.main { padding-top: 73px; min-height: 100vh; }

/* Hero */
.hero { min-height: calc(100vh - 73px); display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.hero-inner { text-align: center; max-width: 680px; }
.badge { display: inline-block; background: rgba(249,115,22,0.12); color: var(--orange); border: 1px solid rgba(249,115,22,0.3); padding: 6px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 24px; text-transform: uppercase; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.orange { color: var(--orange); }
.hero-sub { font-size: 1.15rem; color: var(--gray); margin-bottom: 36px; }
.stats-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.stat-pill { background: var(--surface2); border: 1px solid var(--border); padding: 8px 18px; border-radius: 20px; font-size: 0.85rem; color: var(--gray); }
.stat-num { color: var(--orange); font-weight: 700; }
.btn-primary { background: var(--orange); color: white; border: none; border-radius: 10px; padding: 14px 28px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.15s; font-family: inherit; }
.btn-primary:hover { background: var(--orange-d); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-large { font-size: 1.1rem; padding: 18px 40px; }
.btn-ghost { background: transparent; color: var(--gray); border: 1px solid var(--border); border-radius: 10px; padding: 12px 22px; font-size: 0.95rem; cursor: pointer; transition: all 0.15s; font-family: inherit; }
.btn-ghost:hover { color: var(--white); border-color: #444; }

/* Funnel */
.funnel { padding: 40px 24px 80px; }
.funnel-inner { max-width: 860px; margin: 0 auto; }
.hidden { display: none !important; }

/* Progress */
.progress-bar { margin-bottom: 48px; }
.progress-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.step-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--surface2); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: var(--gray-d); transition: all 0.3s; flex-shrink: 0; }
.step-dot.active { background: var(--orange); border-color: var(--orange); color: white; }
.step-dot.done { background: var(--green); border-color: var(--green); color: white; }
.step-line { flex: 1; height: 2px; background: var(--border); max-width: 120px; transition: background 0.3s; }
.step-line.done { background: var(--green); }
.progress-labels { display: flex; justify-content: space-between; padding: 0 4px; max-width: 450px; margin: 0 auto; }
.progress-labels span { font-size: 0.75rem; color: var(--gray-d); flex: 1; text-align: center; }

/* Steps */
.step-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.step-sub { color: var(--gray); margin-bottom: 32px; }
.step-nav { display: flex; gap: 12px; margin-top: 40px; justify-content: flex-end; }

/* Industry Grid */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-bottom: 8px; }
.industry-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 20px 16px; cursor: pointer; text-align: center; transition: all 0.15s; }
.industry-card:hover { border-color: #444; background: var(--surface2); }
.industry-card.selected { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.industry-card .ind-icon { font-size: 2rem; margin-bottom: 10px; }
.industry-card strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.industry-card small { color: var(--gray-d); font-size: 0.75rem; }
.loading-pulse { color: var(--gray); padding: 40px; text-align: center; grid-column: 1/-1; }

/* Location */
.location-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-bottom: 8px; }
.location-btn { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 20px; cursor: pointer; text-align: left; color: var(--white); transition: all 0.15s; font-family: inherit; width: 100%; }
.location-btn:hover { border-color: #444; background: var(--surface2); }
.location-btn.active { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.loc-icon { display: block; font-size: 1.5rem; margin-bottom: 8px; }
.location-btn strong { display: block; margin-bottom: 4px; font-size: 0.9rem; }
.location-btn small { color: var(--gray-d); font-size: 0.75rem; }

/* Quality */
.quality-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-bottom: 8px; }
.quality-btn { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 20px; cursor: pointer; text-align: left; color: var(--white); transition: all 0.15s; font-family: inherit; width: 100%; }
.quality-btn:hover { border-color: #444; }
.quality-btn.active { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.quality-stars { font-size: 1.2rem; color: #FBBF24; margin-bottom: 8px; }
.quality-btn strong { display: block; margin-bottom: 6px; font-size: 0.9rem; }
.quality-btn small { color: var(--gray-d); font-size: 0.75rem; line-height: 1.4; }
.rec { background: var(--orange); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.65rem; font-weight: 700; }

/* Preview */
.preview-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; gap: 16px; }
.preview-badge { background: var(--orange); color: white; font-weight: 800; font-size: 2rem; min-width: 90px; height: 90px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.leads-table-wrap { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.leads-table { width: 100%; border-collapse: collapse; }
.leads-table th { text-align: left; padding: 14px 18px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-d); border-bottom: 1px solid var(--border); background: var(--surface2); }
.leads-table td { padding: 14px 18px; font-size: 0.9rem; border-bottom: 1px solid var(--border); color: var(--white); }
.leads-table tr:last-child td { border-bottom: none; }
.leads-table tr:hover td { background: var(--surface2); }
.loading-cell { text-align: center; color: var(--gray); padding: 40px; }
.blur-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to bottom, transparent, rgba(17,17,17,0.96) 40%); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 24px; pointer-events: none; }
.blur-cta { text-align: center; }
.blur-icon { font-size: 1.5rem; margin-bottom: 8px; }
.blur-cta p { font-size: 0.85rem; color: var(--gray); }
.score-bar { display: flex; align-items: center; gap: 8px; }
.score-val { font-weight: 700; font-size: 0.85rem; }
.rating-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.masked { filter: blur(5px); user-select: none; color: var(--gray-d); }

/* CTA Box */
.cta-box { background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.05)); border: 1px solid rgba(249,115,22,0.25); border-radius: var(--radius); padding: 28px; margin-bottom: 32px; }
.cta-box h3 { font-size: 1.3rem; margin-bottom: 8px; }
.cta-box p { color: var(--gray); margin-bottom: 12px; font-size: 0.95rem; }
.pricing-note { color: var(--orange); font-size: 0.9rem; }

/* Form */
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-group label { font-size: 0.85rem; color: var(--gray); font-weight: 500; }
.form-group input, .form-group textarea {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; color: var(--white); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.15s; outline: none; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-d); }
.btn-submit { margin-top: 20px; width: 100%; font-size: 1.05rem; padding: 16px; }
.success-box { text-align: center; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: var(--radius); padding: 40px; }
.success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.success-box h3 { font-size: 1.4rem; margin-bottom: 8px; }
.success-box p { color: var(--gray); }

/* Footer */
.footer { text-align: center; padding: 40px 24px; color: var(--gray-d); font-size: 0.8rem; border-top: 1px solid var(--border); }
.footer a { color: var(--orange); text-decoration: none; }
