:root {
	--spc-blue-950: #0b1b2f;
	--spc-blue-900: #10243d;
	--spc-blue-800: #163554;
	--spc-blue-700: #1f5d8c;
	--spc-orange-500: #f47a17;
	--spc-orange-600: #df650b;
	--spc-white: #ffffff;
	--spc-ink: #172231;
	--spc-steel: #344054;
	--spc-muted: #667085;
	--spc-line: rgba(16, 36, 61, 0.12);
	--spc-bg: #f3f6f8;
	--spc-card: var(--spc-white);
	--spc-radius: 8px;
	--spc-radius-sm: 6px;
	--spc-shadow: 0 16px 34px rgba(12, 27, 47, 0.12);
	--spc-container: min(1320px, calc(100vw - 48px));
	--spc-navy: var(--spc-blue-950);
	--spc-orange: var(--spc-orange-500);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--spc-bg);
	color: var(--spc-ink);
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0;
}

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

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

.spc-container {
	width: var(--spc-container);
	margin: 0 auto;
}

.spc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-weight: 700;
}

.spc-button--primary {
	background: var(--spc-orange-500);
	color: var(--spc-white);
}

.spc-button--secondary {
	background: var(--spc-white);
	color: var(--spc-orange-600);
}

.spc-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(12, 27, 47, 0.14);
}

.spc-card {
	border: 1px solid var(--spc-line);
	border-radius: var(--spc-radius);
	background: var(--spc-card);
	box-shadow: var(--spc-shadow);
}

.spc-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--spc-blue-950);
	color: var(--spc-white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spc-header-top {
	border-bottom: 1px solid rgba(255,255,255,0.08);
	background: rgba(4, 15, 29, 0.55);
	color: rgba(255,255,255,0.72);
	font-size: 12px;
}

.spc-header-top__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 30px;
}

.spc-header-top a {
	color: rgba(255,255,255,0.82);
	font-weight: 700;
}

.spc-header-top a:hover {
	color: var(--spc-white);
}

.spc-site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	min-height: 64px;
}

.spc-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 21px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.spc-logo__mark {
	display: inline-grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 4px;
	background: var(--spc-white);
	color: var(--spc-blue-950);
	font-weight: 900;
	font-style: italic;
}

.spc-logo__image {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	object-fit: contain;
	background: rgba(255,255,255,0.96);
	box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

.spc-primary-nav,
.spc-header-contact {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 13px;
}

.spc-primary-nav {
	justify-content: center;
	white-space: nowrap;
}

.spc-nav-item {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 64px;
}

.spc-primary-nav > a,
.spc-nav-item > a {
	display: inline-flex;
	align-items: center;
	min-height: 64px;
	font-weight: 700;
}

.spc-primary-nav a.is-active,
.spc-nav-item > a.is-active {
	position: relative;
	color: var(--spc-orange-500);
}

.spc-primary-nav a.is-active::after,
.spc-nav-item > a.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--spc-orange-500);
}

.spc-nav-panel {
	position: absolute;
	top: calc(100% - 1px);
	left: -18px;
	z-index: 30;
	display: grid;
	width: 460px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	padding: 14px;
	border: 1px solid rgba(255,255,255,0.12);
	border-top: 2px solid var(--spc-orange-500);
	border-radius: 0 0 8px 8px;
	background: rgba(11, 27, 47, 0.98);
	box-shadow: 0 20px 48px rgba(0,0,0,0.25);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.spc-nav-panel--brands,
.spc-nav-panel--series {
	width: 460px;
}

.spc-nav-item:hover .spc-nav-panel,
.spc-nav-item:focus-within .spc-nav-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.spc-nav-panel a {
	display: grid;
	gap: 4px;
	padding: 12px;
	border-radius: 6px;
	background: rgba(255,255,255,0.04);
}

.spc-nav-panel a:hover {
	background: rgba(255,255,255,0.09);
}

.spc-nav-panel strong {
	color: var(--spc-white);
	font-size: 13px;
}

.spc-nav-panel span {
	color: rgba(255,255,255,0.68);
	font-size: 12px;
	line-height: 1.35;
}

.spc-header-contact {
	gap: 12px;
	white-space: nowrap;
}

.spc-header-phone {
	color: rgba(255,255,255,0.88);
	font-weight: 800;
}

.spc-header-rfq {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 2px;
	background: var(--spc-orange-500);
	color: var(--spc-white);
	font-weight: 900;
}

.spc-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #122b45 0%, #24506f 52%, #10243d 100%);
	color: var(--spc-white);
}

.spc-hero::before {
	content: none;
}

.spc-hero::after {
	content: none;
}

.spc-hero-slide {
	position: relative;
	display: none;
	isolation: isolate;
	background:
		linear-gradient(90deg, rgba(11, 27, 47, 0.9) 0%, rgba(11, 27, 47, 0.54) 48%, rgba(11, 27, 47, 0.12) 100%),
		var(--spc-hero-image) center right / cover no-repeat,
		linear-gradient(135deg, #122b45 0%, #24506f 52%, #10243d 100%);
}

.spc-hero-slide::before {
	content: "";
	position: absolute;
	z-index: 0;
	inset: 0 auto 0 0;
	width: min(62vw, 820px);
	background: linear-gradient(90deg, rgba(11,27,47,0.98), rgba(11,27,47,0.86));
	clip-path: polygon(0 0, 80% 0, 64% 100%, 0% 100%);
}

.spc-hero-slide::after {
	content: "";
	position: absolute;
	z-index: 0;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255,255,255,0.035) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: 0.5;
}

.spc-hero-slide.is-active {
	display: block;
}

.spc-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 34px;
	align-items: center;
	min-height: 390px;
}

.spc-hero__copy {
	width: min(720px, 100%);
	padding: 42px 0;
}

.spc-hero__eyebrow,
.spc-section-kicker,
.spc-section-heading--home span {
	display: block;
	margin-bottom: 9px;
	color: var(--spc-orange-500);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-hero h1 {
	margin: 0 0 8px;
	font-size: clamp(38px, 4vw, 58px);
	line-height: 1.14;
	font-weight: 900;
}

.spc-hero p {
	margin: 0;
	max-width: 720px;
	font-size: 19px;
	color: rgba(255,255,255,0.92);
}

.spc-hero-search {
	display: grid;
	grid-template-columns: minmax(300px, 430px) 150px;
	gap: 8px;
	margin-top: 22px;
}

.spc-hero-search input[type="search"] {
	width: 100%;
	min-height: 42px;
	border: 1px solid rgba(255,255,255,0.22);
	border-radius: 2px;
	background: rgba(255,255,255,0.94);
	color: var(--spc-ink);
	padding: 0 14px;
	font: inherit;
	box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.spc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.spc-hero__quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.spc-hero__quick-links a {
	padding: 7px 10px;
	border: 1px solid rgba(255,255,255,0.24);
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.88);
	font-size: 12px;
	font-weight: 800;
}

.spc-hero__rfq-card {
	display: grid;
	gap: 8px;
	padding: 18px;
	border: 1px solid rgba(255,255,255,0.16);
	border-left: 3px solid var(--spc-orange-500);
	border-radius: 8px;
	background: rgba(11, 27, 47, 0.72);
	box-shadow: 0 22px 46px rgba(0,0,0,0.2);
}

.spc-hero__rfq-card span {
	color: var(--spc-orange-500);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-hero__rfq-card strong {
	font-size: 18px;
	line-height: 1.28;
}

.spc-hero__rfq-card small {
	color: rgba(255,255,255,0.74);
	line-height: 1.5;
}

.spc-hero__dots {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 10px 0;
	background: #f5f6f7;
}

.spc-hero__dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #c8cdd2;
	cursor: pointer;
}

.spc-hero__dots button.is-active {
	background: #757b80;
}

.spc-trust-bar {
	background: linear-gradient(180deg, #3a3a3a 0%, #2d2d2d 100%);
	color: var(--spc-white);
}

.spc-trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	min-height: 64px;
	align-items: center;
}

.spc-trust-bar span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	white-space: nowrap;
}

.spc-trust-icon {
	display: inline-grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 1px solid rgba(255,255,255,0.58);
	border-radius: 999px;
	color: var(--spc-white);
}

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

.spc-section {
	padding: 64px 0;
}

.spc-section h2 {
	margin: 0 0 28px;
	font-size: clamp(28px, 2.4vw, 38px);
	line-height: 1.15;
}

.spc-section-heading--home {
	align-items: end;
	margin-bottom: 26px;
}

.spc-section-heading--home h2 {
	margin-bottom: 0;
}

.spc-section-heading--home a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border: 1px solid rgba(244, 122, 23, 0.26);
	border-radius: 999px;
	background: rgba(255,255,255,0.78);
	color: var(--spc-orange-600);
	font-weight: 900;
	box-shadow: 0 10px 24px rgba(12, 27, 47, 0.06);
	transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.spc-section-heading--home a:hover {
	background: var(--spc-orange-500);
	color: var(--spc-white);
	transform: translateY(-1px);
}

.spc-section-intro {
	max-width: 860px;
	margin: -10px 0 22px;
	color: var(--spc-muted);
	font-size: 16px;
	line-height: 1.65;
}

.spc-section--white {
	background: var(--spc-white);
}

.spc-section--soft {
	background: linear-gradient(180deg, #eef2f5 0%, #f7f9fb 100%);
}

.spc-brand-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(105deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 52%, rgba(255,255,255,0.74) 62%, rgba(11,27,47,0.88) 62%, rgba(11,27,47,0.98) 100%),
		url("../images/hero-industrial-control-room.webp") center right / cover no-repeat;
}

.spc-brand-showcase {
	display: grid;
	grid-template-columns: minmax(330px, 0.42fr) minmax(0, 1fr);
	gap: 28px;
	align-items: stretch;
}

.spc-brand-proof {
	display: grid;
	align-content: end;
	gap: 10px;
	min-height: 280px;
	padding: 30px;
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(11,27,47,0.12), rgba(11,27,47,0.86)),
		url("../images/hero-industrial-control-room.webp") center / cover no-repeat;
	color: var(--spc-white);
	box-shadow: 0 24px 46px rgba(12, 27, 47, 0.18);
}

.spc-brand-proof span {
	color: var(--spc-orange-500);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-brand-proof strong {
	font-size: 28px;
	line-height: 1.15;
}

.spc-brand-proof small {
	color: rgba(255,255,255,0.78);
	font-size: 14px;
	line-height: 1.6;
}

.spc-brand-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}

.spc-brand-row a {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 92px;
	padding: 0 20px;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.94)),
		radial-gradient(circle at center, rgba(16,36,61,0.06), transparent 62%);
	color: #0f2237;
	font-weight: 900;
	box-shadow: 0 16px 36px rgba(12, 27, 47, 0.12);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.spc-brand-row a::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 3px;
	background: linear-gradient(90deg, var(--spc-orange-500), #2994ea);
	opacity: 0;
	transition: opacity 0.18s ease;
}

.spc-brand-row a:hover {
	border-color: rgba(244, 122, 23, 0.45);
	box-shadow: 0 22px 46px rgba(12, 27, 47, 0.18);
	transform: translateY(-3px);
}

.spc-brand-row a:hover::after {
	opacity: 1;
}

.spc-brand-row strong {
	font-size: 20px;
	letter-spacing: 0;
}

.spc-brand-row img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: saturate(1.08) contrast(1.04);
}

.spc-brand-row a.has-logo {
	padding: 16px 22px;
	background: #fff;
	overflow: hidden;
}

.spc-brand-row a.has-logo img {
	max-width: 100%;
	max-height: 74px;
}

.spc-muted-copy {
	margin: 22px 0 0;
	color: var(--spc-muted);
}

