/* =============================================================================
   ZE-Tronics — main.css
   Design system + sections
   ----------------------------------------------------------------------------
   Color: ZE-Tronics brand palette
   Type:  Space Grotesk for display, Source Sans 3 for body
   ============================================================================= */

:root {
	/* Color tokens */
	--ze-bg:           #0f0f0f;
	--ze-bg-2:         #0f0f0f;
	--ze-bg-3:         #606369;
	--ze-surface:      #ffffff;
	--ze-surface-2:    #ffffff;
	--ze-line:         rgba(15, 15, 15, 0.08);
	--ze-line-dark:    rgba(255, 255, 255, 0.1);
	--ze-text:         #0f0f0f;
	--ze-text-soft:    #606369;
	--ze-text-light:   #ffffff;
	--ze-text-muted:   rgba(255, 255, 255, 0.72);
	--ze-accent:       #fe4a23;
	--ze-accent-2:     #606369;
	--ze-accent-deep:  #0f0f0f;

	/* Spacing */
	--ze-radius:       14px;
	--ze-radius-sm:    8px;
	--ze-radius-lg:    24px;
	--ze-radius-pill:  999px;

	/* Type */
	--ze-font-body:    "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--ze-font-display: "Space Grotesk", "Source Sans 3", system-ui, sans-serif;
	--ze-body-font-size: 16px;
	--ze-logo-height: 40px;
	--ze-footer-logo-height: 40px;
	--ze-brand-logo-height: 64px;
	--ze-brand-logo-gap: 76px;
	--ze-services-visible: 4;
	--ze-services-visible-tablet: 3;
	--ze-hero-title-max: 84px;
	--ze-section-title-max: 48px;

	/* Easing */
	--ze-ease:         cubic-bezier(0.22, 0.61, 0.36, 1);

	/* Container */
	--ze-container:    1280px;
	--ze-container-narrow: 880px;
}

/* ----- Reset & base --------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	margin: 0;
	background: var(--ze-surface);
	color: var(--ze-text);
	font-family: var(--ze-font-body);
	font-size: var(--ze-body-font-size);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}

img, video, svg { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
	outline: 2px solid var(--ze-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: var(--ze-font-display);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0;
}
p { margin: 0 0 1em; }

/* ----- Layout primitives --------------------------------------------- */

.ze-container {
	width: 100%;
	max-width: var(--ze-container);
	margin: 0 auto;
	padding: 0 24px;
}
.ze-container--narrow { max-width: var(--ze-container-narrow); }

.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%);
	clip-path: inset(50%); height: 1px; overflow: hidden; padding: 0;
	position: absolute; width: 1px; word-wrap: normal !important;
}

/* ----- Eyebrow / Buttons --------------------------------------------- */

.ze-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ze-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ze-text-soft);
}
.ze-eyebrow--chip {
	background: var(--ze-accent);
	color: #ffffff;
	padding: 6px 14px;
	border-radius: var(--ze-radius-pill);
}
.ze-eyebrow--light { color: var(--ze-text-light); }
.ze-eyebrow--chip.ze-eyebrow--light { color: var(--ze-accent-deep); }

.ze-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: var(--ze-radius-pill);
	font-family: var(--ze-font-body);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border: 1px solid transparent;
	transition: transform 0.25s var(--ze-ease), background 0.25s var(--ze-ease), color 0.25s var(--ze-ease), border-color 0.25s var(--ze-ease);
	white-space: nowrap;
}
.ze-btn--primary { background: var(--ze-accent); color: #ffffff; }
.ze-btn--primary:hover { transform: translateY(-2px); background: #0f0f0f; }
.ze-btn--outline {
	background: transparent;
	color: var(--ze-text);
	border-color: rgba(15,15,15,0.2);
}
.ze-btn--outline:hover { background: var(--ze-text); color: var(--ze-text-light); border-color: var(--ze-text); }
.ze-btn--ghost {
	background: transparent;
	color: var(--ze-text-light);
	border-bottom: 1px solid rgba(255,255,255,0.4);
	border-radius: 0;
	padding: 12px 0;
	letter-spacing: 0.15em;
}
.ze-btn--ghost:hover { color: var(--ze-accent); border-bottom-color: var(--ze-accent); }
.ze-btn--lg { padding: 18px 36px; font-size: 13px; }

/* ----- Header --------------------------------------------------------- */

.ze-header {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 50;
	padding: 18px 0;
	transition: background 0.3s var(--ze-ease), padding 0.3s var(--ze-ease);
}
/* On non-front pages there's no hero, so make header light by default. */
.ze-body:not(.home):not(.page-template-front-page) .ze-header {
	position: relative;
	background: var(--ze-surface-2);
	box-shadow: 0 1px 0 var(--ze-line);
}
.ze-body:not(.home):not(.page-template-front-page) .ze-header[data-scheme="dark"] {
	background: var(--ze-surface-2);
}
.ze-body:not(.home):not(.page-template-front-page) .ze-header .ze-menu-link { color: var(--ze-text); }
.ze-body:not(.home):not(.page-template-front-page) .ze-header .ze-burger span { background: var(--ze-text); }
.ze-body:not(.home):not(.page-template-front-page) .ze-header .ze-burger { border-color: rgba(15,15,15,0.15); }
.ze-body:not(.home):not(.page-template-front-page) .ze-header .ze-lang-toggle {
	border-color: rgba(15,15,15,0.15);
	color: var(--ze-text);
}
.ze-body:not(.home):not(.page-template-front-page) .ze-header .ze-logo-wrap--dark { display: inline-flex; }
.ze-body:not(.home):not(.page-template-front-page) .ze-header .ze-logo-wrap--light { display: none; }
.ze-body:not(.home):not(.page-template-front-page) .ze-archive,
.ze-body:not(.home):not(.page-template-front-page) .ze-single,
.ze-body:not(.home):not(.page-template-front-page) .ze-page,
.ze-body:not(.home):not(.page-template-front-page) .ze-404 { padding-top: 80px; }
.ze-body:not(.home):not(.page-template-front-page) .ze-page--designed { padding-top: 0; }

/* When stuck header turns light */
.ze-header.is-stuck .ze-logo-wrap--dark { display: inline-flex; }
.ze-header.is-stuck .ze-logo-wrap--light { display: none; }
.ze-header.is-stuck .ze-menu-link { color: var(--ze-text); }
.ze-header.is-stuck .ze-burger span { background: var(--ze-text); }
.ze-header.is-stuck .ze-burger { border-color: rgba(15,15,15,0.15); }
.ze-header.is-stuck .ze-lang-toggle { color: var(--ze-text); border-color: rgba(15,15,15,0.15); }
.ze-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.ze-header__logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	max-width: 240px;
	min-width: 0;
}
.ze-logo { height: 40px; width: auto; max-width: 100%; object-fit: contain; }
.ze-logo { height: var(--ze-logo-height); }
.ze-logo-text {
	display: none !important;
	align-items: center;
	min-height: var(--ze-logo-height);
	font-family: var(--ze-font-display);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0;
	text-transform: uppercase;
}
.ze-logo-placeholder { display: none; }
.ze-logo-wrap--light .ze-logo-text,
.ze-footer .ze-logo-text { color: var(--ze-text-light); }
.ze-logo-wrap--dark .ze-logo-text { color: var(--ze-text); }
.ze-logo-wrap--dark { display: none; }
.ze-logo-wrap--light { display: inline-flex; }
/* When header is over light background, swap. */
.ze-header[data-scheme="light"] .ze-logo-wrap--dark { display: inline-flex; }
.ze-header[data-scheme="light"] .ze-logo-wrap--light { display: none; }

.ze-nav { flex: 1; }
.ze-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	list-style: none;
	margin: 0; padding: 0;
}
.ze-menu-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	border-radius: var(--ze-radius-pill);
	transition: color 0.2s, background 0.2s;
}
.ze-header[data-scheme="light"] .ze-menu-link { color: var(--ze-text); }
.ze-menu-link:hover, .ze-menu-item.is-current > .ze-menu-link {
	color: var(--ze-accent);
}
.ze-menu-item { position: relative; }
.ze-caret { font-size: 9px; opacity: 0.7; margin-left: 2px; }

