:root {
	--blue: #0878f9;
	--blue-700: #0066dc;
	--blue-100: #eaf4ff;
	--blue-050: #f4f9ff;
	--navy: #071b2b;
	--graphite: #15293a;
	--ink: #223646;
	--slate: #637687;
	--line: #dce5ec;
	--line-dark: #c9d5df;
	--gray: #edf2f6;
	--gray-050: #f7fafc;
	--white: #fff;
	--orange: #f59b23;
	--green: #24a567;
	--shadow-sm: 0 10px 32px rgba(7, 27, 43, 0.08);
	--shadow-lg: 0 28px 80px rgba(7, 27, 43, 0.13);
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 26px;
	--shell: 1320px;
	--header-height: 96px;
	--font: "Manrope", Arial, sans-serif;
	--font-ar: "Noto Kufi Arabic", Tahoma, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.66;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.lang-ar {
	font-family: var(--font-ar);
	line-height: 1.9;
}

body.menu-open,
body.mega-open {
	overflow: hidden;
}

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

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

button,
input,
select,
textarea {
	font: inherit;
}

button {
	color: inherit;
}

svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

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

h1,
h2,
h3,
h4 {
	color: var(--navy);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.07;
}

.lang-ar h1,
.lang-ar h2,
.lang-ar h3,
.lang-ar h4 {
	letter-spacing: 0;
	line-height: 1.42;
}

::selection {
	color: var(--white);
	background: var(--blue);
}

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

.section {
	padding-block: clamp(88px, 9vw, 144px);
}

.section--soft {
	background: var(--gray-050);
}

.section--blue-soft {
	background: var(--blue-050);
}

.section--navy {
	color: rgba(255, 255, 255, 0.72);
	background: var(--navy);
}

.section--navy h2,
.section--navy h3 {
	color: var(--white);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	inset-block-start: 10px;
	inset-inline-start: 10px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	color: var(--white);
	background: var(--navy);
}

[hidden] {
	display: none !important;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 20px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lang-ar .eyebrow {
	letter-spacing: 0;
}

.eyebrow::before {
	width: 28px;
	height: 2px;
	content: "";
	background: currentColor;
}

.eyebrow--orange {
	color: var(--orange);
}

.eyebrow--light {
	color: #78b9ff;
}

.section-header {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
	gap: clamp(40px, 8vw, 120px);
	align-items: end;
	margin-bottom: clamp(44px, 5vw, 72px);
}

.section-header h2 {
	max-width: 850px;
	margin-bottom: 0;
	font-size: clamp(42px, 4.6vw, 70px);
}

.section-header__aside {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22px;
}

.section-header__aside > p {
	margin-bottom: 0;
	color: var(--slate);
	font-size: 16px;
}

.button {
	display: inline-flex;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 0 25px;
	border: 1px solid var(--blue);
	border-radius: var(--radius-sm);
	color: var(--white);
	background: var(--blue);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(8, 120, 249, 0.18);
	transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
	border-color: var(--blue-700);
	background: var(--blue-700);
	box-shadow: 0 14px 28px rgba(8, 120, 249, 0.24);
	transform: translateY(-2px);
}

.button svg {
	width: 19px;
	height: 19px;
}

.button--compact {
	min-height: 46px;
	padding-inline: 18px;
}

.button--outline {
	border-color: var(--line-dark);
	color: var(--navy);
	background: var(--white);
	box-shadow: none;
}

.button--outline:hover {
	border-color: var(--navy);
	color: var(--white);
	background: var(--navy);
}

.button--navy {
	border-color: var(--navy);
	background: var(--navy);
	box-shadow: 0 12px 30px rgba(7, 27, 43, 0.18);
}

.button--navy:hover {
	border-color: var(--graphite);
	background: var(--graphite);
}

.button--white {
	border-color: var(--white);
	color: var(--navy);
	background: var(--white);
	box-shadow: none;
}

.button--white:hover {
	border-color: var(--navy);
	color: var(--white);
	background: var(--navy);
}

.button--whatsapp {
	border-color: var(--green);
	background: var(--green);
	box-shadow: none;
}

.inline-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--navy);
	font-size: 13px;
	font-weight: 800;
}

.inline-link svg {
	width: 18px;
	height: 18px;
	color: var(--blue);
	transition: transform 180ms ease;
}

.inline-link:hover svg {
	transform: translateX(4px);
}

.live-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 0 5px rgba(245, 155, 35, 0.12);
}

/* Header */
.site-header {
	position: relative;
	z-index: 100;
	color: var(--navy);
	background: var(--white);
}

.site-header.is-scrolled {
	position: sticky;
	top: 0;
	box-shadow: 0 8px 30px rgba(7, 27, 43, 0.08);
}

.site-header.is-scrolled .utility-bar {
	display: none;
}

