@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-cyrillic.woff2") format("woff2-variations");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-latin.woff2") format("woff2-variations");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Unbounded";
	src: url("../fonts/unbounded-cyrillic.woff2") format("woff2-variations");
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: "Unbounded";
	src: url("../fonts/unbounded-latin.woff2") format("woff2-variations");
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--canvas: oklch(0.975 0.006 245);
	--surface: oklch(0.995 0.002 245);
	--surface-blue: oklch(0.945 0.025 250);
	--ink: oklch(0.245 0.055 254);
	--muted: oklch(0.465 0.035 252);
	--faint: oklch(0.61 0.025 252);
	--line: oklch(0.87 0.025 250);
	--brand: oklch(0.49 0.18 255);
	--brand-deep: oklch(0.31 0.12 255);
	--brand-soft: oklch(0.91 0.055 250);
	--accent: oklch(0.67 0.19 38);
	--accent-hover: oklch(0.62 0.20 38);
	--accent-ink: oklch(0.20 0.045 255);
	--danger: oklch(0.50 0.19 25);
	--focus: oklch(0.49 0.18 255);
	--font-body: "Manrope", "Segoe UI", sans-serif;
	--font-display: "Unbounded", "Arial Narrow", sans-serif;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--z-sticky: 30;
	--z-overlay: 60;
	--z-modal: 70;
	--z-toast: 80;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	color-scheme: light;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	background: var(--canvas);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-open {
	overflow: hidden;
}

button,
input {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
	text-decoration: none;
}

img,
video {
	display: block;
	max-width: 100%;
}

button {
	color: inherit;
}

.shell {
	width: min(calc(100% - 56px), 1600px);
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: var(--z-toast);
	padding: 10px 14px;
	border-radius: var(--radius-md);
	background: var(--ink);
	color: var(--surface);
	transform: translateY(-160%);
	transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 4px;
}

.icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	background-color: currentColor;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
}

.icon--whatsapp { -webkit-mask-image: url("../icons/whatsapp.svg"); mask-image: url("../icons/whatsapp.svg"); }
.icon--telegram { -webkit-mask-image: url("../icons/telegram.svg"); mask-image: url("../icons/telegram.svg"); }
.icon--mail { -webkit-mask-image: url("../icons/mail.svg"); mask-image: url("../icons/mail.svg"); }
.icon--map { -webkit-mask-image: url("../icons/map-pin.svg"); mask-image: url("../icons/map-pin.svg"); }
.icon--phone { -webkit-mask-image: url("../icons/phone.svg"); mask-image: url("../icons/phone.svg"); }
.icon--menu { -webkit-mask-image: url("../icons/menu.svg"); mask-image: url("../icons/menu.svg"); }
.icon--close { -webkit-mask-image: url("../icons/close.svg"); mask-image: url("../icons/close.svg"); }
.icon--arrow { -webkit-mask-image: url("../icons/arrow-up-right.svg"); mask-image: url("../icons/arrow-up-right.svg"); }

.site-header {
	position: relative;
	z-index: var(--z-sticky);
	background: var(--surface);
}

.utility-bar {
	height: 34px;
	background: var(--brand-deep);
	color: oklch(0.91 0.025 250);
	font-size: 12px;
}

.utility-bar__inner,
.utility-bar__meta,
.utility-meta {
	display: flex;
	align-items: center;
}

.utility-bar__inner {
	height: 100%;
	justify-content: space-between;
	gap: 24px;
}

.utility-bar__tagline {
	margin: 0;
	font-weight: 720;
	color: var(--surface);
}

.utility-bar__meta {
	height: 100%;
}

.utility-meta {
	height: 100%;
	gap: 7px;
	padding-inline: 18px;
	border-left: 1px solid oklch(0.57 0.08 255 / 0.5);
	white-space: nowrap;
}

a.utility-meta {
	transition: color 180ms var(--ease-out);
}

a.utility-meta:hover {
	color: var(--surface);
}

.utility-meta .icon {
	width: 15px;
	height: 15px;
}

.main-header {
	height: 72px;
	border-bottom: 1px solid var(--line);
	background: var(--surface);
}

.main-header__inner {
	display: flex;
	height: 100%;
	align-items: center;
	gap: clamp(18px, 2vw, 38px);
}

.brand {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: max-content;
}

.brand__image {
	width: auto;
	max-width: 156px;
	height: 46px;
	object-fit: contain;
}

.brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 76px;
	height: 44px;
	padding-inline: 10px;
	border-radius: var(--radius-md);
	background: var(--brand);
	color: var(--surface);
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 680;
	letter-spacing: -0.02em;
	box-shadow: inset 0 -3px 0 oklch(0.30 0.12 255 / 0.36);
}

.brand__name {
	max-width: 170px;
	font-size: 11px;
	font-weight: 680;
	line-height: 1.25;
	color: var(--muted);
}

.main-nav {
	min-width: 0;
	margin-left: auto;
}

.main-nav ul,
.service-nav ul,
.mobile-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav ul {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.25vw, 24px);
	white-space: nowrap;
}

.main-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 72px;
	font-size: 13px;
	font-weight: 650;
	color: var(--ink);
	transition: color 180ms var(--ease-out);
}

.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 3px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 260ms var(--ease-out);
}

