:root {
	--eng-primary: #1d5fae;
	--eng-primary-rgb: 29, 95, 174;
	--eng-primary-dark: #143f73;
	--eng-secondary: #c58b2a;
	--eng-dark: #0d1b2a;
	--eng-surface: #101820;
	--eng-muted: #6c7a89;
	--eng-anchor-offset: 156px;
	--eng-card-shadow: 0 16px 38px rgba(16, 24, 32, 0.08);
	--eng-card-shadow-soft: 0 14px 34px rgba(16, 24, 32, 0.07);
	--bs-success: var(--eng-primary);
	--bs-success-rgb: var(--eng-primary-rgb);
	--bs-link-color: var(--eng-primary);
	--bs-link-hover-color: var(--eng-primary-dark);
}

#header.full-header #logo a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0.5rem 0 0.5rem 0.75rem;
}

#header.full-header #logo img {
	height: 110px;
	width: auto;
	filter: drop-shadow(0 14px 28px rgba(13, 27, 42, 0.3));
}

#header.full-header .header-row {
	min-height: 124px;
	gap: 2rem;
}

.header-split-nav {
	display: none;
}

.header-split-menu {
	display: flex;
	align-items: center;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-split-nav--left {
	justify-content: flex-end;
}

.header-split-nav--right {
	justify-content: flex-start;
}

.header-split-link {
	display: inline-flex;
	align-items: center;
	padding: 0.9rem 1rem;
	color: var(--eng-dark);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.2s ease;
}

.header-split-link:hover,
.header-split-item.current .header-split-link {
	color: var(--eng-secondary);
}

.is-expanded-menu .full-header #logo {
	padding-right: 0;
	border-right: 0;
}

#header.full-header.sticky-header #logo img,
#header.full-header.sticky-header-shrink #logo img,
#header.full-header.sticky-header #header-wrap #logo img,
#header.full-header.sticky-header-shrink #header-wrap #logo img {
	height: 110px;
}

#header.full-header .primary-menu {
	margin-left: auto;
}

.menu-link div {
	font-weight: 500;
	letter-spacing: 0.02em;
}

#header .primary-menu .menu-link {
	color: var(--eng-dark);
}

#header .primary-menu .current .menu-link,
#header .primary-menu .menu-link:hover {
	color: var(--eng-secondary);
}

@media (min-width: 768px) {
	#header.full-header .header-row {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
		align-items: center;
		gap: 2.5rem;
	}

	#header.full-header #logo {
		grid-column: 2;
		justify-self: center;
		margin-inline: 1rem;
	}

	#header.full-header #logo a {
		padding-left: 0;
		padding-right: 0;
		justify-content: center;
	}

	.header-split-nav {
		display: flex;
	}

	.header-split-nav--left {
		grid-column: 1;
	}

	.header-split-nav--right {
		grid-column: 3;
	}

	#header.full-header .primary-menu,
	#header.full-header .primary-menu-trigger {
		display: none !important;
	}
}

.hero-energy {
	background-color: #f3f4f6;
	padding: 0;
	overflow: hidden;
}

.hero-banners {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.hero-video-frame,
.hero-carousel {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #09111a;
}

.hero-carousel {
	cursor: grab;
	user-select: none;
}

.hero-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	background: #09111a;
}

.hero-carousel.is-dragging {
	cursor: grabbing;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.7s ease;
	pointer-events: none;
}

.hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.hero-slide picture {
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.hero-arrow {
	position: absolute;
	top: 50%;
	z-index: 11;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 999px;
	background: rgba(13, 27, 42, 0.42);
	color: #fff;
	transform: translateY(-50%);
	cursor: pointer;
	appearance: none;
	backdrop-filter: blur(10px);
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
	background: rgba(29, 95, 174, 0.88);
	border-color: rgba(29, 95, 174, 0.95);
}

.hero-arrow span {
	display: block;
	font-size: 2rem;
	line-height: 1;
	transform: translateY(-1px);
}

.hero-arrow-prev {
	left: clamp(14px, 2vw, 24px);
}

.hero-arrow-next {
	right: clamp(14px, 2vw, 24px);
}

.hero-banner {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	object-position: center top;
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
}

.energ-banner-pagination {
	position: absolute;
	left: 50%;
	bottom: clamp(16px, 3vw, 28px);
	transform: translateX(-50%);
	z-index: 10;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.55rem 0.8rem;
	border-radius: 999px;
	background: rgba(13, 27, 42, 0.45);
	backdrop-filter: blur(8px);
}

.hero-dot {
	width: 11px;
	height: 11px;
	margin: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.72);
	opacity: 1;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	cursor: pointer;
	appearance: none;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-dot.is-active {
	background: var(--eng-primary);
	border-color: var(--eng-primary);
	transform: scale(1.12);
}

@supports not (backdrop-filter: blur(8px)) {
	.energ-banner-pagination {
		background: rgba(13, 27, 42, 0.7);
	}
}

@media (max-width: 767.98px) {
	.hero-banners {
		max-width: none;
	}

	.presence-strip .row > [class*="col-"] + [class*="col-"] {
		margin-top: 0.85rem;
	}

	.hero-video-frame,
	.hero-carousel {
		aspect-ratio: 16 / 9;
	}

	.hero-video {
		object-fit: contain;
		background: #09111a;
	}

	.hero-arrow {
		width: 42px;
		height: 42px;
	}

	.hero-arrow span {
		font-size: 1.8rem;
	}
}

.button,
.button.button-border:not(.button-fill),
.button.button-border.button-light:not(.button-fill) {
	background-color: var(--eng-primary);
	border-color: var(--eng-primary);
	color: #fff;
}

.button:hover,
.button.button-border:not(.button-fill):hover,
.button.button-border.button-light:not(.button-fill):hover {
	background-color: var(--eng-primary-dark);
	border-color: var(--eng-primary-dark);
	color: #fff;
}

.button.button-border.button-light,
.button.button-border {
	box-shadow: none;
}

a {
	color: var(--eng-primary);
}

a:hover {
	color: var(--eng-primary-dark);
}

::selection {
	background: rgba(197, 139, 42, 0.28);
	color: var(--eng-dark);
}

::-moz-selection {
	background: rgba(197, 139, 42, 0.28);
	color: var(--eng-dark);
}

.presence-strip {
	background: linear-gradient(90deg, var(--eng-dark), #16263a);
	color: #fff;
}

.presence-strip .presence-label {
	color: var(--eng-secondary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	font-weight: 700;
}

.approval-certificate-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.9rem;
	padding: 0.55rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	opacity: 1;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.approval-certificate-button:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.52);
	color: #fff;
	transform: translateY(-1px);
}

.approval-strip-card {
	display: block;
}

.approval-strip-copy {
	min-width: 0;
}

.energy-card {
	height: 100%;
	border: 1px solid #e9edf2;
	border-radius: 1rem;
	padding: 2rem 1.5rem;
	background: #fff;
	box-shadow: var(--eng-card-shadow);
}

.section-kicker {
	margin-bottom: 0.8rem;
	color: var(--eng-primary);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.about-heading-block > span {
	max-width: 940px !important;
}

.about-story-grid {
	margin-top: 1.5rem;
}

.about-story-point {
	height: 100%;
	padding: 1.4rem 1.35rem;
	border: 1px solid #e7edf4;
	border-radius: 1rem;
	background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
	box-shadow: 0 14px 32px rgba(16, 24, 32, 0.05);
}

.about-story-label {
	display: inline-block;
	margin-bottom: 0.85rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(190, 154, 67, 0.14);
	color: var(--eng-primary);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.about-story-point h3 {
	font-size: 1.05rem;
	line-height: 1.35;
	margin-bottom: 0.7rem;
}

.about-story-point p {
	margin-bottom: 0;
	color: #4c5d70;
	line-height: 1.7;
}

.about-product-strip {
	align-items: stretch;
}

.about-product-visual {
	height: 100%;
	overflow: hidden;
	border-radius: 1.1rem;
	background: #eef2f7;
	box-shadow: 0 16px 36px rgba(16, 24, 32, 0.08);
}

.about-product-visual img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.energy-card .card-badge {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eng-primary);
	margin-bottom: 0.75rem;
}

.energy-card h3,
.energy-card h4 {
	margin-bottom: 0.75rem;
}

.section-dark-energy {
	background: linear-gradient(180deg, #0d1b2a 0%, #13273c 100%);
	color: #fff;
	position: relative;
}

.section-dark-energy .feature-box h3,
.section-dark-energy .feature-box p,
.section-dark-energy .heading-block span,
.section-dark-energy .heading-block h2,
.section-dark-energy .heading-block h3,
.section-dark-energy p,
.section-dark-energy li {
	color: #fff;
}

.section-dark-energy .fbox-icon i {
	color: var(--eng-secondary);
}

.section-dark-energy .energy-card h4 {
	color: var(--eng-dark);
}

.section-dark-energy .energy-card p {
	color: #4c5d70;
}

.section-dark-energy .energy-card li {
	color: #4c5d70;
}

.section-dark-energy .energy-card li i {
	color: var(--eng-secondary);
}

.section-banner-panel {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: clamp(2rem, 3vw, 3rem);
	margin-bottom: 2rem;
	border-radius: 1.5rem;
	min-height: 260px;
	display: flex;
	align-items: center;
	box-shadow: var(--eng-card-shadow-soft);
}

.section-banner-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
}

.section-banner-panel > * {
	position: relative;
	z-index: 1;
	width: 100%;
}

.section-banner-panel .heading-block span {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

.section-banner-panel--vision {
	background-image: url("../images/brand/about-vision-banner.jpeg");
}

.section-banner-panel--vision::before {
	background:
		linear-gradient(90deg, rgba(5, 16, 29, 0.86) 0%, rgba(5, 16, 29, 0.72) 45%, rgba(5, 16, 29, 0.5) 100%);
}

.section-banner-panel--vision .heading-block span,
.section-banner-panel--vision .heading-block h2,
.section-banner-panel--vision .heading-block .eyebrow,
.section-banner-panel--vision .section-heading-icon i {
	color: #fff;
}

.section-banner-panel--who-we-are {
	background-image: url("../images/brand/about-who-we-are-banner.jpg");
	background-position: center top;
}

.section-banner-panel--who-we-are::before {
	background:
		linear-gradient(90deg, rgba(7, 18, 32, 0.88) 0%, rgba(7, 18, 32, 0.74) 44%, rgba(7, 18, 32, 0.48) 100%);
}

.section-banner-panel--who-we-are .heading-block span,
.section-banner-panel--who-we-are .heading-block h2,
.section-banner-panel--who-we-are .heading-block .eyebrow,
.section-banner-panel--who-we-are .section-heading-icon i {
	color: #fff;
}

.section-banner-panel--what-we-do {
	background-image: url("../images/brand/about-technology-rd-banner.jpg");
	background-position: center center;
}

.section-banner-panel--what-we-do::before {
	background:
		linear-gradient(96deg, rgba(248, 251, 255, 0.94) 0%, rgba(246, 249, 252, 0.86) 44%, rgba(246, 249, 252, 0.62) 100%);
}

.technology-layout {
	align-items: stretch;
}

.technology-card {
	padding: 1.85rem 1.5rem;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.technology-keypoints {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.2rem;
}

.technology-keypoint {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	background: #eef3f8;
	border: 1px solid #dde6ef;
	color: #324457;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
}

.approvals-layout {
	align-items: stretch;
}

.approvals-card {
	padding: 1.9rem 1.6rem;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.approvals-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.1rem;
}

.approval-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	background: rgba(190, 154, 67, 0.12);
	border: 1px solid rgba(190, 154, 67, 0.22);
	color: #314356;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
}

.approval-highlight {
	margin-top: 1.15rem;
	padding: 0.95rem 1rem;
	border-radius: 0.95rem;
	background: #eef4f9;
	border: 1px solid #dde7f0;
	color: #435569;
	line-height: 1.6;
}

.distribution-layout {
	align-items: stretch;
}

.distribution-card {
	padding: 1.9rem 1.6rem;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.distribution-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.1rem;
}

.distribution-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	background: #eef3f8;
	border: 1px solid #dde6ef;
	color: #314356;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
}

.distribution-highlight {
	margin-top: 1.15rem;
	padding: 0.95rem 1rem;
	border-radius: 0.95rem;
	background: #eef4f9;
	border: 1px solid #dde7f0;
	color: #435569;
	line-height: 1.6;
}

.section-banner-panel--awards {
	background-image: url("../images/brand/about-oem-approvals-banner.jpg");
}

.section-banner-panel--awards::before {
	background:
		linear-gradient(96deg, rgba(250, 252, 255, 0.94) 0%, rgba(246, 249, 252, 0.88) 44%, rgba(246, 249, 252, 0.66) 100%);
}

.section-banner-panel--quality {
	background-image: url("../images/brand/about-global-distribution-banner.jpg");
}

.section-banner-panel--quality::before {
	background:
		linear-gradient(90deg, rgba(5, 16, 29, 0.84) 0%, rgba(5, 16, 29, 0.7) 45%, rgba(5, 16, 29, 0.46) 100%);
}

.section-banner-panel--quality .heading-block span,
.section-banner-panel--quality .heading-block h2,
.section-banner-panel--quality .heading-block .eyebrow,
.section-banner-panel--quality .section-heading-icon i {
	color: #fff;
}

.section-banner-panel--history {
	background-image: url("../images/brand/about-history-banner.jpg");
	background-position: center center;
}

.section-banner-panel--history::before {
	background:
		linear-gradient(96deg, rgba(27, 18, 8, 0.68) 0%, rgba(241, 229, 206, 0.78) 42%, rgba(241, 229, 206, 0.5) 100%);
}

.section-banner-panel--home-intro {
	background-image: url("../images/brand/home-approved-banner.jpg");
	min-height: 320px;
}

.section-banner-panel--home-intro::before {
	background:
		linear-gradient(90deg, rgba(8, 20, 34, 0.9) 0%, rgba(8, 20, 34, 0.78) 42%, rgba(8, 20, 34, 0.48) 100%);
}

.section-banner-panel--home-intro .heading-block span,
.section-banner-panel--home-intro .heading-block h2,
.section-banner-panel--home-intro .heading-block .section-kicker {
	color: #fff;
}

.section-banner-panel--home-why-choose {
	background-image: url("../images/brand/home-why-choose-banner.jpg");
	min-height: 300px;
}

.section-banner-panel--home-why-choose::before {
	background:
		linear-gradient(90deg, rgba(8, 20, 34, 0.9) 0%, rgba(8, 20, 34, 0.76) 42%, rgba(8, 20, 34, 0.48) 100%);
}

.section-banner-panel--home-why-choose .heading-block span,
.section-banner-panel--home-why-choose .heading-block h2 {
	color: #fff;
}

.section-banner-panel--home-presence {
	background-image: url("../images/brand/home-presence-banner.jpg");
	min-height: 300px;
}

.section-banner-panel--home-presence::before {
	background:
		linear-gradient(90deg, rgba(8, 20, 34, 0.9) 0%, rgba(8, 20, 34, 0.76) 42%, rgba(8, 20, 34, 0.48) 100%);
}

.section-banner-panel--home-presence .heading-block span,
.section-banner-panel--home-presence .heading-block h3 {
	color: #fff;
}

.section-banner-panel--home-quality-readiness {
	background-image: url("../images/brand/home-quality-readiness-banner.jpg");
	min-height: 300px;
}

.section-banner-panel--home-quality-readiness::before {
	background:
		linear-gradient(90deg, rgba(8, 20, 34, 0.9) 0%, rgba(8, 20, 34, 0.76) 42%, rgba(8, 20, 34, 0.48) 100%);
}

.section-banner-panel--home-quality-readiness .heading-block span,
.section-banner-panel--home-quality-readiness .heading-block h3 {
	color: #fff;
}

.section-banner-panel--products-overview {
	background-image: url("../images/brand/products-hero-banner.jpg");
	min-height: 300px;
}

.section-banner-panel--products-overview::before {
	background:
		linear-gradient(90deg, rgba(8, 20, 34, 0.9) 0%, rgba(8, 20, 34, 0.74) 42%, rgba(8, 20, 34, 0.46) 100%);
}

.section-banner-panel--products-overview .heading-block span,
.section-banner-panel--products-overview .heading-block h2 {
	color: #fff;
}

.section-banner-panel--products-pcmo {
	background-image: url("../images/brand/products-pcmo-banner.jpg");
	background-position: center bottom;
}

.section-banner-panel--products-diesel {
	background-image: url("../images/brand/products-diesel-banner.jpg");
}

.section-banner-panel--products-gear {
	background-image: url("../images/brand/products-gear-banner.jpg");
}

.section-banner-panel--products-specialty {
	background-image: url("../images/brand/products-specialty-banner.jpg");
}

.section-banner-panel--products-motorcycle {
	background-image: url("../images/brand/products-motorcycle-banner.jpg");
}

.section-banner-panel--products-industrial {
	background-image: url("../images/brand/products-industrial-banner.jpg");
}

.section-banner-panel--products-pcmo::before,
.section-banner-panel--products-diesel::before,
.section-banner-panel--products-gear::before,
.section-banner-panel--products-specialty::before,
.section-banner-panel--products-motorcycle::before,
.section-banner-panel--products-industrial::before {
	background:
		linear-gradient(90deg, rgba(5, 16, 29, 0.84) 0%, rgba(5, 16, 29, 0.68) 45%, rgba(5, 16, 29, 0.42) 100%);
}

.section-banner-panel--products-pcmo .heading-block span,
.section-banner-panel--products-pcmo .heading-block h2,
.section-banner-panel--products-pcmo .heading-block .eyebrow,
.section-banner-panel--products-diesel .heading-block span,
.section-banner-panel--products-diesel .heading-block h2,
.section-banner-panel--products-diesel .heading-block .eyebrow,
.section-banner-panel--products-gear .heading-block span,
.section-banner-panel--products-gear .heading-block h2,
.section-banner-panel--products-gear .heading-block .eyebrow,
.section-banner-panel--products-specialty .heading-block span,
.section-banner-panel--products-specialty .heading-block h2,
.section-banner-panel--products-specialty .heading-block .eyebrow,
.section-banner-panel--products-motorcycle .heading-block span,
.section-banner-panel--products-motorcycle .heading-block h2,
.section-banner-panel--products-motorcycle .heading-block .eyebrow,
.section-banner-panel--products-industrial .heading-block span,
.section-banner-panel--products-industrial .heading-block h2,
.section-banner-panel--products-industrial .heading-block .eyebrow {
	color: #fff;
}

.press-connect-banner {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background-image: url("../images/brand/press-connect-banner.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: clamp(3rem, 5vw, 4.5rem) 0;
	min-height: 320px;
	display: flex;
	align-items: center;
}

.press-connect-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(96deg, rgba(6, 17, 30, 0.88) 0%, rgba(6, 17, 30, 0.78) 42%, rgba(6, 17, 30, 0.48) 100%);
	z-index: 0;
}

.press-connect-banner .container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.press-connect-banner .heading-block h2,
.press-connect-banner .heading-block span {
	color: #fff;
}

.application-card {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	min-height: 320px;
	background: #111;
}

.application-card img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.application-card .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 16, 24, 0.05), rgba(10, 16, 24, 0.88));
	display: flex;
	align-items: end;
	padding: 1.5rem;
}