.utility-bar {
	border-bottom: 1px solid var(--line);
	color: #526779;
	background: var(--gray-050);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.utility-bar__inner,
.utility-trust,
.utility-actions {
	display: flex;
	align-items: center;
}

.utility-bar__inner {
	justify-content: space-between;
	min-height: 36px;
}

.utility-trust {
	gap: 11px;
}

.utility-trust strong {
	color: var(--navy);
}

.utility-actions {
	align-self: stretch;
	gap: 18px;
}

.utility-actions > a {
	display: flex;
	align-items: center;
	gap: 7px;
}

.utility-actions > a svg {
	width: 14px;
	height: 14px;
	color: var(--blue);
}

.language-menu {
	display: flex;
	align-items: stretch;
	align-self: stretch;
	border-inline-start: 1px solid var(--line);
}

.language-menu ul {
	display: flex;
	padding: 0;
	margin: 0;
}

.language-menu li {
	display: flex;
	list-style: none;
}

.language-menu a {
	display: grid;
	min-width: 36px;
	min-height: 36px;
	place-items: center;
	color: #7b8c9a;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.language-menu a:hover,
.language-menu a.is-active,
.language-menu .current-lang a {
	color: var(--blue);
	background: var(--blue-100);
}

.header-main {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr) auto;
	align-items: center;
	min-height: 86px;
}

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

.brand__mark {
	display: flex;
	width: 166px;
}

.brand__mark img {
	width: 100%;
}

.brand__descriptor {
	max-width: 80px;
	padding-inline-start: 13px;
	border-inline-start: 1px solid var(--line);
	color: #718391;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.45;
	text-transform: uppercase;
}

.brand .custom-logo-link {
	display: flex;
	max-width: 180px;
}

.desktop-nav {
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: 86px;
}

.catalog-trigger {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 0 20px;
	border: 0;
	background: transparent;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.catalog-trigger > span svg {
	width: 14px;
	height: 14px;
	transition: transform 180ms ease;
	transform: rotate(90deg);
}

.catalog-trigger[aria-expanded="true"] {
	color: var(--blue);
	background: var(--blue-050);
}

.catalog-trigger[aria-expanded="true"] > span svg {
	transform: rotate(-90deg);
}

.primary-navigation {
	height: 100%;
}

.primary-menu {
	display: flex;
	height: 100%;
	align-items: stretch;
	gap: 2px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu > li {
	display: flex;
}

.primary-menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 clamp(10px, 1.2vw, 18px);
	color: #405667;
	font-size: 12px;
	font-weight: 700;
}

.primary-menu > li > a::after {
	position: absolute;
	right: 16px;
	bottom: 0;
	left: 16px;
	height: 3px;
	content: "";
	background: var(--blue);
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.primary-menu > li > a:hover,
.primary-menu .current-menu-item > a {
	color: var(--navy);
}

.primary-menu > li > a:hover::after,
.primary-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.header-contact {
	color: #536878;
	font-size: 11px;
	font-weight: 800;
}

.mobile-menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-sm);
	place-items: center;
	background: var(--white);
	cursor: pointer;
}

.mobile-menu-toggle svg {
	width: 24px;
	height: 24px;
}

.mega-menu {
	position: absolute;
	z-index: 90;
	top: 100%;
	right: 0;
	left: 0;
	visibility: hidden;
	border-top: 1px solid var(--line);
	background: var(--white);
	box-shadow: 0 30px 70px rgba(7, 27, 43, 0.14);
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.mega-menu.is-open {
	visibility: visible;
	opacity: 1;
	transform: none;
}

.mega-menu__inner {
	display: grid;
	grid-template-columns: 0.7fr 1.7fr;
	gap: 54px;
	padding-block: 42px;
}

.mega-menu__intro {
	padding-inline-end: 44px;
	border-inline-end: 1px solid var(--line);
}

.mega-menu__intro > span {
	display: block;
	margin-bottom: 14px;
	color: var(--blue);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.mega-menu__intro h2 {
	margin-bottom: 22px;
	font-size: 27px;
}

.mega-menu__groups {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.mega-menu__groups > a {
	display: flex;
	min-height: 160px;
	flex-direction: column;
	padding: 19px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--gray-050);
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mega-menu__groups > a:hover {
	border-color: #9ccaff;
	background: var(--blue-050);
	transform: translateY(-3px);
}

.mega-menu__groups > a > span {
	display: grid;
	width: 40px;
	height: 40px;
	margin-bottom: auto;
	place-items: center;
	color: var(--blue);
}

.mega-menu__groups svg {
	width: 34px;
	height: 34px;
}

.mega-menu__groups b {
	margin-bottom: 4px;
	color: var(--navy);
	font-size: 13px;
}

.mega-menu__groups small {
	color: var(--slate);
	font-size: 9px;
}

.mega-menu__series {
	grid-column: 2;
	display: flex;
	align-items: center;
	gap: 25px;
}

.mega-menu__series p {
	margin: 0;
	color: var(--slate);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.mega-menu__series > div {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.mega-menu__series a {
	padding: 7px 11px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: #526778;
	font-size: 10px;
	font-weight: 700;
}

.mega-menu__series a:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.mobile-navigation {
	display: none;
}

/* Homepage hero */
.home-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(58px, 6vw, 94px) 0;
	background:
		radial-gradient(circle at 16% 12%, rgba(8, 120, 249, 0.09), transparent 28%),
		linear-gradient(180deg, #fff, #f9fcff);
}

.home-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	opacity: 0.45;
	background-image:
		linear-gradient(rgba(7, 27, 43, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 27, 43, 0.035) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.home-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(450px, 1.04fr);
	gap: clamp(50px, 7vw, 100px);
	align-items: center;
	padding-bottom: 74px;
}

.home-hero__copy {
	padding-block: 34px;
}

.home-hero h1 {
	max-width: 820px;
	margin-bottom: 28px;
	font-size: clamp(57px, 6.1vw, 94px);
	font-weight: 700;
	letter-spacing: -0.065em;
	line-height: 0.96;
}

.home-hero h1 span {
	color: var(--blue);
}

.lang-ar .home-hero h1 {
	font-size: clamp(46px, 5vw, 76px);
	letter-spacing: 0;
	line-height: 1.36;
}

.home-hero__lead {
	max-width: 660px;
	margin-bottom: 34px;
	color: #526879;
	font-size: 18px;
}

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

.home-hero__contact {
	display: flex;
	align-items: center;
	gap: 24px;
	color: var(--slate);
	font-size: 11px;
	font-weight: 700;
}

.home-hero__contact a {
	display: flex;
	align-items: center;
	gap: 8px;
}

.home-hero__contact svg {
	width: 17px;
	height: 17px;
	color: var(--blue);
}

.home-hero__visual {
	position: relative;
	min-height: 600px;
}

.hero-photo {
	position: absolute;
	inset: 0 0 38px 60px;
	overflow: hidden;
	border-radius: 8px 8px 8px 90px;
	background: var(--navy);
	box-shadow: var(--shadow-lg);
}

.hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.78) contrast(1.02);
}

.hero-photo::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(135deg, rgba(7, 27, 43, 0.08), rgba(7, 27, 43, 0.48));
}

.hero-blueprint {
	position: absolute;
	z-index: 2;
	inset-block-end: 0;
	inset-inline-start: 0;
	width: 270px;
	padding: 24px;
	border-radius: var(--radius-md);
	color: var(--white);
	background: var(--blue);
	box-shadow: 0 24px 60px rgba(8, 120, 249, 0.25);
}

.hero-blueprint > span {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 24px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hero-blueprint h2 {
	margin-bottom: 16px;
	color: var(--white);
	font-size: 25px;
}

.hero-blueprint p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
}

.hero-badge {
	position: absolute;
	z-index: 3;
	inset-block-start: 28px;
	inset-inline-end: -18px;
	display: grid;
	width: 128px;
	height: 128px;
	padding: 18px;
	border: 8px solid var(--white);
	border-radius: 50%;
	place-items: center;
	color: var(--navy);
	background: var(--white);
	box-shadow: var(--shadow-sm);
	text-align: center;
}

.hero-badge strong {
	display: block;
	color: var(--blue);
	font-size: 24px;
	line-height: 1;
}

.hero-badge span {
	font-size: 9px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.metric-strip {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.25fr repeat(4, 1fr);
	border-top: 1px solid var(--line);
	border-inline: 1px solid var(--line);
	background: var(--white);
}

.metric-strip__brand,
.metric-strip__item {
	min-height: 116px;
	padding: 22px 25px;
	border-inline-end: 1px solid var(--line);
}

.metric-strip__brand {
	display: flex;
	align-items: center;
	gap: 17px;
	color: var(--navy);
}

.metric-strip__brand img {
	width: 100px;
}

.metric-strip__brand span {
	font-size: 10px;
	font-weight: 800;
	line-height: 1.4;
	text-transform: uppercase;
}

.metric-strip__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.metric-strip__item strong {
	display: block;
	margin-bottom: 6px;
	color: var(--navy);
	font-size: clamp(23px, 2.5vw, 34px);
	line-height: 1;
}

.metric-strip__item span {
	color: var(--slate);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

/* Relationship */
.relationship {
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	gap: clamp(50px, 8vw, 120px);
	align-items: center;
}

.relationship__copy h2 {
	margin-bottom: 28px;
	font-size: clamp(42px, 4.7vw, 68px);
}

.relationship__copy > p:not(.eyebrow) {
	max-width: 610px;
	color: var(--slate);
	font-size: 17px;
}

.relationship-cards {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.relationship-cards::before {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	display: grid;
	width: 58px;
	height: 58px;
	border: 6px solid var(--white);
	border-radius: 50%;
	content: "×";
	place-items: center;
	color: var(--white);
	background: var(--blue);
	font-size: 22px;
	font-weight: 800;
	transform: translate(-50%, -50%);
}

.relationship-card {
	min-height: 470px;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
}

.relationship-card--factory {
	color: rgba(255, 255, 255, 0.7);
	background: var(--navy);
}

.relationship-card__logo {
	display: flex;
	height: 92px;
	align-items: flex-start;
	margin-bottom: 55px;
}

.relationship-card__logo img {
	max-width: 170px;
	max-height: 72px;
	object-fit: contain;
}

.relationship-card__label {
	display: block;
	margin-bottom: 15px;
	color: var(--blue);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.relationship-card h3 {
	margin-bottom: 25px;
	font-size: 27px;
}

.relationship-card--factory h3 {
	color: var(--white);
}

.check-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-block: 11px;
	padding-inline-start: 25px;
	border-top: 1px solid var(--line);
	color: #526879;
	font-size: 12px;
}

.relationship-card--factory .check-list li {
	border-color: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.64);
}

.check-list li::before {
	position: absolute;
	inset-block-start: 18px;
	inset-inline-start: 2px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	content: "";
	background: var(--blue);
}

/* Product ecosystem */
.product-group-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
}

.product-group-card {
	position: relative;
	display: flex;
	min-height: 360px;
	flex-direction: column;
	grid-column: span 3;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.product-group-card:first-child {
	grid-column: span 6;
	background: var(--blue-050);
}

.product-group-card:hover {
	border-color: #a8cefa;
	box-shadow: var(--shadow-sm);
	transform: translateY(-6px);
}

.product-group-card__number {
	margin-bottom: 35px;
	color: #9aabb8;
	font-size: 10px;
	font-weight: 800;
}

.product-group-card__icon {
	display: grid;
	width: 68px;
	height: 68px;
	margin-bottom: auto;
	place-items: center;
	color: var(--blue);
}

.product-group-card__icon svg {
	width: 60px;
	height: 60px;
	stroke-width: 1.3;
}

.product-group-card:first-child .product-group-card__icon {
	position: absolute;
	inset-block-start: 60px;
	inset-inline-end: 45px;
	width: 180px;
	height: 180px;
	opacity: 0.17;
}

.product-group-card:first-child .product-group-card__icon svg {
	width: 100%;
	height: 100%;
}

.product-group-card__content h3 {
	margin-bottom: 13px;
	font-size: 27px;
}

.product-group-card__content p {
	max-width: 390px;
	margin-bottom: 24px;
	color: var(--slate);
	font-size: 13px;
}

/* Product cards */
.series-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}

.series-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.series-pills a,
.series-pills button {
	padding: 8px 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--slate);
	background: var(--white);
	font-size: 10px;
	font-weight: 700;
	cursor: pointer;
}

.series-pills a:hover,
.series-pills button:hover,
.series-pills .is-active {
	border-color: var(--blue);
	color: var(--blue);
	background: var(--blue-050);
}

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

.product-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover {
	border-color: #a7cdf8;
	box-shadow: var(--shadow-lg);
	transform: translateY(-7px);
}

.product-card__top {
	position: absolute;
	z-index: 2;
	inset-block-start: 18px;
	inset-inline: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
}

.product-card__badge {
	padding: 7px 10px;
	border-radius: 999px;
	color: var(--blue);
	background: rgba(255, 255, 255, 0.94);
	font-size: 9px;
	font-weight: 800;
	box-shadow: var(--shadow-sm);
	text-transform: uppercase;
}

.product-card__origin {
	color: #708391;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-card__media {
	position: relative;
	display: grid;
	height: 350px;
	overflow: hidden;
	place-items: center;
	background:
		linear-gradient(rgba(7, 27, 43, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 27, 43, 0.035) 1px, transparent 1px),
		var(--gray-050);
	background-size: 30px 30px;
}

.product-card__media::after {
	position: absolute;
	inset: auto 0 0;
	height: 70px;
	content: "";
	background: linear-gradient(transparent, rgba(237, 242, 246, 0.85));
}

.product-card__media img {
	position: relative;
	z-index: 1;
	width: auto;
	max-width: 65%;
	height: 74%;
	object-fit: contain;
	filter: drop-shadow(0 20px 22px rgba(7, 27, 43, 0.16));
	transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card__media--icon > span {
	position: relative;
	z-index: 1;
	display: grid;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	place-items: center;
	color: var(--blue);
	background: var(--blue-100);
}

.product-card__media--icon > span svg {
	width: 88px;
	height: 88px;
	stroke-width: 1.25;
}

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

.product-card__power {
	position: absolute;
	z-index: 2;
	inset-inline-end: 18px;
	inset-block-end: 15px;
	color: rgba(7, 27, 43, 0.27);
	font-size: 30px;
	font-weight: 500;
	letter-spacing: -0.06em;
}

.product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 25px;
}

.product-card__series {
	margin-bottom: 8px;
	color: var(--blue);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.product-card h3 {
	margin-bottom: 8px;
	font-size: 25px;
}

.product-card__type {
	margin-bottom: 17px;
	color: var(--slate);
	font-size: 12px;
}

.product-card__quick {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 22px;
	border-top: 1px solid var(--line);
	border-inline-start: 1px solid var(--line);
}

.product-card__quick > div {
	padding: 11px;
	border-inline-end: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.product-card__quick span {
	display: block;
	margin-bottom: 2px;
	color: #8696a2;
	font-size: 8px;
	font-weight: 800;
	text-transform: uppercase;
}

.product-card__quick strong {
	display: block;
	overflow: hidden;
	color: var(--navy);
	font-size: 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
}

.compare-control {
	position: relative;
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--slate);
	font-size: 9px;
	font-weight: 800;
	cursor: pointer;
}

.compare-control input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--blue);
}

.compare-bar {
	position: fixed;
	z-index: 130;
	inset-inline: 50%;
	inset-block-end: 25px;
	display: flex;
	visibility: hidden;
	align-items: center;
	gap: 22px;
	padding: 11px 12px 11px 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: var(--white);
	background: var(--navy);
	box-shadow: 0 20px 60px rgba(7, 27, 43, 0.28);
	opacity: 0;
	transform: translateX(-50%) translateY(18px);
	transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.compare-bar.is-visible {
	visibility: visible;
	opacity: 1;
	transform: translateX(-50%);
}

.compare-bar span {
	font-size: 11px;
	font-weight: 700;
}

.compare-bar button {
	min-height: 38px;
	padding: 0 16px;
	border: 0;
	border-radius: 999px;
	color: var(--white);
	background: var(--blue);
	font-size: 10px;
	font-weight: 800;
	cursor: pointer;
}

.compare-dialog {
	width: min(960px, calc(100% - 32px));
	max-height: calc(100vh - 50px);
	padding: 0;
	border: 0;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
}

.compare-dialog::backdrop {
	background: rgba(7, 27, 43, 0.72);
	backdrop-filter: blur(4px);
}

.compare-dialog__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 26px;
	border-bottom: 1px solid var(--line);
}

.compare-dialog__header h2 {
	margin: 0;
	font-size: 24px;
}

.compare-dialog__header button {
	display: grid;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	place-items: center;
	background: var(--white);
	cursor: pointer;
}

.compare-dialog__body {
	padding: 26px;
	overflow: auto;
}

.compare-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}

.compare-table th,
.compare-table td {
	min-width: 150px;
	padding: 15px;
	border: 1px solid var(--line);
	text-align: start;
	vertical-align: top;
}

.compare-table thead th {
	color: var(--navy);
	background: var(--blue-050);
}

/* Solutions */
.solution-mosaic {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 15px;
}

.solution-tile {
	position: relative;
	display: flex;
	min-height: 330px;
	flex-direction: column;
	grid-column: span 4;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms ease;
}

.solution-tile:first-child,
.solution-tile:nth-child(5) {
	grid-column: span 6;
}

.solution-tile:hover {
	border-color: var(--blue);
	color: var(--white);
	background: var(--blue);
	transform: translateY(-5px);
}

.solution-tile__number {
	margin-bottom: 42px;
	color: #9aabb7;
	font-size: 10px;
	font-weight: 800;
}

.solution-tile__icon {
	width: 64px;
	height: 64px;
	margin-bottom: auto;
	color: var(--blue);
}

.solution-tile__icon svg {
	width: 100%;
	height: 100%;
	stroke-width: 1.3;
}

.solution-tile h3 {
	margin-bottom: 12px;
	font-size: 28px;
	transition: color 200ms ease;
}

.solution-tile p {
	max-width: 440px;
	margin-bottom: 22px;
	color: var(--slate);
	font-size: 13px;
	transition: color 200ms ease;
}

.solution-tile__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 18px;
	border-top: 1px solid var(--line);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.solution-tile__link svg {
	width: 20px;
	height: 20px;
}

.solution-tile:hover h3,
.solution-tile:hover p,
.solution-tile:hover .solution-tile__icon,
.solution-tile:hover .solution-tile__number {
	color: var(--white);
}

.solution-tile:hover .solution-tile__link {
	border-color: rgba(255, 255, 255, 0.3);
}

/* Process */
.process-layout {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: clamp(50px, 8vw, 120px);
	align-items: start;
}

.process-intro {
	position: sticky;
	top: 140px;
}

.process-intro h2 {
	margin-bottom: 24px;
	font-size: clamp(42px, 4.6vw, 66px);
}

.process-intro > p:not(.eyebrow) {
	color: var(--slate);
}

.process-steps {
	counter-reset: process;
}

.process-step {
	position: relative;
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 24px;
	padding-block: 34px;
	border-top: 1px solid var(--line);
	counter-increment: process;
}

.process-step:last-child {
	border-bottom: 1px solid var(--line);
}

.process-step__number {
	display: grid;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	place-items: center;
	color: var(--blue);
	background: var(--blue-100);
	font-size: 11px;
	font-weight: 800;
}

.process-step h3 {
	margin-bottom: 10px;
	font-size: 26px;
}

.process-step p {
	max-width: 570px;
	margin-bottom: 0;
	color: var(--slate);
	font-size: 14px;
}

/* Factory */
.factory-showcase {
	position: relative;
	overflow: hidden;
	background: var(--navy);
}

.factory-showcase::before {
	position: absolute;
	inset: 0;
	content: "";
	opacity: 0.17;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: linear-gradient(90deg, transparent, #000);
}

.factory-showcase__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(55px, 7vw, 105px);
	align-items: center;
}

.factory-collage {
	position: relative;
	min-height: 690px;
}

.factory-collage__main {
	position: absolute;
	inset: 0 80px 65px 0;
	overflow: hidden;
	border-radius: 0 0 80px 0;
}

.factory-collage__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.65);
}