.ze-submenu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 220px;
	padding: 10px;
	margin: 0;
	list-style: none;
	background: var(--ze-surface-2);
	border-radius: var(--ze-radius);
	box-shadow: 0 24px 48px rgba(15,15,15,0.18);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.ze-menu-item.has-children:hover > .ze-submenu,
.ze-menu-item.has-children:focus-within > .ze-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.ze-submenu .ze-menu-link {
	display: block;
	width: 100%;
	padding: 10px 14px;
	color: var(--ze-text);
	font-size: 13px;
	letter-spacing: 0.06em;
	border-radius: 8px;
}
.ze-submenu .ze-menu-link:hover { background: rgba(15,15,15,0.05); color: var(--ze-accent-deep); }

.ze-header__right {
	display: flex;
	align-items: center;
	gap: 10px;
}
.ze-search-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--ze-accent);
	color: #ffffff;
	border: none;
	transition: transform 0.25s var(--ze-ease), background 0.25s var(--ze-ease);
}
.ze-search-btn:hover { transform: scale(1.05); background: #0f0f0f; }

.ze-burger {
	display: none;
	width: 44px; height: 44px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 50%;
	padding: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.ze-burger span {
	display: block;
	width: 18px; height: 2px;
	background: #ffffff;
	transition: transform 0.2s, opacity 0.2s;
}
.ze-header[data-scheme="light"] .ze-burger span { background: var(--ze-text); }
.ze-header[data-scheme="light"] .ze-burger { border-color: rgba(15,15,15,0.15); }
.ze-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ze-burger.is-open span:nth-child(2) { opacity: 0; }
.ze-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Language switcher --------------------------------------------- */

.ze-lang { position: relative; }
.ze-lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.25);
	color: #ffffff;
	padding: 9px 13px;
	border-radius: var(--ze-radius-pill);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: border-color 0.2s, background 0.2s;
	max-width: 112px;
}
.ze-lang-current {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
	font-size: 0;
}
.ze-lang-current::after {
	content: "EN";
	font-size: 12px;
}
html[lang^="az"] .ze-lang-current::after { content: "AZ"; }
html[lang^="ru"] .ze-lang-current::after { content: "RU"; }
.ze-lang-flag,
.ze-lang img {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
}
.ze-header[data-scheme="light"] .ze-lang-toggle { border-color: rgba(15,15,15,0.15); color: var(--ze-text); }
.ze-lang-toggle:hover { border-color: var(--ze-accent); color: var(--ze-accent); }
.ze-lang-list {
	position: absolute;
	right: 0; top: calc(100% + 8px);
	min-width: 178px;
	padding: 8px;
	margin: 0;
	list-style: none;
	background: var(--ze-surface-2);
	border-radius: var(--ze-radius);
	box-shadow: 0 24px 48px rgba(15,15,15,0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.ze-lang.is-open .ze-lang-list { opacity: 1; visibility: visible; transform: translateY(0); }
.ze-lang-list li { display: block; }
.ze-lang-list a {
	display: flex; align-items: center; gap: 8px;
	padding: 8px 12px;
	color: var(--ze-text);
	font-size: 0;
	border-radius: 6px;
	white-space: nowrap;
}
.ze-lang-list a::after {
	font-size: 13px;
}
.ze-lang-list a[lang^="en"]::after { content: "English"; }
.ze-lang-list a[lang^="az"]::after { content: "Azərbaycanca"; }
.ze-lang-list a[lang^="ru"]::after { content: "Русский"; }
.ze-lang-list a:hover { background: rgba(15,15,15,0.05); color: var(--ze-accent-deep); }

/* ----- Search overlay ------------------------------------------------- */

.ze-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15,15,15,0.96);
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.ze-search-overlay.is-open { display: flex; }
.ze-search-form {
	width: 100%;
	max-width: 720px;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	padding-bottom: 12px;
}
.ze-search-input {
	flex: 1;
	background: transparent;
	border: none;
	color: #ffffff;
	font-family: var(--ze-font-display);
	font-size: clamp(24px, 4vw, 42px);
	padding: 8px 0;
}
.ze-search-input:focus { outline: none; }
.ze-search-input::placeholder { color: rgba(255,255,255,0.45); }
.ze-search-submit {
	width: 48px; height: 48px;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	background: transparent;
	color: #ffffff;
	display: flex; align-items: center; justify-content: center;
	transition: background 0.2s, color 0.2s;
}
.ze-search-submit:hover { background: var(--ze-accent); color: var(--ze-accent-deep); }
.ze-search-close {
	position: absolute;
	top: 24px; right: 24px;
	width: 48px; height: 48px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	color: #ffffff;
	display: flex; align-items: center; justify-content: center;
}
.ze-search-close:hover { background: var(--ze-accent); color: var(--ze-accent-deep); border-color: var(--ze-accent); }

/* ----- Hero ----------------------------------------------------------- */

.ze-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	color: var(--ze-text-light);
	display: flex;
	align-items: flex-end;
	padding: 120px 0 80px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(15,15,15,0.88), rgba(96,99,105,0.48)),
		repeating-linear-gradient(115deg, rgba(254,74,35,0.2) 0 2px, transparent 2px 90px),
		var(--ze-bg);
}
.ze-hero__video, .ze-hero > img.ze-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.ze-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse at bottom left, rgba(15,15,15,0.7), transparent 60%),
		linear-gradient(180deg, rgba(15,15,15,0.45) 0%, rgba(15,15,15,0.15) 40%, rgba(15,15,15,0.85) 100%);
}
.ze-hero__inner { position: relative; z-index: 2; }
.ze-hero__title {
	font-size: clamp(36px, 6vw, var(--ze-hero-title-max));
	line-height: 1.04;
	max-width: 16ch;
	margin: 0 0 36px;
	letter-spacing: 0;
}
.ze-hero__row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 24px 48px;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,0.15);
}
.ze-hero__desc {
	max-width: 60ch;
	margin: 0;
	color: rgba(255,255,255,0.85);
	font-size: 16px;
	line-height: 1.6;
}
.ze-hero__cta {
	display: inline-flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

/* ----- Brand marquee ------------------------------------------------- */

.ze-brands {
	padding: 56px 0 48px;
	background: var(--ze-surface);
	overflow: hidden;
}
.ze-brands__title {
	text-align: center;
	font-size: clamp(24px, 3.2vw, 44px);
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	color: var(--ze-text);
	margin: 0 0 42px;
}
.ze-marquee {
	position: relative;
	-webkit-mask-image: linear-gradient(90deg, transparent, #0f0f0f 8%, #0f0f0f 92%, transparent);
	        mask-image: linear-gradient(90deg, transparent, #0f0f0f 8%, #0f0f0f 92%, transparent);
}
.ze-marquee__track {
	display: flex;
	gap: var(--ze-brand-logo-gap);
	animation: ze-marquee 35s linear infinite;
	width: max-content;
	align-items: center;
}
.ze-marquee__item img {
	height: var(--ze-brand-logo-height);
	max-width: calc(var(--ze-brand-logo-height) * 4.4);
	width: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.55;
	transition: filter 0.3s, opacity 0.3s;
}
.ze-marquee__item:hover img { filter: none; opacity: 1; }

@keyframes ze-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ----- Section heads ------------------------------------------------- */

.ze-section-head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}
.ze-section-head .ze-eyebrow { margin-bottom: 14px; }
.ze-section-title {
	font-size: clamp(28px, 4vw, var(--ze-section-title-max));
	margin-bottom: 16px;
}
.ze-section-intro {
	font-size: 17px;
	color: var(--ze-text-soft);
	max-width: 56ch;
	margin-left: auto;
	margin-right: auto;
}

/* ----- Services ------------------------------------------------------ */

.ze-services {
	padding: 110px 0;
	background: var(--ze-surface);
	overflow: hidden;
}
.ze-services__head {
	display: grid;
	grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1.6fr);
	gap: 48px;
	align-items: start;
	margin-bottom: 68px;
}
.ze-services__copy {
	max-width: 820px;
}
.ze-services__title {
	font-size: clamp(34px, 4.8vw, 70px);
	line-height: 1.08;
	font-weight: 700;
	color: #0f0f0f;
}
.ze-services__intro {
	max-width: 62ch;
	margin: 22px 0 0;
	color: var(--ze-text-soft);
	font-size: 18px;
}
.ze-services__viewport {
	overflow: hidden;
	padding: 0 max(24px, calc((100vw - var(--ze-container)) / 2 + 24px)) 18px;
}
.ze-services__viewport::-webkit-scrollbar { display: none; }
.ze-services__track {
	display: flex;
	align-items: stretch;
	gap: 32px;
	width: 100%;
}
.ze-service-card {
	position: relative;
	display: flex;
	flex: 0 0 calc((min(100vw, var(--ze-container)) - 48px - (32px * 3)) / 5);
	min-width: 180px;
	min-height: 360px;
	padding: 0;
	color: #0f0f0f;
	background: transparent;
	border-radius: 4px;
	scroll-snap-align: start;
	overflow: hidden;
	transition: flex-basis 0.55s var(--ze-ease), color 0.3s var(--ze-ease), transform 0.35s var(--ze-ease), opacity 0.25s var(--ze-ease);
}
.ze-services.is-ready .ze-service-card { display: none; }
.ze-services.is-ready .ze-service-card.is-page-visible { display: flex; }
.ze-service-card.is-active {
	flex-basis: calc(((min(100vw, var(--ze-container)) - 48px - (32px * 3)) / 5) * 2);
	color: #ffffff;
}
.ze-service-card:hover { transform: translateY(-3px); }
.ze-service-card__media,
.ze-service-card__shade {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.ze-service-card__media {
	background:
		linear-gradient(135deg, rgba(254,74,35,0.32), rgba(15,15,15,0.72)),
		var(--ze-bg-3);
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.06);
	transition: opacity 0.45s var(--ze-ease), transform 0.75s var(--ze-ease);
}
.ze-service-card__media--fallback {
	background:
		linear-gradient(145deg, rgba(15,15,15,0.78), rgba(96,99,105,0.52)),
		repeating-linear-gradient(115deg, rgba(254,74,35,0.28) 0 2px, transparent 2px 60px),
		var(--ze-bg-3);
}
.ze-service-card__shade {
	background: linear-gradient(180deg, rgba(15,15,15,0.16), rgba(15,15,15,0.72));
	opacity: 0;
	transition: opacity 0.45s var(--ze-ease);
}
.ze-service-card.is-active .ze-service-card__media,
.ze-service-card.is-active .ze-service-card__shade {
	opacity: 1;
}
.ze-service-card:hover .ze-service-card__media,
.ze-service-card.is-active .ze-service-card__media {
	transform: scale(1);
}
.ze-service-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 28px 24px;
}
.ze-service-card__no {
	font-family: var(--ze-font-display);
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 24px;
}
.ze-service-card__title {
	font-family: var(--ze-font-display);
	font-size: clamp(24px, 2vw, 34px);
	font-weight: 700;
	line-height: 1.25;
}
.ze-service-card__desc {
	margin-top: auto;
	color: rgba(255,255,255,0.86);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.45;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.35s var(--ze-ease), transform 0.35s var(--ze-ease);
}
.ze-service-card.is-active .ze-service-card__desc {
	opacity: 1;
	transform: translateY(0);
}
.ze-services__stage {
	position: relative;
}
.ze-services__dots {
	display: inline-flex;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: 18px;
}
.ze-services__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(96,99,105,0.28);
	transition: width 0.25s var(--ze-ease), background 0.25s var(--ze-ease);
}
.ze-services__dot.is-active {
	width: 28px;
	background: var(--ze-accent);
}

