:root {
	--bg: #020405;
	--bg-soft: #050a0d;
	--card: #060b0e;
	--card-2: #081116;
	--accent: #00c7f2;
	--accent-2: #0186ab;
	--text: #f4f8fa;
	--muted: #94a3aa;
	--line: rgba(0, 199, 242, .26);
	--line-strong: rgba(0, 199, 242, .58);
	--shadow: 0 24px 70px rgba(0, 0, 0, .42);
	--shell: 2200px;
	--shell-space: clamp(28px, 6vw, 120px);
	--radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background:
		radial-gradient(circle at 80% 0%, rgba(0, 124, 165, .08), transparent 28rem),
		var(--bg);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-shell {
	width: min(var(--shell), calc(100% - var(--shell-space)));
	margin-inline: auto;
}
.site-shell--narrow { max-width: 920px; }

.site-main { min-height: 60vh; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(2, 4, 5, .86);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(18px);
}
.admin-bar .site-header { top: 32px; }
.site-header__inner {
	min-height: 82px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(22px, 2.4vw, 52px);
}
.site-brand__image-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}
.site-brand__image {
	width: clamp(205px, 18vw, 278px);
	height: auto;
}
.site-brand__image--footer { width: min(265px, 100%); }
.custom-logo { max-height: 46px; width: auto; }
.site-nav { justify-self: end; }
.site-nav__list {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-nav__list a {
	color: #d5dde0;
	font-size: 14px;
	text-decoration: none;
	transition: color .2s ease;
}
.site-nav__list a:hover,
.site-nav__list .current-menu-item > a { color: var(--accent); }
.site-nav-toggle { display: none; }

.account-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid var(--line-strong);
	border-radius: 4px;
	color: var(--accent);
	text-decoration: none;
	background: rgba(0, 199, 242, .04);
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.account-button:hover {
	transform: translateY(-2px);
	border-color: var(--accent);
	background: rgba(0, 199, 242, .1);
}
.account-button__icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.account-button span {
	font-size: 13px;
	font-weight: 700;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid var(--accent);
	border-radius: 4px;
	background: linear-gradient(180deg, #10c9ef, #008fbb);
	color: #001319;
	font-weight: 750;
	text-decoration: none;
	box-shadow: 0 0 26px rgba(0, 199, 242, .18);
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 34px rgba(0, 199, 242, .24);
	filter: brightness(1.08);
}
.button--outline {
	background: rgba(0, 0, 0, .16);
	color: var(--text);
	box-shadow: none;
}
.button--small {
	min-height: 44px;
	padding-inline: 18px;
	font-size: 14px;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: clamp(620px, 37.5vw, 820px);
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--line);
	background-color: #020405;
	background-image: url("../images/hero-production-background.png");
	background-position: center top;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
.hero::before {
	content: none;
}
.hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 28px;
	height: 1px;
	background: linear-gradient(90deg, transparent 0 8%, var(--line-strong) 8% 24%, transparent 24% 86%, var(--accent) 86% 86.4%, transparent 86.4%);
}
.hero__grid-bg {
	display: none;
}
.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 760px);
	align-items: center;
	padding-block: clamp(82px, 7vw, 132px) clamp(100px, 8vw, 150px);
}
.hero__copy {
	position: relative;
	max-width: 980px;
	padding: 0;
}

.hero h1 {
	max-width: 960px;
	margin: 0;
	font-size: clamp(44px, 4.7vw, 78px);
	line-height: 1.02;
	letter-spacing: -.035em;
	text-transform: uppercase;
}
.hero h1 span { color: var(--accent); }
.hero__lead {
	max-width: 610px;
	margin: 28px 0 0;
	color: #a8b4b9;
	font-size: clamp(17px, 1.8vw, 20px);
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 34px;
}


.section {
	position: relative;
	padding: clamp(58px, 5vw, 96px) 0;
}
.section--compact { padding-top: 56px; }
.section--catalog { padding-top: 44px; }
.section--numbers { border-block: 1px solid rgba(0, 199, 242, .14); }
.section-heading {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 34px;
}
.section-heading::after {
	content: "";
	height: 1px;
	flex: 1;
	background: linear-gradient(90deg, var(--line-strong), transparent);
}
.section-heading h2 {
	margin: 0;
	font-size: clamp(22px, 2vw, 31px);
	line-height: 1.15;
	letter-spacing: .02em;
	text-transform: uppercase;
}
.section-heading--link a {
	margin-left: auto;
	color: var(--accent);
	font-size: 14px;
	text-decoration: none;
	white-space: nowrap;
}
.section-heading--link::after { order: 2; max-width: 190px; }
.section-heading--link a { order: 3; }

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(20px, 2.2vw, 42px);
}
.advantage {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 16px;
	align-items: start;
}
.icon-box {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line-strong);
	border-radius: 8px;
	color: var(--accent);
	font-size: 28px;
	box-shadow: inset 0 0 24px rgba(0, 199, 242, .05);
}
.advantage h3 { margin: 2px 0 7px; font-size: 17px; }
.advantage p { margin: 0; color: var(--muted); font-size: 14px; }

.solutions-grid,
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 1.8vw, 34px);
}
.solution-card,
.product-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background:
		linear-gradient(145deg, rgba(0, 199, 242, .05), transparent 38%),
		var(--card);
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.solution-card:hover,
.product-card:hover {
	transform: translateY(-6px);
	border-color: var(--accent);
	box-shadow: var(--shadow);
}
.solution-card__visual {
	position: relative;
	min-height: 220px;
	display: grid;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle, rgba(0, 199, 242, .18), transparent 42%),
		repeating-linear-gradient(90deg, rgba(0, 199, 242, .08) 0 1px, transparent 1px 34px),
		repeating-linear-gradient(0deg, rgba(0, 199, 242, .08) 0 1px, transparent 1px 34px),
		#030708;
}
.solution-card__visual span {
	color: var(--accent);
	font-size: 92px;
	text-shadow: 0 0 35px rgba(0, 199, 242, .52);
}
.solution-card__body { padding: 22px; }
.solution-card h3,
.product-card h2 { margin: 0 0 10px; font-size: 21px; }
.solution-card p { min-height: 68px; margin: 0; color: var(--muted); }
.solution-card a,
.product-card__link {
	color: var(--accent);
	text-decoration: none;
	font-weight: 700;
}

.product-card {
	display: flex;
	flex-direction: column;
}
.product-card__image {
	aspect-ratio: 4 / 3;
	display: grid;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 56%, rgba(0, 199, 242, .16), transparent 48%),
		#030708;
	text-decoration: none;
}
.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 18px;
	transition: transform .32s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.045); }
.product-card__placeholder {
	color: var(--accent);
	font-size: 94px;
	opacity: .72;
}
.product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}
.product-card__category,
.product-summary__category {
	color: var(--accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
}
.product-card__title a { text-decoration: none; }
.product-card__sku {
	margin-bottom: 14px;
	color: #74858c;
	font-size: 13px;
}
.product-card__features {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 22px;
}
.product-card__features span {
	padding: 5px 8px;
	border: 1px solid rgba(0, 199, 242, .2);
	border-radius: 4px;
	color: #aab8bd;
	font-size: 12px;
}
.product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid rgba(0, 199, 242, .14);
}
.product-card__status { color: #d8e1e4; font-size: 13px; }

.empty-state {
	grid-column: 1 / -1;
	padding: 40px;
	border: 1px dashed var(--line);
	background: var(--card);
	text-align: center;
}
.empty-state h2,
.empty-state h3 { margin-top: 0; }
.empty-state p { margin-bottom: 0; color: var(--muted); }

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.stat {
	min-height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px 38px;
	border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong {
	color: var(--accent);
	font-size: clamp(48px, 5vw, 72px);
	line-height: 1;
	text-shadow: 0 0 24px rgba(0, 199, 242, .24);
}
.stat span { margin-top: 10px; color: #b4c0c5; }

.technology-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 1.8vw, 34px);
}
.technology-card__image {
	aspect-ratio: 16 / 9;
	border: 1px solid var(--line);
	border-radius: 6px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.1), transparent 48%),
		repeating-linear-gradient(90deg, rgba(0, 199, 242, .11) 0 2px, transparent 2px 38px),
		repeating-linear-gradient(0deg, rgba(0, 199, 242, .08) 0 1px, transparent 1px 30px),
		#101a1e;
}
.technology-card__image--2 { background-position: 12px 0, 0 0, 0 0; }
.technology-card__image--3 { background-position: 0 0, 18px 0, 0 15px; }
.technology-card__image--4 { background-position: 0 0, 9px 0, 0 8px; }
.technology-card h3 { margin: 16px 0 7px; font-size: 17px; }
.technology-card p { margin: 0; color: var(--muted); font-size: 14px; }

.section--cta { padding-top: 42px; }
.cta-panel {
	position: relative;
	overflow: hidden;
	min-height: 210px;
	display: grid;
	grid-template-columns: 1.05fr 1.2fr auto;
	align-items: center;
	gap: 46px;
	padding: 38px;
	border: 1px solid var(--line-strong);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(0, 199, 242, .055), transparent 48%),
		var(--card);
}
.cta-panel h2 { margin: 0; font-size: clamp(30px, 3vw, 46px); line-height: 1.08; }
.cta-panel h2 span { color: var(--accent); }
.cta-panel > p { color: var(--muted); }
.cta-panel__orb {
	position: absolute;
	right: -110px;
	bottom: -150px;
	width: 330px;
	aspect-ratio: 1;
	border: 1px solid var(--line-strong);
	border-radius: 50%;
	box-shadow:
		0 0 0 26px rgba(0, 199, 242, .05),
		0 0 0 52px rgba(0, 199, 242, .035),
		0 0 80px rgba(0, 199, 242, .18);
	pointer-events: none;
}

.catalog-hero,
.product-hero {
	position: relative;
	padding: 88px 0 56px;
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(circle at 78% 26%, rgba(0, 199, 242, .12), transparent 26rem),
		var(--bg-soft);
}
.catalog-hero h1,
.product-summary h1 {
	margin: 0;
	font-size: clamp(42px, 5vw, 68px);
	line-height: 1.05;
	text-transform: uppercase;
}
.catalog-hero__lead {
	max-width: 760px;
	margin-top: 18px;
	color: var(--muted);
	font-size: 18px;
}
.catalog-hero__lead p { margin: 0; }
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 24px;
	color: #75858c;
	font-size: 13px;
}
.breadcrumbs a { color: #a9b5ba; text-decoration: none; }

.catalog-toolbar {
	display: grid;
	grid-template-columns: minmax(280px, 420px) 1fr;
	gap: 24px;
	align-items: start;
	margin-bottom: 30px;
}
.catalog-search {
	display: flex;
	border: 1px solid var(--line);
	border-radius: 5px;
	background: var(--card);
}
.catalog-search input {
	min-width: 0;
	flex: 1;
	padding: 13px 14px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--text);
}
.catalog-search button {
	padding: 0 18px;
	border: 0;
	background: var(--accent);
	color: #001319;
	font-weight: 800;
	cursor: pointer;
}
.catalog-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 9px;
}
.catalog-filters a {
	padding: 10px 13px;
	border: 1px solid var(--line);
	border-radius: 4px;
	color: #b5c0c4;
	font-size: 13px;
	text-decoration: none;
}
.catalog-filters a:hover,
.catalog-filters a.is-active {
	border-color: var(--accent);
	color: var(--accent);
}
.products-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.products-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pagination { margin-top: 36px; }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.page-numbers {
	min-width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 4px;
	text-decoration: none;
}
.page-numbers.current,
.page-numbers:hover { border-color: var(--accent); color: var(--accent); }

