:root {
  --bg: #eef3f1;
  --surface: #ffffff;
  --surface-2: #e6ede9;
  --ink: #142826;
  --ink-soft: #3f5652;
  --ink-mute: #6b7c79;
  --line: rgba(20, 40, 38, 0.14);
  --line-strong: rgba(20, 40, 38, 0.28);
  --primary: #0e5c52;
  --primary-ink: #ffffff;
  --accent: #c97f2a;
  --accent-ink: #1c1206;
  --chart-teal: #128a76;
  --chart-amber: #c97f2a;
  --chart-grid: rgba(20, 40, 38, 0.12);
  --chart-surface: #ffffff;
  --shadow: 0 1px 2px rgba(20, 40, 38, 0.06), 0 12px 28px -14px rgba(20, 40, 38, 0.22);

  --font-display: "Iowan Old Style", "Palatino Linotype", "URW Palladio L", Georgia, serif;
  --font-body: "Seravek", "Gill Sans Nova", "Segoe UI", Calibri, Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a1715;
    --surface: #10221f;
    --surface-2: #16302b;
    --ink: #e9f2ef;
    --ink-soft: #a9c4bd;
    --ink-mute: #7f948f;
    --line: rgba(233, 242, 239, 0.14);
    --line-strong: rgba(233, 242, 239, 0.26);
    --primary: #4fb8a9;
    --primary-ink: #072220;
    --accent: #e3a75c;
    --accent-ink: #241705;
    --chart-teal: #33a08f;
    --chart-amber: #b87d3e;
    --chart-grid: rgba(233, 242, 239, 0.14);
    --chart-surface: #10221f;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 32px -16px rgba(0, 0, 0, 0.55);
  }
}
:root[data-theme="dark"] {
  --bg: #0a1715;
  --surface: #10221f;
  --surface-2: #16302b;
  --ink: #e9f2ef;
  --ink-soft: #a9c4bd;
  --ink-mute: #7f948f;
  --line: rgba(233, 242, 239, 0.14);
  --line-strong: rgba(233, 242, 239, 0.26);
  --primary: #4fb8a9;
  --primary-ink: #072220;
  --accent: #e3a75c;
  --accent-ink: #241705;
  --chart-teal: #33a08f;
  --chart-amber: #b87d3e;
  --chart-grid: rgba(233, 242, 239, 0.14);
  --chart-surface: #10221f;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 32px -16px rgba(0, 0, 0, 0.55);
}
:root[data-theme="light"] {
  --bg: #eef3f1;
  --surface: #ffffff;
  --surface-2: #e6ede9;
  --ink: #142826;
  --ink-soft: #3f5652;
  --ink-mute: #6b7c79;
  --line: rgba(20, 40, 38, 0.14);
  --line-strong: rgba(20, 40, 38, 0.28);
  --primary: #0e5c52;
  --primary-ink: #ffffff;
  --accent: #c97f2a;
  --accent-ink: #1c1206;
  --chart-teal: #128a76;
  --chart-amber: #c97f2a;
  --chart-grid: rgba(20, 40, 38, 0.12);
  --chart-surface: #ffffff;
  --shadow: 0 1px 2px rgba(20, 40, 38, 0.06), 0 12px 28px -14px rgba(20, 40, 38, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  background-image: repeating-linear-gradient(
    to bottom, var(--line) 0px, var(--line) 1px, transparent 1px, transparent 42px
  );
  background-attachment: local;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; text-wrap: balance; margin: 0; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  table-layout: fixed;
}
.visually-hidden caption,
.visually-hidden th,
.visually-hidden td {
  white-space: normal;
  word-break: break-all;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  position: relative;
}
.logo { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.01em; white-space: nowrap; }
.logo a { text-decoration: none; }
.logo b { font-weight: 600; }
.logo span { color: var(--ink-soft); font-size: 0.86em; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--surface-2); }
.nav-toggle svg { width: 24px; height: 24px; }

nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
nav a.navlink {
  font-size: 15px;
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
nav a.navlink:hover { color: var(--ink); border-color: var(--line-strong); }
nav a.navlink[aria-current="page"] { color: var(--primary); border-color: var(--primary); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  order: 10;
}
.lang-switch a {
  color: var(--ink-mute);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a[aria-current="true"] {
  color: var(--primary-ink);
  background: var(--primary);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-on-primary { background: var(--accent); color: var(--accent-ink); }
.btn-outline-on-primary {
  background: transparent;
  border-color: color-mix(in srgb, var(--primary-ink) 45%, transparent);
  color: var(--primary-ink);
}
.btn-outline-on-primary:hover {
  background: color-mix(in srgb, var(--primary-ink) 12%, transparent);
  border-color: var(--primary-ink);
}
.btn-lg { font-size: 17px; padding: 14px 26px; }
.btn-icon { width: 17px; height: 17px; flex-shrink: 0; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* ---------- Hero (home) ---------- */
.hero { padding: 76px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(32px, 4.6vw, 50px); line-height: 1.14; margin: 16px 0 20px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero p.lead { font-size: 18px; color: var(--ink-soft); max-width: 46ch; margin: 0 0 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art { opacity: 0; transform: translateY(8px); animation: rise 0.7s ease-out 0.15s forwards; }
.hero-copy { opacity: 0; transform: translateY(8px); animation: rise 0.7s ease-out forwards; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.card-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 6px;
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { padding: 56px 0 8px; }
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.16;
  margin: 0 0 18px;
}
.page-hero p.lead { font-size: 18px; color: var(--ink-soft); max-width: 62ch; margin: 0 0 26px; }
.page-hero .hero-ctas { margin-bottom: 8px; }
.breadcrumb {
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.breadcrumb a { text-decoration: none; color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--primary); }

/* ---------- Section scaffolding ---------- */
section { padding: 64px 0; }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(26px, 3.2vw, 34px); margin-top: 12px; }
.section-head p.section-lead { color: var(--ink-soft); font-size: 16.5px; max-width: 60ch; margin: 14px 0 0; }
.rule-top { border-top: 1px solid var(--line); }
.section-tight { padding-top: 8px; }

/* ---------- Prose (extended copy) ---------- */
.prose { max-width: 66ch; }
.prose p { color: var(--ink-soft); font-size: 16.5px; margin: 0 0 16px; }
.prose h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 10px;
}
.prose ul { margin: 0 0 16px; padding-left: 18px; color: var(--ink-soft); font-size: 16px; }
.prose li { margin-bottom: 7px; }
.two-col-prose { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 48px; }

/* ---------- Automation forms (stacked, alternating icon side) ---------- */
.automation-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.automation-row:first-child { border-top: none; padding-top: 0; }
.automation-row.reverse { flex-direction: row-reverse; }
.automation-icon {
  flex-shrink: 0;
  width: 136px;
  height: 136px;
  border-radius: 24px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.automation-icon svg { width: 68px; height: 68px; color: var(--primary); }
.automation-text { flex: 1; max-width: 66ch; }
.automation-text h3 { font-family: var(--font-body); font-weight: 600; font-size: 18px; color: var(--ink); margin: 0 0 10px; }
.automation-text p { color: var(--ink-soft); font-size: 16px; margin: 0 0 14px; }
.automation-text ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: 15px; }
.automation-text li { margin-bottom: 7px; }

/* ---------- Hero pillars (home) ---------- */
.pillar-list { display: flex; flex-direction: column; }
.pillar-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 20px;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}
.pillar-row:first-child { border-top: none; }
.pillar-row:hover { background: var(--surface-2); }
.pillar-row:hover .pillar-icon { color: var(--accent); }
.pillar-icon { width: 34px; height: 34px; flex-shrink: 0; color: var(--primary); transition: color 0.15s ease; }
.pillar-row h3 { font-family: var(--font-body); font-size: 16.5px; font-weight: 600; margin-bottom: 3px; }
.pillar-row p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* ---------- Service overview cards (home) ---------- */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px 26px 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.service-card .icon { width: 36px; height: 36px; color: var(--primary); margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-body); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; flex-grow: 1; }
.service-card .card-link { font-size: 14.5px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.service-card .card-link svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* ---------- Stat row (home, animated counters) ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat {
  padding: 30px 24px;
  border-left: 1px solid var(--line);
  text-align: left;
}
.stat:first-child { border-left: none; }
.stat .stat-value {
  font-family: var(--font-body);
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}
.stat .stat-label { color: var(--ink-soft); font-size: 14.5px; max-width: 30ch; }

/* ---------- Approach ---------- */
.approach-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.approach-grid p { color: var(--ink-soft); font-size: 16.5px; max-width: 44ch; }
.traits { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 0; }
.trait { padding: 4px 22px; border-left: 1px solid var(--line); }
.trait:nth-child(odd) { padding-left: 0; border-left: none; }
.trait:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 20px; }
.trait .eyebrow { display: block; margin-bottom: 10px; }
.trait p { font-size: 15px; color: var(--ink-soft); margin: 0; max-width: none; }

/* ---------- Feature grid (static, non-link cards) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 22px 22px 20px; }
.feature-card .icon { width: 30px; height: 30px; color: var(--primary); margin-bottom: 14px; }
.feature-card h3 { font-family: var(--font-body); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* ---------- Pill switcher (metric / toggle) ---------- */
.pill-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pill-btn {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: none;
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.pill-btn:hover { color: var(--ink); }
.pill-btn.active { background: var(--primary); color: var(--primary-ink); }

/* ---------- Demo / interactive panel ---------- */
.demo-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 32px;
}
.demo-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.demo-copy p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 14px; }
.demo-caption { font-size: 13px; color: var(--ink-mute); margin-top: 14px; }

/* ---------- Chart chrome ---------- */
.chart-card { position: relative; }
.chart-card svg { overflow: visible; }
.chart-legend { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 4px; font-size: 13.5px; color: var(--ink-soft); }
.chart-legend .key { display: inline-flex; align-items: center; gap: 7px; }
.chart-legend .swatch { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.chart-value-label { font-family: var(--font-body); font-weight: 600; font-size: 13.5px; fill: var(--ink); }
.chart-axis-label { font-family: var(--font-body); font-size: 12px; fill: var(--ink-mute); }
.chart-cat-label { font-family: var(--font-body); font-size: 13px; fill: var(--ink-soft); }
.chart-bar { cursor: pointer; transition: opacity 0.12s ease; }
.chart-bar:hover, .chart-bar:focus { opacity: 0.82; }
.chart-bar:focus { outline: none; }
.chart-point { cursor: pointer; }

.chart-tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  line-height: 1.4;
  padding: 8px 11px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transform: translate(-50%, calc(-100% - 12px));
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.1s ease;
  z-index: 5;
}
.chart-tooltip.visible { opacity: 1; }
.chart-tooltip.below { transform: translate(-50%, 12px); }
.chart-tooltip strong { font-weight: 700; }
.chart-tooltip .tt-series { color: color-mix(in srgb, var(--bg) 70%, transparent); }

/* ---------- Slider calculator ---------- */
.slider-row { display: flex; align-items: center; gap: 18px; margin: 22px 0 8px; }
.slider-row input[type="range"] {
  flex: 1;
  accent-color: var(--primary);
  height: 4px;
}
.slider-readout {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  min-width: 9ch;
  text-align: right;
}
.result-figure {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 46px);
  color: var(--primary);
  line-height: 1;
  margin: 4px 0 6px;
}
.result-label { color: var(--ink-soft); font-size: 15px; margin: 0 0 22px; }

