@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,400;0,500;0,600;0,700;1,600;1,700&display=swap");

:root {
	--zomo-blue: #281fa5;
	--zomo-blue-dark: #141064;
	--zomo-text: #08080d;
	--zomo-gray: #eeeeee;
	--zomo-footer: #202020;
	--zomo-line: #a7a7a7;
	--zomo-max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--zomo-text);
	background: #fff;
	font-family: "Bai Jamjuree", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.45;
}
a { color: var(--zomo-blue); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
main { overflow: hidden; }

.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	box-shadow: none;
	transition: box-shadow .18s ease;
}
.site-header.is-scrolled {
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.header-inner {
	max-width: var(--zomo-max);
	min-height: 102px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 38px;
	padding: 0 0;
}
.brand img { width: 242px; }
.primary-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	font-size: 15px;
	font-weight: 500;
}
.primary-nav > a,
.nav-item > a {
	color: #050505;
	white-space: nowrap;
}
.primary-nav > a:hover,
.nav-item:hover > a { color: var(--zomo-blue); }
.has-menu > a::after {
	content: "⌄";
	font-size: 10px;
	margin-left: 4px;
	color: var(--zomo-blue);
}
.nav-item { position: relative; }
.mega-menu,
.small-menu {
	position: absolute;
	top: calc(100% + 18px);
	left: -24px;
	z-index: 20;
	min-width: 220px;
	padding: 22px 24px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
	display: none;
	gap: 24px;
}
.mega-menu { min-width: 520px; grid-template-columns: repeat(3, 1fr); }
.small-menu { min-width: 170px; }
.nav-item:hover .mega-menu { display: grid; }
.nav-item:hover .small-menu { display: grid; }
.mega-menu strong,
.small-menu strong {
	color: var(--zomo-blue);
	font-size: 13px;
	text-transform: uppercase;
}
.mega-menu a,
.small-menu a {
	display: block;
	color: #111;
	font-size: 13px;
	margin-top: 8px;
}
.lang-pill {
	border: 1px solid var(--zomo-blue);
	border-radius: 100px;
	padding: 10px 30px;
	color: var(--zomo-blue) !important;
}
.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	padding: 5px;
	cursor: pointer;
}
.menu-toggle span {
	display: block;
	height: 4px;
	margin: 5px 0;
	background: #050505;
	border-radius: 8px;
}
.mobile-panel { display: none; }