.product-hero { padding-bottom: 72px; }
.product-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
	gap: 58px;
	align-items: center;
}
.product-gallery {
	overflow: hidden;
	min-height: 480px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 8px;
	background:
		radial-gradient(circle, rgba(0, 199, 242, .15), transparent 46%),
		var(--card);
}
.product-gallery img {
	width: 100%;
	max-height: 560px;
	object-fit: contain;
	padding: 34px;
}
.product-gallery__placeholder {
	color: var(--accent);
	font-size: 160px;
	opacity: .68;
}
.product-summary h1 {
	margin-top: 14px;
	font-size: clamp(38px, 4.2vw, 62px);
}
.product-summary__sku { color: #7f9097; }
.product-summary__excerpt { color: #b2bfc4; font-size: 18px; }
.product-summary__features {
	display: grid;
	gap: 8px;
	margin: 24px 0;
	padding: 0;
	list-style: none;
}
.product-summary__features li::before {
	content: "✓";
	margin-right: 10px;
	color: var(--accent);
}
.product-summary__meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 24px 0 28px;
}
.product-summary__meta div {
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 4px;
	background: rgba(0, 199, 242, .025);
}
.product-summary__meta span,
.product-summary__meta strong { display: block; }
.product-summary__meta span { color: #73858c; font-size: 12px; }
.product-summary__meta strong { margin-top: 4px; font-size: 14px; }
.product-summary__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.product-content__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 410px;
	gap: 56px;
	align-items: start;
}
.product-subheading { margin-top: 56px; }
.prose {
	color: #c0c9cd;
	font-size: 17px;
}
.prose > *:first-child { margin-top: 0; }
.prose h2, .prose h3, .prose h4 { color: var(--text); }
.prose a { color: var(--accent); }
.prose table { width: 100%; border-collapse: collapse; }
.prose td, .prose th { padding: 12px; border: 1px solid var(--line); }
.single-featured { margin-bottom: 34px; }

.spec-table {
	border-top: 1px solid var(--line);
}
.spec-table__row {
	display: grid;
	grid-template-columns: minmax(220px, .8fr) 1fr;
	gap: 24px;
	padding: 15px 18px;
	border-bottom: 1px solid var(--line);
}
.spec-table__row:nth-child(odd) { background: rgba(0, 199, 242, .025); }
.spec-table__row span { color: #87979e; }
.spec-table__row strong { color: #dce5e8; }

.documents-list { display: grid; gap: 10px; }
.documents-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 18px;
	border: 1px solid var(--line);
	border-radius: 5px;
	color: #dce5e8;
	text-decoration: none;
}
.documents-list a:hover { border-color: var(--accent); color: var(--accent); }

.quote-aside {
	position: sticky;
	top: 112px;
	padding: 28px;
	border: 1px solid var(--line-strong);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(0, 199, 242, .07), transparent 42%),
		var(--card);
}
.quote-aside h2 { margin: 0 0 8px; font-size: 30px; }
.quote-aside > p:not(.eyebrow) { color: var(--muted); }

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.post-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--card);
}
.post-card__image {
	aspect-ratio: 16 / 9;
	display: block;
	background: var(--card-2);
}
.post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 22px; }
.post-card h2 { margin: 0 0 10px; font-size: 22px; }
.post-card h2 a { text-decoration: none; }

.notice {
	padding: 14px;
	border: 1px solid var(--line);
	background: rgba(0, 199, 242, .05);
	color: #c9d5da;
}


.catalog-section {
	border-top: 1px solid rgba(0, 199, 242, .12);
}
.catalog-section--soft {
	background:
		linear-gradient(180deg, rgba(0, 199, 242, .018), transparent),
		#030607;
}
.category-grid {
	display: grid;
	gap: clamp(12px, 1.1vw, 18px);
}
.category-grid--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
.category-grid--six {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}
.category-card {
	position: relative;
	min-height: 270px;
	display: flex;
	flex-direction: column;
	padding: 22px;
	border: 1px solid rgba(0, 199, 242, .18);
	border-radius: 6px;
	background:
		linear-gradient(145deg, rgba(0, 199, 242, .04), transparent 42%),
		#080d10;
	transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.category-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 199, 242, .62);
	background:
		linear-gradient(145deg, rgba(0, 199, 242, .08), transparent 44%),
		#091116;
}
.category-card--compact {
	min-height: 235px;
	padding: 20px;
}
.category-card__icon {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	margin-bottom: 18px;
	border: 1px solid rgba(0, 199, 242, .34);
	border-radius: 7px;
	color: var(--accent);
	background: rgba(0, 199, 242, .035);
}
.category-card h3 {
	margin: 0 0 10px;
	font-size: 17px;
	line-height: 1.25;
}
.category-card p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.48;
}
.category-card__arrow {
	position: absolute;
	right: 18px;
	bottom: 15px;
	color: var(--accent);
	font-size: 20px;
	text-decoration: none;
}
.catalog-icon {
	position: relative;
	display: block;
	width: 28px;
	height: 28px;
}
.catalog-icon::before,
.catalog-icon::after {
	content: "";
	position: absolute;
	border: 2px solid currentColor;
}
.catalog-icon--pick-place::before { inset: 3px 5px 5px; border-radius: 3px; }
.catalog-icon--pick-place::after { left: 12px; top: 0; width: 4px; height: 13px; border-width: 0 2px 2px; }
.catalog-icon--printer::before { inset: 5px 2px 4px; border-radius: 3px; }
.catalog-icon--printer::after { left: 7px; right: 7px; top: 0; height: 8px; }
.catalog-icon--conveyor::before { left: 1px; right: 1px; top: 8px; height: 9px; }
.catalog-icon--conveyor::after { left: 4px; right: 4px; bottom: 1px; height: 5px; border-radius: 50%; }
.catalog-icon--inspection::before { inset: 2px 5px 7px; border-radius: 3px; }
.catalog-icon--inspection::after { width: 9px; height: 9px; border-radius: 50%; left: 8px; top: 7px; }
.catalog-icon--oven::before { inset: 5px 1px 4px; border-radius: 3px; }
.catalog-icon--oven::after { left: 6px; right: 6px; top: 10px; height: 2px; border-width: 2px 0 0; }
.catalog-icon--feeder::before { left: 3px; right: 3px; bottom: 3px; height: 8px; border-radius: 3px; }
.catalog-icon--feeder::after { width: 7px; height: 15px; left: 10px; top: 1px; transform: skew(-12deg); }
.catalog-icon--nozzle::before { left: 10px; top: 1px; width: 6px; height: 16px; border-width: 2px 2px 0; }
.catalog-icon--nozzle::after { left: 7px; right: 7px; bottom: 2px; height: 7px; border-radius: 0 0 50% 50%; }
.catalog-icon--belt::before { inset: 6px 1px; border-radius: 50%; }
.catalog-icon--belt::after { inset: 10px 7px; border-radius: 50%; }
.catalog-icon--sensor::before { left: 3px; top: 5px; width: 8px; height: 18px; border-radius: 3px; }
.catalog-icon--sensor::after { right: 2px; top: 2px; width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 12px 0 -3px currentColor; }
.catalog-icon--materials::before { inset: 4px 3px 1px; border-radius: 3px; }
.catalog-icon--materials::after { left: 8px; right: 8px; top: 0; height: 6px; border-radius: 2px; }
.catalog-icon--modules::before { inset: 3px; }
.catalog-icon--modules::after { inset: 8px; box-shadow: -10px 0 0 -7px currentColor, 10px 0 0 -7px currentColor, 0 -10px 0 -7px currentColor, 0 10px 0 -7px currentColor; }
.catalog-icon--tools::before { width: 9px; height: 22px; left: 9px; top: 2px; border-radius: 8px 8px 2px 2px; transform: rotate(45deg); }
.catalog-icon--tools::after { width: 10px; height: 10px; right: 1px; bottom: 1px; border-radius: 50%; }
.catalog-icon--maintenance::before { inset: 3px; border-radius: 50%; }
.catalog-icon--maintenance::after { left: 12px; top: 0; width: 4px; height: 28px; border-width: 0 2px; }
.catalog-icon--calendar::before { inset: 4px 2px 2px; border-radius: 3px; }
.catalog-icon--calendar::after { left: 6px; right: 6px; top: 9px; height: 2px; border-width: 2px 0 0; box-shadow: 0 6px 0 -1px currentColor; }
.catalog-icon--diagnostics::before { inset: 2px; border-radius: 3px; }
.catalog-icon--diagnostics::after { left: 5px; right: 5px; top: 13px; height: 0; border-width: 2px 0 0; transform: skew(-25deg); }
.catalog-icon--academy::before { left: 1px; right: 1px; top: 7px; height: 12px; transform: rotate(45deg); }
.catalog-icon--academy::after { left: 7px; right: 7px; bottom: 1px; height: 5px; border-width: 2px 2px 0; }
.catalog-icon--headset::before { inset: 3px; border-radius: 50%; border-bottom-color: transparent; }
.catalog-icon--headset::after { left: 0; right: 0; top: 12px; height: 10px; border-radius: 7px; border-top-color: transparent; }
.brands-strip {
	display: grid;
	grid-template-columns: 1.5fr repeat(5, 1fr);
	align-items: center;
	gap: 16px;
	margin-top: 14px;
	padding: 16px 20px;
	border: 1px solid rgba(0, 199, 242, .16);
	border-radius: 6px;
	background: #070b0d;
}
.brands-strip span {
	color: #c3cdd1;
	font-size: 14px;
}
.brands-strip strong {
	color: #dce5e8;
	font-size: 18px;
	text-align: center;
	letter-spacing: .03em;
}
.section-callout {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	margin-top: 14px;
	padding: 16px 20px;
	border: 1px solid rgba(0, 199, 242, .18);
	border-radius: 6px;
	background: #070b0d;
}
.section-callout__icon {
	color: var(--accent);
	font-size: 26px;
}
.section-callout p {
	margin: 0;
	color: #aebbc0;
	font-size: 14px;
}
.button--compact {
	min-height: 38px;
	padding-inline: 15px;
	font-size: 12px;
}
.site-footer__simple {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 80px;
	align-items: start;
}
.site-footer__brand p {
	max-width: 520px;
	margin: 18px 0 0;
	color: var(--muted);
}
.site-footer__contacts {
	display: grid;
	gap: 10px;
	justify-items: start;
}
.site-footer__contacts h2 {
	margin: 0 0 8px;
	font-size: 16px;
	text-transform: uppercase;
}
.site-footer__contacts a,
.site-footer__contacts span {
	color: #aebbc0;
	text-decoration: none;
}
.site-footer__contacts a:hover {
	color: var(--accent);
}

.site-footer {
	padding: 58px 0 24px;
	border-top: 1px solid var(--line);
	background: #010203;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, 1fr);
	gap: 44px;
}
.site-brand--footer { margin-bottom: 18px; }
.site-footer__muted { max-width: 360px; color: var(--muted); }
.site-footer__title {
	margin: 0 0 15px;
	font-size: 14px;
	text-transform: uppercase;
}
.site-footer__links { margin: 0; padding: 0; list-style: none; }
.site-footer__links li { margin: 8px 0; color: var(--muted); }
.site-footer__links a { text-decoration: none; }
.site-footer__links a:hover { color: var(--accent); }
.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 44px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 199, 242, .12);
	color: #6f7f86;
	font-size: 13px;
}
.site-footer__bottom a { text-decoration: none; }

