:root {
	--font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--font-nav: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--font-button: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--heading-weight: 750;
	--body-weight: 400;
	--base-font-size: 16px;
	--heading-letter-spacing: 0;
	--nav-font-size: 12.5px;
	--button-font-size: 12.5px;
	--color-deep-green: #0B3D2E;
	--color-emerald: #0F766E;
	--color-gold: #D4AF37;
	--color-sand: #F7F2E8;
	--color-text: #1F2933;
	--color-muted: #6B7280;
	--color-border: #E5E7EB;
	--color-white: #FFFFFF;
	--color-navy: #0B3D2E;
	--color-blue: #0F766E;
	--color-light: #F7F2E8;
	--color-green: #0F766E;
	--shadow-soft: 0 16px 34px rgba(11, 61, 46, 0.08);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--base-font-size);
	font-weight: var(--body-weight);
	line-height: 1.68;
	text-rendering: optimizeLegibility;
}

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

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

a:hover,
a:focus {
	color: var(--color-emerald);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: var(--heading-weight);
	letter-spacing: var(--heading-letter-spacing);
	line-height: 1.18;
}

.container {
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

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

.skip-link:focus {
	z-index: 1000;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--color-white);
	color: var(--color-deep-green);
	border: 2px solid var(--color-emerald);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 24px;
	border: 1px solid var(--color-emerald);
	border-radius: 0;
	background: var(--color-emerald);
	color: var(--color-white);
	font-family: var(--font-button);
	font-size: var(--button-font-size);
	font-weight: 700;
	letter-spacing: 0.055em;
	line-height: 1.15;
	text-transform: uppercase;
}

.button:hover,
.button:focus {
	background: var(--color-deep-green);
	border-color: var(--color-deep-green);
	color: var(--color-white);
}

.button--outline {
	background: transparent;
	color: var(--color-deep-green);
	border-color: rgba(11, 61, 46, 0.28);
}

.button--outline:hover,
.button--outline:focus {
	background: var(--color-deep-green);
	border-color: var(--color-deep-green);
	color: var(--color-white);
}

.button--light {
	background: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-deep-green);
}

.text-link {
	display: inline-flex;
	align-items: center;
	color: var(--color-emerald);
	font-weight: 700;
}

.text-link--green {
	color: var(--color-emerald);
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 70px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	color: var(--color-deep-green);
	min-width: max-content;
}

.site-brand__text {
	display: inline-flex;
	font-family: var(--font-heading);
	font-size: 25px;
	font-weight: var(--heading-weight);
	letter-spacing: var(--heading-letter-spacing);
	line-height: 1;
}

.primary-nav {
	margin-left: auto;
}

.primary-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu a {
	color: var(--color-text);
	font-family: var(--font-nav);
	font-size: var(--nav-font-size);
	font-weight: 700;
	letter-spacing: 0.045em;
	line-height: 1.2;
	text-transform: uppercase;
}

.primary-menu__mobile-inquiry {
	display: none;
}

.site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 11px 20px;
	border-radius: 0;
	background: var(--color-emerald);
	color: var(--color-white);
	font-family: var(--font-button);
	font-size: var(--button-font-size);
	font-weight: 700;
	letter-spacing: 0.055em;
	line-height: 1.15;
	text-transform: uppercase;
}

.site-header__cta:hover,
.site-header__cta:focus {
	background: var(--color-deep-green);
	color: var(--color-white);
}

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

.nav-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--color-deep-green);
}

.hero,
.page-hero,
.product-hero {
	background: var(--color-sand);
}

.hero--live {
	position: relative;
	min-height: 640px;
	padding: 0;
	background:
		linear-gradient(90deg, rgba(247, 242, 232, 1) 0%, rgba(247, 242, 232, 0.98) 35%, rgba(247, 242, 232, 0.68) 52%, rgba(247, 242, 232, 0.16) 68%, rgba(247, 242, 232, 0) 100%),
		var(--hero-image),
		var(--color-sand);
	background-position: center, 82% center, center;
	background-size: cover, cover, cover;
	background-repeat: no-repeat;
}

.hero--live::before,
.hero--live::after {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
}

.hero--live::before {
	z-index: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 42%, rgba(11, 61, 46, 0.06) 70%, rgba(11, 61, 46, 0.16) 100%);
}

.hero--live::after {
	z-index: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%),
		radial-gradient(circle at 82% 48%, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0) 34%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 640px;
}

.hero__content {
	max-width: 500px;
}

.hero__grid,
.product-hero__grid,
.split-layout,
.factory-preview,
.contact-layout,
.product-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
	gap: 48px;
	align-items: center;
}

.hero__content h1,
.page-hero h1,
.product-summary h1 {
	margin: 0;
	color: var(--color-text);
	font-size: clamp(37px, 4vw, 46px);
	line-height: 1.12;
	max-width: 500px;
}

.hero__content p,
.page-hero p,
.product-summary p {
	max-width: 480px;
	color: var(--color-text);
	font-size: 17px;
	line-height: 1.78;
}

.eyebrow {
	margin: 0 0 16px;
	color: var(--color-emerald);
	font-family: var(--font-nav);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.25;
	text-transform: uppercase;
}

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

