/*!
 * Enzo — home styles (conditionally enqueued)
 * Selectors preserved from main.css.
 */

.home-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(48px, 7vw, 96px);
	align-items: center;
}

.home-hero__content {
	max-width: 650px;
}

.home-hero-slider__viewport {
	position: relative;
	overflow: hidden;
}

.home-hero-slider__track {
	position: relative;
	display: grid;
	grid-template-areas: "hero-slide";
}

.home-hero-slider__slide {
	grid-area: hero-slide;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 520px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 0;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.home-hero-slider__slide.is-visible {
	visibility: visible;
}

.home-hero-slider__slide.is-visible.is-shown {
	opacity: 1;
}

.home-hero-slider__slide.is-active {
	pointer-events: auto;
}

/* First slide paints before JS: server-side is-active + is-visible + is-shown. */
.home-hero-slider__slide.is-active.is-visible.is-shown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.home-hero.home-hero-slider::after {
	position: absolute;
	right: max(24px, calc((100% - min(100%, var(--enzo-container))) / 2 + 24px));
	bottom: 20px;
	z-index: 3;
	width: 100px;
	height: 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.28);
	border-bottom: 1px solid rgba(255, 255, 255, 0.28);
	background: transparent;
	opacity: 0.7;
	pointer-events: none;
	content: "";
}

.home-hero-slider__controls {
	position: absolute;
	left: auto;
	right: max(24px, calc((100% - min(100%, var(--enzo-container))) / 2 + 24px));
	bottom: 28px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	width: 220px;
	height: 54px;
	min-height: 54px;
	margin: 0;
	padding: 6px 8px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
	background: rgba(20, 20, 20, 0.55);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	box-shadow: none;
	transform: none;
	pointer-events: none;
}

.home-hero-slider__arrow,
.home-hero-slider__dots,
.home-hero-slider__dot {
	pointer-events: auto;
}

.home-hero-slider__arrow {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	order: 2;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	box-shadow: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.home-hero-slider__arrow--prev {
	border-color: rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.08);
	color: var(--enzo-white);
}

.home-hero-slider__arrow--next {
	order: 3;
	border-color: var(--primary);
	background: var(--primary);
	color: var(--enzo-white);
}

.home-hero-slider__arrow--prev:hover,
.home-hero-slider__arrow--prev:focus-visible {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.16);
	color: var(--enzo-white);
	outline: none;
}

.home-hero-slider__arrow--next:hover,
.home-hero-slider__arrow--next:focus-visible {
	border-color: var(--primary);
	background: #d63d24;
	color: var(--enzo-white);
	outline: none;
}

.home-hero-slider__dots {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	order: 1;
	gap: 6px;
	min-width: 0;
	max-width: 96px;
	margin: 0 auto 0 0;
	padding-right: 4px;
}

.home-hero-slider__dot {
	position: relative;
	flex: 0 0 auto;
	width: 16px;
	height: 2px;
	padding: 0;
	border: none;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.32);
	cursor: pointer;
	overflow: hidden;
	transition: width 0.35s ease, background-color 0.25s ease;
}

.home-hero-slider__dot:hover,
.home-hero-slider__dot:focus-visible {
	background: rgba(255, 255, 255, 0.55);
	outline: none;
}

.home-hero-slider__dot.is-active {
	width: 38px;
	background: rgba(255, 255, 255, 0.16);
}

.home-hero-slider__dot-progress {
	display: block;
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	height: 100%;
	border-radius: 0;
	background: var(--primary);
	pointer-events: none;
}

.home-hero-slider__dot.is-active .home-hero-slider__dot-progress {
	animation: heroDotProgress var(--hero-slider-delay, 6500ms) linear forwards;
}