.spc-product-range-section {
	background:
		radial-gradient(circle at 12% 10%, rgba(41, 148, 234, 0.12), transparent 30%),
		radial-gradient(circle at 88% 92%, rgba(244, 122, 23, 0.08), transparent 28%),
		linear-gradient(180deg, #edf2f5 0%, #f8fafc 100%);
}

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

.spc-category-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 104px 1fr auto;
	gap: 10px 22px;
	align-items: center;
	min-height: 174px;
	padding: 28px;
	border: 1px solid rgba(16, 36, 61, 0.1);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.9)),
		linear-gradient(135deg, rgba(22,53,84,0.08), rgba(244,122,23,0.08));
	box-shadow: 0 18px 42px rgba(12, 27, 47, 0.08);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.spc-category-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-blue-800), var(--spc-orange-500));
	opacity: 0;
	transition: opacity 0.18s ease;
}

.spc-category-card:hover {
	border-color: rgba(244, 122, 23, 0.45);
	box-shadow: 0 26px 52px rgba(12, 27, 47, 0.16);
	transform: translateY(-4px);
}

.spc-category-card:hover::before {
	opacity: 1;
}

.spc-category-card__icon {
	grid-row: span 3;
	position: relative;
	display: grid;
	width: 104px;
	height: 104px;
	place-items: center;
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(231,238,244,0.96)),
		radial-gradient(circle at 50% 42%, rgba(41,148,234,0.12), transparent 58%);
	color: var(--spc-blue-900);
	overflow: hidden;
	box-shadow:
		inset 0 0 0 1px rgba(16,36,61,0.12),
		0 16px 28px rgba(12,27,47,0.1);
}

.spc-category-card__icon img {
	width: 92px;
	height: 92px;
	object-fit: contain;
	filter: saturate(1.16) contrast(1.14) drop-shadow(0 10px 14px rgba(12,27,47,0.16));
	transform: scale(2.45);
	transform-origin: center;
}

.spc-category-card__icon b {
	position: absolute;
	right: 7px;
	bottom: 7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 22px;
	padding: 0 7px;
	border-radius: 999px;
	background: var(--spc-blue-950);
	color: var(--spc-white);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.04em;
	box-shadow: 0 8px 18px rgba(12,27,47,0.18);
}

.spc-category-card:hover .spc-category-card__icon b {
	background: var(--spc-orange-500);
}

.spc-category-card strong {
	font-size: 23px;
	line-height: 1.12;
}

.spc-category-card em,
.spc-category-card small {
	color: var(--spc-muted);
	font-style: normal;
}

.spc-category-card em {
	justify-self: end;
	padding: 5px 9px;
	border-radius: 999px;
	background: #eef3f7;
	color: var(--spc-blue-800);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-category-card small {
	max-width: 270px;
	font-size: 15px;
	line-height: 1.35;
}

.spc-category-card > span:last-child {
	grid-column: 3;
	grid-row: 2;
	color: var(--spc-orange-600);
	font-size: 14px;
	font-weight: 900;
	white-space: nowrap;
}

.spc-why {
	text-align: center;
}

.spc-why-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(11,27,47,0.98), rgba(16,36,61,0.94)),
		radial-gradient(circle at 16% 28%, rgba(41,148,234,0.24), transparent 30%),
		radial-gradient(circle at 88% 80%, rgba(244,122,23,0.16), transparent 32%),
		url("../images/hero-industrial-control-room.webp") center / cover no-repeat;
	color: var(--spc-white);
	padding: 76px 0;
}

.spc-why-section .spc-section-kicker,
.spc-why-section h2 {
	color: var(--spc-white);
}

.spc-why-section .spc-section-kicker {
	color: var(--spc-orange-500);
}

.spc-why-section h2 {
	margin-bottom: 14px;
	font-size: clamp(32px, 3vw, 48px);
}

.spc-why-intro {
	width: min(780px, 100%);
	margin: 0 auto 34px;
	color: rgba(255,255,255,0.76);
	font-size: 17px;
	line-height: 1.7;
}

.spc-why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	width: min(1120px, 100%);
	margin: 0 auto;
}

.spc-why-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 10px 20px;
	align-items: start;
	min-height: 210px;
	padding: 28px;
	text-align: left;
	border: 1px solid rgba(255,255,255,0.16);
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,252,0.94));
	color: var(--spc-ink);
	box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.spc-why-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-orange-500), #2994ea);
}

.spc-why-card::after {
	content: "";
	position: absolute;
	right: -46px;
	bottom: -52px;
	width: 150px;
	height: 150px;
	border-radius: 999px;
	background: rgba(22,53,84,0.06);
}

.spc-why-card__icon {
	grid-row: span 3;
	display: grid;
	position: relative;
	width: 74px;
	height: 74px;
	place-items: center;
	border: 1px solid rgba(16,36,61,0.12);
	border-radius: 999px;
	background:
		radial-gradient(circle at 35% 25%, #ffffff 0%, #ffffff 34%, #f0f5f8 100%);
	color: var(--spc-blue-900);
	box-shadow:
		0 14px 30px rgba(12,27,47,0.12),
		inset 0 0 0 7px rgba(244,122,23,0.08);
}

.spc-why-card__icon::before {
	content: attr(data-step);
	position: absolute;
	top: -9px;
	left: -8px;
	display: inline-grid;
	min-width: 34px;
	height: 24px;
	place-items: center;
	border-radius: 999px;
	background: var(--spc-orange-500);
	color: var(--spc-white);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.spc-why-card__icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.85;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.spc-why-card em {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-why-card strong {
	position: relative;
	z-index: 1;
	font-size: 24px;
	line-height: 1.1;
}

.spc-why-card small {
	position: relative;
	z-index: 1;
	color: var(--spc-muted);
	font-size: 15px;
	line-height: 1.45;
}

.spc-static-product-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 34px;
}

.spc-static-product {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 12px;
	align-items: center;
	min-height: 132px;
	padding: 12px;
	border-radius: 6px;
}

.spc-static-product-row .spc-static-product {
	position: relative;
	overflow: hidden;
	grid-template-columns: 1fr;
	align-items: start;
	min-height: 342px;
	padding: 18px;
	border: 0;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 22px 48px rgba(12, 27, 47, 0.12);
}

.spc-static-product-row .spc-static-product::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-blue-800), var(--spc-orange-500));
}

.spc-static-product__image {
	overflow: hidden;
	display: grid;
	height: 92px;
	place-items: center;
	border-radius: 6px;
	background: #f6f8fa;
	color: var(--spc-blue-900);
	font-weight: 900;
}

.spc-static-product-row .spc-static-product__image {
	width: 100%;
	height: 174px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid rgba(16,36,61,0.08);
	box-shadow: none;
}

.spc-static-product-row .spc-static-product__image img {
	padding: 4px;
	transform: scale(1.08);
}

.spc-static-product__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.spc-static-product h3 {
	margin: 0;
	font-size: 14px;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.spc-static-product-row .spc-static-product h3 {
	font-size: 20px;
	line-height: 1.12;
}

.spc-static-product p,
.spc-static-product__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 4px 0 7px;
	color: var(--spc-muted);
	font-size: 12px;
}

.spc-static-product p {
	display: -webkit-box;
	overflow: hidden;
	min-height: 16px;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.spc-static-product-row .spc-static-product p {
	min-height: 44px;
	font-size: 15px;
	line-height: 1.35;
	-webkit-line-clamp: 2;
}

.spc-static-product__meta span:first-child {
	color: var(--spc-orange-600);
	font-weight: 900;
	text-transform: uppercase;
}

.spc-static-product .spc-button {
	min-height: 30px;
	min-width: 82px;
	padding: 0 11px;
	font-size: 10px;
	border-radius: 2px;
	white-space: nowrap;
}

.spc-static-product-row .spc-button {
	min-height: 40px;
	min-width: 132px;
	padding: 0 18px;
	font-size: 13px;
	font-weight: 900;
}

.spc-static-product__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.spc-static-product__detail {
	color: var(--spc-blue-800);
	font-size: 12px;
	font-weight: 800;
}

.spc-inquiry-band {
	display: grid;
	grid-template-columns: minmax(330px, 0.72fr) minmax(620px, 1.45fr);
	gap: 26px;
	align-items: stretch;
}

.spc-featured-product {
	padding: 28px;
	border: 0;
	box-shadow: 0 24px 52px rgba(12, 27, 47, 0.12);
}

.spc-featured-product .spc-static-product__image {
	width: 100%;
	height: 260px;
	margin: 18px 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(16,36,61,0.08);
}

.spc-featured-product .spc-static-product__image img {
	object-fit: contain;
	transform: scale(1.06);
}

.spc-featured-product > span {
	font-weight: 800;
}

.spc-featured-product h3 {
	margin: 16px 0 8px;
}

.spc-featured-product p {
	color: var(--spc-muted);
}

.spc-quick-inquiry {
	display: grid;
	grid-template-columns: 0.86fr 1.14fr;
	gap: 34px;
	scroll-margin-top: 118px;
	padding: 34px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(11,27,47,0.98), rgba(16,36,61,0.92)),
		url("../images/hero-industrial-control-room.webp") center / cover no-repeat;
	color: var(--spc-white);
	overflow: hidden;
	box-shadow: 0 28px 60px rgba(12, 27, 47, 0.24);
}

.spc-quick-inquiry h2 {
	margin-bottom: 18px;
	color: var(--spc-white);
	font-size: clamp(32px, 3vw, 52px);
}

.spc-quick-inquiry__contact {
	display: grid;
	align-content: start;
	gap: 14px;
}

.spc-quick-inquiry__contact a,
.spc-quick-inquiry__contact > span {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 9px;
	align-items: center;
	color: rgba(255,255,255,0.9);
	font-size: 13px;
}

.spc-quick-inquiry__contact a span,
.spc-quick-inquiry__contact > span span,
.spc-quick-inquiry__social a {
	display: inline-grid;
	min-height: 28px;
	place-items: center;
	border-radius: 999px;
	background: rgba(255,255,255,0.12);
	color: var(--spc-white);
	font-size: 10px;
	font-weight: 900;
}

.spc-quick-inquiry__social {
	display: flex;
	gap: 8px;
}