.application-card h4,
.application-card p {
	color: #fff;
	margin-bottom: 0.5rem;
}

.identity-card {
	border-radius: 1rem;
	padding: 2rem;
	height: 100%;
	background: #fff;
	border: 1px solid #e8edf3;
	box-shadow: var(--eng-card-shadow-soft);
}

.identity-card .eyebrow,
.page-hero .eyebrow {
	color: var(--eng-secondary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	font-size: 0.8rem;
	margin-bottom: 0.75rem;
}

.iconlist.iconlist-color li i,
.iconlist-color .iconlist-icon,
.iconlist-color i {
	color: var(--eng-dark) !important;
}

.fbox-icon i,
.fbox-icon img {
	background-color: var(--eng-secondary) !important;
}

.fbox-icon i {
	color: #111111 !important;
}

.fbox-plain .fbox-icon i,
.fbox-plain .fbox-icon img {
	background-color: transparent !important;
	color: var(--eng-secondary) !important;
}

.quality-grid .col-lg-3 .energy-card {
	text-align: center;
}

.instagram-feed-section {
	background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

@media (max-width: 767.98px) {
	.about-story-point {
		padding: 1.2rem 1.1rem;
	}

	.about-product-strip {
		margin-top: 1.75rem !important;
	}
}

.instagram-feed-row {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.instagram-feed-item {
	display: flex;
	min-width: 0;
}

.instagram-feed-card {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 1.15rem;
	background: #eef2f7;
	box-shadow: 0 18px 40px rgba(16, 24, 32, 0.08);
}

.instagram-feed-card img,
.instagram-feed-card video {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 0.35s ease, filter 0.35s ease;
}

.instagram-feed-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 27, 42, 0.02) 24%, rgba(13, 27, 42, 0.16) 100%);
	opacity: 0.55;
	transition: opacity 0.35s ease;
}

