/* =========================================================================
   Call Roger — shared design system
   Restyled to match jaysoncraig.ca/aivoice/Roger.html
   Warm paper · industrial blue · safety orange · heavy Inter
   ========================================================================= */

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

:root {
  /* Warm grays — paper and steel, not glass and screen */
  --paper:        #F4F2EE;
  --paper-warm:   #EAE6DE;
  --steel-10:     #DEDAD0;
  --steel-20:     #C2BDAF;
  --steel-30:     #9E988A;
  --steel-40:     #7A7468;
  --steel-50:     #5A5448;
  --steel-60:     #3F3A30;
  --steel-70:     #2B2820;
  --steel-80:     #1C1A15;

  /* Industrial blue */
  --blue:         #0B5394;
  --blue-dark:    #084078;
  --blue-deep:    #062F58;
  --blue-soft:    #D5E0EE;

  /* Safety orange */
  --orange:       #E76F00;
  --orange-dark:  #C25C00;
  --orange-soft:  #FBE3CC;

  /* Confirmation green */
  --green:        #0F8A4D;
  --green-soft:   #D7EEDE;

  /* Body text */
  --ink:          #1C1A15;
  --ink-60:       #5A5448;
  --ink-40:       #7A7468;

  --max:          1240px;
  --max-narrow:   1080px;
  --r:            4px;
  --r-lg:         10px;
}

html {
  font-size: 16.5px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Inter Tight', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11';
}

/* Utility */
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }
.display { font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; }

/* =========================================================================
   Reveal-on-scroll
   ========================================================================= */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.stat-grid > .reveal:nth-child(2),
.features-grid > .reveal:nth-child(2) { transition-delay: 0.08s; }
.stat-grid > .reveal:nth-child(3),
.features-grid > .reveal:nth-child(3) { transition-delay: 0.16s; }
.photo-strip-inner > .reveal:nth-child(2) { transition-delay: 0.10s; }

/* =========================================================================
   Launch banner
   ========================================================================= */
.launch-banner {
  background: var(--steel-80);
  color: rgba(244, 242, 238, 0.8);
  text-align: center;
  padding: 11px 24px;
  font-size: 13px;
}
.launch-banner strong { color: var(--orange); font-weight: 600; }
.launch-banner a {
  color: rgba(244, 242, 238, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 10px;
}

/* =========================================================================
   Nav
   ========================================================================= */
.nav {
  background: rgba(244, 242, 238, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--steel-10);
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.2s ease;
}
.nav.scrolled { box-shadow: 0 6px 22px -14px rgba(28, 26, 21, 0.28); }

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

.nav-logo {
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.035em;
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--steel-50);
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.nav-cta:hover { background: var(--orange-dark); }

.nav-signin {
  border: 1px solid var(--steel-20);
  padding: 8px 16px;
  border-radius: var(--r);
  color: var(--ink-60) !important;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: border-color .15s, color .15s, background .15s;
}
.nav-signin:hover { border-color: var(--ink); color: var(--ink) !important; background: rgba(0,0,0,0.02); }
.nav-signin[aria-current="page"] { border-color: var(--ink); color: var(--ink) !important; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--steel-20);
  border-radius: var(--r);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* =========================================================================
   Breadcrumb (city / pricing / demo)
   ========================================================================= */
.breadcrumb {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--steel-10);
  padding: 12px 28px;
}
.breadcrumb-inner {
  max-width: var(--max);
  margin: 0 auto;
  font-size: 12px;
  color: var(--steel-40);
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--steel-40); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep {
  margin: 0 8px;
  color: var(--steel-30);
}

/* =========================================================================
   Section primitives (eyebrows, titles, buttons)
   ========================================================================= */
.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before,
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange);
}
.eyebrow.on-dark { color: var(--orange); }
.eyebrow.muted { color: var(--steel-40); }
.eyebrow.muted::before { background: var(--steel-40); }

.section-title {
  font-weight: 900;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 24px;
}
.section-title span,
.section-title .blue { color: var(--blue); }
.section-title em {
  font-style: normal;
  color: inherit;
  display: inline-block;
  position: relative;
}
.section-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--orange);
  opacity: 0.85;
  z-index: -1;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-60);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s, color 0.15s;
  font-family: inherit;
}
.btn-orange {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  padding: 16px 28px;
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--steel-20);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-dark {
  background: transparent;
  color: rgba(244, 242, 238, 0.92);
  border-color: rgba(244, 242, 238, 0.30);
}
.btn-ghost-dark:hover {
  border-color: var(--paper);
  color: var(--paper);
}
.btn-dark {
  background: var(--steel-80);
  color: var(--paper);
  border-color: var(--steel-80);
}
.btn-dark:hover { background: var(--ink); }

/* =========================================================================
   Hero (homepage + city)
   ========================================================================= */
