:root {
	--kezhun-navy: #0b2545;
	--kezhun-navy-2: #12385f;
	--kezhun-blue: #1565d8;
	--kezhun-cyan: #00a8c6;
	--kezhun-green: #0b7a53;
	--kezhun-orange: #f59e0b;
	--kezhun-gray: #f3f5f7;
	--kezhun-line: #d7e1ec;
	--kezhun-ink: #10233f;
	--kezhun-muted: #60728c;
	--kezhun-white: #ffffff;
	--kezhun-shadow: 0 12px 32px rgba(11, 37, 69, 0.1);
	--kezhun-radius-card: 8px;
	--kezhun-radius-panel: 12px;
	--kezhun-content-max: 1440px;
	--kezhun-font: Inter, Manrope, "Noto Sans", Arial, sans-serif;
}

body {
	color: var(--kezhun-ink);
	font-family: var(--kezhun-font);
}

a {
	color: var(--kezhun-blue);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(21, 101, 216, 0.35);
	outline-offset: 3px;
}

.kz-container {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--kezhun-content-max);
	padding-left: clamp(20px, 4vw, 56px);
	padding-right: clamp(20px, 4vw, 56px);
}

.kz-section {
	padding-bottom: clamp(44px, 6vw, 88px);
	padding-top: clamp(44px, 6vw, 88px);
}

.kz-section--soft {
	background: var(--kezhun-gray);
}

.kz-grid {
	display: grid;
	gap: 24px;
}

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

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

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

.kz-card {
	background: var(--kezhun-white);
	border: 1px solid var(--kezhun-line);
	border-radius: var(--kezhun-radius-card);
	box-shadow: 0 5px 16px rgba(11, 37, 69, 0.04);
	padding: clamp(20px, 2.4vw, 28px);
}

.kz-panel {
	background: var(--kezhun-white);
	border: 1px solid var(--kezhun-line);
	border-radius: var(--kezhun-radius-panel);
	box-shadow: var(--kezhun-shadow);
	padding: clamp(22px, 3vw, 36px);
}

.kz-button,
.woocommerce a.button.kz-button,
.woocommerce button.button.kz-button {
	align-items: center;
	background: var(--kezhun-blue);
	border: 0;
	border-radius: 999px;
	color: var(--kezhun-white);
	display: inline-flex;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	line-height: 1.1;
	min-height: 44px;
	padding: 13px 20px;
	text-decoration: none;
}

.kz-button--green {
	background: var(--kezhun-green);
}

.kz-button--orange {
	background: var(--kezhun-orange);
}

.kz-button--secondary {
	background: var(--kezhun-white);
	border: 1px solid var(--kezhun-line);
	color: var(--kezhun-navy);
}

.kz-button--ghost {
	background: transparent;
	border: 1px solid currentColor;
	color: var(--kezhun-green);
}

.kz-pill {
	align-items: center;
	background: var(--kezhun-white);
	border: 1px solid var(--kezhun-line);
	border-radius: 999px;
	color: var(--kezhun-muted);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	min-height: 28px;
	padding: 7px 11px;
}

.kz-pill--blue {
	border-color: #bcd3f8;
	color: var(--kezhun-blue);
}

.kz-pill--green {
	border-color: #b8ded1;
	color: var(--kezhun-green);
}

.kz-pill--orange {
	border-color: #f6cd87;
	color: #9a5b00;
}

.kz-hero {
	background: var(--kezhun-navy);
	color: var(--kezhun-white);
	overflow: hidden;
	position: relative;
}

.kz-hero::before {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 86px 86px;
	content: "";
	inset: 0;
	position: absolute;
}

.kz-hero > * {
	position: relative;
}

.kz-hero__title {
	font-size: clamp(38px, 5vw, 72px);
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
}

.kz-hero__text {
	color: #d5e4f7;
	font-size: clamp(17px, 1.4vw, 21px);
	line-height: 1.55;
}

.kz-form-field {
	background: #f8fbfd;
	border: 1px solid #cbd9e8;
	border-radius: var(--kezhun-radius-card);
	color: var(--kezhun-ink);
	min-height: 46px;
	padding: 12px 14px;
	width: 100%;
}

.kz-mobile-bottom-cta {
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--kezhun-line);
	bottom: 0;
	display: none;
	gap: 8px;
	grid-template-columns: repeat(3, 1fr);
	padding: 10px;
	position: sticky;
	z-index: 50;
}

.kezhun-commerce-note,
.kezhun-payment-gate,
.kezhun-shipping-gate {
	border: 1px solid var(--kezhun-line);
	border-radius: var(--kezhun-radius-card);
	color: var(--kezhun-ink);
	line-height: 1.45;
	padding: 14px 16px;
}

.kezhun-commerce-note--quote,
.kezhun-shipping-gate {
	background: #fff7e8;
	border-color: #f6cd87;
}

.kezhun-commerce-note--shipping,
.kezhun-payment-gate {
	background: #eef6ff;
	border-color: #bcd3f8;
}

.kezhun-price-note {
	color: var(--kezhun-muted);
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	margin-left: 8px;
}

.kezhun-price--quote {
	color: var(--kezhun-orange);
	font-weight: 800;
}

.kezhun-tier-price-from {
	align-items: baseline;
	color: var(--kezhun-ink);
	display: inline-flex;
	flex-wrap: wrap;
	font-size: clamp(22px, 2.4vw, 34px);
	font-weight: 800;
	gap: 7px;
	letter-spacing: -0.03em;
}

