/* =========================================================
   Novus Pharma Distribution — theme styles
   Restrained corporate design: blue palette, hairline borders,
   Archivo display + Inter text, no decorative noise.
   ========================================================= */

/* ---------- Fonts (self-hosted, latin + latin-ext) ---------- */
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; unicode-range: U+0000-00FF, U+2000-206F; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-ext-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; unicode-range: U+0100-024F, U+1E00-1EFF, U+0218-021B; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; unicode-range: U+0000-00FF, U+2000-206F; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-ext-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; unicode-range: U+0100-024F, U+1E00-1EFF, U+0218-021B; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; unicode-range: U+0000-00FF, U+2000-206F; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-ext-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; unicode-range: U+0100-024F, U+1E00-1EFF, U+0218-021B; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; unicode-range: U+0000-00FF, U+2000-206F; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-latin-ext-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; unicode-range: U+0100-024F, U+1E00-1EFF, U+0218-021B; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-latin-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; unicode-range: U+0000-00FF, U+2000-206F; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-latin-ext-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; unicode-range: U+0100-024F, U+1E00-1EFF, U+0218-021B; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-latin-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; unicode-range: U+0000-00FF, U+2000-206F; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-latin-ext-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; unicode-range: U+0100-024F, U+1E00-1EFF, U+0218-021B; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-latin-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; unicode-range: U+0000-00FF, U+2000-206F; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-latin-ext-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; unicode-range: U+0100-024F, U+1E00-1EFF, U+0218-021B; }

/* ---------- Tokens ---------- */
:root {
	--sans: 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;
	--display: 'Archivo', 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;

	--ink: #14222f;
	--body-c: #3d4c5c;
	--muted: #64748b;

	--navy: #0d3b63;
	--navy-deep: #092b49;
	--blue: #1e6cad;
	--blue-soft: #e9f1f8;
	--line: #dde6ee;
	--bg-soft: #f5f8fb;
	--white: #fff;
	--ok: #1a7f4e;
	--err: #b3372c;

	--r: 2px;
	--wrap: 1160px;
	--shadow: 0 14px 34px -18px rgba(9, 43, 73, .22);
	/* Stepped offset shadow for imagery, in quiet brand navy. */
	--stack-shadow: rgba(13, 59, 99, .4) 5px 5px, rgba(13, 59, 99, .3) 10px 10px,
		rgba(13, 59, 99, .2) 15px 15px, rgba(13, 59, 99, .1) 20px 20px,
		rgba(13, 59, 99, .05) 25px 25px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--body-c);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.22; margin: 0 0 .55em; }