.spc-quick-inquiry__social a {
	width: 30px;
	height: 30px;
	transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.spc-quick-inquiry__social a:hover {
	background: var(--spc-orange-500);
	transform: translateY(-1px);
}

.spc-rfq-form {
	display: grid;
	grid-template-columns: 0.72fr 1fr;
	gap: 13px 16px;
	min-width: 0;
	padding: 24px;
	border-radius: 8px;
	background: rgba(255,255,255,0.94);
	color: var(--spc-ink);
	transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.spc-rfq-form.is-prefilled {
	box-shadow: 0 0 0 3px rgba(244, 122, 23, 0.35);
	background: #fffaf5;
}

.spc-rfq-form label {
	display: contents;
}

.spc-rfq-form span {
	align-self: center;
	font-size: 14px;
	font-weight: 700;
}

.spc-rfq-form input,
.spc-rfq-form textarea {
	width: 100%;
	min-width: 0;
	border: 1px solid #d5dbe1;
	border-radius: 4px;
	padding: 10px 14px;
	font: inherit;
}

.spc-rfq-form input[name="part_number"] {
	font-size: 13px;
	font-weight: 800;
}

.spc-rfq-form input {
	min-height: 46px;
}

.spc-rfq-form textarea {
	min-height: 96px;
}

.spc-rfq-form__message textarea {
	resize: vertical;
}

.spc-rfq-form__status {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	min-height: 34px;
	padding: 8px 12px;
	border: 1px solid rgba(16,36,61,0.08);
	border-left: 3px solid var(--spc-orange-500);
	border-radius: 6px;
	background: #fff7ef;
	color: var(--spc-steel);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

.spc-rfq-form button {
	grid-column: 1 / -1;
	justify-self: start;
	min-height: 48px;
	padding: 0 26px;
	font-size: 15px;
	font-weight: 900;
	box-shadow: 0 16px 28px rgba(244, 122, 23, 0.24);
}

.spc-rfq-form input:focus,
.spc-rfq-form textarea:focus {
	outline: 2px solid rgba(244, 122, 23, 0.26);
	border-color: var(--spc-orange-500);
}

.spc-products-preview {
	background:
		linear-gradient(180deg, #edf3f7 0%, #f8fafc 100%);
}

.spc-products-preview .spc-container {
	position: relative;
}

.spc-products-preview .spc-container::before {
	content: "";
	position: absolute;
	top: 34px;
	right: 0;
	width: 360px;
	height: 220px;
	pointer-events: none;
	background: linear-gradient(135deg, rgba(11,27,47,0.055), transparent 62%);
	clip-path: polygon(26% 0, 100% 0, 74% 100%, 0 100%);
}

.spc-products-preview .spc-section-heading--home {
	position: relative;
	align-items: center;
}

.spc-products-preview .spc-section-heading--home a,
.spc-brand-section .spc-section-heading--home a {
	background: transparent;
	box-shadow: none;
}

.spc-brand-section .spc-section-heading--home a {
	border-color: rgba(244, 122, 23, 0.4);
	color: var(--spc-orange-500);
}

.spc-brand-section .spc-section-heading--home a::after,
.spc-products-preview .spc-section-heading--home a::after,
.spc-static-product-row .spc-static-product__detail::after {
	content: " ->";
}

.spc-static-product-row .spc-static-product,
.spc-featured-product {
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.spc-static-product-row .spc-static-product:hover,
.spc-featured-product:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 62px rgba(12, 27, 47, 0.16);
}

.spc-static-product-row .spc-static-product > div {
	display: grid;
	min-height: 152px;
}

.spc-static-product-row .spc-static-product__detail {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	color: var(--spc-blue-900);
}

.spc-static-product-row .spc-static-product__detail::after {
	color: var(--spc-orange-600);
}

.spc-static-product-row .spc-static-product__meta {
	margin-bottom: 12px;
}

.spc-static-product-row .spc-static-product__meta strong {
	color: #157347;
}

.spc-static-product-row .spc-static-product__actions {
	margin-top: auto;
}

.spc-inquiry-band {
	margin-top: 6px;
}

.spc-featured-product {
	position: relative;
	overflow: hidden;
}

.spc-featured-product::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-orange-500), #2994ea);
}

.spc-featured-product > span {
	color: var(--spc-blue-900);
	font-size: 18px;
}

.spc-featured-product h3 {
	font-size: 28px;
	line-height: 1.08;
}

.spc-featured-product .spc-button {
	min-height: 48px;
	padding: 0 28px;
	font-size: 16px;
	font-weight: 900;
}

.spc-quick-inquiry {
	position: relative;
}

.spc-quick-inquiry::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: linear-gradient(180deg, var(--spc-orange-500), #2994ea);
}

.spc-quick-inquiry__lead {
	max-width: 430px;
	margin: -8px 0 14px;
	color: rgba(255,255,255,0.72);
	font-size: 15px;
	line-height: 1.6;
}

.spc-inquiry-points {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.spc-inquiry-points span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.82);
	font-size: 12px;
	font-weight: 900;
}

.spc-site-footer {
	background: linear-gradient(135deg, var(--spc-blue-950), var(--spc-blue-900));
	color: var(--spc-white);
	padding: 46px 0 12px;
}

.spc-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 38px;
}

.spc-footer-grid h2 {
	margin: 0 0 14px;
	font-size: 14px;
}

.spc-footer-grid p,
.spc-footer-grid a,
.spc-footer-grid span {
	display: block;
	margin: 0 0 9px;
	color: rgba(255,255,255,0.78);
	font-size: 13px;
}

.spc-logo--footer {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 10px;
	color: var(--spc-white);
}

.spc-footer-grid .spc-logo--footer span {
	display: inline;
	margin: 0;
	color: var(--spc-white);
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.spc-social-row {
	display: flex;
	gap: 8px;
}

.spc-social-row a {
	display: grid;
	min-width: 28px;
	height: 24px;
	padding: 0 8px;
	place-items: center;
	border-radius: 999px;
	background: rgba(255,255,255,0.86);
	color: var(--spc-blue-950);
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-footer-bottom {
	margin-top: 26px;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,0.16);
	text-align: center;
	color: rgba(255,255,255,0.72);
	font-size: 12px;
}

.spc-page-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(11, 27, 47, 0.98), rgba(16, 36, 61, 0.82)),
		url("../images/hero-industrial-control-room.webp") center right / cover no-repeat,
		linear-gradient(135deg, #183c5e, #0b1b2f);
	color: var(--spc-white);
	padding: 74px 0;
}

.spc-page-hero--catalog {
	background:
		linear-gradient(90deg, rgba(11, 27, 47, 0.98), rgba(16, 36, 61, 0.78)),
		url("../images/hero-automation-warehouse.webp") center right / cover no-repeat,
		linear-gradient(135deg, #183c5e, #0b1b2f);
	padding: 50px 0 54px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.spc-page-hero--contact {
	background:
		linear-gradient(90deg, rgba(11, 27, 47, 0.98), rgba(16, 36, 61, 0.78)),
		url("../images/hero-control-testing.webp") center right / cover no-repeat,
		linear-gradient(135deg, #183c5e, #0b1b2f);
}

.spc-page-hero--series,
.spc-page-hero--blog,
.spc-page-hero--brands {
	background:
		linear-gradient(90deg, rgba(11, 27, 47, 0.98), rgba(16, 36, 61, 0.78)),
		url("../images/hero-automation-warehouse.webp") center right / cover no-repeat,
		linear-gradient(135deg, #183c5e, #0b1b2f);
}

.spc-page-hero--about {
	background:
		linear-gradient(90deg, rgba(11, 27, 47, 0.98), rgba(16, 36, 61, 0.78)),
		url("../images/hero-industrial-control-room.webp") center right / cover no-repeat,
		linear-gradient(135deg, #183c5e, #0b1b2f);
}

.spc-page-hero--product {
	background:
		linear-gradient(90deg, rgba(11, 27, 47, 0.98), rgba(16, 36, 61, 0.76)),
		url("../images/hero-control-testing.webp") center right / cover no-repeat,
		linear-gradient(135deg, #183c5e, #0b1b2f);
}

.spc-page-hero--quality,
.spc-page-hero--shipping,
.spc-page-hero--faq {
	background:
		linear-gradient(90deg, rgba(11, 27, 47, 0.98), rgba(16, 36, 61, 0.76)),
		url("../images/hero-control-testing.webp") center right / cover no-repeat,
		linear-gradient(135deg, #183c5e, #0b1b2f);
}

.spc-page-hero--shipping {
	background:
		linear-gradient(90deg, rgba(11, 27, 47, 0.98), rgba(16, 36, 61, 0.76)),
		url("../images/hero-automation-warehouse.webp") center right / cover no-repeat,
		linear-gradient(135deg, #183c5e, #0b1b2f);
}

.spc-page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: 0.45;
}

.spc-page-hero .spc-container {
	position: relative;
	z-index: 1;
}

.spc-page-hero span {
	display: block;
	margin-bottom: 10px;
	color: var(--spc-orange-500);
	font-weight: 800;
	text-transform: uppercase;
}

.spc-page-hero h1 {
	max-width: 820px;
	margin: 0 0 12px;
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.08;
	overflow-wrap: anywhere;
}

.spc-page-hero--catalog h1 {
	max-width: 760px;
	font-size: clamp(34px, 3.35vw, 48px);
}

.spc-page-hero p {
	max-width: 760px;
	margin: 0;
	color: rgba(255,255,255,0.82);
	font-size: 18px;
	line-height: 1.6;
}

.spc-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.spc-page-hero__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	width: min(880px, 100%);
	margin-top: 30px;
}

.spc-page-hero__metrics span {
	display: grid;
	gap: 5px;
	min-height: 78px;
	padding: 14px 16px;
	border: 1px solid rgba(255,255,255,0.14);
	border-left: 3px solid var(--spc-orange-500);
	border-radius: 8px;
	background: rgba(11,27,47,0.52);
	color: rgba(255,255,255,0.72);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	text-transform: none;
}

.spc-page-hero--catalog .spc-page-hero__metrics {
	width: min(760px, 100%);
	margin-top: 24px;
}

.spc-page-hero--catalog .spc-page-hero__metrics span {
	min-height: 66px;
	padding: 12px 14px;
	background: rgba(11,27,47,0.44);
}

.spc-page-hero__metrics strong {
	display: block;
	color: var(--spc-white);
	font-size: 15px;
	text-transform: none;
}

.spc-catalog-hero-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.spc-catalog-hero-label img {
	width: 112px;
	height: 48px;
	padding: 8px 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
	object-fit: fill;
}

.spc-catalog-hero-label span {
	margin: 0;
}

.spc-catalog-section {
	background:
		radial-gradient(circle at 12% 8%, rgba(41,148,234,0.12), transparent 30%),
		linear-gradient(180deg, #edf3f7 0%, #f8fafc 100%);
	padding-top: 46px;
}

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

.spc-catalog-layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.spc-catalog-sidebar {
	position: sticky;
	top: 106px;
	display: grid;
	gap: 16px;
}

.spc-catalog-sidebar__panel,
.spc-catalog-sidebar__proof {
	display: grid;
	gap: 10px;
	padding: 22px;
	border: 1px solid rgba(16, 36, 61, 0.1);
	border-radius: 8px;
	background: rgba(255,255,255,0.96);
	box-shadow: 0 18px 42px rgba(12, 27, 47, 0.1);
}

.spc-catalog-sidebar__panel--dark {
	border-color: rgba(255,255,255,0.12);
	background:
		linear-gradient(180deg, rgba(11,27,47,0.94), rgba(16,36,61,0.98)),
		url("../images/hero-control-testing.webp") center / cover no-repeat;
	color: var(--spc-white);
}

.spc-catalog-sidebar__panel span,
.spc-catalog-sidebar__proof span {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-catalog-sidebar__panel--dark span {
	color: var(--spc-orange-500);
}

.spc-catalog-sidebar__panel strong {
	font-size: 22px;
	line-height: 1.15;
}

.spc-catalog-sidebar__panel p {
	margin: 0;
	color: rgba(255,255,255,0.76);
	line-height: 1.6;
}

.spc-catalog-sidebar__panel:not(.spc-catalog-sidebar__panel--dark) a {
	position: relative;
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	padding: 7px 9px;
	border: 1px solid rgba(16,36,61,0.06);
	border-left: 3px solid rgba(244,122,23,0.3);
	border-radius: 6px;
	background: linear-gradient(180deg, #fff, #fbfcfd);
	color: var(--spc-blue-900);
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(12,27,47,0.04);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.spc-catalog-sidebar__panel:not(.spc-catalog-sidebar__panel--dark) a::after {
	content: "->";
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
}

.spc-catalog-sidebar__panel:not(.spc-catalog-sidebar__panel--dark) a:hover {
	border-color: rgba(244,122,23,0.24);
	box-shadow: 0 12px 24px rgba(12,27,47,0.08);
	transform: translateX(2px);
}

.spc-catalog-sidebar__panel:not(.spc-catalog-sidebar__panel--dark) a.is-active {
	border-left-color: var(--spc-orange-500);
	background: #fff7ef;
	color: var(--spc-orange-600);
}

.spc-catalog-sidebar__panel:not(.spc-catalog-sidebar__panel--dark) a b {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: #eef3f7;
	color: var(--spc-muted);
	font-size: 11px;
	font-weight: 900;
}

.spc-catalog-sidebar__panel:not(.spc-catalog-sidebar__panel--dark) a strong {
	min-width: 0;
	color: inherit;
	font-size: 13px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.spc-catalog-sidebar__panel:not(.spc-catalog-sidebar__panel--dark) a.is-active em {
	background: rgba(244,122,23,0.14);
	color: var(--spc-orange-600);
}

.spc-catalog-sidebar__panel:not(.spc-catalog-sidebar__panel--dark) a.is-active b {
	background: var(--spc-orange-500);
	color: #fff;
}

.spc-catalog-sidebar__panel a em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 22px;
	padding: 0 7px;
	border-radius: 999px;
	background: #eef3f7;
	color: var(--spc-muted);
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
}

.spc-catalog-sidebar__proof ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--spc-muted);
	line-height: 1.45;
}

.spc-catalog-sidebar__proof li {
	position: relative;
	padding-left: 18px;
}

.spc-catalog-sidebar__proof li::before {
	content: "";
	position: absolute;
	top: 0.62em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--spc-orange-500);
}

.spc-catalog-results {
	min-width: 0;
}

.spc-catalog-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	padding: 14px 18px;
	border: 1px solid rgba(16,36,61,0.1);
	border-radius: 8px;
	background: rgba(255,255,255,0.88);
	color: var(--spc-muted);
	box-shadow: 0 12px 30px rgba(12,27,47,0.07);
}

.spc-catalog-toolbar strong {
	color: var(--spc-ink);
}

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

.spc-product-grid--catalog .spc-product-card__media {
	height: 244px;
}

.spc-product-grid--related {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
}

.spc-product-search-wrap {
	margin: -18px 0 28px;
	border: 1px solid rgba(16, 36, 61, 0.1);
	border-radius: 8px;
	background: rgba(255,255,255,0.96);
	box-shadow: 0 22px 54px rgba(12, 27, 47, 0.12);
	overflow: hidden;
}

.spc-product-search {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) 170px 200px 170px auto;
	gap: 12px;
	padding: 18px;
}

.spc-product-search-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px 0;
}

.spc-product-search-head div {
	display: grid;
	gap: 3px;
}

.spc-product-search-head span {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-search-head strong {
	color: var(--spc-blue-950);
	font-size: 18px;
	line-height: 1.2;
}

.spc-product-search-head em {
	color: var(--spc-muted);
	font-size: 13px;
	font-style: normal;
	font-weight: 800;
}

.spc-product-search-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 18px;
	border-top: 1px solid rgba(16,36,61,0.08);
	background: #f8fafc;
	color: var(--spc-muted);
	font-size: 13px;
	font-weight: 800;
}

.spc-product-search-status a {
	color: var(--spc-orange-600);
	font-weight: 900;
	white-space: nowrap;
}

.spc-catalog-note {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px;
	align-items: center;
	margin-bottom: 28px;
	padding: 22px 24px;
	border: 1px solid var(--spc-line);
	border-left: 4px solid var(--spc-orange-500);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #ffffff, #fbfcfd);
	box-shadow: 0 18px 42px rgba(12, 27, 47, 0.1);
}

.spc-catalog-note span {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-catalog-note strong {
	display: block;
	margin: 4px 0 6px;
	font-size: 18px;
}

.spc-catalog-note p {
	margin: 0;
	color: var(--spc-muted);
	line-height: 1.6;
}

.spc-catalog-note__steps {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
	max-width: 380px;
}

.spc-catalog-note__steps span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 10px;
	border-radius: 999px;
	background: #eef3f7;
	color: var(--spc-blue-900);
	font-size: 11px;
}

.spc-product-search input[type="search"] {
	width: 100%;
	border: 1px solid #d5dbe1;
	border-radius: 4px;
	padding: 0 14px;
	font: inherit;
	min-height: 46px;
}

.spc-product-search select {
	width: 100%;
	min-height: 44px;
	border: 1px solid #d5dbe1;
	border-radius: 4px;
	padding: 0 12px;
	background: var(--spc-white);
	color: var(--spc-ink);
	font: inherit;
}

.spc-rfq-form__trap {
	display: none !important;
}

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

.spc-product-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 0;
	background: #fff;
	box-shadow: 0 18px 42px rgba(12, 27, 47, 0.1);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.spc-product-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-blue-800), var(--spc-orange-500));
}

.spc-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 62px rgba(12, 27, 47, 0.16);
}