.factory-collage__small {
	position: absolute;
	inset-inline-end: 0;
	inset-block-end: 0;
	width: 245px;
	height: 210px;
	overflow: hidden;
	border: 10px solid var(--navy);
	border-radius: var(--radius-md);
}

.factory-collage__small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.factory-collage__stamp {
	position: absolute;
	z-index: 2;
	inset-block-start: 34px;
	inset-inline-end: 35px;
	display: grid;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	place-items: center;
	color: var(--navy);
	background: var(--orange);
	text-align: center;
}

.factory-collage__stamp strong {
	display: block;
	font-size: 30px;
	line-height: 1;
}

.factory-collage__stamp span {
	display: block;
	font-size: 9px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.factory-showcase__content {
	color: rgba(255, 255, 255, 0.68);
}

.factory-showcase__content h2 {
	margin-bottom: 25px;
	color: var(--white);
	font-size: clamp(44px, 4.7vw, 68px);
}

.factory-showcase__content > p:not(.eyebrow) {
	margin-bottom: 34px;
	font-size: 16px;
}

.factory-proof-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-inline-start: 1px solid rgba(255, 255, 255, 0.15);
}

.factory-proof {
	min-height: 120px;
	padding: 20px;
	border-inline-end: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.factory-proof span {
	display: block;
	margin-bottom: 16px;
	color: var(--blue);
	font-size: 9px;
	font-weight: 800;
}

.factory-proof strong {
	display: block;
	color: var(--white);
	font-size: 14px;
}

/* Projects */
.project-showcase-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	grid-template-rows: repeat(2, 290px);
	gap: 16px;
}

