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

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/inter-latin.woff2") format("woff2");
	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: "Manrope";
	font-style: normal;
	font-weight: 500 800;
	font-display: swap;
	src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 500 800;
	font-display: swap;
	src: url("../fonts/manrope-latin.woff2") format("woff2");
	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 {
	--font-body: "Inter", Arial, Helvetica, sans-serif;
	--font-display: "Manrope", "Inter", Arial, Helvetica, sans-serif;
	--ink: #15181d;
	--ink-soft: #303640;
	--paper: #ffffff;
	--muted: #f3f5f7;
	--line: #dbe1e5;
	--text: #3f4650;
	--subtle: #68727c;
	--accent: #e5462f;
	--accent-dark: #be321f;
	--yellow: #f5b82e;
	--blue: #087fae;
	--green: #18794e;
	--container: 1200px;
	--shadow: 0 18px 42px rgba(16, 20, 26, 0.14);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 92px;
}

body {
	margin: 0;
	color: var(--text);
	background: var(--paper);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

a {
	color: inherit;
}

button,
input,
textarea {
	font: inherit;
}

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

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0;
}

h1 {
	max-width: 840px;
	margin-bottom: 18px;
	font-size: clamp(38px, 5vw, 54px);
	line-height: 1.04;
}

h2 {
	margin-bottom: 18px;
	font-size: clamp(30px, 4vw, 46px);
}

h3 {
	margin-bottom: 10px;
	font-size: 22px;
}

.container {
	width: min(var(--container), calc(100% - 48px));
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1000;
	padding: 10px 16px;
	color: var(--paper);
	background: var(--ink);
	transform: translateY(-150%);
}

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

.topbar {
	color: #dfe4e8;
	background: #0f1216;
	font-size: 13px;
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 36px;
	gap: 20px;
}

.topbar a {
	text-decoration: none;
}

.topbar i {
	margin-right: 7px;
	color: var(--yellow);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(219, 225, 229, 0.92);
	box-shadow: 0 10px 30px rgba(16, 20, 26, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	min-height: 72px;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 11px;
	color: var(--ink);
	text-decoration: none;
}

.brand__mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
}

.brand__mark img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.brand__text {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 800;
	white-space: nowrap;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	gap: 18px;
}

.site-nav a,
.nav-catalog__button {
	color: var(--ink-soft);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-catalog__button:hover,
.nav-catalog__button:focus-visible {
	color: var(--accent);
}

.site-nav a.is-active,
.nav-catalog.is-active > .nav-catalog__button {
	color: var(--accent);
}

.nav-catalog {
	position: relative;
}

.nav-catalog__button {
	display: inline-flex;
	align-items: center;
	padding: 0;
	gap: 6px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.nav-catalog__button i {
	font-size: 15px;
	transition: transform 180ms ease;
}

.nav-catalog:hover .nav-catalog__button i,
.nav-catalog:focus-within .nav-catalog__button i,
.nav-catalog.catalog-open .nav-catalog__button i {
	transform: rotate(180deg);
}

.nav-catalog__menu {
	position: absolute;
	top: calc(100% + 18px);
	left: 50%;
	z-index: 80;
	display: grid;
	width: 300px;
	padding: 10px;
	gap: 2px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 18px 38px rgba(16, 20, 26, 0.16);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 10px);
	visibility: hidden;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-catalog__menu::before {
	position: absolute;
	top: -9px;
	left: 50%;
	width: 16px;
	height: 16px;
	content: "";
	background: var(--paper);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
	transform: translateX(-50%) rotate(45deg);
}

.nav-catalog:hover .nav-catalog__menu,
.nav-catalog:focus-within .nav-catalog__menu,
.nav-catalog.catalog-open .nav-catalog__menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

.nav-catalog__menu a {
	position: relative;
	z-index: 1;
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.25;
}

.nav-catalog__menu a:hover,
.nav-catalog__menu a:focus-visible {
	color: var(--paper);
	background: var(--ink);
}

.nav-service-link {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	color: var(--paper) !important;
	background: var(--blue);
	border-radius: 6px;
	box-shadow: 0 8px 18px rgba(8, 127, 174, 0.22);
}

.nav-service-link:hover,
.nav-service-link:focus-visible {
	background: #066a91;
	transform: translateY(-1px);
}

.header-phone {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
	color: var(--ink);
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
}

.header-phone i {
	color: var(--accent);
	font-size: 20px;
}

.header-phone span {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.header-phone small {
	color: var(--subtle);
	font-size: 11px;
	font-weight: 400;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: var(--ink);
	transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(560px, calc(100vh - 180px));
	overflow: hidden;
	color: var(--paper);
	background: url("../../images/hero-ftech.jpg") center center / cover no-repeat;
}

.hero::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	content: "";
	background:
		linear-gradient(115deg, transparent 0%, transparent 36%, rgba(255, 255, 255, 0.18) 45%, transparent 54%, transparent 100%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 86px);
	mix-blend-mode: screen;
	opacity: 0.45;
	pointer-events: none;
	transform: translateX(-40%);
	animation: heroSweep 9s ease-in-out infinite;
}

.hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(9, 12, 16, 0.82) 0%, rgba(9, 12, 16, 0.62) 46%, rgba(9, 12, 16, 0.2) 100%);
}