/* ----- About short --------------------------------------------------- */

.ze-about {
	padding: 110px 0;
	background: var(--ze-surface);
}
.ze-about__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 56px;
	align-items: center;
}
.ze-about__media {
	border-radius: var(--ze-radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background:
		linear-gradient(135deg, rgba(15,15,15,0.72), rgba(96,99,105,0.48)),
		repeating-linear-gradient(135deg, rgba(254,74,35,0.24) 0 2px, transparent 2px 72px),
		var(--ze-bg-3);
}
.ze-about__media img { width: 100%; height: 100%; object-fit: cover; }
.ze-about__media.is-fallback::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
}
.ze-about__content { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.ze-about__heading {
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 500;
	line-height: 1.25;
	color: var(--ze-text);
}

/* ----- Global Impact / Map ------------------------------------------ */

.ze-impact {
	padding: 110px 0 0;
	background: #606369;
	color: var(--ze-text-light);
	position: relative;
	overflow: hidden;
}
.ze-impact::before {
	display: none;
}
.ze-impact .ze-container { position: relative; z-index: 1; }
.ze-impact__head {
	max-width: 760px;
	margin-bottom: 56px;
}
.ze-impact__head .ze-eyebrow { margin-bottom: 18px; }
.ze-impact .ze-eyebrow,
.ze-impact__label {
	color: #ffffff;
}
.ze-impact__title {
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 500;
	line-height: 1.2;
	color: #ff7557;
}
.ze-impact__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0;
	border-top: 1px solid var(--ze-line-dark);
	border-bottom: 1px solid var(--ze-line-dark);
	margin-bottom: 56px;
}
.ze-impact__card {
	padding: 36px 28px;
	border-right: 1px solid var(--ze-line-dark);
}
.ze-impact__card:last-child { border-right: none; }
.ze-impact__label {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 28px;
}
.ze-impact__value {
	font-size: clamp(34px, 4vw, 56px);
	color: #ff7557;
	margin: 0 0 12px;
	letter-spacing: 0;
}
.ze-impact__desc {
	color: var(--ze-text-muted);
	font-size: 14px;
	max-width: 32ch;
}
.ze-impact__map {
	width: 100vw;
	max-width: none;
	margin: 56px calc(50% - 50vw) 0;
	min-height: 260px;
	border-radius: 0;
}
.ze-impact__map img {
	width: 100%;
	height: auto;
	display: block;
	mix-blend-mode: screen;
	opacity: 0.95;
}
.ze-impact__map.is-fallback { min-height: clamp(260px, 34vw, 440px); }