.main-nav a:hover,
.main-nav a:focus-visible {
	color: var(--brand);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-actions,
.mobile-actions {
	display: flex;
	align-items: center;
}

.header-actions {
	gap: 8px;
}

.social-link,
.mobile-phone,
.menu-toggle,
.dialog-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: var(--radius-md);
	background: var(--brand-soft);
	color: var(--brand-deep);
	cursor: pointer;
	transition: color 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.social-link {
	width: 38px;
	height: 38px;
}

.social-link:hover {
	background: var(--brand);
	color: var(--surface);
	transform: translateY(-2px);
}

.social-link .icon {
	width: 18px;
	height: 18px;
}

.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	font-size: 13px;
	font-weight: 780;
	white-space: nowrap;
}

.header-phone .icon {
	width: 17px;
	height: 17px;
	color: var(--brand);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 13px 20px;
	border: 0;
	border-radius: var(--radius-md);
	background: var(--ink);
	color: var(--surface);
	font-weight: 780;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	box-shadow: inset 0 -3px 0 oklch(0.14 0.04 255 / 0.28);
	transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:hover {
	transform: translateY(-2px);
}

.button:active {
	transform: translateY(1px) scale(0.99);
	box-shadow: inset 0 -1px 0 oklch(0.14 0.04 255 / 0.2);
}

.button--small {
	min-height: 40px;
	padding: 10px 15px;
	font-size: 12px;
}

.button--primary {
	background: var(--accent);
	color: var(--accent-ink);
	box-shadow: inset 0 -3px 0 oklch(0.45 0.16 38 / 0.42);
}

.button--primary:hover {
	background: var(--accent-hover);
}

.button--ghost {
	background: var(--brand-soft);
	color: var(--brand-deep);
	box-shadow: none;
}

.mobile-actions {
	display: none;
	margin-left: auto;
	gap: 8px;
}

.mobile-phone,
.menu-toggle {
	width: 44px;
	height: 44px;
}

.service-nav {
	height: 44px;
	border-bottom: 1px solid var(--line);
	background: var(--surface-blue);
}

.service-nav .shell,
.service-nav ul {
	height: 100%;
}

.service-nav ul {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-nav li {
	min-width: 0;
}

.service-nav a {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	padding-inline: 18px;
	font-size: 12px;
	font-weight: 680;
	color: var(--brand-deep);
	text-align: center;
	white-space: nowrap;
	transition: color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.service-nav li:not(:last-child) a::after {
	content: "";
	position: absolute;
	top: 14px;
	right: 0;
	width: 1px;
	height: 16px;
	background: oklch(0.80 0.05 250);
}

.service-nav a:hover,
.service-nav a:focus-visible {
	background: var(--brand);
	color: var(--surface);
}

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: var(--z-overlay);
	display: grid;
	grid-template-rows: 70px 1fr auto;
	padding: 0 20px 18px;
	background: var(--surface);
	color: var(--ink);
	overflow: clip;
}

.mobile-menu[hidden] {
	display: none;
}

.mobile-menu__head,
.mobile-menu__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-menu__body {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-content: center;
	gap: 28px;
	min-height: 0;
}

.mobile-menu__label {
	margin: 0 0 14px;
	font-size: 11px;
	font-weight: 760;
	color: var(--brand);
}

.mobile-menu__main,
.mobile-menu__services {
	display: grid;
	gap: 10px;
}

.mobile-menu__main a {
	font-family: var(--font-display);
	font-size: clamp(17px, 4.4vw, 24px);
	font-weight: 560;
	letter-spacing: -0.02em;
}

.mobile-menu__services a {
	display: block;
	font-size: clamp(13px, 3.5vw, 17px);
	font-weight: 650;
	line-height: 1.28;
	color: var(--muted);
}

.mobile-menu__footer {
	gap: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.mobile-menu__footer > a {
	font-size: 18px;
	font-weight: 780;
	white-space: nowrap;
}

.hero {
	position: relative;
	background: var(--canvas);
	overflow: clip;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40vw;
	background: var(--brand-soft);
	clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	padding-block: clamp(34px, 4vw, 60px) 34px;
}

.hero__stage {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(480px, 0.9fr);
	align-items: start;
	gap: clamp(48px, 5vw, 88px);
	min-height: clamp(500px, calc(100dvh - 330px), 620px);
}

.hero__copy {
	position: relative;
	z-index: 3;
	align-self: start;
	max-width: 850px;
	padding-block: 70px 30px;
}

.hero__status {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
	font-size: 13px;
	font-weight: 780;
	color: var(--brand-deep);
}

.hero__status span {
	position: relative;
	display: inline-block;
	width: 24px;
	height: 12px;
	border-radius: 3px;
	background: var(--accent);
	box-shadow: inset 0 -2px 0 oklch(0.45 0.16 38 / 0.28);
}

.hero__status span::after {
	content: "";
	position: absolute;
	top: 4px;
	right: -9px;
	width: 10px;
	height: 4px;
	background: var(--accent);
}

.hero h1 {
	max-width: 920px;
	margin: 0;
	font-family: var(--font-body);
	font-size: clamp(40px, 3vw, 54px);
	font-weight: 790;
	line-height: 1.02;
	letter-spacing: -0.04em;
	text-wrap: balance;
}

.hero__lead {
	max-width: 650px;
	margin: 27px 0 0;
	font-size: clamp(17px, 1.25vw, 20px);
	font-weight: 520;
	line-height: 1.55;
	color: var(--muted);
	text-wrap: pretty;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 32px;
}

.hero__actions .button {
	min-height: 60px;
	padding-inline: 26px;
}

.hero__actions .icon {
	width: 18px;
	height: 18px;
	transition: transform 180ms var(--ease-out);
}

.hero__actions .button:hover .icon {
	transform: translate(2px, -2px);
}

.hero__phone {
	position: relative;
	display: grid;
	gap: 2px;
	padding-left: 18px;
	font-size: 18px;
	font-weight: 790;
	white-space: nowrap;
}

.hero__phone::before {
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 0;
	width: 3px;
	border-radius: 3px;
	background: var(--brand);
}

.hero__phone-label {
	font-size: 11px;
	font-weight: 680;
	color: var(--muted);
}

.hero-media {
	position: relative;
	min-height: 540px;
	margin: 18px 0 0;
	isolation: isolate;
}

.hero-media__panel {
	position: absolute;
	top: 8px;
	right: -34px;
	bottom: 30px;
	left: 66px;
	z-index: -1;
	border-radius: var(--radius-lg);
	background: var(--brand);
	box-shadow: inset 0 -8px 0 oklch(0.31 0.12 255 / 0.25);
}

.hero-media__primary {
	position: absolute;
	top: 38px;
	right: 96px;
	bottom: 0;
	left: 0;
	border-radius: var(--radius-lg);
	background: var(--brand-deep);
	box-shadow: 0 8px 0 oklch(0.31 0.12 255 / 0.18);
	overflow: hidden;
}

.hero-media__primary::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	background: linear-gradient(180deg, transparent 62%, oklch(0.22 0.08 255 / 0.34));
	pointer-events: none;
}

.hero-media__poster,
.hero-media__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 48% center;
}

.hero-media__poster {
	filter: saturate(0.92) contrast(1.03) brightness(1.03);
	transition: opacity 500ms var(--ease-out);
}

.hero-media__video {
	z-index: 1;
	opacity: 0;
	transition: opacity 500ms var(--ease-out);
}

.hero-media.is-playing .hero-media__video {
	opacity: 1;
}

.hero-media.is-playing .hero-media__poster {
	opacity: 0;
}

.hero-media__secondary {
	position: absolute;
	right: -8px;
	bottom: 42px;
	z-index: 4;
	width: 42%;
	height: 38%;
	border: 6px solid var(--surface);
	border-radius: var(--radius-lg);
	object-fit: cover;
	object-position: 48% 40%;
	box-shadow: 0 8px 0 oklch(0.31 0.12 255 / 0.22);
}

.proof-grid {
	display: grid;
	grid-template-columns: 0.86fr 1.08fr 1.18fr 1.08fr 1.12fr;
	margin-top: 26px;
	border-radius: var(--radius-lg);
	background: var(--brand-deep);
	color: var(--surface);
	overflow: hidden;
	box-shadow: 0 8px 0 oklch(0.31 0.12 255 / 0.14);
}

.proof-item {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 14px;
	min-width: 0;
	padding: 22px clamp(14px, 1.4vw, 24px);
}

.proof-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 22px;
	right: 0;
	bottom: 22px;
	width: 1px;
	background: oklch(0.62 0.08 255 / 0.42);
}