.hero__content {
	position: relative;
	z-index: 1;
	padding-block: 46px 30px;
}

.hero__content > * {
	max-width: 840px;
	animation: heroRise 720ms ease both;
}

.hero__content > *:nth-child(2) {
	animation-delay: 80ms;
}

.hero__content > *:nth-child(3) {
	animation-delay: 150ms;
}

.hero__content > *:nth-child(4) {
	animation-delay: 220ms;
}

.hero__content > *:nth-child(5) {
	animation-delay: 300ms;
}

.hero h1 {
	color: var(--paper);
}

.eyebrow {
	margin-bottom: 14px;
	color: var(--yellow);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

.eyebrow--dark {
	color: var(--accent);
}

.hero__lead {
	margin-bottom: 22px;
	color: #eff2f3;
	font-size: clamp(19px, 2vw, 22px);
	line-height: 1.42;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 26px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	gap: 10px;
	border: 0;
	border-radius: 6px;
	font-family: var(--font-display);
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--accent {
	box-shadow: 0 12px 26px rgba(229, 70, 47, 0.24);
}

.button--accent {
	color: var(--paper);
	background: var(--accent);
}

.button--accent:hover,
.button--accent:focus-visible {
	background: var(--accent-dark);
}

.button--light {
	color: var(--ink);
	background: var(--paper);
}

.button--light:hover,
.button--light:focus-visible {
	background: #e9edef;
}

.button--line {
	border: 1px solid rgba(21, 24, 29, 0.18);
}

.button--dark {
	color: var(--paper);
	background: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
	background: #000000;
}

.button--full {
	width: 100%;
}

.hero__proof {
	display: flex;
	width: fit-content;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero__proof li {
	min-width: 160px;
	padding: 14px 28px 0 0;
}

.hero__proof li + li {
	padding-left: 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.hero__proof b,
.hero__proof span {
	display: block;
}

.hero__proof b {
	color: var(--paper);
	font-family: var(--font-display);
	font-size: 20px;
}

.hero__proof span {
	color: #d9dddf;
	font-size: 13px;
}

.service-strip {
	color: var(--paper);
	background:
		linear-gradient(90deg, rgba(245, 184, 46, 0.08), transparent 32%, rgba(8, 127, 174, 0.1)),
		var(--ink);
	background-size: 180% 100%;
	animation: stripeFlow 14s ease-in-out infinite;
}

.service-strip__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.service-strip__grid > div {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	min-height: 104px;
	padding: 22px 28px;
	gap: 16px;
}

.service-strip__grid > div + div {
	border-left: 1px solid #383e46;
}

.service-strip i {
	display: block;
	width: 34px;
	color: var(--yellow);
	font-size: 25px;
	text-align: center;
}

.service-strip span {
	color: #c8ced3;
	font-size: 14px;
	line-height: 1.4;
}

.service-strip b {
	display: block;
	color: var(--paper);
	font-family: var(--font-display);
	font-size: 16px;
}

.service-department {
	position: relative;
	overflow: hidden;
	color: var(--paper);
	background: #11171d;
	border-top: 1px solid #2b3138;
	border-bottom: 1px solid #2b3138;
}

.service-department::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 44%),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
	opacity: 0.55;
	pointer-events: none;
}

.service-department::after {
	position: absolute;
	inset: 0 auto 0 0;
	width: 8px;
	content: "";
	background: linear-gradient(180deg, var(--accent), var(--blue));
}

.service-department__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	min-height: 138px;
	padding-block: 26px;
	gap: 32px;
}

.service-department__copy {
	max-width: 820px;
}

.service-department__label {
	display: inline-flex;
	align-items: center;
	margin: 0 0 10px;
	padding: 6px 10px;
	color: #ffd16d;
	background: rgba(255, 184, 44, 0.1);
	border: 1px solid rgba(255, 184, 44, 0.28);
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.service-department h2 {
	max-width: 760px;
	margin-bottom: 8px;
	color: var(--paper);
	font-size: clamp(24px, 2.5vw, 34px);
}

.service-department p:not(.service-department__label) {
	max-width: 720px;
	margin: 0;
	color: #d7e0e5;
	font-size: 16px;
}

.service-department__actions {
	display: grid;
	justify-items: end;
	min-width: 290px;
	gap: 8px;
}

.service-department__button {
	white-space: nowrap;
}

.service-department__actions span {
	color: #9faab3;
	font-size: 13px;
}

.section {
	padding-block: 92px;
}

.section--muted {
	background: var(--muted);
}

.section-heading {
	max-width: 760px;
	margin-bottom: 40px;
}

.section-heading--wide {
	max-width: 880px;
}

.section-heading > p:last-child {
	margin-bottom: 0;
	color: var(--subtle);
	font-size: 18px;
}

.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
	align-items: start;
	gap: 70px;
}

.intro-grid .section-heading {
	margin-bottom: 0;
}

.intro-facts {
	display: grid;
	gap: 12px;
	padding-top: 8px;
}

.intro-facts div {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: start;
	padding: 18px 0;
	gap: 18px;
	border-bottom: 1px solid var(--line);
}

.intro-facts strong {
	color: var(--accent);
	font-family: var(--font-display);
	font-size: 28px;
	line-height: 1;
}

.intro-facts span {
	color: var(--ink-soft);
	font-weight: 700;
	line-height: 1.45;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.product-card {
	position: relative;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	background: linear-gradient(180deg, transparent 44%, rgba(21, 24, 29, 0.05));
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease;
}

.product-card:hover {
	border-color: #bac2c8;
	box-shadow: 0 14px 30px rgba(18, 24, 30, 0.08);
	transform: translateY(-3px);
}

.product-card:hover::before {
	opacity: 1;
}

.product-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #d9dde0;
	transition: transform 420ms ease;
}

.product-card:hover img {
	transform: scale(1.045);
}

.product-card > div {
	padding: 26px;
}

.product-card i {
	display: grid;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	place-items: center;
	color: var(--paper);
	background: var(--ink);
	border-radius: 6px;
	font-size: 20px;
}

.product-card p {
	margin-bottom: 16px;
	color: var(--subtle);
}

.product-card ul {
	margin: 0;
	padding-left: 18px;
	color: var(--ink-soft);
}

.product-card li + li {
	margin-top: 6px;
}

.product-card__link {
	display: inline-flex;
	align-items: center;
	margin-top: 18px;
	gap: 8px;
	color: var(--accent);
	font-weight: 800;
	text-decoration: none;
}

.product-card__link:hover,
.product-card__link:focus-visible {
	color: var(--accent-dark);
}

.product-card__link i {
	display: inline;
	width: auto;
	height: auto;
	margin: 0;
	color: currentColor;
	background: transparent;
	border-radius: 0;
	font-size: 16px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 26px;
	gap: 9px;
	color: var(--subtle);
	font-size: 14px;
	font-weight: 700;
}

.breadcrumbs a {
	color: var(--accent);
	text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.inner-hero {
	padding-block: 58px 72px;
	background: linear-gradient(180deg, #f5f7f8 0%, #ffffff 100%);
	border-bottom: 1px solid var(--line);
}

.inner-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
	align-items: center;
	gap: 58px;
}

.inner-hero__copy h1 {
	max-width: 760px;
}

.inner-hero__lead {
	max-width: 760px;
	margin-bottom: 28px;
	color: var(--ink-soft);
	font-size: 20px;
	line-height: 1.55;
}

.inner-hero__image {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: var(--shadow);
	transition: transform 420ms ease, box-shadow 420ms ease;
}

.inner-hero__image:hover {
	box-shadow: 0 24px 48px rgba(16, 20, 26, 0.18);
	transform: translateY(-4px);
}

.inner-hero--compact {
	padding-block: 54px 62px;
}

.split-section {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	align-items: start;
	gap: 72px;
}

.large-copy {
	max-width: 820px;
	color: var(--subtle);
	font-size: 18px;
	line-height: 1.7;
}

.feature-list {
	display: grid;
	margin: 28px 0 34px;
	padding: 0;
	gap: 12px;
	list-style: none;
}

.feature-list li {
	position: relative;
	padding: 15px 18px 15px 48px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
}

.feature-list li::before {
	position: absolute;
	top: 15px;
	left: 18px;
	width: 18px;
	height: 18px;
	content: "";
	background: var(--accent);
	border-radius: 50%;
	box-shadow: inset 0 0 0 5px var(--paper);
}

.info-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.info-columns article {
	padding: 24px;
	background: #f7f9fa;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.info-columns h3 {
	margin-bottom: 8px;
	font-size: 22px;
}

.info-columns p {
	margin: 0;
	color: var(--subtle);
	line-height: 1.65;
}

.page-nav {
	position: sticky;
	top: 96px;
	padding: 22px;
	background: var(--ink);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.page-nav h3 {
	margin-bottom: 14px;
	color: var(--paper);
	font-size: 20px;
}

.page-nav a {
	display: block;
	padding: 10px 0;
	color: #d9dde0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

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

.catalog-request {
	border-block: 1px solid var(--line);
}

.catalog-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.7fr);
	align-items: start;
	gap: 72px;
}

.catalog-copy {
	max-width: 680px;
}

.catalog-copy p:not(.eyebrow) {
	color: var(--subtle);
	font-size: 18px;
	line-height: 1.7;
}

.request-form--catalog .form-row textarea {
	min-height: 110px;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.related-card {
	display: flex;
	min-height: 124px;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
	border-color: #bac2c8;
	box-shadow: 0 14px 30px rgba(18, 24, 30, 0.08);
	transform: translateY(-2px);
}

.related-card span {
	color: var(--subtle);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.related-card b {
	margin-top: 16px;
	font-size: 18px;
	line-height: 1.25;
}

.service-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
	align-items: start;
	gap: 76px;
}

.service-copy > p:not(.eyebrow) {
	max-width: 700px;
	color: var(--subtle);
	font-size: 18px;
}

.check-list {
	margin-top: 30px;
}

.check-list p {
	display: flex;
	gap: 14px;
}

.check-list i {
	display: grid;
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	margin-top: 2px;
	place-items: center;
	color: var(--paper);
	background: var(--green);
	border-radius: 50%;
	font-size: 12px;
}

.check-list b {
	color: var(--ink);
}

.workflow {
	display: grid;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
}

.workflow div {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	padding: 22px;
	gap: 8px 16px;
	background: var(--paper);
}

.workflow span {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	color: var(--paper);
	background: var(--accent);
	border-radius: 6px;
	font-family: var(--font-display);
	font-weight: 800;
}

.workflow b {
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 18px;
}

.workflow p {
	grid-column: 2;
	margin-bottom: 0;
	color: var(--subtle);
	font-size: 14px;
}

.ai-section {
	padding-block: 68px;
	color: var(--paper);
	background: var(--blue);
	border-top: 5px solid #26bee8;
	border-bottom: 1px solid #076a93;
	box-shadow: inset 0 -18px 40px rgba(3, 48, 70, 0.2);
}

.ai-section__inner {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr) auto;
	align-items: center;
	gap: 30px;
}

.ai-section__icon {
	display: grid;
	width: 88px;
	height: 88px;
	place-items: center;
	color: var(--blue);
	background: #e5f8ff;
	border: 4px solid rgba(255, 255, 255, 0.85);
	border-radius: 8px;
	font-size: 38px;
	box-shadow: 0 12px 30px rgba(3, 48, 70, 0.3);
}

.ai-section h2 {
	margin-bottom: 12px;
	color: var(--paper);
	font-size: clamp(28px, 3.5vw, 42px);
}

.ai-section__content > p:not(.eyebrow):not(.ai-section__warning) {
	max-width: 740px;
	margin-bottom: 14px;
	color: #f1f7fb;
}

.ai-section__warning {
	margin-bottom: 0;
	color: #fff5c4;
	font-size: 13px;
}

.ai-section .ai-link {
	color: #063d57;
	background: #e5f8ff;
	box-shadow: 0 12px 28px rgba(3, 48, 70, 0.28);
}

.ai-section .ai-link:hover {
	color: #063d57;
	background: #ffffff;
}

.ai-link[aria-disabled="true"] {
	color: #075d82;
	background: #d8f4ff;
	cursor: not-allowed;
	opacity: 0.82;
}

.ai-link[aria-disabled="true"]:hover {
	transform: none;
}

.reference-section {
	background: var(--paper);
}

.reference-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
	gap: 70px;
}

.reference-grid > div:first-child p:not(.eyebrow) {
	color: var(--subtle);
	font-size: 18px;
}

.reference-list {
	display: grid;
	gap: 18px;
}

.reference-list p {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	margin: 0;
	gap: 16px;
}

.reference-list i {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: var(--paper);
	background: var(--ink);
	border-radius: 6px;
}

.reference-list b {
	color: var(--ink);
}

.section--contact {
	color: #d9dde0;
	background: var(--ink);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.7fr);
	gap: 80px;
}