.hero__visual {
	margin: 0;
	border-radius: 18px;
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.hero__visual img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.section {
	padding: 72px 0;
}

.section--muted,
.section--sand {
	background: var(--color-sand);
}

.section__heading {
	max-width: 760px;
	margin-bottom: 30px;
}

.section__heading--center {
	margin-inline: auto;
	text-align: center;
}

.section__heading h2,
.section-split h2,
.oem-strip h2,
.final-inquiry-cta h2,
.content-panel h2,
.content-body h2,
.inquiry-panel h2,
.form-panel h2 {
	margin: 0 0 12px;
	color: var(--color-deep-green);
	font-size: clamp(31px, 3vw, 36px);
	line-height: 1.16;
}

.section__heading p,
.section-split p {
	color: var(--color-muted);
	font-size: 16.5px;
	line-height: 1.75;
}

.section-split {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
	gap: 34px;
	align-items: center;
}

.section-split--top {
	align-items: start;
	margin-bottom: 30px;
}

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

.product-categories-section {
	padding: 52px 0 58px;
	background: #EEF4F6;
}

.product-categories-section .section__heading {
	margin-bottom: 30px;
}

.product-categories-section .category-row {
	gap: 42px;
}

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

.card-grid--categories {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.live-category-card,
.simple-card,
.info-card,
.project-card,
.product-card,
.content-panel,
.form-panel,
.inquiry-panel,
.empty-state {
	border: 1px solid var(--color-border);
	border-radius: 14px;
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.product-focus-intro {
	padding: 70px 0;
	background: #EEF4F6;
}

.product-focus-block {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
	gap: 32px;
	align-items: stretch;
}

.product-focus-card {
	display: grid;
	align-content: start;
	min-height: 420px;
	padding: 42px;
	border: 1px solid rgba(229, 231, 235, 0.86);
	border-radius: 10px;
	background: var(--color-white);
	box-shadow: 0 12px 28px rgba(31, 41, 51, 0.06);
}

.product-focus-card h2 {
	margin: 0 0 18px;
	color: var(--color-text);
	font-size: clamp(32px, 3vw, 38px);
	line-height: 1.14;
}

.product-focus-card > p:not(.eyebrow) {
	margin: 0;
	color: var(--color-muted);
	font-size: 16.5px;
	line-height: 1.76;
}

.product-focus-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 18px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.product-focus-list li {
	position: relative;
	padding-left: 26px;
	color: var(--color-deep-green);
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.product-focus-list li::before {
	position: absolute;
	top: 2px;
	left: 0;
	display: grid;
	place-items: center;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: rgba(15, 118, 110, 0.12);
	content: "";
}

.product-focus-list li::after {
	position: absolute;
	top: 6px;
	left: 6px;
	width: 4px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	color: var(--color-emerald);
	content: "";
	transform: rotate(45deg);
}

.product-focus-image {
	margin: 0;
	min-height: 420px;
	border-radius: 10px;
	background: var(--color-white);
	overflow: hidden;
}

.product-focus-image img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.live-category-card {
	display: grid;
	gap: 12px;
	min-height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--color-text);
}

.live-category-card span {
	width: fit-content;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: var(--color-emerald);
	font-family: var(--font-nav);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.live-category-card h3,
.simple-card h3,
.project-card h3,
.process-card h3,
.product-card h3,
.product-card h2 {
	margin: 0 0 8px;
	color: var(--color-deep-green);
	font-size: 20px;
	line-height: 1.28;
}

.live-category-card p,
.simple-card p,
.project-card p,
.process-card p,
.product-card p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.66;
}

.oem-strip {
	position: relative;
	padding: 84px 0 88px;
	background:
		linear-gradient(rgba(11, 61, 46, 0.82), rgba(11, 61, 46, 0.82)),
		var(--oem-bg-image),
		linear-gradient(135deg, #0B3D2E, #06261D);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--color-white);
	text-align: center;
}

.oem-strip__inner {
	display: flex;
	justify-content: center;
}

.oem-strip__content {
	max-width: 780px;
	margin-inline: auto;
}

.oem-strip h2 {
	margin-bottom: 18px;
	color: var(--color-white);
	font-size: clamp(34px, 4vw, 42px);
	line-height: 1.14;
}

.oem-strip .eyebrow {
	color: #42D6C9;
}

.oem-strip p {
	max-width: 760px;
	margin-inline: auto;
	color: rgba(255, 255, 255, 0.9);
	font-size: 16.5px;
	line-height: 1.76;
}

.oem-strip .button {
	margin-top: 28px;
	background: var(--color-emerald);
	border-color: var(--color-emerald);
	color: var(--color-white);
}

.oem-strip__note {
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.86) !important;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.keyword-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: -4px 0 28px;
	padding: 0;
	list-style: none;
}

.keyword-list li {
	display: grid;
	gap: 10px;
	align-content: start;
	min-height: 132px;
	padding: 16px;
	border: 1px solid rgba(229, 231, 235, 0.78);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 22px rgba(11, 61, 46, 0.05);
	color: var(--color-deep-green);
	font-family: var(--font-heading);
	font-weight: 700;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.keyword-list li:hover,
.keyword-list li:focus-within {
	transform: translateY(-2px);
	border-color: rgba(15, 118, 110, 0.28);
	box-shadow: 0 14px 28px rgba(11, 61, 46, 0.08);
}

.keyword-list__icon {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(15, 118, 110, 0.14), rgba(15, 118, 110, 0.07));
	box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.12);
	color: #0F766E;
}

.keyword-list__icon svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.keyword-list li > span:last-child {
	font-size: 15px;
	line-height: 1.35;
}

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

.why-value-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	gap: 44px;
	align-items: center;
}

.why-value-intro {
	padding: 34px;
	border: 1px solid rgba(229, 231, 235, 0.86);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(247, 242, 232, 0.48), rgba(255, 255, 255, 0.95));
}

.why-value-intro .section__heading {
	margin-bottom: 26px;
}

.why-value-intro .keyword-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.why-value-list {
	display: grid;
	gap: 18px;
}

.why-value-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	padding: 26px 28px;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-left: 4px solid var(--color-gold);
	border-radius: 12px;
	background: var(--color-white);
	box-shadow: 0 14px 30px rgba(11, 31, 51, 0.045);
}

.why-value-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 32px;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.1);
	color: var(--color-emerald);
	font-family: var(--font-nav);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.why-value-card h3 {
	margin: 0 0 8px;
	color: var(--color-deep-green);
	font-size: 21px;
	line-height: 1.24;
}

.why-value-card p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.68;
}

.about-hero {
	position: relative;
	min-height: 620px;
	padding: 0;
	background:
		linear-gradient(90deg, rgba(247, 242, 232, 1) 0%, rgba(247, 242, 232, 0.98) 38%, rgba(247, 242, 232, 0.72) 56%, rgba(247, 242, 232, 0.2) 76%, rgba(247, 242, 232, 0) 100%),
		var(--about-hero-image),
		var(--color-sand);
	background-position: center, 78% center, center;
	background-size: cover, cover, cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.about-hero::before,
.about-hero::after {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
}

.about-hero::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0) 100%);
}

.about-hero::after {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0) 44%, rgba(11, 61, 46, 0.05) 72%, rgba(11, 61, 46, 0.14) 100%),
		radial-gradient(circle at 82% 46%, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0) 34%);
}

.about-hero__grid {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 620px;
}

.about-hero__content {
	max-width: 660px;
}

.about-hero__content h1 {
	margin: 0;
	color: var(--color-text);
	font-size: clamp(38px, 4.8vw, 58px);
	line-height: 1.08;
}

.about-hero__content p {
	max-width: 620px;
	color: var(--color-text);
	font-size: 17px;
	line-height: 1.78;
}

.about-hero__content .button {
	margin-top: 16px;
}

.about-hero__panel {
	display: grid;
	gap: 14px;
	padding: 34px;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 18px 38px rgba(11, 61, 46, 0.08);
}

.about-hero__panel span {
	position: relative;
	padding: 15px 16px 15px 42px;
	border: 1px solid rgba(15, 118, 110, 0.14);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--color-deep-green);
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 750;
	line-height: 1.35;
}

.about-hero__panel span::before {
	position: absolute;
	top: 18px;
	left: 18px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-gold);
	content: "";
}

.about-copy-panel {
	padding: 34px;
	border-radius: 12px;
}

.about-copy-panel > p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 16.5px;
	line-height: 1.78;
}

.about-facts-card {
	padding: 34px;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 12px;
	background: var(--color-white);
	box-shadow: 0 14px 30px rgba(11, 31, 51, 0.055);
}

.about-facts-card ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-facts-card li {
	display: grid;
	gap: 5px;
	padding: 18px;
	border: 1px solid rgba(229, 231, 235, 0.88);
	border-radius: 10px;
	background: rgba(247, 242, 232, 0.45);
}

.about-facts-card strong {
	color: var(--color-deep-green);
	font-family: var(--font-heading);
	font-size: 24px;
	line-height: 1.15;
}

.about-facts-card span {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.45;
}