.spc-product-card__media {
	position: relative;
	overflow: hidden;
	display: grid;
	height: 260px;
	place-items: center;
	margin: 18px 18px 0;
	padding: 0;
	border: 1px solid rgba(16,36,61,0.08);
	border-radius: 8px;
	background: #fff;
	border-bottom: 1px solid var(--spc-line);
}

.spc-product-card__media::before {
	content: none;
}

.spc-product-card__media img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: scale(1.08);
}

.spc-product-gallery__placeholder {
	display: grid;
	width: 120px;
	height: 120px;
	place-items: center;
	border-radius: 12px;
	background: #e7edf2;
	color: var(--spc-blue-900);
	font-size: 32px;
	font-weight: 900;
}

.spc-product-card__placeholder {
	position: relative;
	overflow: hidden;
	display: grid;
	width: min(100%, 250px);
	min-height: 150px;
	align-content: center;
	justify-items: start;
	gap: 8px;
	padding: 22px;
	border: 1px solid rgba(16,36,61,0.12);
	border-radius: 10px;
	background:
		linear-gradient(135deg, rgba(11,27,47,0.96), rgba(18,49,82,0.92)),
		radial-gradient(circle at 80% 20%, rgba(41,148,234,0.22), transparent 34%);
	color: #fff;
	box-shadow: inset 3px 0 0 var(--spc-orange-500), 0 18px 38px rgba(12,27,47,0.14);
}

.spc-product-card__placeholder::after {
	content: "";
	position: absolute;
	right: -34px;
	bottom: -42px;
	width: 126px;
	height: 126px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
}

.spc-product-card__placeholder strong,
.spc-product-card__placeholder small,
.spc-product-card__placeholder em {
	position: relative;
	z-index: 1;
}

.spc-product-card__placeholder strong {
	font-size: 28px;
	line-height: 1;
	letter-spacing: 0;
}

.spc-product-card__placeholder small {
	max-width: 100%;
	color: rgba(255,255,255,0.78);
	font-size: 13px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.spc-product-card__placeholder em {
	display: inline-flex;
	min-height: 24px;
	align-items: center;
	padding: 0 9px;
	border-radius: 999px;
	background: rgba(255,255,255,0.12);
	color: #fff;
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-card__body {
	display: grid;
	flex: 1;
	gap: 10px;
	padding: 18px;
	align-content: start;
}

.spc-product-card__badges {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.spc-product-card__brand {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-card__status {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	background: #e9f7ef;
	color: #157347;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	white-space: nowrap;
}

.spc-product-card h3 {
	margin: 0;
	min-height: 42px;
	font-size: 17px;
	line-height: 1.22;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.spc-product-card__summary {
	display: none;
}

.spc-product-card__meta {
	display: grid;
	gap: 4px;
	min-height: 22px;
	color: var(--spc-muted);
	font-size: 13px;
}

.spc-product-card__meta span {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 8px;
	align-items: start;
}

.spc-product-card__meta strong {
	color: var(--spc-steel);
	font-size: 11px;
	text-transform: uppercase;
}

.spc-product-card__meta em {
	color: #157347;
	font-style: normal;
	font-weight: 900;
}

.spc-product-card__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	min-height: 34px;
	align-content: start;
}

.spc-product-card__specs span {
	display: inline-flex;
	max-width: 100%;
	min-height: 26px;
	align-items: center;
	padding: 0 8px;
	border: 1px solid rgba(16,36,61,0.08);
	border-radius: 999px;
	background: #f3f6f8;
	color: var(--spc-steel);
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.spc-product-card__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 4px;
}

.spc-product-card__secondary-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.spc-product-card__detail {
	color: var(--spc-blue-800);
	font-size: 13px;
	font-weight: 900;
}

.spc-product-card .spc-button {
	min-height: 38px;
	padding: 0 16px;
	font-size: 13px;
	white-space: nowrap;
	width: 100%;
}

.spc-copy-button--compact {
	min-height: 32px;
	padding: 0 10px;
	border-color: rgba(16, 36, 61, 0.12);
	background: #f3f6f8;
	color: var(--spc-blue-900);
	font-size: 12px;
	white-space: nowrap;
	box-shadow: none;
}

.spc-copy-button--compact:hover {
	border-color: rgba(244, 122, 23, 0.32);
	background: #fff7ef;
	color: var(--spc-orange-600);
	transform: none;
}

.spc-post-card,
.spc-contact-card {
	padding: 24px;
}

.spc-empty-state {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	padding: 30px;
	border: 0;
	background:
		linear-gradient(110deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 58%, rgba(13,38,67,0.08) 100%);
	box-shadow: 0 24px 56px rgba(12, 27, 47, 0.12);
}

.spc-empty-state::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--spc-orange-500);
}

.spc-empty-state span {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-empty-state h2 {
	max-width: 860px;
	margin: 6px 0 10px;
	font-size: 30px;
	line-height: 1.14;
}

.spc-empty-state p {
	max-width: 820px;
	margin: 0;
	color: var(--spc-muted);
	line-height: 1.65;
}

.spc-empty-state__actions {
	display: grid;
	gap: 10px;
	min-width: 210px;
}

.spc-empty-state .spc-button {
	width: 100%;
	justify-content: center;
}

.spc-empty-state ul {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.spc-empty-state li {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: #eef3f7;
	color: var(--spc-blue-900);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-contact-grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
	gap: 26px;
	align-items: start;
}

.spc-contact-card h2 {
	margin-top: 0;
	font-size: 30px;
}

.spc-contact-card a {
	color: var(--spc-blue-800);
	font-weight: 900;
}

.spc-contact-card p {
	color: var(--spc-muted);
	line-height: 1.7;
}

.spc-contact-card {
	position: relative;
	overflow: hidden;
	border: 0;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
	box-shadow: 0 24px 56px rgba(12,27,47,0.12);
}

.spc-contact-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-orange-500), #2994ea);
}

.spc-contact-methods {
	display: grid;
	gap: 10px;
	margin: 18px 0;
}

.spc-contact-methods a,
.spc-contact-whatsapp {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 12px;
	align-items: center;
	min-height: 54px;
	padding: 10px 12px;
	border: 1px solid rgba(16,36,61,0.1);
	border-radius: 8px;
	background: #f7fafc;
}

.spc-contact-methods a span {
	display: inline-grid;
	min-height: 30px;
	place-items: center;
	border-radius: 999px;
	background: var(--spc-blue-900);
	color: var(--spc-white);
	font-size: 11px;
	font-weight: 900;
}

.spc-contact-whatsapp {
	display: inline-flex;
	grid-template-columns: none;
	justify-content: center;
	width: 100%;
	margin-bottom: 14px;
	background: var(--spc-orange-500);
	color: var(--spc-white) !important;
}

.spc-contact-proof {
	display: grid;
	gap: 8px;
	margin-top: 18px;
}

.spc-contact-proof span {
	position: relative;
	padding-left: 18px;
	color: var(--spc-muted);
	font-size: 13px;
	line-height: 1.45;
}

.spc-contact-proof span::before {
	content: "";
	position: absolute;
	top: 0.52em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--spc-orange-500);
}

.spc-rfq-status {
	grid-column: 1 / -1;
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 6px;
	background: #e9f7ef;
	color: #17643a;
	font-weight: 800;
}

.spc-rfq-status--warning {
	background: #fff1e6;
	color: #9a4b05;
}

.spc-quick-inquiry--page {
	grid-template-columns: minmax(220px, 0.72fr) minmax(360px, 1fr);
}

.spc-quick-inquiry--page .spc-quick-inquiry__contact {
	grid-row: 1 / span 2;
}

.spc-quick-inquiry--page .spc-rfq-status {
	grid-column: 2;
	margin-bottom: 0;
}

.spc-quick-inquiry--page .spc-rfq-form {
	grid-column: 2;
	width: 100%;
}

.spc-quick-inquiry--page .spc-quick-inquiry__contact > span {
	display: block;
	max-width: 330px;
	color: rgba(255,255,255,0.82);
	font-size: 14px;
	line-height: 1.65;
}

.spc-quick-inquiry__lead {
	max-width: 360px;
	margin: 0;
	color: rgba(255,255,255,0.82);
	font-size: 15px;
	line-height: 1.6;
}

.spc-quick-inquiry__lead strong {
	color: var(--spc-white);
	overflow-wrap: anywhere;
}

.spc-quick-inquiry__direct {
	display: grid;
	gap: 9px;
	margin-top: 2px;
}

.spc-quick-inquiry__direct a {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-height: 42px;
	color: rgba(255,255,255,0.9);
	font-weight: 800;
	overflow-wrap: anywhere;
}

.spc-quick-inquiry__direct span {
	display: inline-grid;
	min-height: 30px;
	place-items: center;
	border-radius: 999px;
	background: rgba(255,255,255,0.12);
	color: var(--spc-white);
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-quick-inquiry__direct a:hover {
	color: var(--spc-white);
}

.spc-rfq-checklist {
	display: grid;
	gap: 10px;
	margin: 8px 0 0;
	padding: 0;
	list-style: none;
	color: rgba(255,255,255,0.82);
	font-size: 13px;
	line-height: 1.45;
}

.spc-rfq-checklist li {
	position: relative;
	padding-left: 18px;
}

.spc-rfq-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--spc-orange-500);
	box-shadow: 0 0 0 4px rgba(244,122,23,0.14);
}