@media (max-width: 1120px) {
	.site-header__inner { grid-template-columns: auto auto 1fr; }
	.site-nav-toggle {
		display: inline-flex;
		flex-direction: column;
		gap: 5px;
		justify-self: end;
		width: 44px;
		height: 44px;
		align-items: center;
		justify-content: center;
		border: 1px solid var(--line);
		background: transparent;
		cursor: pointer;
	}
	.site-nav-toggle span:not(.screen-reader-text) { width: 20px; height: 2px; background: var(--text); }
	.site-nav {
		position: fixed;
		left: 0;
		right: 0;
		top: 82px;
		z-index: 60;
		display: none;
		padding: 26px 20px 34px;
		background: rgba(2, 4, 5, .98);
		border-bottom: 1px solid var(--line);
	}
	.admin-bar .site-nav { top: 114px; }
	.site-nav.is-open { display: block; }
	.site-nav__list { flex-direction: column; align-items: flex-start; }
	.site-header__cta { justify-self: end; }
	.hero__inner { grid-template-columns: 1fr 1fr; }
	.advantages-grid { grid-template-columns: repeat(2, 1fr); }
	.solutions-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
	.technology-grid { grid-template-columns: repeat(2, 1fr); }
	.cta-panel { grid-template-columns: 1fr 1fr; }
	.cta-panel .button { justify-self: start; }
	.product-hero__grid { grid-template-columns: 1fr 1fr; }
	.product-content__grid { grid-template-columns: 1fr 350px; }
}

