:root {
  --navy-950: #061326;
  --navy-900: #0a1d36;
  --navy-800: #102a4b;
  --navy-700: #1a3a60;
  --ink: #132238;
  --ink-soft: #435168;
  --muted: #647184;
  --gold: #c99432;
  --gold-deep: #9b6d1f;
  --gold-soft: #ecd8a9;
  --paper: #f7f4ec;
  --paper-deep: #eee8da;
  --soft: #f1f4f6;
  --surface: #ffffff;
  --line: #d7dde3;
  --line-strong: #b9c3ce;
  --success: #1a6c53;
  --danger: #963f36;
  --shadow-sm: 0 8px 24px rgba(6, 19, 38, 0.06);
  --shadow-md: 0 22px 55px rgba(6, 19, 38, 0.12);
  --max: 1220px;
  --radius: 3px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { color: var(--navy-950); background: var(--gold-soft); }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.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: 999; top: 12px; left: -9999px; padding: 11px 15px; background: var(--gold); color: var(--navy-950); font-weight: 850; text-decoration: none; }
.skip-link:focus { left: 12px; }
:focus-visible { outline: 3px solid rgba(201, 148, 50, 0.46); outline-offset: 3px; }

/* Top-level chrome */
.utility { background: var(--navy-950); color: #dce5ef; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.77rem; letter-spacing: 0.045em; }
.utility-inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner > span { text-transform: uppercase; font-weight: 800; }
.utility a { color: var(--gold-soft); text-decoration: none; font-weight: 750; }
.utility a:hover { color: #fff; }

.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--line); transition: box-shadow 180ms ease; backdrop-filter: blur(14px); }
.site-header.scrolled { box-shadow: 0 12px 28px rgba(6,19,38,0.09); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 236px; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(13px, 1.65vw, 24px); color: var(--navy-900); font-size: 0.88rem; font-weight: 790; }
.main-nav > a:not(.button) { position: relative; padding: 30px 0 27px; text-decoration: none; white-space: nowrap; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 170ms ease; }
.main-nav > a:not(.button):hover,
.main-nav > a:not(.button).active { color: var(--gold-deep); }
.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button).active::after { transform: scaleX(1); }
.menu-button { display: none; width: 46px; height: 46px; padding: 10px; border: 1px solid var(--line); border-radius: 0; background: #fff; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--navy-900); transition: transform 180ms ease, opacity 180ms ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons and links */
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 13px 20px; border: 1px solid var(--gold); border-radius: var(--radius); background: var(--gold); color: var(--navy-950); font-weight: 850; line-height: 1.2; text-align: center; text-decoration: none; box-shadow: none; transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, box-shadow 170ms ease; }
.button::after { content: "→"; font-size: 1rem; transition: transform 170ms ease; }
.button:hover { transform: translateY(-2px); border-color: #d7a84e; background: #d7a84e; box-shadow: 0 10px 24px rgba(155,109,31,0.2); }
.button:hover::after { transform: translateX(3px); }
.button-small { min-height: 42px; padding: 10px 15px; font-size: 0.84rem; }
.button-secondary { border-color: var(--navy-900); background: transparent; color: var(--navy-900); }
.button-secondary:hover { border-color: var(--navy-900); background: var(--navy-900); color: #fff; }
.button-outline { border-color: rgba(236,216,169,0.72); background: transparent; color: var(--gold-soft); }
.button-outline:hover { border-color: var(--gold); background: var(--gold); color: var(--navy-950); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-900); font-size: 0.91rem; font-weight: 850; text-decoration: none; }
.text-link span { color: var(--gold-deep); transition: transform 170ms ease; }
.text-link:hover { color: var(--gold-deep); }
.text-link:hover span { transform: translateX(4px); }

/* Hero */
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: 78px 0 76px; background: var(--navy-900); color: #fff; border-bottom: 5px solid var(--gold); }
.page-hero::before { content: ""; position: absolute; z-index: -2; inset: 0; background:
  linear-gradient(90deg, transparent 0 70%, rgba(255,255,255,0.035) 70% 70.08%, transparent 70.08%),
  linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
}
.page-hero::after { content: ""; position: absolute; z-index: -1; right: -12vw; bottom: -38%; width: 62vw; height: 115%; border: 1px solid rgba(201,148,50,0.22); transform: rotate(-10deg); background: linear-gradient(135deg, rgba(201,148,50,0.07), transparent 62%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(285px, 0.55fr); align-items: center; gap: clamp(48px, 7vw, 96px); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--gold-deep); font-size: 0.73rem; font-weight: 900; letter-spacing: 0.16em; line-height: 1.4; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; flex: 0 0 auto; background: currentColor; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 { max-width: 910px; margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 5.5vw, 5.25rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1.015; text-wrap: balance; }
.lead { max-width: 790px; margin: 26px 0 0; color: #ccd6e2; font-size: clamp(1.08rem, 1.7vw, 1.25rem); line-height: 1.72; }
.hero-note { margin: 22px 0 0; padding: 13px 0 13px 17px; border-left: 3px solid var(--gold); color: #bfcbd8; font-size: 0.9rem; }
.hero-mini { counter-reset: principle; position: relative; padding: 18px 22px; border: 1px solid rgba(255,255,255,0.2); border-left: 5px solid var(--gold); border-radius: 0; background: rgba(255,255,255,0.975); color: var(--navy-900); box-shadow: var(--shadow-md); }
.hero-mini::before { content: "Tender Gain approach"; display: block; padding: 7px 4px 14px; border-bottom: 1px solid var(--line); color: var(--gold-deep); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-mini span { counter-increment: principle; display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 10px; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 0.93rem; font-weight: 790; }
.hero-mini span::before { content: "0" counter(principle); color: var(--gold-deep); font-size: 0.69rem; font-weight: 900; letter-spacing: 0.08em; }
.hero-mini span:last-child { border-bottom: 0; }

/* Sections and typography */
.section { position: relative; padding: 90px 0; }
.section + .section { border-top: 1px solid rgba(215,221,227,0.78); }
.section-soft { background: var(--soft); }
.section-cream { background: var(--paper); }
.section-dark { overflow: hidden; background: var(--navy-900); color: #fff; }
.section-dark::after { content: ""; position: absolute; right: -180px; bottom: -260px; width: 540px; height: 540px; border: 1px solid rgba(201,148,50,0.2); transform: rotate(28deg); }
.section-title { max-width: 820px; margin-bottom: 44px; }
.section-title h2,
.split h2,
.cta h2,
.form-section h3 { margin: 0 0 17px; font-family: var(--serif); color: var(--navy-900); font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; text-wrap: balance; }
.section-title h2,
.split h2,
.cta h2 { font-size: clamp(2.1rem, 4vw, 3.75rem); }
.section-title > p:last-child,
.split > div > p,
.card p,
.number-card p,
.sector-panel p,
.article p,
.article li,
.accordion details p { color: var(--ink-soft); }
.section-title > p:last-child,
.split > div > p { font-size: 1.04rem; }
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark .section-title > p:last-child,
.section-dark .split > div > p { color: #c1cedb; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: start; gap: clamp(48px, 7vw, 88px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }

/* Trust and content modules */
.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { position: relative; min-height: 104px; padding: 25px 26px 23px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--gold); transform: scaleX(0.22); transform-origin: left; }
.trust-item strong { display: block; margin-bottom: 3px; color: var(--navy-900); font-family: var(--serif); font-size: 1.12rem; }
.trust-item span { color: var(--muted); font-size: 0.86rem; }

.card { counter-increment: card-number; position: relative; display: flex; min-height: 100%; flex-direction: column; overflow: hidden; padding: 30px 29px 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.grid-2, .grid-3, .grid-4 { counter-reset: card-number; }
.card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 4px; background: var(--gold); transform: scaleX(0.18); transform-origin: left; transition: transform 180ms ease; }
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 18px 42px rgba(6,19,38,0.1); }
.card:hover::before { transform: scaleX(1); }
.card-icon { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--gold-soft); border-radius: 0; background: var(--paper); color: transparent; font-size: 0; }
.card-icon::before { content: counter(card-number, decimal-leading-zero); color: var(--gold-deep); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; }
.card h3 { margin: 18px 0 11px; color: var(--navy-900); font-family: var(--serif); font-size: 1.37rem; font-weight: 650; line-height: 1.23; }
.card p { margin: 0 0 24px; }
.card .text-link { margin-top: auto; padding-top: 4px; }

.number-grid { counter-reset: steps; }
.number-card { position: relative; min-height: 100%; padding: 29px 26px 27px; border: 1px solid var(--line); border-top: 4px solid var(--navy-800); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.number-card::before { counter-increment: steps; content: "STEP / 0" counter(steps); display: block; margin-bottom: 22px; color: var(--gold-deep); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.13em; }
.number-card h3 { margin: 0 0 10px; color: var(--navy-900); font-family: var(--serif); font-size: 1.3rem; line-height: 1.25; }
.number-card p { margin: 0; }

.check-list,
.plain-list { margin: 24px 0; padding: 0; list-style: none; }
.check-list li,
.plain-list li { position: relative; padding: 12px 0 12px 31px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; top: 12px; left: 1px; color: var(--success); font-weight: 950; }
.plain-list li::before { content: "—"; position: absolute; top: 12px; left: 1px; color: var(--gold-deep); font-weight: 950; }
.section-dark .check-list li,
.section-dark .plain-list li { border-color: rgba(255,255,255,0.13); color: #e7edf4; }
.section-dark .check-list li::before { color: var(--gold-soft); }

.evidence-board { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 0; background: #fff; box-shadow: var(--shadow-md); }
.evidence-board::before { content: "Evidence review / example status"; display: block; padding: 13px 18px; background: var(--navy-900); color: #fff; font-size: 0.69rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.evidence-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; min-height: 62px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.evidence-row:last-child { border-bottom: 0; }
.status { min-width: 74px; padding: 5px 9px; border: 1px solid currentColor; border-radius: 99px; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.05em; text-align: center; text-transform: uppercase; }
.status-ready { color: #126046; background: #e7f3ee; }
.status-improve { color: #7c5813; background: #fff5dc; }
.status-gap { color: #8d3d35; background: #fae9e6; }

.notice { margin: 24px 0; padding: 21px 23px; border: 1px solid #e2cc97; border-left: 5px solid var(--gold); border-radius: 0; background: #fffaf0; color: var(--ink-soft); }
.notice strong { display: block; margin-bottom: 5px; color: var(--navy-900); }
.boundary { padding: 25px; border: 1px solid #dfbbb6; border-left: 5px solid var(--danger); border-radius: 0; background: #fff8f7; }
.boundary h2, .boundary h3 { color: #7f332c; }
.pill { display: inline-block; padding: 6px 10px; border: 1px solid #ddc17e; border-radius: 99px; background: #fff9e9; color: #715017; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.07em; text-transform: uppercase; }

.pricing { position: relative; z-index: 1; padding: 38px; border: 1px solid var(--gold-soft); border-top: 6px solid var(--gold); border-radius: 0; background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }
.price { margin: 18px 0 10px; color: var(--navy-900); font-family: var(--serif); font-size: 3.45rem; line-height: 1; }
.price small { color: var(--muted); font: 700 0.82rem var(--sans); letter-spacing: 0.05em; text-transform: uppercase; }
.pricing p { color: var(--ink-soft); }

.cta { position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 42px; padding: 50px 52px; border: 1px solid var(--navy-800); border-radius: 0; background: var(--navy-900); color: #fff; box-shadow: var(--shadow-md); }
.cta::before { content: ""; position: absolute; z-index: -1; top: 0; right: 0; width: 32%; height: 100%; border-left: 1px solid rgba(255,255,255,0.1); background: linear-gradient(135deg, rgba(201,148,50,0.18), transparent 65%); }
.cta h2 { max-width: 790px; color: #fff; }
.cta p { max-width: 760px; margin: 0; color: #c7d2df; }

/* Sector, article and guide layouts */
.breadcrumbs { margin-bottom: 22px; color: var(--muted); font-size: 0.8rem; }
.breadcrumbs a { color: var(--gold-deep); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.sector-panel { position: relative; padding: 29px; border: 1px solid var(--line); border-radius: 0; background: #fff; box-shadow: var(--shadow-sm); }
.sector-panel::before { content: ""; position: absolute; top: -1px; left: -1px; width: 46px; height: 4px; background: var(--gold); }
.sector-panel h2 { margin: 0 0 12px; color: var(--navy-900); font-family: var(--serif); font-size: 1.9rem; line-height: 1.15; }
.sector-panel h3 { margin: 27px 0 8px; color: var(--navy-800); }
.article { max-width: 880px; }
.article h2 { margin: 52px 0 16px; color: var(--navy-900); font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.45rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.18; }
.article h3 { margin: 31px 0 10px; color: var(--navy-800); }
.article a { color: var(--gold-deep); font-weight: 720; }
.article table { width: 100%; margin: 26px 0; border-collapse: collapse; border: 1px solid var(--line-strong); }
.article th, .article td { padding: 14px 15px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article th { background: var(--navy-900); color: #fff; font-size: 0.79rem; letter-spacing: 0.04em; }
.article tr:nth-child(even) td { background: var(--soft); }
.page-index { padding: 23px; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 0; background: var(--soft); }
.page-index::before { content: "On this page"; display: block; margin-bottom: 10px; color: var(--navy-900); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.page-index a { display: block; padding: 5px 0; color: var(--navy-800); font-weight: 760; text-decoration: none; }
.page-index a:hover { color: var(--gold-deep); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 20px 44px 20px 0; color: var(--navy-900); cursor: pointer; font-family: var(--serif); font-size: 1.2rem; font-weight: 650; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; top: 17px; right: 2px; color: var(--gold-deep); font: 500 1.55rem var(--sans); }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { max-width: 850px; margin: 0 0 20px; }

/* Forms */
.form-shell { max-width: 900px; padding: 38px; border: 1px solid var(--line-strong); border-top: 5px solid var(--gold); border-radius: 0; background: #fff; box-shadow: var(--shadow-md); }
.intake-shell { max-width: none; margin-top: 28px; }
.field-grid, .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label, .field legend { display: block; margin-bottom: 7px; color: var(--navy-900); font-weight: 820; }
.field input, .field select, .field textarea,
.intake-shell .field input, .intake-shell .field select, .intake-shell .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #adb9c5; border-radius: 0; background: #fff; color: var(--ink); }
.field textarea, .intake-shell textarea { min-height: 132px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #8695a5; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-deep); outline: 3px solid rgba(201,148,50,0.18); }
.form-note, .help-text, .file-note { color: var(--muted); font-size: 0.82rem; }
.form-section { padding: 29px 0; border-bottom: 1px solid var(--line); }
.form-section:first-child { padding-top: 0; }
.form-section:last-child { border-bottom: 0; }
.form-section h3 { font-size: 1.8rem; }
.form-section > p { color: var(--muted); }
.checkboxes, .checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 10px 0 18px; }
.checkboxes label, .checkbox-card { font-weight: 650; }
.checkboxes input { width: auto; margin-right: 8px; }
.checkbox-card { display: flex; gap: 9px; align-items: flex-start; padding: 12px; border: 1px solid var(--line); border-radius: 0; background: #fff; }
.checkbox-card:has(input:checked) { border-color: var(--gold); background: #fffaf0; }
.checkbox-card input { flex: 0 0 auto; margin-top: 5px; accent-color: var(--gold-deep); }
.upload-box { padding: 19px; border: 1px dashed #8f9eac; border-radius: 0; background: var(--soft); }
.intake-warning, .required-note { margin: 0 0 22px; padding: 18px 20px; border: 1px solid #e4ce9c; border-left: 5px solid var(--gold); background: #fffaf0; }
.required-marker { color: var(--danger); font-size: 0.8rem; }
.hp, .hidden { position: absolute; left: -9999px; }
.intake-shell button, .intake-shell input[type="submit"] { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 13px 20px; border: 1px solid var(--gold); border-radius: 0; background: var(--gold); color: var(--navy-950); font-weight: 850; cursor: pointer; }

/* Footer */
.site-footer { padding: 72px 0 22px; border-top: 5px solid var(--gold); background: var(--navy-950); color: #d8e1eb; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.35fr; gap: 48px; }
.footer-logo { width: 232px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-grid h2 { margin: 0 0 13px; color: var(--gold-soft); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-grid a:not(.button) { display: block; padding: 5px 0; color: #dce5ee; text-decoration: none; }
.footer-grid a:not(.button):hover { color: var(--gold-soft); }
.footer-grid p { color: #aebccc; }
.small { font-size: 0.77rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 46px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,0.13); color: #8fa1b4; font-size: 0.78rem; }
.error-page { padding: 120px 0; text-align: center; }
.error-page strong { color: var(--gold); font-family: var(--serif); font-size: 7rem; }

/* Utility helpers replacing former inline styles */
.actions-row { margin-top: 28px; }
.section-spacer { margin-top: 45px; }
.content-spacer { margin-top: 35px; }
.eyebrow-on-dark { color: var(--gold-soft); }
.inline-checkbox { width: auto !important; margin-right: 8px; }

@media (max-width: 1100px) {
  .main-nav { gap: 14px; font-size: 0.83rem; }
  .brand img { width: 218px; }
}

@media (max-width: 1000px) {
  .menu-button { display: block; }
  .main-nav { display: none; position: absolute; top: 82px; right: 0; left: 0; align-items: stretch; gap: 0; padding: 16px 24px 24px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-md); }
  .main-nav.open { display: flex; flex-direction: column; }
  .main-nav > a:not(.button) { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 14px; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 38px; }
  .hero-mini { max-width: 610px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .cta { grid-template-columns: 1fr; }
  .cta::before { width: 45%; }
}

@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 30px)); }
  .utility-inner { justify-content: center; }
  .utility-inner > span { display: none; }
  .header-inner { min-height: 72px; }
  .brand img { width: 200px; }
  .main-nav { top: 72px; padding-inline: 15px; }
  .page-hero { padding: 58px 0 56px; }
  .page-hero h1 { font-size: clamp(2.45rem, 11vw, 3.55rem); }
  .lead { font-size: 1.02rem; }
  .section { padding: 66px 0; }
  .section-title { margin-bottom: 34px; }
  .grid-2, .grid-3, .grid-4, .field-grid, .form-grid-2, .checkboxes, .checkbox-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { min-height: 95px; padding: 21px 18px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card, .number-card, .sector-panel { padding: 26px 23px; }
  .cta { padding: 35px 27px; }
  .cta::before { width: 65%; }
  .pricing, .form-shell { padding: 28px 23px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
  .article table { display: block; overflow-x: auto; white-space: normal; }
}

@media (max-width: 430px) {
  .brand img { width: 178px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div { grid-column: auto !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
.minor-spacer { margin-top: 1rem; }
.checkbox-spacer { margin-top: 0.75rem; }
