/*
Theme Name: MSILI
Theme URI: https://example.com/msili
Author: Codex
Author URI: https://openai.com
Description: Custom multilingual WordPress theme for MSILI silica fume homepage.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: msili
*/

:root {
	--ink: #071421;
	--muted: #5f6f83;
	--soft: #eef4f9;
	--line: #d9e3ee;
	--deep: #06142b;
	--deep-2: #0b223f;
	--blue: #1267f1;
	--blue-2: #0754cf;
	--cyan: #00a7c7;
	--green: #14a96d;
	--amber: #f2a23a;
	--white: #ffffff;
	--banner-gradient-hero: linear-gradient(90deg, rgba(8, 34, 70, 0.84) 0%, rgba(15, 86, 155, 0.58) 52%, rgba(0, 167, 199, 0.26) 100%);
	--banner-gradient-cta: linear-gradient(90deg, rgba(8, 34, 70, 0.82) 0%, rgba(18, 103, 241, 0.64) 54%, rgba(0, 167, 199, 0.36) 100%);
	--banner-gradient-band: linear-gradient(90deg, rgba(8, 34, 70, 0.78) 0%, rgba(16, 93, 160, 0.48) 56%, rgba(20, 169, 109, 0.2) 100%);
	--banner-gradient-section: linear-gradient(90deg, rgba(8, 34, 70, 0.8) 0%, rgba(15, 86, 155, 0.54) 58%, rgba(0, 167, 199, 0.28) 100%);
	--banner-gradient-proof: linear-gradient(90deg, rgba(8, 34, 70, 0.76) 0%, rgba(15, 86, 155, 0.5) 58%, rgba(20, 169, 109, 0.22) 100%);
	--banner-dark-bg: linear-gradient(135deg, #0a2d58 0%, #105a9d 52%, #0d829b 100%);
	--banner-panel-bg: rgba(8, 34, 70, 0.48);
	--banner-border: rgba(156, 226, 255, 0.24);
	--banner-home-height: 640px;
	--banner-page-height: 520px;
	--banner-detail-height: 560px;
	--banner-mobile-height: 390px;
	--shadow: 0 18px 50px rgba(10, 31, 68, 0.14);
	--radius: 8px;
	--section: 108px;
}

@media (max-width: 760px) {
	:root {
		--banner-home-height: 560px;
		--banner-mobile-height: 390px;
	}
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: #f7f9fc;
	color: var(--ink);
	font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
	font-size: 17px;
	line-height: 1.72;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

@supports (overflow: clip) {
	html,
	body {
		overflow-x: clip;
	}
}

body[dir="rtl"] {
	font-family: Tahoma, Arial, "Noto Sans Arabic", sans-serif;
}

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

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

p,
li,
h1,
h2,
h3,
a,
span {
	overflow-wrap: break-word;
}

button,
input,
textarea {
	font: inherit;
}

.skip-link,
.screen-reader-field {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link:focus {
	z-index: 9999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 14px;
	clip: auto;
	background: var(--white);
	color: var(--blue);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(217, 227, 238, 0.72);
	box-shadow: 0 10px 32px rgba(10, 31, 68, 0.05);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(140px, max-content) minmax(0, 1fr) max-content;
	align-items: center;
	gap: 32px;
	width: min(1480px, calc(100% - 84px));
	min-height: 92px;
	margin: 0 auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	width: 166px;
	min-width: 166px;
}

.brand img {
	width: 100%;
	height: auto;
}

.brand--footer {
	width: 168px;
	min-width: 168px;
}

.primary-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	gap: 6px;
	flex-wrap: nowrap;
	min-width: 0;
	max-width: 100%;
	padding: 8px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	color: #1b2d43;
	background: rgba(241, 246, 252, 0.72);
	border: 1px solid rgba(216, 229, 242, 0.8);
	border-radius: 999px;
}

.primary-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 auto;
	max-width: 19ch;
	min-height: 44px;
	padding: 10px 18px;
	text-align: center;
	white-space: nowrap;
	overflow-wrap: normal;
	border-radius: 999px;
	transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
	color: var(--blue);
	background: var(--white);
	box-shadow: 0 8px 20px rgba(18, 103, 241, 0.1);
}

.primary-nav a.is-active {
	color: var(--blue);
	background: var(--white);
	box-shadow: 0 8px 20px rgba(18, 103, 241, 0.12);
}

.primary-nav__item {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.primary-nav__item > .primary-nav__link {
	max-width: 21ch;
	padding-right: 42px;
}

body[dir="rtl"] .primary-nav__item > .primary-nav__link {
	padding-right: 18px;
	padding-left: 42px;
}

.primary-nav__dropdown-toggle {
	position: absolute;
	top: 50%;
	right: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	color: #1b2d43;
	background: transparent;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transform: translateY(-50%);
	transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

body[dir="rtl"] .primary-nav__dropdown-toggle {
	right: auto;
	left: 8px;
}

.primary-nav__dropdown-toggle svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.primary-nav__item:hover > .primary-nav__link,
.primary-nav__item:focus-within > .primary-nav__link,
.primary-nav__item.is-open > .primary-nav__link {
	color: var(--blue);
	background: var(--white);
	box-shadow: 0 8px 20px rgba(18, 103, 241, 0.1);
}

.primary-nav__item:hover .primary-nav__dropdown-toggle,
.primary-nav__item:focus-within .primary-nav__dropdown-toggle,
.primary-nav__item.is-open .primary-nav__dropdown-toggle {
	color: var(--blue);
	background: #eef5ff;
}

.primary-nav__item.is-open .primary-nav__dropdown-toggle {
	transform: translateY(-50%) rotate(180deg);
}

.primary-nav__dropdown {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	z-index: 70;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px;
	width: min(520px, calc(100vw - 32px));
	padding: 12px;
	background: var(--white);
	border: 1px solid rgba(216, 229, 242, 0.95);
	border-radius: 12px;
	box-shadow: 0 18px 42px rgba(10, 31, 68, 0.16);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	visibility: hidden;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

body[dir="rtl"] .primary-nav__dropdown {
	right: 0;
	left: auto;
}

.primary-nav__dropdown::before {
	position: absolute;
	top: -12px;
	right: 0;
	left: 0;
	height: 12px;
	content: "";
}

.primary-nav__item:hover .primary-nav__dropdown,
.primary-nav__item:focus-within .primary-nav__dropdown,
.primary-nav__item.is-open .primary-nav__dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.primary-nav__dropdown a {
	justify-content: flex-start;
	max-width: none;
	min-height: 42px;
	padding: 10px 12px;
	color: #253b56;
	text-align: left;
	white-space: normal;
	border-radius: 8px;
	box-shadow: none;
}

body[dir="rtl"] .primary-nav__dropdown a {
	text-align: right;
}

.primary-nav__dropdown a:hover,
.primary-nav__dropdown a:focus-visible {
	color: var(--blue);
	background: #eef5ff;
	box-shadow: none;
}

.primary-nav__dropdown-intro,
.primary-nav__dropdown-footer {
	grid-column: 1 / -1;
}

.primary-nav__dropdown-intro {
	display: grid;
	gap: 4px;
	padding: 8px 10px 12px;
	border-bottom: 1px solid #e4edf6;
}

.primary-nav__dropdown-intro strong,
.primary-nav__dropdown-intro span {
	display: block;
}

.primary-nav__dropdown-intro strong {
	color: #18314d;
	font-size: 14px;
}

.primary-nav__dropdown-intro span {
	color: #6d7e91;
	font-size: 12px;
	line-height: 1.55;
}

.primary-nav__dropdown .primary-nav__dropdown-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	font-weight: 700;
}

.primary-nav__dropdown-item > span:last-child,
.primary-nav__dropdown-footer > span {
	flex: none;
	color: #6a9ed8;
	transition: transform 180ms ease;
}

body[dir="rtl"] .primary-nav__dropdown-item > span:last-child,
body[dir="rtl"] .primary-nav__dropdown-footer > span {
	transform: scaleX(-1);
}

.primary-nav__dropdown-item:hover > span:last-child,
.primary-nav__dropdown-item:focus-visible > span:last-child,
.primary-nav__dropdown-footer:hover > span,
.primary-nav__dropdown-footer:focus-visible > span {
	transform: translateX(3px);
}

body[dir="rtl"] .primary-nav__dropdown-item:hover > span:last-child,
body[dir="rtl"] .primary-nav__dropdown-item:focus-visible > span:last-child,
body[dir="rtl"] .primary-nav__dropdown-footer:hover > span,
body[dir="rtl"] .primary-nav__dropdown-footer:focus-visible > span {
	transform: translateX(-3px) scaleX(-1);
}

.primary-nav__dropdown .primary-nav__dropdown-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 4px;
	padding: 12px 14px;
	color: var(--blue);
	font-weight: 800;
	background: #f2f7ff;
	border-top: 1px solid #dfeaf6;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-width: 0;
}

.language-switcher {
	position: relative;
}

.language-switcher__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 9rem;
	min-width: 64px;
	height: 44px;
	padding: 0 18px;
	color: #1d3553;
	background: #f0f5fb;
	border: 1px solid #d8e5f2;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	overflow-wrap: anywhere;
}

.language-switcher__menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 80;
	display: none;
	width: max-content;
	min-width: 168px;
	max-width: min(240px, calc(100vw - 32px));
	padding: 8px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.language-switcher__list {
	display: grid;
	max-height: min(70vh, 420px);
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-right: 2px;
	scrollbar-color: rgba(18, 103, 241, 0.56) #eef5ff;
	scrollbar-width: thin;
}

body[dir="rtl"] .language-switcher__list {
	padding-right: 0;
	padding-left: 2px;
}

.language-switcher__list::-webkit-scrollbar {
	width: 10px;
}

.language-switcher__list::-webkit-scrollbar-track {
	background: #eef5ff;
	border-radius: 999px;
}

.language-switcher__list::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, rgba(18, 103, 241, 0.82), rgba(0, 167, 199, 0.68));
	border: 2px solid #eef5ff;
	border-radius: 999px;
}

body[dir="rtl"] .language-switcher__menu {
	right: auto;
	left: 0;
}

.language-switcher.is-open .language-switcher__menu {
	display: block;
}

.language-switcher__menu a {
	padding: 9px 10px;
	color: #253b56;
	line-height: 1.35;
	white-space: normal;
	overflow-wrap: anywhere;
	border-radius: 6px;
}

.language-switcher__scroll-cue {
	position: absolute;
	right: 1px;
	bottom: 1px;
	left: 1px;
	height: 54px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white) 72%);
	opacity: 0;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-switcher__scroll-cue::before,
.language-switcher__scroll-cue::after {
	position: absolute;
	left: 50%;
	content: "";
}

.language-switcher__scroll-cue::before {
	bottom: 10px;
	width: 28px;
	height: 28px;
	background: var(--white);
	border: 1px solid rgba(18, 103, 241, 0.22);
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(10, 31, 68, 0.18);
	transform: translateX(-50%);
}

.language-switcher__scroll-cue::after {
	bottom: 22px;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--blue);
	border-bottom: 2px solid var(--blue);
	transform: translateX(-50%) rotate(45deg);
	animation: language-scroll-cue 1.25s ease-in-out infinite;
}

.language-switcher.has-language-overflow:not(.is-language-scrolled-end) .language-switcher__scroll-cue {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.language-switcher__scroll-cue::after {
		animation: none;
	}
}

@keyframes language-scroll-cue {
	0%,
	100% {
		margin-bottom: 2px;
	}

	50% {
		margin-bottom: -2px;
	}
}

.header-actions .button {
	flex: 0 1 auto;
	max-width: 13rem;
	padding-right: 18px;
	padding-left: 18px;
	white-space: normal;
	overflow-wrap: anywhere;
}

.language-switcher__menu a:hover,
.language-switcher__menu a.is-active {
	color: var(--blue);
	background: #eef5ff;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--ink);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 26px;
	color: var(--white);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	background: var(--blue);
	border: 1px solid var(--blue);
	border-radius: 6px;
	box-shadow: 0 12px 26px rgba(18, 103, 241, 0.24);
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
	background: var(--blue-2);
	border-color: var(--blue-2);
}

.button--small {
	min-height: 44px;
	padding: 0 22px;
	font-size: 14px;
}

.button--ghost {
	color: var(--white);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.28);
	box-shadow: none;
}

.button--light {
	color: var(--blue);
	background: var(--white);
	border-color: var(--white);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.section-inner {
	width: min(1180px, calc(100% - 56px));
	margin: 0 auto;
}

.hero {
	position: relative;
	min-height: var(--banner-home-height);
	color: var(--white);
	background-position: center;
	background-size: cover;
}

.hero__inner {
	display: grid;
	align-content: end;
	min-height: var(--banner-home-height);
	padding: 112px 0 56px;
}

.hero__content {
	max-width: 720px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 18px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
	white-space: nowrap;
	overflow-wrap: normal;
	word-break: keep-all;
}

.eyebrow::before {
	display: inline-block;
	width: 24px;
	height: 3px;
	content: "";
	background: currentColor;
	border-radius: 999px;
}

.eyebrow--dark {
	color: #64d6ff;
}

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

h1 {
	max-width: 780px;
	margin-bottom: 24px;
	font-size: 56px;
	line-height: 1.1;
	font-weight: 900;
	letter-spacing: 0;
}

h2 {
	margin-bottom: 22px;
	font-size: 38px;
	line-height: 1.24;
	font-weight: 900;
	letter-spacing: 0;
}

h3 {
	margin-bottom: 12px;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 900;
	letter-spacing: 0;
}

.hero__summary {
	max-width: 620px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	line-height: 1.72;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 40px;
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	max-width: 820px;
	margin-top: 56px;
}

.hero-stat {
	padding: 24px 26px;
	background: var(--banner-panel-bg);
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	backdrop-filter: blur(10px);
}

.hero-stat strong {
	display: block;
	margin-bottom: 8px;
	color: #7de2ff;
	font-size: 25px;
	line-height: 1;
}

.hero-stat span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.45;
}

.hero-contact {
	position: relative;
	color: var(--white);
	background: #08244a;
	border-top: 1px solid rgba(156, 226, 255, 0.28);
	border-bottom: 1px solid rgba(8, 34, 70, 0.72);
	overflow: hidden;
}

.hero-contact::before {
	position: absolute;
	top: 0;
	right: 5.2%;
	left: 48.8%;
	height: 2px;
	content: "";
	background: linear-gradient(90deg, transparent, #2f83ff 14%, #2f83ff 86%, transparent);
}

.hero-contact__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(230px, 0.9fr) minmax(270px, 1fr) minmax(360px, 1.25fr) minmax(320px, 1.1fr);
	align-items: stretch;
	width: min(1850px, calc(100% - 96px));
	min-height: 120px;
}

.hero-contact__item {
	position: relative;
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	gap: 26px;
	align-items: center;
	min-height: 120px;
	padding: 32px 46px 20px;
	color: inherit;
	transition: background 180ms ease, border-color 180ms ease;
}

.hero-contact__item + .hero-contact__item {
	border-left: 1px solid rgba(58, 89, 130, 0.38);
}

.hero-contact__item:hover,
.hero-contact__item:focus-visible {
	background: rgba(255, 255, 255, 0.06);
	outline: none;
}

.hero-contact__index {
	position: absolute;
	top: 24px;
	left: 46px;
	color: rgba(47, 131, 255, 0.52);
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.hero-contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-top: 2px;
	color: #2f83ff;
	background: rgba(18, 103, 241, 0.08);
	border: 1px solid rgba(47, 131, 255, 0.36);
	border-radius: 16px;
	box-shadow: inset 0 0 0 1px rgba(47, 131, 255, 0.06);
}

.hero-contact__icon svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero-contact__body {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.hero-contact__label {
	color: rgba(47, 131, 255, 0.72);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.22em;
}

html[lang="zh-CN"] .hero-contact__label {
	letter-spacing: 0.1em;
}

.hero-contact__value {
	color: rgba(238, 246, 255, 0.82);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
}

.hero-contact__item--quality .hero-contact__value,
.hero-contact__item--service .hero-contact__value {
	color: rgba(244, 247, 252, 0.9);
	font-weight: 900;
}

.hero-contact__note {
	color: rgba(206, 229, 245, 0.66);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}

body[dir="rtl"] .hero-contact__item {
	padding: 44px 46px 26px;
}

body[dir="rtl"] .hero-contact__item + .hero-contact__item {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	border-left: 0;
}

body[dir="rtl"] .hero-contact__index {
	right: 46px;
	left: auto;
}

.solution-section,
.applications-section,
.product-table-section,
.service-section,
.cases-section,
.faq-section,
.contact-section {
	padding: var(--section) 0;
	background: var(--white);
}

.solution-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
	gap: 72px;
	align-items: center;
}

.image-collage {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.image-collage img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.image-collage__main {
	grid-column: 1 / -1;
	height: 330px !important;
}

.section-copy p {
	max-width: 660px;
	color: var(--muted);
}

.check-list {
	display: grid;
	gap: 16px;
	margin: 34px 0;
}

.check-item {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 14px;
	align-items: start;
}

body[dir="rtl"] .check-item {
	grid-template-columns: 1fr 22px;
}

body[dir="rtl"] .check-item span {
	grid-column: 2;
	grid-row: 1;
}

body[dir="rtl"] .check-item p {
	grid-column: 1;
	grid-row: 1;
}

.check-item span {
	width: 22px;
	height: 22px;
	margin-top: 2px;
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	border-radius: 50%;
	box-shadow: 0 8px 18px rgba(0, 167, 199, 0.25);
}

.check-item span::after {
	display: block;
	width: 8px;
	height: 4px;
	margin: 7px 0 0 6px;
	content: "";
	transform: rotate(-45deg);
	border-bottom: 2px solid var(--white);
	border-left: 2px solid var(--white);
}

.check-item p {
	margin: 0;
}

.text-link {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	color: var(--blue);
	font-weight: 900;
}

.text-link::after {
	margin-left: 8px;
	content: "→";
}

body[dir="rtl"] .text-link::after {
	margin-right: 8px;
	margin-left: 0;
	content: "←";
}

.applications-section,
.service-section,
.cases-section,
.faq-section {
	background: #f3f7fb;
}

.testing-section {
	padding: var(--section) 0;
	background: var(--white);
}

.section-heading {
	max-width: 780px;
	margin-bottom: 46px;
}

.section-heading h2 {
	color: #10233c;
	font-size: 31px;
	line-height: 1.32;
}

.section-heading--center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.application-list {
	display: grid;
	gap: 22px;
}

.application-band {
	display: grid;
	align-items: end;
	min-height: 252px;
	padding: 44px;
	color: var(--white);
	background-position: center;
	background-size: cover;
	border-radius: var(--radius);
	overflow: hidden;
}

.application-band div {
	max-width: 660px;
}

.application-band p {
	max-width: 620px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.7;
}

.application-band__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	color: var(--white);
	font-size: 14px;
	font-weight: 900;
}

.application-band__link svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.application-band__link:hover svg,
.application-band__link:focus-visible svg {
	transform: translateX(4px);
}

body[dir="rtl"] .application-band__link:hover svg,
body[dir="rtl"] .application-band__link:focus-visible svg {
	transform: translateX(-4px);
}

.application-band__marker {
	display: block;
	width: 44px;
	height: 4px;
	margin-bottom: 18px;
	background: var(--amber);
	border-radius: 999px;
}

.application-band:nth-child(2) .application-band__marker {
	background: var(--cyan);
}

.application-band:nth-child(3) .application-band__marker {
	background: var(--green);
}

.cta-panel {
	padding: 60px 0;
	color: var(--white);
	background: var(--banner-dark-bg);
}

.cta-panel__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
}

.cta-panel h2 {
	max-width: 760px;
	margin-bottom: 10px;
}

.cta-panel p:not(.eyebrow) {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.7;
}

.products-showcase {
	position: relative;
	padding: 0;
	color: var(--white);
	background:
		radial-gradient(circle at 18% 22%, rgba(18, 103, 241, 0.16), transparent 32%),
		linear-gradient(135deg, #07162d 0%, #0f2947 52%, #071421 100%);
	overflow: hidden;
}

.products-showcase__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.82fr);
	gap: 82px;
	align-items: end;
	min-height: 600px;
	padding: 96px 0;
}

.product-visual {
	position: relative;
	min-height: 480px;
}

.product-visual__main {
	position: absolute;
	inset: 0 0 0 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.product-visual__main::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(4, 13, 31, 0.88), rgba(4, 13, 31, 0.3)),
		linear-gradient(180deg, transparent 55%, rgba(4, 13, 31, 0.78));
}

.product-visual__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.82) contrast(1.02);
}

.product-visual__specs {
	position: absolute;
	left: 30px;
	bottom: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
	max-width: calc(100% - 60px);
}

body[dir="rtl"] .product-visual__specs {
	right: 30px;
	left: auto;
	justify-content: flex-start;
}

.product-visual__specs span {
	padding: 11px 15px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	backdrop-filter: blur(10px);
}

.products-showcase__copy p:not(.eyebrow) {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 18px;
	line-height: 1.72;
}

.mini-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 40px;
}

.mini-feature-grid div {
	position: relative;
	min-height: 96px;
	padding: 22px 20px 22px 26px;
	color: rgba(255, 255, 255, 0.86);
	font-weight: 800;
	line-height: 1.55;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
}

.mini-feature-grid div::before {
	position: absolute;
	top: 18px;
	bottom: 18px;
	left: 0;
	width: 4px;
	content: "";
	background: linear-gradient(180deg, #66d8ff, var(--blue));
	border-radius: 999px;
}

body[dir="rtl"] .mini-feature-grid div {
	padding: 22px 26px 22px 20px;
}

body[dir="rtl"] .mini-feature-grid div::before {
	right: 0;
	left: auto;
}

.table-wrap {
	overflow-x: auto;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.product-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	table-layout: fixed;
}

.product-table th,
.product-table td {
	padding: 22px 24px;
	line-height: 1.55;
	text-align: left;
	border-bottom: 1px solid var(--line);
}

.product-table th:nth-child(1),
.product-table td:nth-child(1) {
	width: 16%;
}

.product-table th:nth-child(2),
.product-table td:nth-child(2) {
	width: 42%;
}

.product-table th:nth-child(3),
.product-table td:nth-child(3) {
	width: 13%;
}

.product-table th:nth-child(4),
.product-table td:nth-child(4) {
	width: 17%;
}

.product-table th:nth-child(5),
.product-table td:nth-child(5) {
	width: 12%;
}

body[dir="rtl"] .product-table th,
body[dir="rtl"] .product-table td {
	text-align: right;
}

.product-table th {
	color: #24415f;
	font-size: 12px;
	line-height: 1.35;
	text-transform: uppercase;
	background: #f2f6fb;
}

.product-table tr:last-child td {
	border-bottom: 0;
}

.product-table--has-extra tr:last-child td {
	border-bottom: 1px solid var(--line);
}

.product-table a {
	color: var(--blue);
	font-weight: 900;
}

.product-table-more {
	min-width: 720px;
}

.product-table-more__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 74px;
	padding: 18px 24px;
	color: var(--muted);
	list-style: none;
	cursor: pointer;
	background: linear-gradient(180deg, #fbfdff 0%, #f3f8fd 100%);
	transition: background 180ms ease;
}

.product-table-more__summary::-webkit-details-marker {
	display: none;
}

.product-table-more__summary:hover,
.product-table-more__summary:focus-visible {
	background: #eef5fc;
	outline: none;
}

.product-table-more[open] .product-table-more__summary {
	border-bottom: 1px solid var(--line);
}

.product-table-more__meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.product-table-more__meta strong {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	color: #24415f;
	font-size: 12px;
	background: #e8f1ff;
	border: 1px solid #d3e4ff;
	border-radius: 999px;
}

.product-table-more__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 16px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	white-space: nowrap;
	background: var(--white);
	border: 1px solid rgba(18, 103, 241, 0.18);
	border-radius: 6px;
	box-shadow: 0 10px 24px rgba(18, 103, 241, 0.12);
}

.product-table-more__action svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.product-table-more__action-close,
.product-table-more[open] .product-table-more__action-open {
	display: none;
}

.product-table-more[open] .product-table-more__action-close {
	display: inline;
}

.product-table-more[open] .product-table-more__action svg {
	transform: rotate(180deg);
}

.process-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 22px;
	margin: 50px 0;
}

.process-timeline::before {
	position: absolute;
	top: 32px;
	right: 8%;
	left: 8%;
	height: 2px;
	content: "";
	background: var(--line);
}

.process-step {
	position: relative;
	padding: 78px 22px 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 32px rgba(10, 31, 68, 0.08);
}

.process-step__number {
	position: absolute;
	top: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--white);
	font-size: 13px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	border: 4px solid #e8f6ff;
	border-radius: 50%;
}

body[dir="rtl"] .process-step__number {
	right: 18px;
	left: auto;
}

.process-step h3 {
	font-size: 18px;
}

.process-step p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.65;
}

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

.service-card,
.case-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(10, 31, 68, 0.08);
}

.service-card img,
.case-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.service-card div,
.case-card div {
	padding: 24px;
}

.service-card p,
.case-card p {
	margin-bottom: 0;
	color: var(--muted);
	line-height: 1.68;
}

.case-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
}

.case-card__link svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.case-card__link:hover svg,
.case-card__link:focus-visible svg {
	transform: translateX(4px);
}

body[dir="rtl"] .case-card__link:hover svg,
body[dir="rtl"] .case-card__link:focus-visible svg {
	transform: translateX(-4px);
}

.cases-section__all {
	margin-top: 34px;
}

.cases-section {
	background: #f3f7fb;
}

.testing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 50px;
}

.testing-item {
	text-align: center;
}

.testing-item__image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	margin-bottom: 20px;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 32px rgba(10, 31, 68, 0.08);
}

.testing-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.testing-item__zoom {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	padding: 0;
	color: var(--white);
	background: rgba(18, 103, 241, 0.92);
	border: 2px solid rgba(255, 255, 255, 0.88);
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(18, 103, 241, 0.36);
	cursor: pointer;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.9);
	transition: opacity 280ms ease, transform 280ms ease, background 180ms ease;
}

.testing-item__image:hover .testing-item__zoom {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.testing-item__zoom:hover {
	background: var(--blue-2);
}

.testing-item__zoom svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.testing-item__image:hover img {
	transform: scale(1.05);
}

.testing-item h3 {
	margin-bottom: 0;
	color: #10233c;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
}

.image-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 280ms ease;
}

.image-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.image-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(4, 10, 22, 0.92);
	backdrop-filter: blur(8px);
}

.image-lightbox__content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	max-height: 90vh;
	transform: scale(0.95);
	transition: transform 280ms ease;
}

.image-lightbox.is-open .image-lightbox__content {
	transform: scale(1);
}