.contact-details h2 {
	color: var(--paper);
}

.contact-details > p:not(.eyebrow) {
	max-width: 620px;
	color: #b9c0c5;
	font-size: 18px;
}

.contact-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 36px;
	gap: 10px;
}

.contact-list a {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 82px;
	padding: 12px 14px;
	gap: 16px;
	color: var(--paper);
	background: #262b31;
	border: 1px solid #3a4149;
	border-radius: 6px;
	text-decoration: none;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.contact-list a:hover {
	background: #2c3239;
	border-color: var(--yellow);
}

.contact-list a:hover > span:last-child {
	color: var(--yellow);
}

.contact-list a > i,
.contact-logo {
	display: grid;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	place-items: center;
	color: var(--paper);
	background: #343b44;
	border-radius: 6px;
	font-size: 17px;
	font-weight: 900;
}

.contact-logo {
	padding: 3px;
	object-fit: contain;
	background: var(--paper);
}

.contact-list a > span:last-child {
	display: flex;
	min-width: 0;
	flex-direction: column;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.contact-list a[href^="mailto:"] > span:last-child {
	font-size: 15px;
}

.contact-list small {
	color: #8f979e;
	font-size: 12px;
	font-weight: 400;
}

.more-phones {
	margin-top: 16px;
	padding: 15px 16px;
	background: #20242a;
	border: 1px solid #383f47;
	border-radius: 6px;
}

.more-phones summary {
	color: #b9c0c5;
	font-size: 14px;
	cursor: pointer;
}

.provider-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 12px;
	gap: 10px;
}

.provider-list a {
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 9px;
	gap: 8px;
	color: var(--paper);
	background: #2b3138;
	border: 1px solid #3b434c;
	border-radius: 6px;
	font-size: 12px;
	text-decoration: none;
}

.provider-list img {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	padding: 2px;
	object-fit: contain;
	background: var(--paper);
	border-radius: 5px;
}

.provider-list span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	line-height: 1.3;
}