.spc-product-detail {
	display: grid;
	grid-template-columns: minmax(320px, 0.84fr) minmax(460px, 1.16fr);
	gap: 24px;
	align-items: start;
}

.spc-product-gallery {
	position: sticky;
	top: 112px;
	display: grid;
	min-height: 438px;
	gap: 14px;
	align-content: start;
	padding: 20px;
	border: 1px solid rgba(16,36,61,0.08);
	background: #fff;
	box-shadow: 0 24px 56px rgba(12,27,47,0.12);
}

.spc-product-gallery__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--spc-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.spc-product-gallery__meta span {
	color: var(--spc-orange-600);
}

.spc-product-gallery__meta strong {
	color: var(--spc-blue-900);
}

.spc-product-gallery__stage {
	position: relative;
	display: grid;
	min-height: 386px;
	place-items: center;
	border: 1px solid rgba(16,36,61,0.08);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.spc-product-gallery__stage img {
	width: min(100%, 680px);
	max-height: 500px;
	object-fit: contain;
	filter: saturate(1.04) contrast(1.04);
	transform: scale(1.04);
}

.spc-product-gallery__zoom {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(16,36,61,0.12);
	border-radius: 999px;
	background: rgba(255,255,255,0.92);
	color: var(--spc-blue-900);
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	box-shadow: 0 10px 24px rgba(12,27,47,0.12);
	cursor: pointer;
}

.spc-product-gallery__zoom:hover {
	border-color: rgba(244,122,23,0.38);
	color: var(--spc-orange-600);
}

.spc-product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}

.spc-product-gallery__thumbs button {
	display: grid;
	height: 74px;
	place-items: center;
	padding: 6px;
	border: 1px solid var(--spc-line);
	border-radius: 6px;
	background: var(--spc-white);
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.spc-product-gallery__thumbs button.is-active {
	border-color: var(--spc-orange-500);
	box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.18);
}

.spc-product-gallery__thumbs img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.spc-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 32px;
	background: rgba(5, 17, 31, 0.84);
	backdrop-filter: blur(4px);
}

.spc-gallery-lightbox[hidden] {
	display: none;
}

.spc-gallery-lightbox__inner {
	position: relative;
	display: grid;
	max-width: min(1100px, 94vw);
	max-height: min(860px, 88vh);
	place-items: center;
	padding: 18px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 30px 80px rgba(0,0,0,0.36);
}

.spc-gallery-lightbox img {
	max-width: 100%;
	max-height: calc(88vh - 36px);
	object-fit: contain;
}

.spc-gallery-lightbox button {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: var(--spc-blue-950);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.spc-product-topbar {
	border-top: 1px solid rgba(255,255,255,0.08);
	background: var(--spc-blue-950);
	color: rgba(255,255,255,0.76);
}

.spc-product-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 48px;
	font-size: 13px;
}

.spc-product-topbar nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.spc-product-topbar a {
	color: rgba(255,255,255,0.82);
	font-weight: 800;
}

.spc-product-topbar a:hover,
.spc-product-topbar strong {
	color: var(--spc-white);
}

.spc-product-topbar__rfq {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 14px;
	border-radius: 3px;
	background: var(--spc-orange-500);
	color: #fff !important;
	font-weight: 900;
	white-space: nowrap;
}

.spc-product-lookup {
	border-top: 1px solid rgba(16,36,61,0.06);
	border-bottom: 1px solid rgba(16,36,61,0.08);
	background:
		linear-gradient(90deg, rgba(232,240,247,0.96), rgba(255,255,255,0.96)),
		linear-gradient(135deg, rgba(244,122,23,0.08), rgba(50,165,255,0.08));
}

.spc-product-lookup__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	min-height: 86px;
	padding-top: 13px;
	padding-bottom: 13px;
}

.spc-product-lookup__form {
	display: grid;
	grid-template-columns: auto minmax(280px, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 8px;
	border: 1px solid rgba(16,36,61,0.1);
	border-radius: 6px;
	background: rgba(255,255,255,0.94);
	box-shadow: 0 14px 30px rgba(16,36,61,0.08);
}

.spc-product-lookup__form > span {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 12px;
	border-left: 3px solid var(--spc-orange-500);
	color: var(--spc-blue-900);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	white-space: nowrap;
}

.spc-product-lookup__form input[type="search"] {
	width: 100%;
	min-height: 46px;
	border: 1px solid rgba(16,36,61,0.16);
	border-radius: 4px;
	background: #fff;
	padding: 0 15px;
	font: inherit;
	box-shadow: inset 0 1px 0 rgba(16,36,61,0.04);
}

.spc-product-lookup__form input[type="search"]:focus {
	border-color: rgba(244,122,23,0.66);
	box-shadow: 0 0 0 3px rgba(244,122,23,0.14);
	outline: 0;
}

.spc-product-lookup__form .spc-button {
	min-height: 46px;
	padding: 0 22px;
}

.spc-product-lookup__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.spc-product-lookup__links a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(16,36,61,0.1);
	border-radius: 999px;
	background: #fff;
	color: var(--spc-orange-600);
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.spc-product-lookup__links a:hover {
	border-color: rgba(244,122,23,0.34);
	background: #fff7ef;
}

.spc-product-detail-section {
	padding-top: 34px;
}

.spc-product-summary {
	position: relative;
	overflow: hidden;
	padding: 26px;
	border: 0;
	background: #fff;
	box-shadow: 0 24px 56px rgba(12,27,47,0.12);
}

.spc-product-summary::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-orange-500), #2994ea);
}

.spc-product-summary__top {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
}

.spc-product-summary__brand {
	color: var(--spc-orange-600);
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-summary__stock {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 11px;
	border-radius: 999px;
	background: #e9f7ef;
	color: #157347;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-summary h1,
.spc-product-summary h2 {
	margin: 8px 0 14px;
	font-size: clamp(25px, 2.4vw, 34px);
	line-height: 1.12;
	overflow-wrap: anywhere;
}

.spc-product-part-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: start;
	margin: 10px 0 18px;
}

.spc-product-part-head h1,
.spc-product-part-head h2 {
	margin: 0;
}

.spc-copy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 11px;
	border: 1px solid rgba(244,122,23,0.32);
	border-radius: 999px;
	background: #fff7ef;
	color: var(--spc-orange-600);
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
	cursor: pointer;
}

.spc-copy-button.is-copied {
	border-color: rgba(21,115,71,0.3);
	background: #e9f7ef;
	color: #157347;
}

.spc-product-summary__intro {
	margin: -4px 0 16px;
	color: var(--spc-muted);
	font-size: 15px;
	line-height: 1.55;
}

.spc-product-buying-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	margin: 0 0 14px;
}

.spc-product-buying-strip span {
	display: grid;
	gap: 4px;
	min-height: 64px;
	align-content: center;
	padding: 10px;
	border: 1px solid rgba(16,36,61,0.09);
	border-radius: 6px;
	background: #f8fafc;
	color: var(--spc-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
}

.spc-product-buying-strip strong {
	color: var(--spc-blue-950);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-tax-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: -6px 0 18px;
}

.spc-product-tax-list a {
	padding: 6px 10px;
	border: 1px solid rgba(16,36,61,0.1);
	border-radius: 999px;
	background: #f8fafc;
	color: var(--spc-steel);
	font-size: 13px;
	font-weight: 800;
}

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

.spc-product-specs span {
	display: grid;
	gap: 4px;
	padding: 12px;
	border: 1px solid rgba(16,36,61,0.1);
	border-radius: 6px;
	background: #f8fafc;
	color: var(--spc-muted);
}

.spc-product-specs strong {
	color: var(--spc-ink);
	font-size: 12px;
	text-transform: uppercase;
}

.spc-product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.spc-product-actions .spc-button {
	min-height: 46px;
	font-weight: 900;
}

.spc-product-rfq-card {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
	gap: 14px;
	align-items: stretch;
	margin-bottom: 0;
	padding: 14px 16px;
	border: 1px solid rgba(255,255,255,0.12);
	border-left: 4px solid var(--spc-orange-500);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(11,27,47,0.98), rgba(16,36,61,0.96)),
		url("../images/hero-control-testing.webp") center / cover no-repeat;
	color: var(--spc-white);
	box-shadow: 0 16px 34px rgba(12, 27, 47, 0.14);
}

.spc-product-rfq-card span {
	color: var(--spc-orange-500);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-rfq-card strong {
	display: block;
	margin: 4px 0 4px;
	font-size: 18px;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.spc-product-rfq-card p {
	margin: 0;
	color: rgba(255,255,255,0.76);
	line-height: 1.55;
}

.spc-product-rfq-card ul {
	display: grid;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(255,255,255,0.82);
	font-size: 12px;
	line-height: 1.4;
}

.spc-product-rfq-card li {
	padding-left: 14px;
	border-left: 2px solid rgba(244,122,23,0.54);
}

.spc-product-rfq-card a {
	color: var(--spc-white);
	font-weight: 900;
	text-decoration: underline;
	text-decoration-color: rgba(244,122,23,0.7);
	text-underline-offset: 3px;
}

.spc-procurement-note {
	display: grid;
	gap: 6px;
	margin-bottom: 20px;
	padding: 14px;
	border-left: 3px solid var(--spc-orange-500);
	background: #f8fafc;
	color: var(--spc-muted);
	line-height: 1.55;
}

.spc-procurement-note strong {
	color: var(--spc-ink);
}

.spc-product-service-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: -4px 0 18px;
}

.spc-product-service-strip span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid rgba(16,36,61,0.1);
	border-radius: 999px;
	background: #eef3f7;
	color: var(--spc-blue-900);
	font-size: 12px;
	font-weight: 900;
}

