/*
 * Jager homepage redesign
 * Scoped to body.jager-home-redesign so all other WordPress pages remain unchanged.
 */

body.jager-home-redesign {
	--jhr-navy: #06256f;
	--jhr-navy-deep: #001a4e;
	--jhr-orange: #ff9518;
	--jhr-orange-soft: #ffb44f;
	--jhr-text: #17233d;
	--jhr-muted: #687188;
	--jhr-surface: #ffffff;
	--jhr-soft: #f4f6fa;
	--jhr-border: rgba(6, 37, 111, 0.11);
	--jhr-shadow-soft: 0 2px 8px rgba(12, 35, 82, 0.05), 0 18px 44px rgba(12, 35, 82, 0.09);
	--jhr-shadow-lift: 0 8px 24px rgba(12, 35, 82, 0.09), 0 34px 78px rgba(12, 35, 82, 0.18);
	--jhr-container: 1280px;
	--jhr-radius: 26px;
	margin: 0;
	background: var(--jhr-surface);
	color: var(--jhr-text);
	font-family: Inter, "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.jager-home-redesign.jhr-menu-open {
	overflow: hidden;
}

body.jager-home-redesign .elementor-7,
body.jager-home-redesign .elementor-38,
body.jager-home-redesign .hfe-site-header,
body.jager-home-redesign .hfe-site-footer,
body.jager-home-redesign .elementor-location-header,
body.jager-home-redesign .elementor-location-footer {
	display: none !important;
}

.jhr-page,
.jhr-page *,
.jhr-page *::before,
.jhr-page *::after {
	box-sizing: border-box;
}

.jhr-page {
	min-height: 100vh;
	overflow: clip;
	background: var(--jhr-surface);
	color: var(--jhr-text);
}

.jhr-page img,
.jhr-page video {
	display: block;
	max-width: 100%;
}

.jhr-page a {
	color: inherit;
	text-decoration: none;
}

.jhr-page button,
.jhr-page input,
.jhr-page textarea,
.jhr-page select {
	font: inherit;
}

.jhr-page h1,
.jhr-page h2,
.jhr-page h3,
.jhr-page p {
	margin: 0;
}

.jhr-page h1,
.jhr-page h2,
.jhr-page h3 {
	font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.jhr-container {
	width: min(100% - 40px, var(--jhr-container));
	margin-inline: auto;
}

.jhr-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
}

.jhr-icon--small {
	width: 17px;
	height: 17px;
}

.jhr-skip-link {
	position: fixed;
	left: 20px;
	top: 16px;
	z-index: 1000;
	padding: 12px 18px;
	border-radius: 999px;
	background: #fff;
	color: var(--jhr-navy);
	box-shadow: var(--jhr-shadow-lift);
	transform: translateY(-180%);
	transition: transform 180ms ease;
}

.jhr-skip-link:focus {
	transform: translateY(0);
}

.jhr-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 120;
	color: #fff;
}

.admin-bar .jhr-header {
	top: 32px;
}

.jhr-header__surface {
	border-bottom: 1px solid transparent;
	background: transparent;
	transition:
		background-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
		border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
		backdrop-filter 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.jhr-header.is-scrolled .jhr-header__surface,
.jhr-header.is-menu-open .jhr-header__surface {
	border-bottom-color: rgba(6, 37, 111, 0.08);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 10px 35px rgba(6, 23, 64, 0.07);
	-webkit-backdrop-filter: saturate(180%) blur(22px);
	backdrop-filter: saturate(180%) blur(22px);
}

.jhr-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 80px;
}

.jhr-brand {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-width: 0;
}

.jhr-brand__plate {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 7px 13px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 30px rgba(0, 14, 50, 0.12);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.jhr-brand__plate img {
	width: auto;
	height: 36px;
	object-fit: contain;
}

.jhr-desktop-nav {
	display: flex;
	align-items: center;
	gap: 3px;
}

.jhr-desktop-nav > a,
.jhr-nav-dropdown > button {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 42px;
	padding: 10px 13px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition:
		color 180ms ease,
		background-color 180ms ease;
}

.jhr-desktop-nav > a:hover,
.jhr-desktop-nav > a:focus-visible,
.jhr-nav-dropdown > button:hover,
.jhr-nav-dropdown > button:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	outline: none;
}