.home-hero-slider__slide--gradient {
	background: linear-gradient(135deg, var(--hero-gradient-1, var(--enzo-dark)) 0%, var(--hero-bg, #2a2a2a) 58%, var(--hero-gradient-2, #4a1825) 100%);
}

.home-hero-slider__slide--split {
	background: linear-gradient(135deg, var(--hero-gradient-1, var(--enzo-dark)) 0%, var(--hero-bg, #2a2a2a) 58%, var(--hero-gradient-2, #4a1825) 100%);
}

.home-hero-slider__slide--split .container.home-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.home-hero-slider__slide h2 {
	max-width: 650px;
	margin: 0;
	font-size: clamp(40px, 4vw, 54px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.home-hero-slider__slide--split .hero-showcase__image {
	min-height: 340px;
	aspect-ratio: 4 / 5;
}

.home-hero-slider__slide--split .hero-showcase__image img,
.home-hero-slider__slide--split .hero-showcase__image picture {
	display: block;
	width: 100%;
	height: 100%;
}

.home-hero-slider__slide--split .hero-showcase__image img {
	object-fit: contain;
	object-position: center center;
}

.home-hero-slider__slide .home-hero__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.home-hero-slider__slide .home-hero__background picture {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.home-hero-slider__slide .home-hero__background-image,
.home-hero-slider__slide .home-hero__background img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.home-hero-slider__slide--image .home-hero__background-image,
.home-hero-slider__slide--image .home-hero__background img {
	object-position: center center;
}

.home-hero-slider__slide .home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: var(--hero-overlay-color, #000);
	opacity: var(--hero-overlay-opacity, 0);
	pointer-events: none;
}

.home-hero-slider__slide.home-hero--text-dark {
	color: var(--dark);
}

.home-hero-slider__slide.home-hero--text-dark .lead,
.home-hero-slider__slide.home-hero--text-dark .lead p {
	color: rgba(21, 21, 21, 0.78);
}

.home-hero-slider__slide.home-hero--text-dark .hero-actions .button--light {
	background: var(--white);
	border-color: var(--border);
	color: var(--dark);
}

@media (prefers-reduced-motion: reduce) {
.home-hero-slider__slide {
		transition: none;
	}
.home-hero-slider__arrow,
	.home-hero-slider__dot {
		transition: none;
	}
.home-hero-slider__dot-progress {
		animation: none !important;
	}
}

@media (max-width: 960px) {
.home-hero__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
.home-hero-slider__slide--split .container.home-hero__grid {
		grid-template-columns: 1fr;
	}
.home-hero.home-hero-slider .home-hero-slider__slide .container.home-hero__grid {
		padding-top: clamp(44px, 5vw, 64px);
		padding-bottom: clamp(20px, 3vw, 32px);
	}
.home-hero-slider__slide {
		min-height: 460px;
	}
.home-hero-slider__slide--split .hero-showcase__image {
		min-height: 280px;
		aspect-ratio: 1 / 1;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image {
		min-height: clamp(480px, 70vw, 560px);
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background-image,
	.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background img {
		object-position: center center;
	}
.home-hero {
		padding-top: calc(clamp(72px, 8vw, 110px) - 5px);
	}
.home-hero h1 {
		font-size: 41px;
		line-height: 1.05;
		letter-spacing: -0.03em;
	}
.home-hero h2,
.home-hero-slider__slide h2 {
		font-size: 41px;
		line-height: 1.05;
		letter-spacing: -0.03em;
	}
.home-hero.home-hero-slider::after {
		right: max(16px, calc((100% - min(100%, var(--enzo-container))) / 2 + 16px));
		bottom: 16px;
		width: 88px;
		height: 24px;
	}
.home-hero-slider__controls {
		right: max(16px, calc((100% - min(100%, var(--enzo-container))) / 2 + 16px));
		bottom: 24px;
		width: 196px;
		height: 52px;
		min-height: 52px;
		gap: 6px;
		padding: 6px;
	}
.home-hero-slider__arrow {
		width: 40px;
		height: 40px;
		border-radius: 4px;
	}
.home-hero .lead {
		font-size: 17px;
		margin-top: 14px;
	}
.home-hero .hero-actions {
		margin-top: 22px;
	}
}

@media (max-width: 640px) {
.home-hero {
		padding: 51px 0 64px;
	}
.home-hero.home-hero-slider .home-hero-slider__slide .container.home-hero__grid {
		padding-top: 40px;
		padding-bottom: 44px;
		gap: 24px;
	}
.home-hero-slider__slide {
		min-height: 500px;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		min-height: 700px;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .container.home-hero__grid {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		align-content: start;
		min-height: auto;
		padding-top: 24px;
		padding-bottom: 32px;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__content {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		width: 100%;
		max-width: 340px;
		margin-top: 0;
		transform: none;
		text-align: center;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .eyebrow {
		margin: 0;
		text-align: center;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image h1,
	.home-hero.home-hero-slider .home-hero-slider__slide--image h2 {
		margin: 0;
		max-width: 100%;
		font-size: 28px;
		line-height: 1.08;
		text-align: center;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .lead {
		margin-top: 6px;
		max-width: 100%;
		font-size: 15px;
		line-height: 1.45;
		text-align: center;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .lead p {
		margin: 0;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .hero-actions {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		gap: 8px;
		width: 100%;
		max-width: 340px;
		margin-top: 12px;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .hero-actions .button {
		flex: 1 1 0;
		min-height: 46px;
		padding: 11px 12px;
		font-size: 14px;
	}
.home-hero-slider__slide--split .hero-showcase__image {
		min-height: 260px;
	}
.home-hero h1 {
		font-size: 33px;
		line-height: 1.05;
		letter-spacing: -0.03em;
	}
.home-hero h2,
.home-hero-slider__slide h2 {
		font-size: 33px;
		line-height: 1.05;
		letter-spacing: -0.03em;
	}
.home-hero.home-hero-slider::after {
		right: 16px;
		bottom: 14px;
		width: 72px;
		height: 22px;
	}
.home-hero.home-hero-slider .home-hero-slider__controls {
		left: 16px;
		right: auto;
		bottom: 20px;
		width: 176px;
		max-width: calc(100% - 32px);
		height: 50px;
		min-height: 50px;
		padding: 5px;
	}
.home-hero-slider__controls {
		gap: 4px;
	}
.home-hero-slider__arrow {
		width: 40px;
		height: 40px;
		border-radius: 4px;
	}
.home-hero-slider__dots {
		max-width: 72px;
		padding-right: 2px;
	}
.home-hero-slider__dot.is-active {
		width: 28px;
	}
.home-hero-slider__dot {
		width: 12px;
		height: 2px;
	}
.home-hero .lead {
		font-size: 16px;
		line-height: 1.75;
		margin-top: 14px;
	}
.home-hero .hero-actions {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 10px;
		margin-top: 20px;
	}
.home-hero .hero-actions .button {
		flex: 1 1 0;
		width: auto;
		min-width: 0;
		min-height: 46px;
		padding: 11px 14px;
		font-size: 14px;
	}
}

@media (max-width: 768px) {
.home-hero.home-hero-slider .home-hero-slider__slide--image {
		min-height: calc(100vw * 61 / 40);
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background {
		inset: 0 auto auto;
		width: 100%;
		height: auto;
		aspect-ratio: 40 / 67;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background picture {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background-image,
	.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
.home-hero.home-hero-slider .home-hero__content h1,
	.home-hero.home-hero-slider .home-hero__content h2 {
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 700px) {
.page-template-template-home .home-category-grid .category-card--visual {
		min-height: 264px;
	}
.page-template-template-home .home-category-grid .category-card__content {
		padding: 5px 14px 5px;
	}
.page-template-template-home .home-category-grid .category-card__content h3 {
		font-size: 0.95rem;
		line-height: 1.32;
	}
}

@media (min-width: 961px) {
.page-template-template-home .reference-carousel {
		padding-bottom: 140px;
	}
}

@media (max-width: 640px) {
.page-template-template-home .content-section {
		padding: 70px 0 140px 0;
	}
.page-template-template-home .content-section:has(.home-category-grid) {
		padding-bottom: 60px;
	}
.page-template-template-home .home-featured-solutions {
		padding-bottom: 60px;
	}
.page-template-template-home .home-company-highlight {
		padding-bottom: 0;
	}
body:not(.page-template-template-home) .site-footer .home-footer-cta {
		margin-top: 70px;
	}
}

.reference-carousel__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.reference-carousel__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.reference-carousel__heading {
	min-width: 0;
}

.reference-carousel__header-controls {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 12px;
}

.reference-carousel__title {
	margin: 0;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.15;
}

.reference-carousel__title::after {
	display: block;
	width: 48px;
	height: 2px;
	margin-top: 16px;
	border-radius: 999px;
	background: var(--primary);
	content: "";
}

.reference-carousel__viewport {
	min-width: 0;
	overflow: hidden;
	outline: none;
}

.reference-carousel__viewport:focus-visible {
	box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.28);
	border-radius: 16px;
}

.reference-carousel__track {
	display: flex;
	gap: 24px;
	will-change: transform;
}

.reference-carousel__item {
	flex: 0 0 calc((100% - 144px) / 7);
	min-width: 0;
}

.reference-carousel__card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 112px;
	padding: 16px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 8px 24px rgba(21, 21, 21, 0.04);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.reference-carousel__card:hover {
	border-color: rgba(var(--primary-rgb), 0.2);
	box-shadow: 0 12px 32px rgba(21, 21, 21, 0.08);
	transform: translateY(-2px);
}

.reference-carousel__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80px;
}

.reference-carousel__logo-image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

.reference-carousel__header-controls[hidden],
.reference-carousel__arrow[hidden],
.reference-carousel__dots[hidden] {
	display: none;
}

.reference-carousel__arrow {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--white);
	color: var(--text);
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(21, 21, 21, 0.06);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.reference-carousel__arrow:hover,
.reference-carousel__arrow:focus-visible {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--enzo-white);
	transform: scale(1.05);
	box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.24);
	outline: none;
}

.reference-carousel__dots {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 0;
	margin-top: -8px;
}

@media (max-width: 768px) {
	.reference-carousel__dots {
		margin-bottom: 80px;
	}
}

.reference-carousel__dot {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(21, 21, 21, 0.18);
	cursor: pointer;
	transition: width 0.3s ease, background-color 0.25s ease;
}

.reference-carousel__dot.is-active {
	width: 28px;
	background: var(--primary);
}

.reference-carousel__dot:hover,
.reference-carousel__dot:focus-visible {
	background: rgba(var(--primary-rgb), 0.55);
	outline: none;
}

@media (max-width: 1200px) {
.reference-carousel__item {
		flex: 0 0 calc((100% - 120px) / 6);
	}
}

@media (max-width: 960px) {
.reference-carousel__item {
		flex: 0 0 calc((100% - 72px) / 4);
	}
}

@media (max-width: 640px) {
.reference-carousel__inner {
		gap: 24px;
	}
.reference-carousel__item {
		flex: 0 0 calc((100% - 24px) / 2);
	}
.reference-carousel__card {
		min-height: 96px;
		padding: 12px;
		border-radius: 14px;
	}
.reference-carousel__logo {
		height: 64px;
	}
.reference-carousel__header {
		align-items: flex-end;
		gap: 16px;
	}
.reference-carousel__header-controls {
		gap: 8px;
	}
.reference-carousel__arrow {
		width: 40px;
		height: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
.reference-carousel__track {
		transition: none !important;
	}
.reference-carousel__card {
		transition: border-color 160ms ease, box-shadow 160ms ease;
	}
.reference-carousel__card:hover {
		transform: none;
	}
}

.page-template-template-home .partner-carousel {
	background: #ffffff;
}

.page-template-template-home .partner-carousel .related-products-carousel__heading h2 {
	margin: 0;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.page-template-template-home .partner-carousel .related-products-carousel__heading h2::after {
	display: block;
	width: 48px;
	height: 2px;
	margin-top: 16px;
	background: var(--primary);
	content: "";
}

.page-template-template-home .partner-carousel .related-products-carousel__controls {
	gap: 8px;
}

.page-template-template-home .partner-carousel .related-products-carousel__arrow {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(21, 21, 21, 0.12);
	border-radius: 8px;
	background: var(--white);
	color: var(--dark);
	font-size: 24px;
	line-height: 1;
	box-shadow: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-template-template-home .partner-carousel .related-products-carousel__arrow--prev {
	border-color: rgba(21, 21, 21, 0.12);
	background: var(--white);
	color: var(--dark);
}

.page-template-template-home .partner-carousel .related-products-carousel__arrow--next {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--enzo-white);
}

.page-template-template-home .partner-carousel .related-products-carousel__arrow--prev:hover,
.page-template-template-home .partner-carousel .related-products-carousel__arrow--prev:focus-visible {
	border-color: var(--primary);
	background: var(--white);
	color: var(--primary);
	transform: none;
	outline: none;
}

.page-template-template-home .partner-carousel .related-products-carousel__arrow--next:hover,
.page-template-template-home .partner-carousel .related-products-carousel__arrow--next:focus-visible {
	border-color: var(--primary);
	background: #d63d24;
	color: var(--enzo-white);
	transform: none;
	outline: none;
}

.page-template-template-home .partner-carousel .related-products-carousel__arrow:disabled {
	opacity: 0.35;
	transform: none;
}

.page-template-template-home .partner-carousel .related-products-carousel__slide {
	flex: 0 0 calc((100% - 96px) / 5);
}

.page-template-template-home .partner-carousel .partner-card {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 132px;
	padding: 24px;
	border: 1px solid rgba(21, 21, 21, 0.08);
	border-radius: 12px;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(21, 21, 21, 0.03);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-template-template-home .partner-carousel .partner-card:hover {
	border-color: rgba(21, 21, 21, 0.14);
	box-shadow: 0 4px 14px rgba(21, 21, 21, 0.05);
}

.page-template-template-home .partner-carousel .partner-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 72px;
}

.page-template-template-home .partner-carousel .partner-card__image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

@media (max-width: 960px) {
.page-template-template-home .partner-carousel .related-products-carousel__slide {
		flex: 0 0 calc((100% - 48px) / 3);
	}
.page-template-template-home .partner-carousel .partner-card {
		min-height: 120px;
		padding: 20px;
	}
.page-template-template-home .partner-carousel .partner-card__logo {
		height: 64px;
	}
}

@media (max-width: 640px) {
.page-template-template-home .partner-carousel .related-products-carousel__slide {
		flex: 0 0 calc((100% - 24px) / 2);
	}
.page-template-template-home .partner-carousel .partner-card {
		min-height: 108px;
		padding: 16px;
	}
.page-template-template-home .partner-carousel .partner-card__logo {
		height: 56px;
	}
.page-template-template-home .partner-carousel .related-products-carousel__arrow {
		width: 40px;
		height: 40px;
		border-radius: 8px;
	}
}

.home-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 8vw, 110px) 0;
	background: linear-gradient(135deg, var(--enzo-dark) 0%, #2a2a2a 58%, #4a1825 100%);
	color: var(--enzo-white);
}

.home-hero .eyebrow {
	margin: 0 0 14px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.home-hero h1,
.home-hero h2 {
	max-width: 650px;
	margin: 0;
	font-size: clamp(40px, 4vw, 54px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.home-hero .lead {
	max-width: 620px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	line-height: 1.8;
}

.home-hero .lead p {
	margin: 0;
}

.home-hero .hero-actions {
	margin-top: 28px;
}

.home-hero .hero-actions .button {
	min-height: 52px;
	padding: 14px 26px;
	border-radius: 999px;
}

.home-hero .hero-actions .button--light {
	background: var(--white);
	border-color: var(--white);
	color: var(--dark);
	box-shadow: none;
}

.home-hero .hero-actions .button--light:hover,
.home-hero .hero-actions .button--light:focus-visible {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--white);
}

.home-hero.home-hero-slider {
	padding-top: 0;
	padding-bottom: 0;
	background: transparent;
}

.home-hero.home-hero-slider.is-autoplay-paused .home-hero-slider__dot.is-active .home-hero-slider__dot-progress {
	animation-play-state: paused;
}

.home-hero.home-hero-slider .home-hero__content h1,
.home-hero.home-hero-slider .home-hero__content h2 {
	color: var(--white);
}

@media (min-width: 961px) {
.home-hero.home-hero-slider .home-hero__content h1,
	.home-hero.home-hero-slider .home-hero__content h2 {
		max-width: 620px;
	}
}

.home-hero.home-hero-slider .home-hero-slider__slide--image {
	overflow: hidden;
	min-height: clamp(500px, 32.3vw, 620px);
}

.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background,
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background-image,
.home-hero.home-hero-slider .home-hero-slider__slide--image .home-hero__background img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	object-fit: cover;
	object-position: center center;
}

.home-hero.home-hero-slider .home-hero-slider__slide .container.home-hero__grid {
	position: relative;
	z-index: 2;
	width: 100%;
	grid-template-columns: minmax(0, 1fr);
	align-content: center;
	padding-top: clamp(48px, 5vw, 72px);
	padding-bottom: clamp(24px, 3vw, 40px);
}

.home-hero .home-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	box-shadow: none;
	object-fit: cover;
}

.page-template-template-home .content-section {
	padding: clamp(56px, 7vw, 96px) 0;
}

.page-template-template-home .content-section--compact {
	padding: 28px 0;
}

.home-category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.page-template-template-home .content-section:has(.home-category-grid) {
	padding-top: 0;
}

.page-template-template-home .home-category-grid .category-card.category-card--visual {
	display: grid;
	grid-template-rows: minmax(0, 72fr) minmax(0, 28fr);
	min-height: 288px;
	padding: 0;
	border: 1px solid rgba(21, 21, 21, 0.06);
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-template-template-home .home-category-grid .category-card.category-card--visual::after {
	display: none;
}

.page-template-template-home .home-category-grid .category-card.category-card--visual:hover {
	transform: translateY(-5px);
	border-color: rgba(var(--primary-rgb), 0.14);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.page-template-template-home .home-category-grid .category-card__media {
	aspect-ratio: auto;
	min-height: 0;
	height: 100%;
}

.page-template-template-home .home-category-grid .category-card__media img,
.page-template-template-home .home-category-grid .category-card__placeholder {
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-template-template-home .home-category-grid .category-card--visual:hover .category-card__media img,
.page-template-template-home .home-category-grid .category-card--visual:hover .category-card__placeholder {
	transform: scale(1.04);
}

.page-template-template-home .home-category-grid .category-card__content {
	display: flex;
	align-items: center;
	min-height: 0;
	padding: 3px 14px 4px;
}

.page-template-template-home .home-category-grid .category-card__content h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	margin: 0;
	color: var(--dark);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.012em;
}

.page-template-template-home .home-category-grid .category-card__content h3::after {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border-radius: 50%;
	background: rgba(var(--primary-rgb), 0.08);
	color: var(--primary);
	font-size: 0.78rem;
	line-height: 1;
	content: "→";
	transition: background-color 0.28s ease, color 0.28s ease;
}

.page-template-template-home .home-category-grid .category-card--visual:hover .category-card__content h3::after {
	background: var(--primary);
	color: var(--white);
}

@media (min-width: 1200px) {
.page-template-template-home .home-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
	}
.page-template-template-home .home-category-grid .category-card.category-card--visual {
		min-height: 320px;
	}
.page-template-template-home .home-category-grid .category-card__content {
		padding: 4px 16px 4px;
	}
.page-template-template-home .home-category-grid .category-card__content h3 {
		font-size: 1.02rem;
		line-height: 1.28;
		letter-spacing: -0.018em;
	}
}

@media (max-width: 767px) {
.page-template-template-home .home-category-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

.page-template-template-home .home-featured-solutions .product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(21, 21, 21, 0.08);
	border-radius: 12px;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(21, 21, 21, 0.03);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.page-template-template-home .home-featured-solutions .product-card:hover {
	transform: translateY(-3px);
	border-color: rgba(21, 21, 21, 0.14);
	box-shadow: 0 6px 18px rgba(21, 21, 21, 0.05);
}

.page-template-template-home .home-featured-solutions .related-products-carousel__controls {
	gap: 8px;
}

.page-template-template-home .home-featured-solutions .related-products-carousel__arrow {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(21, 21, 21, 0.12);
	border-radius: 8px;
	background: var(--white);
	color: var(--dark);
	font-size: 24px;
	line-height: 1;
	box-shadow: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-template-template-home .home-featured-solutions .related-products-carousel__arrow--prev {
	border-color: rgba(21, 21, 21, 0.12);
	background: var(--white);
	color: var(--dark);
}

.page-template-template-home .home-featured-solutions .related-products-carousel__arrow--next {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--enzo-white);
}

.page-template-template-home .home-featured-solutions .related-products-carousel__arrow--prev:hover,
.page-template-template-home .home-featured-solutions .related-products-carousel__arrow--prev:focus-visible {
	border-color: var(--primary);
	background: var(--white);
	color: var(--primary);
	transform: none;
	outline: none;
}

.page-template-template-home .home-featured-solutions .related-products-carousel__arrow--next:hover,
.page-template-template-home .home-featured-solutions .related-products-carousel__arrow--next:focus-visible {
	border-color: var(--primary);
	background: #d63d24;
	color: var(--enzo-white);
	transform: none;
	outline: none;
}

.page-template-template-home .home-featured-solutions .related-products-carousel__arrow:disabled {
	opacity: 0.35;
	transform: none;
}

.page-template-template-home .home-featured-solutions .product-card__media {
	position: relative;
	flex: 0 0 auto;
	aspect-ratio: 16 / 13;
	overflow: hidden;
	background: #f3f4f5;
}

.page-template-template-home .home-featured-solutions .product-card__media::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.22s ease;
	content: "";
}

.page-template-template-home .home-featured-solutions .product-card:hover .product-card__media::after {
	transform: scaleX(1);
}

.page-template-template-home .home-featured-solutions .product-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-template-template-home .home-featured-solutions .product-card__placeholder {
	object-fit: contain;
	padding: 24px;
	opacity: 0.28;
}

.page-template-template-home .home-featured-solutions .product-card__body {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0;
	min-height: 0;
	padding: 20px 20px 22px;
}

.page-template-template-home .home-featured-solutions .product-card__body > p {
	display: none;
}

.page-template-template-home .home-featured-solutions .product-card__meta {
	display: none;
}

.page-template-template-home .home-featured-solutions .product-code-badge {
	display: none;
}

.page-template-template-home .home-featured-solutions .card-badge {
	display: none;
}

.page-template-template-home .home-featured-solutions .product-card h3 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--dark);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -0.025em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.page-template-template-home .home-featured-solutions .enzo-product-card__price {
	display: none;
}

.page-template-template-home .home-featured-solutions .product-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(21, 21, 21, 0.08);
	color: var(--primary);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	transition: color 0.22s ease, gap 0.22s ease;
}

.page-template-template-home .home-featured-solutions .product-card:hover .product-card__cta {
	gap: 8px;
	color: var(--primary);
}

.page-template-template-home .home-featured-solutions .product-card__cta span {
	transition: transform 0.22s ease;
}

.page-template-template-home .home-featured-solutions .product-card:hover .product-card__cta span {
	transform: translateX(2px);
}

@media (max-width: 640px) {
.page-template-template-home .home-featured-solutions .product-card__body {
		padding: 18px 16px 20px;
	}
.page-template-template-home .home-featured-solutions .product-card h3 {
		font-size: 1.02rem;
		line-height: 1.28;
	}
.page-template-template-home .home-featured-solutions .product-card__cta {
		margin-top: 14px;
		padding-top: 12px;
		font-size: 0.82rem;
	}
}

@media (prefers-reduced-motion: reduce) {
.page-template-template-home .home-featured-solutions .product-card,
	.page-template-template-home .home-featured-solutions .product-card__media::after,
	.page-template-template-home .home-featured-solutions .product-card__cta,
	.page-template-template-home .home-featured-solutions .product-card__cta span {
		transition: none;
	}
.page-template-template-home .home-featured-solutions .product-card:hover {
		transform: none;
	}
.page-template-template-home .home-featured-solutions .product-card:hover .product-card__media::after {
		transform: none;
	}
}

.page-template-template-home .home-features {
	padding-top: 50px;
	padding-bottom: 0;
	background: #ffffff;
}

.page-template-template-home .home-featured-solutions {
	padding-top: 70px;
	padding-bottom: clamp(56px, 7vw, 96px);
	background: #ffffff;
}

@media (max-width: 960px) {
.page-template-template-home .home-featured-solutions {
		padding-top: 56px;
	}
}

/* Mobile: keep homepage section flow readable after features. */
@media (max-width: 768px) {
	.page-template-template-home .site-main > .home-features {
		padding-top: 16px;
	}
}

.home-features .home-features__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}

.home-features .home-features__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	padding: 30px;
	border: 1px solid rgba(21, 21, 21, 0.08);
	border-radius: 8px;
	background: var(--white);
	box-shadow: none;
	transition: border-color 0.16s ease;
}

.home-features .home-features__card:hover {
	border-color: rgba(var(--primary-rgb), 0.28);
}

.home-features .home-features__icon {
	display: block;
	flex: 0 0 auto;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--primary);
	line-height: 0;
}

.home-features .home-features__icon svg {
	display: block;
	width: 32px;
	height: 32px;
}

.home-features .home-features__content {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
	min-width: 0;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(21, 21, 21, 0.08);
}

/* Match footer heading underline: short primary segment on hairline */
.home-features .home-features__content::after {
	position: absolute;
	top: -1px;
	left: 0;
	width: 28px;
	height: 1px;
	background: var(--primary);
	content: "";
}

.home-features .home-features__title {
	margin: 0;
	color: var(--dark);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.home-features .home-features__text {
	margin: 10px 0 0;
	color: rgba(21, 21, 21, 0.6);
	font-size: 0.9rem;
	line-height: 1.65;
}

@media (max-width: 960px) {
.home-features .home-features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

@media (max-width: 640px) {
.home-features .home-features__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
.home-features .home-features__card {
		padding: 24px;
	}
.home-features .home-features__card:nth-child(3) {
		grid-column: auto;
	}
.page-template-template-home .content-section.home-features {
		padding-bottom: 0;
	}
.page-template-template-home .home-featured-solutions {
		padding-top: 48px;
		padding-bottom: 60px;
	}
.home-features .home-features__icon svg {
		width: 28px;
		height: 28px;
	}
.home-features .home-features__title {
		font-size: 1.05rem;
	}
.home-features .home-features__text {
		font-size: 0.875rem;
		line-height: 1.6;
	}
}

@media (prefers-reduced-motion: reduce) {
.home-features .home-features__card {
		transition: none;
	}
}

.page-template-template-home .home-company-highlight {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #121417 0%, #181b20 55%, #201c1f 100%);
	box-shadow: none;
	color: var(--white);
}

.page-template-template-home .home-company-highlight::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.85) 100%);
	pointer-events: none;
	content: "";
}

.page-template-template-home .home-company-highlight > .container {
	position: relative;
	z-index: 1;
	padding-top: clamp(72px, 8vw, 112px);
	padding-bottom: clamp(72px, 8vw, 112px);
}

.page-template-template-home .home-company-highlight__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.95fr);
	column-gap: clamp(40px, 5vw, 80px);
	align-items: center;
}

.page-template-template-home .home-company-highlight__content {
	min-width: 0;
	max-width: 520px;
}

.page-template-template-home .home-company-highlight__eyebrow {
	margin: 0 0 14px;
	color: var(--primary);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	line-height: 1.2;
	text-transform: uppercase;
}

.page-template-template-home .home-company-highlight__title {
	margin: 0;
	color: var(--white);
	max-width: 14ch;
	font-size: clamp(2.15rem, 3.5vw, 3.2rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.034em;
}

.page-template-template-home .home-company-highlight__title::after {
	display: block;
	width: 40px;
	height: 2px;
	margin-top: 20px;
	background: var(--primary);
	content: "";
}

.page-template-template-home .home-company-highlight__text {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.68);
	max-width: 38ch;
	font-size: 1rem;
	line-height: 1.72;
}

.page-template-template-home .home-company-highlight__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 36px;
	padding-top: 4px;
}

.page-template-template-home .home-company-highlight .button:not(.button--outline) {
	border-color: var(--primary);
	border-radius: 12px;
	background: var(--primary);
	color: var(--enzo-white);
	box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.24);
}

.page-template-template-home .home-company-highlight .button:not(.button--outline):hover,
.page-template-template-home .home-company-highlight .button:not(.button--outline):focus-visible {
	border-color: var(--primary);
	background: #d63d24;
	color: var(--enzo-white);
	box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.3);
}

.page-template-template-home .home-company-highlight .button--outline {
	border-color: rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	background: transparent;
	color: var(--white);
	box-shadow: none;
}

.page-template-template-home .home-company-highlight .button--outline:hover,
.page-template-template-home .home-company-highlight .button--outline:focus-visible {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.07);
	color: var(--white);
}

.page-template-template-home .home-company-highlight__aside {
	display: flex;
	align-items: center;
	min-width: 0;
}

.page-template-template-home .home-company-highlight__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.035);
}

.page-template-template-home .home-company-highlight__stat {
	padding: 24px 20px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 12px;
	background: rgba(8, 10, 12, 0.32);
	text-align: left;
}

.page-template-template-home .home-company-highlight__stat-value {
	margin: 0;
	color: var(--white);
	font-size: clamp(1.7rem, 2.3vw, 2.15rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
}

/* Footer heading underline family: hairline + 28×1 primary segment */
.page-template-template-home .home-company-highlight__stat-accent {
	position: relative;
	display: block;
	width: min(100%, 72px);
	height: 1px;
	margin: 12px 0 10px;
	background: rgba(255, 255, 255, 0.08);
}

.page-template-template-home .home-company-highlight__stat-accent::after {
	position: absolute;
	left: 0;
	top: 0;
	width: 28px;
	height: 1px;
	background: var(--primary);
	content: "";
}

.page-template-template-home .home-company-highlight__stat-label {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
	text-transform: none;
}

@media (max-width: 960px) {
.page-template-template-home .home-company-highlight > .container {
		padding-top: clamp(56px, 7vw, 80px);
		padding-bottom: clamp(56px, 7vw, 80px);
	}
.page-template-template-home .home-company-highlight__layout {
		grid-template-columns: 1fr;
		row-gap: 40px;
	}
.page-template-template-home .home-company-highlight__content {
		max-width: none;
	}
.page-template-template-home .home-company-highlight__stats {
		max-width: 520px;
	}
}

@media (max-width: 640px) {
.page-template-template-home .home-company-highlight > .container {
		padding-top: 48px;
		padding-bottom: 48px;
	}
.page-template-template-home .home-company-highlight__title {
		font-size: clamp(1.7rem, 7vw, 2.1rem);
	}
.page-template-template-home .home-company-highlight__title::after {
		margin-top: 16px;
		width: 36px;
	}
.page-template-template-home .home-company-highlight__actions .button {
		flex: 1 1 100%;
		justify-content: center;
		min-width: 0;
	}
.page-template-template-home .home-company-highlight__stats {
		gap: 10px;
		padding: 10px;
		max-width: none;
	}
.page-template-template-home .home-company-highlight__stat {
		padding: 18px 16px;
	}
.page-template-template-home .home-company-highlight__stat-value {
		font-size: clamp(1.5rem, 5.5vw, 1.8rem);
	}
.page-template-template-home .home-company-highlight__title {
		max-width: none;
	}
}

.reference-carousel {
	background: var(--light);
}