.provider-list small {
	color: #929aa1;
}

.request-panel {
	padding: 38px;
	color: var(--text);
	background: var(--paper);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.request-panel h2 {
	margin-bottom: 8px;
	font-size: 32px;
}

.request-panel > p {
	margin-bottom: 28px;
	color: var(--subtle);
}

.form-row {
	margin-bottom: 18px;
}

.form-row label {
	display: block;
	margin-bottom: 6px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 800;
}

.form-row label span {
	color: var(--subtle);
	font-size: 12px;
	font-weight: 400;
}

.form-hint {
	display: block;
	margin-top: 7px;
	color: var(--subtle);
	font-size: 12px;
	line-height: 1.45;
}

.form-row input,
.form-row textarea {
	display: block;
	width: 100%;
	padding: 13px 14px;
	color: var(--ink);
	background: #fafbfb;
	border: 1px solid #cfd5d9;
	border-radius: 5px;
	outline: 0;
}

.form-row input {
	height: 48px;
}

.form-row textarea {
	min-height: 126px;
	resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
	background: var(--paper);
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(229, 70, 47, 0.13);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
	color: #92999f;
	opacity: 1;
}

.form-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
}

.consent {
	display: flex;
	align-items: flex-start;
	margin: 4px 0 20px;
	gap: 10px;
	color: var(--subtle);
	font-size: 13px;
	line-height: 1.4;
	cursor: pointer;
}