.project-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius-md);
	color: var(--white);
	background: var(--navy);
}

.project-card:first-child {
	grid-row: 1 / 3;
}

.project-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.72);
	transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.project-card:hover img {
	filter: saturate(0.95);
	transform: scale(1.035);
}

.project-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(0deg, rgba(7, 27, 43, 0.88), rgba(7, 27, 43, 0.03) 67%);
}

.project-card__content {
	position: absolute;
	z-index: 2;
	inset-inline: 28px;
	inset-block-end: 27px;
}

.project-card__content span {
	display: block;
	margin-bottom: 8px;
	color: #8cc7ff;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.project-card__content h3 {
	margin-bottom: 8px;
	color: var(--white);
	font-size: clamp(25px, 3vw, 40px);
}

.project-card__content p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
}

.project-card__arrow {
	position: absolute;
	z-index: 2;
	inset-block-start: 20px;
	inset-inline-end: 20px;
	display: grid;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	place-items: center;
	color: var(--navy);
	background: var(--white);
	transition: color 180ms ease, background 180ms ease;
}

.project-card__arrow svg {
	width: 18px;
	height: 18px;
}

.project-card:hover .project-card__arrow {
	color: var(--white);
	background: var(--blue);
}

/* Technical center */
.resource-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 17px;
}

.resource-card {
	display: flex;
	min-height: 300px;
	flex-direction: column;
	padding: 27px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.resource-card:hover {
	border-color: #9ecbff;
	box-shadow: var(--shadow-sm);
	transform: translateY(-5px);
}

.resource-card__type {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 55px;
	color: var(--blue);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.resource-card__type svg {
	width: 21px;
	height: 21px;
}

.resource-card h3 {
	margin-bottom: 13px;
	font-size: 25px;
}

.resource-card p {
	margin-bottom: 25px;
	color: var(--slate);
	font-size: 12px;
}

.resource-card__meta {
	display: flex;
	gap: 14px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	color: #82929e;
	font-size: 9px;
	font-weight: 700;
}

/* Dealer and CTA */
.dealer-banner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--blue);
}

.dealer-banner__content {
	padding: clamp(42px, 6vw, 84px);
	color: rgba(255, 255, 255, 0.72);
}

.dealer-banner__content h2 {
	margin-bottom: 22px;
	color: var(--white);
	font-size: clamp(42px, 4.8vw, 67px);
}

.dealer-banner__content > p {
	max-width: 650px;
	margin-bottom: 30px;
}

.dealer-banner__visual {
	position: relative;
	min-height: 520px;
}

.dealer-banner__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.65);
}

.dealer-banner__visual::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, var(--blue), transparent 55%);
}

.final-cta {
	position: relative;
	overflow: hidden;
	padding-block: clamp(80px, 9vw, 140px);
	color: rgba(255, 255, 255, 0.68);
	background: var(--navy);
}

.final-cta::before {
	position: absolute;
	inset: 0;
	content: "";
	opacity: 0.22;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(90deg, #000, transparent);
}

.final-cta__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 8vw;
	align-items: center;
}

.final-cta h2 {
	margin-bottom: 0;
	color: var(--white);
	font-size: clamp(48px, 5.6vw, 82px);
}

.final-cta__actions > p {
	margin-bottom: 28px;
	font-size: 16px;
}

.final-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Interior hero and content */
.page-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(70px, 8vw, 120px);
	background: var(--blue-050);
}

.page-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	opacity: 0.48;
	background-image:
		linear-gradient(rgba(7, 27, 43, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 27, 43, 0.04) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: linear-gradient(90deg, #000, transparent);
}

.page-hero--media {
	color: var(--white);
	background: var(--navy);
}

.page-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.27;
	filter: saturate(0.6);
}