.image-lightbox__content img {
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	border-radius: var(--radius);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.image-lightbox__close {
	position: absolute;
	top: -50px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--white);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.32);
	outline: none;
}

.image-lightbox__close svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

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

.case-card span {
	display: inline-flex;
	margin-bottom: 10px;
	padding: 4px 9px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	background: #edf5ff;
	border-radius: 999px;
}

.faq-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
	gap: 64px;
}

.faq-list {
	display: grid;
	gap: 16px;
}

.faq-item {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 10px 26px rgba(10, 31, 68, 0.07);
}

.faq-item summary {
	position: relative;
	padding: 22px 58px 22px 24px;
	font-weight: 900;
	line-height: 1.45;
	cursor: pointer;
	list-style: none;
}

body[dir="rtl"] .faq-item summary {
	padding: 22px 24px 22px 58px;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 10px;
	content: "";
	transform: translateY(-65%) rotate(45deg);
	border-right: 2px solid var(--blue);
	border-bottom: 2px solid var(--blue);
}

body[dir="rtl"] .faq-item summary::after {
	right: auto;
	left: 20px;
}

.faq-item[open] summary::after {
	transform: translateY(-35%) rotate(225deg);
}

.faq-item p {
	margin: 0;
	padding: 0 24px 24px;
	color: var(--muted);
	line-height: 1.72;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
	gap: 64px;
	align-items: end;
}

.contact-copy {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.contact-copy p {
	max-width: 560px;
	color: var(--muted);
}

.contact-mini {
	display: grid;
	gap: 14px;
	margin-top: 32px;
}

.contact-mini__item {
	display: grid;
	gap: 4px;
	padding: 16px 18px;
	color: #26405f;
	line-height: 1.45;
	background: #f1f6fb;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-mini a.contact-mini__item:hover,
.contact-mini a.contact-mini__item:focus-visible {
	transform: translateY(-1px);
	background: #eef5ff;
	border-color: rgba(18, 103, 241, 0.28);
	outline: none;
}

.contact-mini__item--static {
	cursor: default;
}

.contact-mini span {
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
}

.contact-mini strong {
	color: #26405f;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.35;
}

.inquiry-form {
	display: grid;
	gap: 22px;
	padding: 34px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

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

.inquiry-form label {
	display: grid;
	gap: 10px;
	color: #233b58;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
}

.inquiry-form input,
.inquiry-form textarea {
	width: 100%;
	padding: 15px 16px;
	line-height: 1.5;
	color: var(--ink);
	background: #f8fbfe;
	border: 1px solid var(--line);
	border-radius: 6px;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.inquiry-form textarea {
	resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(18, 103, 241, 0.12);
}

.form-notice {
	padding: 12px 14px;
	font-weight: 800;
	border-radius: 6px;
}

.form-notice--success {
	color: #086044;
	background: #e9fbf3;
}

.form-notice--error {
	color: #9f3412;
	background: #fff3e8;
}

.floating-actions {
	position: fixed;
	top: 75%;
	right: 5px;
	z-index: 1000;
	display: grid;
	width: 50px;
	transform: translateY(-50%);
	border: 1px solid rgba(58, 89, 130, 0.28);
	border-radius: 8px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
	overflow: visible;
}

.floating-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0;
	color: #2f83ff;
	background: rgba(5, 13, 27, 0.66);
	border: 0;
	border-bottom: 1px solid rgba(58, 89, 130, 0.24);
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.floating-action::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
	content: "";
	background: #2f83ff;
	opacity: 0;
	transform: scaleY(0.34);
	transition: opacity 180ms ease, transform 180ms ease;
}

.floating-action:hover,
.floating-action:focus-visible {
	color: #68d8ff;
	background: rgba(7, 20, 39, 0.84);
	outline: none;
}

.floating-action:hover::before,
.floating-action:focus-visible::before {
	opacity: 1;
	transform: scaleY(1);
}

.floating-action__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
}

.floating-action__icon svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.floating-action__tip {
	position: absolute;
	top: 50%;
	right: calc(100% + 10px);
	padding: 7px 10px;
	color: rgba(245, 248, 255, 0.94);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	white-space: nowrap;
	background: rgba(5, 13, 27, 0.96);
	border: 1px solid rgba(47, 131, 255, 0.36);
	border-radius: 6px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
	opacity: 0;
	pointer-events: none;
	transform: translate(10px, -50%);
	transition: opacity 180ms ease, transform 180ms ease;
}

.floating-action__tip::after {
	position: absolute;
	top: 50%;
	right: -5px;
	width: 9px;
	height: 9px;
	content: "";
	background: rgba(5, 13, 27, 0.96);
	border-top: 1px solid rgba(47, 131, 255, 0.36);
	border-right: 1px solid rgba(47, 131, 255, 0.36);
	transform: translateY(-50%) rotate(45deg);
}

.floating-action:hover .floating-action__tip,
.floating-action:focus-visible .floating-action__tip {
	opacity: 1;
	transform: translate(0, -50%);
}

.floating-action--top {
	height: 45px;
	color: rgba(47, 131, 255, 0.44);
	opacity: 0.48;
}

.floating-action--top .floating-action__icon svg {
	width: 16px;
	height: 16px;
}

.floating-action--top.is-active {
	color: #2f83ff;
	opacity: 1;
}

.floating-action--top.is-disabled {
	cursor: default;
	pointer-events: none;
}

.floating-message {
	position: fixed;
	top: auto;
	right: 24px;
	bottom: 24px;
	left: auto;
	z-index: 1100;
	display: block;
	width: min(500px, calc(100vw - 112px));
	max-height: calc(100vh - 48px);
	padding: 0;
	background: transparent;
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
}

.floating-message.is-open {
	opacity: 1;
	pointer-events: none;
}

.floating-message__panel {
	position: relative;
	display: grid;
	gap: 22px;
	width: 100%;
	max-height: inherit;
	overflow-y: auto;
	padding: 34px 30px 30px;
	color: var(--ink);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 255, 0.96)),
		var(--white);
	border: 1px solid rgba(151, 196, 239, 0.62);
	border-radius: var(--radius);
	box-shadow: 0 24px 60px rgba(18, 103, 241, 0.18), 0 8px 22px rgba(10, 31, 68, 0.08);
	opacity: 0;
	pointer-events: none;
	transform: translateY(16px) scale(0.98);
	transition: opacity 220ms ease, transform 220ms ease;
}

.floating-message__panel::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 5px;
	content: "";
	background: linear-gradient(90deg, var(--blue), var(--cyan), var(--amber));
}

.floating-message.is-open .floating-message__panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.floating-message__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	color: #5d7189;
	background: #f1f7ff;
	border: 1px solid #d7e7f7;
	border-radius: 6px;
	cursor: pointer;
	transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.floating-message__close:hover,
.floating-message__close:focus-visible {
	color: var(--blue);
	background: #e8f3ff;
	border-color: rgba(18, 103, 241, 0.34);
	outline: none;
}

.floating-message__close svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.floating-message__header {
	padding-right: 34px;
}

.floating-message__eyebrow {
	margin-bottom: 8px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0;
}

.floating-message__header h2 {
	margin-bottom: 10px;
	color: #0c2038;
	font-size: 26px;
	line-height: 1.2;
}

.floating-message__header p:not(.floating-message__eyebrow) {
	margin-bottom: 0;
	color: #53667b;
	font-size: 15px;
	line-height: 1.62;
}

.floating-message__form {
	display: grid;
	gap: 14px;
}

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

.floating-message__form label {
	display: grid;
	gap: 8px;
	color: #087294;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.3;
}

.floating-message__form input,
.floating-message__form textarea {
	width: 100%;
	padding: 13px 14px;
	color: var(--ink);
	line-height: 1.45;
	background: var(--white);
	border: 1px solid #c8d8e8;
	border-radius: 6px;
	outline: none;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 1px 2px rgba(10, 31, 68, 0.04);
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-message__form textarea {
	resize: vertical;
}

.floating-message__form input:focus,
.floating-message__form textarea:focus {
	background: #fbfdff;
	border-color: rgba(18, 103, 241, 0.72);
	box-shadow: 0 0 0 4px rgba(18, 103, 241, 0.14), 0 10px 22px rgba(18, 103, 241, 0.08);
}

.floating-message__form .button {
	width: 100%;
	margin-top: 4px;
	min-height: 56px;
	font-size: 15px;
	background: linear-gradient(135deg, #1f7aff 0%, #00a7c7 100%);
	border-color: transparent;
	box-shadow: 0 18px 34px rgba(18, 103, 241, 0.26);
}

.floating-message__form .button:hover,
.floating-message__form .button:focus-visible {
	background: linear-gradient(135deg, var(--blue-2) 0%, #008ead 100%);
	border-color: transparent;
	box-shadow: 0 20px 38px rgba(18, 103, 241, 0.3);
}

.floating-message__form .button:disabled {
	opacity: 0.68;
	cursor: wait;
	transform: none;
}

.floating-message__notice {
	display: none;
	padding: 11px 12px;
	color: #a83a15;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.45;
	background: #fff3ec;
	border: 1px solid #ffcdb7;
	border-radius: 6px;
}

.floating-message__notice.is-active {
	display: block;
}

.floating-message__success {
	position: absolute;
	inset: 0;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 10px;
	padding: 30px;
	text-align: center;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 250, 255, 0.98)),
		var(--white);
	border-radius: inherit;
	opacity: 0;
	pointer-events: none;
	transform: scale(0.96);
	transition: opacity 220ms ease, transform 220ms ease;
}

.floating-message__success strong {
	color: #0c2038;
	font-size: 22px;
	line-height: 1.2;
}

.floating-message__success small {
	color: #53667b;
	font-size: 14px;
}

.floating-message__check {
	position: relative;
	display: inline-flex;
	width: 58px;
	height: 58px;
	background: rgba(20, 169, 109, 0.12);
	border: 1px solid rgba(20, 169, 109, 0.42);
	border-radius: 50%;
	box-shadow: 0 0 0 9px rgba(20, 169, 109, 0.06);
}

.floating-message__check::after {
	position: absolute;
	top: 18px;
	left: 16px;
	width: 22px;
	height: 11px;
	content: "";
	transform: rotate(-45deg);
	border-bottom: 3px solid #22d48d;
	border-left: 3px solid #22d48d;
}

.floating-message.is-sent .floating-message__form,
.floating-message.is-sent .floating-message__header,
.floating-message.is-sent .floating-message__close {
	opacity: 0;
	pointer-events: none;
}

.floating-message.is-sent .floating-message__success {
	opacity: 1;
	transform: scale(1);
}

.about-section {
	padding: 100px 0;
	color: var(--white);
	background-position: center;
	background-size: cover;
}

.about-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
	gap: 68px;
	align-items: center;
}

.about-section p:not(.eyebrow) {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.72;
}

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

.about-stats div {
	min-height: 132px;
	padding: 26px;
	background: var(--banner-panel-bg);
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	backdrop-filter: blur(10px);
}

.about-stats strong {
	display: block;
	margin-bottom: 8px;
	color: #7de2ff;
	font-size: 30px;
	line-height: 1;
}

.about-stats span {
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.45;
}

.site-footer {
	color: rgba(255, 255, 255, 0.76);
	background: #06111f;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.5fr);
	gap: 68px;
	padding: 68px 0 44px;
	align-items: start;
}

.site-footer__brand p {
	max-width: 360px;
	margin-top: 14px;
	margin-bottom: 0;
	line-height: 1.65;
}

.site-footer__brand .social-icons {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
}

.site-footer__brand .social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: rgba(255, 255, 255, 0.62);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	transition: all 180ms ease;
}

.site-footer__brand .social-icon:hover,
.site-footer__brand .social-icon:focus-visible {
	color: var(--white);
	background: rgba(47, 131, 255, 0.18);
	border-color: rgba(47, 131, 255, 0.38);
	transform: translateY(-2px);
	outline: none;
}

.site-footer__brand .social-icon svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.site-footer__columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
}

.site-footer h2 {
	margin-bottom: 14px;
	color: var(--white);
	font-size: 15px;
}

.site-footer ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer li a {
	color: rgba(255, 255, 255, 0.72);
	transition: color 180ms ease;
}

.site-footer li a:hover,
.site-footer li a:focus-visible {
	color: var(--white);
	outline: none;
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: auto minmax(280px, 1fr) auto auto;
	align-items: center;
	gap: 18px;
	padding: 22px 0;
	font-size: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom .company-info-card--footer {
	display: grid;
	gap: 2px;
	min-width: 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 12px;
	line-height: 1.45;
}

.site-footer__bottom .company-info-card--footer p {
	margin: 0;
}

.site-footer__bottom .company-info-card--footer strong,
.site-footer__bottom .company-info-card--footer span {
	display: inline;
	overflow-wrap: anywhere;
}

.site-footer__bottom .company-info-card--footer strong {
	color: rgba(255, 255, 255, 0.78);
	font-weight: 700;
}

.site-footer__bottom .company-info-card--footer p:first-child span::before {
	content: " / ";
	color: rgba(255, 255, 255, 0.32);
}

.site-footer__top-link {
	color: rgba(255, 255, 255, 0.68);
	white-space: nowrap;
	transition: color 180ms ease;
}

.site-footer__top-link:hover,
.site-footer__top-link:focus-visible {
	color: var(--white);
	outline: none;
}

.footer-legal-links {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	font-weight: 500;
}

.footer-legal-links a {
	color: rgba(255, 255, 255, 0.68);
	transition: color 180ms ease;
}

.footer-cookie-settings {
	margin: 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.68);
	font: inherit;
	line-height: inherit;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: color 180ms ease;
	appearance: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible,
.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
	color: var(--white);
	outline: none;
}

.footer-cookie-settings:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.footer-legal-separator {
	color: rgba(255, 255, 255, 0.28);
	user-select: none;
}

body[dir="rtl"] .footer-legal-links {
	flex-direction: row-reverse;
}

/* Complianz: keep consent management in the legal footer instead of a floating tab. */
#cmplz-manage-consent > .cmplz-manage-consent {
	display: none !important;
}

/* Bring the first-visit banner into the MSILI visual system without changing consent logic. */
#cmplz-cookiebanner-container .cmplz-cookiebanner {
	border: 1px solid rgba(217, 227, 238, 0.9) !important;
	border-radius: 16px !important;
	box-shadow: 0 24px 64px rgba(6, 20, 43, 0.22) !important;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-title {
	color: var(--deep);
	font-size: 18px;
	font-weight: 800;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-message {
	color: #42536a;
	font-size: 13px;
	line-height: 1.65;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
	min-height: 46px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 750;
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept {
	color: var(--white);
	background: var(--blue);
	border-color: var(--blue);
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-save-preferences {
	color: #24364c;
	background: #f6f9fc;
	border-color: #dbe5ef;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn:hover {
	transform: translateY(-1px);
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn:focus-visible,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-close:focus-visible,
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-link:focus-visible {
	outline: 3px solid rgba(18, 103, 241, 0.24);
	outline-offset: 2px;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-links .cmplz-link {
	color: var(--blue);
	text-underline-offset: 3px;
}

.social-icons {
	display: flex;
	align-items: center;
	gap: 14px;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: rgba(255, 255, 255, 0.68);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	transition: all 180ms ease;
}

.social-icon:hover,
.social-icon:focus-visible {
	color: var(--white);
	background: rgba(47, 131, 255, 0.22);
	border-color: rgba(47, 131, 255, 0.42);
	transform: translateY(-2px);
	outline: none;
}

.social-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.fallback-page {
	padding: 90px 0;
	background: var(--white);
}

.content-article {
	max-width: 820px;
}

.sitemap-hero {
	min-height: var(--banner-page-height);
	color: var(--white);
	background-position: center;
	background-size: cover;
}

.sitemap-hero__inner {
	display: grid;
	align-content: end;
	min-height: var(--banner-page-height);
	padding: 104px 0 58px;
}

.sitemap-breadcrumb {
	margin-bottom: 44px;
	color: rgba(255, 255, 255, 0.78);
}

.sitemap-hero__copy {
	max-width: 720px;
}

.sitemap-hero__copy h1 {
	margin-bottom: 18px;
	color: var(--white);
}

.sitemap-hero__copy p:not(.eyebrow) {
	max-width: 620px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
}

.sitemap-content {
	padding: 82px 0 96px;
	background: #f7f9fc;
}

.sitemap-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: start;
}

.sitemap-card {
	min-width: 0;
	height: 100%;
	padding: 30px;
	background: var(--white);
	border: 1px solid rgba(15, 44, 78, 0.1);
	border-radius: var(--radius);
	box-shadow: 0 18px 44px rgba(10, 31, 68, 0.08);
}

.sitemap-card--main {
	grid-column: 1 / -1;
}

.sitemap-card h2 {
	margin-bottom: 18px;
	font-size: 24px;
	line-height: 1.28;
}

.sitemap-link-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sitemap-card--main .sitemap-link-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sitemap-link-list a,
.sitemap-xml-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 48px;
	padding: 12px 14px;
	color: var(--ink);
	background: #f8fbff;
	border: 1px solid rgba(18, 103, 241, 0.12);
	border-radius: 8px;
	font-weight: 800;
	line-height: 1.35;
	transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sitemap-link-list a::after,
.sitemap-xml-link::after {
	flex: 0 0 auto;
	color: var(--blue);
	content: "->";
}

.sitemap-link-list a:hover,
.sitemap-link-list a:focus-visible,
.sitemap-xml-link:hover,
.sitemap-xml-link:focus-visible {
	color: var(--blue);
	background: var(--white);
	border-color: rgba(18, 103, 241, 0.32);
	transform: translateY(-1px);
	outline: none;
}

.sitemap-empty {
	margin-bottom: 0;
	color: var(--muted);
}

.sitemap-card--xml p {
	margin-bottom: 18px;
	color: var(--muted);
}

.sitemap-xml-link {
	display: inline-flex;
}

@media (max-width: 760px) {
	.sitemap-hero,
	.sitemap-hero__inner {
		min-height: var(--banner-mobile-height);
	}

	.sitemap-hero__inner {
		padding: 86px 0 42px;
	}

	.sitemap-breadcrumb {
		margin-bottom: 28px;
	}

	.sitemap-hero__copy h1 {
		font-size: 40px;
	}

	.sitemap-content {
		padding: 54px 0 66px;
	}

	.sitemap-grid,
	.sitemap-card--main .sitemap-link-list {
		grid-template-columns: 1fr;
	}

	.sitemap-card {
		padding: 24px;
	}
}

@media (max-width: 1500px) {
	.hero-contact__inner {
		grid-template-columns: minmax(205px, 0.86fr) minmax(235px, 0.96fr) minmax(315px, 1.22fr) minmax(295px, 1.08fr);
		width: min(1480px, calc(100% - 64px));
	}

	.hero-contact__item {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 18px;
		min-height: 108px;
		padding: 28px 24px 18px;
	}

	.hero-contact__item:nth-child(3) {
		border-left: 1px solid rgba(58, 89, 130, 0.38);
	}

	.hero-contact__item:nth-child(n+3) {
		border-top: 0;
	}

	.hero-contact__index {
		top: 20px;
		left: 24px;
	}

	.hero-contact__icon {
		width: 52px;
		height: 52px;
		border-radius: 14px;
	}

	.hero-contact__label {
		font-size: 12px;
		letter-spacing: 0.18em;
	}

	.hero-contact__value {
		font-size: 18px;
	}

	.hero-contact__note {
		font-size: 14px;
	}

	body[dir="rtl"] .hero-contact__index {
		right: 24px;
		left: auto;
	}
}

@media (min-width: 1181px) and (max-width: 1480px) {
	.site-header__inner {
		width: calc(100% - 40px);
		gap: 16px;
	}

	.brand {
		width: 140px;
		min-width: 140px;
	}

	.primary-nav {
		gap: 2px;
		padding: 6px;
		font-size: 14px;
	}

	.primary-nav a {
		min-height: 42px;
		padding: 8px 12px;
	}

	.primary-nav__item > .primary-nav__link {
		padding-right: 34px;
	}

	body[dir="rtl"] .primary-nav__item > .primary-nav__link {
		padding-right: 12px;
		padding-left: 34px;
	}

	.primary-nav__dropdown-toggle {
		right: 4px;
	}

	body[dir="rtl"] .primary-nav__dropdown-toggle {
		right: auto;
		left: 4px;
	}

	.header-actions {
		gap: 8px;
	}

	.language-switcher__button {
		min-width: 58px;
		padding: 0 14px;
	}

	.header-actions .button {
		padding-right: 18px;
		padding-left: 18px;
	}
}

@media (max-width: 1180px) {
	.site-header__inner {
		width: min(100% - 52px, 1180px);
		gap: 22px;
	}

	.brand {
		width: 146px;
		min-width: 146px;
	}

	.primary-nav {
		font-size: 14px;
	}

	.primary-nav a {
		min-height: 42px;
		padding: 0 17px;
	}

	.primary-nav__item > .primary-nav__link {
		padding-right: 38px;
	}

	body[dir="rtl"] .primary-nav__item > .primary-nav__link {
		padding-right: 17px;
		padding-left: 38px;
	}

	.language-switcher__button,
	.button--small {
		min-height: 42px;
	}

	.hero-contact__inner {
		width: min(1180px, calc(100% - 48px));
	}
}

@media (max-width: 1180px) {
	:root {
		--section: 84px;
	}

	.site-header__inner {
		grid-template-columns: auto auto 1fr;
	}

	.nav-toggle {
		display: block;
	}

	.primary-nav {
		position: absolute;
		top: 92px;
		right: 26px;
		left: 26px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
		padding: 12px;
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: var(--radius);
		box-shadow: var(--shadow);
	}

	.primary-nav.is-open {
		display: flex;
	}

	.primary-nav a {
		justify-content: flex-start;
		width: 100%;
		max-width: none;
		min-height: 48px;
		padding: 13px 14px;
		text-align: left;
		white-space: normal;
	}

	body[dir="rtl"] .primary-nav a {
		justify-content: flex-end;
		text-align: right;
	}

	.primary-nav__item {
		display: block;
		width: 100%;
	}

	.primary-nav__item > .primary-nav__link {
		justify-content: flex-start;
		width: 100%;
		max-width: none;
		padding-right: 54px;
		text-align: left;
	}

	body[dir="rtl"] .primary-nav__item > .primary-nav__link {
		justify-content: flex-end;
		padding-right: 14px;
		padding-left: 54px;
		text-align: right;
	}

	.primary-nav__dropdown-toggle {
		top: 9px;
		right: 10px;
		width: 34px;
		height: 34px;
		transform: none;
	}

	body[dir="rtl"] .primary-nav__dropdown-toggle {
		right: auto;
		left: 10px;
	}

	.primary-nav__item.is-open .primary-nav__dropdown-toggle {
		transform: rotate(180deg);
	}

	.primary-nav__dropdown {
		position: static;
		display: none;
		grid-template-columns: 1fr;
		width: auto;
		min-width: 0;
		margin: 0 6px 8px;
		padding: 6px;
		background: #f7fbff;
		border-radius: 10px;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
	}

	.primary-nav__dropdown::before {
		content: none;
	}

	.primary-nav__item.is-open .primary-nav__dropdown {
		display: grid;
	}

	.primary-nav__dropdown a {
		min-height: 40px;
		padding: 10px 12px;
	}

	.primary-nav__dropdown-intro,
	.primary-nav__dropdown-footer {
		grid-column: auto;
	}

	.primary-nav__dropdown-intro {
		padding: 10px 12px 12px;
	}

	.header-actions {
		justify-content: end;
	}

	.hero-contact {
		padding: 0;
	}

	.hero-contact::before {
		right: 0;
		left: 0;
	}

	.hero-contact__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: min(1180px, calc(100% - 48px));
		min-height: auto;
	}

	.hero-contact__item,
	body[dir="rtl"] .hero-contact__item {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 16px;
		min-height: 96px;
		padding: 26px 24px 18px;
	}

	.hero-contact__item + .hero-contact__item,
	body[dir="rtl"] .hero-contact__item + .hero-contact__item {
		border-top: 0;
		border-left: 1px solid rgba(58, 89, 130, 0.38);
	}

	.hero-contact__item:nth-child(3),
	body[dir="rtl"] .hero-contact__item:nth-child(3) {
		border-left: 0;
	}

	.hero-contact__item:nth-child(n+3),
	body[dir="rtl"] .hero-contact__item:nth-child(n+3) {
		border-top: 1px solid rgba(58, 89, 130, 0.38);
	}

	.hero-contact__index {
		top: 16px;
		left: 24px;
	}

	body[dir="rtl"] .hero-contact__index {
		right: 24px;
		left: auto;
	}

	.solution-grid,
	.products-showcase__inner,
	.faq-grid,
	.contact-grid,
	.about-section__inner,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.contact-copy {
		position: static;
	}

	.process-timeline {
		grid-template-columns: 1fr;
	}

	.process-timeline::before {
		top: 0;
		bottom: 0;
		left: 38px;
		width: 2px;
		height: auto;
	}

	body[dir="rtl"] .process-timeline::before {
		right: 38px;
		left: auto;
	}

	.process-step {
		padding: 24px 24px 24px 92px;
	}

	body[dir="rtl"] .process-step {
		padding: 24px 92px 24px 24px;
	}

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

@media (max-width: 760px) {
	body {
		font-size: 16px;
		line-height: 1.72;
	}

	.section-inner,
	.site-header__inner {
		width: min(100% - 32px, 1180px);
	}

	.site-header__inner {
		min-height: 66px;
		gap: 12px;
	}

	.brand {
		width: 112px;
		min-width: 112px;
	}

	.header-actions .button {
		display: none;
	}

	.language-switcher__button {
		min-width: 44px;
		height: 38px;
		padding: 0 10px;
	}

	.primary-nav {
		top: 66px;
		right: 16px;
		left: 16px;
	}

	.floating-actions {
		position: fixed !important;
		top: auto;
		right: var(--floating-mobile-right, calc(env(safe-area-inset-right, 0px) + 14px));
		bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
		left: auto !important;
		width: 44px;
		transform: none;
		border: 1px solid rgba(58, 89, 130, 0.24);
		border-radius: 10px;
		box-shadow: 0 16px 30px rgba(3, 10, 24, 0.18);
		overflow: hidden;
	}

	.floating-action {
		width: 44px;
		height: 44px;
		background: rgba(5, 13, 27, 0.72);
	}

	.floating-action--top {
		height: 30px;
	}

	.floating-action__icon svg {
		width: 18px;
		height: 18px;
	}

	.floating-action--top .floating-action__icon svg {
		width: 14px;
		height: 14px;
	}

	.floating-action__tip {
		display: none;
	}

	.floating-message {
		right: 14px;
		bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
		left: 14px;
		width: auto;
		max-height: calc(100vh - 96px);
		padding: 0;
	}

	.floating-message__panel {
		width: 100%;
		padding: 24px;
	}

	.floating-message__field-grid {
		grid-template-columns: 1fr;
	}

	.floating-message__header h2 {
		font-size: 24px;
	}

	.hero,
	.hero__inner {
		min-height: var(--banner-home-height);
	}

	.hero__inner {
		padding: 82px 0 44px;
	}

	h1 {
		font-size: 36px;
		line-height: 1.18;
		margin-bottom: 22px;
	}

	h2 {
		font-size: 29px;
		line-height: 1.28;
	}

	.hero__summary {
		font-size: 16px;
		line-height: 1.72;
	}

	.hero__stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-top: 46px;
	}

	.hero-contact__inner {
		grid-template-columns: 1fr;
		width: min(100% - 32px, 1180px);
	}

	.hero-contact__item {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 14px;
		min-height: 80px;
		padding: 18px 0 14px;
	}

	.hero-contact__item + .hero-contact__item,
	body[dir="rtl"] .hero-contact__item + .hero-contact__item,
	.hero-contact__item:nth-child(n+3),
	body[dir="rtl"] .hero-contact__item:nth-child(n+3) {
		border-top: 1px solid rgba(58, 89, 130, 0.38);
		border-right: 0;
		border-left: 0;
	}

	.hero-contact__icon {
		width: 48px;
		height: 48px;
		border-radius: 13px;
	}

	.hero-contact__icon svg {
		width: 22px;
		height: 22px;
	}

	.hero-contact__index {
		top: 12px;
	}

	.hero-contact__label {
		font-size: 12px;
		letter-spacing: 0.18em;
	}

	.hero-contact__value {
		font-size: 17px;
		overflow-wrap: anywhere;
	}

	.hero-contact__note {
		font-size: 14px;
		overflow-wrap: anywhere;
	}

	.hero-stat {
		padding: 20px;
	}

	.image-collage {
		grid-template-columns: 1fr;
	}

	.image-collage img,
	.image-collage__main {
		height: 220px !important;
	}

	.application-band {
		min-height: 280px;
		padding: 28px;
	}

	.cta-panel__inner {
		grid-template-columns: 1fr;
	}

	.products-showcase__inner {
		gap: 42px;
		min-height: auto;
		padding: 64px 0;
	}

	.product-visual {
		min-height: 480px;
	}

	.product-visual__main {
		inset: 0;
	}

	.product-visual__specs {
		right: 18px;
		bottom: 18px;
		left: 18px;
		max-width: none;
		justify-content: flex-start;
	}

	body[dir="rtl"] .product-visual__specs {
		right: 18px;
		left: 18px;
	}

	.mini-feature-grid,
	.form-row,
	.service-card-grid,
	.testing-grid,
	.case-grid,
	.about-stats {
		grid-template-columns: 1fr;
	}

	.process-step {
		min-height: 132px;
	}

	.inquiry-form {
		padding: 24px;
	}

	.site-footer__bottom {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 14px;
	}

	.site-footer__inner {
		gap: 30px;
		padding: 46px 0 28px;
	}

	.site-footer__columns {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.site-footer__bottom .company-info-card--footer {
		max-width: none;
		text-align: center;
	}

	body[dir="rtl"] .site-footer__bottom .company-info-card--footer {
		text-align: center;
	}

	.site-footer__columns > div {
		min-width: 0;
	}

	.site-footer h2 {
		margin-bottom: 10px;
		font-size: 14px;
		line-height: 1.25;
	}

	.site-footer ul {
		gap: 8px;
	}

	.site-footer li {
		font-size: 13px;
		line-height: 1.45;
		overflow-wrap: anywhere;
	}

	.footer-legal-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px 12px;
	}

	.social-icons {
		order: -1;
	}
	
	.site-footer__brand .social-icons {
		justify-content: flex-start;
	}

	.image-lightbox {
		padding: 16px;
	}

	.image-lightbox__close {
		top: -42px;
		width: 40px;
		height: 40px;
	}

	.image-lightbox__close svg {
		width: 20px;
		height: 20px;
	}

	.image-lightbox__content img {
		max-height: 80vh;
	}
}

@media (max-width: 420px) {
	.hero__stats {
		grid-template-columns: 1fr;
	}

	.floating-actions {
		position: fixed !important;
		top: auto;
		right: var(--floating-mobile-right, calc(env(safe-area-inset-right, 0px) + 12px));
		bottom: calc(env(safe-area-inset-bottom, 0px) + 76px);
		left: auto !important;
		width: 44px;
		transform: none;
	}

	.floating-action {
		width: 44px;
		height: 44px;
	}

	.floating-action--top {
		height: 30px;
	}

	.floating-message {
		right: 12px;
		bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
		left: 12px;
		max-height: calc(100vh - 84px);
		padding: 0;
	}

	.hero-contact__item,
	body[dir="rtl"] .hero-contact__item {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
		min-height: 74px;
		padding: 16px 0 12px;
	}

	.hero-contact__icon {
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}

	.hero-contact__icon svg {
		width: 19px;
		height: 19px;
	}

	.hero-contact__index {
		top: 10px;
	}

	.hero-contact__label {
		font-size: 11px;
		letter-spacing: 0.14em;
	}

	.hero-contact__value {
		font-size: 15px;
	}

	.hero-contact__note {
		font-size: 12px;
	}

	h1 {
		font-size: 32px;
	}

	.hero__actions {
		display: grid;
	}

	.button {
		width: 100%;
	}
}

.button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-right: 9px;
}

body[dir="rtl"] .button__icon {
	margin-right: 0;
	margin-left: 9px;
}

.button__icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-detail {
	background: #f7f9fc;
}

.product-detail-hero {
	padding: 68px 0 42px;
	color: var(--white);
	background:
		linear-gradient(135deg, rgba(10, 45, 88, 0.98) 0%, rgba(16, 90, 157, 0.96) 54%, rgba(13, 130, 155, 0.94) 100%),
		linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.08) 49%, transparent 50%);
	border-bottom: 1px solid rgba(156, 226, 255, 0.28);
}

