/* Bergmann Facility Clear Route system */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --ink: #0d2034;
  --ink-2: #24394d;
  --text: #334b60;
  --muted: #64788a;
  --line: #d9e2e9;
  --line-strong: #b9c8d4;
  --canvas: #f7f9fb;
  --surface: #ffffff;
  --ice: #eef6fb;
  --ice-2: #e2f0f8;
  --action: #176fd1;
  --action-dark: #0c58ad;
  --focus: #0d63bf;
  --danger: #9f2d22;
  --shell: 1360px;
  --readable: 66ch;
  --header-height: 78px;
  --section-space: clamp(86px, 9vw, 144px);
  --radius-small: 8px;
  --radius-medium: 16px;
  --button-radius: 3px 16px 16px 3px;
  --button-radius-compact: 3px 13px 13px 3px;
  --shadow-soft: 0 24px 70px rgba(16, 42, 67, .12);
  --ease: cubic-bezier(.2, .78, .2, 1);
  --z-header: 20;
  --z-menu: 30;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Segoe UI Variable Text", "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 690;
  letter-spacing: -.045em;
  line-height: .98;
  text-wrap: balance;
  hyphens: none;
}
p { text-wrap: pretty; }
::selection { color: var(--ink); background: #b9dcff; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: calc(var(--z-menu) + 2);
  top: -100px;
  left: 16px;
  padding: 12px 18px;
  color: var(--surface);
  background: var(--ink);
  border-radius: var(--radius-small);
}
.skip-link:focus { top: 16px; }