.page-hero--media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgba(7, 27, 43, 0.95), rgba(7, 27, 43, 0.32));
}

.page-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr minmax(260px, 0.42fr);
	gap: 8vw;
	align-items: end;
}

.page-hero__copy {
	max-width: 880px;
}

.page-hero h1 {
	margin-bottom: 24px;
	font-size: clamp(52px, 6vw, 88px);
}

.page-hero--media h1 {
	color: var(--white);
}

.page-hero__copy > p:last-child {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--slate);
	font-size: 18px;
}

.page-hero--media .page-hero__copy > p:last-child {
	color: rgba(255, 255, 255, 0.68);
}

.page-hero__meta {
	padding: 23px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(12px);
}

.page-hero--media .page-hero__meta {
	border-color: rgba(255, 255, 255, 0.15);
	background: rgba(7, 27, 43, 0.55);
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 28px;
	color: #7b8d9a;
	font-size: 10px;
	font-weight: 700;
}

.breadcrumbs svg {
	width: 13px;
	height: 13px;
}

.page-hero--media .breadcrumbs {
	color: rgba(255, 255, 255, 0.56);
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
	gap: clamp(45px, 8vw, 120px);
}

.content-kicker {
	color: var(--blue);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.content-prose {
	font-size: 17px;
}

.content-prose > :first-child {
	margin-top: 0;
}

.content-prose h2 {
	margin-top: 55px;
	font-size: clamp(37px, 4vw, 56px);
}

.content-prose h3 {
	margin-top: 42px;
	font-size: 28px;
}

.content-prose p,
.content-prose li {
	color: var(--slate);
}

.content-prose img {
	margin-block: 35px;
	border-radius: var(--radius-md);
}

/* Product archive */
.catalog-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.catalog-count {
	color: var(--slate);
	font-size: 12px;
}

.catalog-count strong {
	color: var(--navy);
}

.catalog-layout {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 34px;
	align-items: start;
}

.catalog-filters {
	position: sticky;
	top: 130px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
}

.filter-group {
	padding-block: 18px;
	border-top: 1px solid var(--line);
}

.filter-group:first-child {
	padding-top: 0;
	border-top: 0;
}

.filter-group h3 {
	margin-bottom: 13px;
	font-size: 12px;
}

.filter-options {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.filter-options button {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 8px 10px;
	border: 0;
	border-radius: 6px;
	color: var(--slate);
	background: transparent;
	font-size: 11px;
	text-align: start;
	cursor: pointer;
}

.filter-options button:hover,
.filter-options button.is-active {
	color: var(--blue);
	background: var(--blue-050);
}

.clear-filters {
	width: 100%;
	margin-top: 16px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 6px;
	color: var(--slate);
	background: var(--white);
	font-size: 10px;
	font-weight: 800;
	cursor: pointer;
}

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

.catalog-empty {
	grid-column: 1 / -1;
	padding: 60px;
	border: 1px dashed var(--line-dark);
	border-radius: var(--radius-md);
	text-align: center;
}

/* Single product */
.product-hero {
	padding-block: 46px 80px;
	background: var(--gray-050);
}

.product-hero__grid {
	display: grid;
	grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(50px, 8vw, 110px);
	align-items: center;
}

.product-gallery {
	position: relative;
	display: grid;
	min-height: 590px;
	place-items: center;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(rgba(7, 27, 43, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 27, 43, 0.035) 1px, transparent 1px),
		var(--white);
	background-size: 34px 34px;
}

.product-gallery img {
	width: auto;
	max-width: 65%;
	height: 74%;
	object-fit: contain;
	filter: drop-shadow(0 28px 28px rgba(7, 27, 43, 0.18));
}

.product-gallery__icon {
	display: grid;
	width: min(56%, 300px);
	aspect-ratio: 1;
	border-radius: 50%;
	place-items: center;
	color: var(--blue);
	background: var(--blue-050);
	box-shadow: inset 0 0 0 1px var(--line), 0 28px 55px rgba(7, 27, 43, 0.09);
}

.product-gallery__icon svg {
	width: 46%;
	height: 46%;
	stroke-width: 1.25;
}

.product-gallery__badge {
	position: absolute;
	inset-block-start: 22px;
	inset-inline-start: 22px;
	padding: 8px 12px;
	border-radius: 999px;
	color: var(--blue);
	background: var(--blue-100);
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
}

.product-gallery__zoom {
	position: absolute;
	inset-inline-end: 22px;
	inset-block-end: 22px;
	color: var(--slate);
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
}

.product-summary__series {
	display: block;
	margin-bottom: 13px;
	color: var(--blue);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.product-summary h1 {
	margin-bottom: 12px;
	font-size: clamp(48px, 5vw, 76px);
}

.product-summary__type {
	margin-bottom: 25px;
	color: var(--slate);
	font-size: 18px;
}

.product-summary__lead {
	margin-bottom: 28px;
	color: var(--slate);
}

.product-summary__power {
	display: flex;
	align-items: end;
	gap: 10px;
	margin-bottom: 28px;
}

.product-summary__power strong {
	color: var(--navy);
	font-size: 52px;
	letter-spacing: -0.055em;
	line-height: 1;
}

.product-summary__power span {
	padding-bottom: 6px;
	color: var(--slate);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.product-summary__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 32px;
}

.product-summary__chips span {
	padding: 8px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: #546a7a;
	background: var(--white);
	font-size: 10px;
	font-weight: 700;
}

.product-summary__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.product-summary__availability {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--slate);
	font-size: 10px;
	font-weight: 700;
}

.product-detail-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(50px, 8vw, 110px);
}

.spec-table {
	border-top: 3px solid var(--blue);
}

.spec-row {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 20px;
	padding: 17px 20px;
	border-bottom: 1px solid var(--line);
}

.spec-row:nth-child(even) {
	background: var(--gray-050);
}

.spec-row span {
	color: var(--slate);
	font-size: 11px;
}

.spec-row strong {
	color: var(--navy);
	font-size: 11px;
	text-align: end;
}

.document-panel {
	padding: 30px;
	border-radius: var(--radius-md);
	color: rgba(255, 255, 255, 0.65);
	background: var(--navy);
}

.document-panel h3 {
	color: var(--white);
	font-size: 27px;
}

.document-panel p {
	font-size: 12px;
}

.document-panel .button {
	width: 100%;
	margin-top: 15px;
}

.factory-proof-banner {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--blue-050);
}

.factory-proof-banner__image {
	min-height: 420px;
}

.factory-proof-banner__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.factory-proof-banner__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(40px, 6vw, 80px);
}

.factory-proof-banner__content h2 {
	font-size: clamp(39px, 4vw, 58px);
}

.factory-proof-banner__content p {
	color: var(--slate);
}

/* Forms */
.form-page {
	background: var(--gray-050);
}

.form-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
	gap: clamp(50px, 8vw, 110px);
	align-items: start;
}

.form-intro {
	position: sticky;
	top: 135px;
}

.form-intro h2 {
	margin-bottom: 24px;
	font-size: clamp(40px, 4vw, 60px);
}

.form-intro > p:not(.eyebrow) {
	color: var(--slate);
}

.contact-card {
	padding-block: 19px;
	border-top: 1px solid var(--line);
}

.contact-card span {
	display: block;
	margin-bottom: 6px;
	color: var(--blue);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
	display: block;
	color: var(--navy);
	font-size: 13px;
}