.instagram-feed-card:hover img,
.instagram-feed-card:hover video {
	transform: scale(1.04);
	filter: saturate(1.05);
}

.instagram-feed-card:hover::after {
	opacity: 0.75;
}

@media (max-width: 991.98px) {
	.instagram-feed-row {
		grid-template-columns: repeat(6, minmax(180px, 1fr));
		overflow-x: auto;
		padding-bottom: 0.5rem;
		scrollbar-width: thin;
	}
}

.footer-entity-title {
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eng-secondary);
	margin-bottom: 0.6rem;
	font-weight: 700;
}

.footer-logo-text img {
	height: 68px;
	width: auto;
}

.footer-brand-copy {
	max-width: 520px;
	line-height: 1.75;
}

.footer-links-grid ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links-grid li + li {
	margin-top: 0.65rem;
}

.footer-address-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	padding: 1.25rem 1.35rem;
	height: 100%;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.footer-address-card address {
	margin: 0;
	line-height: 1.7;
}

.footer-support-logos {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem 2rem;
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-support-logo-block {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-support-logo-block img {
	height: 42px;
	width: auto;
	object-fit: contain;
	opacity: 0.92;
}

.footer-support-caption {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eng-secondary);
	font-weight: 700;
}

.footer-socials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.5rem;
}