/* ----- Blog list ----------------------------------------------------- */

.ze-blog {
	padding: 110px 0;
	background: var(--ze-surface);
}
.ze-blog__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 56px;
}
.ze-blog__head .ze-eyebrow { margin-bottom: 14px; }
.ze-blog__head .ze-section-title { margin: 0; max-width: 16ch; text-align: left; }
.ze-blog__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}
.ze-blog-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ze-blog-card__thumb {
	display: block;
	overflow: hidden;
	border-radius: var(--ze-radius-lg);
	aspect-ratio: 16 / 11;
	background: var(--ze-bg-3);
}
.ze-blog-card__thumb img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.6s var(--ze-ease);
}
.ze-blog-card__thumb:hover img { transform: scale(1.05); }
.ze-blog-card__body { display: flex; flex-direction: column; gap: 14px; }
.ze-blog-meta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--ze-text-soft);
}
.ze-blog-meta > * { display: inline-flex; align-items: center; gap: 8px; }
.ze-author-avatar { border-radius: 50%; }
.ze-blog-card__title {
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: 0;
}
.ze-blog-card__title a:hover { color: var(--ze-accent-2); }

/* ----- CTA section --------------------------------------------------- */

.ze-cta {
	position: relative;
	color: var(--ze-text-light);
	overflow: hidden;
	padding: 140px 0 120px;
	background:
		linear-gradient(135deg, rgba(15,15,15,0.82), rgba(96,99,105,0.5)),
		repeating-linear-gradient(120deg, rgba(254,74,35,0.24) 0 2px, transparent 2px 82px),
		var(--ze-bg);
}
.ze-cta__video {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: 0;
}
.ze-cta__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse at bottom, rgba(15,15,15,0.5), transparent 70%),
		linear-gradient(180deg, rgba(15,15,15,0.6) 0%, rgba(15,15,15,0.5) 100%);
}
.ze-cta__inner { position: relative; z-index: 2; }
.ze-cta__title {
	font-size: clamp(36px, 6vw, 72px);
	max-width: 16ch;
	margin-bottom: 40px;
	line-height: 1.05;
	letter-spacing: 0;
}
.ze-cta__row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px 48px;
	align-items: end;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,0.15);
}
.ze-cta__desc {
	max-width: 60ch;
	color: rgba(255,255,255,0.85);
}

/* ----- Footer -------------------------------------------------------- */

.ze-footer {
	background: var(--ze-bg);
	color: var(--ze-text-light);
	padding: 80px 0 0;
}
.ze-footer__top {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 56px;
	padding-bottom: 56px;
	border-bottom: 1px solid var(--ze-line-dark);
}
.ze-footer__brand { max-width: 360px; }
.ze-footer__logo { height: var(--ze-footer-logo-height); width: auto; margin-bottom: 20px; }
.ze-footer__about {
	color: var(--ze-text-muted);
	font-size: 15px;
}
.ze-footer__cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 24px;
}
.ze-footer__col-title {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ze-text-light);
	margin-bottom: 18px;
	font-family: var(--ze-font-display);
}
.ze-footer__menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ze-footer__menu a {
	color: var(--ze-text-muted);
	font-size: 14px;
	transition: color 0.2s;
}
.ze-footer__menu a:hover { color: var(--ze-accent); }