.proof-item:first-child {
	background: var(--accent);
	color: var(--accent-ink);
}

.proof-item:first-child::after {
	display: none;
}

.proof-item__value {
	margin: 0;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 650;
	letter-spacing: -0.03em;
	color: var(--accent);
}

.proof-item:first-child .proof-item__value {
	color: var(--accent-ink);
}

.proof-item h2,
.proof-item p {
	margin: 0;
}

.proof-item h2 {
	font-size: 12px;
	font-weight: 780;
	line-height: 1.35;
}

.proof-item div > p {
	margin-top: 5px;
	font-size: 11px;
	line-height: 1.4;
	color: oklch(0.87 0.035 250);
}

.proof-item:first-child div > p {
	color: oklch(0.29 0.055 254);
}

.request-dialog {
	width: min(640px, calc(100% - 32px));
	max-height: calc(100dvh - 32px);
	padding: 0;
	border: 0;
	border-radius: var(--radius-lg);
	background: var(--surface);
	color: var(--ink);
	box-shadow: 0 8px 0 oklch(0.31 0.12 255 / 0.22);
	overflow: auto;
}

.request-dialog::backdrop {
	background: oklch(0.18 0.06 255 / 0.72);
}

.request-dialog__chrome {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 30px 30px 24px;
	background: var(--surface-blue);
}

.request-dialog__status {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 780;
	color: var(--brand);
}

.request-dialog h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(24px, 5vw, 34px);
	font-weight: 620;
	letter-spacing: -0.025em;
}

.request-dialog__chrome div > p:last-child {
	max-width: 52ch;
	margin: 12px 0 0;
	color: var(--muted);
}

.dialog-close {
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
}

.request-form {
	display: grid;
	gap: 18px;
	padding: 26px 30px 30px;
}