.jhr-header.is-scrolled .jhr-desktop-nav > a,
.jhr-header.is-scrolled .jhr-nav-dropdown > button,
.jhr-header.is-menu-open .jhr-desktop-nav > a,
.jhr-header.is-menu-open .jhr-nav-dropdown > button {
	color: rgba(23, 35, 61, 0.8);
}

.jhr-header.is-scrolled .jhr-desktop-nav > a:hover,
.jhr-header.is-scrolled .jhr-desktop-nav > a:focus-visible,
.jhr-header.is-scrolled .jhr-nav-dropdown > button:hover,
.jhr-header.is-scrolled .jhr-nav-dropdown > button:focus-visible {
	background: var(--jhr-soft);
	color: var(--jhr-navy);
}

.jhr-desktop-nav > a.is-current {
	color: #fff;
}

.jhr-header.is-scrolled .jhr-desktop-nav > a.is-current {
	color: var(--jhr-navy);
}

.jhr-nav-dropdown {
	position: relative;
}

.jhr-nav-dropdown > button .jhr-icon {
	transition: transform 220ms ease;
}

.jhr-nav-dropdown:hover > button .jhr-icon,
.jhr-nav-dropdown:focus-within > button .jhr-icon {
	transform: rotate(180deg);
}

.jhr-nav-dropdown__panel {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	width: 430px;
	padding: 9px;
	border: 1px solid var(--jhr-border);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: var(--jhr-shadow-lift);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition:
		opacity 220ms ease,
		transform 220ms ease,
		visibility 220ms ease;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}

.jhr-nav-dropdown:hover .jhr-nav-dropdown__panel,
.jhr-nav-dropdown:focus-within .jhr-nav-dropdown__panel {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.jhr-nav-product {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 10px;
	border-radius: 19px;
	color: var(--jhr-text);
	transition: background-color 180ms ease;
}

.jhr-nav-product:hover,
.jhr-nav-product:focus-visible {
	background: var(--jhr-soft);
	outline: none;
}

.jhr-nav-product img {
	width: 58px;
	height: 58px;
	border-radius: 15px;
	background: #fff;
	object-fit: cover;
}

.jhr-nav-product strong,
.jhr-nav-product small {
	display: block;
}

.jhr-nav-product strong {
	color: var(--jhr-navy);
	font-size: 15px;
}

.jhr-nav-product small {
	margin-top: 3px;
	color: var(--jhr-muted);
	font-size: 12px;
	line-height: 1.35;
}

.jhr-nav-product > .jhr-icon {
	color: var(--jhr-muted);
	transition:
		color 180ms ease,
		transform 180ms ease;
}

.jhr-nav-product:hover > .jhr-icon {
	color: var(--jhr-orange);
	transform: translate(2px, -2px);
}

.jhr-language {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	margin-left: 9px;
	padding: 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.13);
}

.jhr-header.is-scrolled .jhr-language {
	background: var(--jhr-soft);
}

.jhr-language a {
	display: grid;
	place-items: center;
	min-width: 34px;
	height: 30px;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.03em;
}

.jhr-language a.is-active {
	background: #fff;
	color: var(--jhr-navy);
	box-shadow: 0 4px 12px rgba(8, 30, 75, 0.1);
}

.jhr-header.is-scrolled .jhr-language a {
	color: var(--jhr-muted);
}

.jhr-header.is-scrolled .jhr-language a.is-active {
	color: var(--jhr-navy);
}

.jhr-menu-button {
	display: none;
	position: relative;
	z-index: 130;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
}

.jhr-menu-button > span {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.jhr-menu-button__close {
	opacity: 0;
	transform: rotate(-35deg) scale(0.8);
}

.jhr-header.is-scrolled .jhr-menu-button,
.jhr-header.is-menu-open .jhr-menu-button {
	border-color: var(--jhr-border);
	background: var(--jhr-soft);
	color: var(--jhr-navy);
}

.jhr-header.is-menu-open .jhr-menu-button__open {
	opacity: 0;
	transform: rotate(35deg) scale(0.8);
}

.jhr-header.is-menu-open .jhr-menu-button__close {
	opacity: 1;
	transform: none;
}

.jhr-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 110;
	background: rgba(255, 255, 255, 0.99);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-12px);
	transition:
		opacity 300ms ease,
		transform 300ms ease,
		visibility 300ms ease;
}