@media (max-width: 820px) {
	.hero {
		min-height: auto;
		padding-top: 37.5vw;
		background-position: center top;
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.hero__inner {
		grid-template-columns: 1fr;
		padding-block: 48px 82px;
	}
	.hero__copy {
		max-width: 680px;
	}
	.hero__inner {
		grid-template-columns: minmax(0, 680px);
	}

	.admin-bar .site-header { top: 46px; }
	.site-header__cta { display: none; }
	.site-header__inner { grid-template-columns: 1fr auto; }
	.hero { min-height: auto; }
	.hero__inner {
		grid-template-columns: 1fr;
		padding-block: 72px 96px;
	}
	.hero h1 { font-size: clamp(42px, 11vw, 66px); }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.stat:nth-child(2) { border-right: 0; }
	.stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.catalog-toolbar { grid-template-columns: 1fr; }
	.catalog-filters { justify-content: flex-start; }
	.products-grid--catalog,
	.products-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.product-hero__grid { grid-template-columns: 1fr; }
	.product-content__grid { grid-template-columns: 1fr; }
	.quote-aside { position: static; }
	.posts-grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
	.hero {
		min-height: auto;
		padding-top: 37.5vw;
		background-position: center top;
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.hero__inner {
		padding-block: 38px 72px;
	}
	.hero__copy {
		padding: 0;
		background: none;
		border-left: 0;
	}
	.hero__inner {
		padding-block: 250px 72px;
	}
	.hero__copy {
		padding: 20px 0 20px 18px;
		background: linear-gradient(90deg, rgba(1, 4, 6, .82), rgba(1, 4, 6, .12));
	}

	.site-shell {
		width: calc(100% - 28px);
	}
	.site-header__inner { min-height: 72px; }
	.site-nav { top: 72px; }
	.admin-bar .site-nav { top: 118px; }
	.section { padding: 58px 0; }
	.hero__inner { padding-block: 48px 82px; }
	.hero h1 { font-size: 40px; }
	.hero__actions,
	.product-summary__actions { flex-direction: column; align-items: stretch; }
	.advantages-grid,
	.solutions-grid,
	.products-grid,
	.technology-grid,
	.products-grid--catalog,
	.products-grid--three,
	.posts-grid,
	.site-footer__grid { grid-template-columns: 1fr; }
	.advantage { grid-template-columns: 50px 1fr; }
	.icon-box { width: 50px; height: 50px; }
	.stats-grid { grid-template-columns: 1fr; }
	.stat,
	.stat:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}
	.stat:last-child { border-bottom: 0; }
	.cta-panel {
		grid-template-columns: 1fr;
		padding: 26px;
	}
	.catalog-hero,
	.product-hero { padding-top: 64px; }
	.catalog-hero h1,
	.product-summary h1 { font-size: 38px; }
	.product-gallery { min-height: 320px; }
	.product-summary__meta { grid-template-columns: 1fr; }
	.spec-table__row { grid-template-columns: 1fr; gap: 4px; }
	.site-footer__bottom { flex-direction: column; }
}


@media (max-width: 1180px) {
	.category-grid--five {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.category-grid--six {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.brands-strip {
		grid-template-columns: repeat(3, 1fr);
	}
	.brands-strip span {
		grid-column: 1 / -1;
	}
}

@media (max-width: 820px) {
	.account-button span {
		display: none;
	}
	.account-button {
		width: 44px;
		padding: 0;
	}
	.category-grid--five,
	.category-grid--six {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.section-callout {
		grid-template-columns: auto 1fr;
	}
	.section-callout .button {
		grid-column: 1 / -1;
		justify-self: start;
	}
	.site-footer__simple {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 580px) {
	.category-grid--five,
	.category-grid--six,
	.brands-strip {
		grid-template-columns: 1fr;
	}
	.category-card,
	.category-card--compact {
		min-height: auto;
	}
	.brands-strip strong {
		text-align: left;
	}
}


/* ===== Sintronika homepage v0.5 final overrides ===== */

.account-button {
	width: 44px;
	min-width: 44px;
	height: 44px;
	padding: 0;
	gap: 0;
}
.account-button__icon {
	width: 21px;
	height: 21px;
}
.account-button .screen-reader-text {
	position: absolute !important;
}

.hero__actions {
	display: none !important;
}

.catalog-section {
	padding: clamp(12px, 1.4vw, 22px) 0;
	border-top: 0;
	background: #020405;
}
.catalog-section > .site-shell {
	padding: clamp(18px, 2vw, 30px);
	border: 1px solid rgba(0, 199, 242, .24);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(0, 199, 242, .035), transparent 34%),
		#05090b;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}
.catalog-section--soft {
	background: #020405;
}
.catalog-section .section-heading {
	margin-bottom: 18px;
}
.catalog-section .section-heading h2 {
	font-size: clamp(27px, 2.3vw, 38px);
	font-weight: 600;
	text-transform: none;
}
.catalog-section .section-heading::after {
	max-width: none;
}
.catalog-section .section-heading--link::after {
	max-width: none;
}
.catalog-section .section-heading--link a {
	font-size: 12px;
}

.category-card {
	min-height: 245px;
	padding: 18px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .028), transparent 52%),
		#0a0f12;
}
.category-card--compact {
	min-height: 220px;
}
.category-card__icon {
	width: 58px;
	height: 58px;
	margin-bottom: 14px;
}
.category-card h3 {
	font-size: 15px;
}
.category-card p {
	font-size: 12px;
}
.category-grid--five .category-card__icon {
	width: 100%;
	height: 94px;
	border: 0;
	background:
		radial-gradient(circle, rgba(0, 199, 242, .12), transparent 58%);
}
.category-grid--five .catalog-icon {
	transform: scale(1.8);
}

.brands-strip,
.section-callout {
	margin-top: 10px;
	background: #0a0f12;
}

.site-footer__simple {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
	gap: clamp(46px, 7vw, 120px);
	align-items: start;
}
.site-footer__brand {
	max-width: 680px;
}
.site-footer__brand p {
	max-width: 600px;
}
.site-footer__contacts {
	padding: 22px;
	border: 1px solid rgba(0, 199, 242, .22);
	border-radius: 7px;
	background: rgba(0, 199, 242, .025);
}
.site-footer__contacts a,
.site-footer__contacts > div {
	display: grid;
	grid-template-columns: 24px 1fr;
	align-items: center;
	gap: 12px;
}
.site-footer__contacts svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: var(--accent);
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 1120px) {
	.site-header__inner {
		grid-template-columns: auto auto 1fr;
	}
	.account-button {
		justify-self: end;
	}
}

@media (max-width: 820px) {
	.hero {
		min-height: auto;
		padding-top: 37.5vw;
		background-position: center top;
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.hero__inner {
		grid-template-columns: 1fr;
		padding-block: 48px 82px;
	}
	.hero__copy {
		max-width: 680px;
		padding: 0;
		background: none;
		border-left: 0;
	}
	.category-grid--five,
	.category-grid--six {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.site-footer__simple {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

@media (max-width: 580px) {
	.hero {
		min-height: auto;
		padding-top: 37.5vw;
		background-position: center top;
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.hero__inner {
		padding-block: 38px 72px;
	}
	.hero h1 {
		font-size: 36px;
	}
	.catalog-section > .site-shell {
		padding: 16px;
	}
	.category-grid--five,
	.category-grid--six,
	.brands-strip {
		grid-template-columns: 1fr;
	}
	.category-card,
	.category-card--compact {
		min-height: 190px;
	}
	.section-callout {
		grid-template-columns: auto 1fr;
	}
	.section-callout .button {
		grid-column: 1 / -1;
		justify-self: start;
	}
}


/* ===== Sintronika homepage v0.6 full-width viewport layout ===== */

:root {
	--front-gutter: clamp(18px, 2.2vw, 54px);
}

.front-fluid-shell {
	width: calc(100% - (var(--front-gutter) * 2));
	max-width: none;
	margin-inline: auto;
}

.hero--viewport {
	min-height: calc(100svh - 82px);
	display: flex;
	align-items: stretch;
	background-color: #020405;
	background-image: url("../images/hero-production-background.png");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.hero--viewport::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(1,4,6,.34) 0%, rgba(1,4,6,.12) 48%, rgba(1,4,6,0) 72%);
	pointer-events: none;
}
.hero--viewport .hero__inner {
	position: relative;
	z-index: 2;
	min-height: calc(100svh - 82px);
	display: flex;
	align-items: flex-start;
	padding-top: clamp(42px, 7vh, 94px);
	padding-bottom: 48px;
}
.hero--viewport .hero__copy {
	max-width: min(920px, 48vw);
	padding: 0;
	background: none;
	border: 0;
}
.hero--viewport h1 {
	max-width: 900px;
	font-size: clamp(48px, 5.2vw, 104px);
	line-height: .98;
	text-wrap: balance;
}
.hero--viewport .hero__lead {
	margin-top: 24px;
	font-size: clamp(18px, 1.55vw, 30px);
	color: #c0c9cd;
}

.home-wide-section {
	width: 100%;
	padding: clamp(26px, 3vw, 54px) 0;
	background: #020405;
}
.home-wide-section--alt {
	background: #03090c;
}
.home-wide-section--about {
	padding-bottom: clamp(44px, 5vw, 84px);
}
.home-panel {
	padding: clamp(22px, 2.4vw, 42px);
	border: 1px solid rgba(0,199,242,.25);
	border-radius: 9px;
	background:
		linear-gradient(145deg, rgba(0,199,242,.038), transparent 38%),
		#05090b;
	box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.home-panel .section-heading {
	margin-bottom: clamp(20px, 2vw, 34px);
}
.home-panel .section-heading h2 {
	font-size: clamp(30px, 2.5vw, 48px);
	font-weight: 600;
	text-transform: none;
}
.home-panel .section-heading--link::after {
	max-width: none;
}
.home-panel .section-heading--link a {
	font-size: clamp(12px, .85vw, 16px);
}

.home-card-grid {
	display: grid;
	gap: clamp(12px, 1.2vw, 24px);
}
.home-card-grid--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
.home-card-grid--six {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.visual-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(120,168,182,.22);
	border-radius: 7px;
	background: #091014;
	transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.visual-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent);
	box-shadow: 0 18px 44px rgba(0,0,0,.34);
}
.visual-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #050a0d;
}
.visual-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.visual-card:hover .visual-card__media img {
	transform: scale(1.035);
}
.visual-card__media--part img {
	object-fit: contain;
}
.visual-card__body {
	position: relative;
	min-height: 145px;
	padding: clamp(15px, 1.25vw, 24px);
}
.visual-card__body h3 {
	margin: 0 0 9px;
	font-size: clamp(15px, 1.05vw, 21px);
	line-height: 1.24;
}
.visual-card__body p {
	margin: 0;
	color: #94a4ab;
	font-size: clamp(11px, .75vw, 14px);
	line-height: 1.48;
}
.visual-card__arrow {
	position: absolute;
	right: 18px;
	bottom: 13px;
	color: var(--accent);
	text-decoration: none;
}
.visual-card__service-icon {
	height: clamp(104px, 8.4vw, 164px);
	display: grid;
	place-items: center;
	background: radial-gradient(circle, rgba(0,199,242,.11), transparent 62%);
}
.visual-card__service-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.visual-card--service .visual-card__body {
	min-height: 165px;
}

.brands-strip--wide {
	grid-template-columns: minmax(220px, 1.4fr) repeat(5, minmax(120px, 1fr));
	margin-top: 14px;
}
.section-callout--wide {
	margin-top: 14px;
}

.about-layout {
	display: grid;
	grid-template-columns: minmax(420px, 1.15fr) minmax(0, 1fr);
	gap: clamp(28px, 3vw, 56px);
	align-items: stretch;
}
.about-copy {
	padding: clamp(10px, 1.2vw, 22px) clamp(8px, 1vw, 18px);
	color: #c1cbd0;
	font-size: clamp(16px, 1.1vw, 22px);
	line-height: 1.65;
}
.about-copy p:first-child {
	margin-top: 0;
}
.about-copy p:last-child {
	margin-bottom: 0;
}
.about-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(12px, 1.2vw, 22px);
}
.about-card {
	min-width: 0;
	padding: clamp(18px, 1.6vw, 30px);
	border: 1px solid rgba(120,168,182,.24);
	border-radius: 7px;
	background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 55%), #0a0f12;
}
.about-card img {
	width: 100%;
	height: clamp(110px, 8vw, 160px);
	object-fit: contain;
	margin-bottom: 12px;
}
.about-card h3 {
	margin: 0 0 10px;
	font-size: clamp(20px, 1.45vw, 30px);
	line-height: 1.12;
}
.about-card p {
	margin: 0;
	color: #96a6ad;
	font-size: clamp(13px, .9vw, 17px);
}

@media (max-width: 1500px) {
	.home-card-grid--six {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.home-card-grid--five {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1050px) {
	.hero--viewport .hero__copy {
		max-width: 680px;
	}
	.about-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.hero--viewport {
		min-height: calc(100svh - 72px);
		background-position: 64% center;
	}
	.hero--viewport .hero__inner {
		min-height: calc(100svh - 72px);
		padding-top: 44px;
	}
	.hero--viewport .hero__copy {
		max-width: 78vw;
	}
	.home-card-grid--five,
	.home-card-grid--six,
	.about-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.brands-strip--wide {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.brands-strip--wide > span {
		grid-column: 1 / -1;
	}
}

@media (max-width: 580px) {
	:root {
		--front-gutter: 14px;
	}
	.hero--viewport {
		background-position: 66% center;
	}
	.hero--viewport::before {
		background: linear-gradient(180deg, rgba(1,4,6,.26), rgba(1,4,6,.88));
	}
	.hero--viewport .hero__copy {
		max-width: 100%;
	}
	.hero--viewport h1 {
		font-size: 39px;
	}
	.home-panel {
		padding: 16px;
	}
	.home-panel .section-heading {
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.home-panel .section-heading--link a {
		width: 100%;
		margin-left: 0;
	}
	.home-card-grid--five,
	.home-card-grid--six,
	.about-cards,
	.brands-strip--wide {
		grid-template-columns: 1fr;
	}
	.visual-card__body {
		min-height: 130px;
	}
	.section-callout--wide {
		grid-template-columns: auto 1fr;
	}
	.section-callout--wide .button {
		grid-column: 1 / -1;
		justify-self: start;
	}
}


/* ===== Sintronika homepage v0.7 typography and infographic ===== */

.hero--viewport .eyebrow {
	font-size: 15px;
	letter-spacing: .13em;
}

.hero--viewport .hero__copy {
	max-width: min(850px, 50vw);
}

.hero--viewport h1,
.hero--viewport .hero-title {
	max-width: 850px;
	margin: 0;
	font-size: clamp(36px, 3.9vw, 78px);
	line-height: .98;
	letter-spacing: -.035em;
	text-wrap: initial;
}

.hero-title__line {
	display: block;
	width: max-content;
	max-width: 100%;
}

.hero-title__line--nowrap {
	white-space: nowrap;
}

.hero-title__line--accent {
	color: var(--accent);
}

.hero--viewport .hero__lead {
	width: max-content;
	max-width: none;
	margin-top: 24px;
	font-size: clamp(16px, 1.28vw, 24px);
	white-space: nowrap;
}

/* Карточки реального оборудования */

.visual-card__media--equipment {
	position: relative;
	aspect-ratio: 16 / 10;
	display: grid;
	place-items: center;
	padding: clamp(12px, 1vw, 20px);
	background:
		radial-gradient(circle at 50% 64%, rgba(0, 199, 242, .17), transparent 48%),
		linear-gradient(180deg, #0a1419, #04090b);
}

.visual-card__media--equipment::after {
	content: "";
	position: absolute;
	left: 10%;
	right: 10%;
	bottom: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 199, 242, .7), transparent);
	box-shadow: 0 0 16px rgba(0, 199, 242, .48);
}

.visual-card__media--equipment img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 5px;
	object-fit: contain;
	filter: drop-shadow(0 18px 18px rgba(0, 0, 0, .55));
}

.visual-card:hover .visual-card__media--equipment img {
	transform: scale(1.025);
}

.visual-card__brand,
.visual-card__model {
	position: absolute;
	z-index: 3;
	padding: 5px 8px;
	border: 1px solid rgba(0, 199, 242, .28);
	border-radius: 4px;
	background: rgba(2, 7, 9, .82);
	backdrop-filter: blur(7px);
	font-size: clamp(10px, .66vw, 13px);
	line-height: 1;
}

.visual-card__brand {
	left: 10px;
	top: 10px;
	color: var(--accent);
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.visual-card__model {
	right: 10px;
	bottom: 10px;
	color: #d4dfe3;
}

/* Векторная инфографика запчастей */

.visual-card__media--infographic {
	aspect-ratio: auto;
	height: clamp(118px, 8vw, 154px);
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at center, rgba(0, 199, 242, .12), transparent 64%),
		linear-gradient(180deg, #0b1418, #070d10);
}

.visual-card__media--infographic img {
	width: clamp(84px, 6vw, 118px);
	height: clamp(84px, 6vw, 118px);
	padding: 0;
	object-fit: contain;
	filter: drop-shadow(0 0 10px rgba(0, 199, 242, .22));
}

.visual-card:hover .visual-card__media--infographic img {
	transform: translateY(-3px) scale(1.03);
}

.visual-card--part .visual-card__body {
	min-height: 150px;
}

/* Улучшенная инфографика сервиса */

.visual-card__service-icon--v2 {
	position: relative;
	height: clamp(138px, 9.5vw, 184px);
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(0, 199, 242, .05), transparent 55%),
		radial-gradient(circle at 50% 55%, rgba(0, 199, 242, .14), transparent 60%),
		#071014;
}

.visual-card__service-icon--v2::before {
	content: "";
	position: absolute;
	inset: 13px;
	border: 1px solid rgba(0, 199, 242, .09);
	border-radius: 18px;
	background:
		linear-gradient(rgba(0, 199, 242, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 199, 242, .035) 1px, transparent 1px);
	background-size: 15px 15px;
	mask-image: radial-gradient(circle, #000 15%, transparent 76%);
}

.visual-card__service-icon--v2 img {
	position: relative;
	z-index: 2;
	width: clamp(105px, 7.4vw, 146px);
	height: clamp(105px, 7.4vw, 146px);
	object-fit: contain;
	filter: drop-shadow(0 0 14px rgba(0, 199, 242, .28));
}

.visual-card--service .visual-card__body {
	min-height: 158px;
}

@media (max-width: 1050px) {
	.hero--viewport .hero__copy {
		max-width: 690px;
	}

	.hero--viewport h1,
	.hero--viewport .hero-title {
		font-size: clamp(34px, 5.2vw, 58px);
	}
}

@media (max-width: 820px) {
	.hero--viewport .eyebrow {
		font-size: 14px;
	}

	.hero--viewport .hero__copy {
		max-width: 82vw;
	}

	.hero--viewport .hero__lead {
		width: auto;
		max-width: 100%;
		white-space: normal;
	}
}

@media (max-width: 580px) {
	.hero--viewport h1,
	.hero--viewport .hero-title {
		font-size: 30px;
		line-height: 1.02;
	}

	.hero-title__line--nowrap {
		white-space: normal;
	}

	.hero--viewport .hero__lead {
		font-size: 16px;
	}

	.visual-card__media--equipment {
		aspect-ratio: 16 / 9;
	}
}


/* ===== Sintronika homepage v0.8 hero/menu/equipment ===== */

.site-nav__list a {
	font-size: 15.5px;
	font-weight: 700;
	letter-spacing: .015em;
}

.hero {
	background-image: url("../images/hero-production-background.png");
	background-position: center center;
	background-size: 100% auto;
}

.hero-title__line {
	color: #ffffff;
}

.hero-title__line--accent {
	color: var(--accent) !important;
}

.hero--viewport .hero__copy {
	max-width: min(900px, 52vw);
}

.hero--viewport .hero-title {
	max-width: 980px;
}

.visual-card--equipment-showcase {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background:
		linear-gradient(145deg, rgba(255,255,255,.035), transparent 56%),
		#0a0f12;
}

.visual-card__body--equipment {
	min-height: auto;
	padding: 18px 18px 10px;
}

.visual-card__equipment-heading {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	align-items: start;
	gap: 14px;
}

.visual-card__equipment-icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(0, 199, 242, .32);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(0, 199, 242, .06), rgba(0, 199, 242, .015)),
		#081116;
	box-shadow: inset 0 0 18px rgba(0, 199, 242, .06);
}

.visual-card__equipment-icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: drop-shadow(0 0 8px rgba(0, 199, 242, .32));
}

.visual-card__body--equipment h3 {
	margin: 0;
	font-size: clamp(16px, 1.08vw, 24px);
	line-height: 1.24;
	font-weight: 700;
}

.visual-card__media--equipment-showcase {
	position: relative;
	flex: 1;
	aspect-ratio: 16 / 11;
	padding: 0 16px 18px;
	background:
		radial-gradient(circle at 50% 72%, rgba(0, 199, 242, .12), transparent 52%),
		linear-gradient(180deg, rgba(6, 11, 14, .35), #070d10 72%);
}

.visual-card__media--equipment-showcase::before {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(0, 199, 242, .04), rgba(0, 199, 242, .18), rgba(0, 199, 242, .04));
}

.visual-card__media--equipment-showcase::after {
	left: 14%;
	right: 14%;
	bottom: 10%;
}

.visual-card__media--equipment-showcase img {
	padding: 0 0 8px;
	max-height: 100%;
}

.visual-card__arrow--equipment {
	right: 18px;
	bottom: 14px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
}

.brands-strip--equipment-showcase {
	grid-template-columns: minmax(250px, 1.55fr) repeat(5, minmax(120px, 1fr));
	gap: 10px;
	padding: 16px 20px;
	border-color: rgba(120,168,182,.22);
	background:
		linear-gradient(145deg, rgba(255,255,255,.025), transparent 45%),
		#090f12;
}

.brands-strip--equipment-showcase > span {
	font-size: clamp(16px, 1.4vw, 20px);
	font-weight: 600;
	color: #f0f4f6;
}

.brands-strip--equipment-showcase strong {
	font-size: clamp(18px, 1.9vw, 28px);
	font-weight: 800;
	font-style: normal;
	letter-spacing: .02em;
	text-transform: uppercase;
	text-align: center;
	color: #f3f6f7;
	text-shadow: 0 0 10px rgba(255,255,255,.05);
}

@media (max-width: 820px) {
	.site-nav__list a {
		font-size: 15px;
		font-weight: 700;
	}

	.hero {
		background-position: 64% center;
	}

	.hero--viewport .hero__copy {
		max-width: 82vw;
	}

	.visual-card__body--equipment {
		padding: 16px 16px 8px;
	}

	.visual-card__equipment-heading {
		grid-template-columns: 40px minmax(0, 1fr);
		gap: 12px;
	}

	.visual-card__equipment-icon {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 580px) {
	.hero {
		background-position: 66% center;
	}

	.site-nav__list a {
		font-size: 14px;
	}

	.visual-card__body--equipment h3 {
		font-size: 18px;
	}

	.brands-strip--equipment-showcase strong {
		text-align: left;
	}
}


/* ===== Sintronika homepage v0.8.1 hero restyle ===== */

.hero {
	background-image: url("../images/hero-production-background.png");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero--viewport {
	min-height: calc(100svh - 82px);
}

.hero--viewport .hero__inner {
	min-height: calc(100svh - 82px);
	align-items: center;
	padding-top: clamp(56px, 5vw, 88px);
	padding-bottom: clamp(48px, 5vw, 84px);
}

.hero--viewport .hero__copy {
	max-width: min(1120px, 64vw);
}

.hero--viewport .eyebrow {
	margin-bottom: clamp(18px, 1.8vw, 26px);
	color: var(--accent);
	font-size: clamp(18px, 1.15vw, 24px);
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
	text-shadow: 0 0 18px rgba(0, 199, 242, .16);
}

.hero--viewport .hero-title {
	max-width: 1180px;
	font-size: clamp(82px, 6.15vw, 156px);
	font-weight: 900;
	line-height: .88;
	letter-spacing: -.045em;
	text-transform: uppercase;
	text-wrap: initial;
	text-shadow: 0 0 24px rgba(0, 0, 0, .2);
}

.hero-title__line {
	width: max-content;
	max-width: 100%;
	color: #ffffff;
}

.hero-title__line--accent {
	color: var(--accent) !important;
	text-shadow: 0 0 24px rgba(0, 199, 242, .16);
}

.hero--viewport .hero__lead {
	display: inline-flex;
	align-items: center;
	min-height: 58px;
	margin-top: clamp(18px, 1.7vw, 28px);
	padding: 10px 18px;
	border: 1px solid rgba(0, 199, 242, .10);
	border-radius: 16px;
	background: rgba(3, 10, 13, .72);
	backdrop-filter: blur(8px);
	color: #ffffff;
	font-size: clamp(24px, 1.55vw, 34px);
	font-weight: 400;
	line-height: 1.25;
	white-space: nowrap;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

@media (max-width: 1280px) {
	.hero--viewport .hero__copy {
		max-width: min(1000px, 68vw);
	}

	.hero--viewport .hero-title {
		font-size: clamp(66px, 6vw, 116px);
	}

	.hero--viewport .hero__lead {
		font-size: clamp(20px, 1.45vw, 28px);
	}
}

@media (max-width: 960px) {
	.hero--viewport .hero__copy {
		max-width: 84vw;
	}

	.hero--viewport .eyebrow {
		font-size: 16px;
	}

	.hero--viewport .hero-title {
		font-size: clamp(46px, 8.2vw, 82px);
		line-height: .92;
	}

	.hero--viewport .hero__lead {
		min-height: 48px;
		font-size: 18px;
		padding: 10px 14px;
		white-space: normal;
	}
}

@media (max-width: 580px) {
	.hero {
		background-position: 64% center;
	}

	.hero--viewport .hero__copy {
		max-width: 100%;
	}

	.hero--viewport .eyebrow {
		font-size: 14px;
		letter-spacing: .1em;
	}

	.hero--viewport .hero-title {
		font-size: clamp(34px, 9.8vw, 54px);
		line-height: .94;
	}

	.hero-title__line--nowrap {
		white-space: normal;
	}

	.hero--viewport .hero__lead {
		display: block;
		font-size: 16px;
		line-height: 1.35;
	}
}


/* ===== Sintronika homepage v0.8.2 hero color + scale fix ===== */

:root {
	--sintronika-teal: #00AAC1;
}

.hero--viewport .hero__copy {
	max-width: min(860px, 48vw);
}

.hero--viewport .eyebrow {
	color: var(--sintronika-teal);
	font-size: clamp(14px, 0.95vw, 18px);
	font-weight: 800;
	letter-spacing: .12em;
	margin-bottom: clamp(14px, 1.2vw, 20px);
	text-shadow: 0 0 14px rgba(0, 170, 193, .14);
}

.hero--viewport .hero-title {
	max-width: 900px;
	font-size: clamp(56px, 4.8vw, 108px);
	font-weight: 900;
	line-height: .9;
	letter-spacing: -.042em;
	text-transform: uppercase;
	text-shadow: 0 0 20px rgba(0, 0, 0, .16);
}

.hero-title__line {
	color: #ffffff !important;
}

.hero-title__line--accent {
	color: var(--sintronika-teal) !important;
	text-shadow: 0 0 18px rgba(0, 170, 193, .14);
}

.hero--viewport .hero__lead {
	margin-top: clamp(14px, 1.3vw, 22px);
	padding: 10px 18px;
	border: 1px solid rgba(0, 170, 193, .12);
	border-radius: 15px;
	background: rgba(3, 10, 13, .72);
	color: #ffffff;
	font-size: clamp(17px, 1.18vw, 23px);
	font-weight: 400;
	line-height: 1.25;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

@media (max-width: 1280px) {
	.hero--viewport .hero__copy {
		max-width: min(760px, 52vw);
	}

	.hero--viewport .hero-title {
		font-size: clamp(48px, 5vw, 82px);
	}

	.hero--viewport .hero__lead {
		font-size: clamp(16px, 1.25vw, 20px);
	}
}

@media (max-width: 960px) {
	.hero--viewport .hero__copy {
		max-width: 76vw;
	}

	.hero--viewport .eyebrow {
		font-size: 14px;
	}

	.hero--viewport .hero-title {
		font-size: clamp(38px, 7vw, 62px);
		line-height: .94;
	}

	.hero--viewport .hero__lead {
		font-size: 16px;
	}
}

@media (max-width: 580px) {
	.hero--viewport .hero__copy {
		max-width: 100%;
	}

	.hero--viewport .hero-title {
		font-size: clamp(30px, 9vw, 46px);
		line-height: .96;
	}

	.hero--viewport .hero__lead {
		padding: 10px 14px;
		font-size: 15px;
	}
}


/* ===== Sintronika homepage v0.8.3 top align + smaller hero ===== */

.hero--viewport .hero__inner {
	align-items: start;
	padding-top: clamp(18px, 1.8vw, 30px);
	padding-bottom: clamp(42px, 4vw, 72px);
}

.hero--viewport .hero__copy {
	align-self: start;
	max-width: min(820px, 46vw);
	padding-top: 0;
}

.hero--viewport .hero-title {
	max-width: 840px;
	font-size: clamp(50px, 4.3vw, 97px);
	line-height: .9;
}

.hero--viewport .eyebrow {
	margin-top: 0;
	margin-bottom: clamp(12px, 1vw, 18px);
}

.hero--viewport .hero__lead {
	margin-top: clamp(12px, 1vw, 18px);
}

@media (max-width: 1280px) {
	.hero--viewport .hero__copy {
		max-width: min(700px, 50vw);
	}

	.hero--viewport .hero-title {
		font-size: clamp(43px, 4.5vw, 74px);
	}
}

@media (max-width: 960px) {
	.hero--viewport .hero__inner {
		padding-top: 18px;
	}

	.hero--viewport .hero__copy {
		max-width: 74vw;
	}

	.hero--viewport .hero-title {
		font-size: clamp(34px, 6.4vw, 56px);
	}
}

@media (max-width: 580px) {
	.hero--viewport .hero__inner {
		padding-top: 14px;
		padding-bottom: 40px;
	}

	.hero--viewport .hero__copy {
		max-width: 100%;
	}

	.hero--viewport .hero-title {
		font-size: clamp(27px, 8.2vw, 41px);
	}
}


/* ===== Sintronika homepage v0.9 section showcase rebuild ===== */

.home-panel--equipment,
.home-panel--parts,
.home-panel--service {
	padding: clamp(16px, 1.5vw, 26px);
	border-radius: 18px;
	border: 1px solid rgba(126, 149, 162, .28);
	background:
		linear-gradient(180deg, rgba(7, 15, 19, .98), rgba(4, 9, 12, .98)),
		linear-gradient(145deg, rgba(255,255,255,.025), transparent 55%);
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,.025),
		0 18px 48px rgba(0,0,0,.2);
}

.home-panel--equipment .section-heading,
.home-panel--parts .section-heading,
.home-panel--service .section-heading {
	position: relative;
	gap: 20px;
	margin-bottom: 22px;
}

.home-panel--equipment .section-heading::after,
.home-panel--parts .section-heading::after,
.home-panel--service .section-heading::after {
	height: 2px;
	border-radius: 2px;
	background:
		radial-gradient(circle at 14% 50%, var(--accent) 0 5px, transparent 6px),
		linear-gradient(90deg, rgba(0,199,242,.9) 0 16%, rgba(0,199,242,.18) 16% 100%);
}

.home-panel--equipment .section-heading h2,
.home-panel--parts .section-heading h2,
.home-panel--service .section-heading h2 {
	font-size: clamp(44px, 3vw, 72px);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -.03em;
	color: #fff;
}

.home-panel--equipment .section-heading--link a,
.home-panel--parts .section-heading--link a,
.home-panel--service .section-heading--link a {
	font-size: clamp(18px, 1.15vw, 26px);
	font-weight: 500;
	color: var(--accent);
}

.home-panel--equipment .section-heading--link a span,
.home-panel--parts .section-heading--link a span,
.home-panel--service .section-heading--link a span {
	margin-left: 8px;
	font-size: 1.15em;
}

.home-panel--equipment .home-card-grid,
.home-panel--parts .home-card-grid,
.home-panel--service .home-card-grid {
	gap: 18px;
}

/* Equipment closer to reference */
.visual-card--equipment-showcase {
	border-radius: 14px;
	border-color: rgba(140, 158, 170, .22);
	background:
		linear-gradient(180deg, rgba(255,255,255,.03), transparent 45%),
		#0a1014;
}

.visual-card__body--equipment {
	padding: 26px 26px 10px;
}

.visual-card__equipment-heading {
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 16px;
}

.visual-card__equipment-icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
}

.visual-card__equipment-icon img {
	width: 30px;
	height: 30px;
}

.visual-card__body--equipment h3 {
	font-size: clamp(21px, 1.35vw, 30px);
	line-height: 1.22;
	font-weight: 500;
}

.visual-card__media--equipment-showcase {
	aspect-ratio: 10 / 7.4;
	padding: 0 20px 16px;
}

.visual-card__media--equipment-showcase img {
	object-fit: contain;
	object-position: center bottom;
}

.visual-card__arrow--equipment {
	right: 22px;
	bottom: 16px;
	font-size: 42px;
	font-weight: 300;
}

.brands-strip--equipment-showcase {
	margin-top: 18px;
	padding: 18px 26px;
	border-radius: 14px;
	grid-template-columns: minmax(260px, 1.6fr) repeat(5, minmax(110px, 1fr));
	align-items: center;
	background:
		linear-gradient(180deg, rgba(255,255,255,.02), transparent 55%),
		#0a1014;
}

.brands-strip--equipment-showcase > span {
	font-size: clamp(28px, 2vw, 48px);
	font-weight: 500;
	letter-spacing: -.02em;
}

.brands-strip--equipment-showcase strong {
	font-size: clamp(26px, 1.9vw, 40px);
	font-weight: 700;
	letter-spacing: -.02em;
	text-transform: none;
}

/* Parts closer to reference */
.parts-grid-showcase .visual-card--part {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0;
	border-radius: 14px;
	border-color: rgba(140, 158, 170, .22);
	background:
		linear-gradient(180deg, rgba(255,255,255,.028), transparent 44%),
		#0a1014;
}

.parts-grid-showcase .visual-card__media--part {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	aspect-ratio: auto;
	height: 132px;
	padding: 20px 24px 0;
	background: transparent;
}

.parts-grid-showcase .visual-card__media--part img {
	width: 88px;
	height: 88px;
	object-fit: contain;
}

.parts-grid-showcase .visual-card__body {
	min-height: 246px;
	padding: 10px 24px 26px;
}

.parts-grid-showcase .visual-card__body h3 {
	margin-bottom: 16px;
	font-size: clamp(22px, 1.35vw, 30px);
	line-height: 1.22;
	font-weight: 500;
	color: #fff;
}

.parts-grid-showcase .visual-card__body p {
	font-size: clamp(15px, 1vw, 23px);
	line-height: 1.52;
	color: #b3bcc0;
}

.section-callout--parts {
	grid-template-columns: auto 1fr auto;
	gap: 20px;
	margin-top: 14px;
	padding: 20px 24px;
	border-radius: 14px;
	border-color: rgba(140, 158, 170, .22);
	background:
		linear-gradient(180deg, rgba(255,255,255,.02), transparent 55%),
		#0a1014;
}

.section-callout__icon--svg {
	width: 74px;
	height: 74px;
	display: grid;
	place-items: center;
	font-size: 0;
}

.section-callout__icon--svg img {
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.section-callout--parts p {
	font-size: clamp(19px, 1.35vw, 33px);
	line-height: 1.34;
	color: #d4dbe0;
}

.section-callout--parts .button {
	min-width: 340px;
	min-height: 74px;
	padding: 0 28px;
	border-width: 2px;
	border-color: var(--accent);
	border-radius: 8px;
	font-size: clamp(18px, 1.15vw, 26px);
	font-weight: 600;
	color: var(--accent);
	background: rgba(0,0,0,.08);
}

/* Service closer to reference */
.service-grid-showcase .visual-card--service {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border-radius: 14px;
	border-color: rgba(140, 158, 170, .22);
	background:
		linear-gradient(180deg, rgba(255,255,255,.028), transparent 44%),
		#0a1014;
}

.service-grid-showcase .visual-card__service-icon--v2 {
	height: 150px;
	padding-top: 14px;
	background:
		radial-gradient(circle at 50% 42%, rgba(0,199,242,.08), transparent 52%),
		transparent;
}

.service-grid-showcase .visual-card__service-icon--v2::before {
	inset: 0;
	border: 0;
	background: none;
}

.service-grid-showcase .visual-card__service-icon--v2 img {
	width: 104px;
	height: 104px;
	filter: drop-shadow(0 0 14px rgba(0, 199, 242, .24));
}

.service-grid-showcase .visual-card__body {
	min-height: 284px;
	padding: 0 20px 26px;
}

.service-grid-showcase .visual-card__body h3 {
	margin: 0 0 16px;
	font-size: clamp(25px, 1.55vw, 34px);
	line-height: 1.18;
	font-weight: 600;
	color: #fff;
}

.service-grid-showcase .visual-card__body p {
	font-size: clamp(15px, 1vw, 22px);
	line-height: 1.6;
	color: #b0b8bc;
}

/* Responsive */
@media (max-width: 1700px) {
	.parts-grid-showcase .visual-card__body {
		min-height: 214px;
	}
	.service-grid-showcase .visual-card__body {
		min-height: 246px;
	}
	.section-callout--parts .button {
		min-width: 280px;
	}
}

@media (max-width: 1500px) {
	.home-panel--equipment .section-heading h2,
	.home-panel--parts .section-heading h2,
	.home-panel--service .section-heading h2 {
		font-size: clamp(34px, 2.4vw, 54px);
	}
	.home-panel--equipment .section-heading--link a,
	.home-panel--parts .section-heading--link a,
	.home-panel--service .section-heading--link a {
		font-size: clamp(15px, 1vw, 20px);
	}
	.parts-grid-showcase .visual-card__body h3,
	.service-grid-showcase .visual-card__body h3,
	.visual-card__body--equipment h3 {
		font-size: clamp(18px, 1.2vw, 26px);
	}
	.parts-grid-showcase .visual-card__body p,
	.service-grid-showcase .visual-card__body p {
		font-size: clamp(13px, .9vw, 18px);
	}
	.parts-grid-showcase .visual-card__body,
	.service-grid-showcase .visual-card__body {
		min-height: 170px;
	}
	.section-callout--parts p {
		font-size: clamp(15px, 1.08vw, 22px);
	}
	.section-callout--parts .button {
		min-height: 60px;
		font-size: 16px;
	}
	.brands-strip--equipment-showcase > span {
		font-size: clamp(20px, 1.5vw, 30px);
	}
	.brands-strip--equipment-showcase strong {
		font-size: clamp(18px, 1.45vw, 24px);
	}
}

@media (max-width: 1100px) {
	.home-panel--equipment .section-heading,
	.home-panel--parts .section-heading,
	.home-panel--service .section-heading {
		flex-wrap: wrap;
		align-items: center;
	}
	.home-panel--equipment .section-heading::after,
	.home-panel--parts .section-heading::after,
	.home-panel--service .section-heading::after {
		order: 3;
		width: 100%;
		flex: 0 0 100%;
	}
	.home-panel--equipment .section-heading--link a,
	.home-panel--parts .section-heading--link a,
	.home-panel--service .section-heading--link a {
		margin-left: auto;
	}
	.section-callout--parts {
		grid-template-columns: 1fr;
	}
	.section-callout__icon--svg {
		width: 52px;
		height: 52px;
	}
	.section-callout--parts .button {
		min-width: 0;
		width: 100%;
	}
}

@media (max-width: 820px) {
	.parts-grid-showcase .visual-card__body,
	.service-grid-showcase .visual-card__body {
		min-height: auto;
	}
	.parts-grid-showcase .visual-card__media--part {
		height: 112px;
	}
	.service-grid-showcase .visual-card__service-icon--v2 {
		height: 128px;
	}
	.brands-strip--equipment-showcase {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.brands-strip--equipment-showcase > span {
		grid-column: 1 / -1;
	}
}

@media (max-width: 580px) {
	.home-panel--equipment,
	.home-panel--parts,
	.home-panel--service {
		padding: 14px;
		border-radius: 14px;
	}
	.home-panel--equipment .section-heading h2,
	.home-panel--parts .section-heading h2,
	.home-panel--service .section-heading h2 {
		font-size: 34px;
	}
	.home-panel--equipment .section-heading--link a,
	.home-panel--parts .section-heading--link a,
	.home-panel--service .section-heading--link a {
		font-size: 14px;
	}
	.visual-card__body--equipment {
		padding: 18px 18px 8px;
	}
	.parts-grid-showcase .visual-card__media--part {
		padding: 16px 18px 0;
	}
	.parts-grid-showcase .visual-card__body,
	.service-grid-showcase .visual-card__body {
		padding-left: 18px;
		padding-right: 18px;
	}
	.section-callout--parts {
		padding: 16px 18px;
	}
	.section-callout--parts p {
		font-size: 15px;
	}
}


/* ===== Sintronika Corporate 1.0 — exact reference sections ===== */

.reference-section {
	width: 100%;
	padding: clamp(12px, 1.35vw, 26px) 0;
	background: #010304;
}

.reference-section--parts {
	background: #020608;
}

.reference-panel {
	padding: clamp(22px, 2vw, 38px);
	border: 2px solid rgba(118, 137, 148, .24);
	border-radius: 18px;
	background:
		radial-gradient(circle at 50% 35%, rgba(0, 170, 193, .025), transparent 54%),
		linear-gradient(180deg, #071015 0%, #03080b 100%);
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,.018),
		0 24px 70px rgba(0,0,0,.22);
}

.reference-heading {
	display: grid;
	grid-template-columns: auto minmax(100px, 1fr) auto;
	align-items: center;
	gap: clamp(18px, 1.8vw, 34px);
	margin-bottom: clamp(28px, 2.2vw, 42px);
}

.reference-heading h2 {
	margin: 0;
	color: #f7f8f9;
	font-size: clamp(48px, 3vw, 78px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -.035em;
}

.reference-heading__line {
	position: relative;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, #00aac1 0 13%, rgba(0,170,193,.18) 13% 100%);
}

.reference-heading__line::after {
	content: "";
	position: absolute;
	left: 13%;
	top: 50%;
	width: 10px;
	height: 10px;
	border: 3px solid #00aac1;
	border-radius: 50%;
	background: #061015;
	transform: translate(-50%, -50%);
}

.reference-heading a {
	color: #00c5e3;
	font-size: clamp(18px, 1.15vw, 27px);
	font-weight: 400;
	text-decoration: none;
	white-space: nowrap;
}

.reference-heading a span {
	margin-left: 10px;
	font-size: 1.22em;
}

.reference-grid {
	display: grid;
	gap: clamp(14px, 1.2vw, 24px);
}

.reference-grid--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.reference-grid--six {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* Equipment */

.reference-equipment-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(150, 164, 174, .23);
	border-radius: 14px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.03), transparent 48%),
		#0a1014;
	box-shadow: inset 0 0 28px rgba(255,255,255,.012);
	transition: transform .22s ease, border-color .22s ease;
}

.reference-equipment-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 197, 227, .72);
}

.reference-equipment-card__heading {
	min-height: 105px;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: start;
	gap: 16px;
	padding: 26px 26px 12px;
}

.reference-equipment-card__heading > img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	filter: drop-shadow(0 0 10px rgba(0, 197, 227, .24));
}

.reference-equipment-card__heading h3 {
	margin: 0;
	color: #f6f8f9;
	font-size: clamp(20px, 1.32vw, 30px);
	font-weight: 500;
	line-height: 1.27;
}

.reference-equipment-card__image {
	position: relative;
	min-height: clamp(250px, 18vw, 390px);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0 20px 20px;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 50% 78%, rgba(0, 170, 193, .10), transparent 48%),
		linear-gradient(180deg, transparent, rgba(0,0,0,.12));
	text-decoration: none;
}

.reference-equipment-card__image::after {
	content: "";
	position: absolute;
	left: 11%;
	right: 11%;
	bottom: 13%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0, 197, 227, .56), transparent);
	box-shadow: 0 0 17px rgba(0, 197, 227, .36);
}

