.oem-page {
	background: var(--kw-surface);
}

.oem-flow-overview {
	background:
		radial-gradient(circle at 50% 18%, rgba(123, 84, 84, 0.1), transparent 34%),
		linear-gradient(180deg, rgba(251, 247, 243, 0.98), rgba(255, 255, 255, 1));
}

.oem-flow-overview .kw-container {
	max-width: 1250px;
}

.oem-flow-overview__layout {
	display: grid;
	grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
	align-items: center;
	gap: 36px;
	padding-left: var(--oem-flow-overview-offset, 0px);
	transition: padding-left 180ms ease;
}

.oem-flow-overview__intro {
	max-width: 360px;
	padding-top: 22px;
}

.oem-flow-overview__intro h1 {
	margin: 0;
	color: var(--kw-secondary);
	font-size: clamp(36px, 3.7vw, 52px);
	font-weight: 400;
	line-height: 0.92;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

.oem-flow-overview__accent {
	display: block;
	width: 42px;
	height: 2px;
	margin: 28px 0 30px;
	background: rgba(123, 84, 84, 0.68);
}

.oem-flow-overview__intro p:not(.section-heading__eyebrow) {
	margin: 0;
	color: var(--kw-on-surface-variant);
	font-size: 15px;
	line-height: 1.86;
}

.oem-flow-overview__diagram {
	position: relative;
	width: min(100%, 520px);
	min-height: 560px;
	justify-self: end;
	overflow: visible;
}

.oem-donut {
	--oem-donut-size: 392px;
	--oem-donut-thickness: 34px;
	--oem-donut-start: -90deg;
	--oem-donut-step: 72deg;
	--oem-donut-gap: 8deg;
	--oem-donut-segment: calc(var(--oem-donut-step) - var(--oem-donut-gap));
	position: absolute;
	top: 114px;
	left: 50%;
	width: var(--oem-donut-size);
	aspect-ratio: 1;
	border-radius: 50%;
	transform: translateX(-50%);
}

.oem-donut__arc {
	position: absolute;
	inset: -16px;
	border-radius: 50%;
	z-index: 2;
	background: conic-gradient(
		from calc(var(--oem-donut-start) + (var(--oem-donut-step) * (var(--arc-index) - 1))),
		var(--arc-color) 0 var(--oem-donut-segment),
		transparent var(--oem-donut-segment) 360deg
	);
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--oem-donut-thickness)), #000 calc(100% - var(--oem-donut-thickness) + 1px));
	mask: radial-gradient(farthest-side, transparent calc(100% - var(--oem-donut-thickness)), #000 calc(100% - var(--oem-donut-thickness) + 1px));
}

.oem-donut__center {
	position: absolute;
	inset: 34px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 34px;
	text-align: center;
	border-radius: 50%;
	background: #ffffff;
	z-index: 1;
	box-shadow: inset 0 4px 12px 0 rgba(0, 0, 0, 0.2);
}

.oem-donut__center-label {
	display: block;
	color: rgba(123, 84, 84, 0.74);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.oem-donut__center-value {
	display: block;
	margin-top: 10px;
	color: var(--kw-secondary);
	font-size: clamp(34px, 3.5vw, 44px);
	font-weight: 400;
	line-height: 1;
}

.oem-donut__center-note {
	margin: 12px 0 0;
	max-width: 180px;
	color: rgba(123, 84, 84, 0.82);
	font-size: 13px;
	line-height: 1.55;
}

.oem-donut__label {
	position: absolute;
	width: 220px;
	--connector-length: 72px;
	--connector-y: 50%;
	--connector-x: 20px;
	z-index: 3;
}

.oem-donut__label::before,
.oem-donut__label::after {
	content: "";
	position: absolute;
}

.oem-donut__label::after {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(123, 84, 84, 0.66);
}

.oem-donut__label.is-connector-horizontal::before {
	top: var(--connector-y);
	width: var(--connector-length);
	border-top: 1px dashed rgba(123, 84, 84, 0.48);
}

.oem-donut__label.is-connector-horizontal::after {
	top: calc(var(--connector-y) - 3px);
}

.oem-donut__label.is-connector-left::before {
	left: calc(var(--connector-length) * -1);
}

.oem-donut__label.is-connector-left::after {
	left: calc((var(--connector-length) * -1) - 3px);
}

.oem-donut__label.is-connector-right::before {
	right: calc(var(--connector-length) * -1);
}

.oem-donut__label.is-connector-right::after {
	right: calc((var(--connector-length) * -1) - 3px);
}

.oem-donut__label.is-connector-vertical::before {
	left: var(--connector-x);
	width: 0;
	height: var(--connector-length);
	border-left: 1px dashed rgba(123, 84, 84, 0.48);
}

.oem-donut__label.is-connector-vertical::after {
	left: calc(var(--connector-x) - 3px);
}

.oem-donut__label.is-connector-up::before {
	bottom: 100%;
}

.oem-donut__label.is-connector-up::after {
	bottom: calc(100% + var(--connector-length) - 3px);
}

.oem-donut__label.is-connector-down::before {
	top: 100%;
}

.oem-donut__label.is-connector-down::after {
	top: calc(100% + var(--connector-length) - 3px);
}

.oem-donut__label--top-left {
	top: 96px;
	left: -46px;
	text-align: right;
}

.oem-donut__label--top-right {
	top: 96px;
	right: -46px;
	text-align: left;
}

.oem-donut__label--bottom-right {
	right: -46px;
	bottom: 114px;
	text-align: left;
}

.oem-donut__label--bottom-left {
	left: -46px;
	bottom: 114px;
	text-align: right;
}

.oem-donut__label-eyebrow {
	display: block;
	margin-bottom: 8px;
	color: rgba(123, 84, 84, 0.74);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.oem-donut__label h3 {
	margin: 0;
	color: var(--kw-secondary);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.18;
}

.oem-donut__label p {
	margin: 8px 0 0;
	color: var(--kw-on-surface-variant);
	font-size: 14px;
	line-height: 1.45;
}


.oem-hero {
	padding: 124px 0 88px;
	background:
		radial-gradient(circle at 50% 0%, rgba(123, 84, 84, 0.12), transparent 42%),
		linear-gradient(180deg, rgba(244, 237, 237, 0.96), rgba(252, 249, 248, 0.98)),
		var(--kw-surface);
}

.oem-hero__panel {
	width: min(100%, 980px);
	margin: 0 auto;
	text-align: center;
}

.oem-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0;
	padding: 10px 20px;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--kw-secondary);
	font-size: 14px;
	font-weight: 500;
}