.about-market-layout {
	display: grid;
	grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.25fr);
	gap: 42px;
	align-items: center;
}

.about-market-image {
	margin: 0;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 14px;
	background: var(--color-white);
	box-shadow: 0 16px 34px rgba(11, 31, 51, 0.07);
	overflow: hidden;
}

.about-market-image img {
	width: 100%;
	height: 100%;
	min-height: 500px;
	max-height: 600px;
	object-fit: cover;
}

.about-market-content .section__heading {
	max-width: 760px;
	margin-bottom: 26px;
}

.about-market-cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.about-market-cards .about-icon-card {
	display: block;
	padding: 20px;
}

.about-market-cards .about-icon-card__icon {
	width: 44px;
	height: 44px;
	margin-bottom: 16px;
}

.about-icon-grid,
.about-project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.about-icon-grid--four,
.about-scene-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.about-icon-card {
	padding: 24px;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 12px;
	background: var(--color-white);
	box-shadow: 0 12px 28px rgba(11, 31, 51, 0.045);
}

.about-icon-card__icon {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(15, 118, 110, 0.13), rgba(15, 118, 110, 0.06));
	box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.12);
	color: var(--color-emerald);
}

.about-icon-card__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.about-icon-card h3,
.about-scene-card h3 {
	margin: 0 0 9px;
	color: var(--color-deep-green);
	font-size: 20px;
	line-height: 1.26;
}

.about-icon-card p,
.about-scene-card p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.66;
}

.about-image-panel,
.about-scene-card {
	margin: 0;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 12px;
	background: var(--color-white);
	box-shadow: 0 14px 30px rgba(11, 31, 51, 0.055);
	overflow: hidden;
}

.about-image-panel img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.about-scenes-section .section__heading {
	margin-bottom: 34px;
}

.about-scene-card img {
	width: 100%;
	aspect-ratio: 1.08 / 1;
	object-fit: cover;
	background: var(--color-sand);
}

.about-scene-card div {
	padding: 20px;
}

.about-final-cta {
	padding-top: 0;
}

.about-final-cta__inner {
	display: grid;
	justify-items: center;
	max-width: 900px;
	margin-inline: auto;
	padding: 58px 42px;
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(11, 61, 46, 0.96), rgba(15, 118, 110, 0.9));
	color: var(--color-white);
	text-align: center;
}

.about-final-cta__inner .eyebrow {
	color: #42D6C9;
}

.about-final-cta__inner h2 {
	max-width: 760px;
	margin: 0 0 14px;
	color: var(--color-white);
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.12;
}

.about-final-cta__inner p:not(.eyebrow) {
	max-width: 700px;
	margin: 0 auto 26px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 16.5px;
	line-height: 1.74;
}

.about-final-cta__inner .button {
	border-color: var(--color-emerald);
	background: var(--color-emerald);
	color: var(--color-white);
}

.simple-card {
	padding: 26px;
}

.info-card {
	padding: 24px;
}

.info-card h3 {
	margin: 0 0 8px;
	color: var(--color-deep-green);
	font-size: 20px;
	line-height: 1.28;
}

.info-card p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.66;
}

.media-panel,
.factory-preview figure,
.product-gallery {
	margin: 0;
	border: 1px solid var(--color-border);
	border-radius: 14px;
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.media-panel img,
.factory-preview img,
.product-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.project-card {
	overflow: hidden;
	border-color: rgba(229, 231, 235, 0.86);
	border-radius: 12px;
	box-shadow: 0 14px 30px rgba(11, 31, 51, 0.06);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.project-card:hover,
.project-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(15, 118, 110, 0.24);
	box-shadow: 0 18px 36px rgba(11, 31, 51, 0.09);
}

.project-card__image {
	position: relative;
	background: #EEF4F6;
	overflow: hidden;
}

.project-card__image img {
	width: 100%;
	aspect-ratio: 1.2 / 1;
	object-fit: cover;
	transition: transform 220ms ease;
}

.project-card:hover .project-card__image img,
.project-card:focus-within .project-card__image img {
	transform: scale(1.025);
}

.project-card__content {
	padding: 24px 24px 26px;
	background: var(--color-white);
}

.project-card__content h3 {
	margin-bottom: 10px;
	color: var(--color-text);
	font-size: 21px;
	line-height: 1.24;
}

.project-card__content p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.66;
}

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

.process-card {
	position: relative;
	padding: 20px 20px 22px;
	border: 1px solid rgba(229, 231, 235, 0.86);
	border-top: 5px solid var(--color-gold);
	border-radius: 12px;
	background: var(--color-white);
	box-shadow: 0 14px 30px rgba(11, 31, 51, 0.05);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.process-card:hover,
.process-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(15, 118, 110, 0.24);
	box-shadow: 0 18px 36px rgba(11, 31, 51, 0.08);
}

.process-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.process-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(212, 175, 55, 0.14);
	color: var(--color-emerald);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.055em;
}

.process-card__icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 11px;
	background: linear-gradient(180deg, rgba(15, 118, 110, 0.12), rgba(15, 118, 110, 0.06));
	box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.12);
	color: var(--color-emerald);
}

.process-card__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.final-cta-section {
	position: relative;
	padding: 82px 0 86px;
	background:
		linear-gradient(90deg, rgba(11, 61, 46, 0.94) 0%, rgba(11, 61, 46, 0.88) 48%, rgba(11, 61, 46, 0.72) 100%),
		var(--final-cta-bg-image),
		linear-gradient(135deg, #0B3D2E 0%, #0F766E 100%);
	background-position: center;
	background-size: cover;
	color: var(--color-white);
	overflow: hidden;
}

.final-inquiry-cta {
	display: grid;
	justify-items: center;
	gap: 28px;
	max-width: 860px;
	text-align: center;
	color: var(--color-white);
}

.final-inquiry-cta .eyebrow {
	color: #42D6C9;
}

.final-inquiry-cta .button {
	border-color: var(--color-emerald);
	background: var(--color-emerald);
	color: var(--color-white);
}

.final-inquiry-cta h2 {
	max-width: 820px;
	color: var(--color-white);
	font-size: clamp(34px, 4.5vw, 46px);
	line-height: 1.12;
}

.final-inquiry-cta p {
	max-width: 740px;
	margin-inline: auto;
	color: rgba(255, 255, 255, 0.88);
	font-size: 16.5px;
	line-height: 1.74;
}

.final-inquiry-cta__meta {
	margin-bottom: 0;
	color: rgba(212, 175, 55, 0.95) !important;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.055em;
}

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

.check-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
}

.check-list li::before {
	position: absolute;
	top: 2px;
	left: 0;
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--color-emerald);
}

.check-list li::after {
	position: absolute;
	top: 6px;
	left: 6px;
	content: "";
	width: 5px;
	height: 9px;
	border: solid var(--color-white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.product-card {
	overflow: hidden;
}

.product-card__image {
	display: block;
	background: var(--color-sand);
}

.product-card__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.product-card__body {
	padding: 20px;
}

.product-card__meta {
	min-height: 20px;
	margin: 0 0 8px;
	color: var(--color-muted);
	font-family: var(--font-nav);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.35;
}

.product-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.product-archive-hero {
	padding: 86px 0;
	background:
		linear-gradient(90deg, rgba(247, 242, 232, 1) 0%, rgba(247, 242, 232, 0.96) 58%, rgba(247, 242, 232, 0.78) 100%),
		linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(212, 175, 55, 0.1));
}

.product-archive-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
	gap: 50px;
	align-items: center;
}