.spc-product-data {
	margin-top: 20px;
	border: 1px solid rgba(16,36,61,0.1);
	border-radius: var(--spc-radius-sm);
	background: #fff;
	overflow: hidden;
}

.spc-product-data-section {
	padding-top: 0;
	scroll-margin-top: 118px;
}

.spc-product-data--wide {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0;
	box-shadow: 0 18px 42px rgba(12,27,47,0.08);
}

.spc-product-data__head {
	display: grid;
	gap: 6px;
	padding: 24px 28px;
	border-bottom: 1px solid rgba(16,36,61,0.08);
	background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.spc-product-data__head span {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-data__head h2 {
	margin: 0;
	font-size: 28px;
	line-height: 1.15;
}

.spc-product-data__head p {
	max-width: 760px;
	margin: 0;
	color: var(--spc-muted);
	line-height: 1.55;
}

.spc-product-data--wide dl {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spc-product-data.spc-product-data--wide dl > div {
	grid-template-columns: minmax(150px, 0.42fr) 1fr;
	min-height: 68px;
}

.spc-product-data.spc-product-data--wide dl > div:nth-last-child(2) {
	border-bottom: 0;
}

.spc-product-data h3 {
	margin: 0;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(16,36,61,0.1);
	background: #f8fafc;
	color: var(--spc-ink);
	font-size: 18px;
}

.spc-product-data dl {
	display: grid;
	margin: 0;
}

.spc-product-data dl > div {
	display: grid;
	grid-template-columns: minmax(140px, 0.42fr) 1fr;
	gap: 14px;
	padding: 13px 18px;
	border-bottom: 1px solid rgba(16,36,61,0.08);
}

.spc-product-data dl > div:last-child {
	border-bottom: 0;
}

.spc-product-data dt,
.spc-product-data dd {
	margin: 0;
}

.spc-product-data dt {
	color: var(--spc-steel);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-data dd {
	color: var(--spc-ink);
	font-weight: 800;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.spc-product-data__long dd {
	min-width: 0;
}

.spc-product-data__long code {
	display: block;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid rgba(16,36,61,0.1);
	border-radius: 6px;
	background: #f8fafc;
	color: var(--spc-steel);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.spc-product-overview {
	max-width: 1120px;
	margin: 0 auto;
	padding: 34px;
	color: var(--spc-muted);
	line-height: 1.75;
}

.spc-product-inline-rfq {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	max-width: 1120px;
	margin: 0 auto 18px;
	padding: 16px 18px;
	border: 1px solid rgba(16,36,61,0.1);
	border-left: 4px solid var(--spc-orange-500);
	border-radius: 8px;
	background:
		linear-gradient(90deg, #fff 0%, #fff 62%, rgba(232,240,247,0.88) 100%);
	box-shadow: 0 18px 42px rgba(12,27,47,0.08);
}

.spc-product-inline-rfq div {
	display: grid;
	gap: 3px;
}

.spc-product-inline-rfq span {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-inline-rfq strong {
	color: var(--spc-blue-950);
	font-size: 20px;
	line-height: 1.1;
	overflow-wrap: anywhere;
}

.spc-product-inline-rfq small {
	color: var(--spc-muted);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.4;
}

.spc-product-inline-rfq .spc-button {
	min-height: 42px;
	white-space: nowrap;
}

#product-overview,
#related-products {
	scroll-margin-top: 118px;
}

.spc-product-overview > span {
	display: inline-flex;
	margin-bottom: 8px;
	color: var(--spc-orange-600);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-overview h2,
.spc-product-overview h3 {
	margin: 10px 0 14px;
	color: var(--spc-ink);
	line-height: 1.18;
}

.spc-product-overview p,
.spc-product-overview ul,
.spc-product-overview ol {
	margin: 0 0 16px;
}

.spc-product-overview a {
	color: var(--spc-orange-600);
	font-weight: 900;
}

.spc-product-overview .spc-auto-product-link {
	display: inline-flex;
	align-items: center;
	margin: 0 2px;
	padding: 1px 7px 2px;
	border: 1px solid rgba(246,112,15,0.28);
	border-radius: 999px;
	color: var(--spc-orange-600);
	text-decoration: none;
	background: rgba(246,112,15,0.1);
	line-height: 1.25;
	white-space: nowrap;
}

.spc-product-overview .spc-auto-product-link:hover,
.spc-product-overview .spc-auto-product-link:focus-visible {
	color: #fff;
	background: var(--spc-orange-600);
	border-bottom-color: currentColor;
}

.spc-product-overview table {
	display: table;
	width: 100%;
	margin: 24px 0 32px;
	border: 1px solid rgba(102,119,146,0.22);
	border-spacing: 0;
	border-collapse: separate;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 20px 46px rgba(12,27,47,0.07);
}

.spc-product-overview thead th,
.spc-product-overview tr:first-child th,
.spc-product-overview tr:first-child td {
	background: linear-gradient(135deg, var(--spc-blue-900), var(--spc-blue-800));
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.spc-product-overview th,
.spc-product-overview td {
	padding: 15px 18px;
	border-right: 1px solid rgba(102,119,146,0.16);
	border-bottom: 1px solid rgba(102,119,146,0.14);
	color: var(--spc-muted);
	font-size: 15px;
	line-height: 1.45;
	text-align: left;
	vertical-align: top;
}

.spc-product-overview th:last-child,
.spc-product-overview td:last-child {
	border-right: 0;
}

.spc-product-overview tr:last-child th,
.spc-product-overview tr:last-child td {
	border-bottom: 0;
}

.spc-product-overview tbody tr:nth-child(even) td,
.spc-product-overview tbody tr:nth-child(even) th {
	background: rgba(239,244,248,0.56);
}

.spc-product-overview tbody th,
.spc-product-overview tbody td:first-child:not(:only-child) {
	width: 31%;
	color: var(--spc-ink);
	font-weight: 850;
}

.spc-product-overview table + h2,
.spc-product-overview table + h3 {
	margin-top: 30px;
}

@media (max-width: 720px) {
	.spc-product-overview table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.spc-product-overview th,
	.spc-product-overview td {
		min-width: 168px;
		padding: 13px 14px;
	}
}

.spc-product-rfq-panel {
	max-width: 1120px;
}

.spc-product-rfq-section {
	background:
		radial-gradient(circle at 12% 8%, rgba(41,148,234,0.12), transparent 30%),
		linear-gradient(180deg, #edf3f7 0%, #f8fafc 100%);
}

.spc-product-rfq-section .spc-section-heading {
	align-items: center;
}

.spc-section-heading > div {
	display: grid;
	gap: 5px;
}

.spc-section-heading > div > span {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-process-section {
	padding-top: 28px;
}

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

.spc-product-process-card {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: 10px;
	min-height: 172px;
	padding: 22px;
	box-shadow: 0 18px 42px rgba(12,27,47,0.09);
}

.spc-product-process-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-blue-800), var(--spc-orange-500));
}

.spc-product-process-card span {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-product-process-card strong {
	font-size: 19px;
	line-height: 1.16;
}

.spc-product-process-card p {
	margin: 0;
	color: var(--spc-muted);
	line-height: 1.58;
}

.spc-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.spc-section-heading h2 {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
}

.spc-section-heading p {
	max-width: 620px;
	margin: 0;
	color: var(--spc-muted);
	font-size: 15px;
	line-height: 1.58;
}

.spc-section-heading a {
	color: var(--spc-orange-600);
	font-weight: 900;
}

.spc-related-products-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 86% 0%, rgba(244,122,23,0.12), transparent 28%),
		radial-gradient(circle at 8% 16%, rgba(41,148,234,0.12), transparent 30%),
		linear-gradient(180deg, #f7fafc 0%, #edf3f7 100%);
	border-top: 1px solid rgba(16, 36, 61, 0.08);
}

.spc-related-products-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: min(1320px, calc(100% - 48px));
	height: 4px;
	background: linear-gradient(90deg, var(--spc-orange-500), #2994ea, transparent);
	transform: translateX(-50%);
}

.spc-related-products-section .spc-section-heading {
	margin-bottom: 24px;
}

.spc-related-products-section .spc-section-heading a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid rgba(244,122,23,0.28);
	border-radius: 999px;
	background: rgba(255,255,255,0.78);
	box-shadow: 0 14px 30px rgba(12,27,47,0.08);
}

.spc-about-layout {
	display: grid;
	grid-template-columns: minmax(420px, 1.25fr) minmax(280px, 0.75fr);
	gap: 26px;
	align-items: stretch;
}

.spc-about-panel,
.spc-about-aside {
	position: relative;
	overflow: hidden;
	padding: 28px;
	border: 0;
	background: linear-gradient(180deg, #ffffff, #fbfcfd);
	box-shadow: 0 22px 52px rgba(12,27,47,0.11);
}

.spc-about-panel::before,
.spc-about-aside::before,
.spc-process-card::before,
.spc-series-card::before,
.spc-news-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-orange-500), #2994ea);
}

.spc-about-panel h2,
.spc-about-aside h2,
.spc-about-cta h2 {
	margin-top: 0;
}

.spc-about-panel p,
.spc-about-aside li,
.spc-about-cta p,
.spc-process-card p {
	color: var(--spc-muted);
	line-height: 1.7;
}

.spc-about-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 24px;
}

.spc-about-stats span {
	display: grid;
	gap: 4px;
	padding: 16px;
	border: 1px solid var(--spc-line);
	border-radius: 6px;
	background: #f8fafc;
	color: var(--spc-muted);
	font-size: 13px;
}

.spc-about-stats strong {
	color: var(--spc-orange-600);
	font-size: 22px;
}

.spc-about-aside ul {
	display: grid;
	gap: 12px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.spc-about-aside li {
	position: relative;
	padding-left: 24px;
}

.spc-about-aside li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--spc-orange-500);
}

.spc-about-contact {
	display: grid;
	gap: 8px;
	margin: 0 0 18px;
	padding: 14px;
	border: 1px solid var(--spc-line);
	border-radius: 6px;
	background: #f8fafc;
}

.spc-about-contact a {
	color: var(--spc-blue-800);
	font-weight: 900;
}

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

.spc-process-card {
	position: relative;
	overflow: hidden;
	padding: 22px;
	border: 0;
	box-shadow: 0 18px 42px rgba(12,27,47,0.1);
}

.spc-process-card span {
	display: inline-grid;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	place-items: center;
	border-radius: 999px;
	background: var(--spc-blue-950);
	color: var(--spc-white);
	font-weight: 900;
}

.spc-process-card h3 {
	margin: 0 0 10px;
}

.spc-about-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 30px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--spc-blue-950), var(--spc-blue-900));
	color: var(--spc-white);
}

.spc-about-cta span {
	color: var(--spc-orange-500);
	font-weight: 900;
	text-transform: uppercase;
}

.spc-about-cta p {
	margin-bottom: 0;
	color: rgba(255,255,255,0.78);
}

.spc-about-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.spc-page-content {
	max-width: 860px;
	line-height: 1.75;
}

.spc-trust-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	gap: 24px;
	align-items: start;
}

.spc-trust-page-section,
.spc-faq-section {
	background:
		radial-gradient(circle at 12% 10%, rgba(41,148,234,0.1), transparent 30%),
		linear-gradient(180deg, #edf3f7 0%, #f8fafc 100%);
}

.spc-trust-panel,
.spc-trust-aside,
.spc-trust-card,
.spc-faq-item {
	position: relative;
	overflow: hidden;
	padding: 26px;
	border: 0;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
	box-shadow: 0 22px 52px rgba(12, 27, 47, 0.11);
}

.spc-trust-panel::before,
.spc-trust-card::before,
.spc-faq-item::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-orange-500), #2994ea);
}