.product-detail-hero__inner {
	display: grid;
	gap: 28px;
}

.product-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.product-breadcrumb a {
	color: rgba(255, 255, 255, 0.62);
}

.product-breadcrumb a:hover,
.product-breadcrumb a:focus-visible {
	color: #7de2ff;
	outline: none;
}

.product-breadcrumb strong {
	color: rgba(255, 255, 255, 0.86);
	font-weight: 900;
}

.product-detail-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
	gap: 64px;
	align-items: center;
}

.product-detail-hero h1 {
	margin-bottom: 12px;
	font-size: 52px;
	line-height: 1.08;
}

.product-detail-hero__subtitle {
	margin-bottom: 22px;
	color: #64d6ff;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.18;
}

.product-detail-hero__summary {
	max-width: 690px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
	line-height: 1.72;
}

.product-badge-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 34px;
}

.product-badge-list span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 13px;
	color: #bfefff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
	background: rgba(18, 103, 241, 0.12);
	border: 1px solid rgba(100, 214, 255, 0.24);
	border-radius: 999px;
}

.product-hero-contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	max-width: 620px;
	margin-top: 16px;
	color: rgba(197, 207, 224, 0.68);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.product-hero-contact__link {
	display: inline-flex;
	align-items: baseline;
	gap: 7px;
	color: inherit;
}

.product-hero-contact__link span {
	color: rgba(125, 226, 255, 0.68);
	font-size: 12px;
	font-weight: 900;
}

.product-hero-contact__link strong {
	color: rgba(244, 247, 252, 0.82);
	font-size: 14px;
	font-weight: 800;
	transition: color 180ms ease;
}

.product-hero-contact__link:hover,
.product-hero-contact__link:focus-visible {
	outline: none;
}

.product-hero-contact__link:hover strong,
.product-hero-contact__link:focus-visible strong {
	color: #7de2ff;
}

.product-hero-contact__divider {
	width: 1px;
	height: 14px;
	background: rgba(125, 226, 255, 0.22);
}

.product-detail-hero__media {
	position: relative;
}

.product-detail-hero__media::before {
	position: absolute;
	inset: 28px -22px -22px 22px;
	content: "";
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(156, 226, 255, 0.28);
	border-radius: var(--radius);
}

body[dir="rtl"] .product-detail-hero__media::before {
	inset: 28px 22px -22px -22px;
}

.product-detail-hero__image {
	position: relative;
	aspect-ratio: 4 / 4.2;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
	overflow: hidden;
}

.product-detail-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-quick-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 18px 22px;
	margin-top: 30px;
	background:
		linear-gradient(135deg, rgba(8, 34, 70, 0.62), rgba(16, 90, 157, 0.42)),
		rgba(255, 255, 255, 0.05);
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(14px);
}

.product-quick-stat {
	position: relative;
	min-height: 74px;
	padding: 8px 28px;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.product-quick-stat + .product-quick-stat::before {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 0;
	width: 1px;
	content: "";
	background: linear-gradient(180deg, transparent, rgba(125, 226, 255, 0.22), transparent);
}

.product-quick-stat span {
	display: block;
	margin-bottom: 10px;
	color: rgba(125, 226, 255, 0.76);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
}

.product-quick-stat strong {
	display: block;
	color: rgba(255, 255, 255, 0.92);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.18;
}

.product-overview-section,
.product-features-section,
.product-performance-section,
.product-applications-section,
.product-standards-section,
.product-stats-section,
.product-related-section,
.product-contact-section {
	padding: var(--section) 0;
	background: var(--white);
}

.product-detail .product-overview-section {
	padding-top: 64px;
}

#product-overview,
#product-advantages,
#technical-data,
#product-applications,
#product-packaging,
#product-contact {
	scroll-margin-top: 96px;
}

.product-section-nav {
	position: sticky;
	top: 84px;
	z-index: 20;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: -26px 0 52px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(163, 179, 201, 0.24);
	border-radius: var(--radius);
	box-shadow: 0 18px 42px rgba(10, 31, 68, 0.1);
	backdrop-filter: blur(14px);
}

.product-section-nav__item {
	display: inline-flex;
	flex: 1 1 148px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 14px;
	color: #243f5c;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
	letter-spacing: 0;
	white-space: normal;
	overflow-wrap: anywhere;
	background: transparent;
	border: 0;
	border-radius: 6px;
	transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

body[dir="rtl"] .product-section-nav__item {
	border-right: 0;
}

.product-section-nav__item:hover,
.product-section-nav__item:focus-visible {
	color: var(--blue);
	background: #eef5ff;
	outline: none;
}

.product-section-nav__item--inquiry {
	color: var(--white);
	background: linear-gradient(135deg, var(--blue), #0754cf);
	box-shadow: 0 10px 22px rgba(18, 103, 241, 0.18);
}

.product-section-nav__item--inquiry:hover,
.product-section-nav__item--inquiry:focus-visible {
	color: var(--white);
	background: linear-gradient(135deg, #2177ff, #0754cf);
	box-shadow: 0 12px 26px rgba(18, 103, 241, 0.24);
}

.product-section-nav__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
}

.product-section-nav__icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-overview-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.86fr);
	gap: 76px;
	align-items: center;
}

.product-overview-image {
	aspect-ratio: 1 / 0.78;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.product-overview-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-rich-text {
	color: var(--muted);
}

.product-rich-text p:last-child {
	margin-bottom: 0;
}

.product-mini-table {
	display: grid;
	margin-top: 32px;
	background: #f5f8fc;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.product-mini-table div {
	display: grid;
	grid-template-columns: minmax(120px, 0.46fr) 1fr;
	gap: 16px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--line);
}

.product-mini-table div:last-child {
	border-bottom: 0;
}

.product-mini-table span {
	color: #7890aa;
	font-size: 13px;
	font-weight: 900;
}

.product-mini-table strong {
	color: #1a3553;
	font-size: 14px;
	font-weight: 900;
}

.product-features-section,
.product-applications-section {
	background: #f3f7fb;
}

.product-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.product-feature-card,
.product-application-card,
.product-stat-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 32px rgba(10, 31, 68, 0.08);
}

.product-feature-card {
	padding: 28px 24px 26px;
}

.product-feature-card__icon,
.product-application-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 20px;
	color: var(--blue);
	background: #eef5ff;
	border: 1px solid rgba(18, 103, 241, 0.16);
	border-radius: 8px;
}

.product-feature-card__icon svg,
.product-application-card svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-feature-card h3,
.product-application-card h3,
.product-package-card h3 {
	font-size: 18px;
}

.product-feature-card p,
.product-application-card p,
.product-package-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.68;
}

.product-technical-section {
	padding: var(--section) 0;
	color: var(--white);
	background: #050b17;
}

.product-technical-section .section-heading h2 {
	color: var(--white);
}

.product-technical-table-wrap {
	overflow-x: auto;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.product-technical-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
}

.product-technical-table th,
.product-technical-table td {
	padding: 20px 24px;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body[dir="rtl"] .product-technical-table th,
body[dir="rtl"] .product-technical-table td {
	text-align: right;
}

.product-technical-table th {
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
	background: var(--blue);
}

.product-technical-table td {
	color: rgba(224, 231, 242, 0.72);
	font-size: 15px;
}

.product-technical-table td strong {
	color: #7de2ff;
	font-weight: 900;
}

.product-technical-table tr:last-child td {
	border-bottom: 0;
}

.product-technical-disclaimer {
	margin: 16px 4px 0;
	color: rgba(224, 231, 242, 0.62);
	font-size: 13px;
	line-height: 1.7;
}

.product-performance-section {
	background: #edf4fb;
}

.product-performance-panel {
	display: grid;
	grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
	gap: 58px;
	align-items: center;
	padding: 48px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.product-performance-copy p:not(.eyebrow) {
	margin-bottom: 0;
	color: var(--muted);
}

.product-bar-list {
	display: grid;
	gap: 24px;
}

.product-bar-item__head {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 10px;
	color: #10233c;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.35;
}

.product-bar-item__head span {
	color: var(--blue);
}

.product-bar {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	margin-top: 7px;
}

.product-bar span {
	position: relative;
	display: block;
	height: 12px;
	background: #e2ebf4;
	border-radius: 999px;
	overflow: hidden;
}

.product-bar span::before {
	position: absolute;
	inset: 0 auto 0 0;
	content: "";
	width: var(--primary-width);
	background: linear-gradient(90deg, var(--blue), #5bbcff);
	border-radius: inherit;
}

.product-bar--secondary span::before {
	width: var(--secondary-width);
	background: #becbda;
}

.product-bar em {
	min-width: 96px;
	color: #5f6f83;
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.3;
	text-align: right;
}

body[dir="rtl"] .product-bar span::before {
	right: 0;
	left: auto;
}

body[dir="rtl"] .product-bar em {
	text-align: left;
}

.product-performance-notes {
	grid-column: 1 / -1;
	align-self: stretch;
	display: grid;
	grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
	padding-top: 28px;
	border-top: 1px solid #d9e4ee;
}

.product-performance-notes__head {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	margin-bottom: 0;
}

.product-performance-notes__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: #0d6da8;
	background: #e9f6ff;
	border: 1px solid rgba(13, 109, 168, 0.16);
	border-radius: 50%;
}

.product-performance-notes__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.product-performance-notes h3 {
	margin: 0 0 5px;
	color: #10233c;
	font-size: 18px;
	line-height: 1.35;
}

.product-performance-notes p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}

.product-performance-notes__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
	gap: 18px 32px;
	margin: 0;
}

.product-performance-notes__list div {
	position: relative;
	padding: 0 0 15px 18px;
	border-bottom: 1px solid #e1ebf4;
}

.product-performance-notes__list div::before {
	position: absolute;
	top: 7px;
	left: 0;
	width: 6px;
	height: 6px;
	content: "";
	background: var(--blue);
	border-radius: 50%;
	opacity: 0.72;
}

.product-performance-notes__list dt {
	margin-bottom: 7px;
	color: #10233c;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
}

.product-performance-notes__list dd {
	margin: 0;
	color: #5f6f83;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.65;
}

body[dir="rtl"] .product-performance-notes__list div {
	padding-right: 18px;
	padding-left: 0;
}

body[dir="rtl"] .product-performance-notes__list div::before {
	right: 0;
	left: auto;
}

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

.product-application-card {
	padding: 26px 24px;
}

.product-standards-section {
	background: #eef4f9;
}

.product-standards-inner {
	display: grid;
	grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.product-standards-inner h2 {
	margin-bottom: 0;
}

.product-standard-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

body[dir="rtl"] .product-standard-list {
	justify-content: flex-start;
}

.product-standard-list span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 16px;
	color: #0b6c4c;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
	background: #ecfbf4;
	border: 1px solid rgba(20, 169, 109, 0.22);
	border-radius: 999px;
}

.product-lab-gallery {
	margin-top: 64px;
}

.product-lab-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.product-lab-image {
	margin: 0;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-lab-image:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-lab-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.product-lab-image figcaption {
	padding: 16px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	background: #fff;
}

@media (max-width: 768px) {
	.product-lab-gallery {
		margin-top: 48px;
	}
	
	.product-lab-gallery__grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		gap: 16px;
	}
	
	.product-lab-image img {
		height: 160px;
	}
	
	.product-lab-image figcaption {
		padding: 12px;
		font-size: 13px;
	}
}

.product-package-section {
	padding: var(--section) 0;
	color: var(--white);
	background: #050b17;
}

.product-package-section .section-heading h2 {
	color: var(--white);
}

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

.product-package-card {
	display: flex;
	flex-direction: row;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
	overflow: hidden;
}

.product-package-card__media {
	position: relative;
	flex: 0 0 auto;
	width: 200px;
	margin: 0;
	background: rgba(18, 103, 241, 0.12);
	overflow: hidden;
}

.product-package-card__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(5, 11, 23, 0) 42%, rgba(5, 11, 23, 0.42) 100%);
	pointer-events: none;
}

.product-package-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

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

.product-package-card__body {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 20px;
	flex: 1 1 auto;
}

.product-package-card h3 {
	margin: 0;
	color: var(--white);
	font-size: 20px;
	line-height: 1.25;
}

.product-package-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 15px;
	line-height: 1.72;
}

.product-faq-section {
	padding: var(--section) 0 calc(var(--section) + 28px);
	background: linear-gradient(180deg, #f3f7fb 0%, #ffffff 100%);
}

.product-faq-section .faq-grid {
	align-items: start;
}

.product-faq-section .faq-item {
	border-color: #d8e5f2;
	box-shadow: 0 14px 34px rgba(10, 31, 68, 0.07);
}

.product-stats-section {
	padding: 76px 0;
	color: var(--white);
	background:
		linear-gradient(135deg, rgba(5, 11, 23, 0.98) 0%, rgba(6, 20, 43, 0.98) 56%, rgba(11, 34, 63, 0.98) 100%),
		linear-gradient(90deg, transparent 0, rgba(47, 131, 255, 0.08) 49%, transparent 50%);
	border-top: 1px solid rgba(47, 131, 255, 0.22);
	border-bottom: 1px solid rgba(47, 131, 255, 0.2);
}

.product-stats-panel {
	display: grid;
	grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
	gap: 42px;
	align-items: center;
}

.product-stats-heading h2 {
	margin: 10px 0 0;
	color: var(--white);
	font-size: 32px;
	line-height: 1.18;
}

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

.product-stats-section .product-stat-card {
	padding: 30px 24px;
	text-align: left;
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.13);
	box-shadow: none;
}

.product-stats-section .product-stat-card strong {
	display: block;
	margin-bottom: 8px;
	color: #7de2ff;
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
}

.product-stats-section .product-stat-card strong small {
	font-size: 20px;
	font-weight: 800;
	margin-left: 2px;
}

.product-stats-section .product-stat-card span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
}

.product-related-section {
	background: #f6f9fc;
}

.product-related-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 34px;
}

.product-related-head h2 {
	max-width: 760px;
	margin-bottom: 0;
}

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

.product-related-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 16px 42px rgba(10, 31, 68, 0.08);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-related-card:hover,
.product-related-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(18, 103, 241, 0.26);
	box-shadow: 0 22px 50px rgba(10, 31, 68, 0.12);
}

.product-related-card__media {
	display: block;
	aspect-ratio: 1.6 / 1;
	background: #eaf1f8;
	overflow: hidden;
}

.product-related-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

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

.product-related-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 20px;
}

.product-related-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.product-related-card__badges span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	color: #0c5bd4;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.35;
	background: #eef5ff;
	border: 1px solid rgba(18, 103, 241, 0.14);
	border-radius: 999px;
}

.product-related-card h3 {
	margin-bottom: 6px;
	color: #0e223b;
	font-size: 18px;
	line-height: 1.28;
}

.product-related-card h3 a:hover,
.product-related-card h3 a:focus-visible {
	color: var(--blue);
	outline: none;
}

.product-related-card__subtitle {
	margin-bottom: 10px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.4;
}

.product-related-card__body > p:not(.product-related-card__subtitle) {
	margin-bottom: 22px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.68;
}

.product-related-card__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: auto;
	margin-bottom: 16px;
}

.product-related-card__specs div {
	padding: 10px;
	background: #f5f8fc;
	border: 1px solid #dfe8f2;
	border-radius: 6px;
}

.product-related-card__specs span {
	display: block;
	margin-bottom: 4px;
	color: #7890aa;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.3;
}

.product-related-card__specs strong {
	display: block;
	color: #183653;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
}

.product-related-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.3;
}

.product-related-card__link svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.product-related-card__link:hover,
.product-related-card__link:focus-visible {
	color: var(--blue-2);
	outline: none;
}

.product-related-card__link:hover svg,
.product-related-card__link:focus-visible svg {
	transform: translateX(2px);
}

body[dir="rtl"] .product-related-card__link:hover svg,
body[dir="rtl"] .product-related-card__link:focus-visible svg {
	transform: translateX(-2px);
}

.product-contact-section {
	background: var(--deep);
}

.product-contact-section .contact-copy h2 {
	color: var(--white);
}

.product-contact-section .contact-copy p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.7);
}

.product-contact-section .contact-copy {
	top: 118px;
}

.product-contact-section .contact-mini__item {
	color: rgba(255, 255, 255, 0.88);
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}

.product-contact-section .contact-mini a.contact-mini__item:hover,
.product-contact-section .contact-mini a.contact-mini__item:focus-visible {
	background: rgba(18, 103, 241, 0.12);
	border-color: rgba(125, 226, 255, 0.28);
}

.product-contact-section .contact-mini strong {
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1180px) {
	.product-detail-hero__grid,
	.product-overview-grid,
	.product-performance-panel,
	.product-standards-inner {
		grid-template-columns: 1fr;
	}

	.product-detail-hero__grid {
		gap: 52px;
	}

	.product-detail-hero__media {
		max-width: 560px;
	}

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

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

	.product-stats-panel {
		grid-template-columns: 1fr;
		gap: 28px;
	}

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

	.product-standard-list {
		justify-content: flex-start;
	}
}