.product-archive-hero__content {
	max-width: 700px;
}

.product-archive-hero__content h1 {
	margin: 0;
	color: var(--color-text);
	font-size: clamp(38px, 4.8vw, 58px);
	line-height: 1.08;
}

.product-archive-hero__content p {
	max-width: 630px;
	color: var(--color-text);
	font-size: 17px;
	line-height: 1.78;
}

.product-archive-hero__content .button {
	margin-top: 16px;
}

.product-archive-visual {
	position: relative;
	padding: 24px;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 18px 38px rgba(11, 61, 46, 0.08);
	overflow: hidden;
}

.product-archive-visual::before {
	position: absolute;
	inset: auto -40px -52px auto;
	width: 180px;
	height: 180px;
	border: 1px solid rgba(212, 175, 55, 0.24);
	border-radius: 30px;
	content: "";
	transform: rotate(45deg);
}

.product-archive-visual__main {
	position: relative;
	border-radius: 12px;
	background: var(--color-sand);
	overflow: hidden;
}

.product-archive-visual__main img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.product-archive-visual__points {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}

.product-archive-visual__points span {
	padding: 11px 12px;
	border: 1px solid rgba(15, 118, 110, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--color-deep-green);
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.3;
}

.product-category-cards,
.product-guidance-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.product-category-card,
.product-guidance-card {
	padding: 24px;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 12px;
	background: var(--color-white);
	box-shadow: 0 12px 28px rgba(11, 31, 51, 0.045);
}

.product-category-card span,
.product-guidance-card span {
	display: inline-flex;
	margin-bottom: 18px;
	color: var(--color-emerald);
	font-family: var(--font-nav);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.product-category-card h3,
.product-guidance-card h3 {
	margin: 0 0 9px;
	color: var(--color-deep-green);
	font-size: 20px;
	line-height: 1.26;
}

.product-category-card p,
.product-guidance-card p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.66;
}

.product-listing-section .section__heading {
	margin-bottom: 24px;
}

.product-filter-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.product-filter-links a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 18px;
	border: 1px solid rgba(15, 118, 110, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--color-deep-green);
	font-family: var(--font-nav);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.product-filter-links a:hover,
.product-filter-links a:focus {
	border-color: rgba(15, 118, 110, 0.42);
	background: var(--color-white);
	color: var(--color-emerald);
}

.product-archive-grid {
	align-items: stretch;
}

.product-card--archive {
	display: flex;
	flex-direction: column;
}

.product-card--archive .product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 13px;
	padding: 24px;
}

.product-card--archive .product-card__body h2,
.product-card--archive .product-card__body p {
	margin: 0;
}

.product-card--archive .product-card__body h2 {
	color: var(--color-deep-green);
	font-size: 22px;
	line-height: 1.24;
}

.product-card--archive .product-card__body h2 a {
	color: inherit;
}

.product-card--archive .product-card__body h2 a:hover,
.product-card--archive .product-card__body h2 a:focus {
	color: var(--color-emerald);
}

.product-card--archive .product-card__body > p:not(.product-card__meta) {
	color: var(--color-muted);
	font-size: 15.5px;
	line-height: 1.72;
}

.product-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 4px;
}

.product-card__tags span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.09);
	color: var(--color-deep-green);
	font-family: var(--font-nav);
	font-size: 11.5px;
	font-weight: 750;
	line-height: 1.2;
}

.product-card--archive .product-card__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: auto;
}

.product-card--archive .product-card__actions .button {
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	font-size: 11.5px;
	text-align: center;
}

.product-oem-cta {
	padding: 64px 0;
	background:
		linear-gradient(135deg, rgba(11, 61, 46, 0.96), rgba(15, 118, 110, 0.9));
	color: var(--color-white);
}

.product-oem-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.product-oem-cta h2 {
	max-width: 760px;
	margin: 0 0 12px;
	color: var(--color-white);
	font-size: clamp(30px, 3.5vw, 42px);
	line-height: 1.14;
}

.product-oem-cta p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 16.5px;
	line-height: 1.74;
}

.product-oem-cta .eyebrow {
	color: #42D6C9;
}

.product-oem-cta .button {
	border-color: var(--color-emerald);
	background: var(--color-emerald);
	color: var(--color-white);
}

.product-final-cta-section {
	padding-top: 0;
}

.product-final-cta {
	display: grid;
	justify-items: center;
	max-width: 900px;
	padding: 56px 42px;
	border-radius: 14px;
	background: var(--color-sand);
	text-align: center;
}

.product-final-cta h2 {
	max-width: 760px;
	margin: 0 0 14px;
	color: var(--color-deep-green);
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.12;
}

.product-final-cta p {
	max-width: 720px;
	margin: 0 auto 26px;
	color: var(--color-muted);
	font-size: 16.5px;
	line-height: 1.74;
}

.product-empty-state {
	background: var(--color-white);
}

.product-detail-hero {
	padding: 74px 0;
	background:
		linear-gradient(90deg, rgba(247, 242, 232, 1), rgba(247, 242, 232, 0.92)),
		linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(212, 175, 55, 0.1));
}

.product-detail-hero__grid {
	display: grid;
	grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
	gap: 54px;
	align-items: center;
}

.product-detail-media {
	padding: 18px;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 18px 38px rgba(11, 61, 46, 0.08);
}

.product-detail-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 10px;
	background: var(--color-sand);
	object-fit: cover;
}

.product-detail-summary {
	max-width: 660px;
}

.product-detail-summary h1 {
	margin: 0;
	color: var(--color-text);
	font-size: clamp(38px, 4.8vw, 56px);
	line-height: 1.08;
}

.product-detail-summary > p {
	max-width: 620px;
	color: var(--color-text);
	font-size: 17px;
	line-height: 1.78;
}