.reference-equipment-card__image img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	max-height: 330px;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 20px 20px rgba(0,0,0,.52));
	transition: transform .3s ease;
}

.reference-equipment-card:hover .reference-equipment-card__image img {
	transform: scale(1.025);
}

.reference-equipment-card__image span {
	position: absolute;
	z-index: 3;
	right: 20px;
	bottom: 17px;
	color: #00c5e3;
	font-size: 46px;
	font-weight: 300;
	line-height: 1;
}

.reference-brands {
	display: grid;
	grid-template-columns: minmax(280px, 1.55fr) repeat(5, minmax(115px, 1fr));
	align-items: center;
	gap: 12px;
	margin-top: 18px;
	padding: clamp(20px, 1.5vw, 30px);
	border: 1px solid rgba(150, 164, 174, .22);
	border-radius: 14px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.025), transparent 48%),
		#0a1014;
}

.reference-brands__title {
	color: #f3f5f6;
	font-size: clamp(28px, 1.9vw, 46px);
	font-weight: 500;
	letter-spacing: -.025em;
}

.reference-brand {
	color: #f5f6f7;
	font-size: clamp(25px, 1.8vw, 40px);
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}

.reference-brand--fuji {
	font-style: italic;
	letter-spacing: -.08em;
	transform: skewX(-8deg);
}