@media (max-width: 1023px) {
	.product-section-nav {
		display: flex;
		flex-wrap: nowrap;
		top: 74px;
		margin: -20px 0 38px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.product-section-nav::-webkit-scrollbar {
		display: none;
	}

	.product-section-nav__item {
		flex: 0 0 178px;
		min-height: 62px;
		padding: 0 16px;
		white-space: normal;
	}

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

@media (max-width: 760px) {
	.product-detail-hero {
		padding: 58px 0 42px;
	}

	.product-detail-hero h1 {
		font-size: 36px;
		line-height: 1.16;
	}

	.product-detail-hero__subtitle {
		font-size: 23px;
	}

	.product-detail-hero__summary {
		font-size: 16px;
	}

	.product-hero-contact {
		display: grid;
		gap: 7px;
		margin-top: 14px;
		font-size: 13px;
	}

	.product-hero-contact__link {
		width: fit-content;
		max-width: 100%;
	}

	.product-hero-contact__link strong {
		font-size: 13px;
		overflow-wrap: anywhere;
	}

	.product-hero-contact__divider {
		display: none;
	}

	.product-section-nav {
		top: 68px;
		margin-bottom: 34px;
	}

	.product-section-nav__item {
		flex-basis: 158px;
		min-height: 56px;
		font-size: 13px;
	}

	.product-section-nav__icon,
	.product-section-nav__icon svg {
		width: 18px;
		height: 18px;
	}

	.product-detail-hero__media::before {
		inset: 18px -12px -12px 12px;
	}

	body[dir="rtl"] .product-detail-hero__media::before {
		inset: 18px 12px -12px -12px;
	}

	.product-quick-stats,
	.product-feature-grid,
	.product-application-grid,
	.product-package-grid,
	.product-related-grid {
		grid-template-columns: 1fr;
	}

	.product-quick-stats {
		padding: 10px 20px;
	}

	.product-quick-stat {
		min-height: auto;
		padding: 18px 0;
	}

	.product-quick-stat + .product-quick-stat::before {
		top: 0;
		right: 0;
		bottom: auto;
		left: 0;
		width: auto;
		height: 1px;
		background: linear-gradient(90deg, transparent, rgba(125, 226, 255, 0.2), transparent);
	}

	.product-quick-stat strong {
		font-size: 21px;
	}

	.product-related-head {
		display: grid;
		gap: 18px;
		margin-bottom: 28px;
	}

	.product-faq-section {
		padding: 72px 0 82px;
	}

	.product-stats-section {
		padding: 62px 0;
	}

	.product-stats-heading h2 {
		font-size: 26px;
	}

	.product-stats-section .product-stats-grid {
		grid-template-columns: 1fr;
	}

	.product-stats-section .product-stat-card {
		padding: 26px 22px;
	}

	.product-quick-stat {
		min-height: 82px;
	}

	.product-overview-section,
	.product-features-section,
	.product-performance-section,
	.product-applications-section,
	.product-standards-section,
	.product-related-section,
	.product-contact-section,
	.product-technical-section,
	.product-package-section {
		padding: 72px 0;
	}

	.product-overview-grid {
		gap: 44px;
	}

	.product-mini-table div {
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.product-performance-panel {
		gap: 34px;
		padding: 28px;
	}

	.product-performance-notes {
		grid-template-columns: 1fr;
		gap: 20px;
		padding-top: 24px;
	}

	.product-performance-notes__list {
		grid-template-columns: 1fr;
	}

	.product-bar {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.product-bar em,
	body[dir="rtl"] .product-bar em {
		min-width: 0;
		text-align: left;
	}

	body[dir="rtl"] .product-bar em {
		text-align: right;
	}

	.product-standard-list {
		gap: 10px;
	}

	.product-standard-list span {
		min-height: 36px;
		padding: 0 12px;
		font-size: 12px;
	}

	.product-package-card {
		min-height: auto;
	}
}

@media (max-width: 639px) {
	.product-package-card {
		flex-direction: column;
	}

	.product-package-card__media {
		flex: 0 0 auto;
		width: 100%;
		aspect-ratio: 16 / 9;
	}
}

.product-archive {
	color: var(--ink);
	background: #f7f9fc;
}

.product-archive-hero {
	min-height: var(--banner-page-height);
	color: var(--white);
	background-position: center;
	background-size: cover;
	border-bottom: 1px solid var(--banner-border);
}

.product-archive-hero__inner {
	display: grid;
	align-content: center;
	gap: 36px;
	min-height: var(--banner-page-height);
	padding: 76px 0 68px;
}

.product-archive-breadcrumb {
	margin: 0;
}

.product-archive-hero__copy {
	max-width: 820px;
}

.product-archive-hero__copy h1 {
	margin-bottom: 18px;
	color: var(--white);
	font-size: 56px;
	line-height: 1.08;
	letter-spacing: 0;
}

.product-archive-hero__copy p:not(.eyebrow) {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 18px;
	line-height: 1.78;
}

.product-archive-stats {
	background: #08244a;
	border-bottom: 1px solid rgba(156, 226, 255, 0.16);
}

.product-archive-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.product-archive-stat {
	position: relative;
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 12px 16px;
	min-height: 96px;
	padding: 18px 34px;
}

.product-archive-stat + .product-archive-stat {
	border-left: 1px solid rgba(156, 226, 255, 0.16);
}

body[dir="rtl"] .product-archive-stat + .product-archive-stat {
	border-right: 1px solid rgba(156, 226, 255, 0.16);
	border-left: 0;
}

.product-archive-stat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #2f83ff;
}

.product-archive-stat__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-archive-stat strong {
	display: block;
	color: #2f83ff;
	font-size: 26px;
	font-weight: 900;
	line-height: 1;
}

.product-archive-stat > span:last-child {
	grid-column: 2;
	color: rgba(224, 239, 250, 0.72);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.product-archive-listing {
	padding: 54px 0 96px;
	background: #f7f9fc;
}

.product-archive-toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: 22px;
	align-items: center;
	margin-bottom: 30px;
}

.product-archive-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.product-archive-filters button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	color: #253b56;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-archive-filters button small {
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.product-archive-filters button:hover,
.product-archive-filters button:focus-visible,
.product-archive-filters button.is-active {
	color: var(--white);
	background: var(--blue);
	border-color: var(--blue);
	box-shadow: 0 12px 28px rgba(18, 103, 241, 0.22);
	outline: none;
}

.product-archive-filters button:hover small,
.product-archive-filters button:focus-visible small,
.product-archive-filters button.is-active small {
	color: rgba(255, 255, 255, 0.78);
}

.product-archive-search {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 48px;
	color: var(--muted);
}

.product-archive-search svg {
	position: absolute;
	left: 17px;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
}

body[dir="rtl"] .product-archive-search svg {
	right: 17px;
	left: auto;
}

.product-archive-search input {
	width: 100%;
	min-height: 48px;
	padding: 0 18px 0 48px;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	outline: none;
}

body[dir="rtl"] .product-archive-search input {
	padding: 0 48px 0 18px;
}

.product-archive-search input::placeholder {
	color: rgba(95, 111, 131, 0.58);
}

.product-archive-search input:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(18, 103, 241, 0.12);
}

.product-archive-count {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 26px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
}

.product-archive-count::before {
	display: inline-block;
	width: 4px;
	height: 24px;
	content: "";
	background: var(--blue);
	border-radius: 999px;
}

.product-archive-count strong {
	color: var(--ink);
	font-weight: 900;
}

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

.product-summary-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 32px rgba(10, 31, 68, 0.08);
	overflow: hidden;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-summary-card[hidden] {
	display: none !important;
}

.product-summary-card:hover,
.product-summary-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(18, 103, 241, 0.38);
	box-shadow: 0 20px 48px rgba(10, 31, 68, 0.14);
}

.product-summary-card__media {
	position: relative;
	display: block;
	aspect-ratio: 2.05 / 1;
	background: #f0f5fb;
	overflow: hidden;
}

.product-summary-card__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(7, 20, 33, 0.02) 38%, rgba(7, 20, 33, 0.56) 100%);
	pointer-events: none;
}

.product-summary-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
	transition: transform 240ms ease;
}

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

.product-summary-card__category {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 10px;
	color: var(--white);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	background: var(--blue);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(18, 103, 241, 0.28);
}

body[dir="rtl"] .product-summary-card__category {
	right: auto;
	left: 12px;
}

.product-summary-card__category--densified {
	color: var(--white);
	background: var(--cyan);
	box-shadow: 0 4px 12px rgba(0, 167, 199, 0.28);
}

.product-summary-card__category--special {
	color: var(--white);
	background: #5b6fff;
	box-shadow: 0 4px 12px rgba(91, 111, 255, 0.28);
}

.product-summary-card__category--slurry {
	color: var(--white);
	background: var(--green);
	box-shadow: 0 4px 12px rgba(20, 169, 109, 0.28);
}

.product-summary-card__category--refractory {
	color: var(--white);
	background: var(--amber);
	box-shadow: 0 4px 12px rgba(242, 162, 58, 0.28);
}

.product-summary-card__category--mortar {
	color: var(--white);
	background: var(--green);
	box-shadow: 0 4px 12px rgba(20, 169, 109, 0.28);
}

.product-summary-card__category--coating {
	color: var(--white);
	background: var(--cyan);
	box-shadow: 0 4px 12px rgba(0, 167, 199, 0.28);
}

.product-summary-card__category--functional_coating {
	color: var(--white);
	background: #2f83ff;
	box-shadow: 0 4px 12px rgba(47, 131, 255, 0.28);
}

.product-summary-card__category--insulation {
	color: var(--white);
	background: #5b6fff;
	box-shadow: 0 4px 12px rgba(91, 111, 255, 0.28);
}

.product-summary-card__category--electronics {
	color: var(--white);
	background: #5b6fff;
	box-shadow: 0 4px 12px rgba(91, 111, 255, 0.28);
}

.product-summary-card__category--decorative {
	color: var(--white);
	background: #d64e80;
	box-shadow: 0 4px 12px rgba(214, 78, 128, 0.28);
}

.product-summary-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 18px 16px;
}

.product-summary-card h2 {
	margin-bottom: 3px;
	color: var(--ink);
	font-size: 20px;
	line-height: 1.22;
}

.product-summary-card__subtitle {
	display: -webkit-box;
	margin-bottom: 10px;
	overflow: hidden;
	color: var(--blue);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.28;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.product-summary-card__summary {
	display: -webkit-box;
	margin-bottom: 14px;
	overflow: hidden;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-summary-card__specs {
	display: none;
	gap: 0;
	margin-top: auto;
	margin-bottom: 14px;
	padding: 10px 12px;
	background: #f8fbfe;
	border: 1px solid var(--line);
	border-radius: 6px;
}

.product-summary-card__specs div {
	display: grid;
	grid-template-columns: minmax(70px, 0.74fr) minmax(0, 1fr);
	gap: 12px;
	padding: 5px 0;
}

.product-summary-card__specs span {
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.3;
}

.product-summary-card__specs strong {
	color: var(--ink);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.3;
	text-align: right;
}

body[dir="rtl"] .product-summary-card__specs strong {
	text-align: left;
}

.product-summary-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	max-height: 54px;
	margin-bottom: 12px;
	overflow: hidden;
}

.product-summary-card__tags span {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 8px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.25;
	background: #eef5ff;
	border: 1px solid rgba(18, 103, 241, 0.22);
	border-radius: 6px;
}

.product-summary-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 40px;
	margin-top: auto;
	color: var(--blue);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
	background: #eef5ff;
	border: 1px solid rgba(18, 103, 241, 0.28);
	border-radius: 6px;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-summary-card__link svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.product-summary-card__link:hover,
.product-summary-card__link:focus-visible {
	color: var(--white);
	background: var(--blue);
	border-color: var(--blue);
	outline: none;
}

.product-summary-card__link:hover svg,
.product-summary-card__link:focus-visible svg {
	transform: translateX(2px);
}

body[dir="rtl"] .product-summary-card__link:hover svg,
body[dir="rtl"] .product-summary-card__link:focus-visible svg {
	transform: translateX(-2px);
}

.product-archive-empty {
	margin: 42px 0 0;
	padding: 28px;
	color: var(--muted);
	font-weight: 800;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.product-archive-cta {
	padding: 62px 0;
	color: var(--white);
	background-position: center;
	background-size: cover;
	border-top: 1px solid var(--banner-border);
}

.product-archive-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 42px;
	align-items: center;
	padding: 40px 46px;
	background: var(--banner-panel-bg);
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	backdrop-filter: blur(10px);
}

.product-archive-cta h2 {
	max-width: 680px;
	margin-bottom: 12px;
	color: var(--white);
	font-size: 34px;
	line-height: 1.18;
}

.product-archive-cta p:not(.eyebrow) {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	line-height: 1.72;
}

.product-archive-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

@media (max-width: 1180px) {
	.product-summary-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.product-archive-toolbar,
	.product-archive-cta__inner {
		grid-template-columns: 1fr;
	}

	.product-archive-cta__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 920px) {
	.product-archive-stats__grid,
	.product-summary-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-archive-stat:nth-child(odd) {
		border-left: 0;
	}

	.product-archive-stat:nth-child(n+3) {
		border-top: 1px solid rgba(156, 226, 255, 0.16);
	}
}

@media (max-width: 760px) {
	.product-archive-hero,
	.product-archive-hero__inner {
		min-height: var(--banner-mobile-height);
	}

	.product-archive-hero__inner {
		gap: 28px;
		padding: 58px 0 46px;
	}

	.product-archive-hero__copy h1 {
		font-size: 38px;
		line-height: 1.15;
	}

	.product-archive-hero__copy p:not(.eyebrow) {
		font-size: 16px;
	}

	.product-archive-listing {
		padding: 38px 0 72px;
	}

	.product-archive-toolbar {
		gap: 16px;
		margin-bottom: 24px;
	}

	.product-archive-filters {
		flex-wrap: nowrap;
		margin-right: -16px;
		padding-right: 16px;
		overflow-x: auto;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	body[dir="rtl"] .product-archive-filters {
		margin-right: 0;
		margin-left: -16px;
		padding-right: 0;
		padding-left: 16px;
	}

	.product-archive-filters::-webkit-scrollbar {
		display: none;
	}

	.product-archive-filters button {
		flex: 0 0 auto;
		min-height: 42px;
		padding: 0 14px;
		font-size: 13px;
	}

	.product-archive-stats__grid,
	.product-summary-grid {
		grid-template-columns: 1fr;
	}

	.product-archive-stat,
	.product-archive-stat + .product-archive-stat,
	.product-archive-stat:nth-child(n+3) {
		min-height: 82px;
		padding: 16px 22px;
		border-left: 0;
		border-top: 1px solid rgba(156, 226, 255, 0.16);
	}

	body[dir="rtl"] .product-archive-stat,
	body[dir="rtl"] .product-archive-stat + .product-archive-stat {
		border-right: 0;
	}

	.product-archive-stat:first-child {
		border-top: 0;
	}

	.product-summary-card__body {
		padding: 18px 16px 16px;
	}

	.product-summary-card__specs div {
		grid-template-columns: minmax(78px, 0.58fr) minmax(0, 1fr);
	}

	.product-archive-cta {
		padding: 48px 0;
	}

	.product-archive-cta__inner {
		gap: 30px;
		padding: 30px 24px;
	}

	.product-archive-cta h2 {
		font-size: 27px;
	}

	.product-archive-cta__actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}
}

.solution-archive {
	color: var(--ink);
	background: #f7f9fc;
}

.solution-archive-hero {
	position: relative;
	min-height: var(--banner-page-height);
	padding: 76px 0 68px;
	color: var(--white);
	background-position: center;
	background-size: cover;
	border-bottom: 1px solid var(--banner-border);
}

.solution-archive-hero__inner {
	display: grid;
	gap: 36px;
}

.solution-archive-breadcrumb {
	margin: 0;
}

.solution-archive-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
	gap: 56px;
	align-items: end;
}

.solution-archive-hero__copy {
	max-width: 780px;
	transform: none;
}

.solution-archive-hero__copy .eyebrow {
	margin-top: 0;
}

.solution-archive-hero__copy h1 {
	max-width: 780px;
	margin: 0 0 20px;
	color: var(--white);
	font-size: 56px;
	line-height: 1.08;
	letter-spacing: 0;
}

.solution-archive-hero__copy p:not(.eyebrow) {
	max-width: 700px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
	line-height: 1.78;
}

.solution-archive-hero__copy .hero__actions {
	margin-top: 34px;
}

.solution-archive-flow {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 16px;
	background: var(--banner-panel-bg);
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(14px);
}

.solution-archive-flow__item {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	min-height: 112px;
	padding: 18px 16px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 6px;
}

.solution-archive-flow__item span {
	color: #7de2ff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
}

.solution-archive-flow__item strong {
	display: block;
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	line-height: 1.28;
}

.solution-archive-flow__item p {
	margin: 6px 0 0;
	color: rgba(224, 239, 250, 0.7);
	font-size: 13px;
	line-height: 1.55;
}

.solution-archive-stats {
	background: #08244a;
	border-bottom: 1px solid rgba(156, 226, 255, 0.16);
}

.solution-archive-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.solution-archive-stat {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 12px 16px;
	min-height: 96px;
	padding: 18px 34px;
}

.solution-archive-stat + .solution-archive-stat {
	border-left: 1px solid rgba(156, 226, 255, 0.16);
}

body[dir="rtl"] .solution-archive-stat + .solution-archive-stat {
	border-right: 1px solid rgba(156, 226, 255, 0.16);
	border-left: 0;
}

.solution-archive-stat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #2f83ff;
}

.solution-archive-stat__icon svg,
.solution-industry-card__icon svg,
.solution-industry-card button svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.solution-archive-stat strong {
	display: block;
	color: #2f83ff;
	font-size: 26px;
	font-weight: 900;
	line-height: 1;
}

.solution-archive-stat > span:last-child {
	grid-column: 2;
	color: rgba(224, 239, 250, 0.72);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.solution-archive-listing {
	padding: 54px 0 96px;
	background: #f7f9fc;
}

.solution-archive-toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: 22px;
	align-items: center;
	margin-bottom: 30px;
}

.solution-archive-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.solution-archive-filters button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	color: #253b56;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solution-archive-filters button small {
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.solution-archive-filters button:hover,
.solution-archive-filters button:focus-visible,
.solution-archive-filters button.is-active {
	color: var(--white);
	background: var(--blue);
	border-color: var(--blue);
	box-shadow: 0 12px 28px rgba(18, 103, 241, 0.22);
	outline: none;
}

.solution-archive-filters button:hover small,
.solution-archive-filters button:focus-visible small,
.solution-archive-filters button.is-active small {
	color: rgba(255, 255, 255, 0.78);
}

.solution-archive-search {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 48px;
	color: var(--muted);
}

.solution-archive-search svg {
	position: absolute;
	left: 17px;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
}

body[dir="rtl"] .solution-archive-search svg {
	right: 17px;
	left: auto;
}

.solution-archive-search input {
	width: 100%;
	min-height: 48px;
	padding: 0 18px 0 48px;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	outline: none;
}

body[dir="rtl"] .solution-archive-search input {
	padding: 0 48px 0 18px;
}

.solution-archive-search input::placeholder {
	color: rgba(95, 111, 131, 0.58);
}

.solution-archive-search input:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(18, 103, 241, 0.12);
}

.solution-archive-count {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 26px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
}

.solution-archive-count::before {
	display: inline-block;
	width: 4px;
	height: 24px;
	content: "";
	background: var(--blue);
	border-radius: 999px;
}

.solution-archive-count strong {
	color: var(--ink);
	font-weight: 900;
}

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

.solution-archive-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 32px rgba(10, 31, 68, 0.08);
	overflow: hidden;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solution-archive-card[hidden] {
	display: none !important;
}

.solution-archive-card:hover,
.solution-archive-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(18, 103, 241, 0.38);
	box-shadow: 0 20px 48px rgba(10, 31, 68, 0.14);
}

.solution-archive-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1.9 / 1;
	background: #f0f5fb;
	overflow: hidden;
}

.solution-archive-card__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(7, 20, 33, 0.02) 38%, rgba(7, 20, 33, 0.56) 100%);
	pointer-events: none;
}

.solution-archive-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
	transition: transform 240ms ease;
}

.solution-archive-card:hover .solution-archive-card__media img,
.solution-archive-card:focus-within .solution-archive-card__media img {
	transform: scale(1.035);
}

.solution-archive-card__category {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	color: var(--white);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	background: var(--blue);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(18, 103, 241, 0.28);
}

body[dir="rtl"] .solution-archive-card__category {
	right: auto;
	left: 14px;
}

.solution-archive-card__category--refractory {
	color: var(--white);
	background: var(--amber);
	box-shadow: 0 4px 12px rgba(242, 162, 58, 0.28);
}

.solution-archive-card__category--mortar {
	color: var(--white);
	background: var(--green);
	box-shadow: 0 4px 12px rgba(20, 169, 109, 0.28);
}

.solution-archive-card__category--coating {
	color: var(--white);
	background: var(--cyan);
	box-shadow: 0 4px 12px rgba(0, 167, 199, 0.28);
}

.solution-archive-card__category--functional_coating {
	color: var(--white);
	background: #2f83ff;
	box-shadow: 0 4px 12px rgba(47, 131, 255, 0.28);
}

.solution-archive-card__category--insulation {
	color: var(--white);
	background: #5b6fff;
	box-shadow: 0 4px 12px rgba(91, 111, 255, 0.28);
}

.solution-archive-card__category--electronics {
	color: var(--white);
	background: #5b6fff;
	box-shadow: 0 4px 12px rgba(91, 111, 255, 0.28);
}

.solution-archive-card__category--decorative {
	color: var(--white);
	background: #d64e80;
	box-shadow: 0 4px 12px rgba(214, 78, 128, 0.28);
}

.solution-archive-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 24px 22px;
}

.solution-archive-card__eyebrow {
	margin: 0 0 9px;
	color: var(--blue);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.3;
	text-transform: uppercase;
}

.solution-archive-card h2 {
	margin: 0;
	color: var(--ink);
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: 0;
}

.solution-archive-card__summary {
	margin: 15px 0 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.68;
}

.solution-archive-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 20px 0 0;
}

.solution-archive-card__tags span {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 9px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	background: #eef5ff;
	border: 1px solid rgba(18, 103, 241, 0.22);
	border-radius: 6px;
}

.solution-archive-card__notes {
	display: none; /* 隐藏关键关注点 */
	margin-top: 18px;
	padding: 16px;
	background: rgba(3, 13, 29, 0.52);
	border: 1px solid rgba(125, 226, 255, 0.08);
	border-radius: 6px;
}

.solution-archive-card__notes strong {
	display: block;
	margin-bottom: 8px;
	color: rgba(244, 247, 252, 0.82);
	font-size: 13px;
	line-height: 1.3;
}

.solution-archive-card__notes ul {
	display: grid;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.solution-archive-card__notes li {
	position: relative;
	padding-left: 14px;
	color: rgba(197, 207, 224, 0.62);
	font-size: 13px;
	line-height: 1.45;
}

body[dir="rtl"] .solution-archive-card__notes li {
	padding-right: 14px;
	padding-left: 0;
}

.solution-archive-card__notes li::before {
	position: absolute;
	top: 0.64em;
	left: 0;
	width: 5px;
	height: 5px;
	content: "";
	background: #2f83ff;
	border-radius: 50%;
}

body[dir="rtl"] .solution-archive-card__notes li::before {
	right: 0;
	left: auto;
}

.solution-archive-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 44px;
	margin-top: 22px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	background: #eef5ff;
	border: 1px solid rgba(18, 103, 241, 0.28);
	border-radius: 6px;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.solution-archive-card__link svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.solution-archive-card__link:hover,
.solution-archive-card__link:focus-visible {
	color: var(--white);
	background: var(--blue);
	border-color: var(--blue);
	outline: none;
}

.solution-archive-card__link:hover svg,
.solution-archive-card__link:focus-visible svg {
	transform: translateX(2px);
}

body[dir="rtl"] .solution-archive-card__link:hover svg,
body[dir="rtl"] .solution-archive-card__link:focus-visible svg {
	transform: translateX(-2px);
}

.solution-archive-empty {
	margin: 42px 0 0;
	padding: 28px;
	color: var(--muted);
	font-weight: 800;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.solution-archive-industries {
	padding: 96px 0;
	background: #f4f8fd;
}

.solution-archive-industries .section-heading {
	max-width: 820px;
	margin: 0 auto 44px;
	text-align: center;
}

.solution-archive-industries .section-heading h2 {
	margin: 0;
	color: #091a31;
	font-size: 42px;
	line-height: 1.16;
	letter-spacing: 0;
}

.solution-archive-industries .section-heading p:not(.eyebrow) {
	max-width: 720px;
	margin: 14px auto 0;
	color: #66778b;
	font-size: 16px;
	line-height: 1.72;
}

.solution-industry-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.solution-industry-card {
	display: flex;
	flex-direction: column;
	min-height: 258px;
	padding: 28px;
	background: var(--white);
	border: 1px solid #dce7f2;
	border-radius: var(--radius);
	box-shadow: 0 16px 44px rgba(12, 32, 64, 0.07);
}

.solution-industry-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--blue);
	background: #edf5ff;
	border: 1px solid #d8e9ff;
	border-radius: var(--radius);
}

.solution-industry-card h3 {
	margin: 22px 0 0;
	color: #10243d;
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: 0;
}

.solution-industry-card p {
	margin: 12px 0 0;
	color: #65778c;
	font-size: 14px;
	line-height: 1.7;
}

.solution-industry-card button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin-top: auto;
	padding: 0;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.solution-industry-card button svg {
	width: 16px;
	height: 16px;
	transition: transform 180ms ease;
}

.solution-industry-card button:hover,
.solution-industry-card button:focus-visible {
	color: var(--blue-2);
	outline: none;
}

.solution-industry-card button:hover svg,
.solution-industry-card button:focus-visible svg {
	transform: translateX(2px);
}

body[dir="rtl"] .solution-industry-card button:hover svg,
body[dir="rtl"] .solution-industry-card button:focus-visible svg {
	transform: translateX(-2px);
}

.solution-archive-cta {
	padding: 62px 0;
	color: var(--white);
	background-position: center;
	background-size: cover;
	border-top: 1px solid var(--banner-border);
}

.solution-archive-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 42px;
	align-items: center;
	padding: 40px 46px;
	background: var(--banner-panel-bg);
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	backdrop-filter: blur(10px);
}

.solution-archive-cta h2 {
	max-width: 700px;
	margin: 0 0 12px;
	color: var(--white);
	font-size: 34px;
	line-height: 1.18;
	letter-spacing: 0;
}

.solution-archive-cta p:not(.eyebrow) {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	line-height: 1.72;
}

.solution-archive-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

@media (max-width: 1180px) {
	.solution-archive-hero__grid,
	.solution-archive-toolbar,
	.solution-archive-cta__inner {
		grid-template-columns: 1fr;
	}

	.solution-archive-hero__grid {
		gap: 44px;
	}

	.solution-archive-flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 760px;
	}

	.solution-archive-cta__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 920px) {
	.solution-archive-stats__grid,
	.solution-industry-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.solution-archive-stat:nth-child(odd) {
		border-left: 0;
	}

	.solution-archive-stat:nth-child(n+3) {
		border-top: 1px solid rgba(156, 226, 255, 0.16);
	}

	.solution-archive-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.solution-archive-hero {
		min-height: var(--banner-mobile-height);
		padding: 58px 0 46px;
	}

	.solution-archive-hero__inner {
		gap: 28px;
	}

	.solution-archive-hero__copy h1 {
		font-size: 38px;
		line-height: 1.15;
	}

	.solution-archive-hero__copy p:not(.eyebrow) {
		font-size: 16px;
	}

	.solution-archive-flow,
	.solution-archive-stats__grid,
	.solution-industry-grid {
		grid-template-columns: 1fr;
	}

	.solution-archive-flow__item {
		min-height: auto;
	}

	.solution-archive-listing {
		padding: 38px 0 72px;
	}

	.solution-archive-toolbar {
		gap: 16px;
		margin-bottom: 24px;
	}

	.solution-archive-filters {
		flex-wrap: nowrap;
		margin-right: -16px;
		padding-right: 16px;
		overflow-x: auto;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	body[dir="rtl"] .solution-archive-filters {
		margin-right: 0;
		margin-left: -16px;
		padding-right: 0;
		padding-left: 16px;
	}

	.solution-archive-filters::-webkit-scrollbar {
		display: none;
	}

	.solution-archive-filters button {
		flex: 0 0 auto;
		min-height: 42px;
		padding: 0 14px;
		font-size: 13px;
	}

	.solution-archive-stat,
	.solution-archive-stat + .solution-archive-stat,
	.solution-archive-stat:nth-child(n+3) {
		min-height: 82px;
		padding: 16px 22px;
		border-left: 0;
		border-top: 1px solid rgba(156, 226, 255, 0.16);
	}

	body[dir="rtl"] .solution-archive-stat,
	body[dir="rtl"] .solution-archive-stat + .solution-archive-stat {
		border-right: 0;
	}

	.solution-archive-stat:first-child {
		border-top: 0;
	}

	.solution-archive-card__body {
		padding: 20px 18px 18px;
	}

	.solution-archive-card h2 {
		font-size: 20px;
	}

	.solution-archive-industries {
		padding: 72px 0;
	}

	.solution-archive-industries .section-heading h2 {
		font-size: 30px;
	}

	.solution-industry-card {
		min-height: auto;
		padding: 24px;
	}

	.solution-archive-cta {
		padding: 48px 0;
	}

	.solution-archive-cta__inner {
		gap: 30px;
		padding: 30px 24px;
	}

	.solution-archive-cta h2 {
		font-size: 27px;
	}

	.solution-archive-cta__actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}
}

.case-archive {
	color: var(--ink); /* #071421 */
	background: #f7f9fc; /* 统一的浅色背景 */
}

.case-archive-hero {
	position: relative;
	min-height: var(--banner-page-height);
	padding: 76px 0 68px;
	background-position: center;
	background-size: cover;
	border-bottom: 1px solid var(--banner-border);
}

.case-archive-hero__inner {
	display: grid;
	gap: 36px;
}

.case-archive-breadcrumb {
	color: rgba(255, 255, 255, 0.7);
}

.case-archive-breadcrumb a,
.case-archive-breadcrumb strong {
	color: inherit;
}

.case-archive-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
	gap: 68px;
	align-items: end;
}

.case-archive-hero__copy {
	max-width: 780px;
}

.case-archive-hero__copy h1 {
	margin: 0;
	color: var(--white);
	font-size: 56px;
	line-height: 1.08;
	letter-spacing: 0;
}

