/* LeadForge — Insurance Lead Provider Theme */

:root {
  --bg: #0f1117;
  --surface: #1a1f2e;
  --surface-2: #232840;
  --border: #2d3348;
  --text: #e8ecf4;
  --text-muted: #8892a8;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-2: #fbbf24;
  --green: #10b981;
  --red: #ef4444;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  padding: 1.25rem 2rem;
  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: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.65;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  position: relative;
}
.hero-card--dimmed { opacity: 0.5; }
.card-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.tag {
  font-size: 0.65rem;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  font-weight: 600;
}
.card-cta {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* STATS */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { flex: 1; text-align: center; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 2.5rem;
}

/* HOW */
.how { padding: 5rem 2rem; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step { padding: 1.5rem; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* DIFFERENCE */
.difference {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.difference-inner { max-width: 1100px; margin: 0 auto; }
.diff-header { margin-bottom: 2.5rem; }
.diff-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.diff-block {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.diff-block--bad { background: rgba(239,68,68,0.04); border-color: rgba(239,68,68,0.2); }
.diff-block--us { background: rgba(16,185,129,0.04); border-color: rgba(16,185,129,0.25); }
.diff-block-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.diff-block-label--bad { color: var(--red); }
.diff-block-label--us { color: var(--green); }
.diff-list { list-style: none; }
.diff-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.diff-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}
.diff-block--us .diff-list li::before { background: var(--green); }
.diff-list li:last-child { border-bottom: none; }

/* PRICING */
.pricing { padding: 5rem 2rem; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: -2rem;
  margin-bottom: 2.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, var(--surface) 100%);
}
.pricing-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.5rem;
  background: var(--accent);
  color: #0f1117;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.pricing-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.pricing-card-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.pricing-per { font-size: 1rem; color: var(--text-muted); }
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-statement {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.closing-statement--accent {
  color: var(--text);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  display: block;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-links {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { flex-direction: row; }
  .hero-card { flex: 1; }
  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero-visual { flex-direction: column; }
  .card-name { font-size: 1.05rem; }
}