.spc-trust-aside {
	background:
		linear-gradient(145deg, rgba(11,27,47,0.98), rgba(16,36,61,0.94)),
		url("../images/hero-industrial-control-room.webp") center / cover no-repeat;
	color: var(--spc-white);
}

.spc-trust-aside span,
.spc-faq-item span,
.spc-trust-card span {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-trust-aside span {
	color: var(--spc-orange-500);
}

.spc-trust-panel h2,
.spc-trust-aside h2,
.spc-trust-card h3,
.spc-faq-item h2 {
	margin-top: 0;
}

.spc-trust-checklist,
.spc-trust-timeline {
	display: grid;
	gap: 12px;
}

.spc-trust-checklist span,
.spc-trust-timeline span {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 16px;
	align-items: center;
	padding: 14px;
	border: 1px solid var(--spc-line);
	border-radius: 8px;
	background: #f8fafc;
	color: var(--spc-muted);
	line-height: 1.55;
}

.spc-trust-timeline span {
	grid-template-columns: 86px 1fr;
}

.spc-trust-checklist strong,
.spc-trust-timeline strong {
	display: inline-grid;
	min-width: 48px;
	min-height: 40px;
	padding: 0 10px;
	place-items: center;
	border-radius: 6px;
	background: var(--spc-blue-900);
	color: var(--spc-white);
	font-size: 13px;
}

.spc-trust-timeline strong {
	min-width: 72px;
}

.spc-trust-grid,
.spc-faq-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

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

.spc-trust-card p,
.spc-faq-item p,
.spc-trust-aside p {
	color: var(--spc-muted);
	line-height: 1.7;
}

.spc-trust-aside p {
	color: rgba(255,255,255,0.76);
}

.spc-centered-cta {
	padding-top: 8px;
	padding-bottom: 8px;
	text-align: center;
}

.spc-centered-cta h2 {
	margin-top: 0;
}

.spc-centered-cta p {
	max-width: 720px;
	margin: 0 auto 20px;
	color: var(--spc-muted);
	line-height: 1.7;
}

.spc-rfq-check-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 22px;
}

.spc-rfq-check-card {
	display: grid;
	gap: 10px;
	position: relative;
	overflow: hidden;
	padding: 24px;
	border: 0;
	background: linear-gradient(180deg, #ffffff, #fbfcfd);
	box-shadow: 0 20px 46px rgba(12, 27, 47, 0.1);
}

.spc-rfq-check-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--spc-blue-800), var(--spc-orange-500));
}

.spc-rfq-check-card span {
	display: inline-grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 999px;
	background: var(--spc-blue-950);
	color: var(--spc-white);
	font-weight: 900;
}

.spc-rfq-check-card strong {
	font-size: 18px;
}

.spc-rfq-check-card p {
	margin: 0;
	color: var(--spc-muted);
	line-height: 1.65;
}

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

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