.oem-hero__eyebrow span {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(27, 27, 28, 0.22);
	flex: 0 0 auto;
}

.oem-hero h1 {
	margin: 0;
	padding-top: 30px;
	color: #111214;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(50px, 5.4vw, 78px);
	font-weight: 700;
	line-height: 0.98;
	text-wrap: balance;
}

.oem-hero h1 span,
.oem-hero h1 em {
	display: block;
}

.oem-hero h1 em {
	margin-top: 8px;
	color: var(--kw-primary);
	font-style: italic;
	font-weight: 600;
}

.oem-hero__summary {
	max-width: 820px;
	margin: 26px auto 0;
	color: var(--kw-on-surface-variant);
	font-size: 18px;
	line-height: 1.76;
}

.oem-hero__cta-shell {
	display: flex;
	justify-content: center;
	margin: 42px auto 0;
}

.oem-hero__cta-button {
	min-height: 58px;
	padding: 0 42px;
	border-radius: 999px;
	background: var(--kw-primary);
	box-shadow: 0 18px 40px rgba(123, 84, 84, 0.18);
}

.oem-hero__cta-button:hover,
.oem-hero__cta-button:focus-visible {
	background: var(--kw-primary-dark);
}

.oem-hero__assist {
	margin: 22px 0 0;
	color: var(--kw-on-surface-variant);
	font-size: 16px;
	line-height: 1.6;
}

.oem-hero__assist a {
	color: var(--kw-primary);
	font-weight: 500;
}

.oem-steps {
	background: var(--kw-white);
	--oem-flow-accent: var(--kw-primary);
	--oem-flow-accent-dark: var(--kw-primary-dark);
	--oem-flow-accent-soft: rgba(123, 84, 84, 0.34);
}

.oem-steps .kw-container {
	max-width: 1250px;
}

.oem-steps__layout {
	position: relative;
}

.oem-steps__content {
	min-width: 0;
}

.oem-cases,
.oem-factory,
.contact-section {
	position: relative;
	z-index: 3;
}

.oem-page .section-heading:not(.section-heading--left) .section-heading__eyebrow {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.oem-phase-preview {
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
}

.oem-phase-preview + .oem-phase-preview {
	margin-top: 72px;
}

.oem-phase-preview__head {
	display: grid;
	justify-items: center;
	gap: 22px;
	max-width: 980px;
	margin: 0 auto 42px;
	text-align: center;
}

.oem-phase-preview__head h2 {
	margin: 0;
	color: var(--kw-on-surface);
	font-size: clamp(36px, 4.4vw, 52px);
	line-height: 0.96;
	letter-spacing: -0.035em;
	text-transform: uppercase;
	hyphens: manual;
	overflow-wrap: normal;
	word-break: normal;
	text-wrap: balance;
}

.oem-phase-preview__description {
	max-width: 900px;
	margin: 0;
	color: var(--kw-on-surface-variant);
	font-size: 17px;
	line-height: 1.72;
}

.oem-phase-preview__panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-radius: 26px;
	background: #f7f4f2;
	overflow: hidden;
}

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

