:root {
  --bg: #faf8f4;
  --bg-alt: #f0ece4;
  --text: #1c1b19;
  --text-muted: #6b6760;
  --accent: #0ea5a3;
  --accent-dark: #088c8a;
  --coral: #e8623a;
  --coral-light: #fef0ea;
  --navy: #1a2a3a;
  --white: #ffffff;
  --border: #e2ddd5;
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

/* Hero */
.hero { padding: 80px 24px 64px; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: #e6f7f7;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-accent { color: var(--coral); }
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
}

/* Lead Cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.lead-card--hot { border-left: 3px solid var(--accent); }
.lead-card--pending { border-left: 3px solid #d4c9bb; opacity: 0.85; }
.lead-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.lead-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.lead-status-dot.hot { background: var(--accent); }
.lead-status-dot.pending { background: #c4b8a8; }
.lead-type { font-size: 12px; font-weight: 600; color: var(--text); flex: 1; }
.lead-time { font-size: 12px; color: var(--text-muted); }
.lead-text { font-size: 14px; color: var(--text); line-height: 1.5; margin-bottom: 14px; font-style: italic; }
.voicemail-note { font-style: normal; color: var(--text-muted); font-size: 13px; }
.lead-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.ai-badge, .booked-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}
.ai-badge { background: #e6f7f7; color: var(--accent-dark); }
.booked-badge { background: #e6f7f0; color: #1a7a4a; }

/* Stats */
.stats {
  background: var(--navy);
  padding: 56px 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.stat { flex: 1; text-align: center; }
.stat-number {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Section shared */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* Features */
.features { padding: 96px 24px; background: var(--bg); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features .section-headline { margin-bottom: 64px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Different */
.different { padding: 96px 24px; background: var(--bg-alt); }
.different-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.different-body { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-top: 20px; }
.different-right { display: flex; flex-direction: column; gap: 20px; }
.diff-row { display: flex; align-items: center; gap: 16px; }
.diff-label { font-size: 13px; color: var(--text-muted); width: 160px; flex-shrink: 0; }
.diff-bar { flex: 1; display: flex; align-items: center; gap: 12px; }
.diff-fill { height: 6px; border-radius: 999px; }
.diff-fill--localflow { background: var(--accent); width: 80%; }
.diff-fill--competitor { background: #d4c9bb; width: 50%; }
.diff-val { font-size: 13px; font-weight: 600; color: var(--text); }

/* Process */
.process { padding: 96px 24px; background: var(--white); }
.process-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.process .section-headline { margin-bottom: 64px; }
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}
.step { text-align: center; max-width: 220px; }
.step-number {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.step-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.step-arrow { color: var(--border); flex-shrink: 0; }
.process-note {
  font-size: 14px;
  color: var(--text-muted);
  background: var(--bg);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* Closing */
.closing {
  padding: 120px 24px;
  background: var(--navy);
  text-align: center;
}
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(14, 165, 163, 0.15);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 40px;
}
.closing-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; font-size: 13px; color: var(--text-muted); }

/* ============================================================
   PRICING PAGE
   ============================================================ */

/* Nav links (pricing + demo) */
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--text); background: var(--bg-alt); }
.nav-link--active { color: var(--text); font-weight: 600; }
.nav-link--cta {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}
.nav-link--cta:hover { background: var(--accent-dark); color: var(--white); }

/* Pricing hero */
.pricing-hero { padding: 72px 24px 48px; text-align: center; background: var(--bg); }
.pricing-hero-inner { max-width: 760px; margin: 0 auto; }
.pricing-hero-lede { font-size: 18px; color: var(--text-muted); margin: 16px 0 32px; line-height: 1.6; }

/* Toggle */
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.toggle-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.toggle-btn--active { background: var(--white); color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.toggle-save {
  font-size: 11px;
  font-weight: 700;
  background: #e6f7f0;
  color: #1a7a4a;
  padding: 2px 8px;
  border-radius: 999px;
}

/* Pricing cards */
.pricing-cards-section { padding: 0 24px 80px; background: var(--bg); }
.pricing-cards-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(14,165,163,0.12);
  transform: translateY(-8px);
}
.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-tier-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.pricing-tier-tag { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price-block { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-price-block::before {
  content: '$';
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  align-self: flex-start;
  margin-top: 10px;
}
.pricing-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-per { font-size: 16px; color: var(--text-muted); }
.pricing-setup { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-setup-waived { color: #1a7a4a; font-weight: 600; }
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-features-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pf-item { font-size: 14px; color: var(--text); display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.pf-item--muted { color: var(--text-muted); }
.pf-check { color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pf-x { color: #c4b8a8; flex-shrink: 0; margin-top: 1px; }

/* Pricing CTA buttons */
.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  box-sizing: border-box;
}
.btn-pricing--primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-pricing--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-pricing--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-pricing--outline:hover { border-color: var(--accent); color: var(--accent); }

/* Demo CTA under cards */
.pricing-demo-cta {
  max-width: 1100px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
}
.pricing-demo-cta strong { color: var(--text); }
.btn-secondary-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-secondary-cta:hover { opacity: 0.85; }

/* ROI section */
.pricing-roi { padding: 96px 24px; background: var(--bg-alt); }
.pricing-roi-inner { max-width: 960px; margin: 0 auto; }
.pricing-roi-inner .section-headline { margin: 16px 0 48px; }
.roi-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.roi-vs {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
}
.roi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.roi-card--ai { border-color: var(--accent); }
.roi-card-label { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.roi-rows { display: flex; flex-direction: column; gap: 12px; }
.roi-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); }
.roi-row span:last-child { font-weight: 600; color: var(--text); }
.roi-row--total { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; font-weight: 700; }
.roi-row--total span:last-child { color: var(--coral); }
.roi-row--savings span:last-child { color: #1a7a4a; }
.roi-hours { font-size: 12px; color: var(--text-muted); margin-top: 16px; border-top: 1px solid var(--border); padding-top: 12px; }

/* FAQ */
.pricing-faq { padding: 96px 24px; background: var(--bg); }
.pricing-faq-inner { max-width: 760px; margin: 0 auto; }
.pricing-faq-inner .section-headline { margin: 16px 0 48px; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.faq-q:hover { color: var(--accent); }
.faq-chevron { font-size: 18px; color: var(--text-muted); flex-shrink: 0; transition: transform 0.2s; }
.faq-item--open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 20px;
}
.faq-item--open .faq-a { display: block; }

/* Pricing closing CTA */
.pricing-closing { padding: 120px 24px; background: var(--navy); text-align: center; }
.pricing-closing-inner { max-width: 640px; margin: 0 auto; }
.closing-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.btn-cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-cta-primary:hover { background: var(--accent-dark); }
.btn-cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.15s;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,0.18); }

/* ─── VOICE AI PAGE ─────────────────────────────────────────────────── */

/* Hero */
.voice-hero { padding: 80px 24px 64px; background: var(--navy); color: var(--white); }
.voice-hero-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.voice-hero .hero-eyebrow { background: rgba(14,165,163,0.2); color: #5dd8d6; }
.voice-hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px 0 20px;
  color: var(--white);
}
.voice-hero-lede { font-size: 1.2rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.voice-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.voice-hero-proof {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,0.55);
}
.vhp-dot { opacity: 0.3; }
.vhp-stat strong { color: #5dd8d6; }

/* Demo / Transcript */
.voice-demo { padding: 80px 24px; background: var(--bg-alt); }
.voice-demo-inner { max-width: 780px; margin: 0 auto; }
.voice-demo-sub { color: var(--text-muted); margin-bottom: 36px; text-align: center; }
.voice-transcript { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.vt-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; background: var(--navy); color: var(--white);
}
.vt-badge { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; }
.vt-badge--live { color: #ff6b6b; }
.vt-meta { font-size: 13px; color: rgba(255,255,255,0.5); }
.vt-messages { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.vt-row { display: flex; gap: 12px; align-items: flex-start; }
.vt-row--caller { flex-direction: row-reverse; }
.vt-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.vt-avatar--ai { background: var(--accent); color: var(--white); }
.vt-avatar--caller { background: var(--bg-alt); color: var(--text-muted); border: 1px solid var(--border); }
.vt-bubble { max-width: 75%; }
.vt-row--caller .vt-bubble { text-align: right; }
.vt-speaker { display: block; font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.vt-bubble p {
  background: #f4f2ee; padding: 12px 16px; border-radius: 12px;
  font-size: 15px; line-height: 1.5; color: var(--text); display: inline-block;
}
.vt-row--ai .vt-bubble p { background: #e6f7f7; border-radius: 0 12px 12px 12px; }
.vt-row--caller .vt-bubble p { border-radius: 12px 0 12px 12px; }
.vt-outcome {
  display: flex; gap: 10px; align-items: flex-start;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px;
  padding: 14px 16px; font-size: 14px; color: #166534; margin-top: 8px;
}
.vt-outcome-icon { font-size: 16px; }

/* Verticals */
.voice-verticals { padding: 80px 24px; }
.voice-verticals-inner { max-width: 1100px; margin: 0 auto; }
.vv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 48px; }
.vv-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: box-shadow 0.15s, transform 0.15s;
}
.vv-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.vv-icon { font-size: 28px; margin-bottom: 10px; }
.vv-vertical { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.vv-scenario { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.vv-stat { font-size: 13px; background: #e6f7f7; border-radius: 8px; padding: 8px 12px; color: var(--accent-dark); }

/* How it works */
.voice-how { padding: 80px 24px; background: var(--bg-alt); }
.voice-how-inner { max-width: 900px; margin: 0 auto; }
.vh-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 48px; }
.vh-step { flex: 1; text-align: center; padding: 0 16px; }
.vh-step-num { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.vh-step-icon { font-size: 40px; margin-bottom: 12px; }
.vh-step-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.vh-step-body { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.vh-connector { font-size: 24px; color: var(--border); padding-top: 56px; flex-shrink: 0; }

/* Lead form */
.voice-form-section { padding: 80px 24px; background: var(--navy); }
.voice-form-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.voice-form-copy .section-eyebrow { background: rgba(14,165,163,0.2); color: #5dd8d6; }
.voice-form-copy .section-headline { color: var(--white); }
.vf-lede { color: rgba(255,255,255,0.65); margin: 16px 0 24px; font-size: 16px; }
.vf-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vf-bullets li { font-size: 15px; color: rgba(255,255,255,0.7); }
.voice-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; }
.vf-form { display: flex; flex-direction: column; gap: 18px; }
.vf-field { display: flex; flex-direction: column; gap: 6px; }
.vf-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.vf-req { color: var(--coral); }
.vf-input {
  padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--text);
  background: var(--white); transition: border-color 0.15s;
}
.vf-input:focus { outline: none; border-color: var(--accent); }
.vf-select { cursor: pointer; }
.vf-submit {
  background: var(--accent); color: var(--white); border: none; border-radius: 8px;
  padding: 14px; font-size: 16px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background 0.15s; margin-top: 4px;
}
.vf-submit:hover { background: var(--accent-dark); }
.vf-submit:disabled { opacity: 0.6; cursor: default; }
.vf-fine { font-size: 12px; color: var(--text-muted); text-align: center; }
.vf-thankyou { text-align: center; padding: 20px; }
.vft-icon { font-size: 48px; color: var(--accent); margin-bottom: 16px; }
.vft-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.vft-body { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Pricing teaser */
.voice-pricing-teaser { padding: 24px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.voice-pricing-teaser-inner { max-width: 700px; margin: 0 auto; text-align: center; display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }
.vpt-text { font-size: 15px; color: var(--text-muted); }
.vpt-link { font-size: 15px; font-weight: 600; color: var(--accent); text-decoration: none; }
.vpt-link:hover { text-decoration: underline; }

/* ─── NAV DROPDOWN ─────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: transparent;
  border: none;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-width: 200px;
  overflow: hidden;
  z-index: 200;
}
.nav-dropdown-menu--open { display: block; }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.12s;
}
.nav-dropdown-item:hover { background: var(--bg-alt); }
.nav-dropdown-item--active { font-weight: 600; color: var(--accent); }
.nav-dropdown-item--soon { color: var(--text-muted); cursor: default; }
.nav-dropdown-item--soon:hover { background: transparent; }
.nav-soon-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── DENTAL PAGE ──────────────────────────────────────────────────── */

/* Hero */
.dental-hero { padding: 80px 24px 64px; background: var(--navy); color: var(--white); }
.dental-hero-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.dental-hero .hero-eyebrow { background: rgba(14,165,163,0.2); color: #5dd8d6; }
.dental-hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px 0 20px;
  color: var(--white);
}
.dental-hero-lede { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }
.dental-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.dental-hero-proof {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px;
}
.dhp-stat { text-align: center; flex: 1; min-width: 160px; }
.dhp-number {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #5dd8d6;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.dhp-label { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.dhp-divider { width: 1px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* 4 Leaks */
.dental-leaks { padding: 96px 24px; background: var(--bg-alt); }
.dental-leaks-inner { max-width: 1100px; margin: 0 auto; }
.dental-leaks-inner .section-headline { margin: 16px 0 56px; }
.dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.dl-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.dl-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
.dl-icon { font-size: 32px; margin-bottom: 16px; }
.dl-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text);
}
.dl-body { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.dl-impact {
  font-size: 13px; font-weight: 600; color: var(--accent-dark);
  background: #e6f7f7; border-radius: 8px; padding: 8px 14px; display: inline-block;
}

/* Transcript section */
.dental-transcript { padding: 96px 24px; background: var(--bg); }
.dental-transcript-inner { max-width: 780px; margin: 0 auto; }
.dental-transcript-sub { color: var(--text-muted); margin-bottom: 36px; text-align: center; }

/* ROI */
.dental-roi { padding: 96px 24px; background: var(--navy); color: var(--white); text-align: center; }
.dental-roi-inner { max-width: 900px; margin: 0 auto; }
.dental-roi-inner .section-eyebrow { background: rgba(14,165,163,0.2); color: #5dd8d6; }
.dental-roi-inner .section-headline { color: var(--white); margin: 16px 0 56px; }
.dr-cards { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.dr-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px 32px; min-width: 180px;
}
.dr-card--result { background: rgba(14,165,163,0.15); border-color: rgba(14,165,163,0.4); }
.dr-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.04em; margin-bottom: 8px;
}
.dr-number--accent { color: #5dd8d6; }
.dr-label { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.dr-arrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem; font-weight: 800; color: rgba(255,255,255,0.3);
}
.dr-footnote { margin-top: 40px; font-size: 14px; color: rgba(255,255,255,0.5); max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.dr-footnote strong { color: rgba(255,255,255,0.75); }

/* Integrations */
.dental-integrations { padding: 96px 24px; background: var(--bg); }
.dental-integrations-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.dental-integrations-inner .section-headline { margin: 16px 0 16px; }
.di-sub { color: var(--text-muted); margin-bottom: 48px; font-size: 16px; }
.di-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.di-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.di-logo {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--white);
}
.di-logo--dentrix { background: #2563eb; }
.di-logo--eaglesoft { background: #7c3aed; }
.di-logo--opendental { background: #059669; }
.di-logo--curve { background: #d97706; }
.di-name { font-weight: 600; font-size: 15px; color: var(--text); }
.di-status { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.di-status--live { background: #dcfce7; color: #166534; }
.di-status--roadmap { background: var(--bg-alt); color: var(--text-muted); }
.di-note { font-size: 14px; color: var(--text-muted); }
.di-link { color: var(--accent); font-weight: 600; text-decoration: none; }
.di-link:hover { text-decoration: underline; }

/* FAQ */
.dental-faq { padding: 96px 24px; background: var(--bg-alt); }
.dental-faq-inner { max-width: 760px; margin: 0 auto; }
.dental-faq-inner .section-headline { margin: 16px 0 48px; }
.dfaq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.dfaq-item { border-bottom: 1px solid var(--border); }
.dfaq-q {
  width: 100%; padding: 20px 4px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--text); list-style: none; display: flex; justify-content: space-between;
  align-items: center;
}
.dfaq-q::after { content: '+'; font-size: 20px; color: var(--text-muted); flex-shrink: 0; }
.dfaq-item[open] .dfaq-q::after { content: '−'; }
.dfaq-q:hover { color: var(--accent); }
.dfaq-a { padding: 0 4px 20px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* Final CTA / demo booking */
.dental-cta-section { padding: 80px 24px; background: var(--navy); }
.dental-cta-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.dental-cta-copy .section-eyebrow { background: rgba(14,165,163,0.2); color: #5dd8d6; }
.dental-cta-copy .section-headline { color: var(--white); }
.dcta-lede { color: rgba(255,255,255,0.65); margin: 16px 0 24px; font-size: 16px; }
.dcta-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dcta-bullets li { font-size: 15px; color: rgba(255,255,255,0.7); }
.dental-cta-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; }
.dcta-form { display: flex; flex-direction: column; gap: 16px; }
.dcta-field { display: flex; flex-direction: column; gap: 6px; }
.dcta-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.dcta-req { color: var(--coral); }
.dcta-input {
  padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--text);
  background: var(--white); transition: border-color 0.15s;
}
.dcta-input:focus { outline: none; border-color: var(--accent); }
.dcta-select { cursor: pointer; }
.dcta-submit {
  background: var(--accent); color: var(--white); border: none; border-radius: 8px;
  padding: 14px; font-size: 16px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background 0.15s; margin-top: 4px;
}
.dcta-submit:hover { background: var(--accent-dark); }
.dcta-submit:disabled { opacity: 0.6; cursor: default; }
.dcta-fine { font-size: 12px; color: var(--text-muted); text-align: center; }
.dcta-thankyou { text-align: center; padding: 20px; }
.dcta-ty-icon { font-size: 48px; color: var(--accent); margin-bottom: 16px; }
.dcta-ty-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.dcta-ty-body { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .different-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { flex-direction: column; gap: 16px; }
  .step-arrow { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-meta { align-items: center; }
  .pricing-cards-inner { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .roi-grid { grid-template-columns: 1fr; }
  .roi-vs { display: none; }
  .closing-ctas { flex-direction: column; align-items: center; }
  .nav-links { gap: 4px; }
  .nav-link { padding: 5px 10px; font-size: 13px; }
  .vh-steps { flex-direction: column; gap: 24px; align-items: center; }
  .vh-connector { display: none; }
  .voice-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .vv-grid { grid-template-columns: 1fr 1fr; }
  .voice-hero-proof { flex-direction: column; gap: 8px; }
  .vhp-dot { display: none; }
  .dl-grid { grid-template-columns: 1fr; }
  .dr-cards { flex-direction: column; align-items: stretch; }
  .dr-arrow { transform: rotate(90deg); text-align: center; }
  .di-grid { grid-template-columns: repeat(2, 1fr); }
  .dental-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .dental-hero-proof { flex-direction: column; gap: 24px; }
  .dhp-divider { display: none; }
  .nav-dropdown-menu { left: auto; right: 0; transform: none; }
  .hvac-hero-proof { flex-direction: column; gap: 24px; }
  .hhp-divider { display: none; }
  .hvac-dl-grid { grid-template-columns: 1fr; }
  .hvac-int-grid { grid-template-columns: repeat(2, 1fr); }
  .hvac-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .hvac-pricing-band-inner { flex-direction: column; gap: 32px; text-align: center; }
  .roof-hero-proof { flex-direction: column; gap: 24px; }
  .rhp-divider { display: none; }
  .roof-dl-grid { grid-template-columns: 1fr; }
  .roof-qualifier-grid { grid-template-columns: 1fr; }
  .roof-int-grid { grid-template-columns: repeat(2, 1fr); }
  .roof-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .roof-pricing-band-inner { flex-direction: column; gap: 32px; text-align: center; }
}

/* ─── HVAC INDUSTRY PAGE ──────────────────────────────────────────── */

/* Hero */
.hvac-hero { padding: 96px 24px 80px; background: var(--navy); }
.hvac-hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.hvac-hero .hero-eyebrow { background: rgba(249,115,22,0.2); color: #fb923c; }
.hvac-hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.1;
  color: var(--white); margin: 20px 0 24px;
}
.hvac-hero-headline .hero-accent { color: #fb923c; }
.hvac-hero-lede { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 640px; margin: 0 auto 40px; line-height: 1.6; }
.hvac-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hvac-hero-proof {
  display: flex; gap: 0; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px 32px; flex-wrap: wrap; gap: 32px;
}
.hhp-stat { text-align: center; flex: 1; min-width: 140px; }
.hhp-number { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 800; color: #fb923c; }
.hhp-label { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; line-height: 1.4; }
.hhp-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* 4 Leaks */
.hvac-leaks { padding: 96px 24px; background: var(--bg-alt); }
.hvac-leaks-inner { max-width: 1100px; margin: 0 auto; }
.hvac-leaks-inner .section-headline { margin: 16px 0 48px; }
.hvac-dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.hvac-dl-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: box-shadow 0.15s, transform 0.15s;
}
.hvac-dl-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.hvac-dl-icon { font-size: 32px; margin-bottom: 14px; }
.hvac-dl-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.hvac-dl-body { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.hvac-dl-impact {
  display: inline-block; font-size: 13px; font-weight: 600;
  background: rgba(249,115,22,0.1); color: #c2410c;
  border-radius: 8px; padding: 6px 12px;
}

/* Transcript */
.hvac-transcript { padding: 96px 24px; background: var(--white); }
.hvac-transcript-inner { max-width: 800px; margin: 0 auto; }
.hvac-transcript-inner .section-headline { margin: 16px 0 12px; }
.hvac-transcript-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; }

/* Integrations */
.hvac-integrations { padding: 80px 24px; background: var(--bg-alt); }
.hvac-integrations-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.hvac-integrations-inner .section-headline { margin: 16px 0 12px; }
.hvac-int-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hvac-int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.hvac-int-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hvac-int-logo {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 800; color: var(--white);
}
.hvac-int-logo--servicetitan { background: #1d4ed8; }
.hvac-int-logo--housecall { background: #059669; }
.hvac-int-logo--jobber { background: #7c3aed; }
.hvac-int-logo--fieldedge { background: #d97706; }
.hvac-int-name { font-weight: 600; font-size: 15px; color: var(--text); }
.hvac-int-status { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.hvac-int-status--live { background: #dcfce7; color: #166534; }
.hvac-int-status--roadmap { background: var(--bg-alt); color: var(--text-muted); }
.hvac-int-note { font-size: 14px; color: var(--text-muted); }
.hvac-int-link { color: var(--accent); font-weight: 600; text-decoration: none; }
.hvac-int-link:hover { text-decoration: underline; }

/* Pricing CTA band */
.hvac-pricing-band { padding: 72px 24px; background: #1a1a2e; }
.hvac-pricing-band-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.hvac-eyebrow-light { background: rgba(249,115,22,0.2); color: #fb923c; }
.hvac-pb-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; line-height: 1.2;
  color: var(--white); margin: 16px 0 16px;
}
.hvac-pb-sub { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 460px; line-height: 1.6; }
.hvac-pb-cta { flex-shrink: 0; text-align: center; }
.hvac-pb-btn { white-space: nowrap; }
.hvac-pb-fine { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 12px; }

/* FAQ */
.hvac-faq { padding: 96px 24px; background: var(--bg-alt); }
.hvac-faq-inner { max-width: 760px; margin: 0 auto; }
.hvac-faq-inner .section-headline { margin: 16px 0 48px; }
.hvac-dfaq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }

/* Final CTA */
.hvac-cta-section { padding: 80px 24px; background: var(--navy); }
.hvac-cta-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.hvac-cta-copy .section-eyebrow { background: rgba(249,115,22,0.2); color: #fb923c; }
.hvac-cta-copy .section-headline { color: var(--white); }
.hvac-cta-lede { color: rgba(255,255,255,0.65); margin: 16px 0 24px; font-size: 16px; }
.hvac-cta-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hvac-cta-bullets li { font-size: 15px; color: rgba(255,255,255,0.7); }

/* ─── ROOFING INDUSTRY PAGE ──────────────────────────────────────── */

/* Hero */
.roof-hero { padding: 96px 24px 80px; background: var(--navy); }
.roof-hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.roof-hero .hero-eyebrow { background: rgba(59,130,246,0.2); color: #93c5fd; }
.roof-hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.1;
  color: var(--white); margin: 20px 0 24px;
}
.roof-hero-headline .hero-accent { color: #60a5fa; }
.roof-hero-lede { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 640px; margin: 0 auto 40px; line-height: 1.6; }
.roof-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.roof-hero-proof {
  display: flex; gap: 0; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px 32px; flex-wrap: wrap; gap: 32px;
}
.rhp-stat { text-align: center; flex: 1; min-width: 140px; }
.rhp-number { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 800; color: #60a5fa; }
.rhp-label { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; line-height: 1.4; }
.rhp-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* 4 Leaks */
.roof-leaks { padding: 96px 24px; background: var(--bg-alt); }
.roof-leaks-inner { max-width: 1100px; margin: 0 auto; }
.roof-leaks-inner .section-headline { margin: 16px 0 48px; }
.roof-dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.roof-dl-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: box-shadow 0.15s, transform 0.15s;
}
.roof-dl-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.roof-dl-icon { font-size: 32px; margin-bottom: 14px; }
.roof-dl-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.roof-dl-body { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.roof-dl-impact {
  display: inline-block; font-size: 13px; font-weight: 600;
  background: rgba(59,130,246,0.1); color: #1d4ed8;
  border-radius: 8px; padding: 6px 12px;
}

/* Transcript */
.roof-transcript { padding: 96px 24px; background: var(--white); }
.roof-transcript-inner { max-width: 800px; margin: 0 auto; }
.roof-transcript-inner .section-headline { margin: 16px 0 12px; }
.roof-transcript-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; }

/* Insurance qualifier */
.roof-qualifier { padding: 96px 24px; background: var(--bg-alt); }
.roof-qualifier-inner { max-width: 900px; margin: 0 auto; }
.roof-qualifier-inner .section-headline { margin: 16px 0 16px; }
.roof-qualifier-lede { font-size: 17px; color: var(--text-muted); margin-bottom: 48px; max-width: 640px; line-height: 1.6; }
.roof-qualifier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
.roof-qualifier-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 22px;
}
.rqi-icon { font-size: 28px; flex-shrink: 0; }
.rqi-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.rqi-body { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.roof-qualifier-note {
  font-size: 14px; color: var(--text-muted); font-style: italic;
  border-left: 3px solid #3b82f6; padding-left: 16px; margin-top: 8px;
}

/* Integrations */
.roof-integrations { padding: 80px 24px; background: var(--white); }
.roof-integrations-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.roof-integrations-inner .section-headline { margin: 16px 0 12px; }
.roof-int-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.roof-int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.roof-int-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.roof-int-logo {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 800; color: var(--white);
}
.roof-int-logo--jobnimbus { background: #1d4ed8; }
.roof-int-logo--acculynx { background: #dc2626; }
.roof-int-logo--roofr { background: #0891b2; }
.roof-int-logo--companycam { background: #16a34a; }
.roof-int-name { font-weight: 600; font-size: 15px; color: var(--text); }
.roof-int-status { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.roof-int-status--live { background: #dcfce7; color: #166534; }
.roof-int-status--roadmap { background: var(--bg-alt); color: var(--text-muted); }
.roof-int-note { font-size: 14px; color: var(--text-muted); }
.roof-int-link { color: var(--accent); font-weight: 600; text-decoration: none; }
.roof-int-link:hover { text-decoration: underline; }

/* Pricing CTA band */
.roof-pricing-band { padding: 72px 24px; background: #0f172a; }
.roof-pricing-band-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.roof-eyebrow-light { background: rgba(59,130,246,0.2); color: #93c5fd; }
.roof-pb-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; line-height: 1.2;
  color: var(--white); margin: 16px 0 16px;
}
.roof-pb-sub { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 460px; line-height: 1.6; }
.roof-pb-cta { flex-shrink: 0; text-align: center; }
.roof-pb-btn { white-space: nowrap; background: #3b82f6; }
.roof-pb-btn:hover { background: #2563eb; }
.roof-pb-fine { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 12px; }

/* FAQ */
.roof-faq { padding: 96px 24px; background: var(--bg-alt); }
.roof-faq-inner { max-width: 760px; margin: 0 auto; }
.roof-faq-inner .section-headline { margin: 16px 0 48px; }
.roof-dfaq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }

/* Final CTA */
.roof-cta-section { padding: 80px 24px; background: var(--navy); }
.roof-cta-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.roof-cta-copy .section-eyebrow { background: rgba(59,130,246,0.2); color: #93c5fd; }
.roof-cta-copy .section-headline { color: var(--white); }
.roof-cta-lede { color: rgba(255,255,255,0.65); margin: 16px 0 24px; font-size: 16px; }
.roof-cta-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.roof-cta-bullets li { font-size: 15px; color: rgba(255,255,255,0.7); }