.content-wide {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 0;
}
.content-narrow {
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 30px;
}
.section-title {
	margin: 0 0 66px;
	color: var(--zomo-blue);
}
.section-title h2 {
	margin: 0;
	font-size: 28px;
	line-height: 1;
	text-transform: uppercase;
	font-style: italic;
	font-weight: 700;
}
.section-title span {
	display: block;
	width: 190px;
	height: 22px;
	border-left: 2px solid var(--zomo-line);
	border-bottom: 2px solid var(--zomo-line);
	border-bottom-left-radius: 22px;
	margin-left: -30px;
}
.section-title-light { color: #fff; }

.home-hero {
	min-height: 910px;
	padding-top: 60px;
	background: #fff;
}
.carousel-stage {
	position: relative;
	max-width: 1140px;
	height: 740px;
	margin: 0 auto;
	overflow: hidden;
}
.hero-slide {
	position: absolute;
	inset: 0;
	display: block;
	text-align: center;
	color: #333;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(100%, 0, 0);
	transition: transform .5s ease;
	visibility: hidden;
}
.hero-slide.is-active {
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
	visibility: visible;
}
.hero-slide.is-exiting {
	z-index: 1;
	opacity: 1;
	transform: translate3d(-100%, 0, 0);
	visibility: visible;
}
.hero-slide img {
	width: 820px;
	height: 520px;
	object-fit: contain;
	margin: 0 auto;
}
.slide-title {
	display: block;
	margin-top: 35px;
	color: var(--zomo-blue);
	font-size: 24px;
	font-weight: 700;
	opacity: 0;
	transform: translate3d(0, 110px, 0);
}
.slide-copy {
	display: block;
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.35;
	opacity: 0;
	transform: translate3d(0, 110px, 0);
}
.slide-copy p {
	margin: 0;
}
.hero-slide.is-text-entering .slide-title {
	animation: zomo-slide-text-up 1.25s ease both;
}
.hero-slide.is-text-entering .slide-copy {
	animation: zomo-slide-text-up 1.25s ease both;
}
@keyframes zomo-slide-text-up {
	from {
		opacity: 0;
		transform: translate3d(0, 110px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.carousel-arrow {
	position: absolute;
	top: 49%;
	z-index: 5;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: #d4d4d4;
	font-size: 72px;
	line-height: 1;
	cursor: pointer;
}
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 13px;
	margin-top: -24px;
}
.carousel-dots button {
	width: 50px;
	height: 2px;
	padding: 0;
	border: 0;
	background: #aaa;
	cursor: pointer;
}
.carousel-dots button.is-active { background: #212121; }

@media (prefers-reduced-motion: reduce) {
	.hero-slide {
		transition: none;
	}
	.slide-title,
	.slide-copy {
		opacity: 1;
		transform: none;
	}
	.hero-slide.is-text-entering .slide-title,
	.hero-slide.is-text-entering .slide-copy {
		animation: none;
	}
}

.purpose-band {
	padding: 30px 0 0;
}
.purpose-image {
	max-width: 1140px;
	min-height: 504px;
	margin: 0 auto;
	display: grid;
	place-items: center;
	border-radius: 0 100px 0 100px;
	background:
		linear-gradient(rgba(40, 31, 165, 0.72), rgba(40, 31, 165, 0.72)),
		url("../images/home-purpose-driver.jpg");
	background-position: 0 0, center top;
	background-size: auto, cover;
	background-repeat: repeat, no-repeat;
	padding: 70px 60px;
}
.purpose-image h1 {
	max-width: 960px;
	margin: 0;
	color: #fff;
	font-size: 48px;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
	font-style: italic;
	font-weight: 700;
}

.locations-section {
	background: #fff;
	padding: 119px 0 0;
}
.location-map {
	min-height: 250px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 90px;
	color: var(--zomo-blue);
	background: radial-gradient(circle at 50% 40%, rgba(40,31,165,.12), transparent 36%);
}
.location-map div {
	display: grid;
	gap: 4px;
	min-width: 170px;
}
.location-map strong {
	text-transform: uppercase;
	letter-spacing: 2px;
}
.who-section {
	padding: 96px 0 90px;
	background: #efefef;
}
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 110px;
	align-items: center;
}
.split p {
	max-width: 430px;
	margin: 0 0 24px;
}
.split img {
	border-radius: 0 80px 0 80px;
}
.button-outline,
.button-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 26px;
	border-radius: 999px;
	font-weight: 600;
}
.button-outline {
	border: 1px solid var(--zomo-blue);
	color: var(--zomo-blue);
	background: transparent;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.button-outline-light {
	border-color: #fff;
	color: #fff;
}
.button-outline:hover,
.button-outline:focus-visible {
	background: var(--zomo-blue);
	color: #fff;
}
.button-outline-light:hover,
.button-outline-light:focus-visible {
	background: #fff;
	border-color: #fff;
	color: var(--zomo-blue);
}
.button-primary {
	border: 0;
	background: var(--zomo-blue);
	color: #fff;
	cursor: pointer;
}

.mission-section {
	min-height: 711px;
	background:
		linear-gradient(rgba(20, 16, 100, .86), rgba(20, 16, 100, .76)),
		url("../images/home-world-lores-bw.jpg") center / cover;
	color: #fff;
	padding: 90px 0 75px;
}
.mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 140px;
}
.mission-grid h3 {
	max-width: 450px;
	margin: 0 0 10px;
	color: #fff;
	font-size: 25px;
	line-height: 1.3;
}
.mission-grid p {
	max-width: 520px;
	color: #fff;
	font-size: 16px;
}

.press-section {
	padding: 120px 0 160px;
	background: #f7f7f7 url("../images/home-press-bg.png") center top / cover;
}
.press-grid {
	display: grid;
	grid-template-columns: 360px 360px;
	gap: 0;
	margin-top: 76px;
	padding-left: 30px;
}
.press-grid h3 {
	text-transform: uppercase;
	letter-spacing: 5px;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 600;
}
.press-contact p {
	margin: 24px 0 0;
	font-size: 18px;
	line-height: 1.3;
}
.press-contact a,
.press-contact a:hover,
.press-contact a:focus-visible {
	color: #212121;
}
.press-list h4 {
	margin: 27px 0 17px;
	font-size: 19px;
	line-height: 1.25;
}
.press-month {
	display: block;
	margin: 0 0 18px;
	font-size: 18px;
}
.press-month-name {
	display: block;
	margin-bottom: 2px;
	font-weight: 400;
}
.press-month ul {
	margin: 0;
	padding: 0 0 0 20px;
}
.press-month li {
	margin: 0 0 5px;
}
.press-month a {
	color: var(--zomo-blue);
	font-size: 18px;
	line-height: 1.3;
}
.privacy-section {
	min-height: 957px;
	padding: 75px 0 100px;
	background: #fff;
}
.privacy-section p {
	max-width: 1050px;
}
.contact-section {
	min-height: 526px;
	padding: 88px 0 96px;
	background:
		linear-gradient(rgba(40, 31, 165, .78), rgba(40, 31, 165, .78)),
		url("../images/home-contact-bg.jpg") center / cover;
	color: #fff;
}
.contact-panel {
	position: relative;
	min-height: 330px;
}
.contact-copy {
	max-width: 600px;
	margin: 88px auto 0;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}
.contact-copy h3,
.contact-copy p {
	margin: 0;
	color: #fff;
	font-size: 17px;
	line-height: 1.4;
	letter-spacing: 4px;
	font-weight: 600;
}
.contact-actions {
	display: flex;
	justify-content: center;
	gap: 38px;
	margin-top: 40px;
	text-transform: none;
}
.contact-actions .button-outline {
	min-width: 196px;
	min-height: 36px;
	padding: 7px 24px;
	font-weight: 500;
}
.zomo-contact-modal[hidden] {
	display: none;
}
.zomo-contact-modal {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
}
body.is-contact-modal-open {
	overflow: hidden;
}
.zomo-contact-modal__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, .5);
	cursor: pointer;
}
.zomo-contact-modal__dialog {
	position: relative;
	z-index: 2;
	width: min(720px, calc(100vw - 32px));
	max-height: calc(100vh - 40px);
	overflow: auto;
	border-radius: 5px;
}
.zomo-contact-modal__close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #000;
	color: #fff;
	cursor: pointer;
}
.zomo-contact-modal__close span,
.zomo-contact-modal__close span::before,
.zomo-contact-modal__close span::after {
	display: block;
}
.zomo-contact-modal__close span {
	position: relative;
	width: 16px;
	height: 16px;
}
.zomo-contact-modal__close span::before,
.zomo-contact-modal__close span::after {
	content: "";
	position: absolute;
	top: 7px;
	left: 1px;
	width: 14px;
	height: 2px;
	background: currentColor;
}
.zomo-contact-modal__close span::before {
	transform: rotate(45deg);
}
.zomo-contact-modal__close span::after {
	transform: rotate(-45deg);
}
.zomo-contact-modal__inner {
	min-height: 677px;
	padding: 60px 30px;
	border-radius: 5px;
	background: #fff;
	color: #212121;
	box-sizing: border-box;
}
.zomo-contact-modal .wpcf7 {
	width: 100%;
}
.zomo-contact-modal .zomo-cf7-row {
	margin: 0 0 30px;
}
.zomo-contact-modal label {
	display: block;
	margin: 0;
	color: #777771;
	font-size: 12px;
	line-height: 20.4px;
	font-weight: 700;
	text-transform: none;
}
.zomo-contact-modal .zomo-form-required,
.zomo-contact-modal .wpcf7-not-valid-tip {
	color: #777771;
}
.zomo-contact-modal .wpcf7-form-control-wrap {
	display: block;
}
.zomo-contact-modal input[type="text"],
.zomo-contact-modal input[type="email"],
.zomo-contact-modal input[type="tel"],
.zomo-contact-modal textarea {
	display: block;
	width: 100%;
	min-height: 40.8px;
	margin: 0;
	padding: 9px;
	border: 1px solid #777771;
	border-radius: 2px;
	background: #ededed;
	color: #000;
	font-size: 16px;
	line-height: 20.8px;
	font-weight: 400;
	box-shadow: none;
	box-sizing: border-box;
}
.zomo-contact-modal textarea {
	height: 140px;
	min-height: 140px;
	line-height: 20px;
	resize: vertical;
}
.zomo-form-counter {
	display: flex;
	width: 100%;
	margin: 5px 0 0;
	color: #777771;
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
}
.zomo-contact-modal .zomo-cf7-recaptcha {
	margin-bottom: 30px;
}
.zomo-recaptcha-field {
	display: block;
	min-height: 78px;
}
.zomo-recaptcha-missing {
	display: block;
	color: #777771;
	font-size: 13px;
	line-height: 1.5;
}
.zomo-contact-modal .zomo-cf7-submit {
	margin: 0;
}
.zomo-contact-modal input[type="submit"],
.zomo-contact-modal .wpcf7-submit {
	display: inline-block;
	width: auto;
	min-width: 125px;
	min-height: 40.3px;
	margin: 0;
	padding: 10px;
	border: 0;
	border-radius: 2px;
	background: var(--zomo-blue);
	color: #fff;
	font-size: 14px;
	line-height: 20.3px;
	font-weight: 500;
	text-transform: uppercase;
	cursor: pointer;
}
.zomo-contact-modal input[type="submit"]:hover,
.zomo-contact-modal input[type="submit"]:focus,
.zomo-contact-modal .wpcf7-submit:hover,
.zomo-contact-modal .wpcf7-submit:focus {
	background: var(--zomo-blue);
	color: #fff;
}
.zomo-contact-modal .wpcf7-response-output {
	margin: 20px 0 0;
	color: #777771;
	font-size: 13px;
}
.zomo-cf7-missing {
	color: #777771;
	font-size: 14px;
	line-height: 1.5;
}
.contact-form,
.application-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 10px;
}
.contact-form input,
.contact-form textarea,
.application-form input,
.application-form select,
.application-form textarea {
	width: 100%;
	min-height: 50px;
	border: 1px solid #bfbfbf;
	background: #f7f7f7;
	padding: 12px 16px;
	font: inherit;
}
.contact-form textarea,
.application-form textarea,
.contact-form .button-primary,
.application-form .full,
.application-form h2,
.application-form fieldset,
.application-form .button-primary {
	grid-column: 1 / -1;
}
.application-form .wide { grid-column: span 1; }
.application-form h2 {
	margin: 18px 0 0;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 500;
}
.application-form label {
	display: grid;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
}
.application-form b { color: #d00; }
.application-form fieldset {
	border: 1px solid #e5e5e5;
	padding: 14px;
}

.product-hero {
	min-height: 700px;
	background: #fff;
}
.product-hero-inner {
	position: relative;
	max-width: 1080px;
	min-height: 700px;
	margin: 0 auto;
}
.product-kicker {
	position: absolute;
	top: 280px;
	left: 0;
	z-index: 2;
	color: var(--zomo-blue);
	font-style: italic;
}
.product-kicker h1 {
	margin: 0 0 8px;
	font-size: 48px;
	line-height: 1;
	font-weight: 600;
}
.product-kicker p {
	margin: 0;
	font-size: 21px;
	line-height: 1.22;
	text-transform: uppercase;
}
.product-hero-image {
	position: absolute;
	right: -70px;
	bottom: 28px;
	width: 990px;
	max-height: 640px;
	object-fit: contain;
}
.product-specs {
	position: relative;
	background: var(--zomo-blue);
	color: #fff;
	padding: 88px 0 110px;
}
.product-specs::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--spec-bg) center / contain no-repeat;
	opacity: .18;
}
.spec-inner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
}
.spec-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}
.spec-title-row .section-title {
	margin-bottom: 66px;
}
.spec-sales-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 112px;
	min-height: 38px;
	margin-top: -5px;
	padding: 8px 28px;
	border: 1px solid #fff;
	border-radius: 999px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.spec-sales-link:hover,