.form-field {
	display: grid;
	gap: 8px;
}

.form-field label {
	font-size: 13px;
	font-weight: 720;
}

.form-field input {
	width: 100%;
	height: 54px;
	padding: 0 15px;
	border: 1px solid oklch(0.73 0.045 250);
	border-radius: var(--radius-md);
	background: var(--surface);
	color: var(--ink);
	outline: 0;
	transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.form-field input::placeholder {
	color: var(--muted);
	opacity: 1;
}

.form-field input:focus {
	border-color: var(--focus);
	box-shadow: 0 0 0 3px oklch(0.49 0.18 255 / 0.16);
}

.form-field__error {
	margin: 0;
	font-size: 12px;
	color: var(--danger);
}

.form-field--honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.request-form__submit {
	width: 100%;
	margin-top: 2px;
}

.request-form__consent {
	margin: -3px 0 0;
	font-size: 11px;
	line-height: 1.45;
	color: var(--muted);
}

.cookie-banner {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: var(--z-toast);
	display: flex;
	width: min(760px, calc(100% - 36px));
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px;
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: 0 8px 0 oklch(0.31 0.12 255 / 0.18);
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner p {
	margin: 0;
	font-size: 12px;
	color: var(--muted);
}

.cookie-banner p a {
	color: var(--brand-deep);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 3px;
}

.cookie-banner__actions {
	display: flex;
	gap: 8px;
}

.button--cookie {
	min-height: 40px;
	padding: 10px 13px;
	font-size: 11px;
}

.simple-page {
	min-height: 70dvh;
	padding-block: 80px;
}

.simple-page h1 {
	font-family: var(--font-display);
	font-size: clamp(34px, 5vw, 68px);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

@media (max-width: 1500px) {
	.utility-meta--mail,
	.brand__name,
	.header-actions .social-link {
		display: none;
	}

	.hero__stage {
		grid-template-columns: minmax(0, 1.25fr) minmax(430px, 0.86fr);
		gap: 48px;
	}

	.hero h1 {
		font-size: clamp(39px, 3.2vw, 52px);
	}
}

@media (max-width: 1260px) {
	.header-actions .button {
		display: none;
	}

	.main-nav ul {
		gap: 14px;
	}

	.service-nav a {
		font-size: 11px;
	}

	.hero__stage {
		grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.84fr);
		gap: 36px;
	}

	.hero-media {
		min-height: 500px;
	}

	.proof-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.proof-item:nth-child(4),
	.proof-item:nth-child(5) {
		display: none;
	}
}

@media (max-width: 1120px) {
	.main-nav,
	.header-actions,
	.service-nav {
		display: none;
	}

	.mobile-actions {
		display: flex;
	}

	.hero__stage {
		grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.82fr);
		min-height: 500px;
	}

	.hero__inner {
		padding-top: 28px;
	}
}

@media (max-width: 860px) {
	.shell {
		width: min(calc(100% - 36px), 1600px);
	}

	.hero::before {
		top: auto;
		width: 100%;
		height: 38%;
		clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
	}

	.hero__inner {
		padding-block: 36px 26px;
	}

	.hero__stage {
		display: flex;
		min-height: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 36px;
	}

	.hero__copy {
		max-width: 720px;
		padding-block: 0;
	}

	.hero h1 {
		max-width: 720px;
		font-size: clamp(39px, 7.2vw, 54px);
	}

	.hero-media {
		width: min(100%, 700px);
		min-height: 470px;
		align-self: center;
		margin-top: 0;
	}

	.proof-grid {
		margin-top: 38px;
	}
}

@media (max-width: 760px) {
	.shell {
		width: min(calc(100% - 32px), 1600px);
	}

	.utility-bar__tagline,
	.utility-meta--mail,
	.utility-meta--hours {
		display: none;
	}

	.utility-bar__inner {
		justify-content: center;
	}

	.utility-meta {
		padding-inline: 0;
		border-left: 0;
	}

	.main-header {
		height: 66px;
	}

	.brand__mark {
		min-width: 70px;
		height: 40px;
	}

	.hero__inner {
		padding-top: 30px;
	}

	.hero__status {
		margin-bottom: 15px;
	}

	.hero h1 {
		font-size: clamp(31px, 8.7vw, 40px);
		line-height: 1.06;
		letter-spacing: -0.035em;
		text-wrap: pretty;
	}

	.hero__lead {
		margin-top: 20px;
		font-size: 16px;
		line-height: 1.48;
	}

	.hero__actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 16px;
		margin-top: 24px;
	}

	.hero__actions .button {
		min-width: 0;
		min-height: 56px;
		padding-inline: 18px;
	}

	.hero__phone {
		align-self: center;
		font-size: 15px;
	}

	.hero-media {
		min-height: 410px;
	}

	.hero-media__panel {
		right: -20px;
		left: 48px;
	}

	.hero-media__primary {
		right: 72px;
	}

	.hero-media__secondary {
		right: 0;
		width: 44%;
		height: 36%;
	}

	.proof-grid {
		grid-template-columns: 1fr 1fr;
		margin-top: 32px;
	}

	.proof-item,
	.proof-item:nth-child(4),
	.proof-item:nth-child(5) {
		display: grid;
	}

	.proof-item:first-child {
		grid-column: 1 / -1;
	}

	.proof-item:nth-child(3)::after,
	.proof-item:last-child::after {
		display: none;
	}

	.proof-item:nth-child(n + 2) {
		border-top: 1px solid oklch(0.62 0.08 255 / 0.36);
	}

	.mobile-menu__body {
		gap: 18px;
	}

	.mobile-menu__footer .button {
		min-height: 44px;
		padding-inline: 14px;
		font-size: 12px;
	}

	.request-dialog__chrome,
	.request-form {
		padding-inline: 20px;
	}

	.cookie-banner {
		left: 16px;
		right: 16px;
		bottom: 16px;
		width: auto;
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.cookie-banner__actions {
		justify-content: flex-end;
	}
}

@media (max-width: 470px) {
	.utility-meta--location {
		max-width: calc(100vw - 32px);
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.mobile-menu {
		padding-inline: 16px;
	}

	.mobile-menu__body {
		grid-template-columns: 1fr 1.12fr;
		align-content: start;
		padding-top: 18px;
	}

	.mobile-menu__main,
	.mobile-menu__services {
		gap: 8px;
	}

	.mobile-menu__footer > a {
		font-size: 15px;
	}

	.hero__actions {
		grid-template-columns: 1fr;
	}

	.hero__phone {
		align-self: start;
	}

	.hero-media {
		min-height: 370px;
	}

	.hero-media__panel {
		left: 36px;
	}

	.hero-media__primary {
		top: 28px;
		right: 54px;
	}

	.hero-media__secondary {
		width: 48%;
		height: 34%;
		border-width: 4px;
	}

	.proof-grid {
		grid-template-columns: 1fr;
	}

	.proof-item,
	.proof-item:first-child,
	.proof-item:nth-child(4),
	.proof-item:nth-child(5) {
		grid-column: auto;
	}

	.proof-item:not(:last-child)::after {
		display: none;
	}

	.proof-item:nth-child(n + 2) {
		border-top: 1px solid oklch(0.62 0.08 255 / 0.36);
	}

	.cookie-banner__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.button--cookie {
		white-space: normal;
		line-height: 1.2;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.hero__status,
	.hero h1,
	.hero__lead,
	.hero__actions {
		animation: hero-enter 680ms var(--ease-out) both;
	}

	.hero h1 { animation-delay: 60ms; }
	.hero__lead { animation-delay: 120ms; }
	.hero__actions { animation-delay: 180ms; }

	.hero-media__panel {
		animation: panel-enter 820ms var(--ease-out) both;
	}

	.hero-media__primary {
		animation: media-open 900ms var(--ease-out) 60ms both;
		transform-origin: right center;
	}

	.hero-media__secondary {
		animation: detail-enter 760ms var(--ease-out) 280ms both;
	}

	.proof-grid {
		animation: proof-enter 700ms var(--ease-out) 280ms both;
	}
}

@keyframes hero-enter {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes panel-enter {
	from { opacity: 0; transform: translateX(48px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes media-open {
	from { opacity: 0.4; clip-path: inset(0 0 0 96%); }
	to { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes detail-enter {
	from { opacity: 0; transform: translate(22px, 12px); }
	to { opacity: 1; transform: translate(0, 0); }
}

@keyframes proof-enter {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

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

	.hero-media__video {
		display: none;
	}
}

.review-rail--cards {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(300px, 31%);
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 4px 2px 16px;
}

.review-card {
	display: flex;
	min-height: 310px;
	flex-direction: column;
	justify-content: space-between;
	gap: 28px;
	scroll-snap-align: start;
	padding: clamp(24px, 3vw, 38px);
	border-radius: var(--radius-lg);
	background: var(--brand-deep);
	color: var(--surface);
}

.review-card blockquote {
	margin: 0;
	font-size: clamp(19px, 1.55vw, 25px);
	line-height: 1.55;
}

.review-card footer { display: grid; gap: 4px; }
.review-card footer strong { font-size: 17px; }
.review-card footer span,
.review-card footer time { color: oklch(0.86 0.025 250); }
.review-card small { color: oklch(0.8 0.035 250); line-height: 1.45; }

.contacts-messengers { display: flex; gap: 10px; }
.contacts-messengers a {
	display: inline-grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 10px;
	background: var(--brand-soft);
	color: var(--brand-deep);
}
.contacts-messengers .icon { width: 22px; height: 22px; }

@media (max-width: 760px) {
	.review-rail--cards { grid-auto-columns: 88%; }
	.review-card { min-height: 280px; }
}

/* Full site */
textarea { font: inherit; resize: vertical; }
.section { padding-block: clamp(76px, 8vw, 136px); }
.section h2,
.inner-hero h1,
.contacts-hero h1,
.blog-page h1,
.article-page h1,
.legal-page h1 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.035em; text-wrap: balance; }
.section h2 { font-size: clamp(30px, 4.3vw, 64px); }
.eyebrow { margin: 0 0 18px; color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-head { max-width: 920px; margin-bottom: clamp(38px, 5vw, 72px); }
.section-head > p { max-width: 590px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.section-head--row { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); align-items: end; max-width: none; gap: 60px; }
.section-head--row > p { margin: 0 0 6px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--brand); font-weight: 800; }
.button:active { transform: scale(.97); }

.trust { background: var(--surface); }
.trust__grid,
.faq__grid { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(520px, 1.15fr); gap: clamp(60px, 8vw, 150px); }
.section-head--sticky { position: sticky; top: 140px; align-self: start; }
.problem-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.problem-list li { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.problem-list li > span { color: var(--brand); font-family: var(--font-display); font-size: 13px; }
.problem-list h3 { margin: 0 0 7px; font-family: var(--font-display); font-size: clamp(18px, 2vw, 25px); line-height: 1.2; }
.problem-list p { margin: 0; color: var(--muted); }

.approach { overflow: hidden; background: var(--brand-deep); color: white; }
.approach__layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr); gap: clamp(70px, 10vw, 170px); align-items: center; }
.approach__copy > p { max-width: 700px; margin: 28px 0; color: oklch(0.9 .025 250); font-size: 18px; }
.approach blockquote { margin: 40px 0; padding: 24px 0 24px 28px; border-left: 4px solid var(--accent); font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 28px); line-height: 1.35; }
.approach__action { display: flex; align-items: center; gap: 20px; }
.approach__action small { max-width: 240px; color: oklch(0.82 .03 250); }
.check-rail { margin: 0; padding: 0; list-style: none; }
.check-rail li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: center; min-height: 64px; border-bottom: 1px solid oklch(1 0 0 / .18); font-weight: 700; }
.check-rail li:first-child { border-top: 1px solid oklch(1 0 0 / .18); }
.check-rail li > span { color: var(--accent); font-size: 21px; }

.services { background: var(--canvas); }
.service-showcase { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.service-card { grid-column: span 6; display: grid; grid-template-columns: minmax(220px, .8fr) minmax(280px, 1.2fr); min-height: 430px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 5; }
.service-card:nth-child(2) { margin-left: 8.333%; }
.service-card:nth-child(3) { margin-right: -8.333%; }
.service-card__media { min-height: 300px; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 280ms var(--ease-out); }
.service-card__body { display: flex; flex-direction: column; padding: clamp(26px, 3vw, 46px); }
.service-card__index { margin: 0 0 auto; color: var(--brand); font-family: var(--font-display); font-size: 13px; }
.service-card h3 { margin: 24px 0 14px; font-family: var(--font-display); font-size: clamp(21px, 2vw, 30px); line-height: 1.18; }
.service-card__body > p:not(.service-card__index) { margin: 0; color: var(--muted); }
.service-card__foot { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-top: 36px; font-size: 13px; }
.service-card__foot > span { color: var(--muted); }
.service-card__foot a { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 800; }

.process { background: var(--surface-blue); }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-track li { position: relative; min-height: 280px; padding: 32px 32px 32px 0; border-top: 2px solid var(--brand); }
.process-track li::after { content: ""; position: absolute; top: -6px; right: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); }
.process-track li > span { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 48px; border: 1px solid var(--brand); border-radius: 50%; color: var(--brand); font-family: var(--font-display); }
.process-track h3 { max-width: 240px; margin: 0 0 14px; font-family: var(--font-display); font-size: 20px; line-height: 1.25; }
.process-track p { max-width: 260px; margin: 0; color: var(--muted); }

.works { background: var(--surface); overflow: hidden; }
.works-rail, .review-rail { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
.works-rail::-webkit-scrollbar, .review-rail::-webkit-scrollbar { display: none; }
.works-rail figure { flex: 0 0 min(560px, 76vw); margin: 0; scroll-snap-align: start; }
.works-rail img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.works-rail figcaption { display: grid; gap: 5px; margin-top: 15px; }
.works-rail figcaption span { color: var(--brand); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.works-rail figcaption strong { font-size: 19px; }
.rail-controls { display: flex; justify-content: end; gap: 10px; margin-top: 28px; }
.rail-controls button { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }

.about-strip { background: var(--canvas); }
.about-strip__grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(480px, 1.1fr); gap: clamp(60px, 9vw, 150px); align-items: center; }
.about-strip__media { position: relative; padding: 0 48px 48px 0; }
.about-strip__media::after { content: ""; position: absolute; inset: 48px 0 0 48px; z-index: -1; background: var(--brand); border-radius: var(--radius-lg); }
.about-strip__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); }
.about-strip__copy > p:not(.eyebrow) { max-width: 700px; margin: 28px 0; color: var(--muted); font-size: 18px; }
.stats-line { display: grid; grid-template-columns: repeat(3, 1fr); margin: 40px 0; }
.stats-line > div { padding: 0 24px; border-left: 1px solid var(--line); }
.stats-line > div:first-child { padding-left: 0; border-left: 0; }
.stats-line dt { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 38px); font-weight: 600; color: var(--brand); }
.stats-line dd { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.reviews { background: var(--surface-blue); }
.review-rail figure { flex: 0 0 min(420px, 80vw); margin: 0; padding: 16px; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); scroll-snap-align: start; }
.review-rail img { width: 100%; height: auto; }
.review-rail figcaption { padding: 12px 4px 2px; color: var(--muted); }
.honest-empty { margin: 0; padding: 34px; border: 1px dashed var(--brand); border-radius: var(--radius-md); color: var(--muted); background: oklch(1 0 0 / .55); }

.faq { background: var(--surface); }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion h3 { margin: 0; }
.accordion button { display: grid; grid-template-columns: 1fr 36px; width: 100%; padding: 26px 0; border: 0; background: none; text-align: left; font-family: var(--font-display); font-size: clamp(17px, 1.7vw, 22px); line-height: 1.3; cursor: pointer; }
.accordion button > span:last-child { color: var(--brand); text-align: right; font-size: 27px; transition: transform 200ms var(--ease-out); }
.accordion button[aria-expanded="true"] > span:last-child { transform: rotate(45deg); }
.accordion__item > div { padding: 0 60px 26px 0; }
.accordion__item p { max-width: 720px; margin: 0; color: var(--muted); }

.final-cta { background: var(--brand); color: white; }
.final-cta__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr); gap: clamp(60px, 9vw, 150px); align-items: start; }
.final-cta__copy > p { max-width: 620px; color: oklch(0.94 .02 250); font-size: 18px; }
.final-cta__messenger { margin-top: 36px; }
.messenger-links { display: flex; gap: 12px; flex-wrap: wrap; }
.messenger-links a { display: inline-flex; align-items: center; gap: 9px; padding: 12px 16px; border: 1px solid oklch(1 0 0 / .4); border-radius: var(--radius-md); font-weight: 800; }
.final-cta .request-form { padding: clamp(26px, 4vw, 48px); border-radius: var(--radius-lg); background: var(--surface); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; color: var(--ink); padding: 13px 14px; }
.form-notice { padding: 12px; border-radius: var(--radius-sm); font-weight: 700; }
.form-notice--success { background: oklch(.92 .08 150); color: oklch(.32 .1 150); }
.form-notice--error { background: oklch(.94 .05 25); color: var(--danger); }

.site-footer { padding-top: 78px; background: var(--ink); color: white; }
.site-footer__grid { display: grid; grid-template-columns: 1.35fr .75fr 1fr 1fr; gap: clamp(34px, 5vw, 80px); padding-bottom: 60px; }
.brand--footer { color: white; }
.site-footer__brand > p { max-width: 390px; margin: 24px 0 0; color: oklch(.78 .02 250); }
.site-footer h2 { margin: 0 0 20px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: oklch(.7 .04 250); }
.site-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer a { transition: color 160ms var(--ease-out); }
.site-footer__contacts { display: grid; align-content: start; gap: 10px; }
.site-footer__contacts h2 { margin-bottom: 10px; }
.site-footer__contacts p { color: oklch(.78 .02 250); }
.site-footer__phone { font-family: var(--font-display); font-size: 20px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid oklch(1 0 0 / .14); color: oklch(.72 .02 250); font-size: 13px; }
.site-footer__bottom p { margin: 0; }

.inner-hero, .contacts-hero { padding-block: clamp(60px, 8vw, 120px); background: var(--surface); }
.inner-hero__grid, .contacts-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .8fr); gap: clamp(54px, 8vw, 140px); align-items: center; }
.inner-hero h1, .contacts-hero h1 { font-size: clamp(38px, 5.4vw, 78px); }
.inner-hero__lead { max-width: 760px; margin: 28px 0; color: var(--muted); font-size: clamp(18px, 2vw, 24px); }
.inner-hero figure { margin: 0; position: relative; }
.inner-hero figure::before { content: ""; position: absolute; inset: -24px 32px 24px -32px; z-index: 0; background: var(--brand); border-radius: var(--radius-lg); }
.inner-hero figure img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); }
.inline-benefits { display: flex; flex-wrap: wrap; gap: 9px 18px; margin: 28px 0; padding: 0; list-style: none; color: var(--brand-deep); font-size: 14px; font-weight: 800; }
.inline-benefits li::before { content: "✓"; margin-right: 7px; color: var(--accent); }
.situation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.situation-grid article { min-height: 260px; padding: clamp(26px, 4vw, 48px); background: var(--surface); }
.situation-grid article > span { color: var(--brand); font-family: var(--font-display); font-size: 12px; }
.situation-grid h3 { margin: 64px 0 12px; font-family: var(--font-display); font-size: 21px; }
.situation-grid p { margin: 0; color: var(--muted); }
.service-process { background: var(--surface-blue); }
.service-split { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(480px, 1.2fr); gap: clamp(60px, 10vw, 170px); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.process-list li:first-child { border-top: 1px solid var(--line); }
.process-list li > span { color: var(--brand); font-family: var(--font-display); }
.process-list h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 20px; }
.process-list p { margin: 0; color: var(--muted); }
.service-why .check-rail li { border-color: var(--line); color: var(--ink); }
.service-price { background: var(--brand-deep); color: white; }
.service-price__grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(60px, 10vw, 170px); }
.service-price__grid p { max-width: 650px; color: oklch(.86 .025 250); font-size: 18px; }
.service-price__grid ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid oklch(1 0 0 / .2); }
.service-price__grid li { padding: 18px 0; border-bottom: 1px solid oklch(1 0 0 / .2); }
.compact-works__grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 20px; }
.compact-works__grid img { width: 100%; height: 410px; object-fit: cover; border-radius: var(--radius-lg); }
.page-cta { padding-block: 62px; background: var(--accent); color: var(--accent-ink); }
.page-cta__inner { display: grid; grid-template-columns: 1fr auto auto; gap: 30px; align-items: center; }
.page-cta h2 { margin: 0 0 8px; font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 48px); }
.page-cta p { margin: 0; }
.page-cta > * a { font-family: var(--font-display); font-weight: 600; }
.reason-row { display: grid; grid-template-columns: 1.1fr .9fr 1.15fr; gap: 28px; }
.reason-row article { padding: 34px 0; border-top: 2px solid oklch(1 0 0 / .3); }
.reason-row span { color: var(--accent); font-family: var(--font-display); font-size: 12px; }
.reason-row h3 { margin: 44px 0 12px; font-family: var(--font-display); font-size: 22px; }
.reason-row p { color: oklch(.85 .025 250); }
.large-copy { margin: 0; color: var(--muted); font-size: clamp(19px, 2.2vw, 28px); }
.stats-line--wide { margin-top: 70px; }
.contacts-business { margin: 32px 0; font-weight: 800; }
.contacts-list { margin: 0; border-top: 1px solid var(--line); }
.contacts-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contacts-list dt { color: var(--muted); }
.contacts-list dd { margin: 0; font-weight: 700; }
.contacts-map { background: var(--brand-deep); color: white; border-radius: var(--radius-lg); overflow: hidden; }
.contacts-map iframe { display: block; width: 100%; height: 460px; border: 0; filter: saturate(.8) contrast(1.05); }
.contacts-map > div { padding: 28px; }
.contacts-map h2 { margin: 0 0 8px; font-family: var(--font-display); font-size: 22px; }
.contacts-map p { margin: 0; color: oklch(.82 .025 250); }
.blog-page, .article-page, .legal-page { padding-block: clamp(70px, 9vw, 140px); }
.blog-page__head { max-width: 1100px; margin-bottom: 70px; }
.blog-page h1, .article-page h1, .legal-page h1 { font-size: clamp(38px, 6vw, 82px); }
.blog-page__head > p:last-child, .legal-page__lead { max-width: 760px; color: var(--muted); font-size: 20px; }
.post-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.post-card { display: grid; grid-template-columns: 320px 1fr; gap: 44px; padding: 24px; background: var(--surface); }
.post-card__media { min-height: 230px; background: var(--surface-blue); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__date { color: var(--brand); font-size: 12px; font-weight: 800; }
.post-card h2 { margin: 12px 0; font-family: var(--font-display); font-size: 26px; }
.post-card p { color: var(--muted); }
.article-page article, .legal-page article { max-width: 980px; }
.article-page header { margin-bottom: 48px; }
.article-page__cover { margin: 0 0 48px; }
.article-page__cover img { width: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius-lg); }
.article-page__content, .legal-page__content { font-size: 18px; line-height: 1.8; }
.article-page__content h2, .legal-page__content h2 { margin-top: 2em; font-family: var(--font-display); line-height: 1.2; }