.reference-brand--hanwha {
	font-weight: 500;
	text-transform: none;
}

.reference-brand--jt {
	position: relative;
	display: grid;
	justify-items: center;
	font-style: italic;
	font-size: clamp(34px, 2.2vw, 52px);
}

.reference-brand--jt small {
	margin-top: 3px;
	font-size: 8px;
	font-style: normal;
	letter-spacing: .28em;
}

.reference-brand--nutek {
	letter-spacing: .02em;
}

.reference-brand--kohyoung {
	font-weight: 500;
	text-transform: none;
}

/* Parts and service */

.reference-info-card {
	min-width: 0;
	min-height: clamp(350px, 24vw, 510px);
	padding: clamp(22px, 1.6vw, 34px);
	border: 1px solid rgba(150, 164, 174, .23);
	border-radius: 14px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.025), transparent 48%),
		#0a1014;
	transition: transform .22s ease, border-color .22s ease;
}

.reference-info-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 197, 227, .72);
}

.reference-info-card__icon {
	height: clamp(118px, 8vw, 168px);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none;
}

.reference-info-card__icon img {
	width: clamp(88px, 6.2vw, 130px);
	height: clamp(88px, 6.2vw, 130px);
	object-fit: contain;
	filter: drop-shadow(0 0 12px rgba(0, 197, 227, .24));
}