.spec-sales-link:focus-visible {
	background: #fff;
	border-color: #fff;
	color: var(--zomo-blue);
}
.spec-head,
.spec-row {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr;
	gap: 30px;
}
.spec-head {
	margin-bottom: 12px;
	font-weight: 700;
}
.spec-list:not(.spec-list-imperial) {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-flow: column;
	grid-template-rows: repeat(10, auto);
	gap: 0 80px;
}
.spec-list:not(.spec-list-imperial) .spec-row {
	grid-template-columns: 1.75fr .7fr;
	gap: 20px;
}
.spec-row {
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
	font-size: 17px;
}
.spec-label {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.3px;
}
.spec-value {
	font-weight: 600;
}
.range-note {
	margin-top: 28px;
	font-size: 14px;
}

.career-hero {
	padding: 29px 0 60px;
}
.career-hero-image {
	max-width: 1140px;
	min-height: 328px;
	margin: 0 auto;
	display: grid;
	place-items: center;
	border-radius: 0 92px 0 92px;
	background:
		linear-gradient(rgba(40,31,165,.58), rgba(40,31,165,.58)),
		url("../images/careers-hero.jpg") center 40% / cover;
}
.career-hero h1 {
	color: #fff;
	font-size: 48px;
	line-height: 1;
	font-style: italic;
	font-weight: 700;
}
.page-hero {
	padding: 29px 0 60px;
}
.page-hero-image {
	max-width: 1140px;
	min-height: 328px;
	margin: 0 auto;
	display: grid;
	place-items: center;
	border-radius: 0 92px 0 92px;
	background:
		linear-gradient(rgba(40,31,165,.58), rgba(40,31,165,.58)),
		var(--page-hero, url("../images/careers-hero.jpg")) center / cover;
}
.page-hero h1 {
	color: #fff;
	font-size: 48px;
	line-height: 1;
	font-style: italic;
	font-weight: 700;
	text-align: center;
}
.page-content-full {
	padding: 0 0 110px;
}
.page-content-full .content-wide {
	max-width: 1140px;
}
.page-content-full p:first-child {
	margin-top: 0;
}
.careers-search {
	background: #fff;
	padding: 0 0 119px;
}
.careers-content {
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 342px 738px;
	gap: 30px;
	align-items: start;
}
.filter-bar {
	background: #eee;
	height: 306px;
	padding: 30px;
	display: grid;
	gap: 18px;
	align-content: start;
}
.filter-bar input[type="search"],
.filter-bar select {
	width: 100%;
	min-height: 38px;
	border: 1px solid #b5b5b5;
	background: #fff;
	padding: 8px 10px;
	font: inherit;
	font-size: 14px;
}
.filter-bar label {
	font-size: 13px;
}
.job-table {
	margin-top: 0;
	font-size: 15px;
}
.job-table-head {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	background: #eee;
	padding: 8px 14px;
	font-size: 16px;
	line-height: 1.2;
	min-height: 36px;
	align-items: center;
}
.job-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 12px;
	padding: 6px 14px 7px;
	color: #000;
	border-bottom: 1px solid #eee;
	line-height: 1.2;
	min-height: 31px;
	align-items: center;
}
.job-detail,
.application-page,
.simple-page {
	padding: 70px 0 110px;
}
.offices-page {
	background: #efefef;
	padding: 75px 0 120px;
}
.offices-map {
	min-height: 300px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: end;
	gap: 34px;
	margin-bottom: 50px;
	padding: 40px 52px;
	color: var(--zomo-blue);
	background:
		radial-gradient(circle at 18% 58%, rgba(40, 31, 165, .18), transparent 18%),
		radial-gradient(circle at 48% 38%, rgba(40, 31, 165, .18), transparent 16%),
		radial-gradient(circle at 66% 54%, rgba(40, 31, 165, .18), transparent 15%),
		radial-gradient(circle at 84% 42%, rgba(40, 31, 165, .18), transparent 17%),
		#f5f5f5;
}
.offices-map span {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.offices-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}
.office-card {
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-top: 2px solid var(--zomo-blue);
	background: #fff;
	padding: 20px;
	color: #111;
}
.office-card strong {
	color: var(--zomo-blue);
	font-size: 21px;
	text-transform: uppercase;
}
.office-card span {
	font-size: 13px;
	font-weight: 700;
}
.back-link {
	display: inline-block;
	margin-bottom: 28px;
	font-weight: 700;
}
.job-meta {
	background: #eee;
	padding: 12px 16px;
	margin-bottom: 28px;
	text-align: center;
}
.job-meta dl {
	max-width: 520px;
	margin: 0 auto 18px;
	text-align: left;
}
.job-meta dl div {
	display: grid;
	grid-template-columns: 140px 1fr;
	line-height: 1.05;
}
.job-meta dt,
.job-meta dd {
	margin: 0;
	font-weight: 700;
}
.job-detail h2 {
	margin-top: 24px;
	font-size: 22px;
}
.job-detail li {
	margin-bottom: 8px;
}