.form-shell {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.form-shell__header {
	padding: 24px 30px 0;
}

.form-step-label {
	display: block;
	margin-bottom: 12px;
	color: var(--slate);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.form-progress {
	height: 4px;
	overflow: hidden;
	border-radius: 999px;
	background: var(--gray);
}

.form-progress span {
	display: block;
	width: 33.33%;
	height: 100%;
	border-radius: inherit;
	background: var(--blue);
	transition: width 240ms ease;
}

.inquiry-form {
	padding: 30px;
}

.form-step {
	animation: formStepIn 240ms ease;
}

@keyframes formStepIn {
	from { opacity: 0; transform: translateX(12px); }
	to { opacity: 1; transform: none; }
}

.form-step > h3 {
	margin-bottom: 8px;
	font-size: 28px;
}

.form-step > p {
	margin-bottom: 28px;
	color: var(--slate);
	font-size: 12px;
}

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

.field {
	display: block;
}

.field--full {
	grid-column: 1 / -1;
}

.field > span {
	display: block;
	margin-bottom: 8px;
	color: var(--navy);
	font-size: 10px;
	font-weight: 800;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-sm);
	outline: 0;
	color: var(--navy);
	background: var(--white);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
	height: 52px;
	padding-inline: 14px;
}

.field textarea {
	min-height: 150px;
	padding: 13px 14px;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(8, 120, 249, 0.1);
}

.choice-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.choice-card {
	position: relative;
	cursor: pointer;
}

.choice-card input {
	position: absolute;
	opacity: 0;
}

.choice-card span {
	display: flex;
	min-height: 74px;
	align-items: center;
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	color: var(--slate);
	font-size: 11px;
	font-weight: 700;
	transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.choice-card input:checked + span {
	border-color: var(--blue);
	color: var(--blue);
	background: var(--blue-050);
	box-shadow: inset 0 0 0 1px var(--blue);
}

.consent-field {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-top: 20px;
	color: var(--slate);
	font-size: 9px;
}

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

.form-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

.form-actions--end {
	justify-content: flex-end;
}

.form-back {
	padding: 12px 0;
	border: 0;
	color: var(--slate);
	background: transparent;
	font-size: 11px;
	font-weight: 800;
	cursor: pointer;
}

.form-notice {
	margin-bottom: 20px;
	padding: 15px 18px;
	border-radius: var(--radius-sm);
	font-size: 12px;
	font-weight: 700;
}

.form-notice--success {
	color: #146c48;
	background: #e9f8f1;
}

.form-notice--error {
	color: #a63434;
	background: #fff0f0;
}

.honeypot {
	position: absolute !important;
	left: -9999px !important;
}

/* Blog/archive */
.post-grid,
.project-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.post-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	transition: box-shadow 200ms ease, transform 200ms ease;
}

.post-card:hover {
	box-shadow: var(--shadow-sm);
	transform: translateY(-5px);
}

.post-card__image {
	display: block;
	height: 235px;
	overflow: hidden;
	background: var(--gray);
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.post-card:hover .post-card__image img {
	transform: scale(1.035);
}

.post-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: rgba(7, 27, 43, 0.16);
	background:
		linear-gradient(rgba(7, 27, 43, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 27, 43, 0.04) 1px, transparent 1px);
	background-size: 28px 28px;
	font-size: 44px;
	font-weight: 800;
}

.post-card__body {
	padding: 24px;
}

.post-card__meta {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--blue);
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
}

.post-card h2,
.post-card h3 {
	margin-bottom: 14px;
	font-size: 24px;
}

.post-card p {
	color: var(--slate);
	font-size: 12px;
}

.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 48px;
}

.page-numbers {
	display: grid;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 6px;
	place-items: center;
	font-size: 11px;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--blue);
	color: var(--white);
	background: var(--blue);
}

/* Footer */
.site-footer {
	color: rgba(255, 255, 255, 0.58);
	background: #061522;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.3fr 0.65fr 0.65fr 1.15fr;
	gap: clamp(40px, 6vw, 90px);
	padding-block: 76px 60px;
}

.brand--footer {
	margin-bottom: 25px;
}

.brand--footer .brand__mark {
	padding: 10px;
	border-radius: 6px;
	background: var(--white);
}

.brand--footer .brand__descriptor {
	color: rgba(255, 255, 255, 0.48);
	border-color: rgba(255, 255, 255, 0.14);
}

.footer-brand > p {
	max-width: 390px;
	margin-bottom: 25px;
	font-size: 13px;
}

.footer-social {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-social a {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--white);
	font-size: 11px;
}

.footer-social svg {
	width: 17px;
	height: 17px;
	color: #6eb4ff;
}

.footer-column,
.footer-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	font-size: 11px;
}

.footer-column h2,
.footer-contact h2 {
	margin-bottom: 15px;
	color: var(--white);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.footer-column a:hover,
.footer-contact a:hover {
	color: var(--white);
}

.footer-contact h2:not(:first-child) {
	margin-top: 24px;
}

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

.footer-contact p strong {
	display: block;
	margin-bottom: 5px;
	color: #78b9ff;
	font-size: 9px;
	text-transform: uppercase;
}

.footer-contact > a {
	color: var(--white);
	font-weight: 700;
}

.footer-bottom {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 9px;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom > div {
	display: flex;
	gap: 22px;
}

.mobile-action-dock {
	display: none;
}

/* WordPress */
.alignwide {
	width: min(1160px, calc(100vw - 64px));
	max-width: none;
	margin-inline: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-inline: 50%;
	transform: translateX(-50%);
}

.wp-caption,
.gallery-caption {
	color: var(--slate);
	font-size: 11px;
}

.sticky {
	border-top: 3px solid var(--blue);
}

.bypostauthor {
	display: block;
}

/* V2 corporate and editorial templates */
.project-method,
.technical-support,
.factory-series {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
	gap: clamp(50px, 8vw, 120px);
	align-items: start;
}

.project-method h2,
.technical-support h2,
.factory-series h2 {
	font-size: clamp(38px, 4vw, 58px);
}

.project-method__points,
.factory-series__list {
	border-top: 3px solid var(--blue);
}

.project-method__points > div,
.factory-series__list a {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	gap: 16px;
	align-items: center;
	min-height: 76px;
	border-bottom: 1px solid var(--line);
}

.project-method__points span,
.factory-series__list span {
	color: var(--blue);
	font-size: 10px;
	font-weight: 800;
}

.project-method__points strong,
.factory-series__list strong {
	color: var(--navy);
	font-size: 14px;
}

.factory-series__list svg {
	width: 18px;
	height: 18px;
	transition: transform 180ms ease;
}

.factory-series__list a:hover {
	color: var(--blue);
}

.factory-series__list a:hover svg {
	transform: translateX(4px);
}

.project-scope-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-block: 38px 48px;
}

.project-scope-grid > div {
	padding: 23px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--gray-050);
}

.project-scope-grid span {
	display: block;
	margin-bottom: 10px;
	color: var(--blue);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-scope-grid strong {
	color: var(--navy);
	font-size: 13px;
}

.technical-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 28px;
}

.technical-tabs span {
	padding: 9px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--slate);
	background: var(--white);
	font-size: 10px;
	font-weight: 800;
}

.technical-tabs .is-active {
	border-color: var(--blue);
	color: var(--white);
	background: var(--blue);
}

.technical-support {
	align-items: center;
	padding: clamp(38px, 5vw, 70px);
	border-radius: var(--radius-lg);
	background: var(--blue-050);
}

.technical-support .button {
	justify-self: end;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--line);
	border-inline-start: 1px solid var(--line);
}