.hero {
  background: var(--paper);
  padding: 96px 32px 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(28, 26, 21, 0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -150px; right: -120px;
  width: 580px; height: 580px;
  background: radial-gradient(circle at center, rgba(11, 83, 148, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 480px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange);
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 em,
.hero h1 .highlight {
  font-style: normal;
  display: inline-block;
  position: relative;
  color: var(--ink);
}
.hero h1 em::after,
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--orange);
  opacity: 0.85;
  z-index: -1;
}
.hero .lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 540px;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.trust-label {
  font-size: 11px;
  color: var(--steel-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 6px;
  font-weight: 700;
}
.trust-pill {
  font-size: 12.5px;
  color: var(--steel-50);
  font-weight: 500;
  border: 1px solid var(--steel-20);
  background: white;
  border-radius: var(--r);
  padding: 5px 12px;
  text-decoration: none;
}
.trust-pill:hover { border-color: var(--blue); color: var(--blue); }

/* Local-signal pill above CTAs (city pages) */
.local-signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: var(--r);
  padding: 9px 16px;
  font-size: 13px;
  color: var(--ink-60);
  margin-bottom: 22px;
}
.local-signal strong { color: var(--ink); font-weight: 600; }

/* =========================================================================
   Call card (hero right side — Roger handling a live call)
   ========================================================================= */
.call-card {
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(28, 26, 21, 0.06), 0 24px 48px -16px rgba(28, 26, 21, 0.18);
}
.call-head {
  background: var(--steel-80);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
}
.call-head-live { display: inline-flex; align-items: center; gap: 9px; }
.call-live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
  animation: callPing 1.6s ease-in-out infinite;
}
@keyframes callPing {
  0%   { box-shadow: 0 0 0 0 rgba(231, 111, 0, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(231, 111, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(231, 111, 0, 0); }
}
.call-live-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.92);
}
.call-timer {
  font-size: 12px;
  font-weight: 500;
  color: rgba(244, 242, 238, 0.55);
  font-variant-numeric: tabular-nums;
}

.call-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--steel-10);
}
.call-meta-right { text-align: right; }
.call-meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-40);
}
.call-meta-value {
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.012em;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.call-meta-sub {
  font-size: 12.5px;
  color: var(--steel-50);
  margin-top: 2px;
}
.call-meta-handler {
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  margin-top: 2px;
}

.call-transcript {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 304px;
  overflow: hidden;
  padding: 16px 20px;
  background: var(--paper);
}
.call-bubble {
  max-width: 82%;
  padding: 8px 14px;
  border-radius: 10px;
  animation: callIn 0.42s ease both;
}
.call-bubble.roger {
  align-self: flex-start;
  background: var(--blue);
  color: white;
  border-bottom-left-radius: 3px;
}
.call-bubble.customer {
  align-self: flex-end;
  background: white;
  color: var(--ink);
  border: 1px solid rgba(28, 26, 21, 0.10);
  border-bottom-right-radius: 3px;
}
.call-bubble-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 2px;
}
.call-bubble-text { font-size: 13.5px; line-height: 1.45; }
.call-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  background: rgba(11, 83, 148, 0.15);
  border-radius: 10px;
  padding: 9px 12px;
  animation: callIn 0.42s ease both;
}
.call-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: callDot 1s infinite ease-in-out;
}
.call-typing span:nth-child(2) { animation-delay: 0.15s; }
.call-typing span:nth-child(3) { animation-delay: 0.30s; }
@keyframes callIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes callDot {
  0%, 65%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

.call-foot {
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 20px;
}
.call-foot-main { display: inline-flex; align-items: center; gap: 11px; }
.call-foot-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.call-foot-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}
.call-foot-detail { font-size: 13.5px; font-weight: 600; margin-top: 1px; }
.call-foot-tag { font-size: 11.5px; font-weight: 500; opacity: 0.9; }

/* =========================================================================
   Stats section (oversized tabular figures)
   ========================================================================= */
.stats {
  background: var(--paper-warm);
  padding: 96px 32px;
  border-top: 1px solid var(--steel-10);
  border-bottom: 1px solid var(--steel-10);
  position: relative;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(28, 26, 21, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-cell {
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: 6px;
  padding: 40px 36px;
  position: relative;
}
.stat-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--blue);
}
.stat-cell:nth-child(2)::before { background: var(--orange); }
.stat-number {
  font-weight: 900;
  font-size: 88px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}
.stat-number .unit {
  font-size: 0.45em;
  color: var(--steel-40);
  vertical-align: 0.5em;
  margin-left: 4px;
  font-weight: 700;
}
.stat-desc {
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.6;
  font-weight: 500;
}
.stat-source {
  font-size: 11px;
  color: var(--steel-40);
  margin-top: 14px;
  letter-spacing: 0.05em;
  padding-top: 14px;
  border-top: 1px solid var(--steel-10);
  font-weight: 600;
  text-transform: uppercase;
}