.footer-socials-label {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eng-secondary);
	font-weight: 700;
	margin-right: 0.5rem;
}

.footer-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.88);
	font-size: 1rem;
	transition: all 0.2s ease;
}

.footer-social-link:hover {
	color: #111111;
	background: var(--eng-secondary);
	border-color: var(--eng-secondary);
}

.text-primary,
.color {
	color: var(--eng-primary) !important;
}

.bg-success,
.bg-primary {
	background-color: var(--eng-primary) !important;
}

.text-success {
	color: var(--eng-primary) !important;
}

.border-success,
.border-primary {
	border-color: var(--eng-primary) !important;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
	border-color: rgba(var(--eng-primary-rgb), 0.45);
	box-shadow: 0 0 0 0.25rem rgba(var(--eng-primary-rgb), 0.16);
}

#footer .widget_links li a,
#footer,
#footer p,
#footer address,
#footer li,
#copyrights {
	color: rgba(255, 255, 255, 0.72);
}

#copyrights {
	background-color: rgba(0, 0, 0, 0.18);
}

.footer-bottom-socials {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.footer-bottom-socials .footer-social-link {
	width: 34px;
	height: 34px;
	font-size: 0.9rem;
}

@media (max-width: 767.98px) {
	.footer-bottom-socials {
		margin: 0.35rem 0;
	}
}

.page-hero {
	background: linear-gradient(135deg, #0d1b2a 0%, #19334d 100%);
	color: #fff;
	padding: 5rem 0 4rem;
	position: relative;
	overflow: hidden;
}

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

.page-hero--about {
	background-image:
		linear-gradient(110deg, rgba(5, 17, 31, 0.84) 0%, rgba(7, 24, 40, 0.68) 42%, rgba(7, 24, 40, 0.54) 100%),
		url("../images/brand/about-ndth-hero.jpeg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 26rem;
	display: flex;
	align-items: center;
}

.page-hero--products {
	background-image:
		linear-gradient(110deg, rgba(5, 17, 31, 0.84) 0%, rgba(7, 24, 40, 0.68) 42%, rgba(7, 24, 40, 0.54) 100%),
		url("../images/brand/products-overview-hero-updated.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 26rem;
	display: flex;
	align-items: center;
}

.page-hero--contact {
	background-image:
		linear-gradient(110deg, rgba(5, 17, 31, 0.84) 0%, rgba(7, 24, 40, 0.68) 42%, rgba(7, 24, 40, 0.54) 100%),
		url("../images/brand/contact-hero-banner.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 26rem;
	display: flex;
	align-items: center;
}

.page-hero--press {
	background-image:
		linear-gradient(110deg, rgba(5, 17, 31, 0.82) 0%, rgba(7, 24, 40, 0.66) 42%, rgba(7, 24, 40, 0.54) 100%),
		url("../images/brand/press-hero-banner.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 26rem;
	display: flex;
	align-items: center;
}

.page-hero--careers {
	background-image:
		radial-gradient(circle at 18% 20%, rgba(250, 185, 20, 0.18) 0, rgba(250, 185, 20, 0) 24%),
		radial-gradient(circle at 84% 24%, rgba(24, 89, 167, 0.24) 0, rgba(24, 89, 167, 0) 22%),
		linear-gradient(120deg, rgba(7, 22, 38, 0.82) 0%, rgba(11, 34, 57, 0.72) 46%, rgba(16, 51, 84, 0.64) 100%),
		url("../images/brand/careers-hero-banner-updated.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 26rem;
	display: flex;
	align-items: center;
}

.page-hero--about::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(250, 185, 20, 0.28) 0, rgba(250, 185, 20, 0) 14%),
		linear-gradient(315deg, rgba(12, 67, 122, 0.36) 0, rgba(12, 67, 122, 0) 18%);
	pointer-events: none;
}

.page-hero--products::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(250, 185, 20, 0.22) 0, rgba(250, 185, 20, 0) 16%),
		linear-gradient(315deg, rgba(12, 67, 122, 0.3) 0, rgba(12, 67, 122, 0) 18%);
	pointer-events: none;
}

.page-hero--contact::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(250, 185, 20, 0.22) 0, rgba(250, 185, 20, 0) 16%),
		linear-gradient(315deg, rgba(12, 67, 122, 0.3) 0, rgba(12, 67, 122, 0) 18%);
	pointer-events: none;
}

.page-hero--press::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(250, 185, 20, 0.2) 0, rgba(250, 185, 20, 0) 16%),
		linear-gradient(315deg, rgba(12, 67, 122, 0.28) 0, rgba(12, 67, 122, 0) 18%);
	pointer-events: none;
}

.page-hero--careers::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(250, 185, 20, 0.14) 0, rgba(250, 185, 20, 0) 18%),
		linear-gradient(315deg, rgba(12, 67, 122, 0.3) 0, rgba(12, 67, 122, 0) 18%);
	pointer-events: none;
}