.reference-info-card h3 {
	margin: 12px 0 18px;
	color: #f8f9fa;
	font-size: clamp(24px, 1.55vw, 36px);
	font-weight: 600;
	line-height: 1.2;
}

.reference-info-card p {
	margin: 0;
	color: #adb5ba;
	font-size: clamp(17px, 1.1vw, 26px);
	font-weight: 400;
	line-height: 1.58;
}

.reference-info-card--service {
	min-height: clamp(430px, 29vw, 610px);
}

.reference-info-card--service .reference-info-card__icon {
	height: clamp(135px, 9.2vw, 190px);
	justify-content: center;
}

.reference-info-card--service .reference-info-card__icon img {
	width: clamp(108px, 7.2vw, 150px);
	height: clamp(108px, 7.2vw, 150px);
}

.reference-info-card--service h3 {
	text-align: center;
	font-size: clamp(27px, 1.7vw, 39px);
}

.reference-callout {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr) minmax(320px, 390px);
	align-items: center;
	gap: 24px;
	margin-top: 18px;
	padding: clamp(20px, 1.5vw, 30px);
	border: 1px solid rgba(150, 164, 174, .22);
	border-radius: 14px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.02), transparent 48%),
		#0a1014;
}

.reference-callout > img {
	width: 68px;
	height: 68px;
	object-fit: contain;
}

.reference-callout p {
	margin: 0;
	color: #d4dade;
	font-size: clamp(20px, 1.35vw, 32px);
	line-height: 1.35;
}

.reference-callout > a {
	min-height: 74px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 28px;
	border: 2px solid #00c5e3;
	border-radius: 7px;
	color: #00c5e3;
	font-size: clamp(20px, 1.2vw, 28px);
	font-weight: 600;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.reference-callout > a:hover {
	background: #00c5e3;
	color: #001014;
}

@media (max-width: 1580px) {
	.reference-grid--six {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.reference-info-card {
		min-height: 340px;
	}

	.reference-info-card--service {
		min-height: 390px;
	}

	.reference-callout {
		grid-template-columns: 64px minmax(0, 1fr) minmax(250px, 310px);
	}

	.reference-callout > img {
		width: 54px;
		height: 54px;
	}
}

@media (max-width: 1280px) {
	.reference-grid--five {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.reference-heading h2 {
		font-size: clamp(38px, 3vw, 54px);
	}

	.reference-heading a {
		font-size: 17px;
	}

	.reference-equipment-card__heading h3,
	.reference-info-card h3 {
		font-size: 22px;
	}

	.reference-info-card p {
		font-size: 16px;
	}

	.reference-brands__title {
		font-size: 26px;
	}

	.reference-brand {
		font-size: 23px;
	}
}

@media (max-width: 900px) {
	.reference-heading {
		grid-template-columns: 1fr auto;
	}

	.reference-heading__line {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.reference-heading a {
		margin-left: auto;
	}

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

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

	.reference-brands__title {
		grid-column: 1 / -1;
	}

	.reference-callout {
		grid-template-columns: 60px 1fr;
	}

	.reference-callout > a {
		grid-column: 1 / -1;
		width: 100%;
	}
}

@media (max-width: 580px) {
	.reference-panel {
		padding: 15px;
		border-radius: 14px;
	}

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

	.reference-heading h2 {
		font-size: 36px;
	}

	.reference-heading a {
		margin-left: 0;
		font-size: 14px;
	}

	.reference-heading__line {
		grid-column: auto;
		grid-row: auto;
	}

	.reference-grid--five,
	.reference-grid--six,
	.reference-brands {
		grid-template-columns: 1fr;
	}

	.reference-equipment-card__heading {
		min-height: 84px;
		padding: 18px 18px 8px;
	}

	.reference-equipment-card__image {
		min-height: 260px;
	}

	.reference-info-card,
	.reference-info-card--service {
		min-height: auto;
		padding: 20px;
	}

	.reference-info-card__icon,
	.reference-info-card--service .reference-info-card__icon {
		height: 115px;
		justify-content: center;
	}

	.reference-info-card h3,
	.reference-info-card--service h3 {
		font-size: 24px;
		text-align: left;
	}

	.reference-info-card p {
		font-size: 16px;
	}

	.reference-callout {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.reference-callout p {
		font-size: 16px;
	}

	.reference-callout > a {
		min-height: 54px;
		font-size: 17px;
	}
}


/* ===== Sintronika Corporate 1.1 — exact image-based section replacement ===== */

.reference-section--image {
	padding: clamp(12px, 1.2vw, 24px) 0;
	background: #020507;
}

.reference-shot {
	padding: 0;
}

.reference-shot img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
	box-shadow: 0 14px 46px rgba(0, 0, 0, .22);
}

@media (max-width: 680px) {
	.reference-shot img {
		border-radius: 12px;
	}
}


/* ===== Sintronika Corporate 1.2 — clickable image sections ===== */

.reference-shot {
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 197, 227, .48) rgba(5, 10, 13, .9);
}

.reference-shot__canvas {
	position: relative;
	width: 100%;
	min-width: 980px;
}

.reference-shot__canvas > img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
	box-shadow: 0 14px 46px rgba(0, 0, 0, .22);
	user-select: none;
	-webkit-user-drag: none;
}

.reference-hotspot {
	position: absolute;
	z-index: 3;
	left: var(--x);
	top: var(--y);
	width: var(--w);
	height: var(--h);
	display: block;
	border: 0;
	border-radius: 12px;
	background: transparent;
	text-decoration: none;
	cursor: pointer;
	transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.reference-hotspot:hover {
	background: rgba(0, 197, 227, .065);
	box-shadow:
		inset 0 0 0 2px rgba(0, 197, 227, .55),
		0 0 22px rgba(0, 197, 227, .12);
}

.reference-hotspot:focus-visible {
	outline: 3px solid #00c5e3;
	outline-offset: -3px;
	background: rgba(0, 197, 227, .09);
	box-shadow: 0 0 24px rgba(0, 197, 227, .18);
}

.reference-hotspot--brand {
	border-radius: 8px;
}

.reference-hotspot--button:hover {
	background: rgba(0, 197, 227, .14);
	box-shadow:
		inset 0 0 0 2px rgba(0, 197, 227, .82),
		0 0 24px rgba(0, 197, 227, .18);
}

@media (max-width: 680px) {
	.reference-shot__canvas {
		min-width: 1024px;
	}

	.reference-shot__canvas > img {
		border-radius: 12px;
	}
}


/* ===== Sintronika Corporate 1.3 — section landing pages ===== */

.section-hub-hero,
.section-detail-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 6vw, 118px) 0 clamp(62px, 5vw, 96px);
	border-bottom: 1px solid rgba(0, 170, 193, .22);
	background:
		radial-gradient(circle at 82% 22%, rgba(0, 170, 193, .13), transparent 30rem),
		linear-gradient(180deg, #071116, #020506);
}

.section-hub-hero::before,
.section-detail-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .2;
	background-image:
		linear-gradient(rgba(0, 170, 193, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 170, 193, .08) 1px, transparent 1px);
	background-size: 58px 58px;
	mask-image: linear-gradient(90deg, transparent, #000 58%, transparent);
	pointer-events: none;
}

.section-hub-hero .front-fluid-shell,
.section-detail-hero .front-fluid-shell {
	position: relative;
	z-index: 1;
}

.section-detail__eyebrow {
	margin: 0 0 14px;
	color: #00aac1;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.section-hub-hero h1,
.section-detail-hero h1 {
	max-width: 1050px;
	margin: 0;
	color: #f7f9fa;
	font-size: clamp(48px, 5.2vw, 92px);
	line-height: 1.02;
	letter-spacing: -.045em;
	text-transform: uppercase;
}

.section-hub-hero__lead {
	max-width: 820px;
	margin: 24px 0 0;
	color: #aebbc0;
	font-size: clamp(18px, 1.35vw, 25px);
	line-height: 1.55;
}

.section-hub-content,
.section-detail-content {
	padding: clamp(52px, 5vw, 92px) 0;
	background:
		radial-gradient(circle at 12% 12%, rgba(0, 170, 193, .04), transparent 28rem),
		#020405;
}

.section-hub-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 1.8vw, 32px);
}

.section-hub-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(130, 160, 172, .24);
	border-radius: 12px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.03), transparent 48%),
		#081014;
	color: inherit;
	text-decoration: none;
	transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.section-hub-card:hover {
	transform: translateY(-6px);
	border-color: #00aac1;
	box-shadow: 0 24px 52px rgba(0,0,0,.34);
}

.section-hub-card__visual {
	min-height: 250px;
	display: grid;
	place-items: center;
	padding: 25px;
	background:
		radial-gradient(circle at 50% 60%, rgba(0,170,193,.14), transparent 52%),
		#050b0e;
}

.section-hub-card__visual img {
	width: 100%;
	height: 230px;
	object-fit: contain;
	transition: transform .3s ease;
}

.section-hub-card:hover .section-hub-card__visual img {
	transform: scale(1.035);
}

.section-hub-card__visual--parts img,
.section-hub-card__visual--service img {
	max-width: 145px;
	max-height: 145px;
}

.section-hub-card__body {
	padding: 26px;
}

.section-hub-card__body > span,
.section-detail-related__grid a div > span {
	color: #00aac1;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.section-hub-card h2 {
	margin: 11px 0 12px;
	font-size: clamp(22px, 1.55vw, 31px);
	line-height: 1.2;
}

.section-hub-card p {
	min-height: 78px;
	margin: 0 0 20px;
	color: #9baab0;
	line-height: 1.55;
}

.section-hub-card strong {
	color: #00c4de;
}

.section-detail-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
	gap: clamp(40px, 5vw, 98px);
	align-items: center;
}

.section-detail-hero__lead {
	max-width: 840px;
	margin: 24px 0 0;
	color: #b5c1c5;
	font-size: clamp(18px, 1.35vw, 26px);
	line-height: 1.55;
}

.section-detail-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 30px 0;
}

.section-detail-meta > div {
	padding: 15px 17px;
	border: 1px solid rgba(0,170,193,.22);
	border-radius: 6px;
	background: rgba(0,170,193,.035);
}

.section-detail-meta span,
.section-detail-meta strong {
	display: block;
}

.section-detail-meta span {
	color: #73868e;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .07em;
}

.section-detail-meta strong {
	margin-top: 6px;
	color: #e2e9eb;
	font-size: 14px;
	line-height: 1.3;
}