.consent input {
	flex: 0 0 auto;
	margin-top: 3px;
	accent-color: var(--accent);
}

.consent a,
.privacy-note a {
	color: #075d82;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.privacy-note {
	margin: -8px 0 20px;
	color: var(--subtle);
	font-size: 12px;
	line-height: 1.5;
}

.request-form button[disabled] {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.form-status {
	min-height: 24px;
	margin: 12px 0 0;
	font-size: 14px;
	text-align: center;
}

.form-status.is-success {
	color: var(--green);
}

.form-status.is-error {
	color: #b42318;
}

.legal-section {
	padding-block: 24px;
	background: #0f1216;
	border-top: 1px solid #2a3038;
}

.legal-section details {
	color: #aab1b7;
	font-size: 13px;
}

.legal-section summary {
	width: fit-content;
	color: #d8dcdf;
	cursor: pointer;
}

.legal-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 24px;
	gap: 34px;
}

.legal-grid b {
	color: var(--paper);
}

.site-footer {
	padding-block: 24px;
	color: #858d94;
	background: #090b0d;
	font-size: 13px;
}

.site-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.site-footer p {
	margin-bottom: 0;
}

.site-footer a {
	color: #c8cdd1;
	text-decoration: none;
}

.site-footer i {
	margin-left: 6px;
}