.product-detail-support {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.product-detail-support li {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 7px 12px;
	border: 1px solid rgba(15, 118, 110, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--color-deep-green);
	font-family: var(--font-nav);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.product-detail-content-section {
	background: var(--color-white);
}

.product-detail-layout {
	align-items: start;
}

.product-detail-main {
	display: grid;
	gap: 24px;
}

.product-detail-intro,
.product-detail-info-card,
.product-detail-table-card,
.product-detail-faq,
.product-inquiry-panel {
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 14px;
	background: var(--color-white);
	box-shadow: 0 14px 30px rgba(11, 31, 51, 0.045);
}

.product-detail-intro,
.product-detail-table-card,
.product-detail-faq {
	padding: 30px;
}

.product-detail-intro h2,
.product-detail-info-card h2,
.product-detail-table-card h2,
.product-detail-faq h2,
.product-inquiry-panel h2 {
	margin: 0 0 14px;
	color: var(--color-deep-green);
	font-size: 26px;
	line-height: 1.18;
}

.product-detail-intro p,
.product-detail-intro li,
.product-detail-table-card p,
.product-detail-faq p,
.product-inquiry-panel p {
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.72;
}

.product-detail-intro > *:last-child,
.product-detail-table-card > *:last-child,
.product-detail-faq > *:last-child,
.product-inquiry-panel > *:last-child {
	margin-bottom: 0;
}

.product-detail-section-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
}

.product-detail-info-card {
	padding: 28px;
	min-width: 0;
}

.product-detail-info-card .check-list li {
	color: var(--color-muted);
	font-size: 15.5px;
	line-height: 1.74;
}

.product-inquiry-panel {
	position: sticky;
	top: 100px;
	padding: 30px;
	background: var(--color-sand);
}

.product-inquiry-list {
	display: grid;
	gap: 10px;
	margin: 18px 0 22px;
	padding: 0;
	list-style: none;
}

.product-inquiry-list li {
	position: relative;
	padding-left: 22px;
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.62;
}

.product-inquiry-list li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-emerald);
	content: "";
	transform: translateY(-50%);
}

.product-inquiry-panel .button {
	width: 100%;
	margin-top: 8px;
}

.product-card--related .product-card__body {
	display: grid;
	gap: 10px;
}

.product-card--related .product-card__body h3,
.product-card--related .product-card__body p {
	margin: 0;
}

.product-related-section .empty-state {
	background: var(--color-white);
}

.page-hero,
.product-hero {
	padding: 56px 0;
}

.content-panel,
.form-panel,
.inquiry-panel {
	padding: 28px;
}

.content-body {
	max-width: 820px;
	line-height: 1.74;
}

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

.content-body h2 {
	margin-top: 34px;
	margin-bottom: 12px;
}

.contact-layout,
.product-detail-layout {
	align-items: start;
}

.shortcode-placeholder {
	padding: 28px;
	border: 1px dashed var(--color-emerald);
	border-radius: var(--radius);
	background: var(--color-sand);
}

.contact-hero {
	padding: 72px 0;
	background:
		linear-gradient(90deg, rgba(247, 242, 232, 1), rgba(247, 242, 232, 0.9)),
		linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(212, 175, 55, 0.1));
}

.contact-hero__inner {
	max-width: 820px;
}

.contact-hero h1 {
	max-width: 760px;
	margin: 0;
	color: var(--color-text);
	font-size: clamp(38px, 4.8vw, 56px);
	line-height: 1.08;
}

.contact-hero p:not(.eyebrow) {
	max-width: 680px;
	color: var(--color-text);
	font-size: 17px;
	line-height: 1.78;
}

.contact-inquiry-section {
	background: var(--color-white);
}

.contact-inquiry-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
	gap: 28px;
	align-items: start;
}

.contact-inquiry-main {
	display: grid;
	gap: 22px;
}

.contact-context-card,
.contact-guidance-card,
.contact-info-card,
.contact-form-card {
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 14px;
	background: var(--color-white);
	box-shadow: 0 14px 30px rgba(11, 31, 51, 0.045);
}

.contact-context-card,
.contact-guidance-card,
.contact-info-card,
.contact-form-card {
	padding: 30px;
}

.contact-context-card {
	background: var(--color-sand);
}

.contact-context-card h2,
.contact-guidance-card h2,
.contact-info-card h2,
.contact-form-card h2 {
	margin: 0 0 12px;
	color: var(--color-deep-green);
	font-size: 26px;
	line-height: 1.18;
}

.contact-context-card p,
.contact-guidance-card p,
.contact-form-card p {
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.72;
}

.contact-context-card strong {
	color: var(--color-deep-green);
}

.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.contact-info-item {
	padding: 18px;
	border: 1px solid rgba(15, 118, 110, 0.12);
	border-radius: 10px;
	background: rgba(247, 242, 232, 0.58);
}

.contact-info-item span {
	display: block;
	margin-bottom: 6px;
	color: var(--color-emerald);
	font-family: var(--font-nav);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-info-item strong {
	display: block;
	color: var(--color-text);
	font-size: 15.5px;
	line-height: 1.45;
}

.contact-form-card {
	position: sticky;
	top: 100px;
}

.contact-form-placeholder {
	margin-top: 18px;
	text-align: left;
}

.contact-form-placeholder h3 {
	margin: 0 0 8px;
	color: var(--color-deep-green);
	font-size: 20px;
	line-height: 1.24;
}

.contact-final-cta {
	padding: 68px 0;
	background: var(--color-sand);
}

.contact-final-cta__inner {
	max-width: 840px;
	text-align: center;
}

.contact-final-cta__inner h2 {
	margin: 0 0 14px;
	color: var(--color-deep-green);
	font-size: clamp(31px, 3.6vw, 42px);
	line-height: 1.14;
}

.contact-final-cta__inner p:not(.eyebrow) {
	max-width: 720px;
	margin-inline: auto;
	color: var(--color-muted);
	font-size: 16.5px;
	line-height: 1.74;
}

.oem-page-hero {
	padding: 76px 0;
	background:
		radial-gradient(circle at 86% 22%, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0) 25%),
		linear-gradient(120deg, rgba(247, 242, 232, 1) 0%, rgba(247, 242, 232, 0.94) 48%, rgba(15, 118, 110, 0.15) 100%),
		var(--color-sand);
	overflow: hidden;
}

.oem-page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
	gap: 52px;
	align-items: center;
}

.oem-page-hero__content {
	max-width: 650px;
}

.oem-page-hero__content h1 {
	margin: 0 0 20px;
	color: var(--color-text);
	font-size: clamp(42px, 5.2vw, 64px);
	line-height: 1.05;
}

.oem-page-hero__content p:not(.eyebrow) {
	max-width: 590px;
	margin: 0 0 30px;
	color: var(--color-text);
	font-size: 17px;
	line-height: 1.78;
}

.oem-page-hero__visual {
	position: relative;
}

.oem-page-hero__visual::before {
	position: absolute;
	inset: -28px -22px auto auto;
	width: 190px;
	height: 190px;
	content: "";
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.18);
}

.oem-visual-card {
	position: relative;
	padding: 18px;
	border: 1px solid rgba(15, 118, 110, 0.13);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
		var(--color-white);
	box-shadow: 0 26px 60px rgba(11, 61, 46, 0.14);
}

.oem-visual-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
	padding: 12px 14px;
	border: 1px solid rgba(15, 118, 110, 0.1);
	border-radius: 12px;
	background: rgba(247, 242, 232, 0.72);
}

.oem-visual-card__header span,
.oem-visual-card__header strong {
	font-family: var(--font-nav);
	font-size: 11.5px;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-transform: uppercase;
}

.oem-visual-card__header span {
	color: var(--color-muted);
	font-weight: 750;
}

.oem-visual-card__header strong {
	color: var(--color-emerald);
	font-weight: 850;
}

.oem-visual-card img {
	width: 100%;
	min-height: 270px;
	max-height: 350px;
	object-fit: cover;
	border-radius: 12px;
	background: var(--color-white);
	box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.08);
}

.oem-visual-panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}

