:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a25;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --hvac: #3b82f6;
  --roofing: #ef4444;
  --auto: #10b981;
  --radius: 12px;
  --max-width: 1100px;
}

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

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

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  position: relative;
}

.hero-inner {
  max-width: var(--max-width);
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  color: var(--fg);
}

.hero .highlight {
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-verticals {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.vertical-tag {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-elevated);
}

/* Problem */
.problem {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 60px;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.problem-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Verticals */
.verticals {
  padding: 120px 24px;
}

.verticals-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.verticals-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 60px;
  text-align: center;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.vertical-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.vertical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.hvac-card::before { background: var(--hvac); }
.roofing-card::before { background: var(--roofing); }
.auto-card::before { background: var(--auto); }

.vertical-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hvac-card .vertical-label { color: var(--hvac); }
.roofing-card .vertical-label { color: var(--roofing); }
.auto-card .vertical-label { color: var(--auto); }

.vertical-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.vertical-card p {
  color: var(--fg-muted);
  line-height: 1.7;
}

/* How it works */
.how-it-works {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 60px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.step {
  position: relative;
  padding-left: 0;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Stats */
.stats {
  padding: 100px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 250px;
  margin: 0 auto;
}

/* Closing */
.closing {
  padding: 140px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
}

.closing-inner {
  max-width: 750px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-location {
  color: var(--fg-muted);
  opacity: 0.6;
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 60px 20px;
  }
  
  .problem, .verticals, .how-it-works {
    padding: 80px 20px;
  }

  .closing {
    padding: 100px 20px;
  }

  .stats {
    padding: 60px 20px;
  }

  .stats-inner {
    gap: 32px;
  }
}
/* ============================================
   NAV
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 24px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 6px 12px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.hvac-link:hover { color: var(--hvac); }
.nav-link.roofing-link:hover { color: var(--roofing); }
.nav-link.auto-link:hover { color: var(--auto); }

.nav-cta {
  margin-left: 8px;
  padding: 8px 18px;
  background: var(--accent);
  color: #0a0a0f;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.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(--fg);
  border-radius: 2px;
  transition: 0.2s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-primary.btn-large {
  padding: 17px 36px;
  font-size: 1.05rem;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Vertical-colored button variants */
.btn-roofing { background: var(--roofing); color: #fff; }
.btn-roofing:hover { background: #dc2626; }
.btn-auto { background: var(--auto); color: #fff; }
.btn-auto:hover { background: #059669; }

/* Hero actions */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Linked vertical tags */
.vertical-tag {
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.vertical-tag:hover { color: var(--fg); border-color: rgba(255,255,255,0.3); }
.vertical-tag.hvac-tag:hover { color: var(--hvac); border-color: var(--hvac); }
.vertical-tag.roofing-tag:hover { color: var(--roofing); border-color: var(--roofing); }
.vertical-tag.auto-tag:hover { color: var(--auto); border-color: var(--auto); }

/* Linked vertical cards */
.vertical-card {
  text-decoration: none;
  display: block;
  transition: transform 0.2s, border-color 0.2s;
}
.vertical-card:hover {
  transform: translateY(-4px);
}
.hvac-card:hover { border-color: rgba(59, 130, 246, 0.3); }
.roofing-card:hover { border-color: rgba(239, 68, 68, 0.3); }
.auto-card:hover { border-color: rgba(16, 185, 129, 0.3); }

.card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.hvac-card:hover .card-link { color: var(--hvac); }
.roofing-card:hover .card-link { color: var(--roofing); }
.auto-card:hover .card-link { color: var(--auto); }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
}

.pricing-card--featured {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.05) 0%, var(--bg-card) 40%);
}

.pricing-card--featured:hover {
  border-color: rgba(245, 158, 11, 0.55);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.pricing-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.price-setup {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
}

.price-setup-label {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.price-mo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
}

.price-mo-label {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--fg-muted);
  font-size: 0.925rem;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.pricing-note a {
  color: var(--accent);
  text-decoration: none;
}

.pricing-note a:hover { text-decoration: underline; }

/* ============================================
   SERVICE PAGES — SHARED
   ============================================ */
.back-link {
  display: inline-block;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.back-link:hover { color: var(--fg); }

.service-hero {
  padding: 100px 24px 80px;
  position: relative;
}

.service-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.service-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hvac-badge { background: rgba(59, 130, 246, 0.15); color: var(--hvac); }
.roofing-badge { background: rgba(239, 68, 68, 0.15); color: var(--roofing); }
.auto-badge { background: rgba(16, 185, 129, 0.15); color: var(--auto); }

.hvac-hero { background: radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 55%); }
.roofing-hero { background: radial-gradient(ellipse at 20% 50%, rgba(239, 68, 68, 0.07) 0%, transparent 55%); }
.auto-hero { background: radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.07) 0%, transparent 55%); }

.service-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 20px;
  line-height: 1.12;
}

.highlight-hvac { color: var(--hvac); }
.highlight-roofing { color: var(--roofing); }
.highlight-auto { color: var(--auto); }

.service-hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Truth/stats section */
.service-truth {
  padding: 80px 24px;
  background: var(--bg-elevated);
}

.service-truth-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-truth h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 48px;
  text-align: center;
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  text-align: center;
}

.truth-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.truth-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.hvac-stat { color: var(--hvac); }
.roofing-stat { color: var(--roofing); }
.auto-stat { color: var(--auto); }

.truth-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Feature list */
.service-features {
  padding: 100px 24px;
}

.service-features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-features h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 56px;
  text-align: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  line-height: 1;
  padding-top: 4px;
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* Service CTA */
.service-cta {
  padding: 120px 24px;
  background: var(--bg-elevated);
  text-align: center;
}

.service-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.service-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.service-cta p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-note {
  margin-top: 16px \!important;
  font-size: 0.875rem \!important;
  opacity: 0.6;
}

/* ============================================
   CLOSING CTA BUTTON SPACING
   ============================================ */
.closing .btn-primary {
  margin-top: 40px;
}

/* ============================================
   FOOTER UPDATES
   ============================================ */
.site-footer {
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0;
}

.footer-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 4px 8px;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--fg); }
.footer-nav .sep { color: rgba(255,255,255,0.15); }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
  }

  .nav-links.open { display: flex; }

  .nav-link { padding: 12px 16px; }

  .nav-cta {
    margin: 8px 0 0;
    padding: 12px 16px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .service-hero { padding: 60px 20px 50px; }

  .feature-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-grid { grid-template-columns: 1fr; }

  .pricing { padding: 80px 20px; }

  .service-features, .service-truth { padding: 60px 20px; }

  .service-cta { padding: 80px 20px; }

  .truth-grid { gap: 20px; }
}
