.wm-home-about {
	position: relative;
	overflow: hidden;
	padding: clamp(3.5rem, 6vw, 5.5rem) 0;
	background:
		linear-gradient(180deg, #fff 0%, var(--wm-surface) 55%, #fff 100%);
}

.wm-home-about__backdrop {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 55% at 12% 18%, rgba(27, 94, 147, 0.07), transparent 60%),
		radial-gradient(ellipse 50% 45% at 88% 72%, rgba(27, 94, 147, 0.05), transparent 65%);
}

.wm-home-about__backdrop::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(998px, calc(100% - 4rem));
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(27, 94, 147, 0.18), transparent);
}

.wm-home-about__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
	max-width: var(--wm-content-max, 1240px);
	margin: 0 auto;
	padding: 0 var(--wm-content-padding, clamp(1.25rem, 3vw, 2rem));
}

.wm-home-about__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 1rem;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--wm-primary);
}

.wm-home-about__eyebrow::before {
	content: "";
	display: block;
	width: 42px;
	height: 2px;
	background: var(--wm-primary);
}

.wm-home-about__title {
	margin: 0 0 1.15rem;
	font-family: "Open Sans", "Segoe UI", system-ui, sans-serif;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	line-height: 1.08;
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
	color: #0f2740;
}

.wm-home-about__lead {
	margin: 0;
	max-width: 54ch;
	font-size: clamp(1rem, 1.5vw, 1.08rem);
	line-height: 1.75;
	color: #475569;
}

.wm-home-about__lead strong {
	color: var(--wm-primary);
	font-weight: 800;
}

.wm-home-about__features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.wm-home-about__feature {
	margin: 0;
}

.wm-home-about__feature-link {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	height: 100%;
	padding: 1rem 1.05rem;
	text-decoration: none;
	color: inherit;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(27, 94, 147, 0.1);
	border-radius: 14px;
	box-shadow: 0 1px 0 rgba(15, 39, 64, 0.04);
	transition:
		transform 0.28s ease,
		border-color 0.28s ease,
		box-shadow 0.28s ease,
		background-color 0.28s ease;
}

.wm-home-about__feature-link:hover {
	transform: translateY(-3px);
	border-color: rgba(27, 94, 147, 0.22);
	background: #fff;
	box-shadow: 0 16px 32px rgba(27, 94, 147, 0.1);
}

.wm-home-about__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	color: var(--wm-primary);
	background: rgba(27, 94, 147, 0.08);
	transition: background-color 0.28s ease, color 0.28s ease;
}

.wm-home-about__feature-link:hover .wm-home-about__feature-icon {
	color: #fff;
	background: var(--wm-primary);
}

.wm-home-about__feature-copy {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.wm-home-about__feature-label {
	font-size: 0.95rem;
	font-weight: 800;
	color: #0f2740;
	line-height: 1.3;
}

.wm-home-about__feature-desc {
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--wm-muted);
}

.wm-home-about__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(27, 94, 147, 0.12);
}

.wm-home-about__stat {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.wm-home-about__stat strong {
	font-family: "Open Sans", "Segoe UI", system-ui, sans-serif;
	font-size: clamp(1.5rem, 2.5vw, 1.85rem);
	font-weight: 800;
	font-style: italic;
	line-height: 1;
	color: var(--wm-primary);
}

.wm-home-about__stat span {
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wm-muted);
}

.wm-home-about__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.75rem;
	padding: 0.9rem 1.35rem;
	font-size: 0.88rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(135deg, var(--wm-primary) 0%, #154a74 100%);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(27, 94, 147, 0.22);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.watermota-site .wm-home-about__cta,
.watermota-site .wm-home-about__cta:hover,
.watermota-site .wm-home-about__cta:focus,
.watermota-site .wm-home-about__cta:focus-visible,
.watermota-site .wm-home-about__cta:active,
.watermota-site .wm-home-about__cta:visited {
	color: #fff !important;
	text-decoration: none;
}

.watermota-site .wm-home-about__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(27, 94, 147, 0.28);
}

