:root {
  --color-muted: var(--color-neutral-700);
  --color-accent-dark: var(--color-accent-700);
  --color-dark: var(--color-text);
  --font: var(--font-body);
  --shell: 1200px;
  --pad: clamp(20px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--color-bg); color: var(--color-text); font: 400 15px/1.58 var(--font); -webkit-font-smoothing: antialiased; }
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 800; letter-spacing: -.035em; line-height: 1.03; }
h1 { max-width: 13ch; margin-bottom: 28px; font-size: clamp(43px, 5.3vw, 72px); }
h2 { margin-bottom: 22px; font-size: clamp(33px, 4vw, 50px); }
h3 { font-size: 20px; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
::selection { background: var(--color-accent); color: #fff; }
.shell { width: min(var(--shell), calc(100% - (var(--pad) * 2))); margin-inline: auto; }
.narrow { max-width: 900px; }
.section { padding-block: clamp(72px, 9vw, 116px); }
.section-border { border-bottom: 2px solid var(--color-divider); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 200; top: 10px; left: 10px; transform: translateY(-150%); background: var(--color-dark); color: #fff; padding: 10px 14px; }
.skip-link:focus { transform: none; }
.eyebrow { margin: 0 0 18px; color: var(--color-accent-dark); font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow i { color: var(--color-accent); font-style: normal; }
.lead, .section-intro, .section-heading > p:last-child { max-width: 62ch; color: var(--color-muted); font-size: clamp(16px, 1.5vw, 18px); }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2 { max-width: 21ch; }
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 28px; max-width: none; }
.heading-row > div { max-width: 750px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: flex-start; border: 2px solid transparent; padding: 12px 20px; cursor: pointer; font-size: 14px; font-weight: 600; text-align: left; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.button-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }
.button-secondary { background: transparent; border-color: currentColor; }
.button-secondary:hover { color: var(--color-accent-dark); }
.button-text { padding-inline: 8px; background: transparent; border: 0; text-decoration: underline; text-underline-offset: 4px; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.text-link { display: inline-block; color: var(--color-accent-dark); font-weight: 600; border-bottom: 2px solid var(--color-accent); padding-bottom: 2px; }
.text-link:hover { color: var(--color-accent); }

/* Header and navigation */
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(243, 242, 242, .95); border-bottom: 2px solid var(--color-divider); backdrop-filter: blur(12px); }
.header-inner { display: flex; min-height: 76px; align-items: center; gap: 20px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; font-size: 18px; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { width: 27px; height: 27px; }
.desktop-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; font-size: 13px; font-weight: 600; }
.desktop-nav > a, .nav-trigger, .header-contact { white-space: nowrap; }
.desktop-nav a:hover, .header-contact:hover, .nav-trigger:hover { color: var(--color-accent); }
.nav-dropdown { position: relative; }
.nav-trigger { display: flex; gap: 5px; align-items: center; border: 0; padding: 12px 0; background: none; cursor: pointer; font-weight: 600; }
.mega-menu { position: absolute; top: calc(100% + 14px); left: -150px; display: grid; width: min(850px, 80vw); grid-template-columns: repeat(4, 1fr); gap: 26px; padding: 26px; visibility: hidden; background: var(--color-bg); border: 2px solid var(--color-divider); opacity: 0; transform: translateY(-8px); transition: .18s ease; }
.mega-menu::before { position: absolute; top: -18px; right: 0; left: 0; height: 18px; content: ""; }
.mega-menu div { display: flex; flex-direction: column; gap: 8px; }
.mega-menu strong { margin-bottom: 5px; color: var(--color-accent-dark); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.mega-menu a { font-size: 13px; font-weight: 400; }
.mega-footer { grid-column: 1 / -1; border-top: 2px solid var(--color-divider); padding-top: 16px; color: var(--color-accent-dark); font-weight: 600 !important; }
.nav-dropdown:hover .mega-menu, .nav-dropdown:focus-within .mega-menu, .nav-dropdown.menu-open .mega-menu { visibility: visible; opacity: 1; transform: none; }
.compact-dropdown .mega-menu { left: -30px; width: 270px; grid-template-columns: 1fr; gap: 10px; }
.sector-menu > a { padding: 3px 0; }
.header-contact { font-size: 13px; font-weight: 600; }
.header-cta { min-height: 44px; padding: 9px 14px; font-size: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 2px solid var(--color-text); background: transparent; }
.menu-toggle span { width: 20px; height: 2px; background: currentColor; }
.drawer-backdrop { position: fixed; z-index: 109; inset: 0; background: rgba(32,30,29,.58); }
.mobile-drawer { position: fixed; z-index: 110; top: 0; right: 0; bottom: 0; display: flex; width: min(430px, 94vw); flex-direction: column; padding: 24px; overflow-y: auto; background: var(--color-bg); transform: translateX(105%); transition: transform .25s ease; }
.mobile-drawer.is-open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--color-divider); padding-bottom: 18px; }
.drawer-close { border: 0; background: none; cursor: pointer; font-size: 34px; line-height: 1; }
.mobile-drawer nav { display: flex; flex-direction: column; }
.mobile-drawer nav > a, .mobile-drawer summary { display: block; border-bottom: 1px solid var(--color-divider); padding: 17px 0; cursor: pointer; font-size: 17px; font-weight: 600; list-style: none; }
.mobile-drawer summary::after { float: right; content: "+"; color: var(--color-accent); }
.mobile-drawer details[open] summary::after { content: "−"; }
.drawer-group { display: flex; flex-direction: column; gap: 10px; padding: 14px 16px 22px; border-bottom: 1px solid var(--color-divider); }
.drawer-group strong { margin-top: 10px; color: var(--color-accent-dark); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.drawer-bottom { display: flex; flex-direction: column; gap: 14px; margin-top: auto; padding-top: 26px; }
.drawer-bottom span { color: var(--color-muted); font-size: 12px; }

/* Hero */
.hero-grid { display: grid; grid-template-columns: 55fr 45fr; }
.hero-copy { display: flex; min-height: 690px; flex-direction: column; justify-content: center; border-right: 2px solid var(--color-divider); padding: 82px clamp(32px, 5vw, 72px) 82px 0; }
.hero-copy .lead { max-width: 52ch; margin-bottom: 34px; }
.trust-note { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 28px 0 0; color: var(--color-muted); font-size: 12px; }
.trust-note span:not(:first-child)::before { margin-right: 22px; color: var(--color-accent); content: "•"; }
.hero-media { position: relative; min-height: 610px; margin: 40px 0 40px 46px; overflow: hidden; border: 2px solid var(--color-divider); background: #dedbd9; }
.hero-media::after { position: absolute; top: 0; right: 0; width: 12px; height: 96px; background: var(--color-accent); content: ""; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.hero-media figcaption { position: absolute; right: 24px; bottom: 24px; left: 24px; display: grid; gap: 6px; max-width: 330px; padding: 18px 20px; background: var(--color-bg); border: 2px solid var(--color-text); }
.hero-media figcaption span { color: var(--color-accent-dark); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.hero-media figcaption strong { max-width: 24ch; font-size: 15px; line-height: 1.25; }

/* Proof and cards */
.proof-strip { padding: 32px 0; }
.proof-strip .shell { display: grid; grid-template-columns: 1.1fr 2.2fr; align-items: center; gap: 36px; }
.proof-strip p { margin: 0; color: var(--color-muted); font-size: 13px; }
.proof-strip ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.proof-strip li { border: 2px solid var(--color-divider); padding: 8px 12px; font-size: 12px; font-weight: 600; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; background: var(--color-divider); border: 2px solid var(--color-divider); }
.service-card { grid-column: span 2; display: flex; min-height: 260px; flex-direction: column; gap: 14px; padding: 28px; background: var(--color-bg); transition: background .2s, color .2s; }
.service-card:hover { background: var(--color-dark); color: #fff; }
.service-card p { color: var(--color-muted); font-size: 14px; }
.service-card:hover p { color: #cdc8c5; }
.service-card > span:last-child { margin-top: auto; color: var(--color-accent-dark); font-size: 12px; font-weight: 600; }
.service-card:hover > span:last-child { color: #ff7b64; }
.service-icon { width: 32px; height: 32px; fill: none; stroke: var(--color-accent); stroke-width: 1.75; stroke-linecap: square; stroke-linejoin: miter; }
.wide-card { grid-column: span 3; }

/* Why */
.section-dark { background: var(--color-dark); color: #fff; }
.section-dark .eyebrow { color: #ff7058; }
.why-intro { display: grid; grid-template-columns: 1fr 1.4fr; gap: 30px 70px; align-items: end; margin-bottom: 56px; }
.why-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -12px; }
.why-intro h2 { margin: 0; }
.why-intro > p:last-child { margin: 0; color: #bcb7b4; font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #5f5956; border-left: 1px solid #5f5956; }
.feature-grid article { min-height: 255px; border-right: 1px solid #5f5956; border-bottom: 1px solid #5f5956; padding: 28px; }
.feature-grid article > span { display: block; margin-bottom: 30px; color: #ff7058; font-size: 12px; font-weight: 600; }
.feature-grid h3 { max-width: 22ch; }
.feature-grid p { margin: 0; color: #bcb7b4; font-size: 13px; }

/* Process and sectors */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 2px solid var(--color-divider); border-left: 2px solid var(--color-divider); list-style: none; counter-reset: step; }
.process-grid li { position: relative; min-height: 220px; border-right: 2px solid var(--color-divider); border-bottom: 2px solid var(--color-divider); padding: 30px; }
.process-grid li > span { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; color: var(--color-accent); font-size: 13px; font-weight: 800; }
.process-grid li > span::after { height: 2px; flex: 1; background: var(--color-divider); content: ""; }
.process-grid p { margin: 0; color: var(--color-muted); font-size: 14px; }
.industries-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.industries-layout > div:first-child { align-self: start; }
.industry-copy { border-top: 2px solid var(--color-divider); }
.industry-copy article { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 20px 0; border-bottom: 2px solid var(--color-divider); }
.industry-copy h3, .industry-copy p { margin: 0; }
.industry-copy h3 { font-size: 17px; }
.industry-copy p { color: var(--color-muted); font-size: 13px; }
.industry-media { grid-column: 1 / -1; display: grid; height: 470px; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; margin: 10px 0 0; }
.industry-media > div { position: relative; overflow: hidden; background-color: #aaa4a0; }
.industry-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); transition: transform .3s ease; }
.industry-media > div:hover img { transform: scale(1.015); }
.industry-media span { position: absolute; z-index: 2; right: 12px; bottom: 12px; background: var(--color-bg); padding: 5px 9px; font-size: 10px; font-weight: 600; text-transform: uppercase; }
.industry-main { grid-row: 1 / 3; }
.industry-main img { object-position: 58% center; }
.industry-auto img { object-position: center 62%; }
.industry-food img { object-position: center 63%; }
.industry-local img { object-position: center 58%; }
.industry-local { grid-column: 2 / 4; }

/* Integrated example */
.example-section { background: #e7e4e2; }
.example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.system-diagram { margin: 0; border: 2px solid var(--color-divider); background: var(--color-bg); }
.system-diagram ol { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; list-style: none; }
.system-diagram li { position: relative; display: flex; min-height: 100px; align-items: center; gap: 12px; border-right: 2px solid var(--color-divider); border-bottom: 2px solid var(--color-divider); padding: 18px; font-weight: 600; }
.system-diagram li::after { position: absolute; z-index: 1; right: -12px; width: 22px; height: 22px; background: var(--color-accent); color: white; clip-path: polygon(0 0,100% 50%,0 100%); content: ""; }
.system-diagram li:nth-child(2n)::after, .system-diagram li:last-child::after { display: none; }
.system-diagram li span { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; border: 2px solid var(--color-accent); color: var(--color-accent); font-size: 11px; }
.system-diagram figcaption { padding: 16px 20px; color: var(--color-muted); font-size: 12px; }

/* Case studies, resources, FAQ */
.empty-state { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; border: 2px solid var(--color-divider); padding: 36px; }
.empty-state > span { color: var(--color-accent); font-size: 44px; }
.empty-state h3, .empty-state p { margin: 0; }
.empty-state p { color: var(--color-muted); }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resource-card { border: 2px solid var(--color-divider); background: var(--color-bg); }
.resource-card > div:last-child { display: flex; min-height: 310px; flex-direction: column; padding: 24px; }
.resource-card > div > span { margin-bottom: 14px; color: var(--color-accent-dark); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.resource-card h3 { font-size: 23px; }
.resource-card p { color: var(--color-muted); font-size: 13px; }
.resource-card small { color: var(--color-muted); font-size: 10px; }
.resource-card a { margin-top: auto; padding-top: 22px; color: var(--color-accent-dark); font-size: 12px; font-weight: 600; }
.resource-visual { position: relative; height: 190px; border-bottom: 2px solid var(--color-divider); background-color: var(--color-neutral-300); }
.resource-visual::before, .resource-visual::after { position: absolute; content: ""; }
.chart-visual::before { right: 18%; bottom: 24%; left: 18%; height: 38%; border-bottom: 4px solid var(--color-text); border-left: 4px solid var(--color-accent); transform: skewY(-12deg); }
.chart-visual::after { right: 18%; bottom: 20%; width: 12px; height: 12px; background: var(--color-accent); }
.map-visual::before { top: 34%; left: 46%; width: 30px; height: 30px; border: 8px solid var(--color-accent); transform: rotate(45deg); }
.map-visual::after { right: 16%; bottom: 22%; left: 16%; height: 2px; background: var(--color-text); transform: rotate(-12deg); }
.nodes-visual::before { top: 28%; left: 46%; width: 22px; height: 22px; background: var(--color-accent); box-shadow: -82px 54px 0 var(--color-text), 84px 58px 0 var(--color-text); }
.nodes-visual::after { top: 54%; right: 19%; left: 19%; height: 2px; background: var(--color-text); }
.faq-list { margin-bottom: 30px; border-top: 2px solid var(--color-divider); }
.faq-list details { border-bottom: 2px solid var(--color-divider); }
.faq-list summary { position: relative; cursor: pointer; padding: 23px 45px 23px 0; font-size: 18px; font-weight: 600; list-style: none; }
.faq-list summary::after { position: absolute; top: 20px; right: 4px; color: var(--color-accent); content: "+"; font-size: 25px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 70ch; margin: 0 0 25px; color: var(--color-muted); }

/* Form */
.lead-section { background: var(--color-dark); color: #fff; }
.lead-section .eyebrow { color: #ff7058; }
.lead-section .section-intro { color: #c1bcba; }
.lead-section .text-link { color: #fff; }
.lead-grid { display: grid; grid-template-columns: 40fr 60fr; gap: 72px; align-items: start; }
.lead-form { display: grid; gap: 19px; padding: clamp(24px,4vw,42px); background: var(--color-bg); color: var(--color-text); }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.field { display: grid; gap: 7px; }
.field label { font-size: 12px; font-weight: 600; }
.field label small { color: var(--color-muted); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; border: 2px solid var(--color-divider); border-radius: 0; padding: 12px 13px; background: transparent; color: var(--color-text); }
.field textarea { resize: vertical; }
.contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; min-width: 0; margin: 0; border: 0; padding: 0; }
.contact-fields legend { grid-column: 1 / -1; margin-bottom: -5px; padding: 0; font-size: 12px; font-weight: 600; }
.contact-fields legend small { color: var(--color-muted); font-weight: 400; }
.contact-error { grid-column: 1 / -1; }
[aria-invalid="true"] { border-color: var(--color-accent) !important; }
.field-error { color: var(--color-accent-dark); font-size: 11px; }
.field-help { color: var(--color-muted); font-size: 11px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 12px; }
.consent input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--color-accent); }
.consent a { text-decoration: underline; text-underline-offset: 3px; }
.lead-form .button { justify-self: start; }
.lead-form .button:disabled { cursor: wait; opacity: .65; }
.form-helper { margin: -6px 0 0; color: var(--color-muted); font-size: 11px; }
.form-helper a { color: var(--color-accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.form-status { margin: 0; border-left: 3px solid var(--color-accent); padding: 10px 12px; background: #eeeae7; color: var(--color-accent-dark); font-size: 13px; outline: 0; }
.form-status-success { border-left-color: #327a46; background: #e8f2e9; color: #235c34; }
.form-status-error { border-left-color: var(--color-accent); background: #f9e8e4; color: #8f2d20; }

/* Footer and privacy controls */
.site-footer { border-top: 2px solid var(--color-divider); padding: 70px 0 34px; }
.footer-intro { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; padding-bottom: 42px; border-bottom: 2px solid var(--color-divider); }
.footer-intro p { max-width: 68ch; margin: 0; color: var(--color-muted); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .9fr .9fr 1.25fr; gap: 32px; padding: 42px 0; }
.footer-grid > div { display: flex; flex-direction: column; align-items: start; gap: 8px; }
.footer-grid h2 { margin: 0 0 10px; font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.footer-grid a, .footer-grid p { margin: 0; color: var(--color-muted); font-size: 12px; }
.footer-grid a:hover { color: var(--color-accent); }
.footer-bottom { display: flex; align-items: start; justify-content: space-between; gap: 28px; border-top: 2px solid var(--color-divider); padding-top: 28px; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-bottom a, .footer-bottom button, .footer-bottom p { margin: 0; color: var(--color-muted); font-size: 10px; }
.footer-bottom button { border: 0; padding: 0; background: none; cursor: pointer; text-decoration: underline; }
.footer-bottom p { max-width: 420px; text-align: right; }
.cookie-banner { position: fixed; z-index: 150; right: 20px; bottom: 20px; left: 20px; display: grid; max-width: 1160px; grid-template-columns: 1fr auto; gap: 22px; align-items: center; margin: auto; padding: 20px; background: var(--color-bg); border: 2px solid var(--color-text); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 12px; }
.cookie-banner p a { text-decoration: underline; }
.cookie-banner > div { display: flex; gap: 8px; }
.cookie-banner .button { min-height: 43px; font-size: 11px; }
.cookie-dialog { width: min(560px, calc(100% - 32px)); border: 2px solid var(--color-text); border-radius: 0; padding: 0; background: var(--color-bg); color: var(--color-text); }
.cookie-dialog::backdrop { background: rgba(32,30,29,.62); }
.cookie-dialog form { display: grid; gap: 16px; padding: 24px; }
.cookie-dialog header { display: flex; align-items: center; justify-content: space-between; }
.cookie-dialog h2 { margin: 0; font-size: 28px; }
.cookie-dialog header button { border: 0; background: none; font-size: 28px; }
.cookie-dialog > form > label { display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--color-divider); padding-top: 14px; }
.cookie-dialog label span, .cookie-dialog label small { display: block; }
.cookie-dialog label small { color: var(--color-muted); }
.cookie-dialog input { width: 20px; height: 20px; accent-color: var(--color-accent); }
.mobile-sticky-cta { position: fixed; z-index: 90; right: 14px; bottom: 14px; left: 14px; display: none; align-items: stretch; background: var(--color-accent); }
.mobile-sticky-cta[hidden] { display: none; }
.mobile-sticky-cta a { flex: 1; padding: 14px; color: #fff; font-weight: 600; text-align: left; }
.mobile-sticky-cta button { width: 45px; border: 0; border-right: 1px solid rgba(255,255,255,.4); background: none; color: #fff; font-size: 22px; }

@media (max-width: 1120px) {
  .desktop-nav, .header-contact, .header-cta { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .service-card { grid-column: span 3; }
  .wide-card { grid-column: span 3; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 840px) {
  :root { --pad: 22px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; border-right: 0; padding: 70px 0 42px; }
  .hero-media { min-height: 540px; margin: 0 0 46px; }
  .proof-strip .shell { grid-template-columns: 1fr; gap: 18px; }
  .proof-strip ul { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .proof-strip li { flex: 0 0 auto; }
  .feature-grid, .process-grid, .resource-grid { grid-template-columns: 1fr 1fr; }
  .why-intro { grid-template-columns: 1fr; gap: 20px; }
  .why-intro .eyebrow { grid-column: auto; }
  .industries-layout, .example-grid, .lead-grid { grid-template-columns: 1fr; }
  .industry-media { height: 390px; }
  .lead-grid { gap: 40px; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner > div { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-intro { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(39px, 12vw, 54px); }
  h2 { font-size: clamp(31px, 9vw, 42px); }
  .section { padding-block: 68px; }
  .header-inner { min-height: 66px; }
  .hero-copy .button-row { align-items: flex-start; flex-direction: column; }
  .hero-copy .button-primary { width: 100%; }
  .hero-copy .button-secondary { min-height: auto; border: 0; padding: 2px 0; color: var(--color-accent-dark); text-decoration: underline; text-underline-offset: 4px; }
  .trust-note { flex-direction: column; gap: 4px; }
  .trust-note span:not(:first-child)::before { margin-right: 8px; }
  .hero-media { min-height: 455px; }
  .hero-media img { object-position: 50% 63%; }
  .hero-media figcaption { right: 14px; bottom: 14px; left: 14px; max-width: 290px; padding: 15px 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .wide-card { grid-column: auto; min-height: 220px; }
  .feature-grid, .process-grid, .resource-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: auto; }
  .process-grid li { min-height: auto; }
  .heading-row { align-items: start; flex-direction: column; }
  .industry-copy article { grid-template-columns: 1fr; gap: 5px; }
  .industry-media { height: 470px; grid-template-columns: 1fr 1fr; grid-template-rows: 2fr 1fr 1fr; }
  .industry-main { grid-column: 1 / -1; grid-row: auto; }
  .industry-local { grid-column: 1 / -1; }
  .system-diagram ol { grid-template-columns: 1fr; }
  .system-diagram li { min-height: 78px; border-right: 0; }
  .system-diagram li::after { right: auto; bottom: -11px; left: 28px; transform: rotate(90deg); }
  .system-diagram li:nth-child(2n)::after { display: block; }
  .system-diagram li:last-child::after { display: none; }
  .empty-state { grid-template-columns: 1fr; padding: 28px; }
  .resource-grid { gap: 14px; }
  .resource-card { display: grid; grid-template-columns: 105px 1fr; }
  .resource-visual { height: 100%; min-height: 230px; border-right: 2px solid var(--color-divider); border-bottom: 0; }
  .resource-card > div:last-child { min-height: 230px; padding: 18px; }
  .resource-card h3 { font-size: 18px; }
  .resource-card p { display: none; }
  .faq-section .section-heading { margin-bottom: 24px; }
  .faq-list summary { font-size: 16px; }
  .lead-form { margin-inline: calc(var(--pad) * -1); border-right: 0; border-left: 0; }
  .contact-fields { grid-template-columns: 1fr; }
  .contact-fields legend, .contact-error { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom p { text-align: left; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; }
  .cookie-banner > div { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-banner .button-text { grid-column: 1 / -1; }
  .mobile-sticky-cta:not([hidden]) { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
