/* ============================================================
   Fixed — Design System
   Palette: Fresh, light, airy
   --primary:      #16A34A  (green-600)
   --accent:       #EA580C  (orange-600)
   --bg:           #F8FAFC  (near-white)
   --bg-tint:      #F0FDF4  (green-50)
   --surface:      #FFFFFF
   --text-dark:    #0F172A  (slate-900)
   --text-mid:     #475569  (slate-500)
   --border:       #E2E8F0  (slate-200)
   ============================================================ */

:root {
  --primary:        #16A34A;
  --primary-light:  #22C55E;
  --primary-dark:   #15803D;
  --primary-xlight: #DCFCE7;
  --accent:         #EA580C;
  --accent-light:   #F97316;
  --accent-xlight:  #FFF7ED;
  --sky:            #0EA5E9;
  --bg:             #F8FAFC;
  --bg-tint:        #F0FDF4;
  --surface:        #FFFFFF;
  --text-dark:      #0F172A;
  --text-mid:       #475569;
  --text-light:     #94A3B8;
  --border:         #E2E8F0;
  --border-light:   #F1F5F9;
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.07);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.09);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.10);
  --shadow-green: 0 8px 32px rgba(22,163,74,.18);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-2xl: 36px;
  --radius-full: 9999px;
  --font: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(.4,0,.2,1);
  --t: .2s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); font-weight: 750; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--text-mid); }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header p { font-size: 1.05rem; margin-top: 12px; }

/* ── Pill badge ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}
.pill-green  { background: var(--primary-xlight); color: var(--primary-dark); }
.pill-orange { background: var(--accent-xlight);  color: var(--accent); }
.pill-sky    { background: #E0F2FE; color: #0369A1; }
.pill-slate  { background: var(--border-light); color: var(--text-mid); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t);
  padding: 13px 28px;
  white-space: nowrap;
}
.btn-green {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
}
.btn-green:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(22,163,74,.28);
}
.btn-orange {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(234,88,12,.25);
}
.btn-orange:hover {
  background: #C2410C;
  border-color: #C2410C;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(234,88,12,.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .84rem; }

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 200; transition: width .1s linear;
}

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.navbar.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 24px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.4rem; font-weight: 800;
  color: var(--text-dark); letter-spacing: -.03em;
}
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  box-shadow: 0 2px 8px rgba(22,163,74,.3);
}
.nav-logo span { color: var(--primary); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: .88rem; font-weight: 600; color: var(--text-mid);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--text-dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: var(--t);
}

/* ── Mobile nav ── */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(15,23,42,.4); z-index: 99; backdrop-filter: blur(4px);
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 280px;
  background: #fff; padding: 80px 28px 32px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: -8px 0 40px rgba(0,0,0,.1);
}
.mobile-nav-panel a {
  font-size: 1rem; font-weight: 600; color: var(--text-dark);
  transition: color var(--t);
}
.mobile-nav-panel a:hover { color: var(--primary); }

/* ── Hero ── */
.hero {
  padding-top: 70px;
  background: linear-gradient(160deg, #fff 0%, #F0FDF4 45%, #DCFCE7 100%);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; padding: 72px 0;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.live-dot {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700; color: var(--primary);
}
.live-dot-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  animation: livePulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(22,163,74,.4);
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
.hero h1 { color: var(--text-dark); margin-bottom: 18px; }
.hero h1 .highlight {
  color: var(--primary);
  position: relative; display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0; height: 4px;
  background: var(--primary-xlight); border-radius: 2px; z-index: -1;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-mid);
  max-width: 460px; margin-bottom: 32px; line-height: 1.7;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.trust-chip {
  display: flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 14px; font-size: .82rem; font-weight: 600;
  color: var(--text-dark); box-shadow: var(--shadow-xs);
}
.trust-chip-icon { color: var(--primary); font-size: .9rem; }

/* ── Form Card ── */
.form-card {
  background: #fff; border-radius: var(--radius-2xl);
  box-shadow: 0 24px 80px rgba(0,0,0,.10), 0 1px 0 var(--border-light);
  overflow: hidden; border: 1px solid var(--border-light);
}
.form-card-top {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-tint);
}
.form-card-top h3 { font-size: 1.05rem; color: var(--text-dark); }
.form-card-top p  { font-size: .8rem; color: var(--text-mid); margin-top: 3px; }
.step-dots {
  display: flex; gap: 6px; margin-top: 14px;
}
.step-dot {
  height: 5px; border-radius: 3px; flex: 1;
  background: var(--border); transition: background .4s, flex .4s;
}
.step-dot.active { background: var(--primary); flex: 2; }
.step-dot.done   { background: var(--primary-light); }

.form-body { padding: 26px 28px; }

/* steps */
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn .28s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step-eyebrow {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 6px;
}
.form-step h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 14px; }