/* CleanBC blue card */
.cleanbc-card {
  background: var(--blue);
  color: var(--paper);
  border-radius: 6px;
  padding: 48px 52px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
}
.cleanbc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 4px;
  background: var(--orange);
}
.cleanbc-card h3 {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--paper);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.022em;
}
.cleanbc-card p {
  font-size: 15.5px;
  color: rgba(244, 242, 238, 0.78);
  line-height: 1.65;
  max-width: 620px;
}
.cleanbc-card p strong { color: var(--paper); font-weight: 700; }
.cleanbc-badge {
  background: var(--orange);
  border-radius: 6px;
  padding: 20px 26px;
  text-align: center;
  color: white;
}
.cleanbc-amount {
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.cleanbc-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
  font-weight: 700;
}

/* Stat-callout (paragraph of editorial reinforcement) */
.stat-callout {
  background: white;
  border: 1px solid var(--steel-10);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 24px 28px;
  margin-top: 32px;
  font-size: 16px;
  color: var(--ink-60);
  line-height: 1.7;
}
.stat-callout strong { color: var(--ink); font-weight: 700; }

/* Editorial pull-quote (competitor callout) */
.pull-quote {
  background: var(--steel-80);
  color: var(--paper);
  padding: 36px 44px;
  border-radius: 6px;
  margin: 32px 0;
  position: relative;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.pull-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 4px;
  background: var(--orange);
}

/* =========================================================================
   Features section (3 numbered cards)
   ========================================================================= */