.site-footer {
	background: var(--zomo-footer);
	color: #fff;
	padding: 82px 0 76px;
}
.footer-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.footer-grid {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 152px;
	align-items: start;
}
.footer-brand-block {
	min-height: 310px;
	display: flex;
	flex-direction: column;
}
.footer-logo img {
	width: 242px;
	height: auto;
}
.footer-member h3,
.footer-columns h3 {
	margin: 0 0 14px;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #aeb3c5;
	font-size: 13px;
}
.footer-member {
	margin-top: 38px;
}
.member-logos {
	display: flex;
	align-items: center;
	gap: 21px;
	margin-bottom: 0;
}
.member-logos img {
	max-height: 60px;
	width: auto;
}
.member-logos a:nth-child(1) img { max-height: 28px; }
.member-logos a:nth-child(2) img { max-height: 27px; }
.member-logos a:nth-child(3) img { max-height: 42px; }
.member-logos a:nth-child(4) img { max-height: 62px; }
.footer-nav-block {
	padding-top: 2px;
}
.footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 160px);
	gap: 36px;
	max-width: none;
}
.footer-columns a {
	display: block;
	color: #fff;
	margin-bottom: 5px;
	font-size: 14px;
}
.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-top: 42px;
	margin-left: 392px;
	border-radius: 2px;
	background: #006adf;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}