.admin-bar .jhr-mobile-menu {
	top: 32px;
}

.jhr-mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.jhr-mobile-menu__inner {
	display: flex;
	flex-direction: column;
	width: min(100% - 40px, 720px);
	height: 100%;
	margin-inline: auto;
	padding: 104px 0 28px;
	overflow-y: auto;
}

.jhr-mobile-language {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--jhr-border);
	color: var(--jhr-muted);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.jhr-mobile-language > span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.jhr-mobile-language > span .jhr-icon {
	color: var(--jhr-orange);
}

.jhr-mobile-language > div {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.jhr-mobile-language a {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 30px;
	border-radius: 999px;
	color: var(--jhr-muted);
	font-size: 12px;
	letter-spacing: normal;
}

.jhr-mobile-language a.is-active {
	background: var(--jhr-navy);
	color: #fff;
}

.jhr-mobile-nav {
	display: grid;
	gap: 2px;
	margin-top: 24px;
}

.jhr-mobile-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 15px 14px;
	border-radius: 20px;
	color: var(--jhr-navy);
	transition: background-color 180ms ease;
}

.jhr-mobile-nav a:hover,
.jhr-mobile-nav a:focus-visible {
	background: var(--jhr-soft);
	outline: none;
}

.jhr-mobile-nav span {
	font-family: Manrope, Inter, sans-serif;
	font-size: clamp(22px, 5vw, 29px);
	font-weight: 800;
	letter-spacing: -0.035em;
}

.jhr-mobile-products {
	margin-top: 28px;
}

.jhr-mobile-products > p {
	margin: 0 0 12px;
	padding-inline: 14px;
	color: var(--jhr-muted);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.jhr-mobile-products > a {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	align-items: center;
	gap: 13px;
	margin-top: 8px;
	padding: 10px;
	border-radius: 19px;
	background: var(--jhr-soft);
	color: var(--jhr-text);
}

.jhr-mobile-products img {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: #fff;
	object-fit: cover;
}

.jhr-mobile-products strong,
.jhr-mobile-products small {
	display: block;
}

.jhr-mobile-products strong {
	color: var(--jhr-navy);
	font-size: 15px;
}

.jhr-mobile-products small {
	margin-top: 3px;
	overflow: hidden;
	color: var(--jhr-muted);
	font-size: 12px;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.jhr-mobile-menu__cta {
	margin-top: auto;
}

.jhr-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-end;
	min-height: max(720px, 100svh);
	overflow: hidden;
	color: #fff;
}

.jhr-media-layer {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	background: var(--jhr-navy-deep);
}

.jhr-media-layer > img,
.jhr-media-layer > video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jhr-media-layer > img {
	animation: jhr-ken-burns 34s ease-in-out infinite alternate;
	will-change: transform;
}

.jhr-media-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 20, 66, 0.34), rgba(0, 18, 58, 0.72)),
		linear-gradient(90deg, rgba(0, 19, 64, 0.45), transparent 68%);
}

.jhr-media-overlay--hero {
	background:
		linear-gradient(180deg, rgba(0, 17, 56, 0.25) 0%, rgba(0, 17, 56, 0.2) 35%, rgba(0, 17, 56, 0.82) 100%),
		linear-gradient(90deg, rgba(0, 17, 56, 0.56), transparent 74%);
}

.jhr-hero__content {
	position: relative;
	z-index: 2;
	padding-top: 160px;
	padding-bottom: clamp(78px, 10vh, 118px);
}

.jhr-eyebrow {
	color: var(--jhr-orange);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.jhr-hero h1 {
	max-width: 940px;
	margin-top: 22px;
	color: #fff;
	font-size: clamp(48px, 7vw, 90px);
	line-height: 0.96;
	text-wrap: balance;
}

.jhr-hero h1 span {
	display: block;
	color: var(--jhr-orange);
}

.jhr-hero__intro {
	max-width: 610px;
	margin-top: 28px !important;
	color: rgba(255, 255, 255, 0.77);
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.65;
}

.jhr-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 36px;
}

.jhr-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 750;
	line-height: 1;
	transition:
		transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		box-shadow 260ms ease;
}