.page-hero h1 {
	font-size: clamp(2.2rem, 4vw, 4rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
	margin-bottom: 1rem;
	color: #fff;
}

.page-hero p {
	max-width: 760px;
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 0;
}

@media (max-width: 767.98px) {
	.page-hero--about {
		background-position: 56% center;
		min-height: 22rem;
	}

	.page-hero--products {
		background-position: 56% center;
		min-height: 22rem;
	}

	.page-hero--contact {
		background-position: 58% center;
		min-height: 22rem;
	}

	.page-hero--press {
		background-position: 54% center;
		min-height: 22rem;
	}

	.page-hero--careers {
		min-height: 22rem;
	}

	.section-banner-panel {
		min-height: 220px;
		padding: 1.6rem 1.25rem;
		background-position: 62% center;
	}

	.section-banner-panel--vision::before {
		background:
			linear-gradient(180deg, rgba(5, 16, 29, 0.84) 0%, rgba(5, 16, 29, 0.7) 100%);
	}

	.section-banner-panel--awards::before,
	.section-banner-panel--quality::before {
		background:
			linear-gradient(180deg, rgba(250, 252, 255, 0.94) 0%, rgba(246, 249, 252, 0.84) 100%);
	}

	.section-banner-panel--products-overview::before,
	.section-banner-panel--products-pcmo::before,
	.section-banner-panel--products-diesel::before,
	.section-banner-panel--products-gear::before,
	.section-banner-panel--products-specialty::before,
	.section-banner-panel--products-motorcycle::before,
	.section-banner-panel--products-industrial::before {
		background:
			linear-gradient(180deg, rgba(5, 16, 29, 0.84) 0%, rgba(5, 16, 29, 0.7) 100%);
	}
}

.section-subtle {
	background-color: #f7f9fc;
}

.content-section {
	padding: 5rem 0;
}

#who-we-are,
#what-we-do,
#vision,
#awards,
#quality,
#history {
	scroll-margin-top: var(--eng-anchor-offset);
}

.lead-copy {
	font-size: 1.125rem;
	color: #4c5d70;
}

.contact-panel {
	background: #fff;
	border: 1px solid #e6ebf1;
	border-radius: 1rem;
	padding: 2rem;
	height: 100%;
	box-shadow: var(--eng-card-shadow);
	display: flex;
	flex-direction: column;
}

.contact-panel h4 {
	margin-bottom: 0.85rem;
}

.section-banner-panel--careers-intro {
	background-image: url("../images/brand/careers-intro-banner-updated.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.section-banner-panel--careers-intro::before {
	background:
		linear-gradient(90deg, rgba(8, 23, 39, 0.78) 0%, rgba(8, 23, 39, 0.42) 60%, rgba(8, 23, 39, 0.24) 100%);
}

.section-banner-panel--careers-intro .heading-block span,
.section-banner-panel--careers-intro .heading-block h2,
.section-banner-panel--careers-intro .heading-block .eyebrow,
.section-banner-panel--careers-intro .section-heading-icon i {
	color: #fff;
}

.section-nav-grid.careers-section-nav-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1100px;
	margin: 0 auto;
}

.section-nav-grid.careers-section-nav-grid .section-nav-card {
	flex: 0 1 250px;
}

.careers-value-grid,
.careers-role-grid {
	margin-top: 2rem;
}

.careers-value-card,
.careers-role-card,
.careers-principle-card {
	padding: 1.9rem 1.7rem;
}

.careers-story-panel {
	padding: 2.25rem;
}

.careers-story-panel p:last-child {
	margin-bottom: 0;
}

.careers-form-intro {
	background:
		linear-gradient(180deg, #0f2740 0%, #15324f 58%, #1b4267 100%);
}

.careers-file-input {
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
}

.careers-file-help {
	margin-top: 0.55rem;
	font-size: 0.86rem;
	color: #728396;
}

.careers-form-status {
	margin-top: 1rem;
	padding: 1rem 1.1rem;
	border-radius: 0.95rem;
	background: #eef6ee;
	border: 1px solid #cfe2cf;
	color: #244e24;
	font-weight: 600;
}

.careers-note {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.98rem;
	max-width: 760px;
}

@media (max-width: 991.98px) {
	.section-nav-grid.careers-section-nav-grid .section-nav-card {
		flex-basis: 220px;
	}
}

@media (max-width: 575.98px) {
	.section-nav-grid.careers-section-nav-grid .section-nav-card {
		flex-basis: min(100%, 320px);
	}

	.careers-value-card,
	.careers-role-card,
	.careers-principle-card,
	.careers-story-panel {
		padding: 1.6rem 1.3rem;
	}
}

@media (max-width: 991.98px) {
	.technology-card {
		padding: 1.75rem 1.5rem;
	}
}

.about-video-panel {
	margin: 0 auto 2.25rem;
}

.about-video-player {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 1.1rem;
	background: #08131f;
	box-shadow: 0 16px 34px rgba(9, 22, 35, 0.12);
}

.product-category-card {
	padding-top: 1.25rem;
}

.product-family-nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.product-family-section {
	scroll-margin-top: var(--eng-anchor-offset);
}

.product-category-image {
	display: block;
	width: 100%;
	height: 260px;
	object-fit: contain;
	object-position: center;
	margin: 0 auto 1.25rem;
	padding: 1rem;
	border-radius: 1rem;
	background: linear-gradient(180deg, #f8fafc 0%, #edf3f8 100%);
}

.sku-card {
	padding-top: 1.25rem;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sku-card:hover,
.sku-card:focus-visible {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px rgba(15, 39, 64, 0.12);
	border-color: rgba(192, 50, 33, 0.22);
}

.sku-card:focus-visible {
	outline: 3px solid rgba(192, 50, 33, 0.18);
	outline-offset: 4px;
}

.sku-image {
	display: block;
	width: 100%;
	height: 270px;
	object-fit: contain;
	object-position: center;
	margin: 0 auto 1.1rem;
	padding: 0.75rem;
	border-radius: 1rem;
	background: linear-gradient(180deg, #f8fafc 0%, #edf3f8 100%);
}

.sku-image-shell {
	position: relative;
	margin-bottom: 1.1rem;
}

.sku-image-shell .sku-image {
	margin-bottom: 0;
}

.product-data-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 1rem;
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--eng-primary);
}

.product-data-link::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--eng-secondary);
}