.copyright {
	margin: auto 0 0;
	font-size: 14px;
}
.language-float {
	position: fixed;
	right: 10%;
	bottom: 0;
	z-index: 200;
	width: 200px;
	min-height: 48px;
	display: block;
	padding: 0;
	background: #fff;
	border-radius: 6px 6px 0 0;
	box-shadow: 0 2px 18px rgba(0,0,0,.16);
	color: #5c5c5c;
	font-size: 14px;
	overflow: visible;
}
.language-option {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 44px;
	gap: 8px;
	padding: 0 22px;
	border: 0;
	background: #fff;
	color: #5c5c5c;
	font: inherit;
	line-height: 1.2;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}
.language-option:hover,
.language-option:focus-visible {
	background: #fff;
	color: #5c5c5c;
	outline: 0;
}
.language-current {
	min-height: 48px;
	border-radius: 6px 6px 0 0;
}
.language-flag {
	width: 18px;
	height: 12px;
	flex: 0 0 18px;
	object-fit: cover;
}
.language-list {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 48px;
	display: none;
	background: #fff;
	border-radius: 6px 6px 0 0;
	box-shadow: 0 -5px 18px rgba(0,0,0,.12);
	overflow: hidden;
}
.language-list .language-option {
	border-radius: 0;
}
.language-float:hover .language-current,
.language-float:focus-within .language-current,
.language-float.is-open .language-current {
	border-radius: 0;
}
.language-float:hover .language-list,
.language-float:focus-within .language-list,
.language-float.is-open .language-list {
	display: block;
}
.language-list .is-active {
	color: #5c5c5c;
	cursor: default;
}

