/* ===================================
   DX Hero Fullscreen Image
=================================== */

#hero-section.dx-hero-fullscreen-image {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--color-white);
	isolation: isolate;
	background: var(--color-overlay-moss-94);
}

.dx-hero-fullscreen-image__media {
	position: absolute;
	right: 0;
	top: 50%;
	width: 60%;
	aspect-ratio: 1 / 1;
	transform: translateY(-50%);
	z-index: 0;
}

.dx-hero-fullscreen-image__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	animation: hero-pan-dx 30s ease-in-out infinite alternate;
	will-change: transform;
}

#hero-section.dx-hero-fullscreen-image::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 60%;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(
		90deg,
		var(--color-overlay-forest-strong) 0%,
		var(--color-overlay-moss-46) 35%,
		var(--color-overlay-forest-transparent) 100%
	);
}

#hero-section.dx-hero-fullscreen-image::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 60%;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(
		270deg,
		var(--color-overlay-forest-strong) 0%,
		var(--color-overlay-moss-46) 65%,
		var(--color-overlay-moss-94) 100%
	);
}


.dx-hero-fullscreen-image__container {
	position: relative;
	z-index: 3;
	padding-top: clamp(9.2rem, 11vw, 13.5rem);
	padding-bottom: clamp(3.4rem, 5.8vw, 5.6rem);
}

.dx-hero-fullscreen-image__content {
	max-width: none;
}

.dx-hero-fullscreen-image__eyebrow {
	display: inline-block;
	margin-bottom: 1.25rem;
	letter-spacing: 0.08em;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-primary);
}

.dx-hero-fullscreen-image__eyebrow.has-text-align-center,
.dx-hero-fullscreen-image__eyebrow.has-text-align-right {
	display: block;
	width: 100%;
}

.dx-hero-fullscreen-image__headline {
	margin: 0;
	max-width: none;
	color: var(--color-white);
	text-wrap: balance;
	text-shadow: 0 0.25rem 1.1rem var(--color-black-35);
}

.dx-hero-fullscreen-image__subline {
	margin: 1.25rem 0 0;
	max-width: none;
	font-size: clamp(1.05rem, 1vw, 1.2rem);
	line-height: 1.45;
	color: var(--color-white-85);
}

.dx-hero-fullscreen-image__usp-list {
	margin: 2.2rem 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 0;
}

.dx-hero-fullscreen-image__usp-item {
	position: relative;
	display: grid;
	grid-template-columns: 2.3rem minmax(0, 1fr);
	align-items: start;
	gap: 0.75rem;
	padding: 0;
}

.dx-hero-fullscreen-image__usp-item + .dx-hero-fullscreen-image__usp-item {
	margin-left: 3rem;
}

.dx-hero-fullscreen-image__usp-item + .dx-hero-fullscreen-image__usp-item::before {
	content: '';
	position: absolute;
	left: -1.5rem;
	top: 0.15rem;
	bottom: 0.15rem;
	width: 1px;
	background: var(--color-white-24);
}

.dx-hero-fullscreen-image__usp-icon svg,
.dx-hero-fullscreen-image__usp-icon .ti {
	width: 2.24rem;
	height: 2.24rem;
	color: var(--color-primary);
	stroke: var(--color-primary);
}

.dx-hero-fullscreen-image__usp-text {
	display: block;
	line-height: 1.3;
}

.dx-hero-fullscreen-image__usp-title {
	display: block;
	color: var(--color-white);
}

.dx-hero-fullscreen-image__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2.15rem;
}

.dx-hero-fullscreen-image__trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.7rem;
	margin-top: 1.55rem;
	font-size: 0.96rem;
	color: var(--color-white-85);
}

.dx-hero-fullscreen-image__stars {
	display: inline-flex;
	gap: 0.2rem;
	color: var(--color-secondary);
	font-size: 1rem;
	letter-spacing: 0.03em;
}

.dx-hero-fullscreen-image__legacy-text {
	margin-top: 1rem;
	max-width: 36rem;
	color: var(--color-white-85);
}

@keyframes hero-pan-dx {
	0% {
		transform: scale(1.02) translate3d(0%, 0%, 0);
	}
	100% {
		transform: scale(1.08) translate3d(1.2%, -1.2%, 0);
	}
}