.value-card {
	min-height: 310px;
	padding: 30px;
	border-inline-end: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

.value-card > span {
	display: block;
	margin-bottom: 65px;
	color: var(--blue);
	font-size: 10px;
	font-weight: 800;
}

.value-card h3 {
	margin-bottom: 18px;
	font-size: 26px;
}

.value-card p {
	margin-bottom: 0;
	color: var(--slate);
	font-size: 12px;
}

.manufacturing-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.manufacturing-step {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
}

.manufacturing-step img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	filter: saturate(0.7);
}

.manufacturing-step > div {
	padding: 22px;
}

.manufacturing-step span {
	display: block;
	margin-bottom: 13px;
	color: var(--blue);
	font-size: 9px;
	font-weight: 800;
}

.manufacturing-step h3 {
	margin: 0;
	font-size: 20px;
}

.partnership-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
}

.partnership-benefits > div {
	min-height: 150px;
	padding: 25px;
	border-inline-end: 1px solid var(--line);
}

.partnership-benefits > div:last-child {
	border-inline-end: 0;
}

.partnership-benefits span {
	display: block;
	margin-bottom: 27px;
	color: var(--blue);
	font-size: 9px;
	font-weight: 800;
}

.partnership-benefits strong {
	color: var(--navy);
	font-size: 14px;
}

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

.office-card {
	position: relative;
	overflow: hidden;
	min-height: 390px;
	padding: clamp(34px, 5vw, 62px);
	border-radius: var(--radius-lg);
	color: rgba(255, 255, 255, 0.68);
	background: var(--blue);
}

.office-card--factory {
	background: var(--navy);
}

.office-card::after {
	position: absolute;
	inset-inline-end: -70px;
	inset-block-end: -90px;
	width: 270px;
	height: 270px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	content: "";
}