.case-archive-hero__copy > strong {
	display: block;
	margin-top: 16px;
	color: rgba(104, 216, 255, 0.86);
	font-size: 24px;
	line-height: 1.32;
}

.case-archive-hero__copy p:not(.eyebrow) {
	max-width: 700px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 18px;
	line-height: 1.78;
}

.case-archive-hero__copy .hero__actions {
	margin-top: 34px;
}

.case-archive-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.case-archive-hero-stat {
	display: grid;
	justify-items: start;
	gap: 10px;
	min-height: 150px;
	padding: 24px;
	background: var(--banner-panel-bg);
	backdrop-filter: blur(10px);
}

.case-archive-hero-stat span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: #68d8ff;
	background: rgba(47, 131, 255, 0.12);
	border: 1px solid rgba(104, 216, 255, 0.24);
	border-radius: 8px;
}

.case-archive-hero-stat svg,
.case-archive-search svg,
.case-archive-card__link svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.case-archive-hero-stat strong {
	color: #2f83ff;
	font-size: 34px;
	line-height: 1;
}

.case-archive-hero-stat small {
	color: rgba(224, 239, 250, 0.72);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
}

.case-archive-listing {
	padding: 46px 0 96px;
	background: #f7f9fc; /* 移除深色渐变，使用统一浅色 */
}

.case-archive-toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: 20px;
	align-items: center;
	margin-bottom: 22px;
}

.case-archive-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.case-archive-filters button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 15px;
	color: #253b56;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-archive-filters button small {
	color: var(--blue);
	font-size: 11px;
}

.case-archive-filters button:hover,
.case-archive-filters button:focus-visible {
	background: #eef5ff;
	border-color: var(--blue);
	box-shadow: 0 4px 12px rgba(18, 103, 241, 0.12);
	outline: none;
}

.case-archive-filters button.is-active {
	color: var(--white);
	background: var(--blue);
	border-color: var(--blue);
	box-shadow: 0 6px 16px rgba(18, 103, 241, 0.24);
	outline: none;
}

.case-archive-filters button.is-active small {
	color: rgba(255, 255, 255, 0.92);
}

.case-archive-search {
	position: relative;
	display: block;
}

.case-archive-search svg {
	position: absolute;
	top: 50%;
	left: 16px;
	width: 18px;
	height: 18px;
	color: var(--muted);
	transform: translateY(-50%);
}

body[dir="rtl"] .case-archive-search svg {
	right: 16px;
	left: auto;
}

.case-archive-search input {
	width: 100%;
	min-height: 44px;
	padding: 0 16px 0 46px;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	outline: none;
}

body[dir="rtl"] .case-archive-search input {
	padding: 0 46px 0 16px;
}

.case-archive-search input::placeholder {
	color: rgba(95, 111, 131, 0.58);
}

.case-archive-search input:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(18, 103, 241, 0.12);
}

.case-archive-count {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 34px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
}

.case-archive-count::before,
.case-archive-section-heading span {
	display: inline-block;
	width: 4px;
	height: 18px;
	content: "";
	background: var(--blue);
	border-radius: 3px;
}

.case-archive-count strong {
	color: var(--blue);
}

.case-archive-section-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
}

.case-archive-section-heading h2 {
	margin: 0;
	color: #10233c;
	font-size: 20px;
	line-height: 1.3;
}

.case-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	margin-top: 6px;
	gap: 22px;
}

.case-archive-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 32px rgba(10, 31, 68, 0.08);
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.case-archive-card[hidden] {
	display: none !important;
}

.case-archive-card:hover,
.case-archive-card:focus-within {
	border-color: var(--blue);
	box-shadow: 0 16px 48px rgba(10, 31, 68, 0.14);
	transform: translateY(-4px);
}

.case-archive-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	min-height: 0;
	overflow: hidden;
	background: #f0f5fb;
}

.case-archive-card__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(180deg, rgba(247, 249, 252, 0.02), rgba(247, 249, 252, 0.24)),
		linear-gradient(90deg, rgba(18, 103, 241, 0.08), transparent 44%);
}

.case-archive-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 320ms ease;
}

.case-archive-card:hover .case-archive-card__media img,
.case-archive-card:focus-within .case-archive-card__media img {
	transform: scale(1.06);
}

.case-archive-card__category {
	position: absolute;
	z-index: 1;
	top: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 11px;
	color: var(--white);
	background: var(--blue);
	border: none;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
}

body[dir="rtl"] .case-archive-card__category {
	right: 16px;
	left: auto;
}

.case-archive-card__category--refractory {
	background: var(--amber);
}

.case-archive-card__category--mortar {
	background: var(--green);
}

.case-archive-card__category--coating {
	background: var(--cyan);
}

.case-archive-card__category--functional_coating {
	background: #2f83ff;
}

.case-archive-card__category--insulation {
	background: #5b6fff;
}

.case-archive-card__category--electronics {
	background: #5b6fff;
}

.case-archive-card__category--decorative {
	background: #d64e80;
}

.case-archive-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
}

.case-archive-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
}

.case-archive-card__eyebrow {
	margin: 0;
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.3;
}

.case-archive-card h2 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 0;
	color: var(--ink);
	font-size: 20px;
	line-height: 1.3;
}

.case-archive-card h2 a {
	color: inherit;
	transition: color 180ms ease;
}

.case-archive-card h2 a:hover,
.case-archive-card h2 a:focus-visible {
	color: var(--blue);
}

.case-archive-card__summary {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.72;
}

.case-archive-card__metrics {
	display: none;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 8px;
	overflow: hidden;
	background: #f3f7fb;
	border: 1px solid var(--line);
	border-radius: 6px;
}

.case-archive-card__metrics div {
	display: grid;
	gap: 5px;
	min-height: 70px;
	padding: 12px 10px;
	background: var(--white);
}

.case-archive-card__metrics strong {
	color: var(--blue);
	font-size: 16px;
	line-height: 1.1;
	white-space: normal;
}

.case-archive-card__metrics span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.3;
}

.case-archive-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	margin-top: auto;
	padding: 8px 14px;
	color: var(--blue);
	background: #eef5ff;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	transition: background 180ms ease, color 180ms ease;
}

.case-archive-card__link svg {
	width: 17px;
	height: 17px;
	transition: transform 180ms ease;
}

.case-archive-card__link:hover,
.case-archive-card__link:focus-visible {
	color: var(--white);
	background: var(--blue);
	outline: none;
}

.case-archive-card__link:hover svg,
.case-archive-card__link:focus-visible svg {
	transform: translateX(4px);
}

body[dir="rtl"] .case-archive-card__link:hover svg,
body[dir="rtl"] .case-archive-card__link:focus-visible svg {
	transform: translateX(-4px);
}

.case-archive-empty {
	margin: 34px 0 0;
	padding: 18px 20px;
	color: var(--muted);
	text-align: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.case-archive-insight {
	padding: 92px 0;
	color: var(--ink);
	background: #f4f8fc;
}

.case-archive-insight__inner {
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	gap: 58px;
	align-items: start;
}

.case-archive-insight__copy {
	position: sticky;
	top: 130px;
}

.case-archive-insight__copy h2 {
	max-width: 600px;
	margin: 0;
	color: #10233c;
	font-size: 42px;
	line-height: 1.16;
}

.case-archive-insight__copy p:not(.eyebrow) {
	max-width: 620px;
	margin: 22px 0 0;
	color: var(--muted);
	line-height: 1.75;
}

.case-archive-insight__grid {
	display: grid;
	gap: 18px;
}

.case-archive-insight-card {
	display: grid;
	grid-template-columns: 58px 1fr;
	grid-template-rows: auto auto;
	gap: 20px;
	padding: 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 14px 36px rgba(10, 31, 68, 0.08);
}

.case-archive-insight-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	grid-row: 1 / 3;
	color: var(--blue);
	background: #eef5ff;
	border: 1px solid #d8e8ff;
	border-radius: 8px;
	font-weight: 900;
	line-height: 1;
}

.case-archive-insight-card h3 {
	margin: 0 0 6px;
	color: #10233c;
	font-size: 20px;
	line-height: 1.3;
	word-break: keep-all;
	grid-column: 2;
	grid-row: 1;
}

.case-archive-insight-card p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.68;
	grid-column: 2;
	grid-row: 2;
}

.case-archive-cta {
	padding: 82px 0;
	color: var(--white);
	background-position: center;
	background-size: cover;
}

.case-archive-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 46px;
	align-items: center;
	padding: 40px 46px;
	background: var(--banner-panel-bg);
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	backdrop-filter: blur(10px);
}

.case-archive-cta h2 {
	max-width: 720px;
	margin: 0;
	color: var(--white);
	font-size: 38px;
	line-height: 1.2;
}

.case-archive-cta p:not(.eyebrow) {
	max-width: 720px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.7;
}

.case-archive-cta__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
}

@media (max-width: 1180px) {
	.case-archive-hero__grid,
	.case-archive-toolbar,
	.case-archive-insight__inner,
	.case-archive-cta__inner {
		grid-template-columns: 1fr;
	}

	.case-archive-hero__stats {
		max-width: 760px;
	}

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

	.case-archive-insight__copy {
		position: static;
	}

	.case-archive-cta__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 760px) {
	.case-archive-hero {
		min-height: var(--banner-mobile-height);
		padding: 58px 0 46px;
	}

	.case-archive-hero__inner {
		gap: 28px;
	}

	.case-archive-hero__copy h1 {
		font-size: 42px;
	}

	.case-archive-hero__copy > strong {
		font-size: 20px;
	}

	.case-archive-hero__copy p:not(.eyebrow) {
		font-size: 16px;
	}

	.case-archive-hero__stats,
	.case-archive-grid,
	.case-archive-card__metrics,
	.case-archive-insight-card {
		grid-template-columns: 1fr;
	}

	.case-archive-hero__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: none;
	}

	.case-archive-hero-stat {
		justify-items: center;
		gap: 7px;
		min-height: auto;
		padding: 14px 10px;
		text-align: center;
	}

	.case-archive-hero-stat span {
		width: 32px;
		height: 32px;
		border-radius: 7px;
	}

	.case-archive-hero-stat svg {
		width: 16px;
		height: 16px;
	}

	.case-archive-hero-stat strong {
		font-size: 28px;
	}

	.case-archive-hero-stat small {
		font-size: 12px;
		line-height: 1.25;
	}

	.case-archive-listing {
		padding: 34px 0 72px;
	}

	.case-archive-filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		margin: 0 -24px;
		padding: 0 24px 8px;
		scrollbar-width: none;
	}

	body[dir="rtl"] .case-archive-filters {
		margin: 0 -24px;
		padding: 0 24px 8px;
	}

	.case-archive-filters::-webkit-scrollbar {
		display: none;
	}

	.case-archive-filters button {
		flex: 0 0 auto;
	}

	.case-archive-card__body {
		padding: 22px;
	}

	.case-archive-card h2 {
		font-size: 21px;
	}

	.case-archive-insight {
		padding: 68px 0;
	}

	.case-archive-insight__copy h2 {
		font-size: 30px;
	}

	.case-archive-cta {
		padding: 66px 0;
	}

	.case-archive-cta__inner {
		gap: 30px;
	}

	.case-archive-cta h2 {
		font-size: 28px;
	}

	.case-archive-cta__actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}
}

@media (max-width: 390px) {
	.case-archive-hero-stat {
		padding: 12px 7px;
	}

	.case-archive-hero-stat span {
		width: 30px;
		height: 30px;
	}

	.case-archive-hero-stat strong {
		font-size: 25px;
	}

	.case-archive-hero-stat small {
		font-size: 11px;
	}
}

.solution-template {
	background: #f5f8fc;
}

.solution-template-hero {
	position: relative;
	min-height: var(--banner-detail-height);
	padding: 76px 0 56px;
	color: var(--white);
	background-position: center;
	background-size: cover;
}

.solution-template-hero__inner {
	display: grid;
	align-content: end;
	min-height: calc(var(--banner-detail-height) - 132px);
}

.solution-template-breadcrumb {
	margin-bottom: auto;
	color: rgba(255, 255, 255, 0.76);
}

.solution-template-breadcrumb a,
.solution-template-breadcrumb strong {
	color: inherit;
}

.solution-template-hero__copy {
	width: min(820px, 100%);
	padding-top: 34px;
}

.solution-template-hero__copy h1 {
	max-width: 760px;
	margin: 0;
	color: var(--white);
	font-size: 56px;
	line-height: 1.08;
	letter-spacing: 0;
}

.solution-template-hero__copy p:not(.eyebrow) {
	max-width: 700px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
	line-height: 1.78;
}

.solution-template-hero__chips {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 42px;
}

.solution-template-hero__chips span {
	display: flex;
	align-items: center;
	min-height: 62px;
	padding: 14px 16px;
	color: rgba(255, 255, 255, 0.88);
	background: var(--banner-panel-bg);
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	backdrop-filter: blur(14px);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.45;
}

.solution-template-section,
.solution-template-overview {
	padding: 96px 0;
}

.solution-template-section--light,
.solution-template-overview,
.solution-contact-section {
	background: #f4f8fd;
}

.solution-template-section--dark {
	color: var(--white);
	background: #07142a;
}

.solution-template .section-heading {
	max-width: 840px;
	margin: 0 auto 48px;
	text-align: center;
}

.solution-template .section-heading h2,
.solution-template-overview h2,
.solution-selection-copy h2,
.solution-related-head h2,
.solution-faq-copy h2,
.solution-contact-copy h2 {
	margin-top: 0;
	color: #091a31;
	font-size: 42px;
	line-height: 1.16;
	letter-spacing: 0;
}

.solution-template-section--dark .section-heading h2 {
	color: var(--white);
}

.solution-template .section-heading p:not(.eyebrow) {
	max-width: 720px;
	margin: 14px auto 0;
	color: #66778b;
	font-size: 16px;
	line-height: 1.72;
}

.solution-template-section--dark .section-heading p:not(.eyebrow) {
	color: rgba(224, 235, 248, 0.74);
}

.solution-template-overview__inner {
	display: grid;
	grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
	gap: 58px;
	padding: 42px;
	background: var(--white);
	border: 1px solid #dce7f2;
	border-radius: var(--radius);
	box-shadow: 0 20px 50px rgba(12, 32, 64, 0.08);
}

.solution-article-section {
	padding: 78px 0 88px;
	background: #f7f9fc;
}

.solution-article-layout {
	align-items: start;
}

.solution-article-body h2:first-child {
	margin-top: 0;
}

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

.solution-challenge-card {
	display: grid;
	min-height: 252px;
	padding: 28px 24px;
	background: var(--white);
	border: 1px solid #dce7f2;
	border-radius: var(--radius);
	box-shadow: 0 16px 44px rgba(12, 32, 64, 0.07);
}

.solution-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--blue);
	background: #edf5ff;
	border: 1px solid #d8e9ff;
	border-radius: var(--radius);
}

.solution-card-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.solution-challenge-card small,
.solution-mechanism-card small,
.solution-scenario-card small,
.solution-product-row small {
	margin-top: 18px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.solution-challenge-card h3,
.solution-mechanism-card h3,
.solution-product-row h3,
.solution-advantage-card h3 {
	margin: 8px 0 0;
	color: #12243b;
	font-size: 18px;
	line-height: 1.35;
	letter-spacing: 0;
}

.solution-challenge-card p,
.solution-mechanism-card p,
.solution-product-row p,
.solution-advantage-card p {
	margin: 12px 0 0;
	color: #687a8e;
	font-size: 14px;
	line-height: 1.7;
}

.solution-mechanism-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.solution-mechanism-card {
	position: relative;
	min-height: 270px;
	padding: 30px 28px;
	overflow: hidden;
	background: #12213a;
	border: 1px solid rgba(177, 201, 232, 0.14);
	border-radius: var(--radius);
}

.solution-card-icon--dark {
	color: #49d0af;
	background: rgba(73, 208, 175, 0.1);
	border-color: rgba(73, 208, 175, 0.2);
}

.solution-mechanism-card:nth-child(3n) .solution-card-icon--dark {
	color: #f2bd55;
	background: rgba(242, 189, 85, 0.1);
	border-color: rgba(242, 189, 85, 0.2);
}

.solution-mechanism-card small {
	color: #7ddfff;
}

.solution-mechanism-card:nth-child(2n) small {
	color: #58d6b7;
}

.solution-mechanism-card h3 {
	color: var(--white);
}

.solution-mechanism-card p {
	color: rgba(224, 235, 248, 0.72);
}

.solution-mechanism-card > strong {
	position: absolute;
	right: 22px;
	bottom: 16px;
	color: rgba(255, 255, 255, 0.1);
	font-size: 44px;
	line-height: 1;
}

body[dir="rtl"] .solution-mechanism-card > strong {
	right: auto;
	left: 22px;
}

.solution-scenario-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.solution-scenario-card {
	display: flex;
	align-items: flex-end;
	min-height: 214px;
	aspect-ratio: 16 / 9;
	padding: 22px;
	overflow: hidden;
	color: var(--white);
	background-position: center;
	background-size: cover;
	border: 1px solid rgba(18, 103, 241, 0.18);
	border-radius: var(--radius);
	box-shadow: 0 20px 44px rgba(12, 32, 64, 0.1);
}

.solution-scenario-card small {
	margin-top: 0;
	color: #5ed4ff;
}

.solution-scenario-card h3 {
	margin: 7px 0 0;
	color: var(--white);
	font-size: 20px;
	line-height: 1.28;
}

.solution-scenario-card p {
	margin: 7px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	line-height: 1.55;
}

.solution-selection-section {
	background: var(--white);
}

.solution-selection-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
	gap: 72px;
	align-items: start;
}

.solution-selection-copy > p:not(.eyebrow),
.solution-contact-copy > p:not(.eyebrow) {
	margin: 0;
	color: #66778b;
	font-size: 16px;
	line-height: 1.78;
}

.solution-selection-notes {
	display: grid;
	gap: 10px;
	margin-top: 30px;
	padding: 22px;
	background: #eaf3ff;
	border: 1px solid #cfe2f9;
	border-radius: var(--radius);
}

.solution-selection-notes div {
	display: grid;
	grid-template-columns: 26px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.solution-selection-notes span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: var(--white);
	background: var(--blue);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 900;
}

.solution-selection-notes p {
	margin: 0;
	color: #25415e;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.55;
}

.solution-product-list {
	display: grid;
	gap: 14px;
}

.solution-product-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(120px, 32%);
	gap: 20px;
	align-items: center;
	min-height: 106px;
	padding: 20px 22px;
	background: #f7fbff;
	border: 1px solid #dbe8f5;
	border-radius: var(--radius);
	box-shadow: 0 12px 32px rgba(12, 32, 64, 0.06);
}

.solution-product-row > div {
	min-width: 0;
}

.solution-product-row small {
	margin: 0;
}

.solution-product-row h3 {
	font-size: 17px;
}

.solution-product-row p {
	font-size: 13px;
}

.solution-product-row > strong {
	color: var(--blue);
	font-size: 13px;
	line-height: 1.3;
	text-align: right;
	overflow-wrap: anywhere;
}

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

.solution-advantage-card {
	position: relative;
	min-height: 220px;
	padding: 32px 34px;
	background: #13213a;
	border: 1px solid rgba(177, 201, 232, 0.14);
	border-radius: var(--radius);
}

.solution-advantage-card span {
	display: block;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.13);
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
}

.solution-advantage-card h3 {
	color: var(--white);
}

.solution-advantage-card p {
	color: rgba(224, 235, 248, 0.72);
}

.solution-advantage-card strong {
	display: inline-flex;
	margin-top: 22px;
	color: #5ed4ff;
	font-size: 20px;
	line-height: 1;
}

.solution-proof-banner {
	min-height: 180px;
	margin-top: 28px;
	padding: 34px 38px;
	color: var(--white);
	background-position: center;
	background-size: cover;
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	box-shadow: 0 18px 42px rgba(10, 31, 68, 0.12);
}

.solution-proof-banner h3 {
	max-width: 760px;
	margin: 8px 0 0;
	color: var(--white);
	font-size: 28px;
	line-height: 1.25;
}

.solution-proof-banner p:not(.eyebrow) {
	max-width: 760px;
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	line-height: 1.7;
}

.solution-related-section {
	background: #f6f9fc;
}

.solution-related-head {
	align-items: flex-start;
}

.solution-related-head > div > p:not(.eyebrow) {
	max-width: 720px;
	margin: 12px 0 0;
	color: #66778b;
	font-size: 16px;
	line-height: 1.72;
}

.solution-related-card .product-related-card__media {
	background: #e8f1fa;
}

.solution-faq-section {
	background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.solution-faq-grid {
	align-items: start;
}

.solution-faq-copy > p:not(.eyebrow) {
	margin: 0;
	color: #66778b;
	font-size: 16px;
	line-height: 1.78;
}

.solution-faq-list .faq-item {
	border-color: #d8e5f2;
	box-shadow: 0 14px 34px rgba(10, 31, 68, 0.07);
}

.solution-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
	gap: 72px;
	align-items: start;
}

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

.solution-download-item {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 62px;
	padding: 12px 14px;
	background: var(--white);
	border: 1px solid #dce7f2;
	border-radius: var(--radius);
	box-shadow: 0 10px 26px rgba(12, 32, 64, 0.05);
	color: inherit;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solution-download-item:hover {
	transform: translateY(-2px);
	border-color: #b9d1e8;
	box-shadow: 0 14px 30px rgba(12, 32, 64, 0.09);
}

.solution-download-item:focus-visible {
	outline: 3px solid rgba(23, 125, 83, 0.24);
	outline-offset: 2px;
}

.solution-download-item > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: var(--green);
	background: #eaf9f2;
	border-radius: 7px;
}

.solution-download-item svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.solution-download-item strong,
.solution-download-item small {
	display: block;
	line-height: 1.35;
}

.solution-download-item strong {
	color: #1c3149;
	font-size: 14px;
}

.solution-download-item small {
	margin-top: 3px;
	color: #7b8aa0;
	font-size: 12px;
}

.solution-contact-mini {
	margin-top: 28px;
}

.solution-template-form {
	padding: 30px;
	background: var(--white);
	border: 1px solid #dce7f2;
	border-radius: var(--radius);
	box-shadow: 0 24px 54px rgba(12, 32, 64, 0.1);
}

.solution-template-form__head {
	display: grid;
	gap: 8px;
	margin-bottom: 18px;
}

.solution-template-form__head p {
	margin: 0;
	color: #66778b;
	font-size: 14px;
	line-height: 1.65;
}

.solution-template-form__head .eyebrow {
	color: var(--blue);
}

@media (max-width: 1180px) {
	.solution-template-hero__chips,
	.solution-challenge-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.solution-selection-grid,
	.solution-contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

@media (max-width: 980px) {
	.solution-template-hero {
		min-height: var(--banner-detail-height);
		padding-top: 82px;
	}

	.solution-template-hero__inner {
		min-height: calc(var(--banner-detail-height) - 132px);
	}

	.solution-template-hero__copy {
		padding-top: 42px;
	}

	.solution-template-hero__copy h1 {
		font-size: 48px;
	}

	.solution-template-overview__inner,
	.solution-mechanism-grid,
	.solution-scenario-grid,
	.solution-advantage-grid {
		grid-template-columns: 1fr;
	}

	.solution-scenario-card {
		min-height: 240px;
	}
}

@media (max-width: 760px) {
	.solution-template-hero {
		min-height: var(--banner-mobile-height);
		padding: 58px 0 46px;
	}

	.solution-template-hero__copy {
		padding-top: 24px;
	}

	.solution-template-hero__copy h1 {
		font-size: 36px;
		line-height: 1.14;
	}

	.solution-template-hero__copy p:not(.eyebrow) {
		font-size: 16px;
	}

	.solution-template-section,
	.solution-template-overview {
		padding: 72px 0;
	}

	.solution-template .section-heading h2,
	.solution-template-overview h2,
	.solution-selection-copy h2,
	.solution-related-head h2,
	.solution-faq-copy h2,
	.solution-contact-copy h2 {
		font-size: 30px;
	}

	.solution-template-hero__chips,
	.solution-challenge-grid,
	.solution-download-grid {
		grid-template-columns: 1fr;
	}

	.solution-template-overview__inner,
	.solution-template-form,
	.solution-proof-banner {
		padding: 24px;
	}

	.solution-challenge-card,
	.solution-mechanism-card,
	.solution-advantage-card {
		min-height: auto;
		padding: 24px;
	}

	.solution-product-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.solution-product-row > strong {
		text-align: left;
	}

	.solution-proof-banner h3 {
		font-size: 23px;
	}
}

.case-template {
	background: #f4f8fd;
}

.case-hero {
	min-height: var(--banner-detail-height);
	padding: 76px 0 0;
	color: var(--white);
	background-position: center;
	background-size: cover;
}

.case-hero__inner {
	display: grid;
	align-content: end;
	min-height: calc(var(--banner-detail-height) - 132px);
}

.case-breadcrumb {
	align-self: start;
	margin-bottom: 36px;
	color: rgba(255, 255, 255, 0.76);
}

.case-breadcrumb a,
.case-breadcrumb strong {
	color: inherit;
}

.case-hero__copy {
	max-width: 840px;
	padding-bottom: 54px;
}

.case-hero__copy h1 {
	max-width: 780px;
	margin: 0;
	color: var(--white);
	font-size: 56px;
	line-height: 1.12;
	letter-spacing: 0;
}

.case-hero__copy p:not(.eyebrow) {
	max-width: 760px;
	margin: 20px 0 0;
	color: rgba(233, 241, 251, 0.82);
	font-size: 18px;
	line-height: 1.78;
}

.case-meta-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 20px;
	background: var(--banner-panel-bg);
	border: 1px solid var(--banner-border);
	border-bottom: 0;
	border-radius: var(--radius) var(--radius) 0 0;
	backdrop-filter: blur(10px);
}

.case-meta-strip div {
	min-height: 84px;
	padding: 20px 22px;
	border-right: 1px solid rgba(156, 226, 255, 0.16);
}

body[dir="rtl"] .case-meta-strip div {
	border-right: 0;
	border-left: 1px solid rgba(177, 201, 232, 0.14);
}

.case-meta-strip div:last-child {
	border-right: 0;
}

body[dir="rtl"] .case-meta-strip div:last-child {
	border-left: 0;
}

.case-meta-strip span,
.case-meta-strip strong {
	display: block;
	line-height: 1.4;
}

.case-meta-strip span {
	color: rgba(233, 241, 251, 0.68);
	font-size: 12px;
	font-weight: 800;
}

.case-meta-strip strong {
	margin-top: 8px;
	color: var(--white);
	font-size: 17px;
}

.case-highlight-section {
	padding: 60px 0 50px;
	background: #f4f8fd;
}

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