.kezhun-tier-price-from > span,
.kezhun-tier-price-from small {
	color: var(--kezhun-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.kezhun-tier-pricing {
	background: #fffdfa;
	border: 1px solid #d6ddd2;
	border-radius: var(--kezhun-radius-panel);
	margin: 18px 0 22px;
	overflow: hidden;
	padding: clamp(18px, 2.4vw, 28px);
}

.kezhun-tier-pricing__heading {
	align-items: flex-start;
	display: grid;
	gap: 20px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-bottom: 18px;
}

.kezhun-tier-pricing__eyebrow {
	color: #4d7f2b;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.kezhun-tier-pricing h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(24px, 2.5vw, 34px);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin: 0;
}

.kezhun-tier-pricing__live {
	background: #f1f3ed;
	border-radius: var(--kezhun-radius-card);
	display: grid;
	min-width: 220px;
	padding: 14px 16px;
}

.kezhun-tier-pricing__live span,
.kezhun-tier-pricing__live small {
	color: var(--kezhun-muted);
	font-size: 12px;
	font-weight: 700;
}

.kezhun-tier-pricing__live strong {
	color: #173027;
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1.15;
	margin: 3px 0;
}

.kezhun-tier-pricing__table-wrap {
	border: 1px solid #d6ddd2;
	border-radius: var(--kezhun-radius-card);
	overflow: hidden;
}

.kezhun-tier-pricing__table {
	border-collapse: collapse;
	margin: 0;
	table-layout: fixed;
	width: 100%;
}

.kezhun-tier-pricing__table th,
.kezhun-tier-pricing__table td {
	border: 0;
	padding: 13px 16px;
	text-align: left;
}

.kezhun-tier-pricing__table th {
	background: #173027;
	color: #fffdfa;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kezhun-tier-pricing__table tbody tr {
	background: #fffdfa;
	border-top: 1px solid #d6ddd2;
	transition: background-color 160ms ease, color 160ms ease;
}

.kezhun-tier-pricing__table tbody tr:first-child {
	border-top: 0;
}

.kezhun-tier-pricing__table tbody tr.is-active {
	background: #eaf4df;
	color: #173027;
	font-weight: 800;
}

.kezhun-tier-pricing__table td:last-child {
	font-weight: 800;
}

.kezhun-tier-pricing__note {
	color: var(--kezhun-muted);
	font-size: 12px;
	line-height: 1.5;
	margin: 12px 0 0;
}

@media (max-width: 680px) {
	.kezhun-tier-pricing__heading {
		grid-template-columns: 1fr;
	}

	.kezhun-tier-pricing__live {
		min-width: 0;
		width: 100%;
	}

	.kezhun-tier-pricing__table th,
	.kezhun-tier-pricing__table td {
		padding: 12px;
	}
}

.kezhun-product-panel {
	background: #f8fbfd;
	border: 1px solid var(--kezhun-line);
	border-radius: var(--kezhun-radius-card);
	margin: 18px 0;
	padding: 18px;
}

.kezhun-product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.kezhun-product-specs th {
	color: var(--kezhun-navy);
	width: 34%;
}

.kezhun-review-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kezhun-loop-badge {
	background: #fff7e8;
	border: 1px solid #f6cd87;
	border-radius: 999px;
	color: var(--kezhun-orange);
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	margin-top: 6px;
	padding: 4px 10px;
}

.kezhun-customer-records {
	background: var(--kezhun-white);
	border: 1px solid var(--kezhun-line);
	border-radius: var(--kezhun-radius-card);
	margin-top: 24px;
	overflow-x: auto;
	padding: 18px;
}

.kezhun-customer-records table {
	border-collapse: collapse;
	width: 100%;
}

.kezhun-customer-records th,
.kezhun-customer-records td {
	border-bottom: 1px solid var(--kezhun-line);
	padding: 10px;
	text-align: left;
}

.kezhun-intake-form {
	display: grid;
	gap: 18px;
}

.kezhun-intake-form label {
	color: var(--kezhun-navy);
	display: grid;
	font-weight: 800;
	gap: 8px;
}

.kezhun-form-disclaimer {
	background: #fff7e8;
	border: 1px solid #f6cd87;
	border-radius: var(--kezhun-radius-card);
	color: var(--kezhun-ink);
	line-height: 1.45;
	margin: 0;
	padding: 14px 16px;
}

.kezhun-intake-success {
	background: #edf8f3;
	border: 1px solid #b8ded1;
	border-radius: var(--kezhun-radius-card);
	color: var(--kezhun-ink);
	margin-bottom: 20px;
	padding: 16px;
}

.kezhun-intake-success p {
	margin-bottom: 0;
}

.kezhun-portal-message {
	background: #eef6ff;
	border: 1px solid #bcd3f8;
	border-radius: var(--kezhun-radius-card);
	color: var(--kezhun-ink);
	line-height: 1.45;
	padding: 16px;
}

@media (hover: hover) and (pointer: fine) {
	.kz-card,
	.kz-button {
		transition: box-shadow 180ms ease, transform 180ms ease;
	}

	.kz-card:hover {
		box-shadow: var(--kezhun-shadow);
		transform: translateY(-4px);
	}
}

@media (max-width: 1024px) {
	.kz-grid--3,
	.kz-grid--4,
	.kezhun-review-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.kz-grid--2,
	.kz-grid--3,
	.kz-grid--4,
	.kezhun-review-grid {
		grid-template-columns: 1fr;
	}

	.kz-button {
		width: 100%;
	}

	.kz-mobile-bottom-cta {
		display: grid;
	}
}

/* Consolidated solutions hub. */
.kz-solutions-hub {
	background: #f3f5f1;
	color: var(--kz-editorial-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	padding-block: clamp(88px, 10vw, 152px);
}

.kz-solutions-hub *,
.kz-solutions-hub *::before,
.kz-solutions-hub *::after {
	box-sizing: border-box;
}

.kz-solutions-hub__intro {
	align-items: end;
	display: grid;
	gap: clamp(30px, 6vw, 96px);
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	margin-bottom: clamp(42px, 6vw, 82px);
}

.kz-solutions-hub__intro h1,
.kz-solutions-hub__intro h2 {
	font-size: clamp(42px, 5.4vw, 82px);
	font-weight: 720;
	letter-spacing: -0.055em;
	line-height: 0.98;
	margin: 0;
	max-width: 900px;
}

.kz-solutions-hub__intro > div:last-child > p {
	color: var(--kz-editorial-muted);
	font-size: clamp(17px, 0.7vw + 14px, 22px);
	line-height: 1.68;
	margin: 0;
}

.kz-solutions-hub__language {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.kz-solutions-hub__language label {
	font-size: 14px;
	font-weight: 700;
}

.kz-solutions-hub__language select {
	appearance: none;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2310110f' d='m4 6 4 4 4-4z'/%3E%3C/svg%3E") no-repeat right 12px center / 12px;
	border: 1px solid var(--kz-editorial-line);
	border-radius: var(--kz-editorial-radius-sm);
	color: var(--kz-editorial-ink);
	font: inherit;
	height: 46px;
	min-width: 92px;
	padding: 0 38px 0 14px;
}

.kz-solutions-hub__grid {
	display: grid;
	gap: clamp(20px, 2.4vw, 34px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kz-solutions-hub__card {
	background: #fff;
	border: 1px solid var(--kz-editorial-line);
	border-radius: var(--kz-editorial-radius-lg);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	scroll-margin-top: 120px;
}

.kz-solutions-hub__card figure {
	aspect-ratio: 16 / 10;
	margin: 0;
	overflow: hidden;
}

.kz-solutions-hub__card figure img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 360ms ease;
	width: 100%;
}

.kz-solutions-hub__card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(24px, 2.5vw, 40px);
}

.kz-solutions-hub__card h3 {
	font-size: clamp(24px, 1.3vw + 18px, 36px);
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin: 0 0 18px;
}

.kz-solutions-hub__card p {
	color: var(--kz-editorial-muted);
	font-size: clamp(15px, 0.3vw + 14px, 18px);
	line-height: 1.65;
	margin: 0 0 28px;
}

.kz-solutions-hub__card-body > a {
	align-items: center;
	color: var(--kz-editorial-ink);
	display: inline-flex;
	font-size: 15px;
	font-weight: 720;
	gap: 10px;
	margin-top: auto;
	text-decoration: none;
	width: fit-content;
}

.kz-solutions-hub__card-body > a::after {
	background: var(--kz-editorial-green);
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0.22);
	transform-origin: left;
	transition: transform 220ms ease;
	width: 100%;
}

.kz-solutions-hub__card-body > a {
	padding-bottom: 8px;
	position: relative;
}

.kz-solutions-hub__process {
	align-items: center;
	background: #14261d;
	border-radius: var(--kz-editorial-radius-lg);
	color: #fff;
	display: grid;
	gap: clamp(30px, 5vw, 80px);
	grid-template-columns: minmax(230px, 0.6fr) minmax(0, 1.4fr);
	margin-top: clamp(30px, 5vw, 72px);
	padding: clamp(30px, 5vw, 72px);
}

.kz-solutions-hub__process .kz-editorial-eyebrow,
.kz-solutions-hub__process .kz-editorial-eyebrow--dark {
	color: #fff;
}

.kz-solutions-hub__process .kz-editorial-cta {
	margin-top: 18px;
}

.kz-solutions-hub__process ol {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.kz-solutions-hub__process li {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--kz-editorial-radius-md);
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-height: 150px;
	padding: 24px;
}

.kz-solutions-hub__process li span {
	color: var(--kz-editorial-green);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.kz-solutions-hub__process li strong {
	font-size: clamp(17px, 0.6vw + 15px, 22px);
	line-height: 1.3;
}

@media (hover: hover) and (pointer: fine) {
	.kz-solutions-hub__card:hover figure img {
		transform: scale(1.035);
	}

	.kz-solutions-hub__card-body > a:hover::after {
		transform: scaleX(1);
	}
}

@media (max-width: 1024px) {
	.kz-solutions-hub__intro,
	.kz-solutions-hub__process {
		grid-template-columns: 1fr;
	}

	.kz-solutions-hub__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kz-solutions-hub__card:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.kz-solutions-hub {
		padding-block: 62px;
	}

	.kz-solutions-hub__grid,
	.kz-solutions-hub__process ol {
		grid-template-columns: 1fr;
	}

	.kz-solutions-hub__card:last-child {
		grid-column: auto;
	}

	.kz-solutions-hub__card,
	.kz-solutions-hub__process {
		border-radius: var(--kz-editorial-radius-md);
	}

	.kz-solutions-hub__process li {
		min-height: 0;
	}
}

.kz-standard-page-main {
	min-height: 60vh;
}

.kz-standard-page-content {
	margin: 0;
}

.kz-standard-page-content > :first-child {
	margin-top: 0;
}

body.kz-insights-body.page .kz-solutions-hub__language {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}
}

/* Premium payment-ready storefront layer */
:root {
	--kezhun-black: #07090c;
	--kezhun-graphite: #161b22;
	--kezhun-chrome: #dfe7f2;
	--kezhun-electric: #43d7ff;
	--kezhun-gold: #f3b544;
	--kezhun-glass: rgba(255, 255, 255, 0.08);
	--kezhun-glass-line: rgba(255, 255, 255, 0.18);
}

.kz-eyebrow {
	align-items: center;
	background: rgba(67, 215, 255, 0.11);
	border: 1px solid rgba(67, 215, 255, 0.32);
	border-radius: 999px;
	color: #bff2ff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
	min-height: 30px;
	padding: 9px 13px;
	text-transform: uppercase;
}

.kz-section--dark {
	background:
		radial-gradient(circle at 18% 0%, rgba(67, 215, 255, 0.2), transparent 34%),
		linear-gradient(135deg, #05070a 0%, #101820 46%, #07100e 100%);
	color: var(--kezhun-white);
	overflow: hidden;
	position: relative;
}

.kz-section--dark::before {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 96px 96px;
	content: "";
	inset: 0;
	opacity: 0.34;
	position: absolute;
}

.kz-section--dark > * {
	position: relative;
}

.kz-home-hero {
	background:
		radial-gradient(circle at 80% 18%, rgba(67, 215, 255, 0.24), transparent 31%),
		radial-gradient(circle at 18% 8%, rgba(243, 181, 68, 0.16), transparent 28%),
		linear-gradient(135deg, #050608 0%, #111827 42%, #061411 100%);
	color: var(--kezhun-white);
	overflow: hidden;
	position: relative;
}

.kz-home-hero::before {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 84px 84px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(180deg, #000, transparent 82%);
	position: absolute;
}

.kz-home-hero::after {
	background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 48%, transparent 58%);
	content: "";
	height: 200%;
	left: -60%;
	position: absolute;
	top: -50%;
	transform: rotate(12deg);
	width: 34%;
}

.kz-home-hero > * {
	position: relative;
	z-index: 1;
}

.kz-home-hero .kz-grid--2 {
	align-items: center;
	min-height: clamp(640px, 78vh, 860px);
}

.kz-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.kz-home-hero .kz-button {
	background: var(--kezhun-white);
	border: 1px solid var(--kezhun-white);
	border-radius: 999px;
	color: var(--kezhun-black);
	font-weight: 900;
	min-width: 168px;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.kz-home-hero .kz-button--secondary {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.46);
	color: var(--kezhun-white);
}

.kz-home-hero .kz-hero__title {
	font-size: clamp(48px, 7vw, 104px);
	letter-spacing: -0.055em;
	line-height: 0.9;
	margin-top: 20px;
	max-width: 780px;
}

.kz-home-hero .kz-hero__text {
	color: #d7e4ef;
	font-size: clamp(18px, 1.55vw, 24px);
	line-height: 1.62;
	max-width: 760px;
}

.kz-hero__stats {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 36px;
	max-width: 860px;
}

.kz-hero__stat,
.kz-payment-panel,
.kz-package-row {
	backdrop-filter: blur(18px);
	background: var(--kezhun-glass);
	border: 1px solid var(--kezhun-glass-line);
	border-radius: 18px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.kz-hero__stat {
	padding: 18px;
}

.kz-hero__stat strong {
	color: var(--kezhun-white);
	display: block;
	font-size: 17px;
	margin-bottom: 8px;
}

.kz-hero__stat span {
	color: #b8c7d5;
	display: block;
	font-size: 13px;
	line-height: 1.5;
}

.kz-hero__media {
	min-height: 520px;
	position: relative;
}

.kz-product-stage {
	aspect-ratio: 1;
	background:
		radial-gradient(circle, rgba(67, 215, 255, 0.28), transparent 58%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 40px;
	box-shadow: 0 42px 110px rgba(0, 0, 0, 0.45);
	margin-left: auto;
	max-width: 520px;
	overflow: hidden;
	position: relative;
	transform: translate3d(var(--kz-parallax-x, 0), var(--kz-parallax-y, 0), 0);
	transition: transform 260ms ease-out;
}

.kz-product-stage::before {
	background: conic-gradient(from 180deg, rgba(67, 215, 255, 0), rgba(67, 215, 255, 0.32), rgba(243, 181, 68, 0.28), rgba(67, 215, 255, 0));
	border-radius: inherit;
	content: "";
	inset: -40%;
	position: absolute;
}

.kz-product-tower {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.14)),
		linear-gradient(180deg, #f8fbff 0%, #cad5df 52%, #8c9bab 100%);
	border-radius: 26px;
	bottom: 74px;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.5),
		0 32px 70px rgba(0, 0, 0, 0.4);
	height: 330px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%) perspective(900px) rotateY(-12deg);
	width: 180px;
}

.kz-product-tower::before,
.kz-product-tower::after {
	content: "";
	left: 26px;
	position: absolute;
	right: 26px;
}

.kz-product-tower::before {
	background: linear-gradient(90deg, var(--kezhun-electric), #7cf6ce);
	border-radius: 999px;
	box-shadow: 0 0 22px rgba(67, 215, 255, 0.7);
	height: 6px;
	top: 34px;
}

.kz-product-tower::after {
	background:
		repeating-linear-gradient(180deg, rgba(13, 28, 44, 0.22) 0 1px, transparent 1px 38px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
	border-radius: 16px;
	bottom: 28px;
	top: 70px;
}

.kz-product-orbit {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	position: absolute;
}

.kz-product-orbit--one {
	height: 74%;
	left: 13%;
	top: 13%;
	width: 74%;
}

.kz-product-orbit--two {
	height: 56%;
	left: 22%;
	top: 22%;
	transform: rotate(-22deg);
	width: 56%;
}

.kz-payment-panel {
	color: var(--kezhun-white);
	padding: 28px;
}

.kz-payment-panel h3 {
	color: var(--kezhun-white);
	font-size: 22px;
	margin-top: 0;
}

.kz-payment-panel p {
	color: #cbd8e4;
	line-height: 1.6;
}

.kz-proof-strip {
	background: #07090c;
	color: var(--kezhun-white);
	padding: 0 0 28px;
}

.kz-proof-strip__inner {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
		rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
	display: grid;
	gap: 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	overflow: hidden;
	transform: translateY(-36px);
}

.kz-proof-strip__inner > div {
	padding: 24px;
}

.kz-proof-strip__inner > div + div {
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.kz-proof-strip strong {
	color: var(--kezhun-white);
	display: block;
	font-size: 15px;
	margin-bottom: 7px;
}

.kz-proof-strip span {
	color: #b8c7d5;
	display: block;
	font-size: 13px;
	line-height: 1.55;
}

.kz-category-card,
.kz-solution-card {
	min-height: 260px;
	overflow: hidden;
	position: relative;
}

.kz-category-card::before,
.kz-solution-card::before {
	background: radial-gradient(circle at 20% 20%, rgba(67, 215, 255, 0.13), transparent 34%);
	content: "";
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 240ms ease;
}

.kz-category-card:hover::before,
.kz-solution-card:hover::before {
	opacity: 1;
}

.kz-card__number {
	color: rgba(21, 101, 216, 0.18);
	font-size: 56px;
	font-weight: 900;
	line-height: 1;
	position: absolute;
	right: 20px;
	top: 18px;
}

.kz-package-row {
	align-items: center;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 14px 44px rgba(16, 35, 63, 0.08);
	color: var(--kezhun-ink);
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1.5fr) auto;
	margin-bottom: 12px;
	padding: 18px;
}

.kz-package-row strong {
	color: var(--kezhun-navy);
	font-size: 17px;
}

.kz-package-row span {
	color: var(--kezhun-muted);
	line-height: 1.5;
}

.kz-card,
.kz-panel,
.kz-payment-panel,
.kz-package-row {
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.kz-button {
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

.kz-button::after {
	background: radial-gradient(circle at var(--kz-button-x, 50%) var(--kz-button-y, 50%), rgba(255, 255, 255, 0.55), transparent 34%);
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 180ms ease;
	z-index: 0;
}

.kz-button:hover::after {
	opacity: 1;
}

.kz-motion-ready .kz-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
	transition-delay: var(--kz-reveal-delay, 0ms);
}

.kz-motion-ready .kz-reveal.kz-is-visible,
.kz-reduced-motion .kz-reveal {
	opacity: 1;
	transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
	.kz-card:hover,
	.kz-panel:hover,
	.kz-payment-panel:hover,
	.kz-package-row:hover {
		border-color: rgba(67, 215, 255, 0.42);
		transform: translateY(-6px);
	}

	.kz-home-hero::after {
		animation: kezhun-hero-sheen 8s ease-in-out infinite;
	}

	.kz-product-stage::before {
		animation: kezhun-spin-glow 14s linear infinite;
	}

	.kz-product-tower {
		animation: kezhun-float 5.8s ease-in-out infinite;
	}
}

@media (max-width: 640px) {
	.site-branding,
	.site-title,
	.site-title a {
		max-width: calc(100vw - 3rem);
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

@keyframes kezhun-hero-sheen {
	0%,
	58% {
		transform: translateX(0) rotate(12deg);
	}

	100% {
		transform: translateX(420%) rotate(12deg);
	}
}

@keyframes kezhun-spin-glow {
	to {
		transform: rotate(360deg);
	}
}

@keyframes kezhun-float {
	0%,
	100% {
		transform: translateX(-50%) translateY(0) perspective(900px) rotateY(-12deg);
	}

	50% {
		transform: translateX(-50%) translateY(-14px) perspective(900px) rotateY(-7deg);
	}
}

@media (max-width: 1024px) {
	.kz-home-hero .kz-grid--2 {
		min-height: auto;
	}

	.kz-hero__stats,
	.kz-proof-strip__inner,
	.kz-package-row {
		grid-template-columns: 1fr;
	}

	.kz-proof-strip__inner > div + div {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.kz-hero__media {
		min-height: 420px;
	}

	.kz-product-stage {
		margin-right: auto;
		max-width: 420px;
	}
}

@media (max-width: 767px) {
	.kz-home-hero__actions,
	.kz-home-hero .kz-button {
		width: 100%;
	}

	.kz-hero__stats {
		grid-template-columns: 1fr;
	}

	.kz-hero__media {
		min-height: 320px;
	}

	.kz-product-stage {
		border-radius: 28px;
		max-width: 320px;
	}

	.kz-product-tower {
		bottom: 48px;
		height: 220px;
		width: 124px;
	}
}

/* Minimal editorial storefront 2026-08-22 */
.kz-minimal-hero {
	background: #f5f1e9;
	color: #17231f;
	overflow: hidden;
	padding: clamp(72px, 11vw, 154px) 0 clamp(64px, 8vw, 112px);
}

.kz-minimal-hero__grid,
.kz-minimal-project__grid {
	align-items: center;
	display: grid;
	gap: clamp(36px, 6vw, 100px);
	grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
}

.kz-minimal-eyebrow {
	color: #64766b;
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	margin-bottom: 22px;
}

.kz-minimal-hero h1,
.kz-minimal-section-heading h2,
.kz-minimal-project h2 {
	color: #17231f;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 0.98;
	margin: 0;
}

.kz-minimal-hero h1 {
	font-size: clamp(58px, 8vw, 136px);
	max-width: 760px;
}

.kz-minimal-hero p {
	color: #526057;
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1.68;
	margin: 32px 0 0;
	max-width: 620px;
}

.kz-minimal-hero__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 42px;
}

.kz-minimal-button {
	align-items: center;
	border: 1px solid transparent;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.03em;
	min-height: 52px;
	padding: 0 25px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.kz-minimal-button:hover,
.kz-minimal-button:focus-visible {
	transform: translateY(-2px);
}

.kz-minimal-button--dark {
	background: #17231f;
	border-color: #17231f;
	color: #fff;
}

.kz-minimal-button--dark:hover,
.kz-minimal-button--dark:focus-visible {
	background: #5c7162;
	border-color: #5c7162;
	color: #fff;
}

.kz-minimal-link,
.kz-minimal-route a {
	border-bottom: 1px solid currentColor;
	color: #1d2d26;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding-bottom: 5px;
	text-decoration: none;
}

.kz-minimal-link:hover,
.kz-minimal-link:focus-visible,
.kz-minimal-route a:hover,
.kz-minimal-route a:focus-visible {
	color: #758e7c;
}

.kz-minimal-hero__media {
	background: #d7ddd1;
	margin: 0;
	min-height: clamp(430px, 54vw, 710px);
	overflow: hidden;
	position: relative;
}

.kz-minimal-hero__media::after {
	background: linear-gradient(180deg, rgba(20, 34, 28, 0.03), rgba(20, 34, 28, 0.36));
	content: "";
	inset: 0;
	position: absolute;
}

.kz-minimal-hero__media img,
.kz-minimal-route--image img,
.kz-minimal-project figure img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.kz-minimal-hero__media img {
	filter: grayscale(22%) saturate(68%) contrast(1.03);
	position: absolute;
	inset: 0;
}

.kz-minimal-hero__media figcaption {
	bottom: 26px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	left: 28px;
	letter-spacing: 0.13em;
	position: absolute;
	z-index: 1;
}

.kz-minimal-paths {
	background: #fff;
	padding: clamp(76px, 10vw, 138px) 0;
}

.kz-minimal-section-heading {
	align-items: end;
	display: flex;
	gap: 42px;
	justify-content: space-between;
	margin-bottom: clamp(38px, 6vw, 70px);
}

.kz-minimal-section-heading .kz-minimal-eyebrow {
	margin: 0 0 7px;
	max-width: 220px;
}

.kz-minimal-section-heading h2 {
	font-size: clamp(40px, 5.2vw, 82px);
	max-width: 770px;
}

.kz-minimal-paths__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kz-minimal-route {
	background: #edf0e9;
	display: flex;
	flex-direction: column;
	min-height: 370px;
	padding: clamp(28px, 3.4vw, 52px);
}

.kz-minimal-route:nth-child(2) {
	background: #24332c;
	color: #fff;
}

.kz-minimal-route > span,
.kz-minimal-route--image span {
	color: #738476;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.kz-minimal-route h3 {
	color: #17231f;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 3vw, 48px);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1.02;
	margin: auto 0 20px;
}

.kz-minimal-route p {
	color: #556258;
	font-size: 15px;
	line-height: 1.62;
	margin: 0 0 30px;
}

.kz-minimal-route--project {
	background: #e5e0d5;
}

.kz-minimal-route--image {
	padding: 0;
	position: relative;
}

.kz-minimal-route--image::after {
	background: linear-gradient(180deg, rgba(13, 26, 20, 0.06), rgba(13, 26, 20, 0.78));
	content: "";
	inset: 0;
	position: absolute;
}

.kz-minimal-route--image img {
	filter: grayscale(22%) saturate(66%);
	position: absolute;
	inset: 0;
}

.kz-minimal-route--image > div {
	bottom: clamp(28px, 3.4vw, 52px);
	left: clamp(28px, 3.4vw, 52px);
	position: absolute;
	right: clamp(28px, 3.4vw, 52px);
	z-index: 1;
}

.kz-minimal-route--image h3 {
	color: #fff;
	margin: 18px 0 26px;
}

.kz-minimal-route--image a {
	color: #fff;
}

.kz-minimal-project {
	background: #17231f;
	padding: clamp(64px, 9vw, 128px) 0;
}

.kz-minimal-project figure {
	background: #314039;
	margin: 0;
	min-height: 410px;
}

.kz-minimal-project figure img {
	filter: grayscale(35%) saturate(58%);
}

.kz-minimal-project .kz-minimal-eyebrow {
	color: #b7c5b8;
}

.kz-minimal-project h2 {
	color: #fff;
	font-size: clamp(42px, 5.2vw, 80px);
	max-width: 690px;
}

.kz-minimal-project p {
	color: #c7d0c7;
	font-size: 17px;
	line-height: 1.68;
	margin: 30px 0 38px;
	max-width: 570px;
}

.kz-minimal-button--light {
	background: #f4f0e8;
	border-color: #f4f0e8;
	color: #17231f;
}

.kz-minimal-button--light:hover,
.kz-minimal-button--light:focus-visible {
	background: #b7c5b8;
	border-color: #b7c5b8;
	color: #17231f;
}

.kezhun-commercial-ess-form {
	background: #f4f0e8;
	border: 1px solid #d6d3c9;
	padding: clamp(24px, 4vw, 48px);
}

.kezhun-commercial-ess-form .kezhun-intake-grid {
	gap: 18px;
}

.kezhun-commercial-ess-follow-up {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 20px;
}

@media (max-width: 900px) {
	.kz-minimal-hero__grid,
	.kz-minimal-project__grid,
	.kz-minimal-paths__grid {
		grid-template-columns: 1fr;
	}

	.kz-minimal-hero__media {
		min-height: 510px;
	}

	.kz-minimal-route {
		min-height: 310px;
	}
}

@media (max-width: 640px) {
	.kz-minimal-hero {
		padding-top: 68px;
	}

	.kz-minimal-hero__actions,
	.kz-minimal-button {
		width: 100%;
	}

	.kz-minimal-section-heading {
		align-items: start;
		flex-direction: column;
		gap: 16px;
	}

	.kz-minimal-hero__media {
		min-height: 360px;
	}

	.kz-minimal-project figure {
		min-height: 290px;
	}
}

/* Scheme D editorial homepage: restrained motion, warm white, deep forest green. */
.kz-home-hero {
	background:
		radial-gradient(circle at 86% 14%, rgba(194, 214, 178, 0.15), transparent 32%),
		linear-gradient(135deg, #10241c 0%, #183126 58%, #0c1d16 100%);
	color: #f5f2ea;
	padding: clamp(28px, 4vw, 56px) 0 0;
}

.kz-home-hero::before {
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 96px 96px;
	mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
	opacity: 0.48;
}

.kz-home-hero::after {
	display: none;
}

.kz-home-language {
	align-items: center;
	background: rgba(12, 29, 22, 0.78);
	border: 1px solid rgba(245, 242, 234, 0.35);
	display: flex;
	gap: 10px;
	padding: 8px 10px 8px 13px;
	position: absolute;
	right: clamp(20px, 4vw, 56px);
	top: clamp(20px, 2.5vw, 34px);
	z-index: 2;
}

.kz-home-language label {
	color: #dce7d7;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.kz-home-language select {
	appearance: none;
	background: #f5f2ea url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23173027' d='m4 6 4 4 4-4z'/%3E%3C/svg%3E") no-repeat right 10px center / 12px;
	border: 0;
	border-radius: var(--kezhun-radius-card);
	color: #173027;
	cursor: pointer;
	font: inherit;
	font-size: clamp(12px, 0.25vw + 11px, 14px);
	font-weight: 700;
	min-height: 34px;
	min-width: 126px;
	padding: 7px 31px 7px 10px;
}

.kz-home-language select:focus-visible {
	box-shadow: 0 0 0 3px rgba(201, 217, 200, 0.55);
	outline: 0;
}

.kz-home-hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(36px, 6vw, 88px);
	grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
	min-height: min(780px, calc(100vh - 28px));
	padding-bottom: clamp(54px, 7vw, 112px);
	padding-top: clamp(46px, 7vw, 98px);
}

.kz-home-kicker {
	align-items: center;
	color: #c9d9c8;
	display: flex;
	font-size: 11px;
	font-weight: 800;
	gap: 12px;
	letter-spacing: 0.16em;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.kz-home-kicker::before {
	background: currentColor;
	content: '';
	height: 1px;
	width: 34px;
}

.kz-home-kicker--dark {
	color: #52705d;
}

.kz-home-hero h1,
.kz-home-heading h2,
.kz-home-project h2,
.kz-home-lighting h2,
.kz-home-final h2 {
	color: inherit;
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 0.98;
	text-wrap: balance;
}

.kz-home-hero h1 {
	font-size: clamp(56px, 7.1vw, 108px);
	margin: 0;
	max-width: 800px;
}

.kz-home-hero h1 span {
	color: #c9d9c8;
	display: block;
	font-size: 0.72em;
	margin-top: 0.14em;
}

.kz-home-hero__lead {
	color: #d2dbd1;
	font-size: clamp(17px, 1.45vw, 22px);
	line-height: 1.65;
	margin: 30px 0 0;
	max-width: 660px;
}

.kz-home-actions,
.kz-home-final__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 36px;
}

.kz-home-button {
	align-items: center;
	border: 1px solid transparent;
	display: inline-flex;
	font-size: clamp(13px, 0.3vw + 12px, 15px);
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.01em;
	min-height: 52px;
	padding: 15px 23px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.kz-home-button:hover,
.kz-home-button:focus-visible {
	transform: translateY(-2px);
}

.kz-home-button--light {
	background: #f5f2ea;
	border-color: #f5f2ea;
	color: #173027;
}

.kz-home-button--light:hover,
.kz-home-button--light:focus-visible {
	background: #dbe6d5;
	border-color: #dbe6d5;
	color: #10241c;
}

.kz-home-button--dark {
	background: #173027;
	border-color: #173027;
	color: #f5f2ea;
}

.kz-home-button--dark:hover,
.kz-home-button--dark:focus-visible {
	background: #28473a;
	border-color: #28473a;
	color: #f5f2ea;
}

.kz-home-text-link {
	align-items: center;
	color: #f5f2ea;
	display: inline-flex;
	font-size: clamp(13px, 0.3vw + 12px, 15px);
	font-weight: 800;
	gap: 10px;
	padding: 12px 0;
	text-decoration: none;
}

.kz-home-text-link span[aria-hidden='true'] {
	font-size: 19px;
	transition: transform 180ms ease;
}

.kz-home-text-link:hover span[aria-hidden='true'],
.kz-home-text-link:focus-visible span[aria-hidden='true'] {
	transform: translateX(5px);
}

.kz-home-text-link--dark {
	color: #173027;
}

.kz-home-hero__notes {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 18px;
	margin-top: 42px;
}

.kz-home-hero__notes span {
	align-items: center;
	color: #b9caba;
	display: inline-flex;
	font-size: clamp(12px, 0.25vw + 11px, 14px);
	gap: 8px;
}

.kz-home-hero__notes span::before {
	background: #b7cda4;
	border-radius: 50%;
	content: '';
	height: 5px;
	width: 5px;
}

.kz-home-hero__visual {
	align-self: stretch;
	aspect-ratio: 16 / 11;
	border: 1px solid rgba(245, 242, 234, 0.28);
	margin: 0;
	min-height: 540px;
	overflow: hidden;
	position: relative;
}

.kz-home-hero__visual::after {
	background: linear-gradient(180deg, transparent 42%, rgba(10, 28, 20, 0.94) 100%);
	content: '';
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.kz-home-hero__visual img,
.kz-home-project__image img,
.kz-home-lighting figure img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.kz-home-hero__visual img {
	filter: saturate(0.72) contrast(1.04);
	object-position: 64% center;
	transition: transform 720ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.kz-home-hero__visual:hover img {
	transform: scale(1.035);
}

.kz-home-hero__visual figcaption {
	bottom: 0;
	display: grid;
	gap: 8px;
	left: 0;
	padding: 30px;
	position: absolute;
	right: 0;
	z-index: 1;
}

.kz-home-hero__visual figcaption span {
	color: #c6d9bd;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.kz-home-hero__visual figcaption strong {
	color: #fffdf8;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(22px, 2vw, 31px);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.1;
	max-width: 360px;
}

.kz-home-proof {
	background: #e8eee5;
	border-bottom: 1px solid #cad7c9;
}

.kz-home-proof__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kz-home-proof__grid > div {
	border-left: 1px solid #cad7c9;
	display: grid;
	gap: 9px;
	min-height: 142px;
	padding: clamp(24px, 3vw, 38px);
}

.kz-home-proof__grid > div:last-child {
	border-right: 1px solid #cad7c9;
}

.kz-home-proof strong {
	color: #173027;
	font-size: clamp(15px, 0.35vw + 13px, 18px);
}

.kz-home-proof span {
	color: #53695c;
	font-size: clamp(13px, 0.2vw + 12px, 15px);
	line-height: 1.55;
}

.kz-home-section {
	padding: clamp(74px, 10vw, 144px) 0;
}

.kz-home-section--paths,
.kz-home-section--solutions {
	background: #f7f5ef;
}

.kz-home-heading {
	margin-bottom: clamp(34px, 5vw, 64px);
	max-width: 850px;
}

.kz-home-heading h2 {
	color: #173027;
	font-size: clamp(40px, 5.2vw, 75px);
	margin: 0;
}

.kz-home-heading--split {
	align-items: end;
	display: flex;
	gap: 22px;
	justify-content: space-between;
	max-width: none;
}

.kz-home-paths {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kz-home-path {
	background: #e7ece3;
	border-left: 1px solid #cbd5c9;
	color: #173027;
	display: flex;
	flex-direction: column;
	min-height: 330px;
	padding: 24px;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease;
}

.kz-home-path:last-child {
	border-right: 1px solid #cbd5c9;
}

.kz-home-path:nth-child(2n) {
	background: #dce5d8;
}

.kz-home-path:hover,
.kz-home-path:focus-visible {
	background: #173027;
	color: #f8f5ed;
}

.kz-home-path > span {
	color: #617a68;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.kz-home-path:hover > span,
.kz-home-path:focus-visible > span {
	color: #c3d4bc;
}

.kz-home-path strong {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(24px, 2.2vw, 34px);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1;
	margin: auto 0 18px;
}

.kz-home-path em,
.kz-home-category em {
	font-size: 13px;
	font-style: normal;
	line-height: 1.55;
}

.kz-home-path em::after {
	content: '  →';
	font-size: 16px;
}

.kz-home-section--catalog {
	background: #fffdfa;
}

.kz-home-catalog {
	border-left: 1px solid #d6ddd2;
	border-top: 1px solid #d6ddd2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kz-home-category {
	border-bottom: 1px solid #d6ddd2;
	border-right: 1px solid #d6ddd2;
	color: #173027;
	display: flex;
	flex-direction: column;
	min-height: 236px;
	padding: 24px;
	position: relative;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease;
}

.kz-home-category:hover,
.kz-home-category:focus-visible {
	background: #ecf2e8;
}

.kz-home-category > span {
	color: #6b846f;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.kz-home-category strong {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(25px, 2.2vw, 36px);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1.03;
	margin: auto 0 14px;
}

.kz-home-category em {
	color: #617064;
	max-width: 255px;
}

.kz-home-category i,
.kz-home-solutions i {
	bottom: 20px;
	color: #52715d;
	font-size: 21px;
	font-style: normal;
	position: absolute;
	right: 22px;
	transition: transform 180ms ease;
}

.kz-home-category:hover i,
.kz-home-category:focus-visible i,
.kz-home-solutions a:hover i,
.kz-home-solutions a:focus-visible i {
	transform: translateX(5px);
}

.kz-home-section--project {
	background: #173027;
	color: #f8f5ed;
}

.kz-home-project {
	align-items: stretch;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.kz-home-project__image {
	aspect-ratio: 16 / 11;
	min-height: 580px;
	overflow: hidden;
}

.kz-home-project__image img {
	filter: grayscale(32%) saturate(58%) brightness(0.84);
	object-position: 50% center;
	transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.kz-home-project__image:hover img {
	transform: scale(1.035);
}

.kz-home-project__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(40px, 7vw, 100px);
}

.kz-home-project h2 {
	font-size: clamp(42px, 5.1vw, 76px);
	margin: 0;
	max-width: 720px;
}

.kz-home-project__copy > p:not(.kz-home-kicker) {
	color: #c9d5c9;
	font-size: clamp(16px, 0.45vw + 14px, 19px);
	line-height: 1.68;
	margin: 28px 0 0;
	max-width: 620px;
}

.kz-home-steps {
	counter-reset: home-steps;
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 34px 0 38px;
	padding: 0;
}

.kz-home-steps li {
	align-items: center;
	border-top: 1px solid rgba(244, 242, 234, 0.22);
	color: #edf3ea;
	display: flex;
	font-size: 14px;
	gap: 16px;
	line-height: 1.45;
	padding-top: 12px;
}

.kz-home-steps li > span {
	color: #b7cda4;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.kz-home-steps b {
	font: inherit;
	font-weight: 500;
}

.kz-home-solutions {
	border-bottom: 1px solid #d0d9cd;
	border-top: 1px solid #d0d9cd;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kz-home-solutions a {
	align-items: center;
	border-left: 1px solid #d0d9cd;
	color: #173027;
	display: flex;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(21px, 2.2vw, 31px);
	letter-spacing: -0.04em;
	min-height: 120px;
	padding: 25px 56px 25px 24px;
	position: relative;
	text-decoration: none;
	transition: background-color 180ms ease;
}

.kz-home-solutions a:last-child {
	border-right: 1px solid #d0d9cd;
}

.kz-home-solutions a:hover,
.kz-home-solutions a:focus-visible {
	background: #e6ede1;
}

.kz-home-section--lighting {
	background: #10241c;
	color: #f8f5ed;
}

.kz-home-lighting {
	align-items: center;
	display: grid;
	gap: clamp(38px, 7vw, 108px);
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

.kz-home-lighting h2 {
	font-size: clamp(42px, 5vw, 72px);
	margin: 0;
	max-width: 660px;
}

.kz-home-lighting > div > p:not(.kz-home-kicker) {
	color: #c8d4c6;
	font-size: clamp(16px, 0.45vw + 14px, 19px);
	line-height: 1.68;
	margin: 28px 0 23px;
	max-width: 540px;
}

.kz-home-lighting figure {
	aspect-ratio: 16 / 11;
	border: 1px solid rgba(245, 242, 234, 0.22);
	margin: 0;
	min-height: 410px;
	overflow: hidden;
}

.kz-home-lighting figure img {
	filter: grayscale(35%) saturate(65%) brightness(0.86);
	object-position: 55% center;
	transition: transform 680ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.kz-home-lighting figure:hover img {
	transform: scale(1.03);
}

.kz-home-final {
	background: #dce7d7;
	padding: clamp(70px, 10vw, 138px) 0;
}

.kz-home-final__inner {
	align-items: end;
	border-bottom: 1px solid #aebfae;
	border-top: 1px solid #aebfae;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1.1fr) auto;
	padding: clamp(36px, 5vw, 66px) 0;
}

.kz-home-final .kz-home-kicker {
	color: #4d7057;
}

.kz-home-final h2 {
	color: #173027;
	font-size: clamp(46px, 6.2vw, 92px);
	margin: 0;
}

.kz-home-final p:not(.kz-home-kicker) {
	color: #506759;
	font-size: clamp(16px, 0.45vw + 14px, 19px);
	line-height: 1.65;
	margin: 24px 0 0;
	max-width: 600px;
}

.kz-home-final__actions {
	align-items: flex-start;
	flex-direction: column;
	margin: 0;
	min-width: 180px;
}

.kz-home-final .kz-home-text-link {
	color: #173027;
}

@media (max-width: 1100px) {
	.kz-home-paths {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.kz-home-path:nth-child(4) {
		border-left: 1px solid #cbd5c9;
	}

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

	.kz-home-catalog .kz-home-category:last-child {
		grid-column: span 3;
		min-height: 180px;
	}
}

@media (max-width: 900px) {
	.kz-home-hero__grid,
	.kz-home-project,
	.kz-home-lighting,
	.kz-home-final__inner {
		grid-template-columns: 1fr;
	}

	.kz-home-hero__grid {
		min-height: auto;
	}

	.kz-home-hero__visual {
		min-height: min(70vw, 580px);
	}

	.kz-home-project__image {
		min-height: min(66vw, 540px);
	}

	.kz-home-final__actions {
		align-items: center;
		flex-direction: row;
	}
}

@media (max-width: 640px) {
	.kz-home-hero {
		padding-top: 12px;
	}

	.kz-home-language {
		right: 20px;
		top: 16px;
	}

	.kz-home-language label {
		display: none;
	}

	.kz-home-hero__grid {
		gap: 38px;
		padding-bottom: 58px;
		padding-top: 96px;
	}

	.kz-home-hero h1 {
		font-size: clamp(50px, 15vw, 72px);
	}

	.kz-home-actions,
	.kz-home-final__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.kz-home-button {
		width: 100%;
	}

	.kz-home-hero__visual {
		min-height: 390px;
	}

	.kz-home-hero__visual figcaption {
		padding: 22px;
	}

	.kz-home-proof__grid,
	.kz-home-paths,
	.kz-home-catalog,
	.kz-home-solutions {
		grid-template-columns: 1fr;
	}

	.kz-home-proof__grid > div,
	.kz-home-proof__grid > div:last-child,
	.kz-home-path,
	.kz-home-path:last-child,
	.kz-home-solutions a,
	.kz-home-solutions a:last-child {
		border-left: 0;
		border-right: 0;
	}

	.kz-home-proof__grid > div + div {
		border-top: 1px solid #cad7c9;
	}

	.kz-home-path {
		border-bottom: 1px solid #cbd5c9;
		min-height: 215px;
	}

	.kz-home-path:nth-child(4) {
		border-left: 0;
	}

	.kz-home-catalog .kz-home-category:last-child {
		grid-column: auto;
		min-height: 230px;
	}

	.kz-home-heading--split {
		align-items: start;
		flex-direction: column;
	}

	.kz-home-category {
		min-height: 206px;
	}

	.kz-home-project__image,
	.kz-home-lighting figure {
		min-height: 310px;
	}

	.kz-home-project__copy {
		padding: 42px 24px 50px;
	}

	.kz-home-section--project .kz-container {
		padding-left: 0;
		padding-right: 0;
	}

	.kz-home-section--project .kz-home-project__copy {
		margin-left: auto;
		margin-right: auto;
		max-width: var(--kezhun-content-max);
		width: 100%;
	}
}

.kz-rtl .kz-home-language {
	left: clamp(20px, 4vw, 56px);
	right: auto;
}

.kz-rtl .kz-home-hero__content,
.kz-rtl .kz-home-project__copy,
.kz-rtl .kz-home-lighting > div,
.kz-rtl .kz-home-final__inner > div:first-child {
	text-align: right;
}

.kz-rtl .kz-home-kicker::before {
	order: 2;
}

.kz-rtl .kz-home-text-link span[aria-hidden='true'] {
	transform: rotate(180deg);
}

.kz-rtl .kz-home-text-link:hover span[aria-hidden='true'],
.kz-rtl .kz-home-text-link:focus-visible span[aria-hidden='true'] {
	transform: translateX(-5px) rotate(180deg);
}

@media (max-width: 640px) {
	.kz-rtl .kz-home-language {
		left: 20px;
		right: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kz-home-button,
	.kz-home-text-link span,
	.kz-home-hero__visual img,
	.kz-home-project__image img,
	.kz-home-lighting figure img,
	.kz-home-path,
	.kz-home-category,
	.kz-home-solutions a {
		transition: none;
	}
}

/* Scheme D base layer for catalog, solution, market, policy and form pages. */
:root {
	--kezhun-navy: #173027;
	--kezhun-navy-2: #28473a;
	--kezhun-blue: #28473a;
	--kezhun-cyan: #7d9c78;
	--kezhun-green: #315a42;
	--kezhun-orange: #a26f24;
	--kezhun-gray: #f1f3ed;
	--kezhun-line: #d6ddd2;
	--kezhun-ink: #173027;
	--kezhun-muted: #617064;
	--kezhun-white: #fffdfa;
	--kezhun-shadow: 0 18px 52px rgba(24, 49, 38, 0.08);
	--kezhun-radius-card: 14px;
	--kezhun-radius-panel: 22px;
}

body {
	background: #f7f5ef;
	color: #173027;
}

a {
	color: #28473a;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline-color: rgba(49, 90, 66, 0.46);
}

.kz-section {
	background: #fffdfa;
}

.kz-section--soft {
	background: #f1f3ed;
}

.kz-section--dark {
	background: #173027;
}

.kz-section--dark::before {
	display: none;
}

.kz-card,
.kz-panel,
.kezhun-product-panel,
.kezhun-customer-records,
.kezhun-commerce-note,
.kezhun-payment-gate,
.kezhun-shipping-gate,
.kezhun-form-disclaimer,
.kezhun-intake-success,
.kezhun-portal-message {
	border-color: #d6ddd2;
	border-radius: var(--kezhun-radius-panel);
	box-shadow: none;
}

.kz-card,
.kz-panel,
.kezhun-product-panel,
.kezhun-customer-records {
	background: #fffdfa;
}

.kz-card h2,
.kz-card h3,
.kz-panel h2,
.kz-panel h3,
.kz-section h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 400;
	letter-spacing: -0.035em;
}

.kz-button,
.woocommerce a.button.kz-button,
.woocommerce button.button.kz-button {
	background: #173027;
	border: 1px solid #173027;
	border-radius: var(--kezhun-radius-card);
	box-shadow: none;
	color: #f8f5ed;
	min-height: 48px;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.kz-button::after {
	display: none;
}

.kz-button:hover,
.kz-button:focus-visible {
	background: #315a42;
	border-color: #315a42;
	color: #fffdfa;
	transform: translateY(-2px);
}

.kz-button--green {
	background: #315a42;
	border-color: #315a42;
}

.kz-button--orange {
	background: #a26f24;
	border-color: #a26f24;
}

.kz-button--secondary,
.kz-button--ghost {
	background: transparent;
	border-color: #829682;
	color: #173027;
}

.kz-button--secondary:hover,
.kz-button--secondary:focus-visible,
.kz-button--ghost:hover,
.kz-button--ghost:focus-visible {
	background: #e6ede1;
	border-color: #829682;
	color: #173027;
}

.kz-pill {
	background: #edf2e9;
	border-color: #c5d2c1;
	border-radius: 999px;
	color: #456451;
}

.kz-pill--blue,
.kz-pill--green,
.kz-pill--orange {
	border-color: #c5d2c1;
	color: #456451;
}

.kz-category-card::before,
.kz-solution-card::before {
	background: linear-gradient(135deg, rgba(125, 156, 120, 0.13), transparent 54%);
}

.kz-card__number {
	color: rgba(49, 90, 66, 0.13);
}

.kz-package-row {
	background: #fffdfa;
	border-color: #d6ddd2;
	border-radius: var(--kezhun-radius-card);
	box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
	.kz-card:hover,
	.kz-panel:hover,
	.kz-payment-panel:hover,
	.kz-package-row:hover {
	border-color: #afc2ac;
	box-shadow: 0 16px 38px rgba(24, 49, 38, 0.08);
	transform: translateY(-3px);
	}
}

/* Reference-led KEZHUN editorial homepage. */
:root {
	--kz-editorial-green: #71c900;
	--kz-editorial-green-dark: #4f9700;
	--kz-editorial-ink: #10110f;
	--kz-editorial-muted: #5f625c;
	--kz-editorial-line: #d8dbd5;
	--kz-editorial-paper: #f7f8f5;
	--kz-editorial-radius-sm: 14px;
	--kz-editorial-radius-md: 22px;
	--kz-editorial-radius-lg: 34px;
}

body.home .site-header,
body.home .page-header,
body.home .entry-header,
body.home .entry-title {
	display: none;
}

body.home .site-main,
body.home .site-main > article,
body.home .entry-content {
	margin: 0;
	max-width: none;
	padding: 0;
}

.kz-editorial-home {
	background: #fff;
	color: var(--kz-editorial-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	margin-inline: 0;
	overflow: hidden;
	width: 100%;
}

.kz-editorial-home *,
.kz-editorial-home *::before,
.kz-editorial-home *::after {
	box-sizing: border-box;
}

.kz-editorial-home .screen-reader-text,
.kz-insights-body .screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.kz-insights-body .skip-link:focus {
	background: #fff;
	clip: auto;
	clip-path: none;
	color: #111;
	height: auto;
	left: 18px;
	padding: 12px 16px;
	position: fixed;
	top: 18px;
	width: auto;
	z-index: 10000;
}

.kz-editorial-shell,
.kz-editorial-nav,
.kz-editorial-hero__content,
.kz-editorial-proof {
	margin-inline: auto;
	max-width: 1540px;
	width: min(100% - clamp(36px, 7vw, 132px), 1540px);
}

.kz-editorial-hero {
	background: #f3f5f1;
	isolation: isolate;
	min-height: clamp(920px, 122vw, 1160px);
	position: relative;
}

.kz-editorial-hero::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 31%, rgba(255, 255, 255, 0.62) 47%, rgba(255, 255, 255, 0) 69%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.kz-editorial-hero__image {
	height: 100%;
	inset: 0;
	object-fit: cover;
	object-position: center center;
	position: absolute;
	width: 100%;
	z-index: -2;
}

.kz-editorial-nav {
	align-items: center;
	display: grid;
	gap: clamp(18px, 3vw, 54px);
	grid-template-columns: minmax(140px, 0.7fr) auto minmax(250px, 0.8fr);
	left: 50%;
	padding-block: clamp(26px, 3.4vw, 54px);
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	z-index: 10;
}

.kz-editorial-brand {
	color: var(--kz-editorial-ink);
	font-size: clamp(20px, 1.5vw, 28px);
	font-weight: 760;
	letter-spacing: 0.2em;
	line-height: 1;
	text-decoration: none;
}

.kz-editorial-menu {
	align-items: center;
	display: flex;
	gap: clamp(20px, 2.6vw, 46px);
	justify-content: center;
}

.kz-editorial-menu a,
.kz-editorial-contact,
.kz-editorial-heading-row > a,
.kz-editorial-explore {
	color: var(--kz-editorial-ink);
	font-size: clamp(13px, 0.32vw + 11px, 16px);
	font-weight: 560;
	text-decoration: none;
}

.kz-editorial-menu a {
	position: relative;
}

.kz-editorial-menu a::after {
	background: var(--kz-editorial-green);
	bottom: -8px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	width: 100%;
}

.kz-editorial-menu a:hover::after,
.kz-editorial-menu a:focus-visible::after {
	transform: scaleX(1);
}

.kz-editorial-nav__actions {
	align-items: center;
	display: flex;
	gap: 14px;
	justify-content: flex-end;
}

.kz-editorial-language select {
	appearance: none;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(16, 17, 15, 0.18);
	border-radius: var(--kz-editorial-radius-sm);
	color: var(--kz-editorial-ink);
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	height: 42px;
	min-width: 66px;
	padding: 0 12px;
	text-align: center;
}

.kz-editorial-cta {
	align-items: center;
	background: var(--kz-editorial-green);
	border: 1px solid var(--kz-editorial-green);
	border-radius: var(--kz-editorial-radius-sm);
	color: #0b0c09;
	display: inline-flex;
	font-size: clamp(13px, 0.42vw + 11px, 17px);
	font-weight: 620;
	gap: clamp(24px, 3vw, 56px);
	justify-content: space-between;
	min-height: 54px;
	padding: 13px 20px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
	white-space: nowrap;
}

.kz-editorial-cta--nav {
	min-height: 46px;
	min-width: 164px;
	padding-block: 10px;
}

.kz-editorial-cta:hover,
.kz-editorial-cta:focus-visible {
	background: #87e112;
	border-color: #87e112;
	color: #0b0c09;
	transform: translateY(-2px);
}

.kz-editorial-cta img,
.kz-editorial-heading-row img,
.kz-editorial-explore img {
	display: block;
}

button.kz-editorial-menu-toggle {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(16, 17, 15, 0.22);
	border-radius: var(--kz-editorial-radius-sm);
	cursor: pointer;
	display: none !important;
	height: 46px;
	justify-content: center;
	padding: 0;
	width: 46px;
}

.kz-editorial-hero__content {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	left: 50%;
	min-height: clamp(920px, 122vw, 1160px);
	padding-bottom: clamp(132px, 12vw, 190px);
	padding-top: clamp(150px, 13vw, 210px);
	pointer-events: none;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	z-index: 1;
}

.kz-editorial-hero__content > * {
	pointer-events: auto;
}

.kz-editorial-eyebrow {
	align-items: center;
	color: #1b1e19;
	display: flex;
	font-size: clamp(11px, 0.22vw + 10px, 14px);
	font-weight: 720;
	gap: 16px;
	letter-spacing: 0.035em;
	margin: 0 0 clamp(30px, 4vw, 64px);
	text-transform: uppercase;
}

.kz-editorial-eyebrow::before {
	background: var(--kz-editorial-green);
	content: "";
	height: 3px;
	width: 38px;
}

.kz-editorial-eyebrow--dark {
	margin-bottom: 30px;
}

.kz-editorial-hero h1 {
	color: #080a08;
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(58px, 6.2vw, 108px);
	font-weight: 690;
	letter-spacing: -0.066em;
	line-height: 0.97;
	margin: 0;
	max-width: 7.6em;
	text-wrap: balance;
}

.kz-editorial-benefits {
	display: flex;
	margin: clamp(42px, 5vw, 74px) 0 clamp(34px, 4vw, 56px);
}

.kz-editorial-benefits > div {
	align-items: center;
	border-right: 1px solid rgba(16, 17, 15, 0.22);
	display: flex;
	font-size: clamp(12px, 0.26vw + 11px, 15px);
	font-weight: 560;
	gap: 12px;
	margin-right: 22px;
	padding-right: 22px;
}

.kz-editorial-benefits > div:last-child {
	border-right: 0;
	margin-right: 0;
	padding-right: 0;
}

.kz-editorial-benefits img,
.kz-editorial-proof > a > img,
.kz-editorial-values img {
	filter: invert(58%) sepia(85%) saturate(1284%) hue-rotate(42deg) brightness(96%) contrast(103%);
}

.kz-editorial-hero__content > .kz-editorial-cta {
	max-width: 230px;
	width: 100%;
}

.kz-editorial-proof {
	align-items: stretch;
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: var(--kz-editorial-radius-md);
	bottom: clamp(18px, 2.4vw, 38px);
	box-shadow: 0 24px 70px rgba(20, 38, 29, 0.12);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	left: 50%;
	overflow: hidden;
	position: absolute;
	transform: translateX(-50%);
	z-index: 2;
}

.kz-editorial-proof > a {
	align-items: center;
	border-right: 1px solid rgba(16, 17, 15, 0.2);
	color: var(--kz-editorial-ink);
	display: flex;
	gap: 18px;
	justify-content: center;
	min-height: 112px;
	padding: 24px clamp(18px, 2.4vw, 42px);
	text-decoration: none;
}

.kz-editorial-proof > a:last-child {
	border-right: 0;
}

.kz-editorial-proof span {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.kz-editorial-proof strong {
	font-size: clamp(15px, 0.55vw + 12px, 21px);
	font-weight: 690;
}

.kz-editorial-proof em {
	color: var(--kz-editorial-muted);
	font-size: clamp(10px, 0.22vw + 9px, 13px);
	font-style: normal;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kz-editorial-families {
	background: #fff;
	padding: clamp(92px, 10vw, 160px) 0 clamp(62px, 7vw, 110px);
}

.kz-editorial-heading-row {
	align-items: flex-end;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	margin-bottom: clamp(50px, 6vw, 92px);
}

.kz-editorial-heading-row h2,
.kz-editorial-project h2 {
	color: var(--kz-editorial-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(42px, 4.2vw, 72px);
	font-weight: 660;
	letter-spacing: -0.055em;
	line-height: 1;
	margin: 0;
}

.kz-editorial-heading-row > a,
.kz-editorial-explore {
	align-items: center;
	display: inline-flex;
	gap: 18px;
}

.kz-editorial-heading-row > a {
	border-bottom: 1px solid var(--kz-editorial-ink);
	padding-bottom: 8px;
}

.kz-editorial-family-grid {
	display: grid;
	gap: clamp(16px, 2.2vw, 34px);
	grid-template-columns: repeat(3, 1fr);
}

.kz-editorial-family-card {
	background: #f4f6f1;
	border: 1px solid #e2e6dd;
	border-radius: var(--kz-editorial-radius-md);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	padding: clamp(26px, 2.6vw, 42px);
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.kz-editorial-family-card:hover {
	border-color: rgba(113, 201, 0, 0.55);
	box-shadow: 0 24px 60px rgba(20, 38, 29, 0.09);
	transform: translateY(-5px);
}

.kz-editorial-family-card h3 {
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(20px, 1.45vw, 28px);
	font-weight: 560;
	letter-spacing: -0.035em;
	margin: 0;
}

.kz-editorial-family-card h3::after {
	background: var(--kz-editorial-ink);
	content: "";
	display: block;
	height: 1px;
	margin-top: 18px;
	width: 44px;
}

.kz-editorial-family-card__image {
	align-items: center;
	background: #fff;
	border-radius: calc(var(--kz-editorial-radius-md) - 6px);
	display: flex;
	flex: 1;
	justify-content: center;
	min-height: clamp(360px, 35vw, 580px);
	margin: clamp(24px, 3vw, 42px) 0 22px;
	overflow: hidden;
	padding: clamp(28px, 4vw, 66px) clamp(14px, 2vw, 30px) 20px;
}

.kz-editorial-family-card__image img {
	display: block;
	height: auto;
	max-height: clamp(340px, 33vw, 540px);
	max-width: 100%;
	object-fit: contain;
	transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
	width: auto;
}

.kz-editorial-family-card:hover .kz-editorial-family-card__image img {
	transform: translateY(-8px) scale(1.018);
}

.kz-editorial-explore {
	align-self: flex-start;
	border-bottom: 1px solid var(--kz-editorial-ink);
	margin-top: auto;
	padding-bottom: 8px;
}

.kz-editorial-values {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, 1fr);
	margin-top: clamp(54px, 7vw, 104px);
}

.kz-editorial-values > div {
	align-items: center;
	background: #f4f6f1;
	border: 1px solid #e2e6dd;
	border-radius: calc(var(--kz-editorial-radius-sm) + 2px);
	display: flex;
	font-size: clamp(12px, 0.32vw + 11px, 16px);
	font-weight: 600;
	gap: 16px;
	justify-content: center;
	min-height: 78px;
	padding: 18px 20px;
}

.kz-editorial-project {
	background: #fff;
	color: #f3f7ef;
	padding: clamp(36px, 5vw, 82px) 0 clamp(82px, 9vw, 150px);
}

.kz-editorial-insights {
	background: var(--kz-editorial-paper);
	border-top: 1px solid var(--kz-editorial-line);
	padding: clamp(82px, 9vw, 148px) 0;
}

.kz-editorial-insight-grid {
	display: grid;
	gap: clamp(18px, 2.2vw, 34px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kz-editorial-insight-card {
	background: #fff;
	border: 1px solid #e2e6dd;
	border-radius: var(--kz-editorial-radius-md);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.kz-editorial-insight-card:hover {
	border-color: rgba(113, 201, 0, 0.58);
	box-shadow: 0 24px 60px rgba(20, 38, 29, 0.1);
	transform: translateY(-5px);
}

.kz-editorial-insight-card__media {
	background: #e8ece4;
	display: block;
	overflow: hidden;
}

.kz-editorial-insight-card__media img {
	display: block;
	height: clamp(220px, 21vw, 350px);
	object-fit: cover;
	transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
	width: 100%;
}

.kz-editorial-insight-card:hover .kz-editorial-insight-card__media img {
	transform: scale(1.025);
}

.kz-editorial-insight-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(24px, 2.4vw, 38px);
}

.kz-editorial-insight-card time {
	color: var(--kz-editorial-green-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kz-editorial-insight-card h3 {
	font-size: clamp(24px, 1.7vw, 34px);
	font-weight: 650;
	letter-spacing: -0.045em;
	line-height: 1.12;
	margin: 24px 0 16px;
}

.kz-editorial-insight-card h3 a {
	color: var(--kz-editorial-ink);
	text-decoration: none;
}

.kz-editorial-insight-card p {
	color: var(--kz-editorial-muted);
	font-size: clamp(14px, 0.3vw + 13px, 17px);
	line-height: 1.65;
	margin: 0 0 28px;
}

.kz-editorial-project__card {
	background: #14261d;
	border-radius: var(--kz-editorial-radius-lg);
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	min-height: clamp(620px, 48vw, 760px);
	overflow: hidden;
	position: relative;
	box-shadow: 0 34px 90px rgba(20, 38, 29, 0.18);
}

.kz-editorial-project__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(48px, 6vw, 104px);
}

.kz-editorial-project h2,
.kz-editorial-project .kz-editorial-eyebrow {
	color: #f4f7f1;
}

.kz-editorial-project p:not(.kz-editorial-eyebrow) {
	color: #cdd7cf;
	font-size: clamp(16px, 0.65vw + 13px, 22px);
	line-height: 1.65;
	margin: clamp(26px, 3vw, 44px) 0 0;
	max-width: 36em;
}

.kz-editorial-project__steps {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: clamp(30px, 3.6vw, 54px) 0;
}

.kz-editorial-project__steps > div {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--kz-editorial-radius-sm);
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 112px;
	padding: 18px;
}

.kz-editorial-project__steps span {
	color: var(--kz-editorial-green);
	font-size: 12px;
	font-weight: 760;
	letter-spacing: 0.12em;
}

.kz-editorial-project__steps strong {
	color: #f4f7f1;
	font-size: clamp(13px, 0.36vw + 11px, 16px);
	font-weight: 610;
	line-height: 1.35;
}

.kz-editorial-project__media {
	margin: 0;
	min-height: 100%;
	overflow: hidden;
	position: relative;
}

.kz-editorial-project__media::after {
	background: linear-gradient(90deg, rgba(20, 38, 29, 0.34), transparent 28%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.kz-editorial-project__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: 60% center;
	transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
	width: 100%;
}

.kz-editorial-project__card:hover .kz-editorial-project__media img {
	transform: scale(1.025);
}

.kz-editorial-project__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.kz-editorial-project .kz-editorial-contact {
	border-bottom: 1px solid #f4f7f1;
	color: #f4f7f1;
	padding-bottom: 6px;
}

.kz-editorial-mobile-actions {
	display: none;
}

.kz-rtl .kz-editorial-home {
	direction: rtl;
}

.kz-rtl .kz-editorial-eyebrow::before {
	order: 2;
}

@media (max-width: 860px) {
	.kz-editorial-nav {
		gap: 18px;
		grid-template-columns: minmax(120px, 1fr) auto auto;
	}

	.kz-editorial-brand {
		grid-column: 1;
		grid-row: 1;
	}

	button.kz-editorial-menu-toggle {
		display: flex !important;
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	.kz-editorial-menu {
		align-items: stretch;
		background: rgba(255, 255, 255, 0.98);
		border: 1px solid rgba(16, 17, 15, 0.18);
		border-radius: var(--kz-editorial-radius-md);
		box-shadow: 0 24px 70px rgba(20, 38, 29, 0.13);
		display: none;
		flex-direction: column;
		gap: 0;
		grid-column: 1 / -1;
		left: 0;
		padding: 14px 24px;
		position: absolute;
		top: 92px;
		width: 100%;
	}

	.kz-editorial-menu.is-open {
		display: flex;
	}

	.kz-editorial-menu a {
		border-bottom: 1px solid var(--kz-editorial-line);
		font-size: 17px;
		padding: 15px 0;
	}

	.kz-editorial-menu a:last-child {
		border-bottom: 0;
	}

	.kz-editorial-nav__actions {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.kz-editorial-cta--nav {
		display: none;
	}

	.kz-editorial-hero::before {
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.32) 72%, transparent 100%);
	}
}

@media (max-width: 820px) {
	.kz-editorial-shell,
	.kz-editorial-nav,
	.kz-editorial-hero__content,
	.kz-editorial-proof {
		width: min(100% - 36px, 1540px);
	}

	.kz-editorial-hero {
		min-height: 940px;
	}

	.kz-editorial-hero::before {
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 45%, rgba(255, 255, 255, 0.18) 76%, rgba(255, 255, 255, 0.08) 100%);
	}

	.kz-editorial-hero__image {
		object-position: 64% center;
	}

	.kz-editorial-nav {
		padding-top: 24px;
	}

	.kz-editorial-nav__actions {
		justify-self: end;
		margin-right: 0;
	}

	.kz-editorial-hero__content {
		height: auto;
		justify-content: flex-start;
		min-height: 0;
		padding: 154px 0 270px;
	}

	.kz-editorial-hero h1 {
		font-size: clamp(52px, 14vw, 78px);
		max-width: 7.2em;
	}

	.kz-editorial-benefits {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		margin: 34px 0;
	}

	.kz-editorial-benefits > div {
		border-right: 0;
		margin: 0;
		padding: 0;
	}

	.kz-editorial-proof {
		grid-template-columns: 1fr;
	}

	.kz-editorial-proof > a {
		border-bottom: 1px solid rgba(16, 17, 15, 0.18);
		border-right: 0;
		justify-content: flex-start;
		min-height: 76px;
	}

	.kz-editorial-proof > a:last-child {
		border-bottom: 0;
	}

	.kz-editorial-family-grid {
		grid-template-columns: 1fr;
	}

	.kz-editorial-insight-grid {
		grid-template-columns: 1fr;
	}

	.kz-editorial-family-card,
	.kz-editorial-family-card:first-child,
	.kz-editorial-family-card:last-child {
		border: 1px solid #e2e6dd;
		padding: 30px;
	}

	.kz-editorial-family-card__image {
		min-height: 390px;
		padding-top: 32px;
	}

	.kz-editorial-values {
		grid-template-columns: repeat(2, 1fr);
	}

	.kz-editorial-values > div {
		justify-content: flex-start;
	}

	.kz-editorial-project__card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.kz-editorial-project__media {
		min-height: 460px;
	}

	.kz-editorial-project__media::after {
		background: linear-gradient(180deg, rgba(20, 38, 29, 0.2), transparent 34%);
	}
}

@media (max-width: 540px) {
	.kz-editorial-shell,
	.kz-editorial-nav,
	.kz-editorial-hero__content,
	.kz-editorial-proof {
		width: min(100% - 28px, 1540px);
	}

	.kz-editorial-brand {
		font-size: 18px;
	}

	.kz-editorial-language select {
		height: 40px;
		min-width: 60px;
	}

	.kz-editorial-menu-toggle {
		height: 40px;
		width: 40px;
	}

	.kz-editorial-nav__actions {
		margin-right: 0;
	}

	.kz-editorial-menu {
		top: 78px;
	}

	.kz-editorial-hero {
		min-height: 900px;
	}

	.kz-editorial-hero__content {
		padding-top: 132px;
	}

	.kz-editorial-eyebrow {
		font-size: 10px;
		gap: 10px;
		margin-bottom: 26px;
	}

	.kz-editorial-eyebrow::before {
		width: 28px;
	}

	.kz-editorial-hero h1 {
		font-size: clamp(46px, 13.7vw, 62px);
		letter-spacing: -0.058em;
	}

	.kz-editorial-proof > a {
		gap: 14px;
		padding-inline: 18px;
	}

	.kz-editorial-heading-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.kz-editorial-heading-row h2,
	.kz-editorial-project h2 {
		font-size: clamp(38px, 11vw, 52px);
	}

	.kz-editorial-family-card__image {
		min-height: 330px;
	}

	.kz-editorial-values {
		grid-template-columns: 1fr;
	}

	.kz-editorial-project__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.kz-editorial-project__copy {
		padding: 38px 24px 30px;
	}

	.kz-editorial-project__steps {
		grid-template-columns: 1fr;
	}

	.kz-editorial-project__steps > div {
		min-height: 0;
	}

	.kz-editorial-project__media {
		min-height: 320px;
	}
}

@media (max-width: 700px) {
	.kz-editorial-home {
		display: flex;
		flex-direction: column;
		padding-bottom: calc(74px + env(safe-area-inset-bottom));
	}

	.kz-editorial-home > section {
		width: 100%;
	}

	.kz-editorial-hero {
		min-height: 780px;
		order: 1;
	}

	.kz-editorial-hero::before {
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.38) 70%, rgba(255, 255, 255, 0.04) 100%);
	}

	.kz-editorial-hero__image {
		object-position: 62% 54%;
	}

	.kz-editorial-nav {
		gap: 10px;
		grid-template-columns: minmax(112px, 1fr) auto auto;
		padding-top: 18px;
	}

	.kz-editorial-brand {
		font-size: clamp(17px, 5vw, 20px);
		letter-spacing: 0.18em;
	}

	.kz-editorial-menu {
		border-radius: 20px;
		padding: 12px 20px;
		top: 70px;
	}

	.kz-editorial-menu a {
		font-size: 16px;
		padding: 14px 0;
	}

	.kz-editorial-language select,
	.kz-editorial-menu-toggle {
		border-radius: 14px;
		height: 40px;
	}

	.kz-editorial-language select {
		min-width: 58px;
		padding-inline: 8px;
	}

	.kz-editorial-menu-toggle {
		width: 40px;
	}

	.kz-editorial-hero__content {
		padding: 118px 0 152px;
	}

	.kz-editorial-eyebrow {
		font-size: clamp(9px, 2.7vw, 11px);
		gap: 10px;
		letter-spacing: 0.045em;
		margin-bottom: 20px;
	}

	.kz-editorial-eyebrow::before {
		height: 2px;
		width: 28px;
	}

	.kz-editorial-hero h1 {
		font-size: clamp(45px, 13.2vw, 58px);
		letter-spacing: -0.06em;
		line-height: 0.95;
		max-width: 6.5em;
		text-wrap: balance;
	}

	.kz-editorial-hero h1.kz-copy-long {
		font-size: clamp(39px, 11.6vw, 50px);
		max-width: 7.8em;
	}

	.kz-editorial-hero h1.kz-copy-xlong {
		font-size: clamp(34px, 10.2vw, 44px);
		line-height: 0.98;
		max-width: 8.6em;
	}

	html:lang(de) .kz-editorial-hero h1,
	html:lang(es) .kz-editorial-hero h1,
	html:lang(fr) .kz-editorial-hero h1,
	html:lang(pt) .kz-editorial-hero h1,
	html:lang(ru) .kz-editorial-hero h1 {
		font-size: clamp(37px, 10.9vw, 48px);
		line-height: 0.98;
		max-width: 8em;
	}

	html:lang(ar) .kz-editorial-hero h1 {
		font-size: clamp(39px, 11.5vw, 50px);
		letter-spacing: -0.035em;
		line-height: 1.03;
		max-width: 7.7em;
	}

	.kz-editorial-benefits {
		display: grid;
		gap: 0;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		margin: 28px 0 26px;
		max-width: 340px;
	}

	.kz-editorial-benefits > div {
		align-items: flex-start;
		border-right: 1px solid rgba(16, 17, 15, 0.2);
		flex-direction: column;
		font-size: clamp(9px, 2.65vw, 11px);
		gap: 8px;
		line-height: 1.25;
		margin: 0;
		min-width: 0;
		padding: 0 10px;
	}

	.kz-editorial-benefits > div:first-child {
		padding-left: 0;
	}

	.kz-editorial-benefits > div:last-child {
		border-right: 0;
		padding-right: 0;
	}

	.kz-editorial-benefits img {
		height: 22px;
		width: 22px;
	}

	.kz-editorial-hero__content > .kz-editorial-cta {
		max-width: 210px;
		min-height: 50px;
	}

	.kz-editorial-proof {
		bottom: 14px;
		border-radius: 22px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.kz-editorial-proof > a,
	.kz-editorial-proof > a:last-child {
		align-items: flex-start;
		border-bottom: 0;
		border-right: 1px solid rgba(16, 17, 15, 0.15);
		flex-direction: column;
		gap: 9px;
		justify-content: center;
		min-height: 96px;
		padding: 13px 10px;
	}

	.kz-editorial-proof > a:last-child {
		border-right: 0;
	}

	.kz-editorial-proof > a > img {
		height: 22px;
		width: 22px;
	}

	.kz-editorial-proof strong {
		font-size: clamp(10px, 2.8vw, 12px);
		line-height: 1.25;
	}

	.kz-editorial-proof em {
		display: none;
	}

	.kz-editorial-families {
		order: 2;
		padding: 72px 0 58px;
	}

	.kz-editorial-heading-row {
		gap: 20px;
		margin-bottom: 34px;
	}

	.kz-editorial-heading-row h2,
	.kz-editorial-project h2 {
		font-size: clamp(35px, 10.4vw, 46px);
		line-height: 0.98;
		text-wrap: balance;
	}

	.kz-editorial-heading-row h2.kz-copy-long,
	.kz-editorial-project h2.kz-copy-long {
		font-size: clamp(31px, 9.2vw, 41px);
	}

	html:lang(de) .kz-editorial-heading-row h2,
	html:lang(de) .kz-editorial-project h2,
	html:lang(es) .kz-editorial-heading-row h2,
	html:lang(es) .kz-editorial-project h2,
	html:lang(fr) .kz-editorial-heading-row h2,
	html:lang(fr) .kz-editorial-project h2,
	html:lang(pt) .kz-editorial-heading-row h2,
	html:lang(pt) .kz-editorial-project h2,
	html:lang(ru) .kz-editorial-heading-row h2,
	html:lang(ru) .kz-editorial-project h2 {
		font-size: clamp(30px, 8.8vw, 40px);
	}

	.kz-editorial-heading-row > a {
		align-self: flex-start;
		font-size: 13px;
	}

	.kz-editorial-family-grid,
	.kz-editorial-insight-grid {
		display: flex;
		gap: 12px;
		margin-right: -14px;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		padding: 0 14px 8px 0;
		scroll-padding-inline: 0 14px;
		scroll-snap-type: inline mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.kz-editorial-family-grid::-webkit-scrollbar,
	.kz-editorial-insight-grid::-webkit-scrollbar {
		display: none;
	}

	.kz-editorial-family-card,
	.kz-editorial-family-card:first-child,
	.kz-editorial-family-card:last-child {
		border: 1px solid #e2e6dd;
		border-radius: 22px;
		flex: 0 0 min(82vw, 326px);
		padding: 22px;
		scroll-snap-align: start;
	}

	.kz-editorial-family-card h3 {
		font-size: 21px;
	}

	.kz-editorial-family-card__image {
		border-radius: 16px;
		margin: 22px 0 20px;
		min-height: 292px;
		padding: 26px 12px 18px;
	}

	.kz-editorial-family-card__image img {
		max-height: 264px;
	}

	.kz-editorial-values {
		gap: 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 36px;
	}

	.kz-editorial-values > div {
		font-size: 11px;
		gap: 9px;
		justify-content: flex-start;
		min-height: 64px;
		padding: 13px;
	}

	.kz-editorial-values img {
		height: 22px;
		width: 22px;
	}

	.kz-editorial-project {
		order: 3;
		padding: 22px 0 72px;
	}

	.kz-editorial-project__card {
		border-radius: 24px;
		box-shadow: 0 24px 60px rgba(20, 38, 29, 0.16);
	}

	.kz-editorial-project__copy {
		padding: 34px 22px 28px;
	}

	.kz-editorial-project p:not(.kz-editorial-eyebrow) {
		font-size: 15px;
		line-height: 1.6;
		margin-top: 22px;
	}

	.kz-editorial-project__steps {
		gap: 8px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		margin: 26px 0;
	}

	.kz-editorial-project__steps > div {
		gap: 8px;
		min-height: 90px;
		padding: 12px 10px;
	}

	.kz-editorial-project__steps strong {
		font-size: clamp(10px, 2.8vw, 12px);
	}

	.kz-editorial-project__actions {
		align-items: center;
		flex-direction: row;
		gap: 18px;
	}

	.kz-editorial-project__actions .kz-editorial-cta {
		flex: 1;
		gap: 16px;
		min-height: 50px;
		padding-inline: 16px;
	}

	.kz-editorial-project__media {
		min-height: 290px;
	}

	.kz-editorial-project__media img {
		object-position: 61% center;
	}

	.kz-editorial-insights {
		order: 4;
		padding: 72px 0 86px;
	}

	.kz-editorial-insight-card {
		border-radius: 22px;
		flex: 0 0 min(86vw, 342px);
		scroll-snap-align: start;
	}

	.kz-editorial-insight-card__media img {
		height: 220px;
	}

	.kz-editorial-insight-card__body {
		padding: 22px;
	}

	.kz-editorial-insight-card h3 {
		font-size: 24px;
		margin: 18px 0 14px;
	}

	.kz-editorial-insight-card p {
		display: -webkit-box;
		font-size: 14px;
		line-height: 1.55;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.kz-editorial-mobile-actions {
		align-items: stretch;
		backdrop-filter: blur(18px);
		background: rgba(255, 255, 255, 0.94);
		border: 1px solid rgba(16, 17, 15, 0.12);
		border-radius: 18px;
		bottom: max(10px, env(safe-area-inset-bottom));
		box-shadow: 0 18px 48px rgba(20, 38, 29, 0.2);
		display: grid;
		gap: 8px;
		grid-template-columns: 0.78fr 1.22fr;
		left: 12px;
		padding: 7px;
		position: fixed;
		right: 12px;
		z-index: 999;
	}

	.kz-editorial-mobile-actions a {
		align-items: center;
		border-radius: 13px;
		display: flex;
		font-size: 13px;
		font-weight: 700;
		justify-content: center;
		min-height: 48px;
		padding: 10px 14px;
		text-decoration: none;
	}

	.kz-editorial-mobile-actions__contact {
		border: 1px solid rgba(16, 17, 15, 0.2);
		color: var(--kz-editorial-ink);
	}

	.kz-editorial-mobile-actions__quote {
		background: var(--kz-editorial-green);
		color: #0b0c09;
		gap: 18px;
	}

	.kz-editorial-mobile-actions__quote img {
		display: block;
	}
}

@media (max-width: 380px) {
	.kz-editorial-nav {
		gap: 8px;
		grid-template-columns: minmax(104px, 1fr) auto auto;
	}

	.kz-editorial-brand {
		font-size: 16px;
		letter-spacing: 0.16em;
	}

	.kz-editorial-hero h1 {
		font-size: clamp(42px, 13vw, 50px);
	}

	.kz-editorial-project__copy {
		padding-inline: 20px;
	}
}

@media (min-width: 701px) and (max-width: 820px) {
	.kz-editorial-benefits {
		align-items: center;
		flex-direction: row;
		gap: 0;
		margin: 38px 0;
	}

	.kz-editorial-benefits > div {
		border-right: 1px solid rgba(16, 17, 15, 0.22);
		margin-right: 18px;
		padding-right: 18px;
	}

	.kz-editorial-benefits > div:last-child {
		border-right: 0;
		margin-right: 0;
		padding-right: 0;
	}

	.kz-editorial-proof {
		grid-template-columns: repeat(3, 1fr);
	}

	.kz-editorial-proof > a {
		border-bottom: 0;
		border-right: 1px solid rgba(16, 17, 15, 0.18);
		gap: 12px;
		justify-content: center;
		min-height: 108px;
		padding: 18px 14px;
	}

	.kz-editorial-proof > a:last-child {
		border-right: 0;
	}

	.kz-editorial-proof strong {
		font-size: 14px;
	}

	.kz-editorial-proof em {
		font-size: 9px;
	}

	.kz-editorial-family-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.kz-editorial-family-card,
	.kz-editorial-family-card:first-child,
	.kz-editorial-family-card:last-child {
		border: 1px solid #e2e6dd;
		padding: 20px;
	}

	.kz-editorial-family-card__image {
		min-height: 330px;
		padding-top: 30px;
	}

	.kz-editorial-family-card__image img {
		max-height: 310px;
	}

	.kz-editorial-values {
		grid-template-columns: repeat(4, 1fr);
	}

	.kz-editorial-values > div {
		font-size: 12px;
		gap: 10px;
		justify-content: center;
	}
}

@media (min-width: 861px) {
	.kz-editorial-family-card__image {
		min-height: clamp(400px, 40vw, 590px);
	}

	.kz-editorial-family-card__image img {
		max-height: clamp(390px, 38vw, 560px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.kz-editorial-home *,
	.kz-editorial-home *::before,
	.kz-editorial-home *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Customer-facing projects, technical insights, and site search. */
.kz-insights-body {
	background: #fff;
	color: var(--kz-editorial-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	margin: 0;
}

.kz-insights-body *,
.kz-insights-body *::before,
.kz-insights-body *::after {
	box-sizing: border-box;
}

.kz-insights-body img {
	height: auto;
	max-width: 100%;
}

.kz-insights-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--kz-editorial-line);
	position: sticky;
	top: 0;
	z-index: 100;
}

.admin-bar .kz-insights-header {
	top: 32px;
}

.kz-insights-header .kz-insights-header__inner {
	left: auto;
	min-height: 92px;
	padding-block: 18px;
	position: relative;
	top: auto;
	transform: none;
}

.kz-insights-header .kz-editorial-menu a.is-current::after {
	transform: scaleX(1);
}

.kz-insights-main {
	display: block;
	min-height: 60vh;
}

.kz-insights-hero {
	background: var(--kz-editorial-paper);
	border-bottom: 1px solid var(--kz-editorial-line);
	padding: clamp(78px, 9vw, 150px) 0 clamp(64px, 8vw, 126px);
}

.kz-insights-hero__grid {
	align-items: end;
	display: grid;
	gap: clamp(38px, 7vw, 112px);
	grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.kz-insights-hero h1,
.kz-article-hero h1 {
	color: var(--kz-editorial-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(48px, 5.8vw, 96px);
	font-weight: 680;
	letter-spacing: -0.06em;
	line-height: 0.98;
	margin: 0;
	text-wrap: balance;
}

.kz-insights-hero__grid > div:last-child > p {
	color: var(--kz-editorial-muted);
	font-size: clamp(17px, 0.8vw + 14px, 23px);
	line-height: 1.62;
	margin: 0 0 28px;
}

.kz-insights-search {
	align-items: stretch;
	background: #fff;
	border: 1px solid var(--kz-editorial-line);
	border-radius: var(--kz-editorial-radius-md);
	display: flex;
	overflow: hidden;
	padding: 7px;
}

.kz-insights-search input {
	background: transparent;
	border: 0;
	color: var(--kz-editorial-ink);
	font: inherit;
	font-size: clamp(14px, 0.35vw + 13px, 17px);
	min-height: 52px;
	min-width: 0;
	outline: 0;
	padding: 12px 16px;
	width: 100%;
}

.kz-insights-search button {
	background: var(--kz-editorial-green);
	border: 0;
	border-radius: var(--kz-editorial-radius-sm);
	color: #0b0c09;
	cursor: pointer;
	font: inherit;
	font-weight: 670;
	min-width: 110px;
	padding: 12px 18px;
}

.kz-insights-search-status {
	color: var(--kz-editorial-muted);
	font-size: 14px;
	margin: 12px 4px 0;
	min-height: 1.5em;
}

.kz-insight-card[hidden] {
	display: none;
}

.kz-insights-listing {
	padding: clamp(70px, 8vw, 130px) 0;
}

.kz-insight-grid {
	display: grid;
	gap: clamp(20px, 2.4vw, 38px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kz-insight-card {
	background: #f4f6f1;
	border: 1px solid #e2e6dd;
	border-radius: var(--kz-editorial-radius-md);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.kz-insight-card:hover {
	border-color: rgba(113, 201, 0, 0.58);
	box-shadow: 0 24px 60px rgba(20, 38, 29, 0.1);
	transform: translateY(-5px);
}

.kz-insight-card__media {
	background: #e8ece4;
	display: block;
	overflow: hidden;
}

.kz-insight-card__media img {
	display: block;
	height: clamp(230px, 22vw, 360px);
	object-fit: cover;
	transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
	width: 100%;
}

.kz-insight-card:hover .kz-insight-card__media img {
	transform: scale(1.025);
}

.kz-insight-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(24px, 2.4vw, 38px);
}

.kz-insight-card__meta,
.kz-article-meta {
	align-items: center;
	color: var(--kz-editorial-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: clamp(11px, 0.22vw + 10px, 13px);
	font-weight: 670;
	gap: 10px 18px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.kz-insight-card__meta span {
	color: var(--kz-editorial-green-dark);
}

.kz-insight-card h2,
.kz-search-result h2 {
	font-size: clamp(24px, 1.6vw, 34px);
	font-weight: 650;
	letter-spacing: -0.045em;
	line-height: 1.12;
	margin: 26px 0 18px;
}

.kz-insight-card h2 a,
.kz-search-result h2 a {
	color: var(--kz-editorial-ink);
	text-decoration: none;
}

.kz-insight-card__body > p,
.kz-search-result > p {
	color: var(--kz-editorial-muted);
	font-size: clamp(14px, 0.3vw + 13px, 17px);
	line-height: 1.68;
	margin: 0 0 30px;
}

.kz-insight-card__link {
	align-items: center;
	align-self: flex-start;
	border-bottom: 1px solid var(--kz-editorial-ink);
	color: var(--kz-editorial-ink);
	display: inline-flex;
	font-size: 14px;
	font-weight: 650;
	gap: 16px;
	margin-top: auto;
	padding-bottom: 7px;
	text-decoration: none;
}

.kz-insight-card__link img {
	display: block;
}

.kz-insights-pagination {
	margin-top: clamp(46px, 6vw, 90px);
}

.kz-insights-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.kz-insights-pagination .page-numbers {
	align-items: center;
	border: 1px solid var(--kz-editorial-line);
	border-radius: var(--kz-editorial-radius-sm);
	color: var(--kz-editorial-ink);
	display: inline-flex;
	justify-content: center;
	min-height: 46px;
	min-width: 46px;
	padding: 10px 14px;
	text-decoration: none;
}

.kz-insights-pagination .current {
	background: var(--kz-editorial-green);
	border-color: var(--kz-editorial-green);
}

.kz-insights-empty {
	background: var(--kz-editorial-paper);
	border: 1px solid var(--kz-editorial-line);
	border-radius: var(--kz-editorial-radius-lg);
	padding: clamp(34px, 6vw, 90px);
}

.kz-insights-empty h2 {
	font-size: clamp(30px, 3.4vw, 56px);
	letter-spacing: -0.05em;
	margin: 0 0 16px;
}

.kz-search-results {
	display: grid;
	gap: 16px;
}

.kz-search-result {
	background: var(--kz-editorial-paper);
	border: 1px solid var(--kz-editorial-line);
	border-radius: var(--kz-editorial-radius-md);
	padding: clamp(24px, 3vw, 44px);
}

.kz-search-result > span,
.kz-article-label {
	color: var(--kz-editorial-green-dark);
	font-size: 12px;
	font-weight: 730;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kz-search-result h2 {
	margin-block: 12px;
}

.kz-search-result > p {
	margin-bottom: 0;
}

.kz-article-hero {
	background: var(--kz-editorial-paper);
	border-bottom: 1px solid var(--kz-editorial-line);
	padding: clamp(76px, 9vw, 146px) 0 clamp(64px, 8vw, 124px);
}

.kz-article-hero__inner {
	max-width: 1180px;
}

.kz-article-hero h1 {
	font-size: clamp(44px, 5.4vw, 88px);
	max-width: 13em;
}

.kz-article-hero__dek {
	color: var(--kz-editorial-muted);
	font-size: clamp(18px, 1vw + 14px, 26px);
	line-height: 1.55;
	margin: clamp(28px, 4vw, 54px) 0 24px;
	max-width: 40em;
}

.kz-article-featured {
	border-radius: var(--kz-editorial-radius-lg);
	margin-block: clamp(34px, 5vw, 78px);
	overflow: hidden;
}

.kz-article-featured img {
	display: block;
	max-height: 820px;
	object-fit: cover;
	width: 100%;
}

.kz-article-layout {
	display: grid;
	gap: clamp(42px, 7vw, 112px);
	grid-template-columns: minmax(0, 1.58fr) minmax(280px, 0.62fr);
	padding-bottom: clamp(90px, 10vw, 170px);
}

.kz-article-content {
	min-width: 0;
}

.kz-article-answer {
	background: #eef6e5;
	border: 1px solid #cfdfbe;
	border-radius: var(--kz-editorial-radius-md);
	margin-bottom: clamp(34px, 5vw, 72px);
	padding: clamp(26px, 3.6vw, 52px);
}

.kz-article-answer > p:last-child {
	font-size: clamp(19px, 1vw + 15px, 27px);
	font-weight: 540;
	letter-spacing: -0.018em;
	line-height: 1.55;
	margin: 12px 0 0;
}

.kz-article-prose {
	color: #292c28;
	font-size: clamp(17px, 0.42vw + 15px, 21px);
	line-height: 1.78;
}

.kz-article-prose h2,
.kz-article-prose h3 {
	color: var(--kz-editorial-ink);
	font-weight: 660;
	letter-spacing: -0.045em;
	line-height: 1.12;
}

.kz-article-prose h2 {
	font-size: clamp(32px, 3vw, 52px);
	margin: 2em 0 0.7em;
}

.kz-article-prose h3 {
	font-size: clamp(24px, 2vw, 34px);
	margin: 1.8em 0 0.6em;
}

.kz-article-prose a,
.kz-article-aside a {
	color: #3f7900;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.kz-article-prose figure,
.kz-article-prose img,
.kz-article-prose pre,
.kz-article-prose table {
	border-radius: var(--kz-editorial-radius-md);
}

.kz-article-prose figure,
.kz-article-prose pre,
.kz-article-prose table {
	overflow: auto;
}

.kz-article-aside {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.kz-article-aside section {
	background: var(--kz-editorial-paper);
	border: 1px solid var(--kz-editorial-line);
	border-radius: var(--kz-editorial-radius-md);
	padding: clamp(22px, 2.4vw, 34px);
}

.kz-article-aside h2 {
	font-size: clamp(20px, 1.2vw, 26px);
	letter-spacing: -0.035em;
	margin: 0 0 18px;
}

.kz-article-aside p,
.kz-article-aside li {
	color: var(--kz-editorial-muted);
	font-size: 15px;
	line-height: 1.62;
}

.kz-article-aside ul,
.kz-article-aside ol {
	margin: 0;
	padding-left: 20px;
}

.kz-article-aside li + li {
	margin-top: 10px;
}

.kz-article-aside .kz-editorial-cta {
	color: var(--kz-editorial-ink);
	margin-top: 10px;
	text-decoration: none;
}

.kz-insights-footer {
	background: #14261d;
	color: #f3f7ef;
	padding: clamp(54px, 7vw, 100px) 0;
}

.kz-insights-footer__inner {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(240px, 1fr) auto;
}

.kz-insights-footer .kz-editorial-brand,
.kz-insights-footer a {
	color: #f3f7ef;
}

.kz-insights-footer p {
	color: #cdd7cf;
	line-height: 1.6;
	max-width: 38em;
}

.kz-insights-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 30px;
}

.kz-insights-footer nav a {
	font-size: 14px;
	text-decoration: none;
}

.kz-insights-footer__legal {
	font-size: 12px;
	grid-column: 1 / -1;
	margin: 22px 0 0;
}

@media (max-width: 980px) {
	.kz-insights-hero__grid,
	.kz-article-layout {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 860px) {
	.kz-insights-header .kz-editorial-menu {
		top: calc(100% - 8px);
	}
}

@media (max-width: 782px) {
	.admin-bar .kz-insights-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	.kz-insights-header .kz-insights-header__inner {
		min-height: 76px;
	}

	.kz-insights-hero,
	.kz-article-hero {
		padding-block: 62px;
	}

	.kz-insights-hero h1,
	.kz-article-hero h1 {
		font-size: clamp(40px, 12vw, 58px);
	}

	.kz-insights-search {
		align-items: stretch;
		flex-direction: column;
	}

	.kz-insights-search button {
		min-height: 48px;
		width: 100%;
	}

	.kz-insight-grid {
		grid-template-columns: 1fr;
	}

	.kz-insight-card__media img {
		height: 260px;
	}

	.kz-article-featured {
		border-radius: var(--kz-editorial-radius-md);
	}

	.kz-insights-footer__inner {
		grid-template-columns: 1fr;
	}

	.kz-insights-footer__legal {
		grid-column: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kz-insights-body *,
	.kz-insights-body *::before,
	.kz-insights-body *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Unified KEZHUN commerce experience. */
.kz-commerce-body {
	--kz-commerce-green: var(--kz-editorial-green, #71c900);
	--kz-commerce-green-dark: var(--kz-editorial-green-dark, #4f9700);
	--kz-commerce-ink: var(--kz-editorial-ink, #10110f);
	--kz-commerce-muted: var(--kz-editorial-muted, #5f625c);
	--kz-commerce-line: var(--kz-editorial-line, #d8dbd5);
	--kz-commerce-paper: var(--kz-editorial-paper, #f7f8f5);
	--kz-commerce-white: #ffffff;
	--kz-commerce-radius: var(--kz-editorial-radius-md, 22px);
	--kz-commerce-radius-small: var(--kz-editorial-radius-sm, 14px);
	background: var(--kz-commerce-white);
	color: var(--kz-commerce-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.kz-commerce-body :where(
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	p,
	a,
	button,
	input,
	select,
	textarea,
	label,
	table,
	th,
	td,
	.price,
	.amount,
	.woocommerce,
	.wc-block-components-button,
	.wc-block-components-text-input,
	.wc-block-components-product-name
) {
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.kz-commerce-main {
	min-height: 70vh;
}

.kz-commerce-hero {
	background: var(--kz-commerce-paper);
	border-bottom: 1px solid var(--kz-commerce-line);
	padding: clamp(66px, 8vw, 124px) 0 clamp(50px, 6vw, 92px);
}

.kz-commerce-hero__grid {
	align-items: end;
	display: grid;
	gap: clamp(34px, 8vw, 132px);
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
}

.kz-commerce-hero h1 {
	color: var(--kz-commerce-ink);
	font-size: clamp(44px, 6vw, 88px);
	font-weight: 690;
	letter-spacing: -0.065em;
	line-height: 0.98;
	margin: 22px 0 0;
	max-width: 12ch;
}

.kz-commerce-hero__copy {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.kz-commerce-hero__copy p {
	color: var(--kz-commerce-muted);
	font-size: clamp(17px, 0.55vw + 15px, 21px);
	line-height: 1.65;
	margin: 0;
	max-width: 34em;
}

.kz-commerce-showcase {
	background: linear-gradient(180deg, #f5f7f2 0%, #ffffff 100%);
	padding: 24px 0 0;
}

.kz-commerce-showcase__card {
	background: #eef1ec;
	border: 1px solid var(--kz-commerce-line);
	border-radius: 30px;
	box-shadow: 0 28px 70px rgba(20, 38, 29, 0.1);
	isolation: isolate;
	min-height: clamp(600px, 64vw, 780px);
	overflow: hidden;
	position: relative;
}

.kz-commerce-showcase__card::after {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.91) 35%, rgba(255, 255, 255, 0.34) 58%, rgba(255, 255, 255, 0) 76%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.kz-commerce-showcase__image {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	object-position: center;
	position: absolute;
	width: 100%;
}

.kz-commerce-showcase__copy {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	max-width: min(49%, 690px);
	min-height: inherit;
	padding: clamp(52px, 6.5vw, 104px);
	position: relative;
	z-index: 2;
}

.kz-commerce-showcase__copy h1 {
	color: var(--kz-commerce-ink);
	font-size: clamp(48px, 5.3vw, 84px);
	font-weight: 700;
	letter-spacing: -0.067em;
	line-height: 0.98;
	margin: 24px 0 26px;
	max-width: 10.5ch;
}

.kz-commerce-showcase__copy > p:not(.kz-editorial-eyebrow) {
	color: #4e524b;
	font-size: clamp(16px, 0.45vw + 14px, 20px);
	line-height: 1.68;
	margin: 0;
	max-width: 36em;
}

.kz-commerce-showcase__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
	margin-top: 34px;
}

.kz-commerce-showcase__routes {
	background: var(--kz-commerce-white);
	border: 1px solid var(--kz-commerce-line);
	border-radius: 22px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 16px;
	overflow: hidden;
}

.kz-commerce-showcase__routes a {
	align-items: center;
	color: var(--kz-commerce-ink);
	display: flex;
	gap: 15px;
	min-height: 108px;
	padding: 22px 26px;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease;
}

.kz-commerce-showcase__routes a + a {
	border-left: 1px solid var(--kz-commerce-line);
}

.kz-commerce-showcase__routes a:hover {
	background: #eef6e5;
}

.kz-commerce-showcase__routes img {
	filter: invert(53%) sepia(96%) saturate(681%) hue-rotate(43deg) brightness(93%) contrast(105%);
	flex: 0 0 auto;
}

.kz-commerce-showcase__routes span {
	display: grid;
	gap: 5px;
}

.kz-commerce-showcase__routes strong {
	font-size: 16px;
	font-weight: 680;
}

.kz-commerce-showcase__routes em {
	color: var(--kz-commerce-muted);
	font-size: 13px;
	font-style: normal;
	line-height: 1.45;
}

.kz-commerce-section-intro {
	align-items: end;
	display: grid;
	gap: 24px 72px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
	margin-bottom: clamp(30px, 5vw, 58px);
}

.kz-commerce-section-intro .kz-editorial-eyebrow {
	grid-column: 1 / -1;
	margin-bottom: -8px;
}

.kz-commerce-section-intro h2 {
	font-size: clamp(38px, 4.3vw, 64px);
	font-weight: 690;
	letter-spacing: -0.06em;
	line-height: 1;
	margin: 0;
	max-width: 14ch;
}

.kz-commerce-section-intro > p:not(.kz-editorial-eyebrow) {
	color: var(--kz-commerce-muted);
	font-size: 17px;
	line-height: 1.65;
	margin: 0;
}

.kz-commerce-content,
.kz-preview-detail,
#products,
#residential-detail,
#lighting-detail {
	scroll-margin-top: 118px;
}

.kz-commerce-content {
	padding-block: clamp(48px, 7vw, 104px);
}

.kz-commerce-empty {
	align-items: flex-start;
	background: var(--kz-commerce-surface);
	border: 1px solid var(--kz-commerce-line);
	border-radius: var(--kz-commerce-radius);
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: clamp(28px, 5vw, 56px);
}

.kz-commerce-empty p {
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 680;
	letter-spacing: -0.045em;
	line-height: 1.05;
	margin: 0;
}

.kz-commerce-empty span {
	color: var(--kz-commerce-muted);
	font-size: 16px;
	line-height: 1.65;
	max-width: 62ch;
}

.kz-commerce-body .woocommerce-breadcrumb {
	color: var(--kz-commerce-muted);
	font-size: 13px;
	letter-spacing: 0.02em;
	margin: 0 0 34px;
}

.kz-commerce-body .woocommerce-breadcrumb a {
	color: var(--kz-commerce-ink);
	text-decoration: none;
}

.kz-commerce-body .woocommerce-result-count,
.kz-commerce-body .woocommerce-ordering {
	margin-bottom: 34px;
}

.kz-commerce-body .woocommerce-result-count {
	color: var(--kz-commerce-muted);
	font-size: 14px;
	line-height: 48px;
}

.kz-commerce-body :where(select, input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="PASSWORD" i], input[type="search"], textarea),
.kz-commerce-body .select2-container--default .select2-selection--single {
	background: var(--kz-commerce-white);
	border: 1px solid var(--kz-commerce-line);
	border-radius: var(--kz-commerce-radius-small);
	box-shadow: none;
	color: var(--kz-commerce-ink);
	font-size: 15px;
	min-height: 48px;
	padding: 11px 15px;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.kz-commerce-body textarea {
	min-height: 132px;
	resize: vertical;
}

.kz-commerce-body :where(select, input, textarea):focus,
.kz-commerce-body .select2-container--default.select2-container--focus .select2-selection--single {
	border-color: var(--kz-commerce-green-dark);
	box-shadow: 0 0 0 3px rgba(113, 201, 0, 0.18);
	outline: none;
}

.kz-commerce-body .woocommerce-ordering select {
	min-width: 236px;
}

.kz-commerce-body .woocommerce ul.products {
	align-items: stretch;
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
}

.kz-commerce-body .woocommerce ul.products::before,
.kz-commerce-body .woocommerce ul.products::after {
	display: none;
}

.kz-commerce-body .woocommerce ul.products li.product,
.kz-commerce-body .woocommerce-page ul.products li.product {
	background: var(--kz-commerce-paper);
	border: 1px solid var(--kz-commerce-line);
	border-radius: var(--kz-commerce-radius);
	display: flex;
	float: none;
	flex-direction: column;
	margin: 0;
	overflow: hidden;
	padding: 0 0 24px;
	position: relative;
	width: auto;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.kz-commerce-body .woocommerce ul.products li.product:hover {
	border-color: rgba(113, 201, 0, 0.65);
	box-shadow: 0 22px 50px rgba(20, 38, 29, 0.09);
	transform: translateY(-4px);
}

.kz-commerce-body .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	color: inherit;
	display: flex;
	flex: 1;
	flex-direction: column;
	text-decoration: none;
}

.kz-commerce-body .woocommerce ul.products li.product a img {
	background: var(--kz-commerce-white);
	border-bottom: 1px solid var(--kz-commerce-line);
	height: clamp(280px, 30vw, 430px);
	margin: 0 0 24px;
	object-fit: contain;
	width: 100%;
}

.kz-commerce-body .woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--kz-commerce-ink);
	font-size: clamp(21px, 1.6vw, 28px);
	font-weight: 660;
	letter-spacing: -0.04em;
	line-height: 1.13;
	margin: 0;
	padding: 0 24px;
}

.kz-commerce-body .woocommerce ul.products li.product .price,
.kz-commerce-body .kezhun-tier-price-from {
	color: var(--kz-commerce-muted);
	font-size: 15px;
	font-weight: 560;
	line-height: 1.5;
	margin: 14px 0 0;
	padding-inline: 24px;
}

.kz-commerce-body .woocommerce ul.products li.product .price ins {
	color: var(--kz-commerce-ink);
	font-weight: 700;
	text-decoration: none;
}

.kz-commerce-body .woocommerce ul.products li.product .star-rating {
	color: var(--kz-commerce-green-dark);
	margin: 14px 24px 0;
}

.kz-commerce-body .woocommerce ul.products li.product .button,
.kz-commerce-body .woocommerce ul.products li.product .added_to_cart {
	margin: 20px 24px 0;
}

.kz-commerce-body :where(
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce #respond input#submit,
	.wc-block-components-button,
	.wp-element-button,
	.kz-button
) {
	align-items: center;
	background: var(--kz-commerce-green);
	border: 1px solid var(--kz-commerce-green);
	border-radius: var(--kz-commerce-radius-small);
	box-shadow: none;
	color: var(--kz-commerce-ink);
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	font-weight: 660;
	justify-content: center;
	letter-spacing: -0.01em;
	line-height: 1.2;
	min-height: 48px;
	padding: 14px 22px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.kz-commerce-body :where(
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce #respond input#submit,
	.wc-block-components-button,
	.wp-element-button,
	.kz-button
):hover {
	background: var(--kz-commerce-green-dark);
	border-color: var(--kz-commerce-green-dark);
	color: var(--kz-commerce-white);
	transform: translateY(-1px);
}

.kz-commerce-body :where(button, a, input, select, textarea):focus-visible {
	outline: 3px solid rgba(113, 201, 0, 0.38);
	outline-offset: 3px;
}

.kz-commerce-body .woocommerce span.onsale {
	background: var(--kz-commerce-ink);
	border-radius: 999px;
	color: var(--kz-commerce-white);
	font-size: 12px;
	font-weight: 700;
	left: 16px;
	line-height: 1;
	margin: 0;
	min-height: 0;
	min-width: 0;
	padding: 9px 12px;
	top: 16px;
}

.kz-commerce-body .woocommerce nav.woocommerce-pagination {
	margin-top: 48px;
}

.kz-commerce-body .woocommerce nav.woocommerce-pagination ul {
	border: 0;
	display: inline-flex;
	gap: 8px;
}

.kz-commerce-body .woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.kz-commerce-body .woocommerce nav.woocommerce-pagination ul li a,
.kz-commerce-body .woocommerce nav.woocommerce-pagination ul li span {
	align-items: center;
	border: 1px solid var(--kz-commerce-line);
	border-radius: 10px;
	color: var(--kz-commerce-ink);
	display: flex;
	height: 44px;
	justify-content: center;
	min-width: 44px;
	padding: 0 12px;
}

.kz-commerce-body .woocommerce nav.woocommerce-pagination ul li span.current,
.kz-commerce-body .woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--kz-commerce-green);
	border-color: var(--kz-commerce-green);
	color: var(--kz-commerce-ink);
}

.kz-commerce-body .woocommerce div.product {
	color: var(--kz-commerce-ink);
}

.kz-commerce-body .woocommerce div.product div.images,
.kz-commerce-body .woocommerce div.product div.summary {
	margin-bottom: clamp(44px, 7vw, 92px);
}

.kz-commerce-body .woocommerce div.product div.images img {
	background: var(--kz-commerce-paper);
	border: 1px solid var(--kz-commerce-line);
	border-radius: var(--kz-commerce-radius);
}

.kz-commerce-body .woocommerce div.product .product_title {
	font-size: clamp(36px, 4.5vw, 64px);
	font-weight: 680;
	letter-spacing: -0.055em;
	line-height: 1.02;
	margin: 0 0 22px;
}

.kz-commerce-body .woocommerce div.product p.price,
.kz-commerce-body .woocommerce div.product span.price {
	color: var(--kz-commerce-ink);
	font-size: clamp(22px, 2vw, 30px);
	font-weight: 660;
	margin-bottom: 22px;
}

.kz-commerce-body .woocommerce-product-details__short-description {
	color: var(--kz-commerce-muted);
	font-size: 17px;
	line-height: 1.7;
}

.kz-commerce-body .woocommerce div.product form.cart {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 30px 0;
}

.kz-commerce-body .woocommerce .quantity .qty {
	border-radius: var(--kz-commerce-radius-small);
	height: 48px;
	margin: 0;
	width: 78px;
}

.kz-commerce-body .product_meta {
	border-top: 1px solid var(--kz-commerce-line);
	color: var(--kz-commerce-muted);
	display: grid;
	font-size: 13px;
	gap: 9px;
	margin-top: 28px;
	padding-top: 22px;
}

.kz-commerce-body .product_meta a {
	color: var(--kz-commerce-ink);
}

.kz-commerce-body .woocommerce div.product .woocommerce-tabs ul.tabs {
	border-bottom: 1px solid var(--kz-commerce-line);
	display: flex;
	gap: 26px;
	margin: 0 0 32px;
	overflow-x: auto;
	padding: 0;
}

.kz-commerce-body .woocommerce div.product .woocommerce-tabs ul.tabs::before {
	display: none;
}

.kz-commerce-body .woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
}

.kz-commerce-body .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.kz-commerce-body .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.kz-commerce-body .woocommerce div.product .woocommerce-tabs ul.tabs li a {
	border-bottom: 2px solid transparent;
	color: var(--kz-commerce-muted);
	font-size: 15px;
	font-weight: 650;
	padding: 15px 0;
}

.kz-commerce-body .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	border-color: var(--kz-commerce-green);
	color: var(--kz-commerce-ink);
}

.kz-commerce-body .woocommerce-Tabs-panel,
.kz-commerce-body .related.products,
.kz-commerce-body .upsells.products {
	margin-top: clamp(38px, 6vw, 78px);
}

.kz-commerce-body .woocommerce-Tabs-panel h2,
.kz-commerce-body .related.products > h2,
.kz-commerce-body .upsells.products > h2,
.kz-commerce-body .cart_totals h2,
.kz-commerce-body .woocommerce-billing-fields h3,
.kz-commerce-body #order_review_heading,
.kz-commerce-body .woocommerce-Address-title h3 {
	color: var(--kz-commerce-ink);
	font-size: clamp(27px, 2.5vw, 42px);
	font-weight: 670;
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.kz-commerce-body .kezhun-product-panel,
.kz-commerce-body .kezhun-tier-pricing,
.kz-commerce-body .kezhun-review-grid,
.kz-commerce-body .kezhun-commerce-note,
.kz-commerce-body .woocommerce-info.kezhun-shipping-gate,
.kz-commerce-body .woocommerce-info.kezhun-payment-gate {
	background: var(--kz-commerce-paper);
	border: 1px solid var(--kz-commerce-line);
	border-radius: var(--kz-commerce-radius);
	box-shadow: none;
	color: var(--kz-commerce-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	margin: 28px 0;
	padding: clamp(22px, 3vw, 34px);
}

.kz-commerce-body .kezhun-tier-pricing h2,
.kz-commerce-body .kezhun-tier-pricing h3,
.kz-commerce-body .kezhun-tier-pricing__heading {
	color: var(--kz-commerce-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(24px, 2vw, 34px);
	font-weight: 670;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.kz-commerce-body .kezhun-tier-pricing__eyebrow {
	color: var(--kz-commerce-green-dark);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.kz-commerce-body .kezhun-tier-pricing__live {
	background: #eef6e5;
	border-radius: 10px;
	color: #315e00;
	font-weight: 650;
	padding: 10px 12px;
}

.kz-commerce-body .kezhun-tier-pricing__table-wrap {
	border: 1px solid var(--kz-commerce-line);
	border-radius: var(--kz-commerce-radius-small);
	overflow-x: auto;
}

.kz-commerce-body .kezhun-tier-pricing__table,
.kz-commerce-body .kezhun-product-specs,
.kz-commerce-body .woocommerce table.shop_table,
.kz-commerce-body table.wc-block-cart-items,
.kz-commerce-body .wc-block-components-totals-wrapper {
	border-collapse: collapse;
	border-radius: var(--kz-commerce-radius-small);
	font-size: 14px;
	overflow: hidden;
	width: 100%;
}

.kz-commerce-body :where(.kezhun-tier-pricing__table, .kezhun-product-specs, .woocommerce table.shop_table) th {
	background: #eef1ec;
	color: var(--kz-commerce-ink);
	font-size: 12px;
	font-weight: 720;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.kz-commerce-body :where(.kezhun-tier-pricing__table, .kezhun-product-specs, .woocommerce table.shop_table) th,
.kz-commerce-body :where(.kezhun-tier-pricing__table, .kezhun-product-specs, .woocommerce table.shop_table) td {
	border-bottom: 1px solid var(--kz-commerce-line);
	padding: 15px 16px;
	text-align: left;
}

.kz-commerce-body .kezhun-tier-pricing__table tbody tr.is-active td {
	background: #eef6e5;
	color: var(--kz-commerce-ink);
	font-weight: 650;
}

.kz-commerce-body .kezhun-tier-pricing__note {
	color: var(--kz-commerce-muted);
	font-size: 13px;
	line-height: 1.6;
}

.kz-commerce-body .kezhun-product-badges,
.kz-commerce-body .kezhun-loop-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.kz-commerce-body .kz-pill,
.kz-commerce-body .kezhun-loop-badge {
	background: #eef6e5;
	border: 1px solid #cfdfbe;
	border-radius: 999px;
	color: #315e00;
	font-size: 12px;
	font-weight: 650;
	padding: 7px 10px;
}

.kz-commerce-body :where(.woocommerce-message, .woocommerce-info, .woocommerce-error) {
	background: var(--kz-commerce-paper);
	border: 1px solid var(--kz-commerce-line);
	border-radius: var(--kz-commerce-radius-small);
	color: var(--kz-commerce-ink);
	line-height: 1.55;
	margin-bottom: 26px;
	padding: 18px 22px 18px 52px;
}

.kz-commerce-body :where(.woocommerce-message, .woocommerce-info)::before {
	color: var(--kz-commerce-green-dark);
}

.kz-commerce-body .woocommerce form.checkout_coupon,
.kz-commerce-body .woocommerce form.login,
.kz-commerce-body .woocommerce form.register,
.kz-commerce-body .woocommerce-checkout-review-order,
.kz-commerce-body .cart_totals,
.kz-commerce-body .woocommerce-MyAccount-navigation,
.kz-commerce-body .woocommerce-MyAccount-content,
.kz-commerce-body .wc-block-cart__submit-container,
.kz-commerce-body .wc-block-components-sidebar {
	background: var(--kz-commerce-paper);
	border: 1px solid var(--kz-commerce-line);
	border-radius: var(--kz-commerce-radius);
	box-shadow: none;
	padding: clamp(22px, 3vw, 34px);
}

.kz-commerce-body .woocommerce form .form-row {
	margin-bottom: 18px;
}

.kz-commerce-body .woocommerce form .form-row label {
	color: var(--kz-commerce-ink);
	font-size: 13px;
	font-weight: 650;
	margin-bottom: 7px;
}

.kz-commerce-body .woocommerce-checkout #payment {
	background: #eef1ec;
	border-radius: var(--kz-commerce-radius-small);
}

.kz-commerce-body .woocommerce-checkout #payment div.payment_box {
	background: var(--kz-commerce-white);
	border-radius: 10px;
	color: var(--kz-commerce-muted);
}

.kz-commerce-body .woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--kz-commerce-white);
}

.kz-commerce-body .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kz-commerce-body .woocommerce-MyAccount-navigation li + li {
	border-top: 1px solid var(--kz-commerce-line);
}

.kz-commerce-body .woocommerce-MyAccount-navigation a {
	color: var(--kz-commerce-muted);
	display: block;
	font-size: 15px;
	font-weight: 620;
	padding: 14px 0;
	text-decoration: none;
}

.kz-commerce-body .woocommerce-MyAccount-navigation .is-active a {
	color: var(--kz-commerce-green-dark);
}

.kz-commerce-body .wc-block-components-product-name,
.kz-commerce-body .woocommerce-cart-form__cart-item .product-name a {
	color: var(--kz-commerce-ink);
	font-weight: 650;
	text-decoration: none;
}

.kz-commerce-body .wc-block-cart-items__row,
.kz-commerce-body .wc-block-components-order-summary-item {
	border-color: var(--kz-commerce-line);
}

.kz-commerce-body .wc-block-components-checkout-step__title,
.kz-commerce-body .wc-block-cart__totals-title,
.kz-commerce-body .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.kz-commerce-body .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	color: var(--kz-commerce-ink);
	font-weight: 660;
}

.kz-commerce-body .wc-block-components-checkout-step__description,
.kz-commerce-body .wc-block-components-product-metadata,
.kz-commerce-body .wc-block-components-totals-item__description {
	color: var(--kz-commerce-muted);
}

@media (max-width: 980px) {
	.kz-commerce-hero__grid {
		grid-template-columns: 1fr;
	}

	.kz-commerce-showcase__card {
		display: grid;
		min-height: 0;
	}

	.kz-commerce-showcase__card::after {
		display: none;
	}

	.kz-commerce-showcase__image {
		height: clamp(340px, 55vw, 500px);
		object-position: 68% center;
		position: static;
	}

	.kz-commerce-showcase__copy {
		background: var(--kz-commerce-white);
		max-width: none;
		min-height: 0;
		padding: clamp(36px, 7vw, 64px);
	}

	.kz-commerce-showcase__copy h1 {
		max-width: 12ch;
	}

	.kz-commerce-section-intro {
		grid-template-columns: 1fr;
	}

	.kz-commerce-body .woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kz-commerce-body .wc-block-cart,
	.kz-commerce-body .wc-block-checkout,
	.kz-commerce-body .woocommerce-checkout .col2-set,
	.kz-commerce-body .woocommerce-checkout .col2-set + #order_review_heading,
	.kz-commerce-body .woocommerce-checkout #order_review {
		width: 100%;
	}
}

@media (max-width: 700px) {
	.kz-commerce-showcase {
		padding-top: 12px;
	}

	.kz-commerce-showcase__card {
		border-radius: 22px;
		box-shadow: 0 18px 44px rgba(20, 38, 29, 0.08);
	}

	.kz-commerce-showcase__image {
		height: 330px;
		object-position: 72% center;
	}

	.kz-commerce-showcase__copy {
		padding: 34px 24px 38px;
	}

	.kz-commerce-showcase__copy h1 {
		font-size: clamp(39px, 12vw, 56px);
		margin: 18px 0 20px;
		max-width: 11ch;
	}

	.kz-commerce-showcase__copy > p:not(.kz-editorial-eyebrow) {
		font-size: 16px;
	}

	.kz-commerce-showcase__actions {
		align-items: stretch;
		flex-direction: column;
		margin-top: 26px;
	}

	.kz-commerce-showcase__actions .kz-editorial-cta {
		box-sizing: border-box;
		gap: 14px;
		max-width: 100%;
		min-width: 0;
		white-space: normal;
		width: 100%;
	}

	.kz-commerce-showcase__actions .kz-editorial-cta span {
		min-width: 0;
		overflow-wrap: anywhere;
	}

	.kz-commerce-showcase__actions .kz-editorial-cta img {
		flex: 0 0 auto;
	}

	.kz-commerce-showcase__routes {
		border-radius: 18px;
		grid-template-columns: 1fr;
	}

	.kz-commerce-showcase__routes a {
		min-height: 88px;
		padding: 18px 20px;
	}

	.kz-commerce-showcase__routes a + a {
		border-left: 0;
		border-top: 1px solid var(--kz-commerce-line);
	}

	.kz-commerce-hero {
		padding: 54px 0 44px;
	}

	.kz-commerce-hero h1 {
		font-size: clamp(40px, 12vw, 58px);
		max-width: 10ch;
	}

	.kz-commerce-hero__grid {
		gap: 24px;
	}

	.kz-commerce-content {
		padding-block: 38px 72px;
	}

	.kz-commerce-section-intro {
		gap: 18px;
		margin-bottom: 30px;
	}

	.kz-commerce-section-intro h2 {
		font-size: clamp(34px, 10vw, 46px);
	}

	.kz-commerce-section-intro > p:not(.kz-editorial-eyebrow) {
		font-size: 16px;
	}

	.kz-commerce-body .woocommerce-result-count,
	.kz-commerce-body .woocommerce-ordering {
		float: none;
		margin: 0 0 16px;
		width: 100%;
	}

	.kz-commerce-body .woocommerce-result-count {
		line-height: 1.5;
	}

	.kz-commerce-body .woocommerce-ordering select {
		width: 100%;
	}

	.kz-commerce-body .woocommerce ul.products {
		gap: 18px;
		grid-template-columns: 1fr;
	}

	.kz-commerce-body .woocommerce ul.products li.product,
	.kz-commerce-body .woocommerce-page ul.products li.product {
		border-radius: 18px;
	}

	.kz-commerce-body .woocommerce ul.products li.product a img {
		max-height: 390px;
	}

	.kz-commerce-body .woocommerce ul.products li.product .button,
	.kz-commerce-body .woocommerce ul.products li.product .added_to_cart {
		width: calc(100% - 48px);
	}

	.kz-commerce-body .woocommerce div.product div.images,
	.kz-commerce-body .woocommerce div.product div.summary {
		float: none;
		margin-bottom: 38px;
		width: 100%;
	}

	.kz-commerce-body .woocommerce div.product form.cart {
		align-items: stretch;
		flex-direction: column;
	}

	.kz-commerce-body .woocommerce .quantity .qty,
	.kz-commerce-body .woocommerce div.product form.cart .button {
		width: 100%;
	}

	.kz-commerce-body .woocommerce div.product .woocommerce-tabs ul.tabs {
		gap: 20px;
	}

	.kz-commerce-body .kezhun-product-panel,
	.kz-commerce-body .kezhun-tier-pricing,
	.kz-commerce-body .kezhun-review-grid,
	.kz-commerce-body .woocommerce form.checkout_coupon,
	.kz-commerce-body .woocommerce form.login,
	.kz-commerce-body .woocommerce form.register,
	.kz-commerce-body .woocommerce-checkout-review-order,
	.kz-commerce-body .cart_totals,
	.kz-commerce-body .woocommerce-MyAccount-navigation,
	.kz-commerce-body .woocommerce-MyAccount-content,
	.kz-commerce-body .wc-block-components-sidebar {
		border-radius: 18px;
		padding: 20px;
	}

	.kz-commerce-body .woocommerce table.shop_table_responsive tr,
	.kz-commerce-body .woocommerce-page table.shop_table_responsive tr {
		border-bottom: 1px solid var(--kz-commerce-line);
		padding-block: 10px;
	}

	.kz-commerce-body .woocommerce-cart-form .actions .coupon {
		display: grid;
		gap: 10px;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.kz-commerce-body .woocommerce-cart-form .actions .coupon .input-text,
	.kz-commerce-body .woocommerce-cart-form .actions .coupon .button,
	.kz-commerce-body .woocommerce-cart-form .actions > .button,
	.kz-commerce-body .wc-block-components-button {
		width: 100%;
	}

	.kz-commerce-body .woocommerce-MyAccount-navigation,
	.kz-commerce-body .woocommerce-MyAccount-content {
		float: none;
		margin-bottom: 18px;
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kz-commerce-body *,
	.kz-commerce-body *::before,
	.kz-commerce-body *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media (max-width: 700px) {
	.kz-editorial-hero {
		min-height: 960px;
	}

	.kz-editorial-hero::before {
		background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 43%, rgba(255, 255, 255, 0.72) 62%, rgba(255, 255, 255, 0.12) 84%, rgba(255, 255, 255, 0.02) 100%);
	}

	.kz-editorial-nav {
		gap: 12px;
		grid-template-columns: minmax(118px, 1fr) auto auto;
		padding-top: 24px;
		width: calc(100% - 40px);
	}

	.kz-editorial-brand {
		font-size: clamp(19px, 5.4vw, 22px);
		letter-spacing: 0.2em;
	}

	.kz-editorial-language select,
	.kz-editorial-menu-toggle {
		border-radius: 16px;
		height: 46px;
	}

	.kz-editorial-language select {
		font-size: 15px;
		min-width: 64px;
		padding-inline: 10px;
	}

	.kz-editorial-menu-toggle {
		width: 46px;
	}

	.kz-editorial-menu {
		border-radius: 24px;
		padding: 18px 24px;
		top: 82px;
	}

	.kz-editorial-menu a {
		font-size: 17px;
		padding: 16px 0;
	}

	.kz-editorial-hero__content {
		justify-content: flex-start;
		min-height: 960px;
		padding: 158px 0 230px;
		width: calc(100% - 56px);
	}

	.kz-editorial-eyebrow {
		font-size: clamp(11px, 3vw, 13px);
		gap: 14px;
		letter-spacing: 0.035em;
		line-height: 1.45;
		margin-bottom: 30px;
		max-width: 34ch;
	}

	.kz-editorial-eyebrow::before {
		flex: 0 0 34px;
		width: 34px;
	}

	.kz-editorial-hero h1,
	html:lang(de) .kz-editorial-hero h1,
	html:lang(es) .kz-editorial-hero h1,
	html:lang(fr) .kz-editorial-hero h1,
	html:lang(pt) .kz-editorial-hero h1,
	html:lang(ru) .kz-editorial-hero h1,
	html:lang(ar) .kz-editorial-hero h1 {
		font-size: clamp(42px, 11.6vw, 54px);
		letter-spacing: -0.055em;
		line-height: 1;
		max-width: 8.5em;
	}

	.kz-editorial-hero h1.kz-copy-long,
	html:lang(de) .kz-editorial-hero h1.kz-copy-long,
	html:lang(es) .kz-editorial-hero h1.kz-copy-long,
	html:lang(fr) .kz-editorial-hero h1.kz-copy-long,
	html:lang(pt) .kz-editorial-hero h1.kz-copy-long,
	html:lang(ru) .kz-editorial-hero h1.kz-copy-long,
	html:lang(ar) .kz-editorial-hero h1.kz-copy-long {
		font-size: clamp(36px, 10vw, 46px);
		line-height: 1.03;
		max-width: 9.4em;
	}

	.kz-editorial-hero h1.kz-copy-xlong,
	html:lang(de) .kz-editorial-hero h1.kz-copy-xlong,
	html:lang(es) .kz-editorial-hero h1.kz-copy-xlong,
	html:lang(fr) .kz-editorial-hero h1.kz-copy-xlong,
	html:lang(pt) .kz-editorial-hero h1.kz-copy-xlong,
	html:lang(ru) .kz-editorial-hero h1.kz-copy-xlong,
	html:lang(ar) .kz-editorial-hero h1.kz-copy-xlong {
		font-size: clamp(32px, 8.8vw, 40px);
		line-height: 1.05;
		max-width: 10.4em;
	}

	.kz-editorial-benefits {
		display: grid;
		gap: 16px;
		grid-template-columns: 1fr;
		margin: 40px 0 36px;
		max-width: 310px;
	}

	.kz-editorial-benefits > div,
	.kz-editorial-benefits > div:first-child,
	.kz-editorial-benefits > div:last-child {
		align-items: center;
		border: 0;
		flex-direction: row;
		font-size: 16px;
		gap: 14px;
		line-height: 1.4;
		margin: 0;
		min-height: 28px;
		padding: 0;
	}

	.kz-editorial-benefits img {
		height: 26px;
		width: 26px;
	}

	.kz-editorial-hero__content > .kz-editorial-cta {
		font-size: 16px;
		max-width: 270px;
		min-height: 58px;
		padding-inline: 22px;
	}

	.kz-editorial-proof {
		bottom: 96px;
		border-radius: 24px;
		width: calc(100% - 36px);
	}

	.kz-editorial-proof > a,
	.kz-editorial-proof > a:last-child {
		min-height: 102px;
		padding: 15px 11px;
	}

	.kz-editorial-mobile-actions {
		border-radius: 22px;
		bottom: max(12px, env(safe-area-inset-bottom));
		gap: 10px;
		grid-template-columns: minmax(112px, 0.82fr) minmax(0, 1.18fr);
		left: 18px;
		padding: 8px;
		right: 18px;
	}

	.kz-editorial-mobile-actions a {
		border-radius: 16px;
		font-size: 15px;
		line-height: 1.25;
		min-height: 58px;
		padding: 11px 15px;
	}

	.kz-editorial-mobile-actions__quote {
		gap: 14px;
		justify-content: space-between;
	}

	.kz-editorial-mobile-actions__quote span {
		overflow-wrap: anywhere;
		text-align: center;
	}

	.kz-editorial-mobile-actions__quote img {
		flex: 0 0 auto;
	}
}

@media (max-width: 380px) {
	.kz-editorial-nav {
		grid-template-columns: minmax(102px, 1fr) auto auto;
		width: calc(100% - 28px);
	}

	.kz-editorial-brand {
		font-size: 17px;
		letter-spacing: 0.16em;
	}

	.kz-editorial-hero__content {
		padding-top: 148px;
		width: calc(100% - 44px);
	}

	.kz-editorial-hero h1,
	html:lang(ar) .kz-editorial-hero h1 {
		font-size: clamp(40px, 11.7vw, 46px);
	}

	.kz-editorial-mobile-actions {
		grid-template-columns: minmax(104px, 0.78fr) minmax(0, 1.22fr);
		left: 10px;
		right: 10px;
	}

	.kz-editorial-mobile-actions a {
		font-size: 14px;
		padding-inline: 12px;
	}
}
/* 0.4.12 final navigation and responsive rhythm stabilization. */
.kz-insights-hero {
	padding: clamp(64px, 7vw, 110px) 0 clamp(56px, 6vw, 92px);
}

.kz-insights-hero__grid {
	align-items: center;
	gap: clamp(48px, 6vw, 88px);
}

.kz-insights-hero h1,
.kz-article-hero h1 {
	font-size: clamp(46px, 5.1vw, 78px);
	line-height: 1;
	max-width: 10em;
}

.kz-insights-hero h1.kz-copy-long,
.kz-article-hero h1.kz-copy-long {
	font-size: clamp(40px, 4.4vw, 66px);
	max-width: 11em;
}

.kz-insights-hero h1.kz-copy-xlong,
.kz-article-hero h1.kz-copy-xlong {
	font-size: clamp(36px, 3.8vw, 56px);
	max-width: 12em;
}

.kz-solutions-hub {
	padding-block: clamp(72px, 8vw, 116px);
}

.kz-solutions-hub__intro {
	align-items: center;
	gap: clamp(48px, 6vw, 88px);
}

.kz-solutions-hub__intro h1,
.kz-solutions-hub__intro h2 {
	font-size: clamp(42px, 4.8vw, 72px);
	line-height: 1;
}

.kz-solutions-hub__intro :is(h1, h2).kz-copy-long {
	font-size: clamp(38px, 4.1vw, 62px);
}

.kz-solutions-hub__intro :is(h1, h2).kz-copy-xlong {
	font-size: clamp(34px, 3.6vw, 54px);
}

@media (max-width: 640px) {
	.kz-insights-header .kz-insights-header__inner {
		min-height: 78px;
		padding-block: 14px;
		width: min(calc(100% - 32px), 1540px);
	}

	.kz-insights-header .kz-editorial-nav__actions {
		gap: 10px;
	}

	.kz-insights-header .kz-editorial-menu {
		border-radius: 22px;
		padding: 14px 20px;
		top: calc(100% - 4px);
	}

	.kz-insights-hero,
	.kz-article-hero {
		padding: 48px 0 58px;
	}

	.kz-insights-hero__grid {
		gap: 32px;
	}

	.kz-insights-hero h1,
	.kz-article-hero h1 {
		font-size: clamp(38px, 11vw, 48px);
		line-height: 1.02;
		max-width: 11em;
	}

	.kz-insights-hero h1.kz-copy-long,
	.kz-article-hero h1.kz-copy-long {
		font-size: clamp(32px, 9.5vw, 40px);
		max-width: 12em;
	}

	.kz-insights-hero h1.kz-copy-xlong,
	.kz-article-hero h1.kz-copy-xlong {
		font-size: clamp(29px, 8.4vw, 36px);
		max-width: 13em;
	}

	.kz-insights-hero__grid > div:last-child > p,
	.kz-solutions-hub__intro > div:last-child > p {
		font-size: 17px;
		line-height: 1.7;
		margin-bottom: 24px;
	}

	.kz-insights-search {
		border-radius: 18px;
		padding: 6px;
	}

	.kz-insights-search button {
		min-height: 52px;
	}

	.kz-insights-listing {
		padding: 56px 0 100px;
	}

	.kz-insight-grid {
		gap: 24px;
	}

	.kz-insight-card__body {
		padding: 24px;
	}

	.kz-solutions-hub {
		padding-block: 56px 88px;
	}

	.kz-solutions-hub__intro {
		gap: 28px;
		margin-bottom: 36px;
	}

	.kz-solutions-hub__intro h1,
	.kz-solutions-hub__intro h2 {
		font-size: clamp(38px, 11vw, 48px);
		line-height: 1.02;
	}

	.kz-solutions-hub__intro :is(h1, h2).kz-copy-long {
		font-size: clamp(32px, 9.5vw, 40px);
	}

	.kz-solutions-hub__intro :is(h1, h2).kz-copy-xlong {
		font-size: clamp(29px, 8.4vw, 36px);
	}

	.kz-solutions-hub__grid {
		gap: 24px;
	}

	.kz-solutions-hub__card-body {
		padding: 24px;
	}

	.kz-solutions-hub__process {
		gap: 28px;
		margin-top: 34px;
		padding: 26px;
	}
}
/* 0.4.13 automated Chrome QA fixes: header alignment and readable accents. */
:root {
	--kz-editorial-green-dark: #3f7d00;
}

.kz-insights-header .kz-insights-header__inner {
	align-items: center;
	display: grid;
	gap: clamp(18px, 3vw, 54px);
	grid-template-columns: minmax(140px, 0.7fr) auto minmax(250px, 0.8fr);
}

@media (max-width: 860px) {
	.kz-insights-header .kz-insights-header__inner {
		gap: 12px;
		grid-template-columns: minmax(0, 1fr) auto auto;
	}

	.kz-insights-header .kz-editorial-brand {
		grid-column: 1;
		grid-row: 1;
	}

	.kz-insights-header .kz-editorial-nav__actions {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.kz-insights-header button.kz-editorial-menu-toggle {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	.kz-insights-header .kz-editorial-menu {
		grid-column: 1 / -1;
	}
}
/* Public hubs and reviewed quote intake. */
.kz-public-page-hero,
.kz-quote-experience {
	background: #173027;
	color: #f8f5ed;
}

.kz-public-page-hero {
	padding: clamp(72px, 9vw, 132px) 0;
}

.kz-public-page-hero__grid,
.kz-quote-intro {
	align-items: end;
	display: grid;
	gap: clamp(32px, 6vw, 88px);
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.kz-public-page-hero h1,
.kz-quote-intro h1 {
	color: #fffdfa;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(42px, 5.2vw, 76px);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1;
	margin: 0;
	overflow-wrap: anywhere;
}

.kz-public-page-hero__grid > p,
.kz-quote-intro__copy {
	color: #dce8de;
	font-size: clamp(17px, 1.4vw, 21px);
	line-height: 1.65;
	margin: 0;
}

.kz-public-page-section {
	background: #f7f8f5;
	padding: clamp(56px, 7vw, 104px) 0;
}

.kz-public-card-grid {
	display: grid;
	gap: clamp(18px, 2.4vw, 32px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kz-public-card-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kz-public-card {
	background: #fffdfa;
	border: 1px solid #d6ddd2;
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: clamp(24px, 3vw, 40px);
}

.kz-public-card > span:first-child {
	color: #4f9700;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.kz-public-card h2 {
	color: #173027;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(28px, 2.5vw, 40px);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin: 22px 0 14px;
	overflow-wrap: anywhere;
}

.kz-public-card p {
	color: #5f625c;
	line-height: 1.65;
	margin: 0 0 28px;
}

.kz-public-card a {
	color: #315a42;
	font-weight: 800;
	margin-top: auto;
	text-underline-offset: 4px;
}

.kz-public-products-heading {
	color: #173027;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(30px, 3.2vw, 48px);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin: clamp(48px, 7vw, 84px) 0 14px;
}

.kz-public-product-grid {
	display: grid;
	gap: clamp(18px, 2.4vw, 30px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(24px, 4vw, 42px);
}

.kz-public-product-card {
	background: #fffdfa;
	border: 1px solid #d6ddd2;
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.kz-public-product-card__media {
	aspect-ratio: 4 / 3;
	background: #eef2ea;
	display: block;
	overflow: hidden;
}

.kz-public-product-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.kz-public-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	padding: clamp(20px, 2.5vw, 30px);
}

.kz-public-product-card__category,
.kz-public-product-card__sku {
	color: #5f625c;
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 12px;
}

.kz-public-product-card__category a {
	color: #315a42;
	font-weight: 800;
}

.kz-public-product-card h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(23px, 2vw, 31px);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.12;
	margin: 4px 0 14px;
	overflow-wrap: anywhere;
}

.kz-public-product-card h3 a {
	color: #173027;
	text-decoration: none;
}

.kz-public-product-card__body > p:not([class]) {
	color: #5f625c;
	line-height: 1.65;
	margin: 0 0 18px;
}

.kz-public-product-card .kz-pill {
	align-self: flex-start;
	margin: 0 0 20px;
}

.kz-public-product-card .kz-button {
	align-self: flex-start;
	margin-top: auto;
}

.kz-public-product-detail {
	background: #f7f8f5;
	min-width: 0;
}

.kz-public-product-detail__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: clamp(24px, 4vw, 44px);
}

.kz-public-product-detail__breadcrumbs a {
	color: #315a42;
	font-weight: 800;
	text-underline-offset: 4px;
}

.kz-public-product-detail__grid {
	align-items: start;
	display: grid;
	gap: clamp(30px, 6vw, 76px);
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.kz-public-product-detail__media {
	background: #eef2ea;
	border: 1px solid #d6ddd2;
	border-radius: 28px;
	margin: 0;
	overflow: hidden;
}

.kz-public-product-detail__media img {
	display: block;
	height: auto;
	max-height: 720px;
	object-fit: cover;
	width: 100%;
}

.kz-public-product-detail__content {
	min-width: 0;
}

.kz-public-product-detail__category {
	color: #4f9700;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.1em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.kz-public-product-detail h1 {
	color: #173027;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(38px, 5vw, 66px);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1;
	margin: 18px 0;
	overflow-wrap: anywhere;
}

.kz-public-product-detail h2 {
	color: #173027;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(26px, 2.5vw, 36px);
	font-weight: 400;
	margin: 34px 0 16px;
}

.kz-public-product-detail__summary {
	color: #4c554d;
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1.65;
}

.kz-public-product-facts {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 0 28px;
}

.kz-public-product-facts > div {
	background: #fffdfa;
	border: 1px solid #d6ddd2;
	border-radius: 16px;
	min-width: 0;
	padding: 16px;
}

.kz-public-product-facts dt {
	color: #5f625c;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.kz-public-product-facts dd {
	color: #173027;
	font-weight: 800;
	margin: 0;
	overflow-wrap: anywhere;
}

.kz-public-product-detail__notice {
	background: #eaf3e4;
	border-inline-start: 4px solid #4f9700;
	border-radius: 12px;
	color: #315a42;
	line-height: 1.6;
	padding: 16px 18px;
}

.kz-public-product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

@media (hover: hover) and (pointer: fine) {
	.kz-public-product-card,
	.kz-public-product-card__media img {
		transition: border-color 180ms ease, box-shadow 180ms ease, transform 240ms ease;
	}

	.kz-public-product-card:hover {
		border-color: #afc2ac;
		box-shadow: 0 18px 42px rgba(24, 49, 38, 0.1);
		transform: translateY(-3px);
	}

	.kz-public-product-card:hover .kz-public-product-card__media img {
		transform: scale(1.025);
	}
}

@media (max-width: 860px) {
	.kz-public-product-grid,
	.kz-public-product-detail__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.kz-public-product-card {
		border-radius: 20px;
	}

	.kz-public-product-facts {
		grid-template-columns: 1fr;
	}

	.kz-public-product-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.kz-public-product-actions .kz-button {
		justify-content: center;
		text-align: center;
		width: 100%;
	}
}
.kz-quote-experience {
	padding: clamp(56px, 7vw, 104px) max(20px, calc((100vw - 1180px) / 2));
}

.kz-quote-intro {
	margin: 0 auto clamp(36px, 5vw, 64px);
	max-width: 1180px;
}

.kz-quote-intro__copy ul {
	margin: 18px 0 0;
	padding-inline-start: 1.25em;
}

.kezhun-quote-form {
	background: #fffdfa;
	border-radius: 28px;
	color: #173027;
	margin: 0 auto;
	max-width: 1180px;
	padding: clamp(22px, 4vw, 52px);
}

.kz-quote-step {
	border: 0;
	margin: 0;
	min-width: 0;
	padding: 0;
}

.kz-quote-step + .kz-quote-step {
	border-top: 1px solid #d6ddd2;
	margin-top: clamp(12px, 2vw, 24px);
	padding-top: clamp(28px, 4vw, 48px);
}

.kz-quote-step legend {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-bottom: 10px;
	padding: 0;
	width: 100%;
}

.kz-quote-step legend > span {
	align-items: center;
	background: #eaf3e4;
	border-radius: 999px;
	color: #315a42;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.kz-quote-step legend strong {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(25px, 2.5vw, 36px);
	font-weight: 400;
	letter-spacing: -0.03em;
}

.kz-quote-step__intro {
	color: #5f625c;
	line-height: 1.6;
	margin: 0 0 24px 50px;
}

.kz-quote-grid {
	display: grid;
	gap: 20px;
	margin-bottom: 20px;
}

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

.kezhun-quote-form label {
	font-size: 15px;
	min-width: 0;
}

.kezhun-quote-form .kz-form-field {
	background: #fff;
	border-color: #aebcaf;
	border-radius: 14px;
	font: inherit;
	min-height: 50px;
	padding: 13px 14px;
}

.kezhun-quote-form textarea.kz-form-field {
	line-height: 1.55;
	resize: vertical;
}

.kezhun-quote-form .kz-form-field:hover {
	border-color: #829682;
}

.kezhun-quote-form .kz-form-field:focus {
	border-color: #315a42;
	box-shadow: 0 0 0 4px rgba(49, 90, 66, 0.14);
	outline: 0;
}

.kz-quote-consent {
	align-items: start;
	background: #f1f3ed;
	border-radius: 16px;
	display: grid !important;
	font-weight: 600 !important;
	gap: 12px !important;
	grid-template-columns: 22px minmax(0, 1fr);
	line-height: 1.55;
	margin-top: 20px;
	padding: 18px;
}

.kz-quote-consent input {
	height: 20px;
	margin: 2px 0 0;
	width: 20px;
}

.kz-quote-submit {
	align-items: center;
	display: grid;
	gap: 20px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.kz-quote-submit .kz-button {
	min-width: 210px;
}

.kezhun-intake-feedback {
	border: 1px solid;
	border-radius: 18px;
	margin: 0 auto 24px;
	max-width: 1180px;
	padding: 18px 20px;
}

.kezhun-intake-feedback:focus {
	outline: 3px solid rgba(113, 201, 0, 0.45);
	outline-offset: 3px;
}

.kezhun-intake-error {
	background: #fff1ef;
	border-color: #e4a7a0;
	color: #6f251e;
}

.kezhun-intake-success {
	background: #edf8f3;
	border-color: #9fcfbe;
}

.kz-quote-reference code {
	overflow-wrap: anywhere;
}

.kz-quote-another {
	margin: 20px auto 0;
	max-width: 1180px;
}

.kz-quote-another a {
	color: #fffdfa;
	font-weight: 800;
}

.kezhun-honeypot {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

html[dir="rtl"] .kz-public-page-hero,
html[dir="rtl"] .kz-public-page-section,
html[dir="rtl"] .kz-quote-experience {
	text-align: right;
}

html[dir="rtl"] .kz-quote-step__intro {
	margin-left: 0;
	margin-right: 50px;
}

html[dir="rtl"] .kezhun-quote-form input[dir="ltr"],
html[dir="rtl"] .kezhun-quote-form code[dir="ltr"] {
	text-align: left;
}

.kz-commercial-brief-intro {
	margin: 0 auto;
	padding: clamp(54px, 7vw, 92px) 0 clamp(28px, 4vw, 48px);
	width: min(calc(100% - 40px), 1180px);
}

.kz-commercial-brief-intro h1 {
	color: #173027;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(40px, 5vw, 70px);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.98;
	margin: 18px 0 24px;
}

.kz-commercial-brief-intro > p:last-child {
	color: #5f625c;
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.65;
	margin: 0;
	max-width: 760px;
}

.kezhun-commercial-ess-form {
	border-radius: 24px;
	margin: 0 auto clamp(64px, 8vw, 110px);
	width: min(calc(100% - 40px), 1180px);
}

html[dir="rtl"] .kz-commercial-brief-intro,
html[dir="rtl"] .kezhun-commercial-ess-form {
	text-align: right;
}

html[dir="rtl"] .kezhun-commercial-ess-form input[dir="ltr"] {
	text-align: left;
}
@media (hover: hover) and (pointer: fine) {
	.kz-public-card {
		transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	}

	.kz-public-card:hover {
		border-color: #afc2ac;
		box-shadow: 0 18px 42px rgba(24, 49, 38, 0.08);
		transform: translateY(-3px);
	}
}

@media (max-width: 860px) {
	.kz-public-page-hero__grid,
	.kz-quote-intro {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.kz-public-card-grid {
		grid-template-columns: 1fr;
	}

	.kz-public-card-grid--two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kz-quote-submit {
		align-items: stretch;
		grid-template-columns: 1fr;
	}

	.kz-quote-submit .kz-button {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.kz-public-page-hero {
		padding: 54px 0 62px;
	}

	.kz-public-page-hero h1,
	.kz-quote-intro h1 {
		font-size: clamp(36px, 11vw, 48px);
	}

	.kz-public-page-section {
		padding: 48px 0 76px;
	}

	.kz-public-card-grid--two,
	.kz-quote-grid--2 {
		grid-template-columns: 1fr;
	}

	.kz-public-card {
		border-radius: 20px;
		padding: 24px;
	}

	.kz-quote-experience {
		padding: 48px 16px 82px;
	}

	.kezhun-quote-form {
		border-radius: 20px;
		padding: 22px 18px;
	}

	.kz-quote-step__intro,
	html[dir="rtl"] .kz-quote-step__intro {
		margin-left: 0;
		margin-right: 0;
	}

	.kz-quote-step legend {
		align-items: flex-start;
	}

	.kz-quote-step legend strong {
		font-size: 26px;
	}

	.kz-quote-consent {
		padding: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kz-public-card {
		scroll-behavior: auto;
		transition: none;
	}
}

.kz-not-found-page {
	margin: 0 auto;
	padding: clamp(64px, 9vw, 124px) 0;
	width: min(calc(100% - 40px), 980px);
}

.kz-not-found-page h1 {
	color: #173027;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(42px, 6vw, 76px);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1;
	margin: 16px 0 24px;
	max-width: 820px;
}

.kz-not-found-page > p:not(.kz-eyebrow) {
	color: #5f625c;
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.65;
	max-width: 720px;
}

.kz-not-found-page .kz-insights-search {
	margin: 32px 0;
	max-width: 720px;
}

.kz-not-found-page .kz-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

@media (max-width: 640px) {
	.kz-not-found-page .kz-button-row {
		flex-direction: column;
	}

	.kz-not-found-page .kz-button-row .kz-button {
		justify-content: center;
		width: 100%;
	}
}