.watermota-site .wm-home-about__cta:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.65);
	outline-offset: 3px;
	box-shadow: 0 12px 28px rgba(27, 94, 147, 0.22);
}

.wm-home-about__media {
	position: relative;
}

.wm-home-about__media-frame {
	position: relative;
	padding: 0 0 2.5rem 2.5rem;
}

.wm-home-about__media-frame::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: calc(100% - 2.5rem);
	height: calc(100% - 2.5rem);
	border: 2px solid rgba(27, 94, 147, 0.22);
	border-radius: 20px;
	transform: translate(-1.25rem, 1.25rem);
}

.wm-home-about__figure {
	position: relative;
	z-index: 1;
	margin: 0;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 28px 56px rgba(15, 39, 64, 0.16);
}

.wm-home-about__figure::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(15, 39, 64, 0.18) 100%);
	pointer-events: none;
}

.wm-home-about__figure img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 360px;
	object-fit: cover;
}

.wm-home-about__badge {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 1rem 1.15rem;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(27, 94, 147, 0.12);
	border-radius: 14px;
	box-shadow: 0 14px 30px rgba(15, 39, 64, 0.12);
	backdrop-filter: blur(8px);
}

.wm-home-about__badge-value {
	font-family: "Open Sans", "Segoe UI", system-ui, sans-serif;
	font-size: 1.65rem;
	font-weight: 800;
	font-style: italic;
	line-height: 1;
	color: var(--wm-primary);
}

.wm-home-about__badge-label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wm-muted);
}

.wm-home-products {
	position: relative;
	overflow: hidden;
	padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(4rem, 6vw, 5.5rem);
	background: linear-gradient(180deg, var(--wm-surface) 0%, #eef4fa 48%, var(--wm-surface) 100%);
}

.wm-home-products__backdrop {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 60% 50% at 85% 12%, rgba(27, 94, 147, 0.08), transparent 62%),
		radial-gradient(ellipse 45% 40% at 8% 88%, rgba(27, 94, 147, 0.06), transparent 65%);
}

.wm-home-products__inner {
	position: relative;
	z-index: 1;
	max-width: var(--wm-content-max, 1240px);
	margin: 0 auto;
	padding: 0 var(--wm-content-padding, clamp(1.25rem, 3vw, 2rem));
}

.wm-home-products__header {
	max-width: 720px;
	margin: 0 auto 2.75rem;
	text-align: center;
}

.wm-home-products__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin: 0 0 1rem;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--wm-primary);
}

.wm-home-products__eyebrow::before,
.wm-home-products__eyebrow::after {
	content: "";
	display: block;
	width: 34px;
	height: 2px;
	background: var(--wm-primary);
}

.wm-home-products__title {
	margin: 0 0 1rem;
	font-family: "Open Sans", "Segoe UI", system-ui, sans-serif;
	font-size: clamp(1.85rem, 3.4vw, 2.55rem);
	line-height: 1.08;
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
	color: #0f2740;
}

.wm-home-products__lead {
	margin: 0;
	font-size: clamp(1rem, 1.5vw, 1.06rem);
	line-height: 1.7;
	color: #475569;
}

.wm-home-products__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wm-home-products__card {
	margin: 0;
}

.wm-home-products__card:nth-child(1),
.wm-home-products__card:nth-child(2),
.wm-home-products__card:nth-child(3) {
	grid-column: span 2;
}

.wm-home-products__card:nth-child(4) {
	grid-column: 2 / span 2;
}

.wm-home-products__card:nth-child(5) {
	grid-column: 4 / span 2;
}

.wm-home-products__card-link {
	position: relative;
	display: block;
	height: 100%;
	min-height: 280px;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	border-radius: 18px;
	box-shadow: 0 16px 36px rgba(15, 39, 64, 0.12);
	transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.wm-home-products__card-link:hover,
.wm-home-products__card-link:focus,
.wm-home-products__card-link:focus-visible,
.wm-home-products__card-link:active,
.wm-home-products__card-link:visited {
	color: #fff;
	text-decoration: none;
}

.wm-home-products__card-link:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px rgba(15, 39, 64, 0.18);
}