.jhr-button:hover,
.jhr-button:focus-visible {
	transform: translateY(-2px);
	outline: none;
}

.jhr-button--primary {
	background: var(--jhr-orange);
	color: #fff !important;
	box-shadow: 0 14px 35px rgba(255, 149, 24, 0.28);
}

.jhr-button--primary:hover,
.jhr-button--primary:focus-visible {
	background: #ff8810;
	box-shadow: 0 18px 42px rgba(255, 149, 24, 0.36);
}

.jhr-button--ghost {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	color: #fff !important;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.jhr-button--ghost:hover,
.jhr-button--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.16);
}

.jhr-button--outline {
	border-color: var(--jhr-border);
	background: #fff;
	color: var(--jhr-navy) !important;
}

.jhr-button--outline:hover,
.jhr-button--outline:focus-visible {
	border-color: rgba(6, 37, 111, 0.18);
	background: var(--jhr-soft);
}

.jhr-hero-animate {
	animation: jhr-reveal-up 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.jhr-hero-animate:nth-child(2) {
	animation-delay: 90ms;
}

.jhr-hero-animate:nth-child(3) {
	animation-delay: 170ms;
}

.jhr-hero-animate:nth-child(4) {
	animation-delay: 250ms;
}

.jhr-stats {
	border-bottom: 1px solid var(--jhr-border);
	background: #fff;
}

.jhr-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	padding-block: 54px;
}

.jhr-stat {
	min-width: 0;
}

.jhr-stat strong {
	display: block;
	color: var(--jhr-navy);
	font-family: Manrope, Inter, sans-serif;
	font-size: clamp(38px, 4vw, 52px);
	font-weight: 850;
	letter-spacing: -0.045em;
	line-height: 1;
}

.jhr-stat span {
	display: block;
	margin-top: 9px;
	color: var(--jhr-muted);
	font-size: 14px;
	line-height: 1.4;
}

.jhr-section {
	padding-block: clamp(88px, 10vw, 132px);
}

.jhr-section-heading {
	max-width: 760px;
}

.jhr-section-heading h2,
.jhr-copy h2 {
	margin-top: 17px;
	color: var(--jhr-navy);
	font-size: clamp(38px, 5vw, 58px);
	line-height: 1.02;
	text-wrap: balance;
}

.jhr-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 52px;
}

.jhr-product-card {
	overflow: hidden;
	border: 1px solid var(--jhr-border);
	border-radius: var(--jhr-radius);
	background: #fff;
	box-shadow: var(--jhr-shadow-soft);
	transition:
		transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.jhr-product-card:hover,
.jhr-product-card:focus-visible {
	transform: translateY(-7px);
	box-shadow: var(--jhr-shadow-lift);
	outline: none;
}

.jhr-product-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--jhr-soft);
}

.jhr-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.jhr-product-card__image.is-contain img {
	padding: 34px;
	object-fit: contain;
}

.jhr-product-card:hover .jhr-product-card__image img {
	transform: scale(1.055);
}

.jhr-product-card__body {
	padding: 26px;
	border-top: 1px solid var(--jhr-border);
}

.jhr-product-card__body > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.jhr-product-card h3 {
	color: var(--jhr-navy);
	font-size: 27px;
	line-height: 1.1;
}

.jhr-product-card p {
	margin-top: 12px;
	color: var(--jhr-muted);
	font-size: 15px;
	line-height: 1.65;
}

.jhr-circle-arrow {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--jhr-soft);
	color: var(--jhr-navy);
	transition:
		background-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.jhr-product-card:hover .jhr-circle-arrow {
	background: var(--jhr-orange);
	color: #fff;
	transform: translateX(2px);
}

.jhr-media-band {
	position: relative;
	isolation: isolate;
	display: grid;
	place-items: center;
	min-height: 70svh;
	overflow: hidden;
	color: #fff;
}

.jhr-media-band__content {
	max-width: 840px;
	padding-block: 100px;
	text-align: center;
}

.jhr-media-band h2,
.jhr-return h2 {
	color: #fff;
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1.02;
	text-wrap: balance;
}

.jhr-media-band p,
.jhr-return__content > p:not(.jhr-return__label) {
	max-width: 760px;
	margin: 25px auto 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: 1.7;
}

.jhr-media-band p strong {
	color: #fff;
}