.site-footer__links {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 5px;
	text-align: right;
}

.site-footer__links a:hover {
	color: var(--paper);
}

.legal-page {
	padding-bottom: 0;
	background: var(--muted);
}

.document-header {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}

.document-header__inner {
	display: flex;
	min-height: 82px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.document-header__back {
	color: #075d82;
	font-weight: 700;
	text-decoration: none;
}

.legal-document {
	padding-block: 70px 90px;
}

.legal-document__content {
	max-width: 880px;
	margin-inline: auto;
	padding: 48px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 6px;
}

.legal-document h1 {
	font-size: clamp(32px, 5vw, 48px);
}

.legal-document h2 {
	margin-top: 38px;
	font-size: 25px;
}

.legal-document p,
.legal-document li {
	line-height: 1.7;
}

.legal-document li + li {
	margin-top: 8px;
}

.document-meta {
	margin-bottom: 34px;
	color: var(--subtle);
}

.document-contacts {
	padding: 18px 20px;
	background: #e9f7fc;
	border-left: 4px solid var(--blue);
}

.mobile-bar {
	display: none;
}

.reveal-item {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes heroSweep {
	0%,
	62%,
	100% {
		transform: translateX(-45%);
	}

	34% {
		transform: translateX(45%);
	}
}

@keyframes heroRise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes stripeFlow {
	0%,
	100% {
		background-position: 0 0;
	}

	50% {
		background-position: 100% 0;
	}
}

@media (max-width: 1100px) {
	.site-nav {
		gap: 14px;
	}

	.site-nav a {
		font-size: 13px;
	}

	.nav-service-link {
		padding-inline: 10px;
	}

	.header-phone {
		display: none;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.inner-hero__grid,
	.split-section,
	.catalog-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.page-nav {
		position: static;
	}

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

	.ai-section__inner {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.ai-section__icon {
		width: 72px;
		height: 72px;
	}

	.ai-link {
		grid-column: 2;
		justify-self: start;
	}
}

@media (max-width: 860px) {
	html {
		scroll-padding-top: 72px;
	}

	.topbar {
		display: none;
	}

	.site-header__inner {
		min-height: 64px;
		justify-content: space-between;
	}

	.site-header {
		backdrop-filter: none;
	}

	.nav-toggle {
		display: block;
	}

	.nav-open .nav-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.nav-open .nav-toggle span:nth-child(2) {
		opacity: 0;
	}

	.nav-open .nav-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.site-nav {
		position: fixed;
		inset: 64px 0 0;
		display: none;
		align-items: stretch;
		justify-content: flex-start;
		padding: 22px 24px 96px;
		gap: 0;
		background: var(--paper);
		overflow-y: auto;
	}

	.nav-open .site-nav {
		display: flex;
		flex-direction: column;
	}

	.site-nav a,
	.nav-catalog__button {
		padding: 16px 0;
		font-size: 18px;
		border-bottom: 1px solid var(--line);
	}

	.nav-catalog {
		width: 100%;
	}

	.nav-catalog__button {
		justify-content: space-between;
		width: 100%;
	}

	.nav-catalog__menu {
		position: static;
		display: none;
		width: 100%;
		padding: 6px 0 12px 16px;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
	}

	.nav-catalog__menu::before {
		display: none;
	}

	.nav-catalog.catalog-open .nav-catalog__menu {
		display: grid;
		opacity: 1;
		transform: none;
		visibility: visible;
	}

	.nav-catalog:hover .nav-catalog__menu,
	.nav-catalog:focus-within .nav-catalog__menu {
		transform: none;
	}

	.nav-catalog__menu a {
		padding: 10px 0;
		font-size: 15px;
		border-bottom: 0;
	}

	.nav-service-link {
		justify-content: center;
		margin-top: 18px;
		padding: 0 14px !important;
		border-bottom: 0 !important;
	}

	.hero {
		min-height: 540px;
		background-position: 62% center;
	}

	.hero__shade {
		background: rgba(9, 12, 16, 0.68);
	}

	.inner-hero {
		padding-block: 38px 56px;
	}

	.inner-hero__lead {
		font-size: 18px;
	}

	.service-department__inner {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.service-department__actions {
		justify-items: start;
		min-width: 0;
	}

	.service-department__button {
		width: 100%;
		white-space: normal;
	}

	.service-strip__grid,
	.intro-grid,
	.service-layout,
	.reference-grid,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.service-strip__grid {
		padding-block: 12px;
	}

	.service-strip__grid > div {
		min-height: 72px;
		padding: 14px 4px;
	}

	.service-strip__grid > div + div {
		border-top: 1px solid #383e46;
		border-left: 0;
	}

	.section {
		padding-block: 70px;
	}

	.catalog-copy p:not(.eyebrow),
	.large-copy {
		font-size: 16px;
	}

	.intro-grid,
	.service-layout,
	.reference-grid,
	.contact-layout {
		gap: 44px;
	}

	.legal-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

@media (max-width: 620px) {
	body {
		padding-bottom: 64px;
	}

	.container {
		width: min(100% - 32px, var(--container));
	}

	h1 {
		font-size: 34px;
	}

	h2 {
		font-size: 31px;
	}

	.brand__text {
		font-size: 14px;
	}

	.hero {
		min-height: 520px;
		background-position: 68% center;
	}

	.hero__shade {
		background: rgba(9, 12, 16, 0.74);
	}

	.hero__content {
		padding-block: 58px 44px;
	}

	.hero__lead {
		font-size: 16px;
	}

	.hero__actions,
	.hero__actions .button {
		width: 100%;
	}

	.hero__proof {
		display: none;
	}

	.section {
		padding-block: 56px;
	}

	.section-heading {
		margin-bottom: 30px;
	}

	.section-heading > p:last-child,
	.service-copy > p:not(.eyebrow),
	.reference-grid > div:first-child p:not(.eyebrow),
	.contact-details > p:not(.eyebrow) {
		font-size: 16px;
	}

	.product-grid,
	.info-columns,
	.related-grid,
	.contact-list,
	.provider-list {
		grid-template-columns: 1fr;
	}

	.inner-hero__grid,
	.catalog-layout {
		gap: 28px;
	}

	.inner-hero__image {
		box-shadow: none;
	}

	.product-card > div {
		padding: 24px;
	}

	.workflow div,
	.reference-list p {
		grid-template-columns: 1fr;
	}

	.workflow p {
		grid-column: 1;
	}

	.ai-section__inner {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.ai-section__icon {
		width: 58px;
		height: 58px;
		font-size: 27px;
	}

	.ai-link {
		grid-column: 1;
		width: 100%;
	}

	.request-panel {
		padding: 26px 20px;
	}

	.site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__links {
		align-items: flex-start;
		text-align: left;
	}

	.document-header__inner {
		min-height: 72px;
	}

	.document-header__back {
		font-size: 13px;
	}

	.legal-document {
		padding-block: 34px 74px;
	}

	.legal-document__content {
		padding: 28px 20px;
	}

	.legal-document h1 {
		font-size: 32px;
	}

	.mobile-bar {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 120;
		display: grid;
		height: 64px;
		grid-template-columns: repeat(2, 1fr);
		background: var(--paper);
		border-top: 1px solid var(--line);
		box-shadow: 0 -8px 22px rgba(20, 25, 30, 0.12);
	}

	.mobile-bar a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 9px;
		color: var(--ink);
		font-size: 14px;
		font-weight: 800;
		text-decoration: none;
	}

	.mobile-bar a:first-child {
		color: var(--paper);
		background: var(--accent);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		animation: none !important;
		transition: none !important;
	}

	.reveal-item {
		opacity: 1;
		transform: none;
	}
}