.case-highlight-card {
	display: grid;
	grid-template-rows: auto auto auto 1fr;
	gap: 12px;
	min-height: 200px;
	padding: 28px 24px;
	background: var(--white);
	border: 1px solid #dce7f2;
	border-radius: var(--radius);
	box-shadow: 0 18px 40px rgba(12, 32, 64, 0.08);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.case-highlight-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 50px rgba(12, 32, 64, 0.12);
}

.case-highlight-card > span,
.case-product-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--blue);
	background: #edf5ff;
	border-radius: 8px;
}

.case-highlight-card svg,
.case-product-card svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.case-highlight-card small,
.case-result-card small {
	color: var(--blue);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.case-highlight-card h2 {
	margin: 0;
	color: #10243d;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 800;
}

.case-highlight-card p {
	margin: 0;
	color: #65778c;
	font-size: 14px;
	line-height: 1.65;
}

.case-article-section {
	padding: 78px 0 88px;
	background: #f7f9fc;
}

.case-article-layout {
	align-items: start;
}

.case-article-body h2:first-child {
	margin-top: 0;
}

.case-section {
	padding: 60px 0;
}

.case-section--light,
.case-contact-section {
	background: #f4f8fd;
}

.case-section--dark {
	color: var(--white);
	background: #061327;
}

.case-section-head {
	max-width: 820px;
	margin-bottom: 34px;
}

.case-section-head--light {
	color: #0c1d35;
}

.case-section-head h2,
.case-main-copy h2,
.case-contact-copy h2 {
	margin: 0;
	color: var(--white);
	font-size: 38px;
	line-height: 1.16;
	letter-spacing: 0;
}

.case-section-head--light h2,
.case-main-copy h2,
.case-contact-copy h2 {
	color: #0c1d35;
}

.case-section-head p:not(.eyebrow),
.case-main-copy > p,
.case-contact-copy > p {
	max-width: 820px;
	margin: 14px 0 0;
	color: rgba(226, 238, 251, 0.72);
	font-size: 16px;
	line-height: 1.78;
}

.case-section-head--light p:not(.eyebrow),
.case-main-copy > p,
.case-contact-copy > p {
	color: #66778b;
}

.case-background-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
	gap: 34px;
	align-items: stretch;
	margin-top: -20px;
}

.case-main-copy,
.case-side-panel {
	display: flex;
	flex-direction: column;
	padding: 28px 30px;
	background: var(--white);
	border: 1px solid #dce7f2;
	border-radius: var(--radius);
	box-shadow: 0 16px 44px rgba(12, 32, 64, 0.07);
}

.case-main-copy .product-rich-text {
	margin-top: 22px;
}

.case-side-panel h3 {
	margin: 0;
	color: #11243b;
	font-size: 20px;
	line-height: 1.3;
}

.case-side-panel p {
	margin: 13px 0 0;
	color: #65778c;
	font-size: 14px;
	line-height: 1.7;
}

.case-side-panel div {
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid #dce7f2;
}

.case-side-panel span,
.case-side-panel strong {
	display: block;
}

.case-side-panel span {
	color: #7b8aa0;
	font-size: 12px;
	font-weight: 800;
}

.case-side-panel strong {
	margin-top: 6px;
	color: var(--blue);
	font-size: 15px;
}

.case-challenge-grid,
.case-product-grid,
.case-support-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 34px;
}

.case-dark-card,
.case-support-card {
	min-height: 170px;
	padding: 26px;
	background: #111f38;
	border: 1px solid rgba(177, 201, 232, 0.14);
	border-radius: var(--radius);
}

.case-dark-card span {
	display: inline-flex;
	margin-bottom: 12px;
	color: #4f8cff;
	font-size: 18px;
	font-weight: 900;
}

.case-dark-card h3,
.case-support-card h3 {
	margin: 0;
	color: var(--white);
	font-size: 18px;
	line-height: 1.35;
}

.case-dark-card p,
.case-support-card p {
	margin: 12px 0 0;
	color: rgba(226, 238, 251, 0.7);
	font-size: 14px;
	line-height: 1.72;
}

.case-table-wrap {
	overflow-x: auto;
	background: #0f1d33;
	border: 1px solid rgba(177, 201, 232, 0.14);
	border-radius: var(--radius);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.case-table-wrap--light {
	margin-top: 26px;
	background: var(--white);
	border-color: #dce7f2;
	box-shadow: 0 14px 36px rgba(12, 32, 64, 0.07);
}

.case-data-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
	color: #233b58;
	font-size: 14px;
}

.case-data-table th,
.case-data-table td {
	padding: 16px 18px;
	text-align: left;
	border-bottom: 1px solid #e0e8f2;
	vertical-align: top;
}

body[dir="rtl"] .case-data-table th,
body[dir="rtl"] .case-data-table td {
	text-align: right;
}

.case-data-table th {
	color: var(--white);
	background: var(--blue);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
}

.case-data-table td strong {
	color: #10243d;
}

.case-data-table--dark {
	color: rgba(226, 238, 251, 0.74);
}

.case-data-table--dark th {
	background: #176cff;
}

.case-data-table--dark td {
	border-bottom-color: rgba(177, 201, 232, 0.1);
}

.case-data-table--dark td strong {
	color: var(--white);
}

.case-data-table tr:last-child td {
	border-bottom: 0;
}

.case-result-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 28px;
}

.case-result-card,
.case-product-card {
	padding: 24px;
	background: var(--white);
	border: 1px solid #dce7f2;
	border-radius: var(--radius);
	box-shadow: 0 14px 36px rgba(12, 32, 64, 0.07);
}

.case-result-card div {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}

.case-result-card span {
	color: #73859a;
	font-size: 13px;
	line-height: 1.35;
}

.case-result-card strong {
	color: #10243d;
	font-size: 22px;
	line-height: 1.15;
}

.case-result-card em {
	display: inline-flex;
	width: fit-content;
	margin-top: 14px;
	padding: 5px 10px;
	color: #0b7f52;
	background: #e8f8f0;
	border-radius: 999px;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
}

.case-product-grid {
	margin: 0 0 30px;
}

.case-product-card {
	min-height: 154px;
}

.case-product-card h3 {
	margin: 14px 0 0;
	color: #10243d;
	font-size: 18px;
	line-height: 1.35;
}

.case-product-card p {
	margin: 9px 0 0;
	color: #65778c;
	font-size: 14px;
	line-height: 1.7;
}

.case-status-pill {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 4px 10px;
	color: #44d39b;
	background: rgba(68, 211, 155, 0.1);
	border: 1px solid rgba(68, 211, 155, 0.18);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
}

.case-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}

.case-gallery-card {
	display: flex;
	align-items: flex-end;
	min-height: 230px;
	padding: 24px;
	color: var(--white);
	background-position: center;
	background-size: cover;
	border-radius: var(--radius);
}

.case-gallery-card h3 {
	margin: 0;
	color: var(--white);
	font-size: 20px;
	line-height: 1.3;
}

.case-gallery-card p {
	margin: 9px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
	line-height: 1.65;
}

.case-faq-list {
	display: grid;
	gap: 10px;
	padding: 18px;
	background: #0f1d33;
	border-radius: var(--radius);
}

.case-faq-item {
	color: var(--white);
	background: #13233d;
	border-color: rgba(177, 201, 232, 0.14);
}

.case-faq-item p {
	color: rgba(226, 238, 251, 0.72);
}

.case-support-grid {
	margin-bottom: 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-contact-section {
	background: var(--white);
}

.case-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
	gap: 70px;
	align-items: start;
}

.case-contact-copy .contact-mini {
	margin-top: 30px;
}

.case-template-form {
	padding: 30px;
	background: #f7fbff;
	border: 1px solid #dce7f2;
	border-radius: var(--radius);
	box-shadow: 0 20px 50px rgba(12, 32, 64, 0.09);
}

@media (max-width: 1180px) {
	.case-meta-strip,
	.case-highlight-grid,
	.case-result-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.case-background-grid,
	.case-contact-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 820px) {
	.case-hero {
		min-height: var(--banner-mobile-height);
		padding-top: 58px;
	}

	.case-breadcrumb {
		margin-bottom: 28px;
	}

	.case-hero__copy h1 {
		font-size: 36px;
		line-height: 1.14;
	}

	.case-hero__copy p:not(.eyebrow) {
		font-size: 16px;
	}

	.case-section {
		padding: 72px 0;
	}

	.case-section-head h2,
	.case-main-copy h2,
	.case-contact-copy h2 {
		font-size: 30px;
	}

	.case-meta-strip,
	.case-highlight-grid,
	.case-challenge-grid,
	.case-product-grid,
	.case-result-grid,
	.case-support-grid,
	.case-gallery-grid {
		grid-template-columns: 1fr;
	}

	.case-highlight-grid {
		transform: translateY(-20px);
	}

	.case-main-copy,
	.case-side-panel,
	.case-template-form {
		padding: 24px;
	}

	.case-meta-strip div,
	body[dir="rtl"] .case-meta-strip div {
		border-right: 0;
		border-left: 0;
		border-bottom: 1px solid rgba(177, 201, 232, 0.14);
	}

	.case-meta-strip div:last-child {
		border-bottom: 0;
	}
}

.about-page {
	background: var(--white);
}

.about-page .about-section {
	color: var(--ink);
}

.about-page .about-section p:not(.eyebrow),
.about-page .about-section .about-value-card p,
.about-page .about-section .about-industry-card p,
.about-page .about-section .about-audit-card p,
.about-page .about-section .about-supply-card p,
.about-page .about-section .faq-item p {
	color: var(--muted);
}

.about-page .about-section h2,
.about-page .about-section h3,
.about-page .about-section strong {
	color: #10233c;
}

.about-page .about-section .about-industry-card--cta strong,
.about-page .about-section .about-supply-card--cta strong {
	color: var(--white);
}

.about-page .about-section .about-industry-card--cta span {
	color: rgba(255, 255, 255, 0.78);
}

.about-page .about-section .about-industry-card--cta em,
.about-page .about-section .about-supply-card--cta em {
	color: #7de2ff;
}

.about-hero {
	min-height: var(--banner-page-height);
	color: var(--white);
	background-position: center;
	background-size: cover;
}

.about-hero__inner {
	display: grid;
	align-content: end;
	min-height: var(--banner-page-height);
	padding: 76px 0 56px;
}

.about-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.about-breadcrumb a {
	color: rgba(255, 255, 255, 0.62);
}

.about-breadcrumb a:hover,
.about-breadcrumb a:focus-visible {
	color: #7de2ff;
	outline: none;
}

.about-breadcrumb strong {
	color: rgba(255, 255, 255, 0.86);
	font-weight: 900;
}

.about-hero__content {
	max-width: 780px;
}

.about-hero h1 {
	margin-bottom: 24px;
	font-size: 56px;
	line-height: 1.08;
}

.about-hero__summary {
	max-width: 690px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
	line-height: 1.78;
}

.about-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 36px;
}

.about-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin-top: 52px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-hero-stat {
	min-height: 96px;
	padding: 24px 28px 0 0;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero-stat:last-child {
	border-right: 0;
}

body[dir="rtl"] .about-hero-stat {
	padding: 24px 0 0 28px;
	border-right: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

body[dir="rtl"] .about-hero-stat:last-child {
	border-left: 0;
}

.about-hero-stat strong {
	display: block;
	margin-bottom: 8px;
	color: #7de2ff;
	font-size: 23px;
	font-weight: 900;
	line-height: 1.05;
}

.about-hero-stat span {
	color: rgba(255, 255, 255, 0.66);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
}

.about-section {
	padding: var(--section) 0;
}

.about-manufacturing,
.about-faq {
	background: var(--white);
}

.about-manufacturing__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.8fr);
	gap: 76px;
	align-items: center;
}

.about-factory-gallery {
	display: grid;
	gap: 18px;
}

.about-factory-gallery__main {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.about-factory-gallery__strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.about-factory-gallery figure {
	position: relative;
	min-height: 150px;
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	background: #0b1b31;
	box-shadow: 0 12px 30px rgba(10, 31, 68, 0.1);
}

.about-factory-gallery figure::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 42%, rgba(4, 12, 27, 0.78));
}

.about-factory-gallery figure img {
	width: 100%;
	height: 100%;
	min-height: 150px;
	object-fit: cover;
}

.about-factory-gallery figcaption {
	position: absolute;
	right: 14px;
	bottom: 12px;
	left: 14px;
	z-index: 1;
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
}

.about-manufacturing__copy p:not(.eyebrow),
.about-philosophy p,
.about-audit__copy p,
.about-section-head > p,
.about-faq__grid > div > p {
	color: var(--muted);
}

.about-manufacturing__copy p:not(.eyebrow) {
	max-width: 680px;
}

.about-metric-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.about-metric-grid div {
	min-height: 96px;
	padding: 20px;
	background: #f3f7fb;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.about-metric-grid span {
	display: block;
	margin-bottom: 8px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
}

.about-metric-grid strong {
	color: #10233c;
	font-size: 21px;
	line-height: 1.18;
}

.about-philosophy,
.about-supply {
	background: #f3f7fb;
}

.about-philosophy__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
	gap: 78px;
}

.about-philosophy h2,
.about-section-head h2,
.about-audit h2,
.about-faq h2,
.about-contact__copy h2 {
	color: #10233c;
}

.about-philosophy__grid > div > p,
.about-section-head > p,
.about-audit__copy > p,
.about-faq__grid p {
	max-width: 680px;
}

.about-value-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.about-value-card {
	min-height: 170px;
	padding: 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 10px 28px rgba(10, 31, 68, 0.06);
}

.about-value-card h3,
.about-industry-card h3,
.about-audit-card h3,
.about-supply-card h3 {
	color: #10233c;
	font-size: 18px;
}

.about-value-card p,
.about-industry-card p,
.about-audit-card p,
.about-supply-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.68;
}

.about-process-section {
	padding: var(--section) 0;
	color: var(--white);
	background: #050b17;
}

.about-section-head {
	display: grid;
	grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
	gap: 64px;
	align-items: end;
	margin-bottom: 46px;
}

.about-section-head h2 {
	margin-bottom: 0;
}

.about-section-head > p {
	margin-bottom: 0;
	line-height: 1.72;
}

.about-section-head--dark {
	display: block;
	max-width: 760px;
}

.about-section-head--dark h2 {
	color: var(--white);
}

.about-process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.about-process-card {
	position: relative;
	min-height: 206px;
	padding: 32px 28px 28px;
	background: #07111f;
	border: 1px solid rgba(90, 123, 165, 0.24);
	border-radius: var(--radius);
}

.about-process-card::before {
	position: absolute;
	top: -1px;
	left: 28px;
	width: 42px;
	height: 3px;
	content: "";
	background: #2f83ff;
	border-radius: 999px;
}

body[dir="rtl"] .about-process-card::before {
	right: 28px;
	left: auto;
}

.about-process-card span {
	display: inline-flex;
	margin-bottom: 38px;
	color: rgba(47, 131, 255, 0.64);
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
}

.about-process-card h3 {
	color: var(--white);
}

.about-process-card p {
	margin-bottom: 0;
	color: rgba(226, 238, 251, 0.62);
	font-size: 15px;
	line-height: 1.72;
}

.about-industries {
	background: var(--white);
}

.about-industry-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

body[dir="rtl"] .about-industry-grid {
	border-right: 1px solid var(--line);
	border-left: 0;
}

.about-industry-card {
	display: grid;
	align-content: start;
	min-height: 210px;
	padding: 28px;
	background: var(--white);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transition: background 180ms ease, transform 180ms ease;
}

body[dir="rtl"] .about-industry-card {
	border-right: 0;
	border-left: 1px solid var(--line);
}

.about-industry-card:hover,
.about-industry-card:focus-visible {
	background: #f8fbff;
	outline: none;
}

.about-industry-card--cta {
	align-content: center;
	gap: 10px;
	color: var(--white);
	background: linear-gradient(135deg, var(--blue), #0b57c9);
	border-color: rgba(18, 103, 241, 0.42);
}

.about-industry-card--cta:hover,
.about-industry-card--cta:focus-visible {
	background: linear-gradient(135deg, var(--blue-2), #0a4fba);
}

.about-industry-card--cta strong {
	color: var(--white);
	font-size: 20px;
	line-height: 1.3;
}

.about-industry-card--cta span {
	color: rgba(255, 255, 255, 0.74);
	font-size: 15px;
	line-height: 1.62;
}

.about-industry-card--cta em,
.about-supply-card--cta em {
	color: #7de2ff;
	font-style: normal;
	font-weight: 900;
}

.about-industry-card--cta em::after,
.about-supply-card--cta em::after {
	margin-left: 8px;
	content: "→";
}

body[dir="rtl"] .about-industry-card--cta em::after,
body[dir="rtl"] .about-supply-card--cta em::after {
	margin-right: 8px;
	margin-left: 0;
	content: "←";
}

.about-audit {
	background: var(--white);
}

.about-audit__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
	gap: 70px;
	align-items: center;
}

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

.about-audit-card {
	min-height: 178px;
	padding: 24px;
	background: #f8fbfe;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.about-audit-card span {
	display: inline-flex;
	margin-bottom: 16px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

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

.about-supply-card {
	display: grid;
	align-content: start;
	min-height: 198px;
	padding: 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 10px 28px rgba(10, 31, 68, 0.06);
}

.about-supply-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 24px;
	color: var(--white);
	font-size: 12px;
	font-weight: 900;
	background: #071421;
	border-radius: 6px;
}

.about-supply-card--cta {
	align-content: center;
	gap: 14px;
	color: var(--white);
	background: #115bcf;
	border-color: #115bcf;
	box-shadow: 0 16px 36px rgba(17, 91, 207, 0.2);
}

.about-supply-card--cta strong {
	color: var(--white);
	font-size: 20px;
	line-height: 1.32;
}

.about-faq__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
	gap: 70px;
	align-items: start;
}

.about-contact-section {
	padding: 96px 0;
	color: var(--white);
	background:
		linear-gradient(135deg, rgba(4, 12, 27, 0.98), rgba(8, 22, 43, 0.98)),
		linear-gradient(90deg, transparent 0, rgba(47, 131, 255, 0.08) 49%, transparent 50%);
}

.about-contact__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
	gap: 72px;
	align-items: end;
}

.about-contact__copy h2 {
	color: var(--white);
}

.about-contact__copy p:not(.eyebrow) {
	max-width: 600px;
	color: rgba(255, 255, 255, 0.68);
}

.about-contact-mini .contact-mini__item {
	color: rgba(255, 255, 255, 0.88);
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.11);
}

.about-contact-mini a.contact-mini__item:hover,
.about-contact-mini a.contact-mini__item:focus-visible {
	background: rgba(47, 131, 255, 0.1);
	border-color: rgba(47, 131, 255, 0.34);
}

.about-contact-mini strong {
	color: rgba(255, 255, 255, 0.88);
}

.about-contact-form {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.13);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.about-contact-form label {
	color: rgba(104, 216, 255, 0.9);
}

.about-contact-form input,
.about-contact-form textarea {
	color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.055);
	border-color: rgba(255, 255, 255, 0.13);
}

.about-contact-form input:focus,
.about-contact-form textarea:focus {
	border-color: rgba(47, 131, 255, 0.72);
	box-shadow: 0 0 0 3px rgba(47, 131, 255, 0.14);
}

@media (max-width: 1180px) {
	.about-manufacturing__grid,
	.about-philosophy__grid,
	.about-audit__grid,
	.about-faq__grid,
	.about-contact__grid {
		grid-template-columns: 1fr;
	}

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

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

@media (max-width: 760px) {
	.about-hero,
	.about-hero__inner {
		min-height: var(--banner-mobile-height);
	}

	.about-hero__inner {
		padding: 58px 0 46px;
	}

	.about-breadcrumb {
		margin-bottom: 26px;
	}

	.about-hero h1 {
		font-size: 36px;
		line-height: 1.16;
	}

	.about-hero__summary {
		font-size: 16px;
		line-height: 1.72;
	}

	.about-hero__stats,
	.about-metric-grid,
	.about-factory-gallery__strip,
	.about-value-grid,
	.about-process-grid,
	.about-audit-card-grid,
	.about-industry-grid,
	.about-supply-grid {
		grid-template-columns: 1fr;
	}

	.about-hero__stats {
		margin-top: 46px;
	}

	.about-hero-stat,
	body[dir="rtl"] .about-hero-stat {
		min-height: auto;
		padding: 18px 0;
		border-right: 0;
		border-left: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.about-hero-stat:last-child,
	body[dir="rtl"] .about-hero-stat:last-child {
		border-bottom: 0;
	}

	.about-section,
	.about-process-section,
	.about-contact-section {
		padding: 72px 0;
	}

	.about-section-head {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 34px;
	}

	.about-factory-gallery__main {
		aspect-ratio: 4 / 3;
	}

	.about-factory-gallery figure,
	.about-factory-gallery figure img {
		min-height: 170px;
	}

	.about-process-card,
	.about-industry-card,
	.about-audit-card,
	.about-supply-card,
	.about-value-card {
		min-height: auto;
		padding: 24px;
	}

	.about-contact-form {
		padding: 24px;
	}
}

@media (max-width: 420px) {
	.about-hero h1 {
		font-size: 32px;
	}

	.about-hero__actions {
		display: grid;
	}
}

/* English About page: language-specific rhythm and responsive refinements. */
.about-page--en .about-hero__content {
	max-width: 900px;
}

.about-page--en .about-hero h1 {
	max-width: 880px;
	margin-bottom: 26px;
	font-size: clamp(52px, 4.6vw, 68px);
	letter-spacing: -0.035em;
}

.about-page--en .about-hero__summary {
	max-width: 760px;
	font-size: 19px;
	line-height: 1.7;
}

.about-page--en .about-hero__stats {
	margin-top: 58px;
	background: rgba(4, 12, 27, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-page--en .about-hero-stat {
	min-height: 112px;
	padding: 26px 26px 22px;
}

.about-page--en .about-hero-stat strong {
	font-size: 25px;
	letter-spacing: -0.02em;
}

.about-page--en .about-hero-stat span {
	max-width: 180px;
	font-size: 13px;
	line-height: 1.5;
}

.about-page--en .about-section,
.about-page--en .about-process-section {
	padding-top: clamp(96px, 8vw, 124px);
	padding-bottom: clamp(96px, 8vw, 124px);
}

.about-page--en .about-manufacturing__grid {
	grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.78fr);
	gap: clamp(64px, 7vw, 100px);
}

.about-page--en .about-manufacturing__copy h2,
.about-page--en .about-philosophy h2,
.about-page--en .about-section-head h2,
.about-page--en .about-audit h2,
.about-page--en .about-faq h2,
.about-page--en .about-contact__copy h2 {
	letter-spacing: -0.025em;
}

.about-page--en .about-manufacturing__copy p:not(.eyebrow),
.about-page--en .about-philosophy__grid > div > p,
.about-page--en .about-section-head > p,
.about-page--en .about-audit__copy > p,
.about-page--en .about-faq__grid p {
	font-size: 16px;
	line-height: 1.78;
}

.about-page--en .about-metric-grid div {
	position: relative;
	min-height: 104px;
	padding: 22px 22px 20px;
	overflow: hidden;
}

.about-page--en .about-metric-grid div::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, var(--blue), #62d9ff);
}

.about-page--en .about-value-card,
.about-page--en .about-audit-card,
.about-page--en .about-supply-card {
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.about-page--en .about-value-card:hover,
.about-page--en .about-audit-card:hover,
.about-page--en .about-supply-card:not(.about-supply-card--cta):hover {
	transform: translateY(-3px);
	border-color: rgba(47, 131, 255, 0.28);
	box-shadow: 0 18px 38px rgba(10, 31, 68, 0.1);
}

.about-page--en .about-process-card {
	min-height: 224px;
	padding: 34px 30px 30px;
}

.about-page--en .about-process-card span {
	margin-bottom: 42px;
}

.about-page--en .about-industry-card {
	min-height: 224px;
	padding: 30px;
}

.about-page--en .about-audit__grid {
	grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
	gap: clamp(64px, 7vw, 96px);
}

.about-page--en .about-faq__grid {
	grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1fr);
	gap: clamp(60px, 7vw, 96px);
}

.about-page--en .about-contact__grid {
	gap: clamp(64px, 7vw, 100px);
}

@media (max-width: 1180px) {
	.about-page--en .about-manufacturing__grid,
	.about-page--en .about-audit__grid,
	.about-page--en .about-faq__grid {
		grid-template-columns: 1fr;
		gap: 52px;
	}

	.about-page--en .about-manufacturing__copy {
		max-width: 760px;
	}
}

@media (max-width: 760px) {
	.about-page--en .about-hero__inner {
		padding-top: 54px;
	}

	.about-page--en .about-hero h1 {
		max-width: 620px;
		margin-bottom: 20px;
		font-size: clamp(38px, 11vw, 48px);
		line-height: 1.08;
	}

	.about-page--en .about-hero__summary {
		font-size: 16px;
		line-height: 1.68;
	}

	.about-page--en .about-hero__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 40px;
	}

	.about-page--en .about-hero-stat,
	body[dir="rtl"] .about-page--en .about-hero-stat {
		min-height: 116px;
		padding: 20px 16px;
		border-right: 1px solid rgba(255, 255, 255, 0.12);
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.about-page--en .about-hero-stat:nth-child(2n) {
		border-right: 0;
	}

	.about-page--en .about-hero-stat:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.about-page--en .about-section,
	.about-page--en .about-process-section {
		padding-top: 76px;
		padding-bottom: 76px;
	}

	.about-page--en .about-manufacturing__grid,
	.about-page--en .about-audit__grid,
	.about-page--en .about-faq__grid {
		gap: 38px;
	}

	.about-page--en .about-factory-gallery__strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.about-page--en .about-factory-gallery figure:last-child {
		grid-column: 1 / -1;
	}

	.about-page--en .about-factory-gallery figure,
	.about-page--en .about-factory-gallery figure img {
		min-height: 142px;
	}

	.about-page--en .about-process-card,
	.about-page--en .about-industry-card {
		min-height: auto;
	}

	.about-page--en .about-value-card:hover,
	.about-page--en .about-audit-card:hover,
	.about-page--en .about-supply-card:not(.about-supply-card--cta):hover {
		transform: none;
	}
}

@media (max-width: 420px) {
	.about-page--en .about-hero h1 {
		font-size: 36px;
	}

	.about-page--en .about-hero-stat strong {
		font-size: 21px;
	}

	.about-page--en .about-hero-stat span {
		font-size: 12px;
	}
}

.knowledge-article {
	background: #f7f9fc;
	color: var(--ink);
}

.knowledge-hero {
	position: relative;
	padding: 54px 0 0;
	background:
		linear-gradient(180deg, #fbfdff 0%, #edf6ff 100%),
		linear-gradient(90deg, rgba(18, 103, 241, 0.06) 0, rgba(0, 167, 199, 0.04) 100%);
	border-bottom: 1px solid rgba(190, 211, 233, 0.72);
	overflow: hidden;
}

.knowledge-hero__inner {
	display: grid;
	gap: 32px;
	padding-bottom: 56px;
}

.knowledge-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	color: #6f7f92;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
}

.knowledge-breadcrumb a {
	color: #2d5d9c;
}

.knowledge-breadcrumb a:hover,
.knowledge-breadcrumb a:focus-visible {
	color: var(--blue);
	outline: none;
}

.knowledge-breadcrumb strong {
	max-width: 52ch;
	color: #31455f;
	font-weight: 900;
}

.knowledge-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
	gap: 58px;
	align-items: center;
}

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

.knowledge-eyebrow,
.knowledge-section-kicker {
	margin: 0 0 14px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.knowledge-hero h1 {
	max-width: 880px;
	margin: 0 0 22px;
	color: #071421;
	font-size: 52px;
	line-height: 1.08;
}

.knowledge-hero__summary {
	max-width: 760px;
	margin: 0;
	color: #42566f;
	font-size: 19px;
	line-height: 1.76;
}

.knowledge-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 18px;
	margin-top: 26px;
	color: #596d84;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
}

.knowledge-meta span {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.knowledge-meta span + span::before {
	width: 4px;
	height: 4px;
	margin-right: 18px;
	content: "";
	background: #7ea8d9;
	border-radius: 50%;
}

body[dir="rtl"] .knowledge-meta span + span::before {
	margin-right: 0;
	margin-left: 18px;
}

.knowledge-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.knowledge-chip-list span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 13px;
	color: #174f94;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.3;
	background: #ffffff;
	border: 1px solid #cfe2f7;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(10, 31, 68, 0.06);
}

.knowledge-hero__media {
	position: relative;
	margin: 0;
	aspect-ratio: 1.12 / 1;
	background: #ffffff;
	border: 1px solid rgba(190, 211, 233, 0.9);
	border-radius: var(--radius);
	box-shadow: 0 26px 70px rgba(10, 31, 68, 0.13);
	overflow: hidden;
}

.knowledge-hero__media::after {
	position: absolute;
	inset: auto 0 0;
	height: 34%;
	content: "";
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(7, 20, 33, 0.38));
	pointer-events: none;
}

