:root {
  --brand: #153a73;
  --brand-dark: #0b2347;
  --accent: #3f7de0;
  --cyan: #0a9cb1;
  --cyan-dark: #08798b;
  --gold: #cfa45a;
  --text: #182132;
  --muted: #627086;
  --line: #d9e2ee;
  --bg: #f8fafc;
  --surface: #ffffff;
  --shadow: 0 22px 55px rgba(16, 33, 66, .09);
  --shadow-tight: 0 12px 32px rgba(16, 33, 66, .08);
  --radius: 22px;
  --font-ui: "Aptos", "Segoe UI Variable", "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  background:
    radial-gradient(900px 520px at 12% -4%, rgba(207, 164, 90, .13), transparent 56%),
    radial-gradient(1060px 650px at 88% 2%, rgba(63, 125, 224, .13), transparent 61%),
    linear-gradient(180deg, #fff 0%, var(--bg) 58%, #fff 100%);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, svg { display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; border-radius: 8px; background: #fff; color: var(--brand-dark); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3 { margin-top: 0; color: #0a2148; font-family: var(--font-heading); font-weight: 700; letter-spacing: -.028em; }
h2 { margin-bottom: 14px; font-size: clamp(28px, 1.8vw, 42px); line-height: 1.08; }
p { line-height: 1.68; }

.nav { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid rgba(21, 58, 115, .08); background: rgba(255, 255, 255, .91); box-shadow: 0 6px 24px rgba(15, 33, 68, .04); backdrop-filter: blur(15px); }
.nav__inner { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 1 auto; min-width: 0; }
.brand img { width: auto; height: 72px; max-width: 46vw; object-fit: contain; }
.menu { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.menu > a:not(.btn) { color: #40506a; font-size: 14px; font-weight: 650; }
.menu > a:not(.btn):hover, .menu > a:not(.btn):focus-visible { color: var(--accent); }
.menu > a[aria-current="page"] { color: var(--brand); }
.nav__toggle { display: none; width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center; flex-direction: column; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--brand-dark); cursor: pointer; }
.nav__toggle span { width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav__toggle span + span { margin-top: 5px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn { display: inline-flex; min-height: 46px; padding: 12px 18px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 12px; font-size: 14px; font-weight: 750; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--brand), #1f4d93); box-shadow: 0 16px 34px rgba(21, 58, 115, .18); }
.btn--primary:hover { box-shadow: 0 20px 42px rgba(21, 58, 115, .24); }
.btn--ghost { border-color: var(--line); background: #fff; color: var(--text); }
.btn--ghost:hover { border-color: #c6d3e6; background: #f9fbfe; }

.hero { position: relative; overflow: hidden; padding: 72px 0 68px; }
.hero::before { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.55) 48%, rgba(236,244,255,.55)); }
.hero__grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr); align-items: center; gap: 62px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .105em; text-transform: uppercase; }
.eyebrow__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(10, 156, 177, .11); }
.hero h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(32px, 3.7vw, 54px); line-height: .98; }
.hero h1 span { color: var(--accent); }
.hero__lead { max-width: 62ch; margin: 0; color: #4f6078; font-size: 17px; }
.support-note { max-width: 67ch; margin: 20px 0 0; padding: 13px 15px; border: 1px solid #dce5f1; border-left: 3px solid var(--cyan); border-radius: 0 11px 11px 0; background: rgba(255,255,255,.75); color: #58687e; font-size: 12px; line-height: 1.58; }
.support-note strong { color: var(--brand-dark); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__proofs { display: flex; flex-wrap: wrap; gap: 16px 22px; margin: 28px 0 0; padding: 0; list-style: none; color: #355071; font-size: 13px; font-weight: 650; }
.hero__proofs li { display: flex; align-items: center; gap: 7px; }
.hero__proofs svg { width: 17px; height: 17px; fill: none; stroke: var(--accent); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }

.hero__visual { min-width: 0; margin-top: 56px; align-self: start; }
.knowledge-map { position: relative; min-height: 500px; overflow: hidden; border: 1px solid rgba(197, 213, 235, .95); border-radius: 30px; background: linear-gradient(150deg, rgba(255,255,255,.98), rgba(239,246,255,.96)); box-shadow: 0 32px 80px rgba(16, 42, 84, .15); isolation: isolate; }
.knowledge-map::before { position: absolute; inset: 0; z-index: -2; content: ""; opacity: .65; background-image: linear-gradient(rgba(21,58,115,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(21,58,115,.045) 1px, transparent 1px); background-size: 36px 36px; mask-image: linear-gradient(to bottom, transparent, black 14%, black 85%, transparent); }
.knowledge-map::after { position: absolute; width: 340px; height: 340px; top: 76px; left: 50%; z-index: -1; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(63,125,224,.14), rgba(10,156,177,.05) 45%, transparent 69%); transform: translateX(-50%); }
.knowledge-map__topline { display: flex; align-items: center; justify-content: space-between; padding: 19px 22px; border-bottom: 1px solid rgba(217,226,238,.85); background: rgba(255,255,255,.7); }
.status { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.status > span { width: 8px; height: 8px; border-radius: 50%; background: #16a36a; box-shadow: 0 0 0 5px rgba(22,163,106,.1); }
.status-date { color: #718097; font-size: 12px; }
.knowledge-map__core { position: absolute; top: 50%; left: 50%; z-index: 3; display: flex; width: 170px; height: 170px; padding: 22px; align-items: center; justify-content: center; flex-direction: column; border: 1px solid rgba(63,125,224,.2); border-radius: 50%; background: rgba(255,255,255,.93); box-shadow: 0 22px 48px rgba(21,58,115,.16); transform: translate(-50%, -50%); }
.knowledge-map__core strong { margin-top: 5px; color: var(--brand-dark); font-family: var(--font-heading); font-size: 27px; }
.knowledge-map__core > span:last-child { color: var(--muted); font-size: 11px; }
.core-shield svg { width: 42px; height: 48px; fill: rgba(63,125,224,.08); stroke: var(--accent); stroke-linecap: round; stroke-linejoin: round; stroke-width: 3.5; }
.core-ring { position: absolute; inset: -17px; z-index: -1; border: 1px dashed rgba(63,125,224,.24); border-radius: 50%; }
.core-ring--two { inset: -35px; border-color: rgba(10,156,177,.16); }
.knowledge-map__node { position: absolute; z-index: 4; display: grid; width: 130px; min-height: 80px; padding: 10px 12px; grid-template-columns: 32px 1fr; grid-template-rows: auto auto; align-items: center; border: 1px solid rgba(207,219,235,.95); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-tight); }
.node-icon { grid-row: 1 / 3; display: grid; width: 29px; height: 29px; place-items: center; border-radius: 9px; background: rgba(63,125,224,.1); color: var(--accent); font-size: 16px; font-weight: 800; }
.knowledge-map__node b { color: var(--brand-dark); font-size: 13px; }
.knowledge-map__node small { color: var(--muted); font-size: 10px; }
.node--law { top: 86px; left: 34px; }.node--risk { top: 86px; right: 34px; }.node--incident { bottom: 74px; left: 34px; }.node--roles { right: 34px; bottom: 74px; }
.knowledge-map__lines { position: absolute; inset: 53px 0 44px; z-index: 1; width: 100%; height: calc(100% - 97px); overflow: visible; }
.knowledge-map__lines path { fill: none; stroke: rgba(63,125,224,.28); stroke-dasharray: 5 6; stroke-width: 1.5; }
.knowledge-map__footer { position: absolute; inset: auto 20px 18px; z-index: 5; display: flex; justify-content: center; gap: 34px; padding-top: 14px; border-top: 1px solid rgba(217,226,238,.9); color: var(--muted); font-size: 11px; }
.knowledge-map__footer b { color: var(--brand); font-size: 14px; }

.knowledge-home-section {
  padding: 12px 34px 20px;
  background: radial-gradient(circle at 50% 0, rgba(229,239,255,.8) 0%, rgba(255,255,255,0) 42%), linear-gradient(180deg, #fbfdff 0%, #f8fbff 100%);
}
.knowledge-home-section > .container { width: 100%; max-width: none; margin: 0; padding: 0; }
.knowledge-home-panel { width: 100%; padding: 30px 30px 28px; border: 1px solid #d7e2f3; border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: 0 18px 36px rgba(17,45,94,.05); }
.knowledge-home-header { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: end; margin-bottom: 22px; }
.knowledge-home-eyebrow { display: inline-flex; margin: 0 0 12px; padding: 8px 14px; align-items: center; border: 1px solid #d7e3fb; border-radius: 999px; background: linear-gradient(180deg, #eef4ff 0%, #e7efff 100%); color: #2253cc; font-size: 13px; font-weight: 800; letter-spacing: -.01em; text-transform: uppercase; }
.knowledge-home-copy h2 { margin: 0 0 10px; color: #081f56; font-size: clamp(28px, 1.8vw, 42px); line-height: 1.08; letter-spacing: -.026em; }
.knowledge-home-copy > p:last-child { max-width: 900px; margin: 0; color: #536986; font-size: clamp(16px, .98vw, 19px); line-height: 1.7; font-weight: 500; letter-spacing: -.018em; }
.knowledge-home-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.knowledge-home-card { display: flex; min-width: 0; min-height: 100%; padding: 22px 22px 20px; flex-direction: column; border: 1px solid #dde6f3; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.95) 100%); box-shadow: 0 14px 28px rgba(17,45,94,.045); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.knowledge-home-card:hover { border-color: #c4d5ef; box-shadow: 0 18px 38px rgba(16,33,66,.08); transform: translateY(-2px); }
.knowledge-home-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; color: #5f78a2; font-size: 12px; line-height: 1.4; font-weight: 700; letter-spacing: -.012em; }
.knowledge-home-card__meta > * + *::before { margin-right: 8px; color: #aebbd0; content: "•"; }
.knowledge-home-card h3 { margin: 0 0 12px; color: #092457; font-size: clamp(20px, 1.3vw, 28px); line-height: 1.2; letter-spacing: -.02em; }
.knowledge-home-card h3 a { color: inherit; }
.knowledge-home-card h3 a:hover, .knowledge-home-card h3 a:focus-visible { color: #0f4bd8; }
.knowledge-home-card__excerpt { margin: 0; color: #536986; font-size: 15px; line-height: 1.72; font-weight: 500; letter-spacing: -.017em; }
.knowledge-home-card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.knowledge-home-card__chip { display: inline-flex; min-height: 30px; padding: 6px 11px; align-items: center; border: 1px solid #d7e5fb; border-radius: 999px; background: #edf4ff; color: #24457f; font-size: 12px; font-weight: 700; }
.knowledge-home-card__footer { margin-top: auto; padding-top: 18px; }
.knowledge-home-card__link { color: #0f4bd8; font-size: 14px; font-weight: 800; letter-spacing: -.014em; }
.knowledge-home-card__link:hover, .knowledge-home-card__link:focus-visible { text-decoration: underline; text-underline-offset: 3px; }

.knowledge { padding: 40px 0 62px; }
.knowledge__panel { padding: 46px; border: 1px solid rgba(217,226,238,.95); border-radius: 30px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 30px; }
.section-head > div:first-child { max-width: 740px; }
.section-head p:not(.section-kicker), .contact__head > p:last-child { margin: 0; color: var(--muted); }
.filter { display: flex; max-width: 100%; padding: 5px; gap: 4px; overflow-x: auto; border: 1px solid var(--line); border-radius: 13px; background: #f7f9fc; }
.filter__button { padding: 8px 11px; white-space: nowrap; border: 0; border-radius: 9px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 700; cursor: pointer; }
.filter__button.is-active { background: #fff; color: var(--brand); box-shadow: 0 4px 14px rgba(16,33,66,.09); }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.article-card { display: flex; min-width: 0; min-height: 334px; padding: 23px; flex-direction: column; border: 1px solid rgba(217,226,238,.95); border-radius: 20px; background: linear-gradient(180deg, #fff, #fbfcff); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.article-card:hover { border-color: #c4d5ef; box-shadow: 0 18px 38px rgba(16,33,66,.09); transform: translateY(-3px); }
.article-card[hidden] { display: none; }
.article-card--featured { background: linear-gradient(145deg, #0b2347, #153a73); }
.article-card--featured h3, .article-card--featured .article-card__link { color: #fff; }
.article-card--featured p { color: rgba(239,245,255,.83); }
.article-card--featured .article-card__meta { color: rgba(239,245,255,.72); }
.article-card--featured .article-card__meta span:first-child, .article-card--featured .article-card__tags span { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.1); color: #fff; }
.article-card--source { background: linear-gradient(150deg, #fbf6ea, #fff); }
.article-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; color: #79869a; font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .055em; }
.article-card__meta span:first-child { padding: 6px 8px; border: 1px solid rgba(63,125,224,.12); border-radius: 999px; background: rgba(63,125,224,.07); color: var(--brand); }
.article-card__meta > * + *::before { margin-right: 8px; color: #b6c0ce; content: "•"; }
.article-card__meta span:first-child::before { display: none; }
.article-card h3 { margin-bottom: 12px; font-size: 21px; line-height: 1.2; }
.article-card h3 a { color: inherit; }
.article-card h3 a:hover, .article-card h3 a:focus-visible { color: var(--accent); }
.article-card p { margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.66; }
.article-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.article-card__tags span { padding: 5px 8px; border: 1px solid rgba(21,58,115,.07); border-radius: 999px; background: rgba(21,58,115,.045); color: #4f6482; font-size: 10px; font-weight: 700; }
.article-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; color: var(--brand); font-size: 12px; font-weight: 800; }
.article-card__link span { color: var(--accent); font-size: 15px; }
.knowledge__note { margin: 25px 0 0; padding: 14px 16px; border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; background: #fdf9f0; color: #6f624b; font-size: 12px; }

.deadline { padding: 34px 0 62px; }
.deadline__panel { position: relative; display: grid; padding: 42px 46px; grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: 58px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; color: #fff; background: radial-gradient(circle at 100% 0, rgba(63,125,224,.28), transparent 31%), radial-gradient(circle at 4% 100%, rgba(10,156,177,.18), transparent 30%), linear-gradient(135deg, #0b2347, #153a73 62%, #22559d); box-shadow: 0 28px 68px rgba(11,35,71,.2); }
.section-kicker--light { color: #9adce6; }
.deadline h2 { margin-bottom: 12px; color: #fff; }
.deadline__copy > p:not(.section-kicker) { margin: 0 0 18px; color: rgba(239,245,255,.83); }
.deadline__copy a { color: #fff; font-size: 13px; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(255,255,255,.34); text-underline-offset: 4px; }
.deadline__steps { display: grid; align-content: center; gap: 10px; margin: 0; padding: 0; list-style: none; }
.deadline__steps li { display: flex; padding: 14px 16px; align-items: center; gap: 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 15px; background: rgba(255,255,255,.09); backdrop-filter: blur(8px); }
.deadline__steps li > span { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 10px; background: rgba(255,255,255,.11); color: #9adce6; font-weight: 800; }
.deadline__steps b, .deadline__steps small { display: block; }.deadline__steps b { font-size: 13px; }.deadline__steps small { margin-top: 2px; color: rgba(239,245,255,.68); font-size: 11px; }

.contact-mockup-section { padding: 30px 34px 32px; overflow: hidden; background: radial-gradient(circle at 50% 0, rgba(228,240,255,.6) 0%, rgba(255,255,255,0) 42%), linear-gradient(180deg, #fbfdff 0%, #f7faff 100%); }
.contact-mockup-section > .container { width: 100%; max-width: none; margin: 0; padding: 0; }
.contact-mockup-panel { width: 100%; padding: 38px 42px 34px; border: 1px solid #dfe6f4; border-radius: 32px; background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(248,251,255,.95) 100%); box-shadow: 0 22px 46px rgba(17,45,94,.066), inset 0 1px 0 rgba(255,255,255,.96); }
.contact-mockup-header { margin-bottom: 24px; }
.contact-mockup-header h2 { margin: 0 0 12px; color: #0b2559; font-size: clamp(32px, 2.18vw, 52px); line-height: 1.1; letter-spacing: -.022em; }
.contact-mockup-header p { max-width: 1080px; margin: 0; color: #5a7094; font-size: clamp(16px, 1vw, 20px); line-height: 1.64; font-weight: 500; letter-spacing: -.018em; }
.contact-mockup-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 20px; align-items: stretch; }
.contact-mock-card { min-height: 100%; padding: 24px 24px 22px; border: 1px solid #e1e8f6; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(248,251,255,.92) 100%); box-shadow: 0 14px 30px rgba(17,45,94,.04); }
.contact-mock-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-mock-card__icon { display: inline-flex; width: 48px; height: 48px; flex: 0 0 48px; align-items: center; justify-content: center; border: 1px solid #e0e8fb; border-radius: 50%; background: linear-gradient(180deg, #f4f8ff 0%, #edf3ff 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.94); color: #2f72ef; }
.contact-mock-card__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.contact-mock-card h3 { margin: 0; color: #112962; font-family: var(--font-ui); font-size: clamp(18px, 1.08vw, 24px); line-height: 1.24; font-weight: 800; letter-spacing: -.028em; }
.contact-mock-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.contact-mock-list li { display: flex; align-items: flex-start; gap: 10px; color: #4f6588; font-size: clamp(14px, .88vw, 16px); line-height: 1.64; font-weight: 500; letter-spacing: -.014em; }
.contact-mock-list li::before { width: 8px; height: 8px; flex: 0 0 8px; margin-top: 8px; border-radius: 50%; background: linear-gradient(180deg, #4f89f7 0%, #2f72ef 100%); box-shadow: 0 0 0 4px rgba(47,114,239,.08); content: ""; }
.contact-mock-card__eyebrow { margin: 0 0 10px; color: #34507f; font-size: 13px; line-height: 1.3; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.contact-mock-card__eyebrow--spaced { margin-top: 16px; }
.contact-mock-card__text { margin: 0; color: #4f6588; font-size: clamp(14px, .88vw, 16px); line-height: 1.68; font-weight: 500; letter-spacing: -.014em; }
.contact-mock-brandmark { width: clamp(94px, 8vw, 132px); padding: 8px 10px; margin-left: auto; flex: 0 0 auto; border: 1px solid rgba(214,225,244,.92); border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(244,248,255,.94) 100%); box-shadow: 0 10px 22px rgba(17,45,94,.05); }
.contact-mock-brandmark img { width: 100%; height: auto; max-height: 76px; object-fit: contain; }
.contact-mock-mail { display: inline-block; margin-top: 0; color: #214d97; font-size: clamp(18px, 1.02vw, 21px); line-height: 1.4; font-weight: 600; letter-spacing: -.012em; }
.contact-mock-mail:hover, .contact-mock-mail:focus-visible { color: #2f72ef; }
.contact-mock-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.contact-mock-actions .btn { min-height: 48px; padding-inline: 18px; border-radius: 12px; }
.contact-mock-note { margin: 18px 0 0; padding: 14px 16px; border: 1px solid #e2e9f7; border-radius: 16px; background: linear-gradient(180deg, #f6f9fe 0%, #eff4fc 100%); color: #4f6588; font-size: clamp(14px, .87vw, 16px); line-height: 1.62; font-weight: 600; letter-spacing: -.014em; }
.contact-mock-note strong { color: #17336f; }

@media (max-width: 1700px) {
  .contact-mockup-section { padding-inline: 28px; }
}

@media (max-width: 980px) {
  .contact-mockup-section { padding-top: 24px; }
  .contact-mockup-panel { padding: 30px 24px 24px; }
  .contact-mockup-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .contact-mockup-section { padding: 24px 18px 22px; }
  .contact-mockup-panel { padding: 26px 18px 20px; border-radius: 26px; }
  .contact-mockup-header { margin-bottom: 18px; }
  .contact-mock-card { padding: 20px 18px 18px; }
  .contact-mock-brandmark { width: 92px; padding: 7px 9px; border-radius: 14px; }
  .contact-mock-actions .btn { width: 100%; }
}

.other-systems { padding: 0 0 72px; }
.other-systems__panel { padding: 34px 38px 38px; border: 1px solid rgba(217,226,238,.95); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(242,247,253,.96)); box-shadow: var(--shadow); }
.other-systems__head { margin-bottom: 20px; }
.other-systems__head h2 { margin-bottom: 0; font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.other-system-card { display: grid; padding: 22px 24px; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 20px; border: 1px solid #d9e4f2; border-radius: 18px; background: #fff; box-shadow: 0 13px 30px rgba(16,33,66,.07); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.other-system-card:hover, .other-system-card:focus-visible { border-color: #bdd1ef; box-shadow: 0 18px 40px rgba(16,33,66,.12); transform: translateY(-2px); outline: none; }
.other-system-card__mark { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(145deg, var(--brand), #1f5ca8); box-shadow: 0 12px 26px rgba(21,58,115,.2); font-family: var(--font-heading); font-size: 20px; font-weight: 800; }
.other-system-card__copy { display: flex; min-width: 0; flex-direction: column; }
.other-system-card__eyebrow { margin-bottom: 4px; color: var(--cyan-dark); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.other-system-card__copy strong { color: var(--brand-dark); font-family: var(--font-heading); font-size: 23px; letter-spacing: -.02em; }
.other-system-card__copy > span:last-child { margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.other-system-card__action { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); font-size: 12px; font-weight: 800; white-space: nowrap; }
.other-system-card__action span { color: var(--accent); font-size: 15px; }

.footer { padding: 26px 0 32px; border-top: 1px solid var(--line); background: #fff; }
.footer__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px 60px; align-items: start; }
.footer__brand img { width: auto; height: 92px; object-fit: contain; }.footer__brand p { max-width: 440px; margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.footer__links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 28px; color: #355071; font-size: 13px; font-weight: 650; }
.footer__links a:hover { color: var(--accent); }
.footer__documents { grid-column: 1 / -1; }
.footer__title { margin: 0 0 14px; color: var(--brand-dark); font-family: var(--font-heading); font-size: 19px; }
.footer__document-links { display: flex; flex-wrap: wrap; gap: 10px 28px; color: #355071; font-size: 13px; font-weight: 650; }
.footer__document-links a:hover { color: var(--accent); }
.footer__bottom { display: flex; grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid #e4e9f1; align-items: center; justify-content: space-between; gap: 18px; }
.footer__copy { margin: 0; color: #7a879a; font-size: 11px; }
.footer__cookie-manage { appearance: none; padding: 0; border: 0; color: var(--brand); background: transparent; font: inherit; font-size: 11px; font-weight: 750; cursor: pointer; }
.footer__cookie-manage:hover, .footer__cookie-manage:focus-visible { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Dedykowana baza wiedzy */
.knowledge-page { background: linear-gradient(180deg, #f8fbff 0%, #fff 45%, #f8fafc 100%); }
.knowledge-page-hero { padding: 52px 0 58px; border-bottom: 1px solid rgba(217,226,238,.9); background: radial-gradient(760px 360px at 85% 0, rgba(63,125,224,.14), transparent 62%), radial-gradient(620px 320px at 8% 10%, rgba(207,164,90,.1), transparent 60%), #fff; }
.knowledge-page-hero .breadcrumb { margin-bottom: 34px; }
.knowledge-page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 64px; align-items: end; }
.knowledge-page-hero h1 { max-width: 820px; margin: 0 0 20px; font-size: clamp(34px, 2.7vw, 58px); line-height: 1.04; }
.knowledge-page-hero__lead { max-width: 760px; margin: 0; color: #516178; font-size: clamp(17px, 1.02vw, 21px); line-height: 1.7; }
.knowledge-page-hero__actions { display: flex; margin-top: 27px; }
.knowledge-page-hero__aside { padding: 24px; border: 1px solid #d6e2f2; border-radius: 21px; background: rgba(255,255,255,.86); box-shadow: var(--shadow-tight); }
.knowledge-page-hero__aside p { margin: 0; color: #53647c; font-size: 15px; line-height: 1.72; }
.knowledge-page-hero__aside .knowledge-page-hero__aside-label { margin-bottom: 9px; color: var(--brand-dark); font-family: var(--font-ui); font-size: 15px; font-weight: 800; line-height: 1.4; }
.knowledge-page-hero__aside span { display: inline-flex; margin-top: 17px; padding: 7px 10px; border-radius: 999px; background: #edf4ff; color: var(--brand); font-size: 11px; font-weight: 800; }
.knowledge-page-list { padding: 56px 0 70px; }
.knowledge-page-list .knowledge__panel { padding: 42px; }
.knowledge-page-cta { padding: 0 0 72px; }
.knowledge-page-cta__panel { display: flex; padding: 36px 40px; align-items: center; justify-content: space-between; gap: 34px; border-radius: 26px; color: #fff; background: radial-gradient(circle at 100% 0, rgba(63,125,224,.3), transparent 34%), linear-gradient(135deg, var(--brand-dark), var(--brand) 62%, #2458a3); box-shadow: 0 24px 56px rgba(11,35,71,.2); }
.knowledge-page-cta h2 { margin-bottom: 10px; color: #fff; font-size: 34px; }
.knowledge-page-cta p:not(.section-kicker) { max-width: 760px; margin: 0; color: rgba(239,245,255,.82); font-size: 14px; }

/* Artykuł bazy wiedzy */
.article-page { background: linear-gradient(180deg, #f7faff 0%, #fff 38%, #f8fafc 100%); }
.article-hero { padding: 54px 0 48px; border-bottom: 1px solid rgba(217,226,238,.9); background: radial-gradient(760px 360px at 85% 0, rgba(63,125,224,.14), transparent 62%), radial-gradient(620px 320px at 8% 10%, rgba(207,164,90,.1), transparent 60%), #fff; }
.article-hero__inner { max-width: 980px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: #77869a; font-size: 12px; }
.breadcrumb a:hover { color: var(--accent); }
.article-hero h1 { max-width: 940px; margin-bottom: 22px; font-size: clamp(34px, 2.7vw, 58px); line-height: 1.04; }
.article-hero__lead { max-width: 780px; margin: 0; color: #516178; font-size: clamp(17px, 1.02vw, 21px); line-height: 1.7; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 26px; color: #6c7b90; font-size: 12px; }
.article-meta span { display: inline-flex; gap: 5px; }
.article-meta b { color: var(--brand-dark); }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 820px); justify-content: center; gap: 42px; padding-top: 56px; padding-bottom: 72px; align-items: start; }
.article-toc { position: sticky; top: 112px; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-tight); }
.article-toc > strong { display: block; margin-bottom: 13px; color: var(--brand-dark); font-size: 13px; }
.article-toc ol, .article-toc-mobile ol { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.article-toc a, .article-toc-mobile a { color: #65758b; font-size: 11px; line-height: 1.4; }
.article-toc a:hover, .article-toc-mobile a:hover { color: var(--accent); }
.article-toc-mobile { display: none; margin-bottom: 26px; padding: 15px 17px; border: 1px solid var(--line); border-radius: 13px; background: #f8fafd; }
.article-toc-mobile summary { cursor: pointer; color: var(--brand-dark); font-weight: 800; }
.article-toc-mobile[open] summary { margin-bottom: 14px; }
.article-content { min-width: 0; padding: 38px 44px 46px; border: 1px solid rgba(217,226,238,.94); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.article-content > p:first-of-type { margin-top: 0; font-size: 18px; color: #3f5067; }
.article-content h2 { margin: 58px 0 18px; padding-top: 8px; font-size: clamp(24px, 1.7vw, 34px); line-height: 1.16; scroll-margin-top: 112px; }
.article-content h2:first-of-type { margin-top: 44px; }
.article-content h3 { margin: 38px 0 14px; color: #12305f; font-size: clamp(20px, 1.35vw, 28px); line-height: 1.22; scroll-margin-top: 112px; }
.article-content h4 { margin: 30px 0 12px; color: #163965; font-size: 20px; line-height: 1.25; scroll-margin-top: 112px; }
.article-content p, .article-content li { color: #3f4d62; font-size: 16px; line-height: 1.78; }
.article-content p { margin: 0 0 20px; }
.article-content ul, .article-content ol { display: grid; gap: 8px; margin: 0 0 24px; padding-left: 24px; }
.article-content li::marker { color: var(--accent); font-weight: 800; }
.article-content blockquote { margin: 28px 0; padding: 20px 22px; border: 1px solid #d8e4f4; border-left: 4px solid var(--cyan); border-radius: 0 14px 14px 0; background: #f5f9fe; }
.article-content blockquote p { margin: 0; color: #163b62; font-family: var(--font-heading); font-size: 21px; line-height: 1.5; }
.article-content a { color: #1f5bb4; font-weight: 650; text-decoration: underline; text-decoration-color: rgba(31,91,180,.28); text-underline-offset: 3px; }
.article-content a:hover { color: var(--brand-dark); text-decoration-color: currentColor; }
.article-content hr { height: 1px; margin: 46px 0; border: 0; background: var(--line); }
.article-table-wrap { max-width: 100%; margin: 26px 0 30px; overflow-x: auto; border: 1px solid var(--line); border-radius: 15px; }
.article-table-wrap table { width: 100%; min-width: 760px; border-collapse: collapse; background: #fff; }
.article-table-wrap th, .article-table-wrap td { padding: 13px 15px; border-bottom: 1px solid #e4eaf2; text-align: left; vertical-align: top; font-size: 12px; line-height: 1.5; }
.article-table-wrap th { color: #fff; background: var(--brand); font-weight: 750; }
.article-table-wrap tr:last-child td { border-bottom: 0; }
.article-table-wrap tbody tr:nth-child(even) { background: #f8fafd; }
.article-next { padding: 0 0 72px; }
.article-next__panel { display: flex; padding: 34px 38px; align-items: center; justify-content: space-between; gap: 30px; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--brand-dark), var(--brand) 62%, #2458a3); box-shadow: 0 24px 56px rgba(11,35,71,.2); }
.article-next h2 { margin-bottom: 9px; color: #fff; font-size: 32px; }
.article-next p:not(.section-kicker) { max-width: 650px; margin: 0; color: rgba(239,245,255,.82); font-size: 14px; }
.btn--light { flex: 0 0 auto; color: var(--brand-dark); background: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.btn--light:hover { background: #f5f8fd; }

/* Strony informacyjne */
.info-page { background: linear-gradient(180deg, #f7faff 0%, #fff 46%, #f8fafc 100%); }
.info-hero { padding: 52px 0 48px; border-bottom: 1px solid rgba(217,226,238,.9); background: radial-gradient(760px 360px at 85% 0, rgba(63,125,224,.14), transparent 62%), radial-gradient(620px 320px at 8% 10%, rgba(207,164,90,.1), transparent 60%), #fff; }
.info-hero__inner { max-width: 880px; }
.info-hero h1 { margin: 0 0 18px; font-size: clamp(34px, 2.7vw, 56px); line-height: 1.05; }
.info-hero__lead { max-width: 760px; margin: 0; color: #516178; font-size: clamp(17px, 1.02vw, 20px); line-height: 1.7; }
.info-layout { display: grid; grid-template-columns: minmax(0, 820px) 280px; padding-top: 52px; padding-bottom: 70px; justify-content: center; gap: 42px; align-items: start; }
.info-content { padding: 36px 42px 42px; border: 1px solid rgba(217,226,238,.94); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.info-content h2 { margin: 44px 0 16px; color: var(--brand-dark); font-size: clamp(24px, 1.65vw, 32px); line-height: 1.2; }
.info-content h2:first-child { margin-top: 0; }
.info-content h3 { margin: 30px 0 12px; color: #12305f; font-size: 21px; }
.info-content p, .info-content li { color: #3f4d62; font-size: 15px; line-height: 1.75; }
.info-content p { margin: 0 0 18px; }
.info-content ul, .info-content ol { display: grid; gap: 8px; margin: 0 0 22px; padding-left: 23px; }
.info-content li::marker { color: var(--accent); font-weight: 800; }
.info-content a { color: #1f5bb4; font-weight: 650; text-decoration: underline; text-decoration-color: rgba(31,91,180,.28); text-underline-offset: 3px; }
.info-content a:hover { color: var(--brand-dark); text-decoration-color: currentColor; }
.info-aside { position: sticky; top: 112px; padding: 22px; border: 1px solid #d6e2f2; border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-tight); }
.info-aside strong { display: block; margin-bottom: 9px; color: var(--brand-dark); font-size: 14px; }
.info-aside p { margin: 0 0 14px; color: #617188; font-size: 12px; line-height: 1.65; }
.info-aside p:last-child { margin-bottom: 0; }
.info-aside .cookie-manage-inline { appearance: none; padding: 0; border: 0; color: var(--brand); background: none; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }
.info-aside .cookie-manage-inline:hover { color: var(--accent); text-decoration: underline; }

/* Panel zgód cookies */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.cookie-modal-open { overflow: hidden; }
.cookie-banner { position: fixed; right: 20px; bottom: 20px; left: 20px; z-index: 9999; display: none; }
.cookie-banner.is-visible { display: block; }
.cookie-card { max-width: 980px; margin: 0 auto; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 24px 70px rgba(11,35,71,.2); }
.cookie-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 18px; align-items: start; }
.cookie-badge { display: inline-flex; margin-bottom: 10px; padding: 7px 11px; border-radius: 999px; color: var(--brand); background: rgba(21,58,115,.08); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.cookie-title { margin: 0 0 8px; color: var(--brand-dark); font-family: var(--font-heading); font-size: 22px; line-height: 1.2; }
.cookie-desc { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.cookie-btn { appearance: none; padding: 10px 16px; border: 0; border-radius: 999px; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; transition: background-color .2s, color .2s, border-color .2s; }
.cookie-btn--primary { color: #fff; background: var(--brand); }
.cookie-btn--primary:hover, .cookie-btn--primary:focus-visible { background: var(--brand-dark); }
.cookie-btn--ghost { border: 1px solid rgba(21,58,115,.18); color: var(--brand); background: #fff; }
.cookie-btn--ghost:hover, .cookie-btn--ghost:focus-visible { border-color: var(--brand); background: #f7faff; }
.cookie-btn--text { padding-right: 3px; padding-left: 3px; color: var(--brand); background: transparent; }
.cookie-btn--text:hover, .cookie-btn--text:focus-visible { color: var(--accent); text-decoration: underline; }
.cookie-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 12px; font-size: 11px; font-weight: 750; }
.cookie-links a { color: var(--brand); }
.cookie-links a:hover { color: var(--accent); }
.cookie-prefs { display: grid; gap: 10px; }
.cookie-option { padding: 12px 14px; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); }
.cookie-option-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.cookie-option h3 { margin: 0; color: var(--brand-dark); font-family: var(--font-ui); font-size: 13px; }
.cookie-option p { margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.cookie-option-head > span { color: #708097; font-size: 10px; font-weight: 700; }
.cookie-switch { position: relative; display: inline-flex; flex: 0 0 auto; align-items: center; }
.cookie-switch input { position: relative; width: 42px; height: 24px; margin: 0; appearance: none; border-radius: 999px; outline: none; background: #cfdae8; cursor: pointer; transition: background-color .2s; }
.cookie-switch input::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: left .2s; }
.cookie-switch input:checked { background: var(--brand); }
.cookie-switch input:checked::after { left: 21px; }
.cookie-switch input:focus-visible { outline: 3px solid rgba(63,125,224,.3); outline-offset: 3px; }
.cookie-switch input:disabled { opacity: .65; cursor: not-allowed; }
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; padding: 20px; align-items: center; justify-content: center; background: rgba(10,40,95,.38); backdrop-filter: blur(4px); }
.cookie-modal.is-visible { display: flex; }
.cookie-modal-card { width: min(760px,100%); max-height: min(88vh,900px); padding: 22px; overflow: auto; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 24px 60px rgba(11,35,71,.22); }
.cookie-modal-top { display: flex; margin-bottom: 14px; align-items: flex-start; justify-content: space-between; gap: 12px; }
.cookie-close { color: var(--brand); background: rgba(21,58,115,.08); }
.cookie-close:hover, .cookie-close:focus-visible { background: rgba(21,58,115,.14); }

@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .hero__copy { max-width: 800px; }
  .hero h1 { max-width: 850px; }
  .hero__visual { max-width: 720px; width: 100%; margin-top: 0; margin-inline: auto; }
  .knowledge-home-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .knowledge-home-header { grid-template-columns: 1fr; align-items: start; }
  .knowledge-page-hero__grid { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .knowledge-page-hero__aside { max-width: 720px; }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { align-items: flex-start; flex-direction: column; gap: 22px; }
  .deadline__panel { grid-template-columns: 1fr; gap: 30px; }
  .article-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 24px; }
  .info-layout { grid-template-columns: minmax(0, 820px); }
  .info-aside { position: static; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 1160px); }
  .nav__inner { min-height: 76px; }
  .brand img { width: auto; height: 62px; max-width: 68vw; }
  .nav__toggle { display: flex; }
  .menu { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 12px 16px 18px; align-items: stretch; flex-direction: column; gap: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 14px 30px rgba(16,33,66,.09); }
  .nav.is-open .menu { display: flex; }
  .menu > a:not(.btn) { min-height: 46px; padding: 13px 12px; }
  .menu .btn { margin-top: 8px; }
  .hero { padding: 54px 0 48px; }
  .hero h1 { font-size: clamp(30px, 8.2vw, 42px); }
  .knowledge-home-panel { padding: 24px 22px; }
  .knowledge-home-grid { grid-template-columns: 1fr; }
  .knowledge-page-hero { padding: 42px 0; }
  .knowledge-page-cta__panel { align-items: flex-start; flex-direction: column; }
  .knowledge__panel, .contact__panel { padding: 30px; }
  .contact__grid { grid-template-columns: 1fr; }
  .article-hero { padding: 42px 0 38px; }
  .article-layout { display: block; padding-top: 34px; padding-bottom: 50px; }
  .article-toc { display: none; }
  .article-toc-mobile { display: block; }
  .article-content { padding: 30px; }
  .article-next__panel { align-items: flex-start; flex-direction: column; }
  .cookie-grid { grid-template-columns: 1fr; }
  .cookie-prefs--summary { display: none; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 80px; }
  .container { width: min(100% - 24px, 1160px); }
  .hero { padding-top: 42px; }
  .eyebrow { align-items: flex-start; font-size: 10px; line-height: 1.5; }
  .eyebrow__dot { margin-top: 3px; flex: 0 0 auto; }
  .hero h1 { font-size: clamp(30px, 8.2vw, 42px); }
  .hero__lead { font-size: 15px; }
  .hero__actions .btn { width: 100%; }
  .hero__proofs { align-items: flex-start; flex-direction: column; gap: 11px; }
  .knowledge-home-section { padding: 14px 18px 10px; }
  .knowledge-home-panel { padding: 20px 18px; }
  .knowledge-home-actions .btn { width: 100%; }
  .knowledge-page-hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .knowledge-page-hero__lead { font-size: 15px; }
  .knowledge-page-hero__actions .btn { width: 100%; }
  .knowledge-page-list .knowledge__panel { padding: 24px 18px; }
  .knowledge-page-cta__panel { width: calc(100% - 16px); padding: 28px 21px; }
  .knowledge-page-cta h2 { font-size: 29px; }
  .knowledge-page-cta .btn { width: 100%; }
  .knowledge-map { min-height: 420px; }
  .knowledge-map__topline { padding: 15px; }.status-date { display: none; }
  .knowledge-map__core { width: 142px; height: 142px; }.core-ring { inset: -12px; }.core-ring--two { inset: -25px; }
  .knowledge-map__node { width: 104px; min-height: 67px; padding: 8px; grid-template-columns: 25px 1fr; }.node-icon { width: 23px; height: 23px; font-size: 13px; }
  .knowledge-map__node b { font-size: 11px; }.knowledge-map__node small { font-size: 8px; }
  .node--law, .node--incident { left: 12px; }.node--risk, .node--roles { right: 12px; }.node--law, .node--risk { top: 72px; }.node--incident, .node--roles { bottom: 65px; }
  .knowledge-map__footer { gap: 16px; }
  .knowledge__panel, .contact__panel { width: calc(100% - 16px); padding: 22px 18px; }
  .filter { width: 100%; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 0; }
  .deadline { padding-top: 22px; }.deadline__panel { padding: 28px 20px; }
  .contact-list { grid-template-columns: 1fr; }.contact-list > :last-child { grid-column: auto; }
  .contact__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }.footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .article-hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .article-hero__lead { font-size: 15px; }
  .article-meta { align-items: flex-start; flex-direction: column; }
  .article-content { padding: 22px 18px 28px; border-radius: 18px; }
  .article-content h2 { margin-top: 46px; font-size: 28px; }
  .article-content h3 { font-size: 23px; }
  .article-content h4 { font-size: 19px; }
  .article-content p, .article-content li { font-size: 15px; }
  .article-content blockquote { padding: 17px; }
  .article-content blockquote p { font-size: 19px; }
  .article-next__panel { padding: 27px 21px; }
  .article-next .btn { width: 100%; }
  .other-systems { padding-bottom: 48px; }
  .other-systems__panel { width: calc(100% - 16px); padding: 24px 18px; }
  .other-system-card { padding: 18px; grid-template-columns: auto minmax(0, 1fr); gap: 14px; }
  .other-system-card__mark { width: 48px; height: 48px; font-size: 17px; }
  .other-system-card__copy strong { font-size: 20px; }
  .other-system-card__action { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid #e5ebf3; }
  .info-hero { padding: 42px 0 38px; }
  .info-hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .info-layout { padding-top: 34px; padding-bottom: 50px; }
  .info-content { padding: 24px 19px 28px; border-radius: 18px; }
  .cookie-banner { right: 12px; bottom: 12px; left: 12px; }
  .cookie-card { padding: 16px; }
  .cookie-modal { padding: 12px; }
  .cookie-modal-card { padding: 18px; }
  .cookie-option-head { align-items: flex-start; }
}

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