.ze-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	padding: 24px 0;
	margin-top: 0;
	background: var(--ze-accent);
	box-shadow: 0 0 0 100vmax var(--ze-accent);
	clip-path: inset(0 -100vmax);
	color: #ffffff;
	font-size: 13px;
}
.ze-footer__legal {
	display: flex; gap: 18px;
	list-style: none; padding: 0; margin: 0;
}
.ze-footer__legal a { color: #ffffff; }
.ze-footer__legal a:hover { color: #0f0f0f; }

/* ----- Archive / Single ---------------------------------------------- */

.ze-archive, .ze-single, .ze-404 { padding: 160px 0 80px; }
.ze-page { padding: 0; }
.ze-page-header { margin-bottom: 48px; text-align: center; }
.ze-page-title { font-size: clamp(32px, 5vw, 56px); }
.ze-page-subtitle { color: var(--ze-text-soft); }

/* ----- Designed inner pages ----------------------------------------- */

.ze-page-hero {
	position: relative;
	overflow: hidden;
	padding: 160px 0 84px;
	background:
		linear-gradient(135deg, rgba(15,15,15,0.92), rgba(96,99,105,0.72)),
		repeating-linear-gradient(120deg, rgba(254,74,35,0.22) 0 2px, transparent 2px 82px),
		#0f0f0f;
	color: #ffffff;
}
.ze-page-hero--image {
	background:
		linear-gradient(135deg, rgba(15,15,15,0.9), rgba(15,15,15,0.52)),
		var(--ze-page-hero-image, repeating-linear-gradient(120deg, rgba(254,74,35,0.22) 0 2px, transparent 2px 82px)),
		#0f0f0f;
	background-size: cover;
	background-position: center;
}
.ze-page-hero--minimal {
	background: #ffffff;
	color: #0f0f0f;
	border-bottom: 1px solid rgba(15,15,15,0.1);
}
.ze-page-hero--minimal .ze-page-hero__intro {
	color: #606369;
}
.ze-page-hero .ze-eyebrow { margin-bottom: 28px; }
.ze-page-hero__title {
	max-width: 11ch;
	font-size: clamp(48px, 8vw, 104px);
	line-height: 0.98;
	letter-spacing: 0;
}
.ze-page-hero__intro {
	max-width: 760px;
	margin: 34px 0 0;
	color: rgba(255,255,255,0.86);
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.45;
}
.ze-page-layout {
	padding: 86px 0 110px;
	background: #ffffff;
}
.ze-page-content {
	max-width: 1120px;
	margin: 0 auto;
}
.ze-page__thumb {
	overflow: hidden;
	margin: 0 0 56px;
	border-radius: 4px;
	background: #606369;
}
.ze-page__thumb img {
	width: 100%;
	height: auto;
	display: block;
}
.ze-page__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #0f0f0f;
}
.ze-page__body > * {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
.ze-page__body > p:first-child {
	max-width: 940px;
	font-size: clamp(22px, 3vw, 36px);
	line-height: 1.22;
	font-family: var(--ze-font-display);
	font-weight: 700;
	margin-bottom: 42px;
}
.ze-page__body h2 {
	max-width: none;
	margin: 76px 0 30px;
	padding: 34px max(24px, calc((100vw - 1120px) / 2));
	background: #0f0f0f;
	color: #ffffff;
	font-size: clamp(34px, 5vw, 68px);
	line-height: 1.05;
	letter-spacing: 0;
}
.ze-page__body h3 {
	margin-top: 42px;
	margin-bottom: 14px;
	color: #0f0f0f;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.18;
	letter-spacing: 0;
}
.ze-page__body h4 {
	margin-top: 28px;
	margin-bottom: 10px;
	color: #fe4a23;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0;
}
.ze-page__body p,
.ze-page__body ul,
.ze-page__body ol,
.ze-page__body table { margin-top: 0; margin-bottom: 24px; }
.ze-page__body ul,
.ze-page__body ol {
	padding-left: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
.ze-page__body li {
	position: relative;
	padding: 16px 18px 16px 42px;
	background: #ffffff;
	border: 1px solid rgba(15,15,15,0.12);
	border-radius: 4px;
	color: #606369;
}
.ze-page__body li::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 24px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #fe4a23;
}
.ze-page__body table,
.ze-page__body .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	border: 1px solid rgba(15,15,15,0.14);
}
.ze-page__body td,
.ze-page__body th {
	padding: 16px 18px;
	border-bottom: 1px solid rgba(15,15,15,0.1);
	text-align: left;
	vertical-align: top;
}
.ze-page__body th,
.ze-page__body td:first-child {
	color: #0f0f0f;
	font-weight: 700;
}
.ze-page__body a {
	color: #fe4a23;
	font-weight: 700;
}
.ze-page-layout--contact-us .ze-page__body > p:first-child,
.ze-page-layout--contact .ze-page__body > p:first-child {
	max-width: 760px;
}
.ze-page-layout--contact-us .wpforms-container,
.ze-page-layout--contact .wpforms-container,
.ze-page-layout--contact-us .wpforms-form,
.ze-page-layout--contact .wpforms-form,
.ze-page-layout--contact-us .wpforms-field,
.ze-page-layout--contact .wpforms-field,
.ze-page-layout--contact-us .wpforms-field-row,
.ze-page-layout--contact .wpforms-field-row {
	width: 100% !important;
	max-width: 100% !important;
}
.ze-page-layout--contact-us .wpforms-field-row,
.ze-page-layout--contact .wpforms-field-row {
	display: flex;
	gap: 18px;
}
.ze-page-layout--contact-us .wpforms-field-row > *,
.ze-page-layout--contact .wpforms-field-row > * {
	flex: 1 1 0;
	width: auto !important;
	max-width: none !important;
	margin-left: 0 !important;
}
.ze-page-layout--contact-us .wpforms-form input[type="text"],
.ze-page-layout--contact .wpforms-form input[type="text"],
.ze-page-layout--contact-us .wpforms-form input[type="email"],
.ze-page-layout--contact .wpforms-form input[type="email"],
.ze-page-layout--contact-us .wpforms-form input[type="tel"],
.ze-page-layout--contact .wpforms-form input[type="tel"],
.ze-page-layout--contact-us .wpforms-form input[type="url"],
.ze-page-layout--contact .wpforms-form input[type="url"],
.ze-page-layout--contact-us .wpforms-form input[type="number"],
.ze-page-layout--contact .wpforms-form input[type="number"],
.ze-page-layout--contact-us .wpforms-form select,
.ze-page-layout--contact .wpforms-form select,
.ze-page-layout--contact-us .wpforms-form textarea,
.ze-page-layout--contact .wpforms-form textarea {
	width: 100% !important;
	max-width: 100% !important;
	min-height: 52px;
	border: 1px solid rgba(15,15,15,0.28);
	border-radius: 4px;
	box-shadow: none;
}
.ze-page-layout--contact-us .wpforms-submit,
.ze-page-layout--contact .wpforms-submit {
	min-height: 52px;
	padding: 14px 26px;
	border: 0;
	border-radius: 999px;
	background: #fe4a23;
	color: #ffffff;
	font-weight: 800;
}

/* ----- Structured inner-page demo content ----------------------------- */

.ze-demo-section {
	padding: 94px 0;
	background: #ffffff;
}
.ze-demo-section + .ze-demo-section {
	border-top: 1px solid rgba(15,15,15,0.08);
}
.ze-demo-muted {
	background: #606369;
	color: #ffffff;
}
.ze-demo-dark {
	background: #0f0f0f;
	color: #ffffff;
}
.ze-demo-head {
	max-width: 860px;
}
.ze-demo-head h2 {
	margin: 12px 0 0;
	font-size: clamp(36px, 5vw, 72px);
	line-height: 1.05;
}
.ze-demo-head p {
	max-width: 720px;
	margin: 22px 0 0;
	color: #606369;
	font-size: 18px;
	line-height: 1.62;
}
.ze-demo-dark .ze-demo-head p {
	color: rgba(255,255,255,0.72);
}
.ze-demo-muted .ze-demo-head p {
	color: rgba(255,255,255,0.78);
}
.ze-demo-kicker {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #fe4a23;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.ze-demo-split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 72px;
	align-items: start;
}
.ze-demo-copy {
	padding-top: 46px;
	color: #606369;
	font-size: 19px;
	line-height: 1.72;
}
.ze-demo-copy p {
	margin: 0 0 22px;
}
.ze-demo-stat-grid,
.ze-demo-contact-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.ze-demo-stat,
.ze-demo-contact-cards article {
	min-height: 230px;
	padding: 28px;
	background: #ffffff;
	border: 1px solid rgba(15,15,15,0.1);
	border-radius: 4px;
}
.ze-demo-stat span,
.ze-demo-contact-cards span {
	display: block;
	color: #606369;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}
.ze-demo-stat strong,
.ze-demo-contact-cards strong {
	display: block;
	margin-top: 58px;
	color: #0f0f0f;
	font-family: var(--ze-font-display);
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1;
}
.ze-demo-contact-cards strong {
	margin-top: 34px;
	font-size: clamp(24px, 3vw, 36px);
}
.ze-demo-stat p,
.ze-demo-contact-cards p {
	margin: 16px 0 0;
	color: #606369;
}
.ze-demo-timeline {
	display: grid;
	gap: 42px;
}
.ze-demo-timeline__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.ze-demo-timeline__list article {
	padding: 24px;
	border-left: 3px solid #fe4a23;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(15,15,15,0.06);
}
.ze-demo-timeline__list span {
	color: #fe4a23;
	font-weight: 900;
}
.ze-demo-timeline__list p {
	margin: 14px 0 0;
	color: #606369;
}
.ze-demo-accordion {
	display: grid;
	gap: 10px;
}
.ze-demo-accordion details {
	border-bottom: 1px solid rgba(96,99,105,0.28);
}
.ze-demo-dark .ze-demo-accordion details {
	border-bottom-color: rgba(255,255,255,0.16);
}
.ze-demo-accordion summary {
	position: relative;
	list-style: none;
	padding: 22px 42px 22px 0;
	font-family: var(--ze-font-display);
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
}
.ze-demo-accordion summary::-webkit-details-marker {
	display: none;
}
.ze-demo-accordion summary::after {
	content: "+";
	position: absolute;
	top: 20px;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fe4a23;
	color: #ffffff;
}
.ze-demo-accordion details[open] summary::after {
	content: "-";
}
.ze-demo-accordion p {
	margin: 0 0 22px;
	color: #606369;
	line-height: 1.68;
}
.ze-demo-dark .ze-demo-accordion p {
	color: rgba(255,255,255,0.72);
}
.ze-demo-logo-grid,
.ze-demo-icon-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 34px;
}
.ze-demo-logo-grid span,
.ze-demo-icon-list span {
	display: flex;
	align-items: center;
	min-height: 70px;
	padding: 18px;
	border: 1px solid rgba(15,15,15,0.1);
	border-radius: 4px;
	color: #0f0f0f;
	font-weight: 800;
}
.ze-demo-dark .ze-demo-icon-list span {
	border-color: rgba(255,255,255,0.14);
	color: #ffffff;
}
.ze-demo-wide-media,
.ze-demo-contact__visual {
	min-height: 420px;
	margin-top: 48px;
	border-radius: 4px;
	background:
		linear-gradient(135deg, rgba(15,15,15,0.1), rgba(15,15,15,0.38)),
		repeating-linear-gradient(120deg, rgba(254,74,35,0.22) 0 2px, transparent 2px 58px),
		#606369;
}
.ze-demo-wide-media.is-services {
	background:
		linear-gradient(135deg, rgba(255,255,255,0.08), rgba(15,15,15,0.52)),
		radial-gradient(circle at 30% 35%, rgba(254,74,35,0.75), transparent 0 16%, transparent 34%),
		repeating-linear-gradient(110deg, rgba(255,255,255,0.16) 0 2px, transparent 2px 76px),
		#606369;
}
.ze-demo-card-intro {
	display: grid;
	gap: 44px;
}
.ze-demo-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.ze-demo-service-card {
	display: flex;
	flex-direction: column;
	min-height: 290px;
	padding: 28px;
	background: #ffffff;
	border: 1px solid rgba(15,15,15,0.1);
	border-radius: 4px;
	transition: transform 0.25s var(--ze-ease), box-shadow 0.25s var(--ze-ease);
}
.ze-demo-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 52px rgba(15,15,15,0.12);
}
.ze-demo-service-card span {
	color: #fe4a23;
	font-family: var(--ze-font-display);
	font-size: 28px;
	font-weight: 800;
}
.ze-demo-service-card h3 {
	margin-top: 18px;
	font-size: 24px;
	line-height: 1.18;
}
.ze-demo-service-card p {
	margin: 16px 0 0;
	color: #606369;
}
.ze-demo-service-card a {
	margin-top: auto;
	color: #fe4a23;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}
.ze-demo-process {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
	gap: 76px;
	align-items: start;
}
.ze-demo-layer-stack {
	display: grid;
	gap: 14px;
}
.ze-demo-layer-stack article {
	padding: 24px;
	background: #ffffff;
	border: 1px solid rgba(15,15,15,0.1);
	border-radius: 4px;
}
.ze-demo-layer-stack h3 {
	color: #fe4a23;
	font-size: 24px;
}
.ze-demo-layer-stack p {
	margin: 12px 0 0;
	color: #606369;
}
.ze-demo-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: 0;
}
.ze-demo-contact__visual {
	min-height: 650px;
	margin-top: 0;
	border-radius: 4px 0 0 4px;
}
.ze-demo-contact__form {
	position: relative;
	z-index: 1;
	margin-left: -72px;
	padding: 44px;
	background: #ffffff;
	border: 1px solid rgba(15,15,15,0.1);
	border-radius: 4px;
	box-shadow: 0 28px 80px rgba(15,15,15,0.16);
}
.ze-demo-contact__form h2 {
	margin-bottom: 24px;
	font-size: clamp(32px, 4vw, 52px);
}
.ze-demo-editor {
	width: 100%;
	max-width: 980px;
	margin: 48px auto 0;
	color: #0f0f0f;
	font-size: 17px;
	line-height: 1.7;
}
.ze-demo-editor--form {
	max-width: none;
	margin: 0;
}
.ze-demo-editor > * {
	max-width: 100%;
}
.ze-demo-editor .wpforms-container,
.ze-demo-editor .wpforms-form,
.ze-demo-editor .wpforms-field,
.ze-demo-editor .wpforms-field-row {
	width: 100% !important;
	max-width: 100% !important;
}
.ze-demo-editor .wpforms-field-row {
	display: flex;
	gap: 18px;
}
.ze-demo-editor .wpforms-field-row > * {
	flex: 1 1 0;
	width: auto !important;
	max-width: none !important;
	margin-left: 0 !important;
}
.ze-demo-editor .wpforms-form input[type="text"],
.ze-demo-editor .wpforms-form input[type="email"],
.ze-demo-editor .wpforms-form input[type="tel"],
.ze-demo-editor .wpforms-form input[type="url"],
.ze-demo-editor .wpforms-form input[type="number"],
.ze-demo-editor .wpforms-form select,
.ze-demo-editor .wpforms-form textarea {
	width: 100% !important;
	max-width: 100% !important;
	min-height: 52px;
	border: 1px solid rgba(15,15,15,0.28);
	border-radius: 4px;
	box-shadow: none;
}
.ze-demo-editor .wpforms-submit {
	width: 100%;
	min-height: 54px;
	border: 0;
	border-radius: 999px;
	background: #fe4a23;
	color: #ffffff;
	font-weight: 900;
	text-transform: uppercase;
}