.spc-series-card,
.spc-news-card {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: 10px;
	min-height: 230px;
	padding: 26px;
	border: 0;
	background: linear-gradient(180deg, #ffffff, #fbfcfd);
	box-shadow: 0 22px 48px rgba(12, 27, 47, 0.11);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.spc-series-card > * {
	position: relative;
	z-index: 1;
}

.spc-series-card em {
	position: absolute;
	right: 22px;
	top: 20px;
	z-index: 0;
	color: rgba(16, 36, 61, 0.06);
	font-size: 76px;
	font-style: normal;
	font-weight: 900;
	line-height: 0.8;
	pointer-events: none;
}

.spc-series-card:hover,
.spc-news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 62px rgba(12, 27, 47, 0.16);
}

.spc-series-card span,
.spc-news-card span {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-news-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.spc-news-card__meta small {
	color: var(--spc-muted);
	font-size: 12px;
	font-weight: 800;
}

.spc-series-card h2,
.spc-news-card h2 {
	margin: 0;
	font-size: 22px;
	line-height: 1.2;
}

.spc-series-card p,
.spc-news-card p {
	margin: 0;
	color: var(--spc-muted);
	line-height: 1.65;
}

.spc-series-card strong,
.spc-news-card a {
	align-self: end;
	color: var(--spc-orange-600);
	font-weight: 900;
}

.spc-series-card strong {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(244, 122, 23, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 10px 24px rgba(12, 27, 47, 0.06);
}

.spc-model-search-strip {
	display: grid;
	grid-template-columns: minmax(260px, 1.05fr) minmax(280px, 1fr) auto;
	gap: 14px;
	align-items: center;
	margin-bottom: 30px;
	padding: 16px;
	border: 1px solid rgba(16,36,61,0.1);
	border-left: 4px solid var(--spc-orange-500);
	border-radius: 8px;
	background: rgba(255,255,255,0.96);
	box-shadow: 0 22px 52px rgba(12,27,47,0.11);
}

.spc-model-search-strip div {
	display: grid;
	gap: 4px;
}

.spc-model-search-strip span {
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-model-search-strip strong {
	color: var(--spc-blue-950);
	font-size: 17px;
	line-height: 1.28;
}

.spc-model-search-strip input[type="search"] {
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(16,36,61,0.14);
	border-radius: 4px;
	background: #fff;
	padding: 0 15px;
	color: var(--spc-blue-950);
	font: inherit;
}

.spc-model-search-strip input[type="search"]:focus {
	border-color: rgba(244,122,23,0.68);
	box-shadow: 0 0 0 3px rgba(244,122,23,0.14);
	outline: 0;
}

.spc-model-search-strip .spc-button {
	min-height: 48px;
	padding: 0 22px;
}

.spc-brand-index-section {
	background:
		radial-gradient(circle at 12% 8%, rgba(41,148,234,0.12), transparent 30%),
		linear-gradient(180deg, #edf3f7 0%, #f8fafc 100%);
}

.spc-brand-index-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.spc-brand-index-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr);
	gap: 8px 18px;
	align-items: center;
	min-height: 142px;
	padding: 22px;
	border: 1px solid rgba(16,36,61,0.09);
	border-top: 3px solid var(--spc-blue-700);
	border-radius: 8px;
	background: linear-gradient(180deg, #fff, #fbfcfd);
	box-shadow: 0 20px 46px rgba(12,27,47,0.1);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.spc-brand-index-card::after {
	content: "";
	position: absolute;
	right: -50px;
	bottom: -62px;
	width: 148px;
	height: 148px;
	border-radius: 50%;
	background: rgba(16,36,61,0.05);
	pointer-events: none;
}

.spc-brand-index-card:hover {
	transform: translateY(-4px);
	border-color: rgba(244,122,23,0.28);
	box-shadow: 0 28px 62px rgba(12,27,47,0.15);
}

.spc-brand-index-card.is-main {
	border-top-color: var(--spc-orange-500);
}

.spc-brand-index-card > span {
	grid-row: span 3;
	display: grid;
	place-items: center;
	width: 118px;
	height: 62px;
	border: 1px solid rgba(16,36,61,0.1);
	border-radius: 8px;
	background: var(--spc-blue-950);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0;
}

.spc-brand-index-card.is-main > span {
	background: var(--spc-orange-500);
}

.spc-brand-index-card.has-logo > span {
	padding: 0;
	background: #fff;
	overflow: hidden;
}

.spc-brand-index-card.has-logo.is-main > span {
	background: #fff;
}

.spc-brand-index-card > span img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	filter: saturate(1.04) contrast(1.04);
}

.spc-brand-index-card strong {
	position: relative;
	z-index: 1;
	color: var(--spc-blue-950);
	font-size: 24px;
	line-height: 1.1;
}

.spc-brand-index-card small {
	position: relative;
	z-index: 1;
	color: var(--spc-muted);
	font-size: 14px;
	font-weight: 800;
}

.spc-brand-index-card em {
	position: relative;
	z-index: 1;
	color: var(--spc-orange-600);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-brand-index-card b {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 34px;
	padding: 0 13px;
	border: 1px solid rgba(244, 122, 23, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--spc-orange-600);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.spc-brand-rfq-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin-top: 28px;
	padding: 24px 28px;
	border-left: 4px solid var(--spc-orange-500);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(11,27,47,0.96), rgba(16,36,61,0.9)),
		url("../images/hero-control-testing.webp") center right / cover no-repeat;
	color: #fff;
	box-shadow: 0 26px 58px rgba(12,27,47,0.18);
}

.spc-brand-rfq-strip span {
	display: block;
	margin-bottom: 5px;
	color: var(--spc-orange-500);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.spc-brand-rfq-strip strong {
	display: block;
	font-size: 22px;
	line-height: 1.25;
}

.spc-brand-rfq-strip small {
	display: block;
	margin-top: 7px;
	color: rgba(255,255,255,0.72);
	font-size: 14px;
	line-height: 1.5;
}

.spc-testimonials-section {
	background:
		radial-gradient(circle at 80% 20%, rgba(244,122,23,0.08), transparent 28%),
		linear-gradient(180deg, #f8fafc 0%, #edf3f7 100%);
}

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

.spc-testimonial-card {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: 18px;
	min-height: 228px;
	padding: 26px;
	border: 0;
	background: linear-gradient(180deg, #fff, #fbfcfd);
	box-shadow: 0 22px 52px rgba(12,27,47,0.12);
}

.spc-testimonial-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, var(--spc-orange-500), #2994ea);
}

.spc-testimonial-card__head {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
}

.spc-testimonial-card__avatar {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background:
		linear-gradient(135deg, rgba(11,27,47,0.96), rgba(22,53,84,0.9)),
		radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 36%);
	border: 3px solid #fff;
	box-shadow: 0 12px 28px rgba(12,27,47,0.14);
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	overflow: hidden;
}

.spc-testimonial-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spc-testimonial-card__head strong {
	display: block;
	color: var(--spc-orange-600);
	font-size: 13px;
	text-transform: uppercase;
}

.spc-testimonial-card__head small {
	display: block;
	margin-top: 4px;
	color: #ffad1f;
	font-size: 16px;
	letter-spacing: 0;
}

.spc-testimonial-card__head em {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 30px;
	border: 1px solid rgba(16,36,61,0.08);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 10px 22px rgba(12,27,47,0.08);
	font-size: 22px;
	font-style: normal;
	line-height: 1;
}

.spc-testimonial-card p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--spc-blue-900);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.35;
}

.spc-testimonial-card footer {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 4px;
	color: var(--spc-muted);
	font-size: 13px;
	font-weight: 800;
}

.spc-testimonial-card footer strong {
	color: var(--spc-blue-950);
	font-size: 14px;
}

.spc-series-section,
.spc-blog-section,
.spc-about-section {
	background:
		radial-gradient(circle at 12% 8%, rgba(41,148,234,0.12), transparent 30%),
		linear-gradient(180deg, #edf3f7 0%, #f8fafc 100%);
}

.navigation.pagination {
	margin: 36px 0 0;
	padding: 18px;
	border: 1px solid rgba(16,36,61,0.08);
	border-radius: 8px;
	background: rgba(255,255,255,0.78);
	box-shadow: 0 16px 36px rgba(12,27,47,0.08);
}

.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid rgba(12, 27, 47, 0.12);
	border-radius: 999px;
	background: #fff;
	color: var(--spc-navy);
	font-weight: 900;
	text-decoration: none;
	box-shadow: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.navigation.pagination .prev,
.navigation.pagination .next {
	min-width: 94px;
}

.navigation.pagination .page-numbers.current,
.navigation.pagination a.page-numbers:hover {
	border-color: var(--spc-orange);
	background: var(--spc-orange);
	color: #fff;
}

@media (max-width: 980px) {
	.spc-header-top {
		display: none;
	}

	.spc-site-header__inner {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 12px 0;
	}

	.spc-primary-nav,
	.spc-header-contact {
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 14px;
	}

	.spc-nav-item {
		min-height: auto;
	}

	.spc-primary-nav > a,
	.spc-nav-item > a {
		min-height: 28px;
	}

	.spc-nav-panel {
		display: none;
	}

	.spc-product-search-head {
		display: grid;
		gap: 8px;
	}

	.spc-product-search-head em {
		font-size: 12px;
	}

	.spc-hero__inner {
		grid-template-columns: 1fr;
	}

	.spc-hero__rfq-card {
		width: min(420px, 100%);
		margin-bottom: 28px;
	}

	.spc-static-product {
		grid-template-columns: 96px 1fr;
		min-height: 126px;
	}

	.spc-static-product__image {
		height: 92px;
	}

	.spc-trust-bar__grid,
	.spc-category-grid,
	.spc-why-grid,
	.spc-static-product-row,
	.spc-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spc-inquiry-band,
	.spc-quick-inquiry,
	.spc-contact-grid,
	.spc-product-detail,
	.spc-catalog-layout,
	.spc-quick-inquiry--page,
	.spc-trust-layout,
	.spc-about-layout {
		grid-template-columns: 1fr;
	}

	.spc-quick-inquiry--page .spc-quick-inquiry__contact,
	.spc-quick-inquiry--page .spc-rfq-status,
	.spc-quick-inquiry--page .spc-rfq-form {
		grid-column: auto;
		grid-row: auto;
	}

	.spc-catalog-sidebar {
		position: static;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.spc-catalog-sidebar__panel,
	.spc-catalog-sidebar__proof {
		align-content: start;
	}

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

	.spc-empty-state {
		grid-template-columns: 1fr;
	}

	.spc-empty-state__actions {
		display: flex;
		flex-wrap: wrap;
		min-width: 0;
	}

	.spc-catalog-note__steps {
		justify-content: flex-start;
	}

	.spc-product-grid,
	.spc-trust-grid,
	.spc-faq-list,
	.spc-process-grid,
	.spc-product-process-grid,
	.spc-series-grid,
	.spc-news-grid,
	.spc-rfq-check-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.spc-container {
		width: min(100% - 24px, 1010px);
	}

	.spc-site-header {
		position: sticky;
	}

	.spc-site-header__inner {
		gap: 8px;
		padding: 8px 0;
	}

	.spc-logo {
		font-size: 16px;
	}

	.spc-logo__image {
		width: 28px;
		height: 28px;
	}

	.spc-primary-nav {
		display: flex;
		flex-wrap: nowrap;
		gap: 13px;
		overflow-x: auto;
		margin: 0 -12px;
		padding: 6px 12px 4px;
		border-top: 1px solid rgba(255,255,255,0.08);
		font-size: 12px;
		scrollbar-width: none;
	}

	.spc-primary-nav::-webkit-scrollbar {
		display: none;
	}

	.spc-primary-nav > a,
	.spc-nav-item,
	.spc-nav-item > a {
		flex: 0 0 auto;
	}

	.spc-primary-nav a.is-active::after,
	.spc-nav-item > a.is-active::after {
		bottom: -5px;
	}

	.spc-header-contact {
		display: none;
	}

	.spc-brand-showcase {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.spc-brand-proof {
		min-height: 210px;
		padding: 22px;
	}

	.spc-brand-proof strong {
		font-size: 24px;
	}

	.spc-brand-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.spc-brand-row a {
		min-height: 62px;
		border-radius: 6px;
	}

	.spc-brand-row a.has-logo {
		padding: 9px;
	}

	.spc-product-topbar__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 9px;
		align-items: start;
		padding: 9px 0;
	}

	.spc-product-topbar nav {
		font-size: 12px;
		line-height: 1.35;
	}

	.spc-product-topbar__rfq {
		width: 100%;
		min-height: 36px;
	}

	.spc-product-lookup__inner {
		grid-template-columns: 1fr;
		gap: 10px;
		min-height: 0;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.spc-product-lookup__form {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 10px;
	}

	.spc-product-lookup__form > span {
		min-height: 0;
		padding: 0 0 0 10px;
		font-size: 12px;
	}

	.spc-product-lookup__form input[type="search"],
	.spc-product-lookup__form .spc-button {
		min-height: 42px;
	}

	.spc-product-lookup__links {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 2px;
		scrollbar-width: none;
	}

	.spc-product-lookup__links::-webkit-scrollbar {
		display: none;
	}

	.spc-product-lookup__links a {
		flex: 0 0 auto;
		min-height: 30px;
		font-size: 12px;
	}

	.spc-product-part-head {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.spc-product-part-head .spc-copy-button {
		width: fit-content;
	}

	.spc-product-buying-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.spc-product-buying-strip span {
		min-height: 68px;
		padding: 10px;
	}

	.spc-product-specs {
		grid-template-columns: 1fr;
	}

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

	.spc-product-rfq-card {
		grid-template-columns: 1fr;
		padding: 15px;
	}

	.spc-product-inline-rfq {
		display: grid;
		gap: 12px;
		padding: 15px;
	}

	.spc-product-inline-rfq .spc-button {
		width: 100%;
	}

	.spc-hero__inner {
		min-height: 286px;
	}

	.spc-hero__copy {
		padding-bottom: 18px;
	}

	.spc-hero__rfq-card {
		display: none;
	}

	.spc-hero h1 {
		font-size: 30px;
	}

	.spc-hero p {
		font-size: 16px;
	}

	.spc-button {
		width: 100%;
	}

	.spc-hero__quick-links a {
		font-size: 11px;
	}

	.spc-section-heading--home {
		display: grid;
		align-items: start;
	}

	.spc-trust-bar__grid {
		gap: 0;
		padding: 8px 0;
		min-height: 0;
	}

	.spc-trust-bar span {
		justify-content: flex-start;
		padding: 5px 0;
		font-size: 12px;
	}

	.spc-trust-bar em {
		width: 26px;
		height: 26px;
		font-size: 9px;
	}

	.spc-hero-search {
		grid-template-columns: 1fr;
	}

	.spc-trust-bar__grid,
	.spc-category-grid,
	.spc-why-grid,
	.spc-static-product-row,
	.spc-footer-grid {
		grid-template-columns: 1fr;
	}

	.spc-category-card {
		grid-template-columns: 48px 1fr;
	}

	.spc-category-card > span:last-child {
		grid-column: 2;
		grid-row: auto;
	}

	.spc-rfq-form {
		grid-template-columns: 1fr;
	}

	.spc-product-search {
		grid-template-columns: 1fr;
		gap: 9px;
		padding: 12px;
	}

	.spc-product-search-wrap {
		margin: -10px 0 18px;
	}

	.spc-product-search-status {
		display: grid;
		gap: 6px;
		align-items: start;
		padding: 9px 12px;
		font-size: 12px;
	}

	.spc-product-search-status a {
		width: fit-content;
	}

	.spc-rfq-form label {
		display: grid;
		gap: 4px;
	}

	.spc-product-grid,
	.spc-product-grid--catalog,
	.spc-product-specs,
	.spc-product-process-grid,
	.spc-trust-grid,
	.spc-faq-list,
	.spc-process-grid,
	.spc-series-grid,
	.spc-news-grid,
	.spc-model-search-strip,
	.spc-rfq-check-grid,
	.spc-about-stats {
		grid-template-columns: 1fr;
	}

	.spc-catalog-sidebar {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.spc-catalog-sidebar__panel,
	.spc-catalog-sidebar__proof {
		padding: 16px;
	}

	.spc-catalog-sidebar__panel:not(.spc-catalog-sidebar__panel--dark) a {
		min-height: 32px;
		padding: 6px 0;
	}

	.spc-catalog-note {
		gap: 12px;
		margin-bottom: 18px;
		padding: 16px;
	}

	.spc-catalog-note__steps {
		justify-content: flex-start;
	}

	.spc-catalog-toolbar,
	.spc-product-rfq-card {
		grid-template-columns: 1fr;
	}

	.spc-page-hero {
		padding: 48px 0;
	}

	.spc-page-hero h1 {
		font-size: 34px;
		line-height: 1.08;
	}

	.spc-page-hero__metrics {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.spc-page-hero__metrics span {
		min-height: 0;
		padding: 12px 14px;
	}

	.spc-about-panel,
	.spc-about-aside {
		padding: 20px;
	}

	.spc-about-cta {
		display: grid;
		padding: 22px;
	}

	.spc-product-card__media {
		height: 188px;
		padding: 22px;
	}

	.spc-product-card__body {
		padding: 16px;
	}

	.spc-product-card h3 {
		min-height: 0;
		font-size: 16px;
	}

	.spc-static-product {
		grid-template-columns: 86px 1fr;
		min-height: 112px;
		padding: 10px;
	}

	.spc-static-product__image {
		height: 82px;
	}

	.spc-static-product h3 {
		font-size: 14px;
	}

	.spc-static-product p,
	.spc-static-product__meta {
		font-size: 12px;
	}

	.spc-static-product .spc-button {
		min-height: 28px;
		padding: 0 10px;
	}

	.spc-static-product__actions {
		gap: 8px;
	}

	.spc-product-card__body {
		gap: 8px;
		padding: 14px;
	}

	.spc-product-card h3 {
		font-size: 16px;
		line-height: 1.28;
	}

	.spc-product-card__meta {
		min-height: 34px;
	}

	.spc-brand-index-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.spc-brand-index-card {
		grid-template-columns: 86px minmax(0, 1fr);
		min-height: 104px;
		padding: 16px;
		gap: 5px 14px;
	}

	.spc-brand-index-card > span {
		width: 86px;
		height: 50px;
		font-size: 16px;
	}

	.spc-brand-index-card.has-logo > span {
		padding: 0;
	}

	.spc-brand-index-card strong {
		font-size: 20px;
		overflow-wrap: anywhere;
	}

	.spc-brand-index-card small {
		font-size: 13px;
	}

	.spc-brand-index-card em {
		font-size: 11px;
	}

	.spc-brand-rfq-strip {
		display: grid;
		gap: 14px;
		padding: 18px;
	}

	.spc-brand-rfq-strip strong {
		font-size: 20px;
	}

	.spc-testimonial-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.spc-testimonial-card {
		min-height: 0;
		padding: 20px;
	}

	.spc-testimonial-card__head {
		grid-template-columns: 48px minmax(0, 1fr) auto;
		gap: 10px;
	}

	.spc-testimonial-card__avatar {
		width: 48px;
		height: 48px;
	}

	.spc-testimonial-card p {
		font-size: 17px;
	}

	.spc-section-heading {
		align-items: start;
	}

	.spc-product-gallery {
		min-height: 300px;
	}

	.spc-product-gallery__stage {
		min-height: 220px;
	}

	.spc-product-gallery__thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.spc-product-data dl > div,
	.spc-product-data.spc-product-data--wide dl > div {
		grid-template-columns: 1fr;
		gap: 7px;
		min-height: 0;
		padding: 12px 14px;
	}

	.spc-product-data--wide dl {
		grid-template-columns: 1fr;
	}

	.spc-product-data__head {
		padding: 18px 16px;
	}

	.spc-product-data__head h2 {
		font-size: 23px;
	}

	.spc-product-data dd {
		font-size: 14px;
	}

	.spc-product-overview {
		padding: 22px;
	}

	.spc-static-product__actions .spc-button {
		width: auto;
	}
}