.oem-phase-preview__step {
	display: grid;
	align-content: start;
	padding: 54px 40px 40px;
	min-height: 540px;
}

.oem-phase-preview__step + .oem-phase-preview__step {
	border-left: 1px solid rgba(123, 84, 84, 0.18);
}

.oem-phase-preview__step-label {
	display: block;
	margin-bottom: 18px;
	color: rgba(123, 84, 84, 0.54);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.oem-phase-preview__step h3 {
	margin: 0;
	color: var(--kw-on-surface);
	font-size: 30px;
	line-height: 1.08;
	text-transform: none;
}

.oem-phase-preview__media {
	margin: 34px 0 0;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: #ece8e5;
}

.oem-phase-preview__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 1181px) {
	.oem-phase-preview__step h3 {
		min-height: 2.16em;
	}
}

.oem-phase-preview__step p {
	margin: 34px 0 0;
	color: var(--kw-on-surface-variant);
	font-size: 16px;
	line-height: 1.72;
}

.oem-phase-preview__step-duration {
	align-self: end;
	justify-self: end;
	margin-top: 52px;
	color: var(--kw-on-surface);
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.oem-cases {
	background:
		radial-gradient(circle at top center, rgba(255, 255, 255, 0.05), transparent 28%),
		linear-gradient(180deg, #4f3d3d, #403232);
	color: var(--kw-white);
}

.oem-cases__heading {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.oem-cases .kw-container {
	max-width: 1250px;
}

.oem-cases__heading .section-heading__eyebrow {
	justify-content: center;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.76);
}

.oem-cases__heading h2 {
	color: var(--kw-white);
	font-size: clamp(28px, 2.6vw, 40px);
}

.oem-cases__heading p {
	color: rgba(255, 255, 255, 0.76);
}

.oem-cases__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin-top: 52px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
}

.oem-cases__fact {
	padding: 28px 22px 24px;
	text-align: center;
}

.oem-cases__fact + .oem-cases__fact {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.oem-cases__fact strong,
.oem-cases__fact span {
	display: block;
}

.oem-cases__fact strong {
	color: var(--kw-white);
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
}

.oem-cases__fact span {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.55;
}

.oem-factory {
	background: #fbf7f3;
}

.oem-factory .kw-container {
	max-width: 1420px;
}

.oem-factory__heading {
	margin-bottom: 34px;
}

.oem-factory__heading h2 {
	margin: 0;
	color: var(--kw-secondary);
	font-size: clamp(32px, 3vw, 44px);
	font-weight: 600;
	line-height: 1.08;
	text-transform: none;
}

.oem-factory__hero img,
.oem-factory__card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.oem-factory__hero {
	overflow: hidden;
	background: rgba(255, 255, 255, 0.78);
}

.oem-factory__hero img {
	aspect-ratio: 16 / 9;
}

.oem-factory__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-top: 22px;
}

.oem-factory__card {
	margin: 0;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.78);
}

.oem-factory__card img {
	aspect-ratio: 4 / 3;
}

.contact-section {
	background: var(--kw-surface-linen);
}

.contact-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 70px;
	align-items: start;
	max-width: 1420px;
}

.contact-section__head {
	margin-bottom: 0;
}

.contact-section__head h2 {
	margin: 14px 0 0;
	color: var(--kw-secondary);
	font-size: clamp(42px, 4vw, 58px);
	font-weight: 600;
	line-height: 0.98;
	text-transform: uppercase;
}

.contact-section__head p:not(.section-heading__eyebrow) {
	max-width: 720px;
	color: var(--kw-on-surface-variant);
	font-size: 18px;
	line-height: 1.6;
}

.contact-section__list {
	display: grid;
	gap: 0;
	max-width: 640px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.contact-section__list li {
	position: relative;
	padding: 14px 0 14px 20px;
	border-bottom: 1px solid rgba(193, 199, 210, 0.65);
	color: var(--kw-on-surface);
	font-size: 16px;
	line-height: 1.55;
}

.contact-section__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 25px;
	width: 7px;
	height: 7px;
	background: var(--kw-primary);
	border-radius: 999px;
}

.contact-section__direct {
	display: grid;
	gap: 10px;
	margin-top: 32px;
}