.oem-visual-panel span {
	padding: 11px 13px;
	border: 1px solid rgba(15, 118, 110, 0.13);
	border-radius: 10px;
	background: rgba(247, 242, 232, 0.72);
	color: var(--color-deep-green);
	font-family: var(--font-nav);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.oem-visual-footer {
	margin-top: 14px;
	padding: 14px;
	border-left: 3px solid var(--color-gold);
	border-radius: 10px;
	background: rgba(15, 118, 110, 0.06);
}

.oem-visual-footer p {
	margin: 0;
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.58;
}

.oem-discussion-section,
.oem-buyers-section,
.oem-faq-section {
	background: var(--color-white);
}

.oem-card-grid,
.oem-process-grid,
.oem-buyer-grid {
	display: grid;
	gap: 18px;
}

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

.oem-service-card,
.oem-process-card,
.oem-buyer-card,
.oem-info-panel {
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 14px;
	background: var(--color-white);
	box-shadow: 0 14px 30px rgba(11, 31, 51, 0.045);
}

.oem-service-card {
	padding: 28px;
}

.oem-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 20px;
	border-radius: 12px;
	background: rgba(15, 118, 110, 0.1);
	color: var(--color-emerald);
}

.oem-card-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.oem-service-card h3,
.oem-process-card h3 {
	margin: 0 0 10px;
	color: var(--color-deep-green);
	font-size: 21px;
	line-height: 1.24;
}

.oem-service-card p,
.oem-process-card p,
.oem-faq-intro p {
	margin: 0;
	color: var(--color-muted);
	font-size: 15.5px;
	line-height: 1.72;
}

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

.oem-process-card {
	position: relative;
	padding: 26px;
	overflow: hidden;
}

.oem-process-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	content: "";
	background: var(--color-gold);
}

.oem-process-card__top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.oem-step-number {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(15, 118, 110, 0.1);
	color: var(--color-emerald);
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 850;
	letter-spacing: 0.04em;
}

.oem-step-line {
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(15, 118, 110, 0.24), rgba(15, 118, 110, 0));
}

.oem-process-note {
	max-width: 760px;
	margin: 22px auto 0;
	padding: 15px 18px;
	border: 1px solid rgba(15, 118, 110, 0.13);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--color-text);
	font-size: 15px;
	line-height: 1.6;
	text-align: center;
}

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

.oem-buyer-card {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 12px 14px;
	align-items: start;
	min-height: 132px;
	padding: 22px;
	text-align: left;
}

.oem-buyer-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(15, 118, 110, 0.14);
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(212, 175, 55, 0.13)),
		var(--color-sand);
	color: var(--color-emerald);
}

.oem-buyer-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.oem-buyer-card strong {
	color: var(--color-deep-green);
	font-size: 17px;
	line-height: 1.35;
}

.oem-buyer-card p {
	grid-column: 2;
	margin: -4px 0 0;
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.62;
}

.oem-info-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
	gap: 42px;
	align-items: center;
}

.oem-info-copy h2,
.oem-faq-intro h2 {
	margin: 0 0 16px;
	color: var(--color-deep-green);
	font-size: clamp(34px, 4vw, 46px);
	line-height: 1.12;
}

.oem-info-copy p:not(.eyebrow) {
	max-width: 560px;
	margin: 0 0 26px;
	color: var(--color-muted);
	font-size: 16.5px;
	line-height: 1.76;
}

.oem-info-panel {
	padding: 30px;
}

.oem-info-panel .check-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.oem-faq-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

.oem-faq-intro {
	position: sticky;
	top: 100px;
	padding: 26px;
	border: 1px solid rgba(15, 118, 110, 0.1);
	border-radius: 14px;
	background: var(--color-sand);
}

.oem-faq-section .faq-list {
	gap: 10px;
}

.oem-faq-section .faq-list details {
	padding: 18px 20px;
	border-color: rgba(15, 118, 110, 0.12);
	box-shadow: 0 10px 24px rgba(11, 31, 51, 0.035);
}

.oem-faq-section .faq-list summary {
	font-size: 16px;
}

.oem-final-cta {
	padding: 76px 0;
	background:
		linear-gradient(135deg, rgba(8, 47, 37, 0.97), rgba(11, 61, 46, 0.92)),
		var(--color-deep-green);
	color: var(--color-white);
}

.oem-final-cta__inner {
	max-width: 820px;
	text-align: center;
}

.oem-final-cta .eyebrow {
	color: rgba(255, 255, 255, 0.78);
}

.oem-final-cta h2 {
	margin: 0 0 16px;
	color: var(--color-white);
	font-size: clamp(34px, 4vw, 48px);
	line-height: 1.12;
}

.oem-final-cta p:not(.eyebrow) {
	max-width: 640px;
	margin: 0 auto 28px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 16.5px;
	line-height: 1.74;
}

.support-hero {
	padding: 76px 0;
	background:
		radial-gradient(circle at 84% 22%, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0) 26%),
		linear-gradient(120deg, rgba(247, 242, 232, 1) 0%, rgba(247, 242, 232, 0.94) 50%, rgba(15, 118, 110, 0.14) 100%),
		var(--color-sand);
}

.support-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.72fr);
	gap: 50px;
	align-items: center;
}

.support-hero__content {
	max-width: 690px;
}

.support-hero__content h1 {
	margin: 0 0 20px;
	color: var(--color-text);
	font-size: clamp(40px, 5vw, 60px);
	line-height: 1.06;
}

.support-hero__content p:not(.eyebrow) {
	max-width: 610px;
	margin: 0 0 30px;
	color: var(--color-text);
	font-size: 17px;
	line-height: 1.78;
}

.support-hero__panel {
	padding: 30px;
	border: 1px solid rgba(15, 118, 110, 0.13);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
		var(--color-white);
	box-shadow: 0 24px 56px rgba(11, 61, 46, 0.12);
}

.support-hero-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.support-hero-list li {
	position: relative;
	padding: 14px 16px 14px 42px;
	border: 1px solid rgba(15, 118, 110, 0.1);
	border-radius: 12px;
	background: rgba(247, 242, 232, 0.72);
	color: var(--color-deep-green);
	font-weight: 750;
	line-height: 1.45;
}

.support-hero-list li::before {
	position: absolute;
	top: 18px;
	left: 17px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--color-emerald);
	content: "";
}

.support-help-section {
	background: var(--color-white);
}

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

.support-card,
.support-checklist-panel,
.support-process-card {
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 14px;
	background: var(--color-white);
	box-shadow: 0 14px 30px rgba(11, 31, 51, 0.045);
}

.support-card {
	padding: 28px;
}

.support-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 20px;
	border-radius: 12px;
	background: rgba(15, 118, 110, 0.1);
	color: var(--color-emerald);
}

.support-card__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.support-card h3,
.support-process-card h3 {
	margin: 0 0 10px;
	color: var(--color-deep-green);
	font-size: 21px;
	line-height: 1.24;
}

.support-card p,
.support-process-card p,
.support-faq-intro p {
	margin: 0;
	color: var(--color-muted);
	font-size: 15.5px;
	line-height: 1.72;
}

.support-checklist-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
	gap: 42px;
	align-items: center;
}