/* Service tiles */
.service-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px;
}
.tile {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer; font-size: .86rem; font-weight: 600;
  color: var(--text-dark); transition: var(--t); background: #fff;
}
.tile:hover { border-color: var(--primary); background: var(--bg-tint); }
.tile.selected {
  border-color: var(--primary); background: var(--primary-xlight);
  color: var(--primary-dark);
}
.tile-icon { font-size: 1.2rem; line-height: 1; }

/* Form fields */
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: .82rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 5px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .9rem; color: var(--text-dark);
  background: #fff; outline: none; transition: border-color var(--t);
  -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}
.field textarea { resize: vertical; min-height: 72px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.form-actions {
  display: flex; justify-content: space-between;
  align-items: center; gap: 10px; margin-top: 18px;
}
.btn-back {
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: .84rem; font-weight: 700;
  color: var(--text-light); transition: color var(--t);
  padding: 4px; display: flex; align-items: center; gap: 5px;
}
.btn-back:hover { color: var(--text-mid); }

.form-note {
  font-size: .7rem; color: var(--text-light);
  text-align: center; margin-top: 10px; line-height: 1.5;
}

/* Success */
.form-success { display: none; text-align: center; padding: 8px 0; }
.form-success.active { display: block; animation: stepIn .4s ease; }
.success-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary-xlight);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.6rem;
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ── Stats strip ── */
.stats-strip {
  background: #fff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.stat {
  text-align: center; padding: 8px 20px;
  border-right: 1px solid var(--border-light);
}
.stat:last-child { border-right: none; }
.stat-val {
  font-size: 1.9rem; font-weight: 800; color: var(--text-dark);
  letter-spacing: -.02em;
}
.stat-val span { color: var(--primary); }
.stat-lbl { font-size: .78rem; color: var(--text-light); font-weight: 600; margin-top: 2px; }

/* ── How It Works ── */
.hiw { background: #fff; }
.steps-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; position: relative;
}
.steps-row::before {
  content: '';
  position: absolute; top: 44px;
  left: calc(16.66% + 24px); right: calc(16.66% + 24px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-xlight));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-bubble {
  width: 88px; height: 88px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-bubble.green {
  background: var(--primary-xlight);
  border-color: var(--primary-light);
}
.step-num {
  position: absolute; top: -4px; right: -4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: .7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: 8px; }
.step p  { font-size: .9rem; }

/* ── Services ── */
.services-section { background: var(--bg-tint); }
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(165px,1fr)); gap: 14px;
}
.cat-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md); padding: 20px 14px;
  text-align: center; cursor: pointer; transition: var(--t);
}
.cat-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.cat-card:hover .cat-icon-wrap { background: var(--primary-xlight); }
.cat-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--border-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 1.5rem;
  transition: background var(--t);
}
.cat-card h4 { font-size: .86rem; color: var(--text-dark); font-weight: 700; }
.cat-card span { font-size: .74rem; color: var(--text-light); }