@media (max-width: 991.98px) {
	#hero-section.dx-hero-fullscreen-image {
		--dx-hero-media-size: clamp(24rem, 78vw, 40rem);
	}

	#hero-section.dx-hero-fullscreen-image::before {
		top: calc(var(--dx-hero-media-size) - clamp(14rem, 80vw, 28rem));
		bottom: auto;
		left: 0;
		right: auto;
		width: 100%;
		height: clamp(14rem, 80vw, 28rem);
		background: linear-gradient(
			0deg,
			var(--color-overlay-forest-strong) 0%,
			var(--color-overlay-moss-46) 50%,
			var(--color-overlay-forest-transparent) 100%
		);
	}

	#hero-section.dx-hero-fullscreen-image::after {
		top: var(--dx-hero-media-size);
		bottom: 0;
		left: 0;
		right: 0;
		height: auto;
	background: linear-gradient(
		180deg,
		var(--color-overlay-forest-strong) 0%,
		var(--color-overlay-moss-46) 65%,
		var(--color-overlay-moss-94) 100%
	);
	}

	.dx-hero-fullscreen-image__media {
		left: 0;
		right: 0;
		top: 0;
		width: 100%;
		height: var(--dx-hero-media-size);
		aspect-ratio: unset;
		transform: none;
	}

	.dx-hero-fullscreen-image__container {
		padding-top: calc(var(--dx-hero-media-size) * 0.75);
	}

	.dx-hero-fullscreen-image__usp-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem 1.1rem;
	}

	.dx-hero-fullscreen-image__usp-item {
		grid-template-columns: 2rem minmax(0, 1fr);
		gap: 0.7rem;
		margin-left: 0;
	}

	.dx-hero-fullscreen-image__usp-item + .dx-hero-fullscreen-image__usp-item {
		margin-left: 0;
	}

	.dx-hero-fullscreen-image__usp-item + .dx-hero-fullscreen-image__usp-item::before {
		display: none;
	}

	.dx-hero-fullscreen-image__usp-icon svg,
	.dx-hero-fullscreen-image__usp-icon .ti {
		width: 1.95rem;
		height: 1.95rem;
	}
}

@media (max-width: 767.98px) {
	#hero-section.dx-hero-fullscreen-image {
		display: flex;
		align-items: center;
		--dx-hero-media-size: clamp(29.3rem, 146vw, 45.2rem);
	}

	.dx-hero-fullscreen-image__media {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: auto;
		width: 100%;
		height: var(--dx-hero-media-size);
		padding-top: 0;
		aspect-ratio: unset;
		transform: none;
	}

	.dx-hero-fullscreen-image__media img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		animation: none;
		transform: none;
	}

	.dx-hero-fullscreen-image__headline {
		max-width: 100%;
	}

	.dx-hero-fullscreen-image__subline {
		font-size: 1rem;
	}

	.dx-hero-fullscreen-image__usp-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem 1.1rem;
		margin-top: 1.7rem;
	}

	.dx-hero-fullscreen-image__usp-item {
		grid-template-columns: 2rem minmax(0, 1fr);
		gap: 0.7rem;
		margin-left: 0;
	}

	.dx-hero-fullscreen-image__usp-item + .dx-hero-fullscreen-image__usp-item {
		margin-left: 0;
	}

	.dx-hero-fullscreen-image__usp-item + .dx-hero-fullscreen-image__usp-item::before {
		display: none;
	}

	.dx-hero-fullscreen-image__usp-title {
		line-height: 1.22;
	}

	.dx-hero-fullscreen-image__usp-icon svg,
	.dx-hero-fullscreen-image__usp-icon .ti {
		width: 1.95rem;
		height: 1.95rem;
	}

	.dx-hero-fullscreen-image__cta-row {
		flex-direction: column;
		align-items: stretch;
	}

	.dx-hero-fullscreen-image__cta-row .button-1 {
		width: 100%;
	}
}

@media (max-width: 420px) {
	.dx-hero-fullscreen-image__usp-list {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dx-hero-fullscreen-image__media img {
		animation: none;
		transform: scale(1.03);
	}
}