.support-checklist-copy h2,
.support-faq-intro h2 {
	margin: 0 0 16px;
	color: var(--color-deep-green);
	font-size: clamp(34px, 4vw, 46px);
	line-height: 1.12;
}

.support-checklist-copy p:not(.eyebrow) {
	max-width: 570px;
	margin: 0 0 26px;
	color: var(--color-muted);
	font-size: 16.5px;
	line-height: 1.76;
}

.support-checklist-panel {
	padding: 30px;
}

.support-checklist-panel .check-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.support-process-section {
	background: var(--color-white);
}

.support-process-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.support-process-card {
	position: relative;
	padding: 24px;
	overflow: hidden;
}

.support-process-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: var(--color-gold);
	content: "";
}

.support-process-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: rgba(15, 118, 110, 0.1);
	color: var(--color-emerald);
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 850;
	letter-spacing: 0.04em;
}

.support-faq-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

.support-faq-intro {
	position: sticky;
	top: 100px;
	padding: 26px;
	border: 1px solid rgba(15, 118, 110, 0.1);
	border-radius: 14px;
	background: var(--color-white);
}

.support-faq-section .faq-list {
	gap: 10px;
}

.support-faq-section .faq-list details {
	padding: 18px 20px;
	border-color: rgba(15, 118, 110, 0.12);
	box-shadow: 0 10px 24px rgba(11, 31, 51, 0.035);
}

.support-faq-section .faq-list summary {
	font-size: 16px;
}

.support-final-cta {
	padding: 76px 0;
	background:
		linear-gradient(135deg, rgba(8, 47, 37, 0.97), rgba(11, 61, 46, 0.92)),
		var(--color-deep-green);
	color: var(--color-white);
}

.support-final-cta__inner {
	max-width: 820px;
	text-align: center;
}

.support-final-cta .eyebrow {
	color: rgba(255, 255, 255, 0.78);
}

.support-final-cta h2 {
	margin: 0 0 16px;
	color: var(--color-white);
	font-size: clamp(34px, 4vw, 48px);
	line-height: 1.12;
}

.support-final-cta p:not(.eyebrow) {
	max-width: 640px;
	margin: 0 auto 28px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 16.5px;
	line-height: 1.74;
}

.product-summary {
	align-self: center;
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0 24px;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.spec-table th,
.spec-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
	vertical-align: top;
	line-height: 1.58;
}

.spec-table th {
	width: 32%;
	background: var(--color-sand);
	color: var(--color-deep-green);
	font-weight: 750;
}

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

.faq-list details {
	padding: 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
}

.faq-list summary {
	cursor: pointer;
	color: var(--color-deep-green);
	font-weight: 800;
	line-height: 1.45;
}

.inquiry-panel {
	position: sticky;
	top: 100px;
}

.empty-state {
	padding: 36px;
	text-align: center;
}

.empty-state img {
	width: min(320px, 100%);
	margin: 0 auto 20px;
}

.empty-state--compact {
	grid-column: 1 / -1;
}

.pagination {
	margin-top: 32px;
}

.site-footer {
	background: #082F25;
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 1fr));
	gap: 30px;
	padding: 42px 0 34px;
}

.site-footer h2 {
	margin: 0 0 12px;
	color: var(--color-white);
	font-size: 18px;
	line-height: 1.22;
}

.site-footer p {
	margin-top: 0;
	max-width: 420px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 15px;
	line-height: 1.72;
}

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

.footer-list li {
	margin-bottom: 7px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 15px;
	line-height: 1.55;
}

.footer-list a {
	color: rgba(255, 255, 255, 0.74);
	font-size: 15px;
	line-height: 1.55;
	text-decoration: none;
}

.footer-list a:hover,
.footer-list a:focus {
	color: var(--color-white);
}

.site-footer__bottom {
	padding: 18px 0 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	line-height: 1.55;
}

@media (max-width: 1080px) {
	.process-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.primary-menu {
		gap: 16px;
	}
}

@media (max-width: 980px) {
	.site-header__inner {
		flex-wrap: wrap;
	}

	.nav-toggle {
		display: inline-block;
		margin-left: auto;
	}

	.primary-nav {
		display: none;
		width: 100%;
		margin: 0;
	}

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

	.primary-menu {
		display: grid;
		gap: 0;
		padding: 12px 0;
		border-top: 1px solid var(--color-border);
	}

	.primary-menu a {
		display: block;
		padding: 12px 0;
	}

	.primary-menu__mobile-inquiry {
		display: block;
	}

	.primary-menu__mobile-inquiry a {
		margin-top: 8px;
		padding: 14px 16px;
		background: var(--color-emerald);
		color: var(--color-white);
		text-align: center;
	}

	.primary-menu__mobile-inquiry a:hover,
	.primary-menu__mobile-inquiry a:focus {
		background: var(--color-deep-green);
		color: var(--color-white);
	}

	.site-header__cta {
		display: none;
	}

	.hero--live {
		min-height: 560px;
		background:
			linear-gradient(90deg, rgba(247, 242, 232, 1) 0%, rgba(247, 242, 232, 0.96) 58%, rgba(247, 242, 232, 0.42) 100%),
			var(--hero-image),
			var(--color-sand);
		background-position: center, 72% center, center;
		background-size: cover, cover, cover;
	}

	.about-hero {
		min-height: 560px;
		background:
			linear-gradient(90deg, rgba(247, 242, 232, 1) 0%, rgba(247, 242, 232, 0.96) 60%, rgba(247, 242, 232, 0.48) 100%),
			var(--about-hero-image),
			var(--color-sand);
		background-position: center, 70% center, center;
		background-size: cover, cover, cover;
	}

	.hero__inner {
		min-height: 560px;
	}

	.about-hero__grid {
		min-height: 560px;
	}

	.hero__grid,
	.product-archive-hero__grid,
	.product-detail-hero__grid,
	.product-hero__grid,
	.oem-page-hero__grid,
	.support-hero__grid,
	.split-layout,
	.factory-preview,
	.contact-layout,
	.contact-inquiry-layout,
	.product-detail-layout,
	.oem-info-layout,
	.oem-faq-layout,
	.support-checklist-layout,
	.support-faq-layout,
	.section-split,
	.product-focus-block,
	.about-hero__grid,
	.about-market-layout,
	.why-value-layout {
		grid-template-columns: 1fr;
	}

	.product-focus-card,
	.product-focus-image,
	.product-focus-image img {
		min-height: 360px;
	}

	.why-value-layout {
		gap: 28px;
	}

	.category-row,
	.why-grid,
	.project-grid,
	.keyword-list,
	.card-grid,
	.product-grid,
	.card-grid--categories,
	.product-category-cards,
	.product-guidance-grid,
	.about-icon-grid,
	.about-icon-grid--four,
	.about-scene-grid,
	.about-project-grid,
	.oem-card-grid,
	.oem-process-grid,
	.oem-buyer-grid,
	.support-card-grid,
	.support-process-list,
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.oem-page-hero {
		padding: 66px 0;
	}

	.oem-page-hero__content {
		max-width: 760px;
	}

	.oem-faq-intro {
		position: static;
	}

	.support-hero {
		padding: 66px 0;
	}

	.support-hero__content {
		max-width: 760px;
	}

	.support-faq-intro {
		position: static;
	}

	.oem-strip__inner,
	.final-inquiry-cta,
	.product-oem-cta__inner {
		display: grid;
	}

	.oem-strip {
		padding: 64px 0 68px;
	}

	.inquiry-panel {
		position: static;
	}

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

	.product-inquiry-panel {
		position: static;
	}

	.contact-form-card {
		position: static;
	}
}