.wm-home-products__card-link:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.75);
	outline-offset: 3px;
}

.wm-home-products__card-media {
	position: absolute;
	inset: 0;
}

.wm-home-products__card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.wm-home-products__card-link:hover .wm-home-products__card-media img {
	transform: scale(1.06);
}

.wm-home-products__card-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(15, 39, 64, 0.08) 0%, rgba(15, 39, 64, 0.42) 52%, rgba(15, 39, 64, 0.82) 100%),
		linear-gradient(135deg, rgba(27, 94, 147, 0.18) 0%, transparent 55%);
	transition: opacity 0.32s ease;
}

.wm-home-products__card-link:hover .wm-home-products__card-overlay {
	opacity: 0.92;
}

.wm-home-products__card-body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 280px;
	padding: 1.35rem 1.4rem 1.45rem;
}

.wm-home-products__card-index {
	display: inline-block;
	margin-bottom: 0.55rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.72);
}

.wm-home-products__card-title {
	display: block;
	font-family: "Open Sans", "Segoe UI", system-ui, sans-serif;
	font-size: clamp(1.05rem, 1.8vw, 1.28rem);
	font-weight: 800;
	font-style: italic;
	line-height: 1.2;
	text-transform: uppercase;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.wm-home-products__card-action {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.75rem;
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.88);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.wm-home-products__card-link:hover .wm-home-products__card-action,
.wm-home-products__card-link:focus-visible .wm-home-products__card-action {
	opacity: 1;
	transform: translateY(0);
}

.wm-home-products__footer {
	display: flex;
	justify-content: center;
	margin-top: 2.25rem;
}

.wm-home-products__catalog-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.85rem 1.4rem;
	font-size: 0.84rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	color: var(--wm-primary);
	background: #fff;
	border: 1px solid rgba(27, 94, 147, 0.18);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(27, 94, 147, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wm-home-products__catalog-link:hover,
.wm-home-products__catalog-link:focus,
.wm-home-products__catalog-link:focus-visible,
.wm-home-products__catalog-link:active,
.wm-home-products__catalog-link:visited {
	color: var(--wm-primary);
	text-decoration: none;
}

.wm-home-products__catalog-link:hover {
	transform: translateY(-2px);
	border-color: rgba(27, 94, 147, 0.3);
	box-shadow: 0 14px 30px rgba(27, 94, 147, 0.12);
}

.wm-home-products__catalog-link:focus-visible {
	outline: 2px solid rgba(27, 94, 147, 0.35);
	outline-offset: 3px;
}

.wm-section-divider {
	border: 0;
	border-top: 1px solid var(--wm-border);
	margin: 0 auto 2rem;
	max-width: var(--wm-content-max, 1240px);
}

.wm-section--premium {
	padding: 3rem 0 3.5rem;
}

.wm-section--premium .wm-section-title {
	position: relative;
	margin-bottom: 2rem;
	padding-bottom: 0.75rem;
	font-family: "Open Sans", "Segoe UI", system-ui, sans-serif;
	font-weight: 800;
	font-style: italic;
	color: var(--wm-primary);
}

.wm-section--premium .wm-section-title::after {
	content: "";
	display: block;
	width: 72px;
	height: 3px;
	margin: 0.85rem auto 0;
	background: var(--wm-border);
}

.wm-home-partners {
	position: relative;
	overflow: hidden;
	padding: clamp(3rem, 5vw, 4.5rem) 0;
	background: #fff;
}

.wm-home-partners__inner {
	max-width: var(--wm-content-max, 1240px);
	margin: 0 auto;
	padding: 0 var(--wm-content-padding, clamp(1.25rem, 3vw, 2rem));
}

.wm-home-partners__header {
	max-width: 680px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.wm-home-partners__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin: 0 0 1rem;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--wm-primary);
}

.wm-home-partners__eyebrow::before,
.wm-home-partners__eyebrow::after {
	content: "";
	display: block;
	width: 34px;
	height: 2px;
	background: var(--wm-primary);
}

.wm-home-partners__title {
	margin: 0 0 0.9rem;
	font-family: "Open Sans", "Segoe UI", system-ui, sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	line-height: 1.08;
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
	color: #0f2740;
}

.wm-home-partners__lead {
	margin: 0;
	font-size: clamp(0.98rem, 1.4vw, 1.05rem);
	line-height: 1.65;
	color: #475569;
}

.wm-partners-marquee {
	position: relative;
}

.wm-partners-marquee__viewport {
	overflow: hidden;
	padding: 0.5rem 0;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wm-partners-marquee__fade {
	position: absolute;
	top: 0;
	bottom: 0;
	width: clamp(48px, 8vw, 120px);
	z-index: 2;
	pointer-events: none;
}

.wm-partners-marquee__fade--left {
	left: 0;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.wm-partners-marquee__fade--right {
	right: 0;
	background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.wm-partners-marquee__track {
	display: flex;
	align-items: center;
	width: max-content;
	gap: 1.25rem;
	animation: wmPartnersMarquee var(--wm-partners-speed, 42s) linear infinite;
}

.wm-partners-marquee:hover .wm-partners-marquee__track {
	animation-play-state: paused;
}

.wm-partners-marquee.is-static .wm-partners-marquee__track {
	animation: none;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

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

.wm-partners-marquee__item {
	flex: 0 0 auto;
}

.wm-partners-marquee__link,
.wm-partners-marquee__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	min-height: 96px;
	padding: 1rem 1.35rem;
	background: #fff;
	border: 1px solid rgba(27, 94, 147, 0.1);
	border-radius: 16px;
	box-shadow: 0 8px 22px rgba(15, 39, 64, 0.06);
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.watermota-site .wm-partners-marquee__link,
.watermota-site .wm-partners-marquee__link:hover,
.watermota-site .wm-partners-marquee__link:focus,
.watermota-site .wm-partners-marquee__link:focus-visible,
.watermota-site .wm-partners-marquee__link:active,
.watermota-site .wm-partners-marquee__link:visited {
	color: inherit;
	text-decoration: none;
}

.wm-partners-marquee__link:hover,
.wm-partners-marquee__link:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(27, 94, 147, 0.22);
	box-shadow: 0 16px 32px rgba(27, 94, 147, 0.12);
}

.wm-partners-marquee__link img,
.wm-partners-marquee__logo img {
	display: block;
	max-width: 150px;
	max-height: 64px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(20%);
	transition: filter 0.28s ease, transform 0.28s ease;
}

.wm-partners-marquee__link:hover img,
.wm-partners-marquee__link:focus-visible img {
	filter: none;
	transform: scale(1.03);
}

@media (max-width: 1024px) {
	.wm-home-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wm-home-products__card:nth-child(1),
	.wm-home-products__card:nth-child(2),
	.wm-home-products__card:nth-child(3),
	.wm-home-products__card:nth-child(4),
	.wm-home-products__card:nth-child(5) {
		grid-column: auto;
	}

	.wm-home-about__inner {
		grid-template-columns: 1fr;
	}

	.wm-home-about__media {
		order: -1;
		max-width: 560px;
		margin: 0 auto;
		width: 100%;
	}

	.wm-home-about__header,
	.wm-home-about__lead {
		max-width: none;
	}
}

@media (max-width: 921px) {
	.wm-home-about__features {
		grid-template-columns: 1fr;
	}

	.wm-home-about__stats {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

@media (max-width: 640px) {
	.wm-home-products__grid {
		grid-template-columns: 1fr;
	}

	.wm-home-products__card-action {
		opacity: 1;
		transform: none;
	}

	.wm-partners-marquee__link,
	.wm-partners-marquee__logo {
		min-width: 150px;
		min-height: 84px;
		padding: 0.85rem 1rem;
	}
}