.kicker,
.micro-label {
  color: var(--action-dark);
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.kicker { display: block; }
.kicker > span { display: none; }

/* Brand lockup: imagegen-created symbol + live, reliably rendered type. */
.brand { min-width: 0; display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand__symbol {
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand__symbol img { width: 100%; max-width: none; }
.brand__name { min-width: 0; display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.brand__name strong { color: var(--ink); font-size: 1.03rem; font-weight: 800; letter-spacing: .065em; text-transform: uppercase; }
.brand__name small { margin-top: 5px; color: var(--action-dark); font-size: .58rem; font-weight: 750; letter-spacing: .145em; text-transform: uppercase; }

/* Actions */
.button {
  --button-bg: var(--ink);
  --button-fg: #fff;
  --button-accent: var(--action);
  --button-accent-fg: #fff;
  --button-border: var(--ink);
  --button-shadow: none;
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  padding: 13px 13px 13px 21px;
  color: var(--button-fg);
  background: var(--button-bg);
  border: 1px solid var(--button-border);
  border-radius: var(--button-radius);
  box-shadow: var(--button-shadow);
  font-size: .92rem;
  font-weight: 730;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px -1px -1px auto;
  width: 58px;
  background: var(--button-accent);
  clip-path: polygon(13px 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  transition: clip-path 220ms var(--ease), background-color 180ms ease;
}
.button > [aria-hidden="true"] {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-left: auto;
  color: var(--button-accent-fg);
  font-size: 1.05rem;
  transition: transform 220ms var(--ease);
}
.button:hover { transform: translateY(-1px); }
.button:hover::before,
.button:focus-visible::before { clip-path: polygon(7px 0, 100% 0, 100% 100%, 0 100%); }
.button:hover > [aria-hidden="true"],
.button:focus-visible > [aria-hidden="true"] { transform: translate(2px, -1px); }
.button:active { transform: translateY(1px); box-shadow: none; }
.button:disabled,
.button[aria-disabled="true"] { opacity: .5; cursor: not-allowed; box-shadow: none; transform: none; }
.button:disabled::before,
.button[aria-disabled="true"]::before { clip-path: polygon(13px 0, 100% 0, 100% 100%, 0 100%); }
.button--primary {
  --button-bg: var(--ink);
  --button-fg: #fff;
  --button-accent: var(--action);
  --button-border: var(--ink);
}
.button--primary:hover,
.button--primary:focus-visible {
  --button-bg: #142d45;
  --button-accent: #2787e4;
  --button-border: #142d45;
  --button-shadow: 0 8px 18px rgba(13, 32, 52, .15);
}
.button--quiet {
  --button-bg: #fff;
  --button-fg: var(--ink);
  --button-accent: var(--ice-2);
  --button-accent-fg: var(--action-dark);
  --button-border: var(--line-strong);
  --button-shadow: none;
}
.button--quiet:hover,
.button--quiet:focus-visible {
  --button-bg: var(--ice);
  --button-accent: var(--action);
  --button-accent-fg: #fff;
  --button-border: var(--ink);
  --button-shadow: 0 7px 16px rgba(13, 32, 52, .09);
}
.text-link { display: inline-flex; align-items: center; gap: 16px; color: var(--ink); font-weight: 730; text-decoration: underline; text-decoration-color: var(--action); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.text-link > span { transition: transform 200ms var(--ease); }
.text-link:hover > span,
.text-link:focus-visible > span { transform: translateX(5px); }

/* Header */
.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, .985); box-shadow: 0 12px 34px rgba(21, 46, 69, .08); }
.nav { height: 100%; display: flex; align-items: center; gap: 28px; }
.nav > .brand { flex: 0 0 auto; }
.nav-links { height: 100%; margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav-links > a,
.nav-services > summary {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 13px;
  color: var(--ink-2);
  font-size: .84rem;
  font-weight: 690;
  list-style: none;
  cursor: pointer;
}
.nav-links > a:not(.nav-cta, .nav-phone)::after,
.nav-services > summary::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 2px;
  background: var(--action);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}
.nav-links > a:hover::after,
.nav-links > a:focus-visible::after,
.nav-services > summary:hover::after,
.nav-services[open] > summary::after { transform: scaleX(1); }
.nav-services { position: relative; height: 100%; display: flex; align-items: center; }
.nav-services > summary::-webkit-details-marker { display: none; }
.nav-services > summary svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform 180ms ease; }
.nav-services[open] > summary svg { transform: rotate(180deg); }
.services-dropdown {
  position: absolute;
  z-index: var(--z-menu);
  top: calc(100% - 1px);
  left: 0;
  width: 322px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius-medium) var(--radius-medium);
  box-shadow: 0 18px 46px rgba(15, 40, 62, .14);
}
.services-dropdown a { min-height: 58px; display: grid; grid-template-columns: 34px minmax(0, 1fr) 22px; align-items: center; gap: 8px; padding: 9px 12px; border-radius: var(--radius-small); }
.services-dropdown a:hover,
.services-dropdown a:focus-visible,
.services-dropdown a[aria-current="page"] { background: var(--ice); }
.services-dropdown a > span:first-child { color: var(--action-dark); font-size: .7rem; font-weight: 780; font-variant-numeric: tabular-nums; }
.services-dropdown a strong { color: var(--ink); font-size: .93rem; }
.services-dropdown a > span:last-child { justify-self: end; transition: transform 180ms var(--ease); }
.services-dropdown a:hover > span:last-child,
.services-dropdown a:focus-visible > span:last-child { transform: translate(2px, -2px); }
.nav-phone { min-width: 154px; flex-direction: column; align-items: flex-start !important; justify-content: center; gap: 1px !important; margin-left: 8px; padding-left: 18px !important; border-left: 1px solid var(--line); }
.nav-phone small { color: var(--muted); font-size: .61rem; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.nav-phone span { color: var(--ink); font-size: .8rem; }
.nav-cta {
  min-height: 46px !important;
  margin-left: 8px;
  padding: 9px 10px 9px 16px !important;
  gap: 14px !important;
  color: var(--button-fg) !important;
  background: var(--button-bg);
  border-color: var(--button-border);
  border-radius: var(--button-radius-compact);
}
.nav-cta { flex: 0 0 auto; }
.nav-cta::before { width: 48px; clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%); }
.nav-cta:hover::before,
.nav-cta:focus-visible::before { clip-path: polygon(5px 0, 100% 0, 100% 100%, 0 100%); }
.nav-cta > span { width: 25px; height: 24px; }
.menu-toggle {
  position: relative;
  z-index: calc(var(--z-menu) + 1);
  width: 48px;
  height: 48px;
  display: none;
  overflow: hidden;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--button-radius-compact);
  background: var(--surface);
  transition: background-color 180ms ease, border-color 180ms ease;
}
.menu-toggle::after { content: ""; position: absolute; top: -1px; right: -1px; width: 14px; height: 14px; background: var(--action); clip-path: polygon(100% 0, 100% 100%, 0 0); pointer-events: none; }
.menu-toggle:hover,
.menu-toggle:focus-visible { background: var(--ice); border-color: var(--ink); }
.menu-toggle span { width: 20px; height: 2px; display: block; margin: 5px auto; background: currentColor; transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Home hero: one-third solid dispatch panel, two-thirds visual proof. */
.home-hero { position: relative; isolation: isolate; overflow: hidden; padding: 0; background: var(--surface); border-bottom: 1px solid var(--line); }
.home-hero__grid {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - var(--header-height));
  margin-inline: 0;
  display: grid;
  grid-template-columns: minmax(350px, 1fr) minmax(0, 2fr);
  gap: 0;
  align-items: stretch;
}
.home-hero__grid.shell { width: 100%; max-width: none; margin-inline: 0; }
.hero-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(38px, 4vw, 62px) clamp(78px, 6vw, 102px) clamp(38px, 4vw, 62px) clamp(34px, 4vw, 58px);
  color: #d9e6ef;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - 72px) 0, 100% 100%, 0 100%);
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 76px;
  background: var(--action);
  clip-path: polygon(0 0, 5px 0, 100% 100%, calc(100% - 5px) 100%);
  pointer-events: none;
}
.hero-copy,
.hero-support { min-width: 0; }
.hero-panel .kicker { color: #a8d2fa; }
.hero-panel h1 { max-width: 10ch; margin-top: 22px; color: #fff; font-size: clamp(3.25rem, 4vw, 4.65rem); }
.hero-panel h1 em { color: #83c5ff; font-style: normal; }
.hero-lead { max-width: 35ch; margin-top: 25px; color: #d1dee8; font-size: clamp(.98rem, 1.08vw, 1.1rem); line-height: 1.58; }
.hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; margin-top: 31px; }
.hero-actions .button,
.hero-support > .button { width: 100%; justify-content: space-between; }
.hero-support { display: flex; flex-direction: column; margin-top: 10px; }
.hero-panel .button--primary {
  --button-bg: #fff;
  --button-fg: var(--ink);
  --button-accent: var(--action);
  --button-border: #fff;
  --button-shadow: 0 10px 28px rgba(3, 17, 30, .24);
}
.hero-panel .button--primary:hover,
.hero-panel .button--primary:focus-visible {
  --button-bg: #eaf4fb;
  --button-fg: var(--ink);
  --button-accent: #2c8eea;
  --button-border: #fff;
}
.hero-panel .button--quiet {
  --button-bg: rgba(255, 255, 255, .055);
  --button-fg: #fff;
  --button-accent: var(--action);
  --button-accent-fg: #fff;
  --button-border: rgba(255, 255, 255, .42);
  --button-shadow: none;
}
.hero-panel .button--quiet:hover,
.hero-panel .button--quiet:focus-visible {
  --button-bg: #fff;
  --button-fg: var(--ink);
  --button-accent: #2c8eea;
  --button-border: #fff;
  --button-shadow: 0 10px 28px rgba(3, 17, 30, .2);
}
.hero-panel :focus-visible { outline-color: #fff; }
.hero-facts { max-width: none; display: grid; grid-template-columns: 1fr; margin-top: 33px; border-top: 1px solid rgba(255, 255, 255, .24); }
.hero-facts div { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 8px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.hero-facts dt { color: #9fb2c1; font-size: .63rem; font-weight: 730; letter-spacing: .09em; text-transform: uppercase; }
.hero-facts dd { margin: 0; color: #fff; font-size: .78rem; font-weight: 700; text-align: right; white-space: nowrap; }

.comparison {
  --comparison-diagonal-inset: 36px;
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 100%;
  margin-left: -72px;
  overflow: hidden;
  background: #dbe7ee;
  border-radius: 0;
  box-shadow: none;
}
.comparison__header { position: absolute; z-index: 7; bottom: 36px; left: clamp(100px, 9vw, 142px); min-height: 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px 15px; background: #fff; border-radius: 8px; box-shadow: 0 10px 28px rgba(13, 32, 52, .16); pointer-events: none; }
.comparison__header > div { display: flex; flex-direction: column; gap: 5px; }
.comparison__header strong { color: var(--ink); font-size: 1.02rem; }
.comparison__instruction { color: var(--muted); font-size: .72rem; font-weight: 700; white-space: nowrap; }
.comparison__stage { --comparison-position: inherit; position: relative; isolation: isolate; width: 100%; height: 100%; min-height: 100%; overflow: hidden; background: #dbe7ee; touch-action: pan-y; }
.comparison__image { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 51% center; user-select: none; pointer-events: none; }
.comparison__image--before { z-index: 0; }
.comparison__image--after { z-index: 1; clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0); }
.comparison__range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: .001; cursor: ew-resize; }
.comparison__divider { position: absolute; z-index: 4; top: 0; bottom: 0; left: var(--comparison-divider-position, var(--comparison-position)); width: 2px; background: #fff; box-shadow: 0 0 0 1px rgba(13, 32, 52, .15); transform: translateX(-1px); pointer-events: none; }
.comparison__handle { position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; display: grid; place-items: center; color: var(--ink); background: #fff; border: 1px solid rgba(13, 32, 52, .18); border-radius: 50%; box-shadow: 0 8px 22px rgba(5, 27, 47, .22); transform: translate(-50%, -50%); transition: transform 160ms ease, box-shadow 160ms ease; }
.comparison__handle svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.comparison.is-dragging .comparison__handle { transform: translate(-50%, -50%) scale(.93); }
.comparison__range:focus-visible + .comparison__divider .comparison__handle { outline: 4px solid #fff; box-shadow: 0 0 0 7px var(--focus), 0 8px 22px rgba(5, 27, 47, .22); }
.comparison__label { position: absolute; z-index: 6; top: 20px; padding: 7px 10px; color: var(--ink); background: #fff; border-radius: 6px; font-size: .68rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
.comparison__label--after { left: clamp(100px, 9vw, 142px); }
.comparison__label--before { right: 20px; }
.comparison__note { display: none; align-items: center; gap: 10px; color: var(--muted); font-size: .72rem; }
.comparison__note span { color: var(--action-dark); font-weight: 800; font-variant-numeric: tabular-nums; }
[data-hero-enter] { animation: hero-enter 620ms var(--ease) both; }
.comparison[data-hero-enter] { animation-delay: 90ms; }
@keyframes hero-enter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Shared section rhythm */
.section-heading { max-width: 920px; margin-bottom: clamp(52px, 7vw, 88px); }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr); gap: clamp(54px, 9vw, 130px); align-items: end; }
.section-heading--split > * { min-width: 0; }
.section-heading h2 { max-width: 15ch; margin-top: 18px; font-size: clamp(3rem, 4.6vw, 5.1rem); }
.section-heading > p,
.section-heading--split > p { max-width: 48ch; color: var(--muted); font-size: 1.03rem; }

/* Service explorer */
.service-overview { padding-block: var(--section-space); background: var(--surface); }
.service-explorer { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr); gap: clamp(48px, 7vw, 104px); align-items: start; }
.service-preview { position: sticky; top: calc(var(--header-height) + 28px); }
.service-preview__frame { position: relative; aspect-ratio: 1.12; overflow: hidden; background: var(--ice); border-radius: var(--radius-medium); }
.service-preview__frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(13, 32, 52, .12); border-radius: inherit; pointer-events: none; }
.service-preview img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.03); transition: opacity 180ms ease, transform 620ms var(--ease); }
.service-preview.is-changing img { opacity: .18; transform: scale(1.018); }
.service-preview figcaption { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-top: 14px; }
.service-preview figcaption span { color: var(--muted); font-size: .68rem; font-weight: 730; letter-spacing: .09em; text-transform: uppercase; }
.service-preview figcaption strong { color: var(--ink); font-size: .85rem; }
.service-menu { border-top: 1px solid var(--line-strong); }
.service-item { position: relative; min-height: 133px; display: grid; grid-template-columns: 48px minmax(0, 1fr) 44px; align-items: center; gap: 18px; padding: 21px 12px; border-bottom: 1px solid var(--line); transition: background-color 180ms ease, padding 220ms var(--ease); }
.service-item::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--action); transform: scaleY(0); transform-origin: center; transition: transform 220ms var(--ease); }
.service-item:hover,
.service-item:focus-visible,
.service-item.is-active { padding-inline: 22px 14px; background: var(--ice); }
.service-item:hover::before,
.service-item:focus-visible::before,
.service-item.is-active::before { transform: scaleY(1); }
.service-item__number { color: var(--action-dark); font-size: .73rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.service-item__body { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.service-item__body strong { color: var(--ink); font-size: clamp(1.25rem, 1.9vw, 1.65rem); letter-spacing: -.025em; }
.service-item__body small { color: var(--muted); font-size: .86rem; line-height: 1.45; }
.service-item__arrow { justify-self: end; width: 38px; height: 38px; display: grid; place-items: center; color: var(--ink); border: 1px solid var(--line-strong); border-radius: 50%; transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 200ms var(--ease); }
.service-item:hover .service-item__arrow,
.service-item:focus-visible .service-item__arrow { color: #fff; background: var(--action-dark); border-color: var(--action-dark); transform: translate(2px, -2px); }
.service-item__thumb { display: none; }

/* Operations */
.operations { padding-block: var(--section-space); background: var(--ice); border-block: 1px solid #dce9f0; }
.operations__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: clamp(58px, 8vw, 120px); align-items: center; }
.operations__media { min-width: 0; grid-column: 1; grid-row: 1; }
.operations__copy { min-width: 0; grid-column: 2; grid-row: 1; }
.operations__media img { width: 100%; aspect-ratio: .98; object-fit: cover; object-position: 58% center; border-radius: var(--radius-medium); }
.operations__media figcaption { margin-top: 12px; color: var(--muted); font-size: .72rem; }
.operations__copy h2 { max-width: 11ch; margin-top: 18px; font-size: clamp(3rem, 4.5vw, 4.9rem); }
.operations__copy > p:not(.kicker) { max-width: 48ch; margin-top: 26px; color: var(--text); }
.operations__steps { margin: 38px 0 0; padding: 0; border-top: 1px solid var(--line-strong); }
.operations__steps li { min-height: 82px; display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 16px; border-bottom: 1px solid var(--line-strong); list-style: none; }
.operations__steps li > span { color: var(--action-dark); font-size: .7rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.operations__steps li > div { display: flex; flex-direction: column; gap: 2px; }
.operations__steps strong { color: var(--ink); font-size: .92rem; }
.operations__steps small { color: var(--muted); font-size: .8rem; }
.operations__copy .text-link { margin-top: 34px; }

/* Areas */
.areas { padding-block: var(--section-space); background: var(--surface); }
.area-list { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line-strong); }
.area-list a { min-height: 260px; display: grid; grid-template-columns: 1fr 34px; grid-template-rows: auto 1fr auto; gap: 12px; padding: 30px; border-right: 1px solid var(--line); transition: background-color 180ms ease; }
.area-list a:last-child { border-right: 0; }
.area-list a:hover,
.area-list a:focus-visible { background: var(--ice); }
.area-list__number { color: var(--action-dark); font-size: .72rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.area-list strong { grid-column: 1 / -1; align-self: end; color: var(--ink); font-size: clamp(2rem, 3.1vw, 3.1rem); font-weight: 680; letter-spacing: -.04em; line-height: 1; }
.area-list small { max-width: 29ch; color: var(--muted); font-size: .84rem; }
.area-list a > span:last-child { align-self: end; justify-self: end; color: var(--ink); font-size: 1.1rem; transition: transform 200ms var(--ease); }
.area-list a:hover > span:last-child,
.area-list a:focus-visible > span:last-child { transform: translateX(5px); }

/* Contact */
.contact-section { padding-block: var(--section-space); background: var(--ice); border-top: 1px solid #dce9f0; }
.contact-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(560px, 1.28fr); gap: clamp(64px, 9vw, 132px); align-items: start; }
.contact-copy { position: sticky; top: calc(var(--header-height) + 38px); }
.contact-copy h2 { max-width: 12ch; margin-top: 18px; font-size: clamp(3.1rem, 4.7vw, 5rem); }
.contact-copy > p:not(.kicker) { max-width: 42ch; margin-top: 25px; }
.direct-contact { margin-top: 42px; border-top: 1px solid var(--line-strong); }
.direct-contact a { min-height: 78px; display: grid; grid-template-columns: 1fr auto; align-content: center; padding-block: 13px; border-bottom: 1px solid var(--line-strong); }
.direct-contact small { color: var(--muted); font-size: .67rem; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.direct-contact strong { grid-column: 1; margin-top: 2px; color: var(--ink); font-size: .94rem; overflow-wrap: anywhere; }
.direct-contact a > span { grid-column: 2; grid-row: 1 / 3; align-self: center; transition: transform 180ms var(--ease); }
.direct-contact a:hover > span,
.direct-contact a:focus-visible > span { transform: translateX(5px); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; padding: clamp(28px, 4vw, 50px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-medium); box-shadow: 0 20px 56px rgba(20, 52, 77, .08); }
.form-field { min-width: 0; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 8px; color: var(--ink); font-size: .76rem; font-weight: 730; }
.form-field label span { color: var(--action-dark); }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; min-height: 54px; padding: 12px 14px; color: var(--ink); background: var(--canvas); border: 1px solid var(--line-strong); border-radius: var(--radius-small); }
.form-field textarea { min-height: 142px; resize: vertical; }
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: #8ca8bd; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--focus); outline: 3px solid rgba(13, 99, 191, .16); outline-offset: 0; background: #fff; }
.form-field input:user-invalid,
.form-field select:user-invalid { border-color: var(--danger); }
.form-field ::placeholder { color: #748797; }
.form-submit { grid-column: 1 / -1; justify-self: start; }
.form-note,
.contact-form__status { grid-column: 1 / -1; max-width: 65ch; color: var(--muted); font-size: .74rem; }
.contact-form__status:not(:empty) { color: var(--ink); font-weight: 700; }

/* Footer */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: .9fr 1.1fr; gap: 84px; padding-block: 64px; }
.footer-brand p { max-width: 32ch; margin-top: 18px; color: var(--muted); font-size: .9rem; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.footer-nav div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-nav strong { margin-bottom: 8px; color: var(--ink); font-size: .69rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-nav a { color: var(--muted); font-size: .86rem; }
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav a[aria-current="page"] { color: var(--ink); text-decoration: underline; text-decoration-color: var(--action); text-underline-offset: 4px; }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); background: var(--canvas); border-top: 1px solid var(--line); box-shadow: 0 0 0 100vmax var(--canvas); clip-path: inset(0 -100vmax); font-size: .73rem; }

/* Service pages */
.service-page { background: var(--surface); }
.service-hero { padding-block: clamp(54px, 6vw, 88px); background: var(--surface); border-bottom: 1px solid var(--line); }
.service-hero__grid { min-height: min(650px, calc(100svh - var(--header-height) - 108px)); display: grid; grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr); gap: clamp(58px, 8vw, 124px); align-items: center; }
.service-hero__copy { min-width: 0; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 46px; color: var(--muted); font-size: .76rem; }
.breadcrumb a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; }
.breadcrumb a:hover,
.breadcrumb a:focus-visible { color: var(--ink); text-decoration-color: var(--action); }
.service-hero h1 { max-width: 11ch; margin-top: 19px; font-size: clamp(3.9rem, 5.7vw, 6.2rem); overflow-wrap: normal; }
.service-hero__lead { max-width: 43ch; margin-top: 25px; color: var(--text); font-size: clamp(1rem, 1.2vw, 1.16rem); }
.service-hero .button { margin-top: 33px; }
.service-hero__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); }
.service-hero__facts div { min-width: 0; }
.service-hero__facts dt { color: var(--muted); font-size: .64rem; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.service-hero__facts dd { margin-top: 3px; color: var(--ink); font-size: .82rem; font-weight: 680; }
.service-hero__media { min-width: 0; }
.service-hero__media img { width: 100%; aspect-ratio: 1.18; object-fit: cover; border-radius: var(--radius-medium); }
.service-hero__media figcaption { margin-top: 12px; color: var(--muted); font-size: .7rem; }

.service-overview-section { padding-block: var(--section-space); background: var(--canvas); }
.service-overview__grid { display: grid; grid-template-columns: minmax(300px, .76fr) minmax(480px, 1.24fr); gap: clamp(64px, 10vw, 150px); align-items: start; }
.service-overview__intro h2,
.service-detail__copy h2,
.related-services h2 { max-width: 13ch; margin-top: 18px; font-size: clamp(2.9rem, 4.3vw, 4.7rem); }
.service-overview__intro > p:not(.kicker) { max-width: 44ch; margin-top: 23px; color: var(--muted); }
.scope-list { margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.scope-list li { min-height: 76px; display: grid; grid-template-columns: 52px minmax(0, 1fr); align-items: center; list-style: none; border-bottom: 1px solid var(--line); }
.scope-list span { color: var(--action-dark); font-size: .7rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.scope-list strong { color: var(--ink); font-size: .95rem; }

.service-detail-section { padding-block: var(--section-space); background: var(--surface); }
.service-detail { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: clamp(62px, 9vw, 132px); align-items: center; }
.service-detail__media img { width: 100%; aspect-ratio: 1.15; object-fit: cover; border-radius: var(--radius-medium); }
.service-detail__copy > p:not(.kicker) { max-width: 44ch; margin-top: 24px; color: var(--muted); }
.detail-points { margin: 36px 0 0; padding: 0; border-top: 1px solid var(--line-strong); }
.detail-points li { position: relative; padding: 14px 0 14px 28px; color: var(--ink-2); border-bottom: 1px solid var(--line); list-style: none; }
.detail-points li::before { content: ""; position: absolute; top: 1.45em; left: 0; width: 8px; height: 8px; background: var(--action); border-radius: 50%; }

.notice-section { padding-block: clamp(60px, 7vw, 96px); background: var(--ice); border-block: 1px solid #dce9f0; }
.notice { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 34px; align-items: start; }
.notice__mark { color: var(--action-dark); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.notice__body { padding-top: 25px; border-top: 3px solid var(--action); }
.notice h2 { max-width: 25ch; font-size: clamp(2rem, 3vw, 3.15rem); }
.notice p { max-width: 76ch; margin-top: 17px; color: var(--muted); }
.notice__link { margin-top: 22px; }

/* Search-led answers that stay useful for people first. */
.faq-section { padding-block: var(--section-space); background: var(--surface); }
.home-page .faq-section { background: var(--canvas); border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr); gap: clamp(64px, 9vw, 132px); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 38px); }
.faq-intro h2 { max-width: 12ch; margin-top: 18px; font-size: clamp(2.8rem, 4.2vw, 4.5rem); }
.faq-intro > p:not(.kicker) { max-width: 42ch; margin-top: 24px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 24px;
  padding: 16px 4px;
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 720;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--action-dark);
  background: var(--ice);
  border: 1px solid var(--line-strong);
  border-radius: 3px 12px 12px 3px;
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 220ms var(--ease);
}
.faq-list summary:hover > span,
.faq-list summary:focus-visible > span { color: #fff; background: var(--action); border-color: var(--action); }
.faq-list details[open] summary > span { color: #fff; background: var(--action-dark); border-color: var(--action-dark); transform: rotate(45deg); }
.faq-answer { padding: 0 66px 28px 4px; }
.faq-answer p { max-width: 68ch; color: var(--muted); }
.faq-answer a { color: var(--ink); font-weight: 680; text-decoration: underline; text-decoration-color: var(--action); text-decoration-thickness: 2px; text-underline-offset: 4px; }

.related-services { padding-block: var(--section-space); background: var(--surface); }
.related-services__header { margin-bottom: 46px; }
.related-list { border-top: 1px solid var(--line-strong); }
.related-link { min-height: 104px; display: grid; grid-template-columns: 64px minmax(0, 1fr) 42px; align-items: center; gap: 20px; padding: 12px 18px; border-bottom: 1px solid var(--line); transition: background-color 180ms ease, padding 220ms var(--ease); }
.related-link:hover,
.related-link:focus-visible { padding-inline: 26px 16px; background: var(--ice); }
.related-link > span { color: var(--action-dark); font-size: .71rem; font-weight: 800; }
.related-link h3 { color: var(--ink); font-size: clamp(1.65rem, 2.7vw, 2.85rem); letter-spacing: -.035em; }
.related-link b { justify-self: end; width: 38px; height: 38px; display: grid; place-items: center; color: var(--ink); border: 1px solid var(--line-strong); border-radius: 50%; font-weight: 500; }

.service-cta { padding-block: clamp(70px, 8vw, 110px); background: var(--ice); border-top: 1px solid #dce9f0; }
.service-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 54px; }
.service-cta h2 { max-width: 13ch; font-size: clamp(2.8rem, 4.1vw, 4.5rem); }
.service-cta__actions { display: flex; flex-wrap: wrap; gap: 11px; }

@media (max-width: 1180px) {
  .nav { gap: 15px; }
  .nav-links > a,
  .nav-services > summary { padding-inline: 10px; }
  .nav-links > a:not(.nav-cta, .nav-phone)::after,
  .nav-services > summary::after { right: 10px; left: 10px; }
  .nav-phone { display: none !important; }
  .home-hero__grid { grid-template-columns: minmax(330px, 1fr) minmax(0, 2fr); }
  .hero-panel { padding: 36px 78px 36px 34px; }
  .hero-panel h1 { font-size: clamp(2.55rem, 4vw, 3.25rem); }
  .hero-lead { font-size: .98rem; }
  .comparison__header,
  .comparison__label--after { left: 104px; }
}

@media (max-width: 980px) {
  :root { --header-height: 74px; }
  .menu-toggle { display: block; }
  .nav > .brand { position: relative; z-index: calc(var(--z-menu) + 1); }
  .nav-links {
    position: fixed;
    z-index: var(--z-menu);
    inset: var(--header-height) 0 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    margin: 0;
    padding: 20px 24px calc(28px + env(safe-area-inset-bottom));
    background: var(--surface);
    border-top: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 220ms var(--ease), visibility 180ms;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links > a,
  .nav-services > summary { min-height: 58px; padding-inline: 8px; color: var(--ink); border-bottom: 1px solid var(--line); }
  .nav-services { width: 100%; height: auto; display: block; }
  .services-dropdown { position: static; width: 100%; padding: 8px 0 12px 14px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; }
  .services-dropdown a { min-height: 54px; border-left: 1px solid var(--line); border-radius: 0; }
  .nav-phone { display: flex !important; min-height: 66px !important; margin: 8px 0 0; padding-left: 8px !important; border-left: 0; }
  .nav-cta { margin: 16px 0 0; justify-content: space-between; border-bottom: 0 !important; }

  .home-hero { padding: 0; }
  .home-hero__grid { min-height: 0; grid-template-columns: 1fr; gap: 0; }
  .hero-panel {
    max-width: none;
    padding: 62px clamp(34px, 7vw, 68px) 108px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), 0 100%);
  }
  .hero-panel::after {
    inset: auto 0 0;
    width: auto;
    height: 60px;
    clip-path: polygon(0 calc(100% - 5px), 100% 0, 100% 5px, 0 100%);
  }
  .hero-panel h1 { font-size: clamp(4.5rem, 10vw, 6.4rem); }
  .hero-lead { max-width: 48ch; }
  .hero-actions { max-width: 460px; }
  .hero-facts { max-width: 560px; }
  .comparison { --comparison-diagonal-inset: 0px; width: 100%; min-height: 0; margin-top: -56px; margin-left: 0; justify-self: center; border-radius: 0; }
  .comparison__stage { height: auto; min-height: 0; aspect-ratio: 1.5; }
  .comparison__header,
  .comparison__label--after { left: 20px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 28px; }
  .service-explorer { grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr); gap: 42px; }
  .operations__grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .footer-main { grid-template-columns: 1fr; }
  .service-hero__grid { min-height: 0; grid-template-columns: 1fr; gap: 58px; }
  .service-hero__copy { max-width: 720px; }
  .service-hero__media img { aspect-ratio: 1.65; }
  .service-overview__grid,
  .service-detail { grid-template-columns: 1fr; gap: 54px; }
  .faq-layout { grid-template-columns: 1fr; gap: 46px; }
  .faq-intro { position: static; }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; --section-space: 72px; }
  .shell { width: min(calc(100% - 32px), 720px); }
  [data-hero-enter] { animation: none; }

  .site-header { height: var(--header-height); }
  .nav { gap: 12px; }
  .brand { min-height: 44px; }
  .brand__symbol { width: 36px; height: 36px; }
  .brand__name strong { font-size: .9rem; }
  .brand__name small { font-size: .5rem; }
  .menu-toggle { width: 46px; height: 46px; }
  .nav-links { inset: var(--header-height) 0 0; padding: 18px 20px max(24px, env(safe-area-inset-bottom)); }
  .nav-links > a,
  .nav-services > summary { min-height: 58px; padding-inline: 4px; font-size: .98rem; }
  .nav-links > a:not(.nav-cta, .nav-phone)::after,
  .nav-services > summary::after { display: none; }
  .nav-services > summary { justify-content: space-between; }
  .services-dropdown { padding: 6px 0 14px 12px; }
  .services-dropdown a { min-height: 54px; padding-inline: 12px 8px; border-left: 2px solid var(--ice-2); }
  .nav-phone { margin-top: auto !important; padding-top: 10px !important; }
  .nav-cta { min-height: 52px !important; margin-top: 12px; }
  .nav-links :focus-visible { outline-offset: 2px; }

  .home-hero { padding: 0; }
  .home-hero__grid { min-height: 0; display: grid; grid-template-columns: 1fr; gap: 0; padding: 0; }
  .hero-panel { display: contents; }
  .hero-panel::after { content: none; }
  .hero-copy {
    position: relative;
    z-index: 2;
    grid-row: 1;
    min-width: 0;
    overflow: hidden;
    padding: 44px max(16px, calc((100vw - 720px) / 2)) 58px;
    color: #d9e6ef;
    background: var(--ink);
  }
  .hero-copy::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 28px;
    background: var(--action);
    clip-path: polygon(0 86%, 100% 0, 100% 18%, 0 100%);
    pointer-events: none;
  }
  .hero-panel .kicker { color: #a8d2fa; font-size: .68rem; }
  .hero-panel h1 { max-width: 11ch; margin-top: 16px; font-size: clamp(2.65rem, 13.2vw, 4rem); line-height: .92; white-space: normal; }
  .hero-lead { max-width: 38ch; margin-top: 20px; font-size: 1rem; line-height: 1.55; }
  .hero-actions { max-width: 460px; margin-top: 24px; }
  .hero-actions .button { min-height: 54px; }
  .hero-support {
    grid-row: 3;
    margin: 0;
    padding: 20px max(16px, calc((100vw - 720px) / 2)) 24px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }
  .hero-support > .button { min-height: 50px; }
  .hero-support .button--quiet {
    --button-bg: #fff;
    --button-fg: var(--ink);
    --button-accent: var(--ice-2);
    --button-accent-fg: var(--action-dark);
    --button-border: var(--line-strong);
    --button-shadow: none;
  }
  .hero-support .button--quiet:hover,
  .hero-support .button--quiet:focus-visible {
    --button-bg: var(--ice);
    --button-accent: var(--action);
    --button-accent-fg: #fff;
    --button-border: var(--ink);
  }
  .hero-support :focus-visible { outline-color: var(--focus); }
  .hero-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 18px; border-color: var(--line); border-bottom: 1px solid var(--line); }
  .hero-facts div { display: block; padding: 11px 12px; border-right: 1px solid var(--line); border-bottom: 0; }
  .hero-facts div:first-child { padding-left: 0; }
  .hero-facts div:last-child { padding-right: 0; border-right: 0; }
  .hero-facts dt { color: var(--muted); font-size: .56rem; letter-spacing: .07em; }
  .hero-facts dd { margin-top: 4px; color: var(--ink); font-size: .72rem; line-height: 1.3; text-align: left; white-space: normal; }

  .comparison { --comparison-diagonal-inset: 0px; grid-row: 2; width: 100%; min-height: 0; margin: 0; overflow: hidden; background: var(--surface); }
  .comparison__header { position: relative; inset: auto; min-height: 60px; padding: 10px 16px; border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; }
  .comparison__header strong { font-size: .92rem; }
  .comparison__instruction { display: none; }
  .comparison__stage { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
  .comparison__image { object-position: 52% center; }
  .comparison__label { top: 12px; bottom: auto; font-size: .61rem; }
  .comparison__label--after { left: 12px; }
  .comparison__label--before { right: 12px; }
  .comparison__note { position: static; min-height: 42px; display: flex; padding: 8px 16px; background: #fff; border-bottom: 1px solid var(--line); font-size: .68rem; pointer-events: none; }
  .comparison__handle { width: 48px; height: 48px; }

  .section-heading { margin-bottom: 36px; }
  .section-heading--split { gap: 18px; }
  .section-heading h2 { max-width: 13ch; margin-top: 12px; font-size: clamp(2.3rem, 8vw, 3.4rem); overflow-wrap: normal; }
  .section-heading > p,
  .section-heading--split > p { font-size: .97rem; }

  .contact-layout { gap: 38px; }
  .contact-copy h2 { max-width: 11ch; margin-top: 12px; font-size: clamp(2.5rem, 8vw, 3.35rem); }
  .contact-copy > p:not(.kicker) { margin-top: 20px; }
  .direct-contact { margin-top: 30px; }
  .direct-contact a { min-height: 68px; }
  .footer-main { gap: 40px; padding-block: 50px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-nav a { min-height: 32px; display: inline-flex; align-items: center; }

  .service-hero { padding: 38px 0 0; }
  .service-hero__grid { gap: 32px; }
  .breadcrumb { margin-bottom: 24px; }
  .breadcrumb a { min-height: 36px; display: inline-flex; align-items: center; }
  .service-hero h1 { max-width: none; margin-top: 14px; font-size: clamp(2.4rem, 7.5vw, 3.55rem); line-height: .95; }
  .service-hero__lead { margin-top: 18px; font-size: 1rem; }
  .service-hero .button { margin-top: 24px; }
  .service-hero__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; padding-top: 16px; }
  .service-hero__media img { aspect-ratio: 16 / 9; border-radius: 4px 16px 16px 4px; }
  .service-hero__media figcaption { margin-top: 9px; }
  .service-overview__grid,
  .service-detail { gap: 38px; }
  .service-overview__intro h2,
  .service-detail__copy h2,
  .related-services h2 { margin-top: 12px; font-size: clamp(2.25rem, 7vw, 3.15rem); }
  .service-overview__intro > p:not(.kicker),
  .service-detail__copy > p:not(.kicker) { margin-top: 18px; }
  .scope-list li { min-height: 68px; grid-template-columns: 44px minmax(0, 1fr); }
  .service-detail__media img { aspect-ratio: 16 / 10; border-radius: 4px 16px 16px 4px; }
  .detail-points { margin-top: 28px; }
  .notice-section { padding-block: 58px; }
  .notice { grid-template-columns: 1fr; gap: 14px; }
  .notice__body { padding-top: 18px; border-top-width: 2px; }
  .notice h2 { font-size: clamp(1.8rem, 5.5vw, 2.45rem); }
  .faq-layout { gap: 34px; }
  .faq-intro h2 { max-width: 13ch; margin-top: 12px; font-size: clamp(2.25rem, 7vw, 3.15rem); }
  .faq-intro > p:not(.kicker) { margin-top: 18px; }
  .faq-list summary { min-height: 78px; grid-template-columns: minmax(0, 1fr) 36px; gap: 16px; padding-block: 14px; }
  .faq-answer { padding: 0 52px 24px 0; }
  .related-services__header { margin-bottom: 30px; }
  .related-link { min-height: 78px; grid-template-columns: 36px minmax(0, 1fr) 36px; gap: 12px; padding: 10px 4px; }
  .related-link:hover,
  .related-link:focus-visible { padding-inline: 8px 4px; }
  .related-link h3 { font-size: clamp(1.3rem, 4vw, 1.85rem); }
  .related-link b { width: 34px; height: 34px; border-radius: 3px 12px 12px 3px; }
  .service-cta { padding-block: 64px; }
  .service-cta__inner { align-items: flex-start; flex-direction: column; gap: 30px; }
  .service-cta h2 { max-width: 14ch; font-size: clamp(2.35rem, 7vw, 3.25rem); }
  .service-cta__actions { width: 100%; flex-direction: column; }
  .service-cta__actions .button { width: 100%; justify-content: space-between; }
  .text-link { min-height: 44px; }
}

@media (min-width: 640px) and (max-width: 820px) {
  .hero-support { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr); gap: 24px; align-items: center; }
  .hero-facts { margin-top: 0; }
}

@media (max-width: 699px) {
  :root { --section-space: 64px; }
  .brand__symbol { width: 35px; height: 35px; }
  .brand__name strong { font-size: .86rem; }
  .brand__name small { font-size: .48rem; }
  .home-hero__grid { padding-block: 0; }
  .hero-copy { padding: 38px 16px 54px; }
  .hero-panel h1 { font-size: clamp(2.65rem, 13.2vw, 3.45rem); }
  .hero-actions { max-width: none; }
  .hero-support { display: flex; padding: 18px 16px 22px; }
  .hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-facts div:nth-child(2) { padding-right: 0; border-right: 0; }
  .hero-facts div:last-child { display: none; }
  .comparison__stage { aspect-ratio: 4 / 3; }

  .service-explorer { display: block; }
  .service-preview { display: none; }
  .service-menu .service-item.is-active { padding-inline: 0; background: transparent; }
  .service-menu .service-item.is-active::before { transform: scaleY(0); }
  .service-item { min-height: 104px; grid-template-columns: 24px minmax(0, 1fr) 72px; grid-template-rows: 1fr; gap: 10px; padding: 14px 0; }
  .service-item:hover,
  .service-item:focus-visible { padding-inline: 8px 4px; }
  .service-item__number { grid-column: 1; grid-row: 1; align-self: center; }
  .service-item__body { grid-column: 2; grid-row: 1; align-self: center; gap: 4px; }
  .service-item__body strong { font-size: clamp(1.12rem, 5vw, 1.38rem); line-height: 1.08; }
  .service-item__body small { font-size: .78rem; line-height: 1.38; }
  .service-item__thumb { grid-column: 3; grid-row: 1; width: 72px; height: 72px; display: block; margin: 0; object-fit: cover; border-radius: 3px 15px 15px 3px; }
  .service-item__arrow { z-index: 2; grid-column: 3; grid-row: 1; align-self: end; justify-self: end; width: 30px; height: 30px; margin: 0 5px 5px 0; color: #fff; background: rgba(13, 32, 52, .88); border: 0; border-radius: 3px 10px 10px 3px; }

  .operations__grid { grid-template-columns: 1fr; gap: 30px; }
  .operations__copy { grid-column: 1; grid-row: 1; }
  .operations__media { grid-column: 1; grid-row: 2; }
  .operations__copy h2 { max-width: none; margin-top: 12px; font-size: clamp(2.35rem, 10vw, 3.2rem); }
  .operations__copy > p:not(.kicker) { margin-top: 20px; }
  .operations__steps { margin-top: 28px; }
  .operations__steps li { min-height: 70px; grid-template-columns: 38px 1fr; gap: 12px; }
  .operations__media img { aspect-ratio: 16 / 9; border-radius: 3px 16px 16px 3px; }
  .operations__copy .text-link { margin-top: 26px; }

  .area-list { grid-template-columns: 1fr; }
  .area-list a { min-height: 96px; grid-template-columns: 28px minmax(0, 1fr) 30px; grid-template-rows: auto auto; gap: 2px 10px; padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .area-list a:last-child { border-bottom: 0; }
  .area-list__number { grid-column: 1; grid-row: 1 / 3; align-self: center; }
  .area-list strong { grid-column: 2; grid-row: 1; align-self: end; font-size: clamp(1.35rem, 6.2vw, 1.75rem); line-height: 1.05; overflow-wrap: normal; }
  .area-list small { grid-column: 2; grid-row: 2; align-self: start; font-size: .78rem; line-height: 1.35; }
  .area-list a > span:last-child { grid-column: 3; grid-row: 1 / 3; align-self: center; }

  .contact-form { grid-template-columns: 1fr; gap: 18px; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  .form-field--wide,
  .form-submit,
  .form-note,
  .contact-form__status { grid-column: 1; }
  .form-field input,
  .form-field select,
  .form-field textarea { min-height: 54px; background: #fff; }
  .form-field textarea { min-height: 124px; }
  .form-submit { width: 100%; justify-content: space-between; }
  .footer-main { gap: 34px; padding-block: 44px; }
  .footer-brand p { margin-top: 12px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-nav a { overflow-wrap: anywhere; }
  .footer-bottom { min-height: 84px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; padding-block: 16px; }

  .service-hero { padding-top: 34px; }
  .service-hero__grid { gap: 28px; }
  .service-hero h1 { font-size: clamp(2.25rem, 10vw, 3.15rem); }
  .service-hero .button { width: 100%; justify-content: space-between; }
  .service-hero__media { margin-inline: -16px; }
  .service-hero__media img { aspect-ratio: 16 / 10; border-radius: 0; }
  .service-hero__media figcaption { margin: 0; padding: 9px 16px 20px; }
  .service-overview__grid,
  .service-detail { gap: 30px; }
  .service-overview__intro h2,
  .service-detail__copy h2,
  .related-services h2 { font-size: clamp(2.15rem, 9vw, 2.8rem); }
  .scope-list li { min-height: 64px; }
  .service-detail__media img { aspect-ratio: 16 / 10; }
  .notice-section { padding-block: 52px; }
  .faq-intro h2 { max-width: none; font-size: clamp(2.15rem, 9vw, 2.8rem); }
  .faq-list summary { min-height: 74px; font-size: .98rem; }
  .faq-answer { padding-right: 0; }
  .related-link { min-height: 72px; grid-template-columns: 30px minmax(0, 1fr) 34px; gap: 10px; padding-inline: 0; }
  .related-link:hover,
  .related-link:focus-visible { padding-inline: 4px 0; }
  .related-link h3 { font-size: clamp(1.18rem, 5.3vw, 1.48rem); }
  .service-cta { padding-block: 58px; }
  .service-cta__inner { gap: 26px; }
}

@media (max-width: 420px) {
  .brand { gap: 8px; }
  .brand__symbol { width: 34px; height: 34px; }
  .brand__name strong { font-size: .84rem; }
  .brand__name small { font-size: .47rem; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero-copy { padding-top: 34px; }
  .hero-lead { font-size: .96rem; }
  .comparison__header { min-height: 58px; padding-block: 9px; }
  .comparison__header strong { font-size: .86rem; }
  .comparison__note { font-size: .63rem; }
  .service-hero h1 { font-size: clamp(2.15rem, 10vw, 2.75rem); }
  .direct-contact strong { font-size: .85rem; }
}

@media (max-width: 380px) {
  .footer-nav { grid-template-columns: 1fr; gap: 28px; }
  .service-item { grid-template-columns: 22px minmax(0, 1fr) 68px; gap: 9px; }
  .service-item__thumb { width: 68px; height: 68px; }
  .form-submit { font-size: .86rem; }
}

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

@media (forced-colors: active) {
  .button,
  .menu-toggle,
  .comparison,
  .comparison__handle,
  .service-item__arrow,
  .related-link b { border: 2px solid currentColor; }
  .service-item::before,
  .detail-points li::before { background: currentColor; }
  .button::before,
  .menu-toggle::after { display: none; }
  .button > [aria-hidden="true"] { color: currentColor; }
}