@media (max-width: 700px) {
	.container {
		width: min(100% - 24px, 1180px);
	}

	.hero--live,
	.about-hero,
	.product-archive-hero,
	.support-hero,
	.section,
	.page-hero,
	.product-hero {
		padding: 44px 0;
	}

	.hero--live {
		min-height: auto;
		background:
			linear-gradient(180deg, rgba(247, 242, 232, 1) 0%, rgba(247, 242, 232, 0.96) 68%, rgba(247, 242, 232, 0.84) 100%),
			var(--hero-image),
			var(--color-sand);
		background-position: center, 68% bottom, center;
		background-size: cover, cover, cover;
	}

	.hero__inner {
		min-height: auto;
		padding: 18px 0;
	}

	.about-hero {
		min-height: auto;
		background:
			linear-gradient(180deg, rgba(247, 242, 232, 1) 0%, rgba(247, 242, 232, 0.96) 66%, rgba(247, 242, 232, 0.84) 100%),
			var(--about-hero-image),
			var(--color-sand);
		background-position: center, 66% bottom, center;
		background-size: cover, cover, cover;
	}

	.about-hero__grid {
		min-height: auto;
	}

	.hero__content h1,
	.about-hero__content h1,
	.product-archive-hero__content h1,
	.product-detail-summary h1,
	.support-hero__content h1,
	.page-hero h1,
	.product-summary h1 {
		font-size: clamp(32px, 9vw, 38px);
	}

	.section__heading h2,
	.section-split h2,
	.oem-strip h2,
	.final-inquiry-cta h2,
	.content-panel h2,
	.content-body h2,
	.inquiry-panel h2,
	.form-panel h2 {
		font-size: 28px;
	}

	.hero__content p,
	.page-hero p,
	.product-summary p {
		font-size: 16px;
	}

	.product-focus-intro {
		padding: 44px 0;
	}

	.product-focus-block {
		gap: 18px;
	}

	.product-focus-card {
		min-height: auto;
		padding: 28px;
	}

	.about-hero {
		padding: 58px 0;
	}

	.about-hero__grid {
		gap: 28px;
	}

	.about-market-layout {
		gap: 24px;
	}

	.about-market-image img {
		min-height: 320px;
		max-height: none;
	}

	.about-hero__panel,
	.about-copy-panel,
	.about-facts-card {
		padding: 26px;
	}

	.product-focus-card h2 {
		font-size: 28px;
	}

	.product-focus-card p:last-child {
		font-size: 16px;
	}

	.product-focus-list,
	.why-value-intro .keyword-list {
		grid-template-columns: 1fr;
	}

	.about-facts-card ul,
	.contact-info-grid,
	.about-icon-grid,
	.about-icon-grid--four,
	.about-scene-grid,
	.about-project-grid,
	.oem-card-grid,
	.oem-process-grid,
	.oem-buyer-grid,
	.oem-info-panel .check-list,
	.support-card-grid,
	.support-process-list,
	.support-checklist-panel .check-list {
		grid-template-columns: 1fr;
	}

	.product-focus-image,
	.product-focus-image img {
		min-height: 260px;
	}

	.about-hero__content h1 {
		font-size: clamp(34px, 10vw, 42px);
	}

	.about-final-cta__inner {
		padding: 42px 24px;
	}

	.why-value-intro {
		padding: 26px;
	}

	.why-value-card {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 22px;
	}

	.category-row,
	.why-grid,
	.project-grid,
	.keyword-list,
	.card-grid,
	.product-grid,
	.card-grid--categories,
	.product-category-cards,
	.product-guidance-grid,
	.process-list,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.live-category-card {
		min-height: auto;
		padding: 0;
	}

	.product-categories-section {
		padding: 36px 0 42px;
	}

	.product-categories-section .section__heading {
		margin-bottom: 22px;
	}

	.product-categories-section .category-row {
		gap: 22px;
	}

	.simple-card,
	.process-card,
	.final-inquiry-cta {
		padding: 24px;
	}

	.final-inquiry-cta {
		padding: 0;
	}

	.product-archive-visual {
		padding: 18px;
	}

	.product-archive-visual__points {
		grid-template-columns: 1fr;
	}

	.product-oem-cta {
		padding: 46px 0 50px;
	}

	.product-final-cta {
		padding: 42px 24px;
	}

	.product-detail-hero {
		padding: 44px 0;
	}

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

	.product-detail-media {
		padding: 14px;
	}

	.product-detail-intro,
	.product-detail-table-card,
	.product-detail-faq,
	.product-inquiry-panel {
		padding: 24px;
	}

	.product-detail-info-card {
		padding: 22px;
	}

	.product-detail-section-grid {
		gap: 16px;
	}

	.contact-hero {
		padding: 48px 0;
	}

	.contact-context-card,
	.contact-guidance-card,
	.contact-info-card,
	.contact-form-card {
		padding: 24px;
	}

	.contact-final-cta {
		padding: 52px 0;
	}

	.oem-page-hero {
		padding: 52px 0;
	}

	.oem-page-hero__grid {
		gap: 32px;
	}

	.oem-page-hero__content h1 {
		font-size: clamp(34px, 10vw, 44px);
	}

	.oem-page-hero__content p:not(.eyebrow) {
		font-size: 16px;
	}

	.oem-visual-card {
		padding: 16px;
	}

	.oem-visual-card img {
		min-height: 240px;
	}

	.oem-visual-panel {
		grid-template-columns: 1fr;
	}

	.oem-service-card,
	.oem-process-card,
	.oem-info-panel {
		padding: 24px;
	}

	.oem-info-copy h2,
	.oem-faq-intro h2,
	.oem-final-cta h2 {
		font-size: 30px;
	}

	.oem-final-cta {
		padding: 56px 0;
	}

	.support-hero {
		padding: 52px 0;
	}

	.support-hero__grid {
		gap: 30px;
	}

	.support-hero__content h1 {
		font-size: clamp(34px, 10vw, 44px);
	}

	.support-hero__content p:not(.eyebrow) {
		font-size: 16px;
	}

	.support-hero__panel,
	.support-card,
	.support-checklist-panel,
	.support-process-card {
		padding: 24px;
	}

	.support-checklist-copy h2,
	.support-faq-intro h2,
	.support-final-cta h2 {
		font-size: 30px;
	}

	.support-final-cta {
		padding: 56px 0;
	}

	.final-cta-section {
		padding: 58px 0 62px;
	}

	.oem-strip {
		padding: 46px 0 50px;
	}

	.oem-strip h2 {
		font-size: 30px;
	}

	.site-footer__bottom {
		display: grid;
	}
}