.primary-menu,
.primary-menu .sub-menu,
.mobile-menu,
.mobile-menu .sub-menu,
.footer-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.primary-menu {
	display: flex;
	align-items: center;
	gap: 26px;
}
.primary-menu > .menu-item {
	position: relative;
}
.primary-menu > .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #050505;
	white-space: nowrap;
}
.primary-menu > .menu-item > a:hover,
.primary-menu > .menu-item:focus-within > a {
	color: var(--zomo-blue);
}
.primary-menu > .menu-item-has-children > a::after {
	content: "";
	width: 5px;
	height: 5px;
	margin-top: -3px;
	border-right: 1px solid var(--zomo-blue);
	border-bottom: 1px solid var(--zomo-blue);
	transform: rotate(45deg);
}
.primary-menu > .lang-menu-item > a {
	min-height: 44px;
	border: 1px solid var(--zomo-blue);
	border-radius: 100px;
	padding: 10px 30px;
	color: var(--zomo-blue);
}
.primary-menu > .lang-menu-item > a:hover,
.primary-menu > .lang-menu-item:focus-within > a {
	background: var(--zomo-blue);
	color: #fff;
}
.primary-menu > .menu-item > .sub-menu {
	position: absolute;
	top: calc(100% + 18px);
	left: -24px;
	z-index: 20;
	min-width: 180px;
	padding: 22px 24px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
	display: none;
	gap: 24px;
}
.primary-menu > .menu-item > .sub-menu::before {
	content: "";
	position: absolute;
	top: -18px;
	left: 0;
	right: 0;
	height: 18px;
}
.primary-menu > .menu-item:hover > .sub-menu,
.primary-menu > .menu-item:focus-within > .sub-menu {
	display: grid;
}
.primary-menu > .zomo-mega-menu > .sub-menu {
	min-width: 560px;
	grid-template-columns: repeat(3, minmax(140px, 1fr));
}
.primary-menu > .zomo-compact-menu > .sub-menu {
	min-width: 170px;
	grid-template-columns: 1fr;
	gap: 0;
}
.primary-menu .sub-menu .sub-menu {
	position: static;
	display: grid;
	min-width: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	gap: 0;
}
.primary-menu .zomo-menu-heading > a {
	display: block;
	color: var(--zomo-blue);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	pointer-events: none;
}
.primary-menu .sub-menu a {
	display: block;
	color: #111;
	font-size: 13px;
	margin-top: 8px;
}
.mobile-menu {
	display: grid;
	gap: 0;
}
.mobile-menu a {
	display: block;
	color: #111;
	padding: 8px 0;
	font-weight: 600;
}
.mobile-menu .sub-menu {
	display: grid;
	margin: 0 0 4px 18px;
}
.mobile-menu .sub-menu a {
	color: var(--zomo-blue);
	font-size: 14px;
	font-weight: 600;
}
.mobile-menu .sub-menu .sub-menu {
	margin-left: 14px;
}
.mobile-menu .zomo-menu-heading > a {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.footer-inner {
	padding: 0;
}
.footer-columns {
	align-items: start;
}
.footer-widget h3 {
	margin: 0 0 14px;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #aeb3c5;
	font-size: 13px;
}
.footer-widget a {
	display: block;
	color: #fff;
	margin-bottom: 5px;
	font-size: 14px;
}

@media (max-width: 1180px) {
	.header-inner,
	.content-wide,
	.spec-inner,
	.product-hero-inner,
	.footer-inner {
		padding-left: 30px;
		padding-right: 30px;
	}
	.primary-nav,
	.primary-menu { gap: 18px; }
	.career-hero-image,
	.page-hero-image,
	.careers-content {
		margin-left: 30px;
		margin-right: 30px;
	}
	.careers-content {
		max-width: none;
		grid-template-columns: 342px minmax(0, 1fr);
	}
	.footer-grid {
		grid-template-columns: 330px 1fr;
		gap: 70px;
	}
	.footer-columns {
		grid-template-columns: repeat(3, minmax(130px, 1fr));
		gap: 32px;
	}
	.social-link {
		margin-left: calc(66.666% + 21px);
	}
	.product-hero-image { right: 20px; width: 760px; }
}

@media (max-width: 900px) {
	.header-inner {
		min-height: 108px;
		padding: 0 10px;
	}
	.brand img { width: 240px; }
	.primary-nav { display: none; }
	.menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 48px;
		height: 48px;
		padding: 9px;
	}
	.menu-toggle span {
		width: 100%;
		height: 4px;
		margin: 3px 0;
		border-radius: 2px;
		transition: transform .18s ease, opacity .18s ease, background-color .18s ease;
	}
	.menu-toggle.is-open span {
		background: var(--zomo-blue);
	}
	.menu-toggle.is-open span:nth-child(1) {
		transform: translateY(10px) rotate(45deg);
	}
	.menu-toggle.is-open span:nth-child(2) {
		opacity: 0;
	}
	.menu-toggle.is-open span:nth-child(3) {
		transform: translateY(-10px) rotate(-45deg);
	}
	.mobile-panel {
		position: absolute;
		top: 108px;
		left: 57px;
		right: 0;
		z-index: 40;
		display: none;
		max-height: calc(100vh - 108px);
		overflow-y: auto;
		padding: 0;
		background: #fff;
		box-shadow: 0 3px 15px rgba(0,0,0,.1);
	}
	.mobile-panel.is-open { display: block; }
	.mobile-menu {
		display: block;
	}
	.mobile-menu a,
	.mobile-panel a {
		display: flex;
		align-items: center;
		min-height: 46px;
		margin: 0;
		padding: 0 13px;
		border-bottom: 1px solid #eee;
		color: #333;
		background: #fff;
		font-size: 13px;
		font-weight: 400;
		line-height: 1.2;
	}
	.mobile-menu .sub-menu {
		display: none;
		margin: 0;
	}
	.mobile-menu .menu-item-has-children.is-expanded > .sub-menu {
		display: block;
	}
	.mobile-menu .sub-menu a {
		padding-left: 21px;
		color: #333;
		font-size: 13px;
		font-weight: 400;
	}
	.mobile-menu .sub-menu .sub-menu a {
		padding-left: 29px;
		color: var(--zomo-blue);
	}
	.mobile-menu .menu-item-has-children > a::after {
		content: "";
		width: 5px;
		height: 5px;
		margin: -2px 0 0 8px;
		border-right: 1px solid currentColor;
		border-bottom: 1px solid currentColor;
		transform: rotate(45deg);
	}
	.mobile-menu .menu-item-has-children.is-expanded > a::after {
		margin-top: 3px;
		transform: rotate(-135deg);
	}
	.mobile-menu .zomo-menu-heading > a {
		text-transform: none;
		letter-spacing: 0;
	}
	.home-hero {
		min-height: 610px;
		padding-top: 30px;
	}
	.carousel-stage {
		height: 440px;
	}
	.hero-slide img {
		width: 320px;
		height: 220px;
	}
	.slide-title { margin-top: 28px; font-size: 20px; }
	.slide-copy { font-size: 13px; }
	.carousel-arrow { font-size: 64px; }
	.carousel-prev { left: 20px; }
	.carousel-next { right: 20px; }
	.carousel-dots button { width: 40px; }
	.purpose-band { padding: 0 0 70px; }
	.purpose-image {
		min-height: 210px;
		border-radius: 0 50px 0 50px;
		padding: 45px 25px;
	}
	.purpose-image h1 {
		font-size: 28px;
	}
	.split,
	.mission-grid,
	.press-grid,
	.contact-grid,
	.careers-content,
	.footer-grid,
	.footer-columns,
	.offices-map,
	.offices-grid,
	.job-table-head,
	.job-row {
		grid-template-columns: 1fr;
	}
	.site-footer {
		padding: 48px 0 70px;
	}
	.footer-brand-block {
		min-height: 0;
	}
	.footer-logo img {
		width: 242px;
	}
	.footer-member {
		margin-top: 34px;
	}
	.member-logos {
		flex-wrap: wrap;
		gap: 18px 24px;
	}
	.footer-nav-block {
		padding-top: 54px;
	}
	.footer-columns {
		gap: 42px;
	}
	.social-link {
		margin-left: 0;
		margin-top: 36px;
	}
	.copyright {
		margin-top: 54px;
	}
	.location-map {
		align-items: center;
		flex-direction: column;
		gap: 28px;
	}
	.mission-section { padding: 80px 0; }
	.press-section {
		padding: 80px 0 100px;
	}
	.press-grid {
		gap: 42px;
		margin-top: 40px;
		padding-left: 0;
	}
	.press-grid h3 {
		letter-spacing: 3px;
	}
	.contact-copy {
		max-width: none;
		margin-top: 64px;
	}
	.contact-copy h3,
	.contact-copy p {
		font-size: 14px;
		letter-spacing: 4px;
	}
	.contact-actions {
		flex-wrap: wrap;
		gap: 16px;
	}
	.zomo-contact-modal__inner {
		min-height: 0;
		padding: 42px 24px;
	}
	.zomo-contact-modal .zomo-cf7-row {
		margin-bottom: 24px;
	}
	.product-hero,
	.product-hero-inner {
		min-height: 455px;
	}
	.product-kicker {
		top: 24px;
		left: 30px;
	}
	.product-kicker h1 { font-size: 30px; }
	.product-kicker p { font-size: 20px; }
	.product-hero-image {
		width: 72%;
		left: -12%;
		right: auto;
		bottom: 54px;
		max-height: 235px;
	}
	.product-specs { padding: 84px 30px 80px; }
	.spec-title-row {
		align-items: flex-start;
	}
	.spec-title-row .section-title {
		margin-bottom: 44px;
	}
	.spec-sales-link {
		min-width: 92px;
		min-height: 34px;
		padding: 7px 22px;
		font-size: 14px;
	}
	.spec-list:not(.spec-list-imperial),
	.spec-head,
	.spec-row,
	.spec-list:not(.spec-list-imperial) .spec-row {
		grid-template-columns: 1fr;
		gap: 5px;
	}
	.spec-head { display: none; }
	.spec-row { font-size: 17px; }
	.career-hero-image {
		min-height: 150px;
		margin-left: 0;
		margin-right: 0;
		border-radius: 0 44px 0 44px;
	}
	.page-hero-image {
		min-height: 150px;
		margin-left: 0;
		margin-right: 0;
		border-radius: 0 44px 0 44px;
	}
	.career-hero {
		padding: 6px 0 60px;
	}
	.page-hero {
		padding: 6px 0 60px;
	}
	.career-hero h1 {
		font-size: 30px;
	}
	.page-hero h1 {
		font-size: 30px;
	}
	.page-content-full {
		padding: 0 30px 90px;
	}
	.careers-search {
		padding: 30px 0 90px;
	}
	.careers-content {
		margin-left: 30px;
		margin-right: 30px;
	}
	.contact-form,
	.application-form {
		grid-template-columns: 1fr;
	}
	.language-float {
		right: 10%;
		width: 160px;
	}
	.language-option {
		padding: 0 18px;
	}
}

@media (max-width: 818px) {
	.header-inner {
		min-height: 78px;
	}
	.mobile-panel {
		top: 78px;
		max-height: calc(100vh - 78px);
	}
	.home-hero {
		padding-top: 60px;
	}
}