.jhr-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(54px, 7vw, 92px);
}

.jhr-split--reverse {
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.jhr-split--reverse .jhr-copy {
	order: 1;
}

.jhr-split--reverse .jhr-visual {
	order: 2;
}

.jhr-visual {
	position: relative;
	min-width: 0;
}

.jhr-visual > video,
.jhr-visual > img {
	position: relative;
	z-index: 2;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 16px;
	background: var(--jhr-soft);
	box-shadow: 0 18px 54px rgba(12, 35, 82, 0.15);
	object-fit: cover;
}

.jhr-visual__accent {
	position: absolute;
	top: 18%;
	left: -18px;
	z-index: 3;
	width: 4px;
	height: 42%;
	border-radius: 999px;
	background: var(--jhr-orange);
	box-shadow: 0 8px 24px rgba(255, 149, 24, 0.28);
}

.jhr-visual__badge {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	min-width: 185px;
	padding: 15px 18px;
	border: 0;
	border-left: 3px solid var(--jhr-orange);
	border-radius: 8px 0 0 0;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 34px rgba(12, 35, 82, 0.13);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.jhr-visual__badge strong,
.jhr-visual__badge span {
	display: block;
}

.jhr-visual__badge strong {
	color: var(--jhr-navy);
	font-family: Manrope, Inter, sans-serif;
	font-size: 18px;
	font-weight: 850;
}

.jhr-visual__badge span {
	margin-top: 4px;
	color: var(--jhr-muted);
	font-size: 13px;
}

.jhr-copy__lead {
	margin-top: 24px !important;
	color: var(--jhr-muted);
	font-size: clamp(17px, 1.45vw, 19px);
	line-height: 1.75;
}

.jhr-copy__lead--secondary {
	margin-top: 16px !important;
	font-size: clamp(16px, 1.25vw, 18px);
}

.jhr-feature-list,
.jhr-check-list {
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.jhr-feature-list {
	display: grid;
	gap: 22px;
}

.jhr-feature-list li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: start;
	gap: 14px;
}

.jhr-feature-list__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 149, 24, 0.11);
	color: var(--jhr-orange);
}

.jhr-feature-list__icon .jhr-icon {
	width: 19px;
	height: 19px;
}

.jhr-feature-list strong,
.jhr-feature-list span {
	display: block;
}

.jhr-feature-list strong {
	color: var(--jhr-navy);
	font-family: Manrope, Inter, sans-serif;
	font-size: 16px;
	font-weight: 800;
}

.jhr-feature-list span {
	margin-top: 4px;
	color: var(--jhr-muted);
	font-size: 14px;
	line-height: 1.5;
}

.jhr-copy > .jhr-button {
	margin-top: 34px;
}

.jhr-fleet {
	background: var(--jhr-soft);
}

.jhr-visual--plain > video,
.jhr-visual--plain > img {
	aspect-ratio: 16 / 10;
	border-radius: 12px;
	box-shadow: 0 20px 58px rgba(12, 35, 82, 0.14);
}

.jhr-check-list {
	display: grid;
	gap: 13px;
}

.jhr-check-list li {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--jhr-navy);
	font-size: 15px;
	font-weight: 600;
}

.jhr-check-list .jhr-icon {
	color: var(--jhr-orange);
}

.jhr-return {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: #fff;
}

.jhr-media-overlay--return {
	background: rgba(0, 22, 68, 0.77);
}

.jhr-return__content {
	max-width: 840px;
	padding-block: clamp(100px, 12vw, 144px);
	text-align: center;
}

.jhr-return__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.jhr-return__label .jhr-icon {
	color: var(--jhr-orange);
}

.jhr-return h2 {
	margin-top: 25px;
}

.jhr-return .jhr-button {
	margin-top: 34px;
}

.jhr-footer {
	position: relative;
	overflow: hidden;
	background: var(--jhr-navy-deep);
	color: #fff;
}

.jhr-footer__accent {
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: rgba(255, 149, 24, 0.72);
}

.jhr-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(56px, 7vw, 88px);
	padding-block: clamp(74px, 9vw, 108px);
}

.jhr-footer h2 {
	color: #fff;
	font-size: 25px;
	line-height: 1.15;
}

.jhr-footer__left {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
	gap: 48px;
}