.features-section {
  background: var(--paper);
  padding: 104px 32px;
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(28, 26, 21, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.features-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.feature-card {
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: 6px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 36px;
  width: 36px; height: 3px;
  background: var(--blue);
}
.feature-card:nth-child(2)::before { background: var(--orange); }
.feature-num {
  font-weight: 800;
  font-size: 12px;
  color: var(--steel-40);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.feature-card h3 {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.022em;
}
.feature-card h3 em {
  font-style: normal;
  color: var(--orange);
}
.feature-card p {
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.7;
  flex: 1;
  font-weight: 400;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.feature-tag {
  font-size: 11px;
  color: var(--steel-50);
  background: var(--paper-warm);
  border: 1px solid var(--steel-10);
  border-radius: 100px;
  padding: 3px 11px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

/* =========================================================================
   Photo strip (rooftop / dispatch desk)
   ========================================================================= */
.photo-strip {
  background: var(--steel-80);
  padding: 0 32px;
}
.photo-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--steel-70);
}
.photo-cell {
  aspect-ratio: 16/9;
  background-color: var(--steel-70);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================================================
   CTA strip (dark, glowing)
   ========================================================================= */
.cta-strip {
  background: var(--steel-80);
  color: var(--paper);
  padding: 104px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 60%, rgba(11, 83, 148, 0.30), transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(231, 111, 0, 0.18), transparent 70%);
  pointer-events: none;
}
.cta-strip h2 {
  font-weight: 900;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin-bottom: 22px;
  position: relative;
}
.cta-strip h2 em,
.cta-strip h2 .highlight {
  font-style: normal;
  color: var(--orange);
}
.cta-strip p {
  font-size: 18px;
  color: rgba(244, 242, 238, 0.72);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
  position: relative;
}
.cta-strip .btns {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.cta-meta {
  position: relative;
  font-size: 13px;
  color: rgba(244, 242, 238, 0.42);
  margin-top: 28px;
}

/* =========================================================================
   Footer
   ========================================================================= */
.foot {
  background: var(--steel-80);
  padding: 72px 32px 36px;
  color: rgba(244, 242, 238, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.foot-inner { max-width: var(--max); margin: 0 auto; }
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}
.foot-brand .nav-logo { color: var(--paper); }
.foot-brand p {
  font-size: 13.5px;
  color: rgba(244, 242, 238, 0.5);
  line-height: 1.7;
  max-width: 300px;
  margin-top: 14px;
}
.foot-col h4 {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(244, 242, 238, 0.45);
  margin-bottom: 18px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col a {
  font-size: 13.5px;
  color: rgba(244, 242, 238, 0.6);
  text-decoration: none;
  font-weight: 500;
}
.foot-col a:hover,
.foot-col a[aria-current="page"] { color: var(--orange); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.foot-bottom p {
  font-size: 12px;
  color: rgba(244, 242, 238, 0.4);
}
.foot-bottom p a,
.foot-bottom p a:link,
.foot-bottom p a:visited {
  color: rgba(244, 242, 238, 0.6);
  text-decoration: none;
}
.foot-bottom p a:hover {
  color: rgba(244, 242, 238, 0.9);
  text-decoration: underline;
}
.foot-badges { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-badge {
  font-size: 11px;
  color: rgba(244, 242, 238, 0.35);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.foot-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* =========================================================================
   Calculator (homepage)
   ========================================================================= */
.calc-section {
  background: var(--steel-80);
  color: var(--paper);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.calc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(231, 111, 0, 0.10), transparent 60%);
  pointer-events: none;
}
.calc-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.calc-section .section-title { color: var(--paper); }
.calc-section .section-sub { color: rgba(244, 242, 238, 0.6); }
.calc-section .eyebrow {
  color: var(--orange);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 48px;
}
.calc-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 36px;
}
.calc-panel h3 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(244, 242, 238, 0.45);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.slider-group { margin-bottom: 28px; }
.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.slider-label span {
  font-size: 14px;
  color: rgba(244, 242, 238, 0.7);
  font-weight: 500;
}
.slider-label strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
input[type=range] {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  transition: transform 0.15s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: none;
}
.calc-disclaimer {
  font-size: 12px;
  color: rgba(244, 242, 238, 0.4);
  line-height: 1.6;
  margin-top: 20px;
  font-weight: 400;
}

.calc-result {
  background: rgba(231, 111, 0, 0.08);
  border: 1px solid rgba(231, 111, 0, 0.25);
  border-radius: 6px;
  padding: 36px;
  position: relative;
}
.calc-result::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 3px;
  background: var(--orange);
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.result-row:last-of-type { border-bottom: none; }
.result-label {
  font-size: 13.5px;
  color: rgba(244, 242, 238, 0.55);
  font-weight: 500;
}
.result-label.has-hint {
  cursor: help;
  border-bottom: 1px dotted rgba(244, 242, 238, 0.35);
  position: relative;
}
.result-label.has-hint::after {
  content: attr(data-hint);
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #1c1a15;
  color: rgba(244, 242, 238, 0.95);
  padding: 10px 14px;
  font-size: 12.5px;
  line-height: 1.5;
  border: 1px solid rgba(244, 242, 238, 0.15);
  border-radius: 8px;
  width: 320px;
  max-width: 80vw;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.result-label.has-hint:hover::after,
.result-label.has-hint:focus-visible::after {
  opacity: 1;
}
.result-value {
  font-size: 18px;
  font-weight: 700;
  color: rgba(244, 242, 238, 0.92);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.012em;
}
.result-big {
  background: rgba(231, 111, 0, 0.16);
  border: 1px solid rgba(231, 111, 0, 0.4);
  border-radius: 6px;
  padding: 24px;
  margin-top: 22px;
  text-align: center;
}
.result-big-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244, 242, 238, 0.6);
  margin-bottom: 10px;
  font-weight: 700;
}
.result-big-num {
  font-weight: 900;
  font-size: 56px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.result-big-sub {
  font-size: 12.5px;
  color: rgba(244, 242, 238, 0.55);
  font-weight: 400;
  line-height: 1.55;
}
.calc-cta {
  display: block;
  width: 100%;
  margin-top: 22px;
  text-align: center;
}

/* =========================================================================
   How-it-works teaser strip
   ========================================================================= */
.teaser-strip {
  background: var(--paper-warm);
  border-top: 1px solid var(--steel-10);
  border-bottom: 1px solid var(--steel-10);
  padding: 48px 32px;
}
.teaser-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.teaser-inner p {
  font-size: 17px;
  color: var(--ink-60);
  line-height: 1.55;
  max-width: 640px;
}
.teaser-inner p strong { color: var(--ink); font-weight: 700; }

/* =========================================================================
   Integrations
   ========================================================================= */
.integrations-section {
  background: var(--paper);
  padding: 96px 32px;
}
.integrations-inner { max-width: var(--max); margin: 0 auto; }
.int-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.int-pill {
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: var(--r);
  padding: 10px 18px;
  font-size: 14px;
  color: var(--ink-60);
  font-weight: 600;
}
.int-pill.muted {
  background: var(--paper-warm);
  color: var(--steel-50);
  font-style: italic;
  font-weight: 500;
}
.int-note {
  font-size: 13.5px;
  color: var(--steel-50);
  margin-top: 18px;
  font-weight: 500;
  max-width: 720px;
  line-height: 1.6;
}

/* =========================================================================
   Social proof
   ========================================================================= */
.proof-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--steel-10);
  padding: 96px 32px;
}
.proof-inner { max-width: var(--max); margin: 0 auto; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.proof-card {
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: 6px;
  padding: 36px;
  position: relative;
}
.proof-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--orange);
}
.proof-card:nth-child(2)::before { background: var(--blue); }
.proof-quote {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 22px;
  letter-spacing: -0.012em;
}
.proof-meta {
  font-size: 12.5px;
  color: var(--steel-40);
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
}
.proof-founder {
  background: var(--steel-80);
  border-radius: 6px;
  padding: 36px 40px;
  margin-top: 24px;
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  position: relative;
}
.proof-founder::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 4px;
  background: var(--orange);
}
.proof-founder p {
  font-size: 15.5px;
  color: rgba(244, 242, 238, 0.75);
  line-height: 1.7;
}
.proof-founder p strong { color: var(--orange); font-weight: 700; }
.proof-founder-cta { display: flex; flex-direction: column; gap: 10px; text-align: center; }
.proof-founder-cta a {
  display: block;
  background: var(--orange);
  color: white;
  padding: 12px 22px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.proof-founder-cta a:hover { background: var(--orange-dark); }
.proof-founder-cta span {
  font-size: 11px;
  color: rgba(244, 242, 238, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-section {
  background: var(--paper);
  padding: 96px 32px;
}
.faq-inner { max-width: var(--max); margin: 0 auto; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--steel-10);
  border-radius: 6px;
  overflow: hidden;
  background: white;
}
.faq-grid.single-col { grid-template-columns: 1fr; }
.faq-item {
  padding: 22px 26px;
  border-bottom: 1px solid var(--steel-10);
  border-right: 1px solid var(--steel-10);
  cursor: pointer;
  transition: background 0.15s;
}
.faq-grid.single-col .faq-item { border-right: none; }
.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }
.faq-grid.single-col .faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--paper-warm); }
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.35;
  letter-spacing: -0.012em;
}
.faq-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--steel-20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--orange);
  margin-top: 2px;
  transition: transform 0.2s;
  background: white;
  font-weight: 800;
  line-height: 1;
}
.faq-a {
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s;
}
.faq-item.open .faq-a { max-height: 360px; margin-top: 12px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-link {
  text-align: center;
  margin-top: 28px;
}
.faq-link a {
  font-size: 14px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* =========================================================================
   Page variants — Local signals row (city pages)
   ========================================================================= */
.signals {
  background: var(--steel-80);
  padding: 40px 32px;
}
.signals-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.signals-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(244, 242, 238, 0.45);
  margin-right: 6px;
  font-weight: 700;
  white-space: nowrap;
}
.signal-pill {
  font-size: 12.5px;
  color: rgba(244, 242, 238, 0.7);
  border: 1px solid rgba(244, 242, 238, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
  white-space: nowrap;
  font-weight: 500;
}

/* =========================================================================
   City pages — problem layout with stat sidebar
   ========================================================================= */
.problem-section {
  background: var(--paper);
  padding: 96px 32px;
}
.problem-inner { max-width: var(--max); margin: 0 auto; }
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.problem-body p {
  font-size: 16.5px;
  color: var(--ink-60);
  line-height: 1.75;
  margin-bottom: 20px;
}
.problem-body p strong { color: var(--ink); font-weight: 700; }
.problem-body p:last-child { margin-bottom: 0; }

.aside-stats { display: flex; flex-direction: column; gap: 14px; }
.aside-card {
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: 6px;
  padding: 24px;
  position: relative;
}
.aside-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--orange);
}
.aside-card-num {
  font-weight: 900;
  font-size: 44px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.aside-card-label {
  font-size: 13.5px;
  color: var(--ink-60);
  line-height: 1.5;
  font-weight: 500;
}
.aside-card-source {
  font-size: 11px;
  color: var(--steel-40);
  margin-top: 10px;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
}
.aside-card.context {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--paper);
}
.aside-card.context::before { background: var(--orange); }
.aside-card.context h4 {
  font-size: 11px;
  color: rgba(244, 242, 238, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  margin-bottom: 10px;
}
.aside-card.context p {
  font-size: 13.5px;
  color: rgba(244, 242, 238, 0.85);
  line-height: 1.6;
  font-weight: 500;
}

/* City CTA — orange/dark blend */
.city-cta {
  background: var(--orange);
  color: white;
  padding: 88px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.city-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(28, 26, 21, 0.18), transparent 60%);
  pointer-events: none;
}
.city-cta h2 {
  font-weight: 900;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 18px;
  position: relative;
}
.city-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 32px;
  max-width: 560px;
  line-height: 1.55;
  position: relative;
}
.city-cta .btns {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.btn-white {
  background: white;
  color: var(--orange-dark);
  border-color: white;
}
.btn-white:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--orange-dark);
}
.btn-on-orange {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-on-orange:hover { border-color: white; }
.city-cta .cta-meta {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================================
   Pricing
   ========================================================================= */
.pricing-hero {
  background: var(--steel-80);
  color: var(--paper);
  padding: 96px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 60%, rgba(11, 83, 148, 0.30), transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(231, 111, 0, 0.18), transparent 70%);
  pointer-events: none;
}
.pricing-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.pricing-hero .eyebrow {
  color: var(--orange);
  margin-bottom: 22px;
  justify-content: center;
}
.pricing-hero h1 {
  font-weight: 900;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin-bottom: 22px;
}
.pricing-hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.pricing-hero p {
  font-size: 18px;
  color: rgba(244, 242, 238, 0.72);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.cad-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: rgba(244, 242, 238, 0.75);
  font-weight: 500;
}
.cad-badge strong { color: var(--paper); font-weight: 700; }

.plans-section {
  background: var(--steel-80);
  padding: 0 32px 96px;
}
.plans-inner { max-width: var(--max); margin: 0 auto; }
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.plan-card {
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 4px;
  background: var(--blue);
}
.plan-card.featured::before { background: var(--orange); }
.plan-card.featured {
  box-shadow: 0 24px 64px -24px rgba(231, 111, 0, 0.35);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 36px;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.plan-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--steel-40);
  margin-bottom: 16px;
}
.plan-price { margin-bottom: 6px; }
.plan-price-num {
  font-weight: 900;
  font-size: 64px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.plan-price-unit {
  font-size: 16px;
  color: var(--steel-40);
  font-weight: 600;
  margin-left: 4px;
}
.plan-price-cad {
  font-size: 12.5px;
  color: var(--steel-40);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.plan-calls {
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--steel-10);
}
.plan-calls strong { color: var(--ink); font-weight: 700; }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 28px;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.5;
}
.plan-feature::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' stroke='%230F8A4D' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 22px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid;
}
.plan-cta.primary {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
.plan-cta.primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.plan-cta.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--steel-20);
}
.plan-cta.secondary:hover { border-color: var(--ink); }
.plan-meta {
  font-size: 12px;
  color: var(--steel-40);
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.overage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.overage-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.overage-label {
  font-size: 12.5px;
  color: rgba(244, 242, 238, 0.55);
  font-weight: 500;
}
.overage-rate {
  font-size: 16px;
  color: var(--paper);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.overage-note {
  font-size: 12.5px;
  color: rgba(244, 242, 238, 0.45);
  text-align: center;
  margin-top: 16px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* What's included */
.included-section {
  background: var(--paper-warm);
  padding: 96px 32px;
  border-top: 1px solid var(--steel-10);
  border-bottom: 1px solid var(--steel-10);
}
.included-inner { max-width: var(--max); margin: 0 auto; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.included-card {
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: 6px;
  padding: 32px;
  position: relative;
}
.included-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px;
  width: 32px; height: 3px;
  background: var(--blue);
}
.included-card:nth-child(3n-1)::before { background: var(--orange); }
.included-card h3 {
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  margin: 12px 0 10px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.included-card p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.65;
}
.included-icon {
  width: 38px; height: 38px;
  border-radius: 6px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  color: var(--orange-dark);
}

/* Jobber addon */
.addon-section {
  background: var(--paper);
  padding: 96px 32px;
}
.addon-inner { max-width: var(--max); margin: 0 auto; }
.addon-card {
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: 8px;
  padding: 44px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
  position: relative;
}
.addon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 4px;
  background: var(--orange);
}
.addon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-soft);
  border: 1px solid rgba(231, 111, 0, 0.3);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.addon-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: callPing 2s infinite;
}
.addon-card h3 {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.022em;
}
.addon-card .body {
  font-size: 15px;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 560px;
}
.addon-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.addon-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-60);
  line-height: 1.45;
}
.addon-feature::before {
  content: '';
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 6-6.5' stroke='%230F8A4D' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.addon-notice {
  background: var(--paper);
  border: 1px solid var(--steel-10);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink-60);
  line-height: 1.6;
}
.addon-notice strong { color: var(--ink); font-weight: 700; }
.addon-price-panel {
  background: var(--steel-80);
  color: var(--paper);
  border-radius: 6px;
  padding: 28px;
  text-align: center;
  position: relative;
}
.addon-price-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--orange);
}
.addon-price-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.55);
  margin-bottom: 10px;
}
.addon-price-num {
  font-weight: 900;
  font-size: 60px;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.addon-price-unit {
  font-size: 14px;
  color: rgba(244, 242, 238, 0.55);
  font-weight: 500;
  margin-bottom: 14px;
}
.addon-price-compare {
  font-size: 12px;
  color: rgba(244, 242, 238, 0.5);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}
.addon-price-compare s { color: rgba(244, 242, 238, 0.35); }
.addon-cta {
  display: block;
  background: var(--orange);
  color: white;
  padding: 12px 20px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
}
.addon-cta:hover { background: var(--orange-dark); }
.addon-cta-note {
  font-size: 11px;
  color: rgba(244, 242, 238, 0.4);
  line-height: 1.55;
}

/* Comparison table */
.compare-section {
  background: var(--paper-warm);
  padding: 96px 32px;
  border-top: 1px solid var(--steel-10);
}
.compare-inner { max-width: var(--max); margin: 0 auto; }
.compare-table-wrap {
  margin-top: 28px;
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: 6px;
  overflow: hidden;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare-table th {
  padding: 18px 22px;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--steel-40);
  border-bottom: 1px solid var(--steel-10);
  background: var(--paper);
}
.compare-table th.col-pro {
  color: var(--orange);
  background: var(--orange-soft);
}
.compare-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--steel-10);
  color: var(--ink-60);
  vertical-align: top;
}
.compare-table td.col-pro {
  background: rgba(231, 111, 0, 0.04);
  color: var(--ink);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check {
  color: var(--green);
  font-weight: 800;
}
.compare-table .dash { color: var(--steel-30); }

/* =========================================================================
   Demo page
   ========================================================================= */
.demo-hero {
  background: var(--steel-80);
  color: var(--paper);
  padding: 96px 32px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.demo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(231, 111, 0, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(11, 83, 148, 0.18), transparent 70%);
  pointer-events: none;
}
.demo-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(15, 138, 77, 0.15);
  border: 1px solid rgba(15, 138, 77, 0.4);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 24px;
}
.live-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34D27A;
  animation: callPing 1.6s ease-in-out infinite;
}
.live-badge span {
  font-size: 12.5px;
  font-weight: 700;
  color: #66D998;
  letter-spacing: 0.04em;
}
.demo-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.demo-label {
  font-size: 13px;
  color: rgba(244, 242, 238, 0.55);
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.demo-number {
  display: block;
  font-weight: 900;
  font-size: clamp(56px, 9vw, 112px);
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  margin-bottom: 16px;
}
.demo-number em {
  font-style: normal;
  color: var(--orange);
}
.demo-number:hover em { color: var(--orange-dark); }
.demo-avail {
  font-size: 13px;
  color: rgba(244, 242, 238, 0.5);
  margin-bottom: 36px;
}
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: white;
  padding: 18px 36px;
  border-radius: var(--r);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.call-btn:hover { background: var(--orange-dark); }
.call-note {
  font-size: 12px;
  color: rgba(244, 242, 238, 0.4);
  margin: 14px 0 28px;
}
.demo-instruction {
  font-size: 16px;
  color: rgba(244, 242, 238, 0.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.demo-instruction strong { color: var(--paper); font-weight: 700; }

.scenarios-section {
  background: var(--steel-80);
  padding: 80px 32px;
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.scenarios-inner { max-width: var(--max); margin: 0 auto; }
.scenarios-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.scenarios-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--orange);
}
.scenarios-title {
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 32px;
}
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.scenario-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 28px;
  position: relative;
}
.scenario-card::before {
  content: '';
  position: absolute;
  top: 0; left: 28px;
  width: 32px; height: 3px;
  background: var(--orange);
}
.scenario-num {
  font-weight: 800;
  font-size: 12px;
  color: rgba(244, 242, 238, 0.5);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.scenario-card h3 {
  font-weight: 800;
  font-size: 18px;
  color: var(--paper);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.scenario-say {
  background: rgba(231, 111, 0, 0.10);
  border: 1px solid rgba(231, 111, 0, 0.3);
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.scenario-say-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.scenario-say-text {
  font-size: 13.5px;
  color: rgba(244, 242, 238, 0.85);
  font-style: italic;
  line-height: 1.45;
}
.scenario-card p {
  font-size: 13.5px;
  color: rgba(244, 242, 238, 0.6);
  line-height: 1.6;
}

/* SMS mockup */
.sms-section {
  background: var(--paper);
  padding: 96px 32px;
}
.sms-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.sms-copy h2 {
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.sms-copy p {
  font-size: 16px;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 16px;
}
.sms-copy strong { color: var(--ink); font-weight: 700; }
.sms-mockup {
  background: var(--steel-80);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 24px 64px -24px rgba(28, 26, 21, 0.4);
}
.sms-mockup-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sms-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
}
.sms-from {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--paper);
}
.sms-time {
  font-size: 11.5px;
  color: rgba(244, 242, 238, 0.45);
  margin-top: 2px;
}
.sms-bubble {
  background: var(--blue);
  color: white;
  border-radius: 6px 14px 14px 14px;
  padding: 18px;
}
.sms-bubble-header {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}
.sms-field {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  gap: 12px;
}
.sms-field:last-child { border-bottom: none; }
.sms-field-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  flex-shrink: 0;
}
.sms-field-value {
  font-size: 13px;
  color: white;
  text-align: right;
  font-weight: 600;
}
.sms-field-value.urgent { color: #FFB84A; }
.sms-field-value.type { color: #66D998; }
.sms-footer {
  font-size: 11.5px;
  color: rgba(244, 242, 238, 0.45);
  margin-top: 14px;
  text-align: center;
  font-weight: 500;
}

/* "What happens next" steps */
.next-section {
  background: var(--paper-warm);
  padding: 96px 32px;
  border-top: 1px solid var(--steel-10);
  border-bottom: 1px solid var(--steel-10);
}
.next-inner { max-width: var(--max); margin: 0 auto; }
.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.next-step {
  background: white;
  border: 1px solid var(--steel-10);
  border-radius: 6px;
  padding: 32px;
  position: relative;
}
.next-step::before {
  content: '';
  position: absolute;
  top: 0; left: 32px;
  width: 32px; height: 3px;
  background: var(--blue);
}
.next-step:nth-child(2)::before { background: var(--orange); }
.next-step-num {
  font-weight: 900;
  font-size: 48px;
  color: var(--steel-20);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.next-step h3 {
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.next-step p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.65;
}

/* Founder note */
.founder-section {
  background: var(--paper);
  padding: 96px 32px;
  text-align: center;
}
.founder-inner { max-width: 760px; margin: 0 auto; }
.founder-note {
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.founder-note::before {
  content: '"';
  font-size: 1.4em;
  color: var(--orange);
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 4px;
}
.founder-sig {
  font-size: 13.5px;
  color: var(--steel-50);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.founder-sig strong { color: var(--ink); font-weight: 800; }

/* =========================================================================
   About page
   ========================================================================= */
.about-hero {
  background: var(--paper-warm);
  padding: 112px 32px 88px;
  border-bottom: 1px solid var(--steel-10);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle at center, rgba(231, 111, 0, 0.10), transparent 65%);
  pointer-events: none;
}
.about-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.about-hero h1 {
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: 920px;
}
.about-hero h1 em {
  font-style: normal;
  display: inline-block;
  position: relative;
}
.about-hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--orange);
  opacity: 0.85;
  z-index: -1;
}
.about-hero .lead {
  font-size: 19px;
  color: var(--ink-60);
  max-width: 640px;
  line-height: 1.6;
}

.about-bio {
  background: var(--paper);
  padding: 96px 32px;
}
.about-bio-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}
.about-portrait { position: sticky; top: 96px; }
.portrait-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(231, 111, 0, 0.18), transparent 60%),
    var(--steel-80);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  align-items: flex-end;
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 242, 238, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
}
.portrait-tag {
  position: absolute;
  top: 22px; left: 24px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 5px 11px;
  z-index: 2;
}
.portrait-initials {
  position: absolute;
  top: 26px; right: 28px;
  font-weight: 900;
  font-size: 96px;
  color: rgba(244, 242, 238, 0.10);
  line-height: 1;
  letter-spacing: -0.05em;
  z-index: 1;
}
.portrait-name {
  font-weight: 900;
  font-size: 24px;
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}
.portrait-name em {
  font-style: normal;
  color: var(--orange);
}
.portrait-role {
  font-size: 12.5px;
  color: rgba(244, 242, 238, 0.55);
  letter-spacing: 0.05em;
  margin-top: 6px;
  position: relative;
  z-index: 2;
  font-weight: 500;
}
.portrait-caption {
  font-size: 13.5px;
  color: var(--ink-60);
  margin-top: 16px;
  line-height: 1.55;
}
.portrait-caption strong { color: var(--ink); font-weight: 700; }

.bio-body { max-width: 640px; }
.bio-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 26px;
  font-weight: 400;
}
.bio-body p strong { color: var(--ink); font-weight: 700; }
.bio-body .pull {
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 36px 0;
  padding-left: 24px;
  border-left: 4px solid var(--orange);
}
.bio-signature {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--steel-10);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.bio-signature span {
  display: block;
  font-size: 13px;
  color: var(--steel-40);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-pillars {
  background: var(--steel-80);
  color: var(--paper);
  padding: 96px 32px;
}
.about-pillars-inner { max-width: var(--max); margin: 0 auto; }
.about-pillars .section-title {
  color: var(--paper);
  max-width: 800px;
}
.about-pillars .section-title em {
  color: var(--paper);
}
.about-pillars .section-title em::after {
  background: var(--orange);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 36px;
}
.pillar {
  background: var(--steel-80);
  padding: 36px 32px;
}
.pillar-num {
  font-weight: 800;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  margin-bottom: 18px;
}
.pillar h3 {
  font-weight: 800;
  font-size: 18px;
  color: var(--paper);
  line-height: 1.25;
  letter-spacing: -0.018em;
  margin-bottom: 12px;
}
.pillar p {
  font-size: 13.5px;
  color: rgba(244, 242, 238, 0.6);
  line-height: 1.65;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1100px) {
  .hero-inner { gap: 48px; grid-template-columns: 1fr 420px; }
  .sms-inner { grid-template-columns: 1fr 380px; gap: 40px; }
}

@media (max-width: 920px) {
  html { font-size: 16px; }
  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats, .features-section, .integrations-section, .proof-section,
  .faq-section, .problem-section, .included-section, .addon-section,
  .compare-section, .sms-section, .next-section, .founder-section,
  .calc-section, .about-bio, .about-pillars { padding: 64px 22px; }
  .pricing-hero, .demo-hero { padding: 64px 24px 56px; }
  .stat-grid, .features-grid, .plans-grid, .included-grid,
  .scenarios-grid, .next-grid, .calc-grid, .sms-inner, .overage-row,
  .cleanbc-card, .proof-grid, .problem-layout, .about-bio-inner,
  .addon-card, .proof-founder, .teaser-inner, .faq-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip-inner { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .faq-item:nth-child(even) { border-right: none; }
  .faq-item { border-right: none !important; }
  .about-portrait { position: static; max-width: 280px; }
  .stat-cell { padding: 32px 28px; }
  .stat-number { font-size: 64px; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 13.5px; }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--steel-10);
    box-shadow: 0 14px 30px -18px rgba(28, 26, 21, 0.35);
    padding: 6px 28px 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 13px 2px;
    font-size: 15px;
    border-bottom: 1px solid var(--steel-10);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
    padding: 13px 20px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .call-bubble, .call-typing, .call-typing span,
  .call-live-dot, .live-badge .dot, .addon-pill::before { animation: none; }
  .call-transcript { height: auto; overflow: visible; }
}