.contact-section__direct-label {
	margin: 0;
	color: var(--kw-on-surface);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-section__direct-link {
	color: var(--kw-secondary);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.3;
	word-break: break-word;
}

.contact-form-shell {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.contact-form-shell label {
	display: grid;
	gap: 9px;
}

.contact-form-shell span {
	color: var(--kw-on-surface);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-form-shell input,
.contact-form-shell textarea {
	width: 100%;
	border: 1px solid rgba(113, 119, 129, 0.42);
	border-radius: 0;
	background: transparent;
	color: var(--kw-on-surface);
	padding: 15px 16px;
}

.contact-form-shell input {
	min-height: 54px;
}

.contact-form-shell textarea {
	min-height: 172px;
	resize: vertical;
}

.contact-form-shell__wide {
	grid-column: 1 / -1;
}

.contact-form-shell button {
	justify-self: start;
}

.contact-form-shell__status {
	margin: 0;
	padding: 12px 14px;
	border: 1px solid rgba(113, 119, 129, 0.3);
	font-size: 14px;
	line-height: 1.5;
}

.contact-form-shell__status.is-success {
	background: rgba(55, 125, 192, 0.08);
	color: var(--kw-primary-dark);
}

.contact-form-shell__status.is-error {
	background: rgba(186, 26, 26, 0.08);
	color: var(--kw-error, #ba1a1a);
}

.contact-form-shell__note {
	margin: -2px 0 0;
	color: var(--kw-on-surface-variant);
	font-size: 14px;
	line-height: 1.55;
}

@media (max-width: 1180px) {
	.oem-flow-overview__layout {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.oem-flow-overview__intro {
		max-width: 720px;
		padding-top: 0;
	}

	.oem-flow-overview__diagram {
		width: 100%;
		min-height: 620px;
	}

	.oem-donut {
		top: 156px;
		left: 50%;
		width: min(100%, 380px);
		transform: translateX(-50%);
	}

	.oem-donut__label--top-left,
	.oem-donut__label--bottom-left {
		left: -12px;
	}

	.oem-donut__label--top-right,
	.oem-donut__label--bottom-right {
		right: -12px;
	}

	.contact-section__inner {
		grid-template-columns: 1fr;
	}

	.oem-phase-preview__panel {
		grid-template-columns: 1fr;
	}

	.oem-phase-preview__step {
		min-height: auto;
	}

	.oem-phase-preview__step + .oem-phase-preview__step {
		border-left: 0;
		border-top: 1px solid rgba(123, 84, 84, 0.18);
	}

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

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

	.oem-cases__fact + .oem-cases__fact {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
}

@media (max-width: 720px) {
	.oem-flow-overview {
		padding-top: 82px;
		padding-bottom: 0;
	}

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

	.oem-flow-overview__accent {
		margin: 20px 0 22px;
	}

	.oem-flow-overview__intro p:not(.section-heading__eyebrow) {
		font-size: 16px;
		line-height: 1.68;
	}

	.oem-flow-overview__diagram {
		display: block;
		min-height: 580px;
		padding-top: 124px;
		padding-bottom: 0;
	}

	.oem-donut {
		position: relative;
		top: auto;
		left: auto;
		width: min(100%, 340px);
		margin: 0 auto;
		transform: none;
	}

	.oem-donut__center {
		padding: 26px;
	}

	.oem-donut__center-value {
		font-size: 32px;
	}

	.oem-donut__label {
		position: absolute;
		top: 0;
		left: 0;
		width: min(54vw, 190px);
		max-width: 190px;
		margin: 0;
		padding: 0;
		text-align: left;
	}

	.oem-hero {
		padding: 88px 0 72px;
	}

	.oem-hero__eyebrow {
		font-size: 13px;
	}

	.oem-hero h1 {
		padding-top: 22px;
		font-size: clamp(36px, 11vw, 52px);
		line-height: 1.02;
	}

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

	.oem-hero__cta-shell {
		margin-top: 34px;
	}

	.oem-hero__cta-button {
		width: 100%;
	}

	.oem-phase-preview {
		margin-top: 54px;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.oem-phase-preview__head {
		margin-bottom: 22px;
	}

	.oem-phase-preview__head h2 {
		font-size: clamp(32px, 9vw, 44px);
	}

	.oem-phase-preview__step-duration {
		font-size: 15px;
	}

	.oem-phase-preview__step {
		padding: 36px 24px 30px;
	}

	.oem-phase-preview__step h3 {
		font-size: clamp(24px, 8vw, 32px);
	}

	.oem-phase-preview__step p {
		margin-top: 28px;
		font-size: 15px;
		line-height: 1.62;
	}

	.oem-phase-preview__step-duration {
		margin-top: 36px;
	}

	.oem-factory__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 16px;
	}

	.contact-section__head p:not(.section-heading__eyebrow) {
		font-size: 15px;
		line-height: 1.6;
	}

	.oem-factory__heading {
		margin-bottom: 24px;
	}

	.oem-factory__heading h2 {
		font-size: clamp(28px, 8vw, 38px);
	}

	.contact-section__head h2,
	.contact-section__direct-link {
		font-size: clamp(28px, 8vw, 38px);
		line-height: 1.05;
	}

	.contact-section__list {
		margin-top: 26px;
	}

	.contact-section__direct {
		margin-top: 24px;
	}
}