.jhr-footer__contact,
.jhr-footer__nav {
	display: grid;
	gap: 11px;
	margin-top: 22px;
}

.jhr-footer__contact a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	transition: color 180ms ease;
}

.jhr-footer__contact .jhr-icon {
	color: var(--jhr-orange);
}

.jhr-footer__contact a:hover,
.jhr-footer__nav a:hover,
.jhr-footer__bottom a:hover {
	color: var(--jhr-orange);
}

.jhr-footer__member {
	margin-top: 34px;
}

.jhr-footer__member p {
	color: var(--jhr-orange);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.jhr-footer__member span {
	display: block;
	max-width: 310px;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	line-height: 1.55;
}

.jhr-footer__nav a {
	width: fit-content;
	color: rgba(255, 255, 255, 0.76);
	font-size: 15px;
	transition: color 180ms ease;
}

.jhr-footer__locations > h2 {
	margin-bottom: 22px;
}

.jhr-location-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.jhr-location-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.045);
}

.jhr-location-card iframe {
	display: block;
	width: 100%;
	height: 158px;
	border: 0;
	filter: grayscale(0.3) contrast(1.03);
}

.jhr-location-card > div {
	padding: 18px;
}

.jhr-location-card h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 16px;
	letter-spacing: -0.02em;
}

.jhr-location-card h3 .jhr-icon {
	color: var(--jhr-orange);
}

.jhr-location-card p {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 13px;
	line-height: 1.55;
}

.jhr-location-card a {
	display: inline-block;
	margin-top: 11px;
	color: var(--jhr-orange);
	font-size: 13px;
	font-weight: 750;
}

.jhr-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jhr-footer__bottom .jhr-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 22px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
}

.jhr-footer__bottom div > div {
	display: flex;
	gap: 22px;
}

.jhr-footer__bottom a {
	transition: color 180ms ease;
}