.product-data-link:hover {
	color: var(--eng-primary-dark);
}

.sku-card .product-data-link {
	margin-top: auto;
	padding-top: 1rem;
	order: 9;
}

.product-size-line {
	order: 10;
	margin-top: auto;
	padding-top: 0.9rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.product-approval-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.28rem 0.68rem;
	border-radius: 999px;
	background: rgba(192, 50, 33, 0.09);
	border: 1px solid rgba(192, 50, 33, 0.18);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--eng-primary);
}

.product-approval-badge--card-pill {
	width: fit-content;
	max-width: 100%;
	margin: -0.1rem auto 0.85rem;
	box-shadow: 0 8px 18px rgba(15, 39, 64, 0.06);
}

.product-approval-badge--modal-pill {
	width: fit-content;
	max-width: 100%;
	margin: -0.15rem 0 1rem;
	box-shadow: 0 10px 24px rgba(15, 39, 64, 0.06);
}

.product-size-label {
	flex-basis: 100%;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6b7b8b;
}

body.product-modal-open {
	overflow: hidden;
}

.product-detail-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba(7, 19, 30, 0.74);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.product-detail-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.product-detail-dialog {
	position: relative;
	width: min(100%, 980px);
	max-height: min(90vh, 860px);
	overflow: auto;
	border-radius: 1.75rem;
	background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
	box-shadow: 0 32px 90px rgba(8, 22, 37, 0.3);
}

.product-detail-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 39, 64, 0.08);
	color: var(--eng-heading);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
}

.product-detail-layout {
	display: grid;
	grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
}

.product-detail-media {
	padding: 2rem;
	background: linear-gradient(180deg, #f3f7fa 0%, #e8eff5 100%);
	border-right: 1px solid rgba(15, 39, 64, 0.08);
}

.product-detail-media-shell {
	position: relative;
	padding: 1.25rem;
	border-radius: 1.5rem;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(15, 39, 64, 0.06);
}

.product-detail-image {
	display: block;
	width: 100%;
	height: 260px;
	object-fit: contain;
	object-position: center;
}

.product-detail-family {
	margin-top: 1.25rem;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eng-secondary);
}

.product-detail-datasheet {
	margin-top: 1rem;
}

.product-detail-content {
	padding: 2.4rem 2.2rem 2.2rem;
}

.product-detail-content h2 {
	margin-bottom: 0.75rem;
	font-size: clamp(1.75rem, 2vw, 2.3rem);
}

.product-detail-overview {
	margin-bottom: 1.5rem;
	font-size: 1rem;
	line-height: 1.75;
	color: #4e5f70;
}

.product-detail-sizes {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.product-size-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(29, 95, 174, 0.08);
	border: 1px solid rgba(29, 95, 174, 0.12);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1;
	color: var(--eng-secondary);
}

.product-size-chip--card {
	padding: 0.34rem 0.62rem;
	font-size: 0.72rem;
	background: rgba(15, 39, 64, 0.05);
	border-color: rgba(15, 39, 64, 0.09);
	color: #526375;
}

.product-detail-section + .product-detail-section {
	margin-top: 1.5rem;
}

.product-detail-section-label {
	margin-bottom: 0.55rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eng-secondary);
}

.product-detail-benefits {
	margin: 0;
	padding-left: 1.15rem;
	color: #4e5f70;
}

.product-detail-benefits li + li {
	margin-top: 0.55rem;
}

.product-sku-title {
	margin-top: 1.25rem;
	margin-bottom: 0.7rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eng-secondary);
}

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

.product-sku-list li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.45rem;
	color: #516376;
}

.product-sku-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--eng-primary);
}

.contact-form-shell {
	border: 1px solid #dfe6ee;
	border-radius: 1.5rem;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 22px 54px rgba(16, 24, 32, 0.08);
}

.contact-form-intro {
	height: 100%;
	padding: 2.5rem;
	background: linear-gradient(180deg, #0f2740 0%, #183a5e 100%);
	color: #fff;
}

.contact-form-intro h2 {
	color: #fff;
	margin-bottom: 1rem;
}

.contact-form-intro p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.02rem;
}

.contact-form-note {
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form-note strong {
	display: block;
	margin-bottom: 0.5rem;
	color: #fff;
}

.contact-form-panel {
	padding: 2.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.contact-form-group + .contact-form-group {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #edf1f5;
}

.contact-form-group-title {
	margin-bottom: 1.25rem;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eng-secondary);
}

.contact-form-panel .form-label {
	margin-bottom: 0.55rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #56687a;
}

.contact-form-panel .form-control,
.contact-form-panel .form-select {
	min-height: 56px;
	padding: 0.95rem 1rem;
	border: 1px solid #d9e2eb;
	border-radius: 0.95rem;
	background-color: #fff;
	box-shadow: none;
}

.contact-form-panel textarea.form-control {
	min-height: 180px;
	resize: vertical;
}

.contact-form-panel .form-control::placeholder {
	color: #95a3b2;
}

.contact-form-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin-top: 2rem;
	padding-top: 1.75rem;
	border-top: 1px solid #edf1f5;
}

.contact-form-actions p {
	max-width: 540px;
	color: #667788;
}

.spec-list li {
	margin-bottom: 0.6rem;
}

.section-nav-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1rem;
}

.section-nav-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 76px;
	padding: 1rem;
	border: 1px solid #e6ebf1;
	border-radius: 1rem;
	background: #fff;
	color: var(--eng-dark);
	font-weight: 600;
	text-align: center;
	box-shadow: var(--eng-card-shadow-soft);
}

.section-nav-card:hover {
	color: var(--eng-secondary);
	border-color: rgba(197, 139, 42, 0.45);
	transform: translateY(-2px);
}