/* ── Why Fixed ── */
.why-section { background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }
.why-point { display: flex; gap: 16px; }
.why-icon {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.wi-green  { background: var(--primary-xlight); }
.wi-orange { background: var(--accent-xlight); }
.wi-sky    { background: #E0F2FE; }
.wi-slate  { background: var(--border-light); }
.why-point h4 { margin-bottom: 3px; }
.why-point p  { font-size: .88rem; }

/* Comparison card */
.compare-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-lg);
  position: sticky; top: 96px;
}
.compare-title {
  font-size: .9rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-light);
  padding: 0 0 10px; text-align: left;
}
.compare-table th:last-child { text-align: center; }
.compare-table td {
  padding: 9px 0; border-top: 1px solid var(--border-light);
  font-size: .86rem; color: var(--text-dark);
}
.compare-table td:last-child { text-align: center; }
.ok  { color: var(--primary); font-size: 1rem; }
.no  { color: #F43F5E; font-size: 1rem; }

.compare-badge {
  margin-top: 18px; padding: 12px 16px;
  background: var(--bg-tint); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; font-weight: 700; color: var(--text-dark);
}
.compare-badge-val { color: var(--primary); font-size: 1.1rem; font-weight: 800; }

/* ── Testimonials ── */
.testimonials-section { background: var(--bg-tint); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 26px; transition: var(--t);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--border); transform: translateY(-2px); }
.testi-stars { color: #F59E0B; font-size: .95rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text {
  font-size: .9rem; color: var(--text-dark); line-height: 1.75;
  font-style: italic; margin-bottom: 18px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 1rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-name  { font-size: .88rem; font-weight: 700; color: var(--text-dark); }
.testi-loc   { font-size: .76rem; color: var(--text-light); }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #4ADE80 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; margin-bottom: 14px; }
.cta-inner p  { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 480px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: var(--text-dark); color: rgba(255,255,255,.6);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.2rem; font-weight: 800; color: #fff;
}
.footer-logo-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.footer-brand p { font-size: .86rem; margin-top: 12px; max-width: 260px; }
.footer-col h5 {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .86rem; transition: color var(--t); }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--t);
}
.social-btn:hover { background: var(--primary); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px; font-size: .8rem;
}
.footer-bottom a { transition: color var(--t); }
.footer-bottom a:hover { color: #fff; }

/* ── Contractor page ── */
.c-hero {
  padding-top: 70px;
  background: linear-gradient(150deg, #F0FDF4 0%, #DCFCE7 40%, #BBF7D0 100%);
  position: relative; overflow: hidden;
}
.c-hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.12) 0%, transparent 70%);
}
.c-hero-inner {
  position: relative; z-index: 1; padding: 80px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.c-hero h1 { color: var(--text-dark); }
.c-hero h1 em { color: var(--primary); font-style: normal; }
.c-hero-sub { color: var(--text-mid); font-size: 1.1rem; margin: 16px 0 28px; max-width: 460px; }
.c-metrics { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.c-metric-val {
  font-size: 1.75rem; font-weight: 800; color: var(--text-dark); letter-spacing: -.02em;
}
.c-metric-val em { color: var(--primary); font-style: normal; }
.c-metric-lbl { font-size: .78rem; color: var(--text-mid); font-weight: 600; }

/* Lead feed card */
.lead-feed {
  background: #fff; border-radius: var(--radius-2xl);
  box-shadow: 0 24px 72px rgba(22,163,74,.12), 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden; border: 1.5px solid var(--border-light);
}
.lead-feed-header {
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
}
.lead-feed-header h4 { font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.lead-feed-header p  { font-size: .75rem; opacity: .8; margin-top: 3px; }
.lead-feed-body { padding: 8px 0; }
.lead-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; border-bottom: 1px solid var(--border-light);
  transition: background var(--t);
}
.lead-row:last-child { border-bottom: none; }
.lead-row:hover { background: var(--bg-tint); }
.lead-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.lead-info { flex: 1; }
.lead-name   { font-size: .86rem; font-weight: 700; color: var(--text-dark); }
.lead-detail { font-size: .74rem; color: var(--text-mid); margin-top: 2px; }
.lead-tag {
  font-size: .68rem; font-weight: 800; padding: 3px 8px; border-radius: var(--radius-full);
}
.tag-new  { background: var(--primary-xlight); color: var(--primary-dark); }
.tag-excl { background: var(--accent-xlight); color: var(--accent); }

/* ── Timeline (contractor how it works) ── */
.timeline-wrap { max-width: 680px; margin: 0 auto; }
.tl { display: flex; flex-direction: column; position: relative; }
.tl::before {
  content: ''; position: absolute; left: 27px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-xlight) 100%);
}
.tl-item { display: flex; gap: 24px; padding-bottom: 40px; position: relative; }
.tl-dot {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary-xlight); border: 3px solid var(--primary-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  position: relative; z-index: 1; box-shadow: 0 0 0 5px var(--bg-tint);
}
.tl-content { padding-top: 12px; }
.tl-content h3 { margin-bottom: 6px; }
.tl-content p  { font-size: .9rem; }

/* ── Pricing ── */
.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.p-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  transition: var(--t); position: relative;
}
.p-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.p-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
}
.p-card.featured p { color: rgba(255,255,255,.72); }
.p-card.featured h3 { color: #fff; }
.featured-ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: var(--radius-full); white-space: nowrap;
}
.p-icon { font-size: 1.8rem; margin-bottom: 14px; }
.p-desc { font-size: .86rem; margin-bottom: 22px; }
.p-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.p-feature { display: flex; align-items: flex-start; gap: 9px; font-size: .86rem; }
.p-check { color: var(--primary); flex-shrink: 0; margin-top: 1px; font-size: .9rem; }
.p-card.featured .p-check { color: #86EFAC; }
.p-card.featured .p-feature { color: rgba(255,255,255,.85); }

/* ── Benefits ── */
.benefits-section { background: var(--bg-tint); }
.ben-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ben-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 26px; border: 1.5px solid var(--border-light); transition: var(--t);
}
.ben-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--primary-light); }
.ben-icon { font-size: 1.8rem; margin-bottom: 12px; }
.ben-card h3 { font-size: 1rem; margin-bottom: 6px; }
.ben-card p  { font-size: .86rem; }

/* ── Contact / Signup ── */
.signup-section { background: #fff; }
.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.signup-left h2 { margin-bottom: 14px; }
.signup-left p  { font-size: .97rem; margin-bottom: 26px; }
.perks { display: flex; flex-direction: column; gap: 12px; }
.perk { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; color: var(--text-dark); }
.perk-check { color: var(--primary); font-size: 1rem; }
.signup-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-md);
}
.signup-card h3 { margin-bottom: 22px; }
.call-box {
  margin-top: 24px; padding: 18px;
  background: var(--bg-tint); border-radius: var(--radius-md);
  border: 1px solid var(--primary-xlight);
  font-size: .84rem;
}
.call-box strong { color: var(--primary); }

/* ── Fade in animation ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Counters ── */
.counter { display: inline-block; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid, .c-hero-inner, .why-grid, .signup-grid { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-light); }
  .steps-row { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .ben-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); }
  .service-tiles { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .c-metrics { gap: 16px; }
  .hero-trust { gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ben-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