h1, h2 { font-family: var(--display); font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(1.85rem, 1.2rem + 2.2vw, 2.7rem); }
h2 { font-size: clamp(1.45rem, 1.1rem + 1.2vw, 1.9rem); }
h3, .h3 { font-size: 1.16rem; font-weight: 600; font-family: var(--sans); }
h4, .h4 { font-size: 1rem; font-weight: 600; font-family: var(--sans); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ----------
   Slanted parallelograms (both edges inclined, "\" lean). The shape is a
   skewX(-30deg) pseudo-element behind the label, so 1px borders stay
   perfectly crisp — no gradient/clip artefacts. Labels stay straight. */
.btn {
	--slant: 28px; /* ≈ 0.577 × button height, keeps the 30° angle */
	--bw: 1px;
	position: relative; isolation: isolate;
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--sans); font-size: .92rem; font-weight: 600; line-height: 1;
	padding: 16px calc(18px + var(--slant) / 2);
	border: 0; border-radius: 0; background: none; cursor: pointer;
	transition: color .18s;
}
.btn::before {
	content: ""; position: absolute; inset: 0 calc(var(--slant) / 2); z-index: -1;
	transform: skewX(-30deg);
	transition: background-color .18s, border-color .18s;
}
.btn--solid { color: #fff; }
.btn--solid::before { background: var(--navy); }
.btn--solid:hover { color: #fff; }
.btn--solid:hover::before { background: var(--navy-deep); }
.btn--line { color: var(--navy); }
.btn--line::before { border: var(--bw) solid rgba(13, 59, 99, .35); background: transparent; }
.btn--line:hover { color: var(--navy); }
.btn--line:hover::before { border-color: rgba(13, 59, 99, .6); background: var(--blue-soft); }
.btn--light { color: var(--navy); }
.btn--light::before { background: #fff; }
.btn--light:hover { color: var(--navy-deep); }
.btn--light:hover::before { background: var(--blue-soft); }
.btn--sm { --slant: 22px; padding: 12px calc(12px + var(--slant) / 2); font-size: .85rem; }
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* Interlocking hero button pair (homepage): both buttons keep the global
   slanted shape; hovering one makes it grow while the other gives way. */
.hero .hero__actions {
	--h: 50px;
	display: flex; flex-wrap: nowrap; gap: 10px;
	width: min(480px, 100%);
}
.hero .hero__actions .btn {
	--slant: calc(0.577 * var(--h));
	flex: calc(1 + var(--_s, 0));
	min-width: 0;
	height: var(--h);
	padding: 0 calc(14px + var(--slant) / 2);
	white-space: nowrap;
	transition: flex .35s ease, background-color .18s, color .18s, border-color .18s;
}
.hero .hero__actions .btn--solid { margin-right: calc(-1 * var(--slant) / 2); }
.hero .hero__actions .btn--line { margin-left: calc(-1 * var(--slant) / 2); }
.hero .hero__actions .btn:hover,
.hero .hero__actions .btn:active { --_s: .3; }

@media (max-width: 560px) {
	.hero .hero__actions { display: grid; width: 100%; }
	.hero .hero__actions .btn { height: auto; padding: 14px calc(18px + var(--slant) / 2); margin: 0; white-space: normal; }
}

/* ---------- Kicker / section heads ---------- */
.kicker {
	font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
	color: var(--blue); margin: 0 0 14px;
}
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-lead, .lead { font-size: 1.08rem; color: var(--body-c); }
.lead { max-width: 56ch; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-deep); color: rgba(255, 255, 255, .85); font-size: .8rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; }
.topbar__contacts { display: flex; gap: 22px; }
.topbar__contacts a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, .85); }
.topbar__contacts a:hover { color: #fff; }
.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-switch__item {
	padding: 3px 8px; border-radius: var(--r); color: rgba(255, 255, 255, .7);
	font-weight: 600; letter-spacing: .04em;
}
a.lang-switch__item:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.lang-switch__item.is-active { background: rgba(255, 255, 255, .16); color: #fff; }

/* ---------- Header / nav ---------- */
.site-head { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.site-head__in { display: flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; display: grid; place-items: center; flex: none; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.14; }
.brand__text strong { color: var(--ink); font-size: 1.02rem; font-weight: 700; letter-spacing: .01em; }
.brand__text em { font-style: normal; color: var(--muted); font-size: .68rem; font-weight: 600; letter-spacing: .345em; margin-right: -.345em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.site-nav__list > li { position: relative; }
.site-nav__list > li > a {
	display: block; padding: 10px 13px; color: var(--ink); font-size: .95rem; font-weight: 500;
	border-radius: var(--r);
}
.site-nav__list > li > a:hover { color: var(--navy); background: var(--blue-soft); }
.site-nav__list > li.current-menu-item > a,
.site-nav__list > li.current-menu-ancestor > a,
.site-nav__list > li.current_page_item > a,
.site-nav__list > li.current_page_ancestor > a { color: var(--navy); box-shadow: inset 0 -2px 0 var(--navy); border-radius: 0; }

.site-nav__list .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 270px; padding: 8px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
	list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .16s, transform .16s, visibility .16s;
}
.site-nav__list > li:hover > .sub-menu,
.site-nav__list > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav__list .sub-menu a { display: block; padding: 10px 12px; color: var(--ink); font-size: .9rem; border-radius: var(--r); }
.site-nav__list .sub-menu a:hover { background: var(--blue-soft); color: var(--navy); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--r); padding: 10px; cursor: pointer; }
.nav-toggle__bars { display: block; width: 20px; }
.nav-toggle__bars i { display: block; height: 2px; background: var(--ink); margin: 4px 0; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero (home) — "Fișa 30°" ----------
   The 30° slant of the buttons becomes the organizing geometry of the
   whole hero: a flat blue-soft parallelogram plate carries the licence
   data as display typography, hairline rulers restate the same angle,
   and the credentials repeat in a numbered rail. Plate and rulers are
   bottom-anchored so the clip edge and ruler A stay colinear (both run
   x = 254px over the 440px plate height, tan 30°) at any stage height. */
.hero { background: #fff; overflow: hidden; }
.hero__stage { position: relative; min-height: 504px; }
.hero__copy { position: relative; z-index: 3; max-width: 600px; padding: 56px 0 44px; }
.hero__copy h1 { margin-bottom: .5em; }
.hero__copy .lead { max-width: 500px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 6px; }
.kicker--tick { display: flex; align-items: center; }
.kicker--tick::before { content: ''; width: 9px; height: 9px; background: var(--blue); transform: skewX(-30deg); margin-right: 12px; }

.hero__plate { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__plate-panel {
	position: absolute; top: 0; bottom: 0; right: 24px; width: 560px;
	background: var(--blue-soft);
}
.hero__plate-panel i { position: absolute; inset: 0; display: block; background-size: cover; background-position: center; }
/* Skewed white mask carves the 30° left edge at any panel height (a fixed
   clip-path length can't stay 30° when the hero grows). Its skewed right
   edge runs from the panel's bottom-left corner up the ruler-A line. */
.hero__plate-panel::before {
	content: ''; position: absolute; top: 0; bottom: 0; right: 100%; width: 420px;
	background: #fff; transform: skewX(-30deg); transform-origin: bottom right; z-index: 1;
}
.hero__ruler { position: absolute; top: 0; bottom: 0; width: 1px; background: var(--line); transform: skewX(-30deg); transform-origin: bottom left; }
.hero__ruler--a { right: 584px; }
.hero__ruler--b { right: 636px; }

.hero__rail { background: var(--bg-soft); border-top: 1px solid var(--line); }
.hero__points { list-style: none; display: flex; min-height: 80px; }
.hero__points li { flex: 1; position: relative; display: flex; align-items: center; padding: 10px 18px 10px 0; font-size: .8rem; line-height: 1.5; color: var(--body-c); }
.hero__points li + li { padding-left: 64px; }
.hero__points li + li::after { content: ''; position: absolute; left: 0; bottom: 0; height: 80px; width: 1px; background: rgba(13, 59, 99, .16); transform: skewX(-30deg); transform-origin: bottom left; }

/* ---------- Credo ---------- */
.credo { background: var(--navy); }
.credo blockquote {
	margin: 0; padding: 58px 0 16px; max-width: 880px;
	font-family: var(--display); font-size: clamp(1.15rem, 1rem + 1vw, 1.5rem); font-weight: 500;
	color: #fff; line-height: 1.5;
}
.credo__sign { margin: 0; padding: 0 0 54px; font-size: .93rem; color: rgba(255, 255, 255, .6); }
.credo__note { margin: 0; padding: 0 0 54px; max-width: 76ch; font-size: .95rem; color: rgba(255, 255, 255, .72); }
.credo__sign::before { content: '— '; }
.credo__sign strong { color: #fff; font-weight: 600; letter-spacing: .01em; }
.credo blockquote::before { content: '“'; color: rgba(255, 255, 255, .45); }
.credo blockquote::after { content: '”'; color: rgba(255, 255, 255, .45); }

/* ---------- Story / milestones (About) ----------
   Timeline rail = the content column's left border; the node is the same
   30° skewed square used by .kicker--tick, centred on that hairline. */
.story__lead { max-width: 860px; }
.story__lead p:last-child { margin-bottom: 0; }
.story__line { list-style: none; display: block; max-width: 900px; margin: 48px 0 0; }
.story__step { display: grid; grid-template-columns: 108px 1fr; }
.story__year {
	margin: 0; padding: 0 28px 0 0; text-align: right;
	font-family: var(--display); font-weight: 700; font-size: 1.28rem;
	letter-spacing: -.01em; line-height: 1.15; color: var(--navy);
}
.story__body { position: relative; border-left: 1px solid var(--line); padding: 0 0 34px 34px; }
.story__step:last-child .story__body { padding-bottom: 0; }
.story__body::before {
	content: ''; position: absolute; left: -5px; top: 8px;
	width: 9px; height: 9px; background: var(--blue); transform: skewX(-30deg);
}
.story__body h3 { margin-bottom: 6px; }
.story__body p { margin: 0; font-size: .96rem; }
.story__regions { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 9px; margin: 16px 0 0; }
.story__regions li {
	font-size: .81rem; font-weight: 600; color: var(--navy);
	background: var(--blue-soft); border: 1px solid #d6e5f2; border-radius: var(--r);
	padding: 5px 12px;
}
.story__outro { max-width: 860px; margin-top: 44px; }
.story__outro p:last-child { margin-bottom: 0; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 22px; list-style: none; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
	position: relative; overflow: hidden;
	display: flex; flex-direction: column; gap: 10px;
	background: linear-gradient(150deg, #fff 52%, #eaf2f9 100%);
	border: 1px solid var(--line); border-radius: var(--r);
	padding: 30px 28px; color: var(--body-c);
	transition: box-shadow .18s, transform .18s, border-color .18s;
}
a.card:hover { box-shadow: var(--shadow); border-color: rgba(30, 108, 173, .45); color: var(--body-c); transform: translateY(-2px); }
.card h3, .card .h3 { margin-bottom: 2px; }
.card p { margin: 0; font-size: .95rem; }
/* Icons live in the container background as large ghost marks, not as tiles on top.
   Fully inside the container — vertically centered right, never cropped. */
.card__icon, .why__icon, .band__icon {
	position: absolute; top: 50%; right: 16px; transform: translateY(-50%); z-index: 0;
	width: auto; height: auto; margin: 0; padding: 0;
	background: none; border-radius: 0;
	color: var(--blue); opacity: .09; pointer-events: none;
	-webkit-mask-image: linear-gradient(135deg, transparent 18%, #000 85%);
	mask-image: linear-gradient(135deg, transparent 18%, #000 85%);
}
.card__icon .icon, .why__icon .icon, .band__icon .icon { width: 124px; height: 124px; stroke-width: .9; display: block; }
.why__icon .icon { width: 78px; height: 78px; }
.band__icon .icon { width: 96px; height: 96px; }
.card > :not(.card__icon),
.why__list li > :not(.why__icon),
.band__grid li > :not(.band__icon),
.contact-direct li > :not(.card__icon),
.srow__copy > :not(.card__icon) { position: relative; z-index: 1; }
.card__more { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 14px; font-size: .88rem; font-weight: 600; color: var(--blue); }
a.card:hover .card__more { color: var(--navy); }
.card--article img { border-radius: var(--r); border: 1px solid var(--line); margin-bottom: 10px; aspect-ratio: 8/5; object-fit: cover; }
.card--static { cursor: default; }

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; }
.section--soft .steps__item { background: #fff; }
.steps__item h3 { font-size: 1.02rem; }
.steps__item p { font-size: .92rem; margin: 0; }

/* ---------- Why / split rows ---------- */
.why__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.why__list { list-style: none; display: grid; gap: 18px; margin-top: 34px; }
.why__list li {
	position: relative; overflow: hidden;
	background: linear-gradient(150deg, #fff 55%, #eef4fa 100%);
	border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px;
}
.why__list h3 { font-size: 1.05rem; margin-bottom: 4px; }
.why__list p { margin: 0; font-size: .95rem; }
.why__media { position: sticky; top: 110px; }
.why__media img { border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--stack-shadow); object-fit: cover; width: 100%; }

/* ---------- Compliance band ---------- */
.band { background: var(--navy-deep); color: #fff; padding: 76px 0; }
.band__title { color: #fff; max-width: 620px; margin-bottom: 44px; }
.band__grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.band__grid li {
	position: relative; overflow: hidden;
	background: linear-gradient(140deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02) 70%);
	border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--r); padding: 24px 22px;
}
.band__grid .band__icon { color: #fff; opacity: .07; }
.band__grid h3 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.band__grid p { color: rgba(255, 255, 255, .72); font-size: .89rem; margin: 0; }
.band__note { display: flex; align-items: center; gap: 22px; }
.band__note .icon { flex: none; color: #cfe3f4; }
.band__note p { margin: 0; font-size: 1.05rem; color: rgba(255, 255, 255, .92); max-width: 72ch; }

/* ---------- CTA ---------- */
.cta { background: var(--navy); color: #fff; padding: 68px 0; }
.cta__in { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta h2 { color: #fff; margin-bottom: 8px; }
.cta p { color: rgba(255, 255, 255, .78); margin: 0; max-width: 60ch; }
.cta__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta__phone { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; }
.cta__phone:hover { color: #cfe3f4; }

/* ---------- Page hero ---------- */
.page-hero { background: linear-gradient(180deg, var(--bg-soft), #fff); border-bottom: 1px solid var(--line); }
.page-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding-top: 58px; padding-bottom: 58px; }
.page-hero--plain .wrap { padding-top: 58px; padding-bottom: 58px; }
.page-hero__media img { border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--stack-shadow); object-fit: cover; width: 100%; aspect-ratio: 3/2; }
.crumbs { margin-bottom: 18px; font-size: .82rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; color: var(--muted); }
.crumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--line); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--navy); }

/* ---------- Service rows (overview) ---------- */
.srow { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: center; padding: 44px 0; }
.srow + .srow { border-top: 1px solid var(--line); }
.srow--flip .srow__media { order: 2; }
.srow__media img { border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--stack-shadow); object-fit: cover; width: 100%; aspect-ratio: 7/5; }
.srow__copy { position: relative; }
.srow__copy .btn { margin-top: 20px; }
.ticks { list-style: none; display: grid; gap: 9px; margin: 18px 0 4px; }
.ticks li { display: flex; align-items: baseline; gap: 10px; font-size: .95rem; }
.ticks .icon { color: var(--blue); flex: none; transform: translateY(2px); }

/* ---------- Service detail ---------- */
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.service-aside { position: sticky; top: 110px; display: grid; gap: 22px; }
.facts { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; }
.facts h2 { margin-bottom: 14px; }
.facts ul { list-style: none; display: grid; gap: 12px; }
.facts li { display: flex; gap: 11px; font-size: .9rem; align-items: flex-start; }
.facts .icon { color: var(--blue); flex: none; margin-top: 2px; }
.aside-cta { border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; }
.aside-cta p { margin: 0; line-height: 1.9; }
.includes { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 34px; }
.includes li { display: flex; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.includes .icon { color: var(--blue); flex: none; margin-top: 3px; }
.includes h3 { font-size: 1rem; margin-bottom: 4px; }
.includes p { margin: 0; font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-wrap > h2 { margin-bottom: 28px; }
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
.faq__item summary {
	list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px;
	padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--ink); font-size: .98rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .icon { flex: none; color: var(--muted); transition: transform .18s; }
.faq__item[open] summary .icon { transform: rotate(180deg); }
.faq__body { padding: 0 22px 20px; }
.faq__body p { margin: 0; font-size: .95rem; }

/* ---------- Values ---------- */
.values { list-style: none; display: grid; gap: 0; max-width: 860px; }
.values__item { padding: 26px 0; border-top: 1px solid var(--line); }
.values__item:last-child { border-bottom: 1px solid var(--line); }
.values__item h3 { margin-bottom: 4px; }
.values__item p { margin: 0; font-size: .96rem; }

.cred-note { display: flex; align-items: flex-start; gap: 10px; margin: 26px 0 0; font-size: .88rem; color: var(--muted); max-width: 76ch; }
.cred-note .icon { flex: none; color: var(--blue); margin-top: 2px; }

/* ---------- Article ---------- */
.article-head { max-width: 860px; }
.article-meta { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .85rem; margin: 6px 0 0; }
.article-figure { margin-top: -26px; }
.article-figure img { border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); object-fit: cover; width: 100%; max-height: 480px; }
.section--article { padding-top: 56px; }

/* ---------- Prose ---------- */
.prose { max-width: none; }
.prose--narrow { max-width: 760px; }
.prose--wide { max-width: 860px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.2em; display: grid; gap: 7px; }
.prose li::marker { color: var(--blue); font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .93rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; vertical-align: top; }
.prose th { background: var(--bg-soft); color: var(--ink); font-weight: 600; }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--navy); font-family: var(--display); font-weight: 500; font-size: 1.06rem; color: var(--ink); }
.prose strong { color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.contact-direct { list-style: none; display: grid; gap: 16px; margin-bottom: 30px; }
.contact-direct li {
	position: relative; overflow: hidden;
	background: linear-gradient(150deg, #fff 55%, #eef4fa 100%);
	border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px;
}
.contact-direct li .card__icon .icon { width: 76px; height: 76px; }
.contact-direct h2 { margin-bottom: 2px; }
.contact-direct a { font-weight: 600; color: var(--navy); font-size: 1.04rem; }
.contact-direct p { margin: 2px 0 0; font-size: .86rem; color: var(--muted); }
.loc-card { border: 1px solid var(--line); border-radius: var(--r); padding: 24px; margin-bottom: 18px; }
.loc-card h2 { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.loc-card h2 .icon { color: var(--blue); }
.loc-card p { font-size: .94rem; margin-bottom: 14px; }
.loc-card__map { margin-top: 16px; }
.loc-card__map iframe { width: 100%; height: 260px; border: 1px solid var(--line); border-radius: var(--r); display: block; }
.contact-form { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r); padding: 38px 36px; }
.contact-form__lead { font-size: .95rem; margin-bottom: 20px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; margin-bottom: 16px; }
.form-grid__full { grid-column: 1 / -1; }
.form-grid label, .consent { display: block; }
.form-grid label span { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-grid input, .form-grid select, .form-grid textarea {
	width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
	padding: 11px 13px; border: 1px solid #c8d4df; border-radius: var(--r); background: #fff;
}
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus,
.consent input:focus-visible { outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--muted); margin-bottom: 22px; }
.consent input { margin-top: 3px; accent-color: var(--navy); }
.hp-field { position: absolute; left: -9999px; }
.turnstile { margin: 4px 0 20px; min-height: 65px; }
.form-notice { padding: 14px 18px; border-radius: var(--r); font-size: .93rem; margin-bottom: 20px; }
.form-notice--ok { background: #e8f5ee; color: var(--ok); border: 1px solid #bfe3cf; }
.form-notice--err { background: #fbeae8; color: var(--err); border: 1px solid #efc5bf; }

/* ---------- Footer ---------- */
.site-foot { background: var(--navy-deep); color: rgba(255, 255, 255, .78); font-size: .92rem; }
.site-foot a { color: rgba(255, 255, 255, .78); }
.site-foot a:hover { color: #fff; }
.site-foot__grid { display: grid; grid-template-columns: 1.3fr .8fr 1.1fr; gap: 48px; padding-top: 66px; padding-bottom: 54px; }
.brand--foot .brand__text strong { color: #fff; }
.brand--foot .brand__text em { color: rgba(255, 255, 255, .55); }
.brand--foot .brand__mark { background: #fff; border-radius: var(--r); padding: 4px; }
.site-foot__brand p { margin: 18px 0 0; max-width: 40ch; font-size: .9rem; line-height: 1.7; }
.site-foot h2 { color: #fff; font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.site-foot__menu { list-style: none; display: grid; gap: 10px; }
.site-foot__contact { list-style: none; display: grid; gap: 14px; }
.site-foot__contact li { display: flex; gap: 12px; align-items: flex-start; }
.site-foot__contact .icon { flex: none; margin-top: 4px; color: #9dc3e0; }
.site-foot__legal { border-top: 1px solid rgba(255, 255, 255, .14); }
.site-foot__legal-in { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 20px; font-size: .8rem; color: rgba(255, 255, 255, .55); }
.site-foot__legal-in p { margin: 0; }
.site-foot__legal-links { display: flex; gap: 20px; }
.site-foot__legal-links a { color: rgba(255, 255, 255, .55); }

/* ---------- Cookie consent bar ---------- */
.cookiebar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
	background: var(--navy-deep); color: rgba(255, 255, 255, .82);
	border-top: 1px solid rgba(255, 255, 255, .14);
	box-shadow: 0 -20px 44px -30px rgba(9, 43, 73, .9);
}
.cookiebar[hidden] { display: none; }
.cookiebar__in { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-top: 18px; padding-bottom: 18px; }
.cookiebar__text { margin: 0; max-width: 78ch; font-size: .87rem; line-height: 1.7; }
.cookiebar__text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cookiebar__text a:hover { color: #cfe3f4; }
.cookiebar__actions { display: flex; gap: 10px; flex: none; }
.cookiebar .btn--ghost { color: #fff; }
.cookiebar .btn--ghost::before { border: 1px solid rgba(255, 255, 255, .5); background: transparent; }
.cookiebar .btn--ghost:hover::before { border-color: #fff; background: rgba(255, 255, 255, .12); }
.site-foot__cookie { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
.site-foot__cookie:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
	.site-nav {
		position: fixed; inset: 0; top: 0; z-index: 150;
		background: #fff; flex-direction: column; align-items: stretch; gap: 0;
		padding: 96px 28px 28px; overflow-y: auto;
		transform: translateX(100%); transition: transform .22s ease; visibility: hidden;
	}
	.site-nav.is-open { transform: translateX(0); visibility: visible; }
	.site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.site-nav__list > li > a { padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
	.site-nav__list > li.current-menu-item > a, .site-nav__list > li.current_page_item > a { box-shadow: none; color: var(--navy); }
	.site-nav__list .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; padding: 0 0 0 16px; }
	.site-nav__list .sub-menu a { border-bottom: 1px solid var(--line); border-radius: 0; padding: 12px 4px; }
	.site-nav__cta { margin-top: 22px; justify-content: center; }
	.nav-toggle { display: block; position: relative; z-index: 160; }
	body.nav-open { overflow: hidden; }

	.page-hero__grid, .why__grid, .service-layout, .contact-grid { grid-template-columns: 1fr; gap: 40px; }

	.hero__stage { min-height: 0; }
	.hero__copy { padding: 48px 0 44px; max-width: 640px; }
	.hero__ruler { display: none; }
	.hero__plate { position: static; }
	.hero__plate-panel {
		position: relative; inset: auto; width: auto; height: 260px; margin: 0 -24px;
		clip-path: polygon(48px 0, 100% 0, 100% 100%, 0 100%);
	}
	.hero__plate-panel::before { display: none; }

	.hero__points { display: grid; grid-template-columns: 1fr 1fr; min-height: 0; padding: 6px 24px; }
	.hero__points li { padding: 12px 18px 14px 0; }
	.hero__points li + li { padding-left: 0; }
	.hero__points li + li::after { display: none; }
	.hero__points li:nth-child(even) { padding-left: 20px; border-left: 1px solid rgba(13, 59, 99, .16); }
	.hero__points li:nth-child(n+3) { border-top: 1px solid var(--line); }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.band__grid { grid-template-columns: repeat(2, 1fr); }
	.srow, .srow--flip { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
	.srow--flip .srow__media { order: 0; }
	.site-foot__grid { grid-template-columns: 1fr 1fr; }
	.why__media, .service-aside { position: static; }
	.section { padding: 64px 0; }
}

@media (max-width: 640px) {
	.topbar__contacts a span { display: none; }
	.topbar__contacts a:first-child span { display: inline; }

	.hero__plate-panel { height: 190px; }
	.hero__points { grid-template-columns: 1fr; padding: 6px 24px 10px; }
	.hero__points li:nth-child(even) { padding-left: 0; border-left: 0; }
	.hero__points li:nth-child(n+2) { border-top: 1px solid var(--line); }
	.cards--3, .cards--2, .steps, .band__grid, .includes, .form-grid { grid-template-columns: 1fr; }
	.story__line { margin-top: 34px; }
	.story__step { grid-template-columns: 1fr; }
	.story__step + .story__step { border-top: 1px solid var(--line); padding-top: 24px; }
	.story__year { text-align: left; padding: 0 0 6px; font-size: 1.15rem; }
	.story__body { border-left: 0; padding: 0 0 24px; }
	.story__body::before { display: none; }
	.story__step:last-child .story__body { padding-bottom: 0; }
	.story__outro { margin-top: 32px; }
	.site-foot__grid { grid-template-columns: 1fr; gap: 36px; }
	.contact-form { padding: 26px 20px; }
	.cta__in { flex-direction: column; align-items: flex-start; }
	.cookiebar__in { flex-direction: column; align-items: stretch; gap: 14px; }
	.cookiebar__actions .btn { flex: 1 1 0; }
	.section { padding: 52px 0; }
	.section-head { margin-bottom: 32px; }
}

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