/* ----- Products page -------------------------------------------------- */

.ze-product-archive {
	padding: 86px 0 110px;
	background: #ffffff;
}
.ze-product-page-intro {
	margin: 0 auto 54px;
}
.ze-product-filters {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)) auto auto;
	gap: 14px;
	align-items: end;
	margin-bottom: 42px;
	padding: 20px;
	background: #0f0f0f;
	border-radius: 4px;
}
.ze-product-filters label {
	display: grid;
	gap: 8px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.ze-product-filters select {
	width: 100%;
	min-height: 50px;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 4px;
	background: #ffffff;
	color: #0f0f0f;
	font: inherit;
	padding: 0 14px;
}
.ze-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}
.ze-product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(15,15,15,0.12);
	border-radius: 4px;
	transition: transform 0.25s var(--ze-ease), box-shadow 0.25s var(--ze-ease);
}
.ze-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 44px rgba(15,15,15,0.14);
}
.ze-product-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, rgba(15,15,15,0.72), rgba(96,99,105,0.48)),
		repeating-linear-gradient(120deg, rgba(254,74,35,0.2) 0 2px, transparent 2px 60px),
		#606369;
}
.ze-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ze-product-card__body {
	padding: 24px;
}
.ze-product-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}
.ze-product-card__meta span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	background: rgba(254,74,35,0.1);
	color: #fe4a23;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}