.section-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
}

.section-detail-hero__visual {
	position: relative;
	min-height: 510px;
	display: grid;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(0,170,193,.28);
	border-radius: 12px;
	background:
		radial-gradient(circle at 50% 60%, rgba(0,170,193,.18), transparent 48%),
		linear-gradient(145deg, #0a151a, #030709);
	box-shadow:
		0 25px 70px rgba(0,0,0,.35),
		inset 0 0 55px rgba(0,170,193,.035);
}

.section-detail-hero__visual::after {
	content: "";
	position: absolute;
	left: 12%;
	right: 12%;
	bottom: 12%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0,196,222,.7), transparent);
	box-shadow: 0 0 20px rgba(0,196,222,.5);
}

.section-detail-hero__visual img {
	position: relative;
	z-index: 1;
	width: 92%;
	height: 460px;
	padding: 20px;
	object-fit: contain;
	filter: drop-shadow(0 24px 24px rgba(0,0,0,.52));
}

.section-detail-hero__visual--parts img,
.section-detail-hero__visual--service img {
	width: min(330px, 72%);
	height: 330px;
}

.section-detail-intro {
	display: grid;
	grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
	gap: clamp(32px, 4vw, 74px);
	align-items: start;
	margin-bottom: clamp(38px, 4vw, 66px);
}

.section-detail-intro h2,
.section-detail-applications h2,
.section-detail-cta h2 {
	margin: 0;
	font-size: clamp(30px, 2.5vw, 47px);
	line-height: 1.12;
}

.section-detail-intro > p {
	margin: 0;
	color: #b8c3c7;
	font-size: clamp(17px, 1.25vw, 23px);
	line-height: 1.7;
}

.section-detail-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 1.6vw, 28px);
	margin-bottom: clamp(52px, 5vw, 88px);
}

.section-detail-features article {
	position: relative;
	min-height: 230px;
	padding: 27px;
	overflow: hidden;
	border: 1px solid rgba(130,160,172,.22);
	border-radius: 9px;
	background:
		linear-gradient(145deg, rgba(0,170,193,.06), transparent 46%),
		#081014;
}

.section-detail-features article > span {
	position: absolute;
	right: 17px;
	top: 10px;
	color: rgba(0,170,193,.12);
	font-size: 78px;
	font-weight: 900;
	line-height: 1;
}

.section-detail-features h3 {
	position: relative;
	margin: 32px 0 12px;
	font-size: clamp(21px, 1.45vw, 29px);
}

.section-detail-features p {
	position: relative;
	margin: 0;
	color: #98a8ae;
	line-height: 1.6;
}

.section-detail-columns {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
	gap: clamp(30px, 4vw, 66px);
	align-items: start;
}

.section-detail-applications {
	padding: 30px;
	border: 1px solid rgba(0,170,193,.28);
	border-radius: 10px;
	background:
		linear-gradient(145deg, rgba(0,170,193,.075), transparent 48%),
		#081014;
}

.section-detail-applications ul {
	display: grid;
	gap: 10px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.section-detail-applications li {
	position: relative;
	padding: 13px 14px 13px 43px;
	border: 1px solid rgba(0,170,193,.14);
	border-radius: 5px;
	color: #c7d0d4;
	background: rgba(0,170,193,.025);
}

.section-detail-applications li::before {
	content: "✓";
	position: absolute;
	left: 15px;
	color: #00c4de;
	font-weight: 800;
}

.section-detail-cta {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 36px;
	margin-top: clamp(52px, 5vw, 86px);
	padding: clamp(28px, 3vw, 48px);
	border: 1px solid rgba(0,170,193,.4);
	border-radius: 11px;
	background:
		radial-gradient(circle at 92% 50%, rgba(0,170,193,.16), transparent 22rem),
		linear-gradient(145deg, rgba(0,170,193,.06), transparent 44%),
		#071014;
}

.section-detail-cta p:last-child {
	max-width: 760px;
	margin: 15px 0 0;
	color: #98a8ae;
	line-height: 1.6;
}

.section-detail-related {
	margin-top: clamp(52px, 5vw, 90px);
}

.section-detail-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.section-detail-related__grid > a {
	display: grid;
	grid-template-columns: 132px 1fr;
	align-items: center;
	gap: 20px;
	min-width: 0;
	padding: 17px;
	border: 1px solid rgba(130,160,172,.2);
	border-radius: 8px;
	background: #081014;
	color: inherit;
	text-decoration: none;
	transition: border-color .2s ease, transform .2s ease;
}

.section-detail-related__grid > a:hover {
	transform: translateY(-3px);
	border-color: #00aac1;
}

.section-detail-related__grid img {
	width: 132px;
	height: 105px;
	padding: 8px;
	object-fit: contain;
	border-radius: 5px;
	background: rgba(0,170,193,.035);
}

.section-detail-related__grid h3 {
	margin: 7px 0 10px;
	font-size: 19px;
	line-height: 1.25;
}

.section-detail-related__grid strong {
	color: #00c4de;
	font-size: 13px;
}

@media (max-width: 1100px) {
	.section-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.section-detail-hero__grid,
	.section-detail-intro,
	.section-detail-columns { grid-template-columns: 1fr; }
	.section-detail-hero__visual { min-height: 430px; }
	.section-detail-hero__visual img { height: 390px; }
	.section-detail-related__grid { grid-template-columns: 1fr; }
	.section-detail-meta { grid-template-columns: 1fr; }
	.section-detail-cta { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
	.section-hub-grid,
	.section-detail-features { grid-template-columns: 1fr; }
	.section-hub-card p { min-height: 0; }
	.section-detail-hero__visual { min-height: 330px; }
	.section-detail-hero__visual img { height: 300px; }
	.section-detail-hero__visual--parts img,
	.section-detail-hero__visual--service img { height: 230px; }
	.section-detail-related__grid > a { grid-template-columns: 90px 1fr; }
	.section-detail-related__grid img { width: 90px; height: 82px; }
}

@media (max-width: 520px) {
	.section-hub-hero,
	.section-detail-hero { padding-top: 56px; }
	.section-hub-hero h1,
	.section-detail-hero h1 { font-size: 38px; }
	.section-detail-actions { flex-direction: column; align-items: stretch; }
	.section-detail-cta .button { width: 100%; }
	.section-detail-features article { min-height: 200px; }
}


/* ===== Sintronika Corporate 1.4 — printer + disabled account ===== */

.account-button--disabled,
.account-button--disabled:hover,
.account-button--disabled:focus {
	cursor: default;
	opacity: .72;
	transform: none;
	background: transparent;
	color: var(--accent);
	box-shadow: none;
}

.account-button--disabled:disabled {
	pointer-events: none;
}

.reference-equipment-card__image img[src*="equipment-fuji-gpx-cwf-cwr"],
.section-hub-card__visual img[src*="equipment-fuji-gpx-cwf-cwr"],
.section-detail-hero__visual img[src*="equipment-fuji-gpx-cwf-cwr"],
.section-detail-related__grid img[src*="equipment-fuji-gpx-cwf-cwr"] {
	border-radius: 5px;
	background: #061117;
}

.reference-equipment-card__image img[src*="equipment-fuji-gpx-cwf-cwr"] {
	max-height: 320px;
}

.section-detail-hero__visual img[src*="equipment-fuji-gpx-cwf-cwr"] {
	width: 94%;
	height: 430px;
	padding: 24px;
}


/* ===== Sintronika Corporate 1.5 — SEO content and crawlability ===== */

.seo-home-content,
.html-sitemap {
	padding: clamp(62px, 6vw, 112px) 0;
	border-top: 1px solid rgba(0, 170, 193, .18);
	background:
		radial-gradient(circle at 12% 12%, rgba(0,170,193,.05), transparent 30rem),
		#020506;
}

.seo-home-content__intro {
	display: grid;
	grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
	gap: clamp(36px, 5vw, 90px);
	align-items: start;
	margin-bottom: clamp(34px, 4vw, 68px);
}

.seo-home-content h2,
.seo-longread h2 {
	margin: 0;
	color: #f5f8f9;
	font-size: clamp(32px, 3vw, 56px);
	line-height: 1.12;
	letter-spacing: -.035em;
}

.seo-home-content__intro > div:last-child p,
.seo-longread__columns p {
	margin: 0 0 18px;
	color: #aebbc0;
	font-size: clamp(16px, 1.14vw, 21px);
	line-height: 1.72;
}

.seo-direction-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 1.6vw, 28px);
	margin-bottom: clamp(52px, 5vw, 82px);
}

.seo-direction-grid article {
	padding: clamp(22px, 2vw, 34px);
	border: 1px solid rgba(130,160,172,.22);
	border-radius: 10px;
	background:
		linear-gradient(145deg, rgba(0,170,193,.055), transparent 48%),
		#081014;
}

.seo-direction-grid h3 {
	margin: 0 0 20px;
	font-size: clamp(21px, 1.45vw, 29px);
	line-height: 1.25;
}

.seo-direction-grid h3 a,
.seo-direction-grid li a,
.html-sitemap a {
	color: inherit;
	text-decoration: none;
}

.seo-direction-grid h3 a:hover,
.seo-direction-grid li a:hover,
.html-sitemap a:hover {
	color: #00c4de;
}

.seo-direction-grid ul,
.html-sitemap ul {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.seo-direction-grid li {
	position: relative;
	padding-left: 19px;
	color: #9eacb2;
	line-height: 1.45;
}

.seo-direction-grid li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .65em;
	width: 7px;
	height: 7px;
	border: 1px solid #00aac1;
	border-radius: 50%;
}

.seo-longread {
	margin-top: clamp(52px, 5vw, 88px);
	padding: clamp(28px, 3vw, 48px);
	border: 1px solid rgba(130,160,172,.2);
	border-radius: 10px;
	background:
		linear-gradient(145deg, rgba(0,170,193,.055), transparent 46%),
		#071014;
}

.seo-longread--detail {
	margin-bottom: 0;
}

.seo-longread__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(26px, 4vw, 66px);
	margin-top: 26px;
}

.seo-faq {
	margin-top: clamp(52px, 5vw, 88px);
}

.seo-faq__list {
	display: grid;
	gap: 10px;
}

.seo-faq details {
	border: 1px solid rgba(130,160,172,.2);
	border-radius: 8px;
	background: #081014;
}

.seo-faq summary {
	position: relative;
	padding: 20px 54px 20px 22px;
	color: #e9eff1;
	font-size: clamp(17px, 1.16vw, 22px);
	font-weight: 600;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}

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

.seo-faq summary::after {
	content: "+";
	position: absolute;
	right: 21px;
	top: 50%;
	color: #00c4de;
	font-size: 28px;
	font-weight: 300;
	transform: translateY(-50%);
}

.seo-faq details[open] summary::after {
	content: "−";
}

.seo-faq details p {
	margin: 0;
	padding: 0 22px 22px;
	color: #9eacb2;
	line-height: 1.65;
}

.html-sitemap__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 34px);
}

.html-sitemap__grid section {
	padding: 24px;
	border: 1px solid rgba(130,160,172,.2);
	border-radius: 9px;
	background: #081014;
}

.html-sitemap h2 {
	margin: 0 0 18px;
	font-size: 24px;
}

.html-sitemap li {
	color: #9eacb2;
	line-height: 1.45;
}

.site-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

@media (max-width: 1050px) {
	.seo-home-content__intro,
	.seo-longread__columns {
		grid-template-columns: 1fr;
	}

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

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

@media (max-width: 680px) {
	.seo-direction-grid,
	.html-sitemap__grid {
		grid-template-columns: 1fr;
	}

	.seo-home-content h2,
	.seo-longread h2 {
		font-size: 31px;
	}

	.seo-longread {
		padding: 22px;
	}
}