.office-card > span {
	display: block;
	margin-bottom: 62px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.office-card h2 {
	margin-bottom: 18px;
	color: var(--white);
	font-size: clamp(42px, 4vw, 60px);
}

.office-card p {
	max-width: 510px;
	margin-bottom: 24px;
}

.office-card a {
	position: relative;
	z-index: 2;
	display: block;
	width: fit-content;
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
	gap: clamp(45px, 8vw, 120px);
}

.article-meta {
	position: sticky;
	top: 135px;
	display: flex;
	height: fit-content;
	flex-direction: column;
	gap: 12px;
	color: var(--slate);
	font-size: 10px;
	font-weight: 700;
}

.error-page {
	display: grid;
	min-height: 72vh;
	padding-block: 100px;
	place-items: center;
	background:
		linear-gradient(rgba(7, 27, 43, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 27, 43, 0.035) 1px, transparent 1px),
		var(--gray-050);
	background-size: 48px 48px;
}

.error-page__inner {
	text-align: center;
}

.error-page__inner > span {
	display: block;
	color: var(--blue);
	font-size: clamp(90px, 15vw, 190px);
	font-weight: 800;
	letter-spacing: -0.08em;
	line-height: 0.8;
	opacity: 0.14;
}

.error-page h1 {
	max-width: 850px;
	margin: 25px auto 35px;
	font-size: clamp(40px, 5vw, 70px);
}

.error-page__inner > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

/* RTL */
[dir="rtl"] .inline-link svg,
[dir="rtl"] .button svg,
[dir="rtl"] .project-card__arrow svg,
[dir="rtl"] .solution-tile__link svg,
[dir="rtl"] .mobile-catalog-link > svg:last-child {
	transform: scaleX(-1);
}

[dir="rtl"] .inline-link:hover svg {
	transform: scaleX(-1) translateX(4px);
}

[dir="rtl"] .catalog-trigger > span svg {
	transform: rotate(-90deg);
}

[dir="rtl"] .catalog-trigger[aria-expanded="true"] > span svg {
	transform: rotate(90deg);
}

[dir="rtl"] .home-hero::before,
[dir="rtl"] .page-hero::before,
[dir="rtl"] .factory-showcase::before,
[dir="rtl"] .final-cta::before {
	transform: scaleX(-1);
}

[dir="rtl"] .relationship-cards::before {
	transform: translate(50%, -50%);
}

[dir="rtl"] .product-card__power,
[dir="rtl"] .product-summary__power strong,
[dir="rtl"] .metric-strip__item strong {
	direction: ltr;
	unicode-bidi: isolate;
}

[dir="rtl"] .spec-row strong {
	text-align: start;
}

[dir="rtl"] .compare-bar {
	transform: translateX(50%) translateY(18px);
}

[dir="rtl"] .compare-bar.is-visible {
	transform: translateX(50%);
}

[dir="rtl"] .factory-series__list a:hover svg {
	transform: scaleX(-1) translateX(4px);
}

@media (max-width: 980px) {
	.project-method,
	.technical-support,
	.factory-series,
	.article-layout {
		grid-template-columns: 1fr;
	}

	.technical-support .button {
		justify-self: start;
	}

	.value-grid,
	.manufacturing-process,
	.partnership-benefits {
		grid-template-columns: repeat(2, 1fr);
	}

	.partnership-benefits > div:nth-child(2) {
		border-inline-end: 0;
	}

	.partnership-benefits > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}

	.article-meta {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media (max-width: 680px) {
	.project-scope-grid,
	.value-grid,
	.manufacturing-process,
	.partnership-benefits,
	.contact-office-grid {
		grid-template-columns: 1fr;
	}

	.value-card {
		min-height: 250px;
	}

	.value-card > span {
		margin-bottom: 38px;
	}

	.partnership-benefits > div,
	.partnership-benefits > div:nth-child(2) {
		border-inline-end: 0;
		border-bottom: 1px solid var(--line);
	}

	.partnership-benefits > div:last-child {
		border-bottom: 0;
	}

	.office-card {
		min-height: 340px;
	}
}

@media (max-width: 1180px) {
	.header-main {
		grid-template-columns: 190px minmax(0, 1fr) auto;
	}

	.brand__mark {
		width: 148px;
	}

	.brand__descriptor {
		display: none;
	}

	.primary-menu > li > a,
	.catalog-trigger {
		padding-inline: 10px;
		font-size: 11px;
	}

	.header-contact {
		display: none;
	}

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

	.product-group-card,
	.product-group-card:first-child {
		grid-column: span 6;
	}

	.solution-tile,
	.solution-tile:first-child,
	.solution-tile:nth-child(5) {
		grid-column: span 6;
	}
}

@media (max-width: 980px) {
	:root {
		--header-height: 76px;
	}

	.shell {
		width: min(calc(100% - 40px), var(--shell));
	}

	.utility-bar {
		display: none;
	}

	.header-main {
		grid-template-columns: 1fr auto;
		min-height: 76px;
	}

	.desktop-nav,
	.header-actions .button {
		display: none;
	}

	.mobile-menu-toggle {
		display: grid;
	}

	.mobile-navigation {
		position: fixed;
		z-index: 95;
		inset: 76px 0 0;
		display: block;
		visibility: hidden;
		background: var(--white);
		opacity: 0;
		transform: translateX(100%);
		transition: opacity 220ms ease, visibility 220ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	[dir="rtl"] .mobile-navigation {
		transform: translateX(-100%);
	}

	.mobile-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: none;
	}

	.mobile-navigation__scroll {
		height: 100%;
		padding: 24px 20px 110px;
		overflow-y: auto;
	}

	.mobile-catalog-link {
		display: grid;
		grid-template-columns: 42px 1fr auto;
		align-items: center;
		gap: 14px;
		min-height: 72px;
		padding: 12px 15px;
		border-radius: var(--radius-sm);
		color: var(--white);
		background: var(--blue);
		font-size: 18px;
		font-weight: 800;
	}

	.mobile-catalog-link > span {
		display: grid;
		place-items: center;
	}

	.mobile-catalog-link svg {
		width: 26px;
		height: 26px;
	}

	.mobile-menu,
	.mobile-navigation .primary-menu {
		display: block;
		height: auto;
		padding: 15px 0;
		margin: 0;
	}

	.mobile-menu li,
	.mobile-navigation .primary-menu li {
		display: block;
	}

	.mobile-menu a,
	.mobile-navigation .primary-menu a {
		display: flex;
		min-height: 58px;
		align-items: center;
		justify-content: space-between;
		padding: 0 5px;
		border-bottom: 1px solid var(--line);
		color: var(--navy);
		font-size: 17px;
		font-weight: 700;
	}

	.mobile-navigation .primary-menu a::after {
		display: none;
	}

	.mobile-navigation__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		margin-top: 10px;
	}

	.mobile-navigation .language-menu {
		display: flex;
		height: 44px;
		margin-top: 18px;
		border: 1px solid var(--line);
		border-radius: 6px;
	}

	.mobile-navigation .language-menu a {
		min-height: 42px;
	}

	.mega-menu {
		display: none;
	}

	.home-hero__grid {
		grid-template-columns: 1fr;
	}

	.home-hero__copy {
		max-width: 780px;
	}

	.home-hero__visual {
		min-height: 590px;
	}

	.metric-strip {
		grid-template-columns: repeat(4, 1fr);
	}

	.metric-strip__brand {
		grid-column: 1 / -1;
		min-height: 82px;
		border-bottom: 1px solid var(--line);
	}

	.relationship,
	.process-layout,
	.factory-showcase__grid,
	.final-cta__inner,
	.form-layout,
	.content-layout {
		grid-template-columns: 1fr;
	}

	.process-intro,
	.form-intro,
	.catalog-filters {
		position: static;
	}

	.factory-collage {
		min-height: 570px;
	}

	.project-showcase-grid {
		grid-template-rows: repeat(2, 260px);
	}

	.dealer-banner {
		grid-template-columns: 1fr;
	}

	.dealer-banner__visual {
		min-height: 360px;
	}

	.dealer-banner__visual::after {
		background: linear-gradient(0deg, var(--blue), transparent 55%);
	}

	.page-hero__inner,
	.product-hero__grid,
	.product-detail-grid,
	.factory-proof-banner {
		grid-template-columns: 1fr;
	}

	.page-hero__meta {
		display: none;
	}

	.product-gallery {
		min-height: 530px;
	}

	.catalog-layout {
		grid-template-columns: 1fr;
	}

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

	.filter-group {
		padding: 0;
		border: 0;
	}

	.clear-filters {
		align-self: end;
	}

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

@media (max-width: 680px) {
	body {
		padding-bottom: 68px;
	}

	.shell {
		width: min(calc(100% - 30px), var(--shell));
	}

	.section {
		padding-block: 76px;
	}

	.brand__mark {
		width: 144px;
	}

	.section-header {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 38px;
	}

	.section-header h2,
	.relationship__copy h2,
	.process-intro h2,
	.factory-showcase__content h2,
	.dealer-banner__content h2,
	.final-cta h2 {
		font-size: 39px;
	}

	.home-hero {
		padding-top: 32px;
	}

	.home-hero__grid {
		gap: 35px;
		padding-bottom: 42px;
	}

	.home-hero__copy {
		padding-block: 15px;
	}

	.home-hero h1 {
		font-size: clamp(48px, 14vw, 64px);
	}

	.lang-ar .home-hero h1 {
		font-size: 42px;
	}

	.home-hero__lead {
		font-size: 15px;
	}

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

	.home-hero__actions .button {
		width: 100%;
	}

	.home-hero__contact {
		align-items: flex-start;
		flex-direction: column;
		gap: 9px;
	}

	.home-hero__visual {
		min-height: 430px;
	}

	.hero-photo {
		inset: 0 0 35px 26px;
		border-radius: 8px 8px 8px 55px;
	}

	.hero-blueprint {
		width: 230px;
		padding: 19px;
	}

	.hero-blueprint h2 {
		font-size: 21px;
	}

	.hero-badge {
		inset-block-start: 18px;
		inset-inline-end: -8px;
		width: 104px;
		height: 104px;
		border-width: 5px;
	}

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

	.metric-strip__item {
		min-height: 96px;
	}

	.metric-strip__item:nth-child(3) {
		border-inline-end: 0;
	}

	.relationship-cards,
	.product-card-grid,
	.catalog-layout .product-card-grid,
	.resource-grid,
	.post-grid,
	.project-archive-grid,
	.form-grid,
	.choice-grid,
	.footer-top {
		grid-template-columns: 1fr;
	}

	.relationship-cards::before {
		top: 50%;
	}

	.relationship-card {
		min-height: 410px;
	}

	.product-group-card,
	.product-group-card:first-child,
	.solution-tile,
	.solution-tile:first-child,
	.solution-tile:nth-child(5) {
		grid-column: 1 / -1;
	}

	.product-group-card {
		min-height: 330px;
	}

	.product-card__media {
		height: 340px;
	}

	.series-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.solution-tile {
		min-height: 320px;
	}

	.process-step {
		grid-template-columns: 60px 1fr;
		gap: 14px;
	}

	.factory-collage {
		min-height: 430px;
	}

	.factory-collage__main {
		inset: 0 30px 45px 0;
		border-radius: 0 0 50px 0;
	}

	.factory-collage__small {
		width: 165px;
		height: 145px;
	}

	.factory-collage__stamp {
		width: 105px;
		height: 105px;
	}

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

	.project-showcase-grid {
		display: block;
	}

	.project-card {
		height: 340px;
		margin-bottom: 13px;
	}

	.dealer-banner {
		border-radius: var(--radius-md);
	}

	.dealer-banner__content {
		padding: 38px 25px;
	}

	.final-cta__buttons {
		display: grid;
		grid-template-columns: 1fr;
	}

	.page-hero {
		padding-block: 62px;
	}

	.page-hero h1 {
		font-size: 47px;
	}

	.product-hero__grid {
		gap: 36px;
	}

	.product-gallery {
		min-height: 420px;
	}

	.product-summary h1 {
		font-size: 46px;
	}

	.product-summary__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.product-summary__actions .button {
		width: 100%;
	}

	.catalog-filters {
		grid-template-columns: 1fr;
	}

	.spec-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.spec-row strong {
		text-align: start;
	}

	.inquiry-form {
		padding: 22px;
	}

	.form-shell__header {
		padding: 22px 22px 0;
	}

	.form-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.form-actions .button {
		width: 100%;
	}

	.footer-top {
		gap: 36px;
		padding-block: 58px 45px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 8px;
		padding-block: 17px;
	}

	.mobile-action-dock {
		position: fixed;
		z-index: 120;
		inset-inline: 0;
		inset-block-end: 0;
		display: grid;
		grid-template-columns: 0.88fr 1.12fr;
		height: 68px;
		border-top: 1px solid var(--line);
		background: var(--white);
		box-shadow: 0 -12px 30px rgba(7, 27, 43, 0.09);
	}

	.mobile-action-dock a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		color: var(--green);
		font-size: 11px;
		font-weight: 800;
	}

	.mobile-action-dock a:last-child {
		color: var(--white);
		background: var(--blue);
	}

	.mobile-action-dock svg {
		width: 19px;
		height: 19px;
	}

	.compare-bar {
		inset-block-end: 80px;
		width: calc(100% - 30px);
		justify-content: space-between;
	}

	.alignwide,
	.alignfull {
		width: 100%;
		margin-inline: 0;
		transform: none;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}