.knowledge-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.knowledge-quick-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(205, 222, 240, 0.92);
	border-radius: var(--radius);
	box-shadow: 0 18px 46px rgba(10, 31, 68, 0.1);
	overflow: hidden;
}

.knowledge-quick-facts div {
	min-height: 92px;
	padding: 22px 24px;
	border-right: 1px solid rgba(217, 227, 238, 0.88);
}

body[dir="rtl"] .knowledge-quick-facts div {
	border-right: 0;
	border-left: 1px solid rgba(217, 227, 238, 0.88);
}

.knowledge-quick-facts div:last-child,
body[dir="rtl"] .knowledge-quick-facts div:last-child {
	border-right: 0;
	border-left: 0;
}

.knowledge-quick-facts span {
	display: block;
	margin-bottom: 8px;
	color: #6a7d93;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
	text-transform: uppercase;
}

.knowledge-quick-facts strong {
	display: block;
	color: #112942;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.32;
}

.knowledge-layout-section {
	padding: 86px 0 94px;
	background: #f7f9fc;
}

.knowledge-layout {
	display: grid;
	grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
	gap: 38px;
	align-items: start;
}

.knowledge-sidebar {
	position: sticky;
	top: 116px;
	display: grid;
	gap: 18px;
}

.knowledge-sidebar__panel {
	padding: 22px;
	background: #ffffff;
	border: 1px solid #d9e3ee;
	border-radius: var(--radius);
	box-shadow: 0 14px 36px rgba(10, 31, 68, 0.07);
}

.knowledge-sidebar__panel > p {
	margin: 0 0 14px;
	color: #6d7f94;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
	text-transform: uppercase;
}

.knowledge-toc {
	display: grid;
	gap: 8px;
}

.knowledge-toc__item {
	display: block;
	padding: 9px 10px;
	color: #31455f;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	border-radius: 6px;
	transition: color 180ms ease, background 180ms ease;
}

.knowledge-toc__item--level-3 {
	padding-left: 22px;
	color: #60748a;
	font-size: 13px;
}

body[dir="rtl"] .knowledge-toc__item--level-3 {
	padding-right: 22px;
	padding-left: 10px;
}

.knowledge-toc__item:hover,
.knowledge-toc__item:focus-visible {
	color: var(--blue);
	background: #eef5ff;
	outline: none;
}

.knowledge-empty-toc {
	padding: 12px;
	color: #728399;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	background: #f4f8fc;
	border-radius: 6px;
}

.knowledge-sidebar__panel--contact {
	background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
	border-color: #cfe2f7;
}

.knowledge-sidebar__panel--contact strong {
	display: block;
	margin-bottom: 14px;
	color: #10263f;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.3;
}

.knowledge-sidebar__panel--contact a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
	background: var(--blue);
	border-radius: 6px;
}

.knowledge-content-card {
	min-width: 0;
}

.product-detail h1,
.product-detail h2,
.product-detail h3,
.knowledge-article h1,
.knowledge-article h2,
.knowledge-article h3,
.case-template h1,
.case-template h2,
.case-template h3,
.solution-template h1,
.solution-template h2,
.solution-template h3 {
	overflow-wrap: break-word;
	text-wrap: balance;
}

.product-detail p,
.knowledge-article p,
.case-template p,
.solution-template p {
	overflow-wrap: break-word;
	text-wrap: pretty;
}

:lang(de) .product-detail,
:lang(de) .knowledge-article,
:lang(de) .case-template,
:lang(de) .solution-template,
:lang(es) .product-detail,
:lang(es) .knowledge-article,
:lang(es) .case-template,
:lang(es) .solution-template,
:lang(fr) .product-detail,
:lang(fr) .knowledge-article,
:lang(fr) .case-template,
:lang(fr) .solution-template,
:lang(pl) .product-detail,
:lang(pl) .knowledge-article,
:lang(pl) .case-template,
:lang(pl) .solution-template,
:lang(pt) .product-detail,
:lang(pt) .knowledge-article,
:lang(pt) .case-template,
:lang(pt) .solution-template,
:lang(ru) .product-detail,
:lang(ru) .knowledge-article,
:lang(ru) .case-template,
:lang(ru) .solution-template,
:lang(tr) .product-detail,
:lang(tr) .knowledge-article,
:lang(tr) .case-template,
:lang(tr) .solution-template {
	hyphens: auto;
}

.knowledge-answer-card,
.knowledge-body {
	background: #ffffff;
	border: 1px solid #d9e3ee;
	border-radius: var(--radius);
	box-shadow: 0 18px 46px rgba(10, 31, 68, 0.08);
}

.knowledge-answer-card {
	display: grid;
	grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
	gap: 30px;
	padding: 30px;
	margin-bottom: 22px;
}

.knowledge-answer-card h2 {
	margin: 0;
	color: #0b223f;
	font-size: 26px;
	line-height: 1.18;
}

.knowledge-answer-card > p {
	margin: 0;
	color: #40556d;
	font-size: 17px;
	line-height: 1.76;
}

.knowledge-takeaways {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.knowledge-takeaways div {
	display: grid;
	grid-template-columns: 14px minmax(0, 1fr);
	gap: 10px;
	padding: 16px;
	background: #f6f9fc;
	border: 1px solid #dfe8f2;
	border-radius: var(--radius);
}

.knowledge-takeaways span {
	width: 10px;
	height: 10px;
	margin-top: 8px;
	background: var(--blue);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(18, 103, 241, 0.12);
}

.knowledge-takeaways p {
	margin: 0;
	color: #31455f;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.6;
}

.knowledge-body {
	padding: 44px;
}

/* Keep translated long-form content readable without narrowing tables or media. */
.knowledge-body > p,
.knowledge-body > h2,
.knowledge-body > h3,
.knowledge-body > h4,
.knowledge-body > ul,
.knowledge-body > ol,
.knowledge-body > blockquote {
	max-width: 76ch;
	margin-right: auto;
	margin-left: auto;
}

.knowledge-body > *:first-child {
	margin-top: 0;
}

.knowledge-body > *:last-child {
	margin-bottom: 0;
}

.knowledge-body p,
.knowledge-body li {
	color: #31455f;
	font-size: 17px;
	line-height: 1.8;
	overflow-wrap: break-word;
	text-wrap: pretty;
}

.knowledge-body p {
	margin: 0 0 22px;
}

.knowledge-body h2,
.knowledge-body h3,
.knowledge-body h4 {
	color: #071421;
	line-height: 1.24;
	overflow-wrap: break-word;
	scroll-margin-top: 112px;
	text-wrap: balance;
}

.knowledge-body h2 {
	position: relative;
	padding-top: 34px;
	margin: 54px 0 18px;
	font-size: 31px;
	border-top: 1px solid #e3ebf4;
}

.knowledge-body h2::before {
	display: block;
	width: 48px;
	height: 4px;
	margin-bottom: 18px;
	content: "";
	background: linear-gradient(90deg, var(--blue), var(--cyan));
	border-radius: 999px;
}

.knowledge-body h3 {
	margin: 34px 0 14px;
	font-size: 23px;
}

.knowledge-body h4 {
	margin: 28px 0 12px;
	font-size: 19px;
}

.knowledge-body a {
	color: var(--blue);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.knowledge-body ul,
.knowledge-body ol {
	margin: 0 0 24px 22px;
	padding: 0;
}

body[dir="rtl"] .knowledge-body ul,
body[dir="rtl"] .knowledge-body ol {
	margin-right: 22px;
	margin-left: 0;
}

.knowledge-body li + li {
	margin-top: 8px;
}

.knowledge-body blockquote {
	margin: 32px 0;
	padding: 24px 26px;
	color: #14385f;
	background: #eef6ff;
	border: 1px solid #cfe2f7;
	border-left: 4px solid var(--blue);
	border-radius: var(--radius);
}

body[dir="rtl"] .knowledge-body blockquote {
	border-right: 4px solid var(--blue);
	border-left: 1px solid #cfe2f7;
}

.knowledge-body blockquote p {
	margin-bottom: 0;
	color: inherit;
	font-weight: 800;
}

.knowledge-body figure {
	margin: 34px 0;
}

.knowledge-body img {
	border-radius: var(--radius);
	box-shadow: 0 14px 38px rgba(10, 31, 68, 0.08);
}

.knowledge-body figcaption {
	margin-top: 10px;
	color: #728399;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.knowledge-body table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	background: #ffffff;
	border: 1px solid #d9e3ee;
	border-radius: var(--radius);
	overflow: hidden;
}

.knowledge-body th,
.knowledge-body td {
	padding: 15px 16px;
	color: #31455f;
	line-height: 1.52;
	text-align: left;
	border-bottom: 1px solid #e5edf5;
}

body[dir="rtl"] .knowledge-body th,
body[dir="rtl"] .knowledge-body td {
	text-align: right;
}

.knowledge-body th {
	color: #10263f;
	font-weight: 900;
	background: #eef5ff;
}

.knowledge-body tr:last-child td {
	border-bottom: 0;
}

.knowledge-body .wp-block-table {
	overflow-x: auto;
}

.knowledge-body details {
	margin: 14px 0;
	padding: 0;
	background: #ffffff;
	border: 1px solid #d9e3ee;
	border-radius: var(--radius);
	box-shadow: 0 10px 24px rgba(10, 31, 68, 0.05);
	overflow: hidden;
}

.knowledge-body summary {
	padding: 18px 20px;
	color: #10263f;
	font-weight: 900;
	cursor: pointer;
}

.knowledge-body details > *:not(summary) {
	margin-right: 20px;
	margin-left: 20px;
}

.knowledge-body details > *:last-child {
	margin-bottom: 20px;
}

.knowledge-body .wp-block-code,
.knowledge-body pre {
	padding: 18px;
	color: #d7e8ff;
	background: #08182c;
	border-radius: var(--radius);
	overflow-x: auto;
}

.knowledge-body .wp-block-separator {
	margin: 44px 0;
	border: 0;
	border-top: 1px solid #e3ebf4;
}

.knowledge-page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 34px;
}

.knowledge-page-links a,
.knowledge-page-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
	background: #eef5ff;
	border: 1px solid #cfe2f7;
	border-radius: 6px;
}

.knowledge-related-section {
	padding: 88px 0;
	background: #ffffff;
	border-top: 1px solid #e3ebf4;
}

.knowledge-section-head {
	max-width: 680px;
	margin-bottom: 30px;
}

.knowledge-section-head h2 {
	margin: 0;
	color: #071421;
	font-size: 34px;
	line-height: 1.18;
}

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

.knowledge-related-card {
	display: grid;
	align-content: start;
	gap: 12px;
	min-height: 210px;
	padding: 24px;
	background: #f7f9fc;
	border: 1px solid #d9e3ee;
	border-radius: var(--radius);
	box-shadow: 0 16px 38px rgba(10, 31, 68, 0.06);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.knowledge-related-card:hover,
.knowledge-related-card:focus-visible {
	transform: translateY(-3px);
	border-color: rgba(18, 103, 241, 0.28);
	box-shadow: 0 22px 50px rgba(10, 31, 68, 0.1);
	outline: none;
}

.knowledge-related-card span {
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
	text-transform: uppercase;
}

.knowledge-related-card strong {
	color: #10263f;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.28;
}

.knowledge-related-card small {
	color: #5f7084;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.62;
}

.knowledge-contact-section {
	padding: 0 0 96px;
	background: #ffffff;
}

.knowledge-contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 34px;
	align-items: center;
	padding: 38px;
	background: linear-gradient(135deg, #eef6ff 0%, #ffffff 58%, #eefaf6 100%);
	border: 1px solid #cfe2f7;
	border-radius: var(--radius);
	box-shadow: 0 20px 54px rgba(10, 31, 68, 0.1);
}

.knowledge-contact-panel h2 {
	margin: 0 0 12px;
	color: #071421;
	font-size: 34px;
	line-height: 1.16;
}

.knowledge-contact-panel p:last-child {
	max-width: 720px;
	margin: 0;
	color: #40556d;
	font-size: 17px;
	line-height: 1.72;
}

.knowledge-contact-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

.knowledge-archive-hero {
	padding-bottom: 0;
}

.knowledge-archive-hero__copy {
	max-width: 820px;
}

.knowledge-archive-hero__copy h1 {
	margin: 0 0 20px;
	color: #071421;
	font-size: 52px;
	line-height: 1.08;
}

.knowledge-archive-hero__copy p:not(.eyebrow):not(.knowledge-eyebrow) {
	max-width: 760px;
	margin: 0;
	color: rgba(235, 243, 255, 0.82);
	font-size: 19px;
	line-height: 1.76;
}

.knowledge-archive-list-section {
	padding: 86px 0 96px;
	background: #ffffff;
	border-top: 1px solid #e3ebf4;
}

.knowledge-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.knowledge-archive-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: #f7f9fc;
	border: 1px solid #d9e3ee;
	border-radius: var(--radius);
	box-shadow: 0 16px 40px rgba(10, 31, 68, 0.07);
	overflow: hidden;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.knowledge-archive-card:hover,
.knowledge-archive-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(18, 103, 241, 0.28);
	box-shadow: 0 22px 54px rgba(10, 31, 68, 0.11);
}

.knowledge-archive-card__media {
	display: block;
	aspect-ratio: 1.62 / 1;
	background: #eaf1f8;
	overflow: hidden;
}

.knowledge-archive-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.knowledge-archive-card:hover .knowledge-archive-card__media img,
.knowledge-archive-card:focus-within .knowledge-archive-card__media img {
	transform: scale(1.04);
}

.knowledge-archive-card__body {
	display: grid;
	align-content: start;
	gap: 14px;
	padding: 24px;
}

.knowledge-archive-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	color: #6a7d93;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
}

.knowledge-archive-card__meta span {
	color: var(--blue);
}

.knowledge-archive-card h2 {
	margin: 0;
	color: #10263f;
	font-size: 22px;
	line-height: 1.25;
}

.knowledge-archive-card h2 a:hover,
.knowledge-archive-card h2 a:focus-visible {
	color: var(--blue);
	outline: none;
}

.knowledge-archive-card p {
	margin: 0;
	color: #5f7084;
	font-size: 15px;
	line-height: 1.68;
}

.knowledge-archive-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.35;
}

.knowledge-archive-card__link svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.knowledge-archive-card__link:hover svg,
.knowledge-archive-card__link:focus-visible svg {
	transform: translateX(3px);
}

body[dir="rtl"] .knowledge-archive-card__link:hover svg,
body[dir="rtl"] .knowledge-archive-card__link:focus-visible svg {
	transform: translateX(-3px);
}

.knowledge-archive-empty {
	padding: 34px;
	color: #5f7084;
	background: #f7f9fc;
	border: 1px solid #d9e3ee;
	border-radius: var(--radius);
}

.knowledge-button--outline {
	color: var(--blue);
	background: #ffffff;
	border-color: #bdd8f6;
	box-shadow: none;
}

.knowledge-button--outline:hover,
.knowledge-button--outline:focus-visible {
	color: #ffffff;
	background: var(--blue);
	border-color: var(--blue);
}

@media (max-width: 1180px) {
	.knowledge-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
		gap: 36px;
	}

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

	.knowledge-sidebar {
		position: static;
		grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
	}
}

@media (max-width: 900px) {
	.knowledge-hero__grid,
	.knowledge-answer-card,
	.knowledge-contact-panel {
		grid-template-columns: 1fr;
	}

	.knowledge-hero__media {
		max-width: 620px;
	}

	.knowledge-quick-facts,
	.knowledge-takeaways,
	.knowledge-archive-grid,
	.knowledge-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.knowledge-quick-facts div:nth-child(2) {
		border-right: 0;
	}

	body[dir="rtl"] .knowledge-quick-facts div:nth-child(2) {
		border-left: 0;
	}

	.knowledge-quick-facts div:nth-child(n+3) {
		border-top: 1px solid rgba(217, 227, 238, 0.88);
	}

	.knowledge-contact-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 760px) {
	.knowledge-hero {
		padding-top: 34px;
	}

	.knowledge-hero__inner {
		padding-bottom: 42px;
	}

	.knowledge-hero h1 {
		font-size: 36px;
		line-height: 1.16;
	}

	.knowledge-hero__summary {
		font-size: 16px;
		line-height: 1.72;
	}

	.knowledge-meta {
		display: grid;
		gap: 9px;
	}

	.knowledge-meta span + span::before {
		display: none;
	}

	.knowledge-quick-facts,
	.knowledge-sidebar,
	.knowledge-takeaways,
	.knowledge-archive-grid,
	.knowledge-related-grid {
		grid-template-columns: 1fr;
	}

	.knowledge-quick-facts div,
	body[dir="rtl"] .knowledge-quick-facts div {
		min-height: auto;
		border-right: 0;
		border-left: 0;
		border-top: 1px solid rgba(217, 227, 238, 0.88);
	}

	.knowledge-quick-facts div:first-child,
	body[dir="rtl"] .knowledge-quick-facts div:first-child {
		border-top: 0;
	}

	.knowledge-layout-section,
	.knowledge-archive-list-section,
	.knowledge-related-section {
		padding: 68px 0;
	}

	.knowledge-body,
	.knowledge-answer-card,
	.knowledge-contact-panel {
		padding: 24px;
	}

	.knowledge-body h2 {
		font-size: 26px;
	}

	.knowledge-body h3 {
		font-size: 21px;
	}

	.knowledge-body p,
	.knowledge-body li {
		font-size: 16px;
		line-height: 1.78;
	}

	.knowledge-section-head h2,
	.knowledge-archive-hero__copy h1,
	.knowledge-contact-panel h2 {
		font-size: 28px;
	}

	.knowledge-archive-hero__copy p:not(.eyebrow):not(.knowledge-eyebrow) {
		font-size: 16px;
		line-height: 1.72;
	}

	.knowledge-contact-section {
		padding-bottom: 72px;
	}
}

@media (max-width: 420px) {
	.knowledge-hero h1 {
		font-size: 32px;
	}

	.knowledge-contact-actions,
	.knowledge-contact-actions .button {
		width: 100%;
	}
}

/* Knowledge archive redesign */
.knowledge-archive {
	background: #f4f7fb;
	color: var(--ink);
}

.knowledge-archive-hero {
	min-height: var(--banner-page-height);
	color: var(--white);
	background-position: center;
	background-size: cover;
	border-bottom: 1px solid var(--banner-border);
}

.knowledge-archive-hero__inner {
	display: grid;
	align-content: center;
	gap: 36px;
	min-height: var(--banner-page-height);
	padding: 76px 0 68px;
}

.knowledge-archive .knowledge-archive-breadcrumb,
.knowledge-archive .knowledge-archive-breadcrumb a {
	color: rgba(214, 226, 242, 0.7);
}

.knowledge-archive .knowledge-archive-breadcrumb a:hover,
.knowledge-archive .knowledge-archive-breadcrumb a:focus-visible {
	color: #64d6ff;
}

.knowledge-archive .knowledge-archive-breadcrumb strong {
	color: var(--white);
}

.knowledge-archive-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 52px;
	align-items: end;
}

.knowledge-archive-hero__copy {
	max-width: 820px;
}

.knowledge-archive .knowledge-archive-hero__copy p.eyebrow.eyebrow--dark {
	color: #64d6ff;
	text-shadow: 0 1px 12px rgba(8, 34, 70, 0.26);
}

.knowledge-archive-hero__copy h1 {
	max-width: 780px;
	margin: 0 0 20px;
	color: var(--white);
	font-size: 56px;
	line-height: 1.08;
	letter-spacing: 0;
}

.knowledge-archive-hero__copy p:not(.eyebrow) {
	max-width: 760px;
	margin: 0;
	color: rgba(235, 243, 255, 0.76);
	font-size: 18px;
	line-height: 1.78;
}

.knowledge-archive-hero__actions {
	margin-top: 30px;
}

.knowledge-archive-search-card {
	padding: 22px;
	background: var(--banner-panel-bg);
	border: 1px solid var(--banner-border);
	border-radius: var(--radius);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(14px);
}

.knowledge-archive-search {
	position: relative;
	display: flex;
	align-items: center;
	color: rgba(210, 224, 242, 0.78);
}

.knowledge-archive-search svg {
	position: absolute;
	left: 17px;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
}

body[dir="rtl"] .knowledge-archive-search svg {
	right: 17px;
	left: auto;
}

.knowledge-archive-search input {
	width: 100%;
	min-height: 50px;
	padding: 0 18px 0 48px;
	color: var(--white);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(194, 218, 246, 0.18);
	border-radius: 6px;
	outline: none;
}

body[dir="rtl"] .knowledge-archive-search input {
	padding: 0 48px 0 18px;
}

.knowledge-archive-search input::placeholder {
	color: rgba(225, 236, 250, 0.48);
}

.knowledge-archive-search input:focus {
	border-color: rgba(100, 214, 255, 0.7);
	box-shadow: 0 0 0 4px rgba(100, 214, 255, 0.12);
}

.knowledge-archive-hero__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 16px;
}

.knowledge-archive-hero__stats div {
	min-height: 78px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid var(--banner-border);
	border-radius: 6px;
}

.knowledge-archive-hero__stats strong {
	display: block;
	color: #64d6ff;
	font-size: 25px;
	font-weight: 900;
	line-height: 1.05;
}

.knowledge-archive-hero__stats span {
	display: block;
	margin-top: 8px;
	color: rgba(235, 243, 255, 0.66);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
}

.knowledge-archive-tabs {
	background: var(--white);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 12px 28px rgba(10, 31, 68, 0.04);
}

.knowledge-archive-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 0;
}

.knowledge-archive-filters button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 16px;
	color: #253b56;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	background: #f7f9fc;
	border: 1px solid var(--line);
	border-radius: 6px;
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.knowledge-archive-filters button small {
	color: var(--blue);
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
}

.knowledge-archive-filters button:hover,
.knowledge-archive-filters button:focus-visible,
.knowledge-archive-filters button.is-active {
	color: var(--white);
	background: var(--blue);
	border-color: var(--blue);
	box-shadow: 0 10px 24px rgba(18, 103, 241, 0.2);
	outline: none;
}

.knowledge-archive-filters button:hover small,
.knowledge-archive-filters button:focus-visible small,
.knowledge-archive-filters button.is-active small {
	color: rgba(255, 255, 255, 0.72);
}

.knowledge-archive-overview,
.knowledge-category-section,
.knowledge-featured-section,
.knowledge-latest-section,
.knowledge-guide-section,
.knowledge-problem-section,
.knowledge-products-section {
	padding: 74px 0;
}

.knowledge-archive-overview {
	background: #f4f7fb;
}

.knowledge-overview-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 34px;
	align-items: center;
}

.knowledge-overview-copy h2,
.knowledge-latest-head h2,
.knowledge-section-head h2 {
	margin: 0;
	color: #071421;
	font-size: 34px;
	line-height: 1.18;
	letter-spacing: 0;
}

.knowledge-overview-copy p:not(.knowledge-section-kicker) {
	margin: 16px 0 0;
	color: #40556d;
	font-size: 16px;
	line-height: 1.76;
}

.knowledge-overview-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.knowledge-overview-points div {
	display: grid;
	grid-template-columns: 14px minmax(0, 1fr);
	gap: 10px;
	min-height: 84px;
	padding: 16px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 28px rgba(10, 31, 68, 0.05);
}

.knowledge-overview-points span {
	width: 10px;
	height: 10px;
	margin-top: 8px;
	background: var(--blue);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(18, 103, 241, 0.12);
}

.knowledge-overview-points p {
	margin: 0;
	color: #31455f;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.58;
}

.knowledge-category-section,
.knowledge-latest-section,
.knowledge-products-section {
	background: var(--white);
	border-top: 1px solid #e3ebf4;
}

.knowledge-section-head {
	max-width: 720px;
	margin-bottom: 28px;
}

.knowledge-section-head--dark h2,
.knowledge-section-head--dark p:not(.knowledge-section-kicker) {
	color: var(--white);
}

.knowledge-section-head--dark p:not(.knowledge-section-kicker) {
	max-width: 720px;
	margin: 12px 0 0;
	color: rgba(235, 243, 255, 0.68);
	font-size: 15px;
	line-height: 1.7;
}

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

.knowledge-category-card {
	position: relative;
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) auto;
	gap: 7px 12px;
	min-height: 126px;
	padding: 18px;
	text-align: left;
	background: #f7f9fc;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 28px rgba(10, 31, 68, 0.05);
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

body[dir="rtl"] .knowledge-category-card {
	text-align: right;
}