.jhr-js .jhr-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.jhr-js .jhr-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@keyframes jhr-reveal-up {
	from {
		opacity: 0;
		transform: translateY(25px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes jhr-ken-burns {
	from {
		transform: scale(1.08) translate3d(-1.5%, 1%, 0);
	}
	to {
		transform: scale(1.2) translate3d(1.5%, -1.5%, 0);
	}
}

@media (max-width: 1160px) {
	.jhr-desktop-nav > a,
	.jhr-nav-dropdown > button {
		padding-inline: 10px;
		font-size: 13px;
	}

	.jhr-language {
		margin-left: 4px;
	}
}

@media (max-width: 1023px) {
	.jhr-desktop-nav {
		display: none;
	}

	.jhr-menu-button {
		display: block;
		justify-self: end;
	}

	.jhr-header__inner {
		min-height: 72px;
	}

	.jhr-brand__plate {
		min-height: 46px;
		padding: 6px 11px;
		border-radius: 14px;
	}

	.jhr-brand__plate img {
		height: 32px;
	}

	.jhr-hero {
		min-height: max(680px, 100svh);
	}

	.jhr-hero__content {
		padding-top: 130px;
	}

	.jhr-products__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.jhr-product-card {
		display: grid;
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	}

	.jhr-product-card__image {
		aspect-ratio: auto;
		min-height: 300px;
	}

	.jhr-product-card__body {
		display: flex;
		flex-direction: column;
		justify-content: center;
		border-top: 0;
		border-left: 1px solid var(--jhr-border);
	}

	.jhr-split,
	.jhr-footer__main {
		grid-template-columns: 1fr;
	}

	.jhr-split--reverse .jhr-copy,
	.jhr-split--reverse .jhr-visual {
		order: initial;
	}

	.jhr-footer__main {
		gap: 58px;
	}

	.jhr-footer__left {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	.admin-bar .jhr-header,
	.admin-bar .jhr-mobile-menu {
		top: 46px;
	}

	.jhr-container,
	.jhr-mobile-menu__inner {
		width: min(100% - 32px, var(--jhr-container));
	}

	.jhr-stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 24px;
		padding-block: 44px;
	}

	.jhr-section {
		padding-block: 82px;
	}

	.jhr-products__grid {
		margin-top: 38px;
	}

	.jhr-product-card {
		display: block;
		overflow: visible;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.jhr-product-card:hover,
	.jhr-product-card:focus-visible {
		transform: none;
		box-shadow: none;
	}

	.jhr-product-card__image {
		min-height: 0;
		aspect-ratio: 4 / 3;
		border-radius: 24px;
	}

	.jhr-product-card__body {
		padding: 20px 2px 8px;
		border: 0;
	}

	.jhr-product-card h3 {
		font-size: 24px;
	}

	.jhr-media-band {
		min-height: 620px;
	}

	.jhr-split {
		gap: 58px;
	}

	.jhr-visual__accent {
		top: 16%;
		left: -8px;
		width: 3px;
		height: 40%;
	}

	.jhr-visual > video,
	.jhr-visual > img {
		border-radius: 12px;
	}

	.jhr-visual__badge {
		right: 0;
		bottom: 0;
	}

	.jhr-copy {
		padding-top: 10px;
	}

	.jhr-location-grid,
	.jhr-footer__left {
		grid-template-columns: 1fr;
	}

	.jhr-footer__bottom .jhr-container {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 560px) {
	.jhr-header__inner {
		min-height: 68px;
	}

	.jhr-brand__plate img {
		height: 29px;
	}

	.jhr-menu-button {
		width: 42px;
		height: 42px;
	}

	.jhr-mobile-menu__inner {
		padding-top: 92px;
	}

	.jhr-mobile-nav a {
		padding-inline: 8px;
	}

	.jhr-mobile-nav span {
		font-size: 22px;
	}

	.jhr-hero {
		min-height: 720px;
	}

	.jhr-hero h1 {
		font-size: clamp(43px, 12vw, 58px);
		line-height: 0.98;
	}

	.jhr-hero__intro {
		font-size: 17px;
		line-height: 1.6;
	}

	.jhr-actions {
		align-items: stretch;
	}

	.jhr-actions .jhr-button {
		width: 100%;
	}

	.jhr-stats__grid {
		gap: 30px 18px;
	}

	.jhr-stat strong {
		font-size: 36px;
	}

	.jhr-stat span {
		font-size: 13px;
	}

	.jhr-section-heading h2,
	.jhr-copy h2,
	.jhr-media-band h2,
	.jhr-return h2 {
		font-size: 38px;
	}

	.jhr-product-card__image.is-contain img {
		padding: 24px;
	}

	.jhr-copy__lead,
	.jhr-media-band p,
	.jhr-return__content > p:not(.jhr-return__label) {
		font-size: 16px;
	}

	.jhr-visual__badge {
		left: auto;
		right: 0;
		min-width: 0;
	}

	.jhr-footer__bottom div > div {
		flex-direction: column;
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jhr-page *,
	.jhr-page *::before,
	.jhr-page *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.jhr-js .jhr-reveal {
		opacity: 1;
		transform: none;
	}
}

/*
 * Homepage refinement v3
 * Editorial product showcase, cleaner Jager Cleaning media and lighter motion-led return CTA.
 */

.jhr-product-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.24fr) minmax(340px, 0.76fr);
	grid-template-rows: repeat(2, minmax(260px, 1fr));
	gap: 18px;
	margin-top: 58px;
}

.jhr-product-panel {
	position: relative;
	isolation: isolate;
	min-height: 290px;
	overflow: hidden;
	border: 1px solid rgba(6, 37, 111, 0.1);
	border-radius: 10px;
	background: var(--jhr-navy-deep);
	box-shadow: 0 16px 46px rgba(12, 35, 82, 0.12);
	color: #fff;
	transition:
		transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: var(--jhr-delay, 0ms);
}

.jhr-product-panel--feature {
	grid-row: 1 / span 2;
	min-height: 578px;
}

.jhr-product-panel:hover,
.jhr-product-panel:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 28px 70px rgba(12, 35, 82, 0.2);
	outline: none;
}

.jhr-product-panel__media,
.jhr-product-panel__media img,
.jhr-product-panel__media video,
.jhr-product-panel__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.jhr-product-panel__media {
	overflow: hidden;
}

.jhr-product-panel__media img,
.jhr-product-panel__media video {
	display: block;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
}

.jhr-product-panel--feature .jhr-product-panel__media video {
	object-position: 52% center;
}

.jhr-product-panel--pallets .jhr-product-panel__media img {
	object-position: center 55%;
}

.jhr-product-panel--vaten .jhr-product-panel__media img {
	object-position: center 48%;
}

.jhr-product-panel:hover .jhr-product-panel__media img,
.jhr-product-panel:hover .jhr-product-panel__media video,
.jhr-product-panel:focus-visible .jhr-product-panel__media img,
.jhr-product-panel:focus-visible .jhr-product-panel__media video {
	transform: scale(1.055);
}

.jhr-product-panel__shade {
	background:
		linear-gradient(180deg, rgba(0, 18, 57, 0.06) 18%, rgba(0, 18, 57, 0.22) 48%, rgba(0, 18, 57, 0.9) 100%);
}

.jhr-product-panel--feature .jhr-product-panel__shade {
	background:
		linear-gradient(180deg, rgba(0, 18, 57, 0.02) 20%, rgba(0, 18, 57, 0.16) 50%, rgba(0, 18, 57, 0.9) 100%);
}

.jhr-product-panel__content {
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	padding: clamp(24px, 3vw, 38px);
}

.jhr-product-panel__content > p {
	margin: 0 0 10px;
	color: var(--jhr-orange-soft);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.jhr-product-panel__content > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.jhr-product-panel h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(30px, 3.4vw, 48px);
	line-height: 1;
	letter-spacing: -0.045em;
}

.jhr-product-panel--pallets h3,
.jhr-product-panel--vaten h3 {
	font-size: clamp(27px, 2.4vw, 38px);
}

.jhr-product-panel__content > span {
	display: block;
	max-width: 560px;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 15px;
	line-height: 1.55;
}

.jhr-product-panel__arrow {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	flex: 0 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition:
		background-color 220ms ease,
		border-color 220ms ease,
		transform 220ms ease;
}

.jhr-product-panel:hover .jhr-product-panel__arrow,
.jhr-product-panel:focus-visible .jhr-product-panel__arrow {
	border-color: var(--jhr-orange);
	background: var(--jhr-orange);
	transform: translateX(3px);
}

.jhr-split--cleaning {
	grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
	gap: clamp(64px, 7vw, 104px);
}

.jhr-visual--cleaning {
	overflow: hidden;
	border-bottom: 4px solid var(--jhr-orange);
	background: var(--jhr-soft);
	box-shadow: 0 22px 62px rgba(12, 35, 82, 0.14);
}

.jhr-visual--cleaning > img {
	display: block;
	aspect-ratio: 1.16 / 1;
	border-radius: 0;
	box-shadow: none;
	object-fit: cover;
	object-position: center 52%;
}

.jhr-return .jhr-media-layer img {
	transform: scale(1.09);
	transition:
		transform 1500ms cubic-bezier(0.16, 1, 0.3, 1),
		filter 1100ms ease;
	filter: saturate(0.92);
}

.jhr-return.is-active .jhr-media-layer img {
	transform: scale(1.015);
	filter: saturate(1);
}

.jhr-media-band .jhr-media-layer video {
	transform: scale(1.055);
	transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.jhr-media-band.is-active .jhr-media-layer video {
	transform: scale(1);
}

.jhr-media-overlay--return {
	background: rgba(0, 22, 68, 0.62);
}

@media (max-width: 1023px) {
	.jhr-product-showcase {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.jhr-product-panel,
	.jhr-product-panel--feature {
		grid-row: auto;
		min-height: 420px;
	}

	.jhr-product-panel--feature {
		min-height: 560px;
	}

	.jhr-split--cleaning {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	.jhr-product-showcase {
		gap: 14px;
		margin-top: 40px;
	}

	.jhr-product-panel,
	.jhr-product-panel--feature {
		min-height: 390px;
		border-radius: 6px;
	}

	.jhr-product-panel__content {
		padding: 24px 20px;
	}

	.jhr-product-panel__content > span {
		font-size: 14px;
	}

	.jhr-visual--cleaning {
		border-bottom-width: 3px;
	}

	.jhr-visual--cleaning > img {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 560px) {
	.jhr-product-panel,
	.jhr-product-panel--feature {
		min-height: 350px;
	}

	.jhr-product-panel h3,
	.jhr-product-panel--pallets h3,
	.jhr-product-panel--vaten h3 {
		font-size: 31px;
	}

	.jhr-product-panel__arrow {
		width: 42px;
		height: 42px;
	}
}