.ze-product-card__title {
	font-size: 24px;
	line-height: 1.18;
	margin-bottom: 0;
}
.ze-product-card__title a:hover {
	color: #fe4a23;
}
.ze-product-single__meta {
	margin-bottom: 18px;
}
.ze-product-single__article {
	padding-top: 76px;
}
.ze-product-single__head {
	max-width: 900px;
	margin-bottom: 42px;
}
.ze-product-single__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: 34px;
	align-items: start;
	margin-bottom: 46px;
}
.ze-product-single__image {
	border: 1px solid rgba(15,15,15,0.16);
	border-radius: 4px;
	overflow: hidden;
	background: #ffffff;
}
.ze-product-single__image img {
	width: 100%;
	height: auto;
}
.ze-product-single__aside {
	position: sticky;
	top: 112px;
	border-left: 1px solid rgba(15,15,15,0.12);
	padding-left: 24px;
}
.ze-product-single__body {
	max-width: 860px;
}
.ze-service-solution-single__article {
	padding-top: 76px;
}
.ze-service-solution-single__head {
	max-width: 960px;
	margin-bottom: 36px;
}
.ze-service-solution-single__head .ze-post__title {
	margin-top: 18px;
}
.ze-service-solution-single__head p {
	max-width: 760px;
	margin: 24px 0 0;
	color: #606369;
	font-size: 20px;
	line-height: 1.58;
}
.ze-service-solution-single__thumb {
	overflow: hidden;
	margin-bottom: 34px;
	border: 1px solid rgba(15,15,15,0.14);
	border-radius: 4px;
	background: #ffffff;
}
.ze-service-solution-single__thumb img {
	width: 100%;
	height: auto;
}
.ze-service-solution-single > .ze-container > .ze-share,
.ze-service-solution-single__article > .ze-share {
	margin-bottom: 34px;
}
.ze-service-solution-single__body {
	max-width: 860px;
}

.ze-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 18px;
	color: #606369;
	font-size: 14px;
	font-weight: 700;
}
.ze-breadcrumbs a:hover {
	color: #fe4a23;
}
.ze-breadcrumbs__sep {
	color: rgba(96,99,105,0.55);
}

.ze-share {
	display: grid;
	gap: 12px;
	margin: 0 0 38px;
}
.ze-share__label {
	color: #606369;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.ze-share__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ze-share__links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid rgba(15,15,15,0.14);
	border-radius: 999px;
	color: #0f0f0f;
	font-size: 13px;
	font-weight: 800;
	transition: background 0.2s var(--ze-ease), color 0.2s var(--ze-ease), border-color 0.2s var(--ze-ease);
}
.ze-share__links a:hover {
	background: #fe4a23;
	border-color: #fe4a23;
	color: #ffffff;
}

.ze-related {
	margin-top: 82px;
	padding-top: 58px;
	border-top: 1px solid rgba(15,15,15,0.12);
}
.ze-related__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}
.ze-related__head h2 {
	font-size: clamp(30px, 4vw, 48px);
}
.ze-related__grid {
	margin-top: 0;
}

.ze-post__head { text-align: center; margin-bottom: 32px; }
.ze-post__head .ze-blog-meta { justify-content: center; margin-bottom: 16px; }
.ze-post__title { font-size: clamp(32px, 5vw, 56px); }
.ze-post__thumb { border-radius: 4px; overflow: hidden; margin-bottom: 28px; }
.ze-post > .ze-share {
	justify-content: center;
	justify-items: center;
	margin-bottom: 34px;
}
.ze-post__body { font-size: 17px; line-height: 1.7; }
.ze-post__body p, .ze-post__body ul, .ze-post__body ol { margin-bottom: 1.2em; }
.ze-post__body h2, .ze-post__body h3 { margin: 1.4em 0 0.6em; }

.ze-pagination {
	display: flex; justify-content: center;
	margin-top: 48px;
}
.ze-pagination .nav-links { display: flex; gap: 8px; }
.ze-pagination a, .ze-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px; height: 44px;
	padding: 0 12px;
	border-radius: var(--ze-radius-pill);
	background: var(--ze-surface-2);
	color: var(--ze-text);
	font-weight: 600;
	border: 1px solid var(--ze-line);
}
.ze-pagination .current { background: var(--ze-accent); border-color: var(--ze-accent); color: var(--ze-accent-deep); }

.ze-404__inner { text-align: center; }
.ze-404__code {
	font-size: clamp(96px, 18vw, 220px);
	color: var(--ze-accent);
	line-height: 1;
	margin-bottom: 16px;
}

/* ----- Forms (search form fallback) ---------------------------------- */

.ze-searchform {
	display: flex;
	gap: 0;
	border: 1px solid var(--ze-line);
	border-radius: var(--ze-radius-pill);
	overflow: hidden;
	background: var(--ze-surface-2);
}
.ze-searchform__input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 14px 20px;
	font-size: 15px;
}
.ze-searchform__input:focus { outline: none; }
.ze-searchform__submit {
	border: none;
	background: var(--ze-accent);
	color: #ffffff;
	padding: 0 22px;
	cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
}

/* ----- Page reveal motion -------------------------------------------- */

.ze-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.75s var(--ze-ease), transform 0.75s var(--ze-ease);
}
.ze-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
	.ze-reveal {
		opacity: 1;
		transform: none;
	}
}

/* ----- Mobile menu drawer -------------------------------------------- */

@media (max-width: 1023px) {
	.ze-header {
		position: fixed;
		padding: 12px 0;
		background: rgba(15,15,15,0.92);
		backdrop-filter: blur(14px);
	}
	.ze-header.is-stuck {
		background: #ffffff;
		box-shadow: 0 1px 0 rgba(15,15,15,0.08);
	}
	.ze-header__inner { gap: 12px; }
	.ze-header__logo {
		position: relative;
		z-index: 101;
		min-width: 0;
	}
	.ze-logo {
		max-width: 168px;
		height: min(var(--ze-logo-height), 34px);
		object-fit: contain;
	}
	.ze-header__right {
		position: relative;
		z-index: 101;
		gap: 8px;
	}
	.ze-lang-toggle {
		min-height: 42px;
		padding: 8px 11px;
		background: rgba(255,255,255,0.08);
	}
	.ze-search-btn,
	.ze-burger {
		width: 42px;
		height: 42px;
		flex: 0 0 42px;
	}
	.ze-service-card,
	.ze-service-card.is-active {
		flex-basis: calc((100vw - 48px - 32px) / 2);
	}
	.ze-services__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
	.ze-services__title { font-size: clamp(34px, 7vw, 58px); }
	.ze-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ze-demo-section {
		padding: 72px 0;
	}
	.ze-demo-split,
	.ze-demo-process,
	.ze-demo-contact__grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}
	.ze-demo-copy {
		padding-top: 0;
	}
	.ze-demo-stat-grid,
	.ze-demo-contact-cards,
	.ze-demo-card-grid,
	.ze-demo-timeline__list,
	.ze-demo-logo-grid,
	.ze-demo-icon-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ze-demo-contact__visual {
		min-height: 360px;
		border-radius: 4px;
	}
	.ze-demo-contact__form {
		margin-left: 0;
	}
	.ze-product-single__grid {
		grid-template-columns: 1fr;
	}
	.ze-product-single__aside {
		position: static;
		border-left: 0;
		border-top: 1px solid rgba(15,15,15,0.12);
		padding: 22px 0 0;
	}
	.ze-burger { display: inline-flex; }
	.ze-nav {
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100vh;
		background: var(--ze-bg);
		padding: 108px 24px 32px;
		z-index: 99;
		transform: translateX(100%);
		transition: transform 0.35s var(--ze-ease);
		overflow-y: auto;
	}
	.ze-nav.is-open { transform: translateX(0); }
	.ze-menu { flex-direction: column; align-items: stretch; gap: 10px; }
	.ze-menu-link {
		color: #ffffff;
		padding: 18px 0;
		border-radius: 0;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		font-size: clamp(26px, 8vw, 48px);
		line-height: 1;
		letter-spacing: 0;
	}
	.ze-menu-link:hover,
	.ze-menu-item.is-current > .ze-menu-link { color: var(--ze-accent); }
	.ze-submenu {
		position: static;
		transform: none;
		background: transparent;
		box-shadow: none;
		padding: 0 0 0 16px;
		opacity: 1;
		visibility: visible;
		min-width: 0;
	}
	.ze-submenu .ze-menu-link {
		color: rgba(255,255,255,0.7);
		padding: 12px 0;
		font-size: 20px;
		border-bottom: 0;
	}
}