/* ---------- Generic savings table ---------- */
.savings-table-wrap { overflow-x: auto; }
.savings-table { width: 100%; border-collapse: collapse; margin: 4px 0 8px; }
.savings-table th, .savings-table td { text-align: left; padding: 14px 18px 14px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; color: var(--ink-soft); white-space: nowrap; }
.savings-table thead th {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
}
.savings-table tbody th { color: var(--ink); font-weight: 600; font-family: var(--font-body); }
.savings-table td.figure { font-weight: 700; color: var(--primary); font-size: 16px; }

/* ---------- FAQ (native details/summary) ---------- */
.faq-list { max-width: 74ch; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:first-child { border-top: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 22px; max-width: 66ch; }

/* ---------- Cross-sell ---------- */
.crosssell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.crosssell-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.15s ease;
}
.crosssell-card:hover { border-color: var(--primary); }
.crosssell-card .eyebrow { display: block; margin-bottom: 8px; }
.crosssell-card h3 { font-family: var(--font-body); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.crosssell-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* ---------- Contact band ---------- */
.contact-band { background: var(--primary); color: var(--primary-ink); }
.contact-band .eyebrow { color: color-mix(in srgb, var(--primary-ink) 70%, var(--accent) 55%); }
.contact-inner {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 58px 0;
}
.contact-inner h2 { font-size: clamp(24px, 3vw, 32px); max-width: 20ch; margin: 10px 0 0; }
.contact-inner .contact-copy { max-width: 40ch; }
.contact-inner p.lead { color: color-mix(in srgb, var(--primary-ink) 82%, transparent); margin: 14px 0 0; font-size: 16px; }

/* ---------- Footer ---------- */
footer { padding: 26px 0 40px; }
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-soft);
  padding-top: 22px;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 6px 0 14px;
  }
  nav.nav-open { display: flex; }
  nav a.navlink {
    padding: 14px 28px;
    border-top: 1px solid var(--line);
  }
  nav a.navlink:first-child { border-top: none; }
  nav .btn { margin: 14px 28px 4px; justify-content: center; }
  nav .lang-switch { margin: 4px 28px 0; }
  nav .lang-switch a { flex: 1; text-align: center; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 420px; }
  .approach-grid { grid-template-columns: 1fr; }
  .traits { grid-template-columns: 1fr; }
  .trait { border-left: none; border-top: 1px solid var(--line); padding: 20px 0; }
  .trait:first-child { border-top: none; padding-top: 0; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
  .service-cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); padding: 24px 4px; }
  .stat:first-child { border-top: none; padding-top: 4px; }
  .two-col-prose { grid-template-columns: 1fr; gap: 8px; }
  .demo-grid { grid-template-columns: 1fr; gap: 26px; }
  .crosssell-grid { grid-template-columns: 1fr; }
  .demo-panel { padding: 22px; }
  .automation-row, .automation-row.reverse { flex-direction: column; }
  .automation-icon { margin-bottom: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-art, .hero-copy { animation: none; opacity: 1; transform: none; }
  .btn-accent:hover { transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