.section-nav-card span {
	display: block;
}

.about-section-nav-header {
	margin-bottom: 1.15rem;
}

.about-section-nav-header h3 {
	margin-bottom: 0;
	font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.about-section-nav-grid {
	gap: 0.9rem;
}

.about-section-nav-card {
	position: relative;
	min-height: 68px;
	border-radius: 999px;
	background: #f8fafc;
	border-color: var(--eng-primary);
	box-shadow: none;
	font-weight: 700;
	padding: 0.9rem 1.15rem;
}

.about-section-nav-card::after {
	content: "";
	position: absolute;
	left: 1.2rem;
	right: 1.2rem;
	bottom: 0.65rem;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(29, 95, 174, 0.65), rgba(197, 139, 42, 0.75));
	opacity: 0;
	transform: scaleX(0.35);
	transform-origin: center;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-section-nav-card:hover::after,
.about-section-nav-card:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.section-heading-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.9rem;
}

.section-heading-icon i {
	display: inline-block;
	color: var(--eng-secondary);
	font-size: 1.6rem;
	line-height: 1;
}

.stats-grid .stat-card {
	text-align: center;
}

.stat-value {
	font-size: clamp(1.8rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--eng-secondary);
	margin-bottom: 0.85rem;
}

.history-timeline {
	position: relative;
	display: grid;
	gap: 1.25rem;
}

.feature-bullet-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	height: 100%;
}

.feature-bullet-item i {
	flex: 0 0 auto;
	margin-top: 0.15rem;
	color: var(--eng-dark);
}

.feature-bullet-item h4 {
	margin-bottom: 0.35rem;
}

.award-image {
	display: block;
	width: 100%;
	max-width: 220px;
	height: auto;
	margin: 0 auto 1.25rem;
	border-radius: 0.85rem;
	box-shadow: 0 16px 36px rgba(16, 24, 32, 0.12);
}

.press-shot-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.press-shot-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.press-shot-link {
	display: block;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(16, 24, 32, 0.08);
	background: #dbe5ef;
}

.press-shot {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	border: 0;
	box-shadow: none;
}

.timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 1.5rem;
	align-items: start;
	padding-left: 2.35rem;
}

.timeline-item::before {
	content: "";
	position: absolute;
	left: 0.62rem;
	top: 0;
	bottom: -1.25rem;
	width: 2px;
	background: linear-gradient(180deg, rgba(29, 95, 174, 0.2) 0%, rgba(29, 95, 174, 0.6) 45%, rgba(197, 139, 42, 0.35) 100%);
}

.timeline-item::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35rem;
	width: 1.35rem;
	height: 1.35rem;
	border: 4px solid #fff;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--eng-primary) 0%, var(--eng-secondary) 100%);
	box-shadow: 0 0 0 1px rgba(29, 95, 174, 0.12), 0 10px 24px rgba(16, 24, 32, 0.16);
}

.timeline-item:last-child::before {
	bottom: 0.35rem;
}

.timeline-year {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.35rem;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	background: rgba(29, 95, 174, 0.08);
	border: 1px solid rgba(29, 95, 174, 0.12);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eng-secondary);
}

.timeline-content {
	padding: 1.25rem 1.35rem;
	border: 1px solid #e6ebf1;
	border-radius: 1rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 12px 30px rgba(16, 24, 32, 0.05);
}

.timeline-content--editorial {
	display: grid;
	grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	overflow: hidden;
	padding: 0;
}

.timeline-content--editorial-reverse {
	grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
}

.timeline-thumb {
	background: #e7eef4;
}

.timeline-copy {
	min-width: 0;
	padding: 1.35rem 1.45rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.timeline-content--editorial-reverse .timeline-thumb {
	order: 2;
}

.timeline-content--editorial-reverse .timeline-copy {
	order: 1;
}

.timeline-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 210px;
	object-fit: cover;
	background: #eef3f7;
}

.timeline-content h4 {
	margin-bottom: 0.45rem;
}

@media (max-width: 767.98px) {
	#header.full-header #logo img {
		height: 74px;
	}

	#header.full-header .header-row {
		min-height: 96px;
		gap: 1rem;
	}

	.page-hero {
		padding: 4rem 0 3rem;
	}

	.contact-form-intro,
	.contact-form-panel {
		padding: 2rem 1.5rem;
	}

	.contact-form-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	:root {
		--eng-anchor-offset: 120px;
	}

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

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

	.product-detail-modal {
		padding: 1rem;
	}

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

	.product-detail-media {
		border-right: 0;
		border-bottom: 1px solid rgba(15, 39, 64, 0.08);
		padding: 1.5rem 1.5rem 1.25rem;
	}

	.product-detail-content {
		padding: 1.75rem 1.5rem 1.5rem;
	}

	.product-detail-image {
		height: 220px;
	}

	.timeline-item {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding-left: 2rem;
	}

	.timeline-item::before {
		left: 0.55rem;
	}

	.timeline-item::after {
		width: 1.2rem;
		height: 1.2rem;
		top: 0.5rem;
	}

	.timeline-year {
		justify-self: start;
	}

	.timeline-content--editorial,
	.timeline-content--editorial-reverse {
		grid-template-columns: 1fr;
		gap: 0.95rem;
		padding: 0;
	}

	.timeline-thumb {
		order: 0;
	}

	.timeline-copy {
		padding: 0 1.15rem 1.15rem;
	}

	.timeline-content--editorial-reverse .timeline-thumb,
	.timeline-content--editorial-reverse .timeline-copy {
		order: 0;
	}

	.timeline-image {
		max-width: 100%;
		min-height: 220px;
	}

	.press-shot-grid {
		grid-template-columns: 1fr;
	}

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

}