.knowledge-category-card:hover,
.knowledge-category-card:focus-visible {
	transform: translateY(-3px);
	background: var(--white);
	border-color: rgba(18, 103, 241, 0.32);
	box-shadow: 0 18px 42px rgba(10, 31, 68, 0.1);
	outline: none;
}

.knowledge-category-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--blue);
	background: #eef5ff;
	border: 1px solid rgba(18, 103, 241, 0.18);
	border-radius: 8px;
}

.knowledge-category-card__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.knowledge-category-card--refractory .knowledge-category-card__icon,
.knowledge-category-card--logistics .knowledge-category-card__icon {
	color: #b86b12;
	background: #fff6e8;
	border-color: rgba(242, 162, 58, 0.26);
}

.knowledge-category-card--coating .knowledge-category-card__icon,
.knowledge-category-card--problems .knowledge-category-card__icon {
	color: #0b8a62;
	background: #ecfbf5;
	border-color: rgba(20, 169, 109, 0.22);
}

.knowledge-category-card strong {
	align-self: center;
	color: #10263f;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.3;
}

.knowledge-category-card small {
	align-self: center;
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
}

.knowledge-category-card p {
	grid-column: 1 / -1;
	margin: 4px 0 0;
	color: #61748a;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.55;
}

.knowledge-featured-section,
.knowledge-guide-section,
.knowledge-problem-section {
	background: #f4f7fb;
	border-top: 1px solid #e3ebf4;
}

.knowledge-featured-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

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

.knowledge-featured-grid--1 {
	grid-template-columns: minmax(0, 1fr);
}

.knowledge-featured-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 16px 38px rgba(10, 31, 68, 0.08);
	overflow: hidden;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.knowledge-featured-card:hover,
.knowledge-featured-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(18, 103, 241, 0.32);
	box-shadow: 0 22px 52px rgba(10, 31, 68, 0.12);
}

.knowledge-featured-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1.56 / 1;
	background: #eaf1f8;
	overflow: hidden;
}

.knowledge-featured-card__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(7, 20, 33, 0.02) 40%, rgba(7, 20, 33, 0.62) 100%);
	pointer-events: none;
}

.knowledge-featured-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
	transition: transform 240ms ease;
}

.knowledge-featured-card:hover .knowledge-featured-card__media img,
.knowledge-featured-card:focus-within .knowledge-featured-card__media img {
	transform: scale(1.035);
}

.knowledge-featured-card__media span {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	color: var(--white);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	background: var(--blue);
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(18, 103, 241, 0.32);
}

body[dir="rtl"] .knowledge-featured-card__media span {
	right: auto;
	left: 14px;
}

.knowledge-featured-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.knowledge-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-bottom: 12px;
	color: #6a7d93;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
}

.knowledge-article-meta span {
	color: var(--blue);
}

.knowledge-featured-card h3,
.knowledge-latest-card h3,
.knowledge-guide-card h3,
.knowledge-product-card h3,
.knowledge-document-card h3 {
	margin: 0;
	color: #10263f;
	font-size: 20px;
	line-height: 1.28;
	letter-spacing: 0;
}

.knowledge-featured-card h3 a:hover,
.knowledge-featured-card h3 a:focus-visible,
.knowledge-latest-card h3 a:hover,
.knowledge-latest-card h3 a:focus-visible {
	color: var(--blue);
	outline: none;
}

.knowledge-featured-card p,
.knowledge-latest-card p,
.knowledge-guide-card p,
.knowledge-product-card p,
.knowledge-document-card p {
	color: #5f7084;
	font-size: 14px;
	line-height: 1.66;
}

.knowledge-featured-card p {
	margin: 12px 0 18px;
}

.knowledge-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.35;
}

.knowledge-card-link svg,
.knowledge-guide-card button svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.knowledge-card-link:hover svg,
.knowledge-card-link:focus-visible svg,
.knowledge-guide-card button:hover svg,
.knowledge-guide-card button:focus-visible svg {
	transform: translateX(3px);
}

.knowledge-latest-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: end;
	margin-bottom: 26px;
}

.knowledge-archive-count {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
}

.knowledge-archive-count::before {
	display: inline-block;
	width: 4px;
	height: 24px;
	content: "";
	background: var(--blue);
	border-radius: 999px;
}

.knowledge-archive-count strong {
	color: var(--ink);
	font-weight: 900;
}

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

.knowledge-latest-card {
	display: flex;
	flex-direction: column;
	min-height: 224px;
	padding: 22px;
	background: #f7f9fc;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.knowledge-latest-card[hidden] {
	display: none !important;
}

.knowledge-latest-card:hover,
.knowledge-latest-card:focus-within {
	transform: translateY(-3px);
	background: var(--white);
	border-color: rgba(18, 103, 241, 0.32);
	box-shadow: 0 18px 42px rgba(10, 31, 68, 0.1);
}

.knowledge-latest-card__top,
.knowledge-latest-card__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 12px;
}

.knowledge-latest-card__top {
	margin-bottom: 12px;
	color: #6a7d93;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
}

.knowledge-latest-card__top span {
	color: var(--blue);
}

.knowledge-latest-card p {
	margin: 12px 0 18px;
}

.knowledge-latest-card__foot {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #e3ebf4;
}

.knowledge-latest-card__foot small {
	color: #7a8da3;
	font-size: 12px;
	font-weight: 900;
}

.knowledge-latest-card__foot a {
	color: var(--blue);
	font-size: 13px;
	font-weight: 900;
}

.knowledge-archive-empty {
	margin: 26px 0 0;
	padding: 28px;
	color: var(--muted);
	font-weight: 800;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.knowledge-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
}

.knowledge-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 13px;
	color: #40566f;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.knowledge-pagination a.page-numbers:hover,
.knowledge-pagination a.page-numbers:focus-visible,
.knowledge-pagination button.page-numbers:hover,
.knowledge-pagination button.page-numbers:focus-visible,
.knowledge-pagination .page-numbers.current {
	color: var(--white);
	background: var(--blue);
	border-color: var(--blue);
	outline: none;
}

.knowledge-pagination a.page-numbers:hover,
.knowledge-pagination a.page-numbers:focus-visible,
.knowledge-pagination button.page-numbers:hover,
.knowledge-pagination button.page-numbers:focus-visible {
	transform: translateY(-2px);
}

.knowledge-pagination button.page-numbers:disabled {
	color: #9aabba;
	background: #f4f7fa;
	border-color: #e2e9f0;
	cursor: not-allowed;
	transform: none;
}

.knowledge-industry-section,
.knowledge-documents-section {
	padding: 74px 0;
	color: var(--white);
	background: #071320;
	border-top: 1px solid rgba(125, 226, 255, 0.12);
}

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

.knowledge-industry-grid button {
	display: grid;
	gap: 8px;
	min-height: 92px;
	padding: 18px;
	text-align: left;
	background: #101f33;
	border: 1px solid rgba(125, 226, 255, 0.1);
	border-radius: 6px;
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

body[dir="rtl"] .knowledge-industry-grid button {
	text-align: right;
}

.knowledge-industry-grid button:hover,
.knowledge-industry-grid button:focus-visible {
	transform: translateY(-2px);
	background: #132943;
	border-color: rgba(100, 214, 255, 0.34);
	outline: none;
}

.knowledge-industry-grid strong {
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.35;
}

.knowledge-industry-grid span {
	color: rgba(216, 231, 249, 0.52);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.3;
}

.knowledge-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.knowledge-guide-card {
	display: flex;
	flex-direction: column;
	min-height: 270px;
	padding: 26px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 16px 38px rgba(10, 31, 68, 0.07);
}

.knowledge-guide-card > span {
	align-self: flex-start;
	min-height: 28px;
	margin-bottom: 18px;
	padding: 0 10px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 900;
	line-height: 28px;
	background: #eef5ff;
	border: 1px solid rgba(18, 103, 241, 0.18);
	border-radius: 6px;
}

.knowledge-guide-card p {
	margin: 12px 0 22px;
}

.knowledge-guide-card button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding: 0;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.knowledge-guide-card button:focus-visible {
	outline: 2px solid rgba(18, 103, 241, 0.32);
	outline-offset: 4px;
}

.knowledge-problem-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.knowledge-problem-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.knowledge-problem-list div {
	min-height: 76px;
	padding: 16px 18px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
}

.knowledge-problem-list strong {
	display: block;
	color: #10263f;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.35;
}

.knowledge-problem-list span {
	display: block;
	margin-top: 5px;
	color: #6a7d93;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.45;
}

.knowledge-faq-list {
	display: grid;
	gap: 10px;
}

.knowledge-faq-list details {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	box-shadow: 0 12px 26px rgba(10, 31, 68, 0.04);
	overflow: hidden;
}

.knowledge-faq-list summary {
	padding: 16px 18px;
	color: #10263f;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.45;
	cursor: pointer;
}

.knowledge-faq-list p {
	margin: 0;
	padding: 0 18px 18px;
	color: #5f7084;
	font-size: 14px;
	line-height: 1.66;
}

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

.knowledge-product-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: #f7f9fc;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 28px rgba(10, 31, 68, 0.05);
	overflow: hidden;
}

.knowledge-product-card img {
	width: 100%;
	aspect-ratio: 1.5 / 1;
	object-fit: cover;
	background: #eaf1f8;
}

.knowledge-product-card > div:not(.knowledge-product-card__actions) {
	padding: 18px 18px 14px;
}

.knowledge-product-card span {
	display: block;
	margin-bottom: 8px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
}

.knowledge-product-card h3 {
	font-size: 17px;
}

.knowledge-product-card p {
	margin: 10px 0 0;
}

.knowledge-product-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: auto;
	padding: 0 18px 18px;
}

.knowledge-product-card__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 10px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
	background: var(--white);
	border: 1px solid rgba(18, 103, 241, 0.28);
	border-radius: 6px;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.knowledge-product-card__actions a + a,
.knowledge-product-card__actions a:hover,
.knowledge-product-card__actions a:focus-visible {
	color: var(--white);
	background: var(--blue);
	border-color: var(--blue);
	outline: none;
}

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

.knowledge-document-card {
	display: flex;
	flex-direction: column;
	min-height: 210px;
	padding: 20px;
	background: #101f33;
	border: 1px solid rgba(125, 226, 255, 0.12);
	border-radius: var(--radius);
}

.knowledge-document-card span {
	align-self: flex-start;
	min-height: 26px;
	margin-bottom: 16px;
	padding: 0 9px;
	color: var(--white);
	font-size: 11px;
	font-weight: 900;
	line-height: 26px;
	background: var(--blue);
	border-radius: 6px;
}

.knowledge-document-card h3 {
	color: var(--white);
	font-size: 17px;
}

.knowledge-document-card p {
	margin: 10px 0 18px;
	color: rgba(216, 231, 249, 0.62);
}

.knowledge-document-card a {
	margin-top: auto;
	color: #64d6ff;
	font-size: 13px;
	font-weight: 900;
}

.knowledge-archive-contact {
	padding: 82px 0;
	color: var(--white);
	background: var(--banner-dark-bg);
}

.knowledge-archive-contact__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
	gap: 44px;
	align-items: center;
}

.knowledge-archive-contact h2 {
	max-width: 760px;
	margin: 0 0 14px;
	color: var(--white);
	font-size: 38px;
	line-height: 1.16;
	letter-spacing: 0;
}

.knowledge-archive-contact .eyebrow {
	color: #eef8ff;
	text-shadow: 0 1px 12px rgba(8, 34, 70, 0.24);
}

.knowledge-archive-contact p:not(.eyebrow) {
	max-width: 780px;
	margin: 0;
	color: rgba(238, 248, 255, 0.82);
	font-size: 16px;
	line-height: 1.72;
}

.knowledge-archive-contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.knowledge-archive-contact__features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.knowledge-archive-contact__features span {
	display: flex;
	align-items: center;
	min-height: 70px;
	padding: 16px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.35;
	background: var(--banner-panel-bg);
	border: 1px solid var(--banner-border);
	border-radius: 6px;
	backdrop-filter: blur(10px);
}

@media (max-width: 1180px) {
	.knowledge-archive-hero__grid,
	.knowledge-overview-grid,
	.knowledge-archive-contact__inner {
		grid-template-columns: 1fr;
	}

	.knowledge-archive-search-card {
		max-width: 640px;
	}

	.knowledge-category-grid,
	.knowledge-product-grid,
	.knowledge-documents-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 900px) {
	.knowledge-archive-hero,
	.knowledge-archive-hero__inner {
		min-height: var(--banner-mobile-height);
	}

	.knowledge-archive-hero__inner {
		padding: 58px 0 46px;
	}

	.knowledge-archive-hero__copy h1 {
		font-size: 42px;
	}

	.knowledge-industry-grid,
	.knowledge-guide-grid,
	.knowledge-problem-grid {
		grid-template-columns: 1fr;
	}

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

	.knowledge-latest-head {
		grid-template-columns: 1fr;
		align-items: start;
	}
}

@media (max-width: 760px) {
	.knowledge-archive-overview,
	.knowledge-category-section,
	.knowledge-featured-section,
	.knowledge-latest-section,
	.knowledge-guide-section,
	.knowledge-problem-section,
	.knowledge-products-section,
	.knowledge-industry-section,
	.knowledge-documents-section,
	.knowledge-archive-contact {
		padding: 58px 0;
	}

	.knowledge-archive-hero__copy h1 {
		font-size: 34px;
		line-height: 1.16;
	}

	.knowledge-archive-hero__copy p:not(.eyebrow) {
		font-size: 16px;
		line-height: 1.72;
	}

	.knowledge-archive-filters {
		flex-wrap: nowrap;
		margin: 0 -28px;
		padding: 14px 28px;
		overflow-x: auto;
		scroll-padding: 28px;
	}

	body[dir="rtl"] .knowledge-archive-filters {
		margin: 0 -28px;
	}

	.knowledge-archive-filters button {
		flex: 0 0 auto;
	}

	.knowledge-archive-hero__stats,
	.knowledge-overview-points,
	.knowledge-category-grid,
	.knowledge-featured-grid,
	.knowledge-latest-grid,
	.knowledge-problem-list,
	.knowledge-product-grid,
	.knowledge-documents-grid,
	.knowledge-archive-contact__features {
		grid-template-columns: 1fr;
	}

	.knowledge-overview-copy h2,
	.knowledge-latest-head h2,
	.knowledge-section-head h2,
	.knowledge-archive-contact h2 {
		font-size: 28px;
	}

	.knowledge-featured-card h3,
	.knowledge-latest-card h3 {
		font-size: 19px;
	}
}

@media (max-width: 420px) {
	.knowledge-archive-hero__actions,
	.knowledge-archive-hero__actions .button,
	.knowledge-archive-contact__actions,
	.knowledge-archive-contact__actions .button {
		width: 100%;
	}

	.knowledge-archive-search-card,
	.knowledge-guide-card,
	.knowledge-latest-card {
		padding: 18px;
	}
}

/* Crawlable topic hubs */
.topic-hero{padding:clamp(7rem,12vw,10rem) 0 clamp(4rem,7vw,6rem);background:linear-gradient(135deg,#071a31 0%,#123f6c 60%,#1b648f 100%);color:#fff}
.topic-hero__inner{max-width:980px}.topic-breadcrumb{margin-bottom:2.5rem;color:rgba(255,255,255,.72)}.topic-breadcrumb a{color:#fff}.topic-hero .eyebrow{color:#8fd8ff}.topic-hero h1{max-width:900px;margin:.5rem 0 1.25rem;color:#fff;font-size:clamp(2.3rem,5vw,4.5rem);line-height:1.08}.topic-hero__summary{max-width:820px;margin:0;color:rgba(255,255,255,.84);font-size:clamp(1.05rem,1.6vw,1.28rem);line-height:1.8}
.topic-section{padding:clamp(4rem,7vw,6.5rem) 0}.topic-section--muted{background:#f4f7fa}.topic-section__header{display:flex;align-items:end;justify-content:space-between;gap:2rem;margin-bottom:2rem}.topic-section__header h2{margin:0;font-size:clamp(1.8rem,3vw,2.7rem)}.topic-section__header>a{flex:none;font-weight:700;text-decoration:none}.topic-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem}.topic-card{overflow:hidden;background:#fff;border:1px solid rgba(10,42,72,.1);border-radius:1rem;box-shadow:0 12px 35px rgba(8,35,60,.07)}.topic-card__media{display:block;aspect-ratio:16/9;overflow:hidden;background:#e9eef3}.topic-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.topic-card:hover .topic-card__media img{transform:scale(1.035)}.topic-card__body{padding:1.4rem}.topic-card__tag{display:inline-block;margin-bottom:.65rem;color:#156096;font-size:.78rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase}.topic-card h3{margin:0 0 .75rem;font-size:1.23rem;line-height:1.35}.topic-card h3 a{color:inherit;text-decoration:none}.topic-card p{margin:0 0 1rem;color:#536273;line-height:1.7}.topic-card__link{font-weight:750;text-decoration:none}.topic-empty{padding:2rem;background:#fff;border:1px dashed #bdc8d3;border-radius:.8rem;color:#657383}.topic-cta{padding:4.5rem 0;background:#071a31;color:#fff}.topic-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:3rem}.topic-cta h2{margin:0 0 .6rem;color:#fff}.topic-cta p{max-width:760px;margin:0;color:rgba(255,255,255,.75);line-height:1.7}
@media (max-width:900px){.topic-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.topic-cta__inner{align-items:flex-start;flex-direction:column}}
@media (max-width:620px){.topic-section__header{align-items:flex-start;flex-direction:column;gap:.75rem}.topic-card-grid{grid-template-columns:1fr}.topic-cta__inner{gap:1.5rem}}
.knowledge-evidence{margin:2.5rem 0 0;padding:1.5rem 1.75rem;background:#f4f7fa;border-left:4px solid var(--blue);border-radius:.5rem}.knowledge-evidence p{margin:0 0 1rem}.knowledge-evidence h2{margin:0 0 .75rem;font-size:1.2rem}.knowledge-evidence ol{margin:0;padding-left:1.4rem}.knowledge-evidence a{color:var(--blue);text-decoration:underline;text-underline-offset:3px}

/* GEO phase 2: technical evidence and cross-content relationships. */
.msili-trust-section {
	padding: 1.4rem 0;
	background: #0b223f;
	color: #fff;
}

.msili-trust-panel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 12px;
	background: rgba(255,255,255,.12);
}

.msili-trust-panel > div {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	padding: 1rem 1.15rem;
	background: #0b223f;
}

.msili-trust-panel span { color: #a9bdd1; font-size: .76rem; }
.msili-trust-panel strong { color: #fff; font-size: .92rem; line-height: 1.4; }

.msili-documents-section,
.msili-relations-section {
	padding: clamp(3.5rem, 7vw, 6.5rem) 0;
	background: #f5f8fb;
}

.msili-relations-section {
	background: #fff;
}

.msili-relations-heading {
	max-width: 760px;
	margin-bottom: 2rem;
}

.msili-relations-heading h2 {
	margin: .45rem 0 0;
	font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.msili-document-grid,
.msili-relation-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.1rem;
}

.msili-document-card,
.msili-relation-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid #dce5ed;
	border-radius: 16px;
	background: #fff;
	color: #10243e;
	text-decoration: none;
	overflow: hidden;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.msili-document-card {
	padding: 1.4rem;
}

.msili-document-card:hover,
.msili-relation-card:hover {
	transform: translateY(-3px);
	border-color: var(--blue);
	box-shadow: 0 16px 36px rgba(16, 36, 62, .1);
}

.msili-document-card > span,
.msili-relation-card > span {
	align-self: flex-start;
	margin-bottom: .8rem;
	padding: .3rem .55rem;
	border-radius: 999px;
	background: #e9f0f6;
	color: #30516f;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.msili-document-card strong,
.msili-relation-card strong {
	font-size: 1.05rem;
	line-height: 1.45;
}

.msili-document-card small,
.msili-relation-card small {
	margin-top: .65rem;
	color: #65778a;
	line-height: 1.65;
}

.msili-document-card em {
	margin-top: 1.25rem;
	color: #dd6910;
	font-size: .86rem;
	font-style: normal;
	font-weight: 800;
}

.msili-document-card--request {
	border-style: dashed;
}

.msili-relation-group + .msili-relation-group {
	margin-top: 2.25rem;
}

.msili-relation-group > h3 {
	margin: 0 0 1rem;
	font-size: 1.15rem;
}

.msili-relation-card {
	padding: 0 1.2rem 1.25rem;
}

.msili-relation-card img {
	width: calc(100% + 2.4rem);
	height: 170px;
	margin: 0 -1.2rem 1.15rem;
	object-fit: cover;
}

@media (max-width: 900px) {
	.msili-document-grid,
	.msili-relation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
	.msili-document-grid,
	.msili-relation-grid { grid-template-columns: 1fr; }
}

.solution-article-body {
	font-size: 1.04rem;
	line-height: 1.85;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.solution-article-body p {
	max-width: 72ch;
	text-wrap: pretty;
}

.solution-article-body li {
	line-height: 1.7;
}

html[lang^="zh"] .solution-article-body p,
html[lang^="ja"] .solution-article-body p,
html[lang^="ko"] .solution-article-body p {
	max-width: 46em;
}

.topic-hero__nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	max-width: 900px;
	margin-top: 32px;
}

.topic-hero__nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 58px;
	padding: 12px 16px;
	color: #fff;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.topic-hero__nav a:hover,
.topic-hero__nav a:focus-visible {
	color: #fff;
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(143, 216, 255, 0.68);
	transform: translateY(-2px);
}

.topic-hero__nav span {
	font-size: 14px;
	font-weight: 750;
	line-height: 1.35;
}

.topic-hero__nav strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	min-width: 28px;
	height: 28px;
	padding: 0 7px;
	color: #0b3458;
	font-size: 12px;
	background: #8fd8ff;
	border-radius: 999px;
}

@media (max-width: 760px) {
	.topic-hero__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 420px) {
	.topic-hero__nav {
		grid-template-columns: 1fr;
	}
}

/* English Zr-102: editorial spacing and readable card proportions. */
body.postid-1581 .product-detail {
	--zr-section-space: clamp(72px, 7vw, 92px);
}

body.postid-1581 .product-detail-hero {
	padding: 56px 0 38px;
}

body.postid-1581 .product-detail-hero__grid {
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
	gap: clamp(44px, 5vw, 68px);
	align-items: center;
}

body.postid-1581 .product-detail-hero h1 {
	max-width: 680px;
	margin-bottom: 14px;
	font-size: clamp(40px, 4.1vw, 54px);
	line-height: 1.06;
	letter-spacing: -0.025em;
}

body.postid-1581 .product-detail-hero__subtitle {
	max-width: 680px;
	margin-bottom: 18px;
	font-size: clamp(20px, 2vw, 25px);
	line-height: 1.3;
}

body.postid-1581 .product-detail-hero__summary {
	max-width: 66ch;
	margin-bottom: 24px;
	font-size: 17px;
	line-height: 1.78;
}

body.postid-1581 .product-detail-hero__image {
	aspect-ratio: 4 / 3.35;
}

body.postid-1581 .product-quick-stats {
	margin-top: 26px;
	padding: 14px 18px;
}

body.postid-1581 .product-quick-stat {
	min-height: 68px;
	padding: 8px 22px;
}

body.postid-1581 .product-quick-stat span {
	margin-bottom: 7px;
}

body.postid-1581 .product-quick-stat strong {
	font-size: clamp(18px, 1.7vw, 22px);
	line-height: 1.28;
}

body.postid-1581 .product-detail .product-overview-section,
body.postid-1581 .product-features-section,
body.postid-1581 .product-performance-section,
body.postid-1581 .product-applications-section,
body.postid-1581 .product-standards-section,
body.postid-1581 .product-related-section,
body.postid-1581 .product-contact-section,
body.postid-1581 .product-technical-section,
body.postid-1581 .product-package-section {
	padding: var(--zr-section-space) 0;
}

body.postid-1581 .section-heading {
	margin-bottom: 36px;
}

body.postid-1581 .section-heading h2 {
	font-size: clamp(28px, 3vw, 36px);
	line-height: 1.22;
	letter-spacing: -0.015em;
}

body.postid-1581 .product-overview-grid {
	grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
	gap: clamp(44px, 5vw, 66px);
	align-items: start;
}

body.postid-1581 .product-rich-text p {
	max-width: 68ch;
	margin-bottom: 18px;
	line-height: 1.82;
}

body.postid-1581 .product-feature-grid,
body.postid-1581 .product-application-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

body.postid-1581 .product-feature-card,
body.postid-1581 .product-application-card {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	column-gap: 18px;
	row-gap: 8px;
	align-content: start;
	padding: 28px;
}

body.postid-1581 .product-feature-card__icon,
body.postid-1581 .product-application-card > span {
	grid-row: 1 / span 2;
	width: 48px;
	height: 48px;
	margin: 0;
}

body.postid-1581 .product-feature-card h3,
body.postid-1581 .product-application-card h3 {
	margin: 0;
	font-size: 19px;
	line-height: 1.35;
}

body.postid-1581 .product-feature-card p,
body.postid-1581 .product-application-card p {
	grid-column: 2;
	line-height: 1.75;
}

body.postid-1581 .product-technical-table th,
body.postid-1581 .product-technical-table td {
	padding: 16px 22px;
}

body.postid-1581 .product-package-card {
	flex-direction: column;
}

body.postid-1581 .product-package-card__media {
	width: 100%;
	aspect-ratio: 16 / 9;
}

body.postid-1581 .product-package-card__body {
	padding: 24px;
}

body.postid-1581 .product-stats-section {
	padding: 64px 0;
}

body.postid-1581 .product-stats-panel {
	grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
	gap: 36px;
}

body.postid-1581 .product-stats-grid {
	gap: 14px;
}

body.postid-1581 .product-stats-section .product-stat-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 146px;
	padding: 24px 20px;
}

body.postid-1581 .product-stats-section .product-stat-card strong {
	font-size: clamp(30px, 3vw, 38px);
	letter-spacing: -0.02em;
}

body.postid-1581 .product-stats-section .product-stat-card span {
	font-size: 13px;
	line-height: 1.5;
}

@media (max-width: 1180px) {
	body.postid-1581 .product-detail-hero__grid,
	body.postid-1581 .product-overview-grid {
		grid-template-columns: 1fr;
	}

	body.postid-1581 .product-stats-panel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	body.postid-1581 .product-detail-hero {
		padding: 48px 0 36px;
	}

	body.postid-1581 .product-detail-hero h1 {
		font-size: clamp(34px, 10vw, 42px);
	}

	body.postid-1581 .product-feature-grid,
	body.postid-1581 .product-application-grid {
		grid-template-columns: 1fr;
	}

	body.postid-1581 .product-feature-card,
	body.postid-1581 .product-application-card {
		padding: 24px 22px;
	}

	body.postid-1581 .product-package-grid {
		grid-template-columns: 1fr;
	}
}