@media (hover:hover) and (pointer:fine) {
	.service-card:hover .service-card__media img { transform: scale(1.035); }
	.site-footer a:hover { color: var(--accent); }
	.rail-controls button:hover { background: var(--brand); border-color: var(--brand); color: white; }
}

@media (max-width: 1100px) {
	.section-head--row, .trust__grid, .faq__grid, .approach__layout, .about-strip__grid, .final-cta__grid, .inner-hero__grid, .contacts-hero__grid, .service-split, .service-price__grid { grid-template-columns: 1fr; }
	.section-head--sticky { position: static; }
	.service-card, .service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 12; margin: 0; }
	.process-track { grid-template-columns: 1fr 1fr; }
	.process-track li { min-height: 230px; }
	.inner-hero figure { max-width: 700px; }
	.site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
	.shell { width: min(calc(100% - 32px), 1600px); }
	.section { padding-block: 72px; }
	.section-head--row { gap: 20px; }
	.service-card { grid-template-columns: 1fr; }
	.service-card__media { min-height: 260px; }
	.service-card__index { margin-bottom: 24px; }
	.process-track { grid-template-columns: 1fr; }
	.process-track li { min-height: auto; padding: 28px 0; }
	.process-track li > span { margin-bottom: 24px; }
	.about-strip__media { padding: 0 24px 24px 0; }
	.about-strip__media::after { inset: 24px 0 0 24px; }
	.stats-line, .stats-line--wide { grid-template-columns: 1fr; margin-top: 36px; }
	.stats-line > div { padding: 18px 0; border-left: 0; border-top: 1px solid var(--line); }
	.form-row { grid-template-columns: 1fr; gap: 0; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__brand, .site-footer__contacts { grid-column: 1 / -1; }
	.site-footer__bottom { flex-direction: column; }
	.situation-grid { grid-template-columns: 1fr; }
	.situation-grid article { min-height: 220px; }
	.compact-works__grid { grid-template-columns: 1fr; }
	.compact-works__grid img { height: 300px; }
	.page-cta__inner { grid-template-columns: 1fr; }
	.reason-row { grid-template-columns: 1fr; gap: 0; }
	.contacts-list > div { grid-template-columns: 1fr; gap: 4px; }
	.post-card { grid-template-columns: 1fr; gap: 24px; }
	.post-card__media:empty { display: none; }
}