@media (max-width: 767px) {
	.ze-container { padding: 0 20px; }
	.ze-header .ze-container { padding: 0 14px; }
	.ze-lang-list {
		right: -48px;
		min-width: 164px;
	}
	.ze-search-btn { display: inline-flex; }
	.ze-hero {
		padding: 116px 0 42px;
		min-height: 100svh;
		align-items: flex-end;
	}
	.ze-hero__title {
		font-size: clamp(40px, 13vw, 62px);
		max-width: 10ch;
		margin-bottom: 28px;
	}
	.ze-hero__row { grid-template-columns: 1fr; }
	.ze-hero__cta {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}
	.ze-btn {
		width: 100%;
		min-height: 52px;
		padding: 14px 18px;
		white-space: normal;
		text-align: center;
	}
	.ze-btn--ghost {
		width: auto;
		justify-self: start;
		min-height: 0;
	}
	.ze-brands {
		padding: 44px 0 38px;
	}
	.ze-brands__title {
		font-size: clamp(26px, 8vw, 36px);
		line-height: 1.1;
		margin-bottom: 28px;
	}
	.ze-marquee__track { gap: 42px; }
	.ze-marquee__item img {
		height: min(var(--ze-brand-logo-height), 72px);
		max-width: 210px;
	}
	.ze-cta__row { grid-template-columns: 1fr; }
	.ze-blog__head { flex-direction: column; align-items: flex-start; }
	.ze-about__grid { grid-template-columns: 1fr; gap: 32px; }
	.ze-footer { padding-top: 56px; }
	.ze-footer__top { grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }
	.ze-footer__cols { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
	.ze-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
	.ze-impact__card { border-right: none; border-bottom: 1px solid var(--ze-line-dark); }
	.ze-impact__card:last-child { border-bottom: none; }
	.ze-services { padding: 80px 0; }
	.ze-services__head { margin-bottom: 34px; }
	.ze-services__title {
		font-size: clamp(34px, 10vw, 46px);
		line-height: 1.08;
	}
	.ze-services__viewport { padding-left: 20px; padding-right: 20px; }
	.ze-services__track { gap: 18px; }
	.ze-service-card,
	.ze-service-card.is-active {
		flex-basis: calc(100vw - 40px);
		min-height: 430px;
	}
	.ze-services__dots { margin-top: 32px; }
	.ze-service-card__body { padding: 26px 22px; }
	.ze-about { padding: 80px 0; }
	.ze-impact { padding: 72px 0 0; }
	.ze-impact__head { margin-bottom: 34px; }
	.ze-impact__cards { margin-bottom: 0; }
	.ze-impact__map {
		margin-top: 40px;
		min-height: 230px;
	}
	.ze-blog { padding: 80px 0; }
	.ze-cta { padding: 86px 0 72px; }
	.ze-cta__title {
		font-size: clamp(38px, 12vw, 58px);
	}
	.ze-page-hero {
		padding: 118px 0 58px;
	}
	.ze-page-hero__title {
		font-size: clamp(44px, 14vw, 68px);
	}
	.ze-page-hero__intro {
		margin-top: 24px;
		font-size: 17px;
	}
	.ze-page-layout {
		padding: 56px 0 72px;
	}
	.ze-page__body {
		font-size: 16px;
		line-height: 1.68;
	}
	.ze-page__body > p:first-child {
		font-size: clamp(24px, 8vw, 34px);
	}
	.ze-page__body h2 {
		margin: 54px 0 24px;
		padding: 28px 20px;
		font-size: clamp(34px, 10vw, 48px);
	}
	.ze-page-layout--contact-us .wpforms-field-row,
	.ze-page-layout--contact .wpforms-field-row {
		display: grid;
		gap: 14px;
	}
	.ze-demo-section {
		padding: 58px 0;
	}
	.ze-demo-head h2 {
		font-size: clamp(34px, 10vw, 48px);
	}
	.ze-demo-stat-grid,
	.ze-demo-contact-cards,
	.ze-demo-card-grid,
	.ze-demo-timeline__list,
	.ze-demo-logo-grid,
	.ze-demo-icon-list {
		grid-template-columns: 1fr;
	}
	.ze-demo-stat,
	.ze-demo-contact-cards article,
	.ze-demo-service-card {
		min-height: 0;
		padding: 22px;
	}
	.ze-demo-stat strong {
		margin-top: 32px;
	}
	.ze-demo-wide-media,
	.ze-demo-contact__visual {
		min-height: 260px;
	}
	.ze-demo-contact__form {
		padding: 24px;
	}
	.ze-demo-editor .wpforms-field-row {
		display: grid;
		gap: 14px;
	}
	.ze-page__body ul,
	.ze-page__body ol {
		grid-template-columns: 1fr;
	}
	.ze-page__body td,
	.ze-page__body th {
		display: block;
		width: 100%;
	}
	.ze-product-archive {
		padding: 56px 0 74px;
	}
	.ze-product-filters {
		grid-template-columns: 1fr;
		padding: 16px;
	}
	.ze-product-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.ze-product-card__body {
		padding: 20px;
	}
	.ze-product-single__article {
		padding-top: 54px;
	}
	.ze-service-solution-single__article {
		padding-top: 54px;
	}
	.ze-product-single__head {
		margin-bottom: 30px;
	}
	.ze-service-solution-single__head {
		margin-bottom: 28px;
	}
	.ze-product-single__grid {
		gap: 22px;
		margin-bottom: 34px;
	}
	.ze-related {
		margin-top: 56px;
		padding-top: 38px;
	}
	.ze-related__head {
		display: grid;
		gap: 12px;
	}
	.ze-share__links {
		width: 100%;
	}
	.ze-share__links a {
		flex: 1 1 auto;
	}
}
