:root {
	--mp-ink: #17262a;
	--mp-text: #24363a;
	--mp-muted: #637579;
	--mp-bg: #f6f8f4;
	--mp-soft: #edf5f1;
	--mp-surface: #ffffff;
	--mp-border: #dbe4df;
	--mp-primary: #0d7180;
	--mp-primary-dark: #0a5361;
	--mp-lav: #0f7c90;
	--mp-food: #c56236;
	--mp-psy: #6a4c93;
	--mp-psy-dark: #523a73;
	--mp-work: #2f6fb0;
	--mp-teach: #6d28d9;
	--mp-green: #2d7d58;
	--mp-gold: #dba33a;
	--mp-shadow: 0 20px 54px rgba(23, 38, 42, .13);
}

* {
	box-sizing: border-box;
}

html {
	max-width: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	max-width: 100%;
	overflow-x: hidden;
	background: var(--mp-bg);
	color: var(--mp-text);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
}

@supports (overflow: clip) {
	html,
	body {
		overflow-x: clip;
	}
}

a {
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.container {
	width: 100%;
	max-width: 1320px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 12px;
	padding-left: 12px;
}

.row {
	--mp-gutter-x: 1.5rem;
	--mp-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--mp-gutter-y));
	margin-right: calc(-.5 * var(--mp-gutter-x));
	margin-left: calc(-.5 * var(--mp-gutter-x));
}

.row > * {
	width: 100%;
	max-width: 100%;
	margin-top: var(--mp-gutter-y);
	padding-right: calc(var(--mp-gutter-x) * .5);
	padding-left: calc(var(--mp-gutter-x) * .5);
}

.g-4 {
	--mp-gutter-x: 1.5rem;
	--mp-gutter-y: 1.5rem;
}

.align-items-center {
	align-items: center;
}

.align-items-end {
	align-items: flex-end;
}

.navbar {
	display: flex;
	align-items: center;
}

.navbar > .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.navbar-brand {
	margin-right: 1rem;
	padding: 0;
	white-space: nowrap;
}

.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
}

.collapse:not(.show) {
	display: none;
}

.navbar-nav {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.nav-link {
	display: block;
	padding: .5rem 0;
}

.navbar-toggler {
	padding: .45rem .65rem;
	border: 1px solid transparent;
	border-radius: 8px;
	background: transparent;
	line-height: 1;
}

.navbar-toggler-icon {
	width: 1.5em;
	height: 1.5em;
	display: inline-block;
	background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
	background-position: center 30%, center 50%, center 70%;
	background-repeat: no-repeat;
	background-size: 1.5em 2px;
	vertical-align: middle;
}

.ms-auto {
	margin-left: auto;
}

.w-100 {
	width: 100%;
}

.skip-link {
	position: absolute;
	top: -48px;
	left: 16px;
	z-index: 1000;
	padding: 10px 14px;
	border-radius: 8px;
	background: #ffffff;
	color: var(--mp-primary-dark);
	font-weight: 800;
}

.skip-link:focus {
	top: 16px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	min-height: 42px;
	padding: .55rem 1rem;
	border: 1px solid transparent;
	border-radius: 8px;
	background: transparent;
	color: inherit;
	font-size: 1rem;
	line-height: 1.35;
	font-weight: 800;
	letter-spacing: 0;
	text-align: center;
	vertical-align: middle;
}

.btn-lg {
	min-height: 52px;
	padding: .78rem 1.25rem;
	font-size: 1.08rem;
}

.btn-primary {
	--bs-btn-bg: var(--mp-primary);
	--bs-btn-border-color: var(--mp-primary);
	--bs-btn-hover-bg: var(--mp-primary-dark);
	--bs-btn-hover-border-color: var(--mp-primary-dark);
	--bs-btn-active-bg: var(--mp-primary-dark);
	--bs-btn-active-border-color: var(--mp-primary-dark);
	background: var(--mp-primary);
	border-color: var(--mp-primary);
	color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--mp-primary-dark);
	border-color: var(--mp-primary-dark);
	color: #ffffff;
}

.btn-outline-primary {
	--bs-btn-color: var(--mp-primary-dark);
	--bs-btn-border-color: var(--mp-primary);
	--bs-btn-hover-bg: var(--mp-primary);
	--bs-btn-hover-border-color: var(--mp-primary);
	border-color: var(--mp-primary);
	color: var(--mp-primary-dark);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background: var(--mp-primary);
	border-color: var(--mp-primary);
	color: #ffffff;
}

.btn-light {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--mp-primary-dark);
}

.btn-light:hover,
.btn-light:focus {
	background: #f0f5f2;
	border-color: #f0f5f2;
	color: var(--mp-primary-dark);
}

.btn-outline-light {
	border-color: rgba(255, 255, 255, .74);
	color: #ffffff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--mp-primary-dark);
}

.suite-hero {
	position: relative;
	overflow: hidden;
	min-height: 86svh;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
		linear-gradient(135deg, #10282d 0%, #173a35 52%, #2e2a20 100%);
	background-size: 44px 44px, 44px 44px, auto;
	color: #ffffff;
	isolation: isolate;
}

.suite-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: 0;
	height: 18px;
	background: var(--mp-bg);
}

.hero-navbar {
	position: relative;
	z-index: 3;
	padding: 18px 0;
}

.brand-lockup,
.footer-brand {
	display: inline-flex;
	align-items: center;
	color: inherit;
}

.brand-lockup:hover,
.footer-brand:hover {
	color: inherit;
}

.brand-logo {
	width: 154px;
	height: 86px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 154px;
	padding: 7px 10px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 34px rgba(0, 0, 0, .16);
}

.brand-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-brand .brand-logo {
	width: 148px;
	height: 90px;
	flex-basis: 148px;
}

.hero-navbar .nav-link {
	color: rgba(255, 255, 255, .78);
	font-weight: 750;
}

.hero-navbar .nav-link:hover,
.hero-navbar .nav-link:focus {
	color: #ffffff;
}

.navbar-toggler {
	border-color: rgba(255, 255, 255, .36);
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .2);
}

.navbar-toggler-icon {
	color: #ffffff;
	filter: none;
	background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
	background-position: center 30%, center 50%, center 70%;
	background-repeat: no-repeat;
	background-size: 1.5em 2px;
}

.hero-nav-cta {
	color: var(--mp-primary-dark);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 36px 12px 78px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
	align-items: center;
	gap: clamp(32px, 5vw, 72px);
	min-height: calc(86svh - 96px);
}

.hero-copy {
	min-width: 0;
}

.hero-kicker {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 24px;
}

.hero-kicker span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 8px;
	background: rgba(255, 255, 255, .08);
	color: rgba(255, 255, 255, .9);
	font-size: .82rem;
	font-weight: 850;
	text-transform: uppercase;
}

.hero-copy h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(2.45rem, 6vw, 4.9rem);
	line-height: 1.02;
	font-weight: 950;
}

.hero-lead {
	max-width: 700px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: clamp(1.06rem, 2vw, 1.24rem);
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.hero-actions .btn,
.final-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 52px;
	padding-inline: 22px;
}

.hero-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 670px;
	margin-top: 34px;
}

.hero-proof div {
	min-width: 0;
	padding: 14px 15px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 8px;
	background: rgba(255, 255, 255, .08);
}

.hero-proof strong,
.hero-proof span {
	display: block;
}

.hero-proof strong {
	font-size: 1rem;
}

.hero-proof span {
	margin-top: 3px;
	color: rgba(255, 255, 255, .68);
	font-size: .9rem;
}

.hero-products {
	display: grid;
	gap: 16px;
	min-width: 0;
}

.hero-product-card {
	position: relative;
	overflow: hidden;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 8px;
	background: rgba(255, 255, 255, .95);
	color: var(--mp-text);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.hero-product-card::before,
.suite-product::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 6px;
	background: var(--mp-lav);
}

.hero-product-card.merifood-card,
.hero-product-card.meriwork-card {
	--card-x: 34px;
}

/* Slow continuous float + tilt; pauses when hovered. */
.hero-product-card {
	--card-x: 0px;
	transform: translate(var(--card-x), 0) rotate(0deg);
	animation: card-drift 19s ease-in-out infinite;
	will-change: transform;
}

.hero-product-card.merilav-card {
	animation-duration: 18s;
	animation-delay: 0s;
}

.hero-product-card.merifood-card {
	animation-duration: 21s;
	animation-delay: -5s;
}

.hero-product-card.meripsy-card {
	animation-duration: 20s;
	animation-delay: -10s;
}

.hero-product-card.meriwork-card {
	animation-duration: 22s;
	animation-delay: -15s;
}

.hero-product-card:hover,
.hero-product-card:focus-within {
	animation-play-state: paused;
}

@keyframes card-drift {
	0% {
		transform: translate(var(--card-x), 0) rotate(0deg);
	}
	25% {
		transform: translate(calc(var(--card-x) + 8px), -12px) rotate(1.4deg);
	}
	50% {
		transform: translate(var(--card-x), -6px) rotate(0deg);
	}
	75% {
		transform: translate(calc(var(--card-x) - 8px), -12px) rotate(-1.4deg);
	}
	100% {
		transform: translate(var(--card-x), 0) rotate(0deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-product-card {
		animation: none;
		transform: translate(var(--card-x), 0);
	}
}

.hero-product-card.merifood-card::before,
.merifood-product::before {
	background: var(--mp-food);
}

.hero-product-card.meripsy-card::before,
.meripsy-product::before {
	background: var(--mp-psy);
}

.hero-product-card.meriwork-card::before,
.meriwork-product::before {
	background: var(--mp-work);
}

.meriteach-product::before {
	background: var(--mp-teach);
}

.hero-product-card.soon-card::before,
.soon-product::before {
	background: var(--mp-gold);
}

.hero-product-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.product-thumb {
	width: 86px;
	height: 86px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 86px;
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	background: #ffffff;
}

.product-thumb img {
	width: 76px;
	height: 76px;
	object-fit: contain;
}

.status-pill,
.product-badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 10px;
	border-radius: 8px;
	background: #e9f5ed;
	color: var(--mp-green);
	font-size: .78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.status-pill.is-soon,
.product-badge.is-soon {
	background: #fbf0d8;
	color: #946a17;
}

.soon-card,
.soon-product {
	border-style: dashed;
	border-color: var(--mp-border);
	background: var(--mp-soft);
	box-shadow: none;
}

.soon-thumb,
.soon-logo {
	color: var(--mp-muted);
	background: #ffffff;
}

.soon-thumb i {
	font-size: 1.6rem;
}

.soon-logo i {
	font-size: 2.4rem;
}

.btn-soon {
	background: var(--mp-soft);
	border-color: var(--mp-border);
	color: var(--mp-muted);
	cursor: default;
	pointer-events: none;
}

.hero-product-card h2 {
	margin: 18px 0 0;
	color: var(--mp-ink);
	font-size: 1.75rem;
	font-weight: 950;
}

.hero-product-card p {
	margin: 10px 0 0;
	color: var(--mp-muted);
	line-height: 1.6;
}

.product-card-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
}

.product-link {
	color: var(--mp-primary-dark);
	font-weight: 900;
}

.product-link:hover {
	color: var(--mp-food);
}

section {
	padding: 86px 0;
}

.section-heading {
	max-width: 790px;
	margin: 0 auto 42px;
	text-align: center;
}

.section-intro {
	margin-bottom: 34px;
}

.section-heading h2,
.section-intro h2,
.suite-band h2,
.final-cta h2 {
	margin: 0;
	color: var(--mp-ink);
	font-size: clamp(2rem, 4vw, 3.15rem);
	line-height: 1.08;
	font-weight: 950;
}

.section-heading p:not(.section-kicker),
.section-intro p,
.suite-band p,
.final-cta p {
	margin-top: 16px;
	color: var(--mp-muted);
	font-size: 1.06rem;
	line-height: 1.7;
}

.section-kicker {
	margin: 0 0 12px;
	color: var(--mp-primary);
	font-size: .82rem;
	font-weight: 950;
	text-transform: uppercase;
}

.products-section {
	background: var(--mp-bg);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

/* Swipe hint shown only on mobile, where the grid becomes a carousel. */
.carousel-hint {
	display: none;
}

.suite-product {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 30px;
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	background: var(--mp-surface);
	box-shadow: var(--mp-shadow);
}

.suite-product-header {
	display: flex;
	align-items: center;
	gap: 22px;
	min-width: 0;
}

.product-logo {
	width: 138px;
	height: 138px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 138px;
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	background: #ffffff;
}

.product-logo img {
	width: 118px;
	height: 118px;
	object-fit: contain;
}

.suite-product h3 {
	margin: 10px 0 0;
	color: var(--mp-ink);
	font-size: 2rem;
	font-weight: 950;
}

.suite-product-header p {
	margin: 9px 0 0;
	color: var(--mp-muted);
	line-height: 1.6;
}

.product-features {
	display: grid;
	gap: 12px;
	margin: 26px 0;
	padding: 0;
	list-style: none;
}

.product-features li {
	display: flex;
	gap: 10px;
	color: var(--mp-text);
	line-height: 1.5;
}

.product-features i {
	color: var(--mp-green);
	font-size: 1.1rem;
}

.product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: auto;
}

.product-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
}

.benefits-section {
	background: #ffffff;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.benefit-card,
.step-card {
	height: 100%;
	padding: 26px;
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	background: var(--mp-surface);
	box-shadow: 0 12px 34px rgba(23, 38, 42, .07);
}

.benefit-card i {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 8px;
	background: var(--mp-soft);
	color: var(--mp-primary-dark);
	font-size: 1.35rem;
}

.benefit-card h3,
.step-card h3 {
	margin: 0;
	color: var(--mp-ink);
	font-size: 1.22rem;
	font-weight: 950;
}

.benefit-card p,
.step-card p {
	margin: 12px 0 0;
	color: var(--mp-muted);
	line-height: 1.65;
}

.activation-section {
	background: var(--mp-soft);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.step-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: 8px;
	background: var(--mp-gold);
	color: #17242a;
	font-weight: 950;
}

.suite-section {
	padding-top: 72px;
	background: var(--mp-bg);
}

.suite-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 34px;
	padding: 38px;
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 36px rgba(23, 38, 42, .06);
}

.suite-band > div {
	min-width: 0;
}

.suite-products {
	display: grid;
	gap: 10px;
	min-width: 210px;
}

.suite-products span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	background: var(--mp-bg);
	color: var(--mp-muted);
	font-weight: 900;
}

.suite-products span:first-child {
	background: rgba(13, 113, 128, .1);
	color: var(--mp-primary-dark);
	border-color: rgba(13, 113, 128, .28);
}

.suite-products span:nth-child(2) {
	background: rgba(197, 98, 54, .11);
	color: #8f3f20;
	border-color: rgba(197, 98, 54, .28);
}

.suite-products span:nth-child(3) {
	background: rgba(106, 76, 147, .12);
	color: var(--mp-psy-dark);
	border-color: rgba(106, 76, 147, .28);
}

.suite-products span:nth-child(4) {
	background: rgba(219, 163, 58, .14);
	color: #946a17;
	border-color: rgba(219, 163, 58, .34);
}

.final-cta-section {
	padding-top: 20px;
	background: var(--mp-bg);
}

.final-cta {
	padding: 54px;
	border-radius: 8px;
	background: #17262a;
	color: #ffffff;
	text-align: center;
}

.final-cta h2 {
	color: #ffffff;
}

.final-cta p:not(.section-kicker) {
	max-width: 690px;
	margin-inline: auto;
	color: rgba(255, 255, 255, .78);
}

.final-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}

.final-actions .btn-light {
	color: var(--mp-primary-dark);
}

.site-footer {
	padding: 34px 0;
	background: #101e22;
	color: rgba(255, 255, 255, .72);
}

.site-footer p {
	margin: 12px 0 0;
	max-width: 650px;
	line-height: 1.65;
}

.footer-credit {
	font-size: .92rem;
}

.footer-credit a {
	color: #ffffff;
	font-weight: 900;
}

.footer-credit a:hover {
	color: #f0bf54;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px 20px;
}

.footer-links a {
	color: #ffffff;
	font-weight: 900;
}

.footer-links a:hover {
	color: #f0bf54;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}

	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.navbar-expand-lg {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}

	.navbar-expand-lg > .container {
		flex-wrap: nowrap;
	}

	.navbar-expand-lg .navbar-toggler {
		display: none;
	}

	.navbar-expand-lg .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}

	.navbar-expand-lg .navbar-nav {
		flex-direction: row;
	}

	.navbar-expand-lg .nav-link {
		padding-right: .5rem;
		padding-left: .5rem;
	}

	.ms-lg-3 {
		margin-left: 1rem;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

@media (max-width: 1199.98px) {
	.hero-product-card.merifood-card,
	.hero-product-card.meriwork-card {
		--card-x: 0px;
	}
}

@media (max-width: 991.98px) {
	.suite-hero {
		min-height: auto;
	}

	.hero-navbar .navbar-collapse {
		margin-top: 14px;
		padding: 18px;
		border: 1px solid rgba(255, 255, 255, .18);
		border-radius: 8px;
		background: rgba(12, 30, 33, .96);
	}

	.hero-content {
		padding-top: 42px;
		padding-bottom: 86px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.hero-products,
	.products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.suite-product-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.benefits-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.suite-band {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767.98px) {
	.hero-navbar {
		padding: 12px 0;
	}

	.brand-logo {
		width: 134px;
		height: 78px;
		flex-basis: 134px;
	}

	.hero-content {
		padding: 32px 12px 74px;
	}

	.hero-copy h1 {
		font-size: clamp(2.1rem, 9vw, 2.85rem);
	}

	.hero-actions .btn,
	.hero-nav-cta,
	.product-actions .btn,
	.final-actions .btn {
		width: 100%;
	}

	.hero-proof {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.hero-proof div {
		padding: 11px 12px;
	}

	.hero-products,
	.products-grid,
	.benefits-grid,
	.steps-grid {
		grid-template-columns: 1fr;
	}

	section {
		padding: 64px 0;
	}

	.hero-product-card,
	.suite-product,
	.benefit-card,
	.step-card,
	.suite-band {
		padding: 22px;
	}

	.product-card-actions,
	.product-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.product-link {
		display: inline-flex;
		justify-content: center;
	}

	.final-cta {
		padding: 36px 22px;
	}

	.footer-links {
		justify-content: flex-start;
	}
}

@media (max-width: 420px) {
	.hero-copy h1 {
		font-size: 2.08rem;
	}

	.hero-lead {
		font-size: 1rem;
	}

	.section-heading h2,
	.section-intro h2,
	.suite-band h2,
	.final-cta h2 {
		font-size: 1.85rem;
	}

	.product-logo {
		width: 118px;
		height: 118px;
	}

	.product-logo img {
		width: 100px;
		height: 100px;
	}
}

/* Mobile: the 5 product cards become a horizontal swipe carousel. */
@media (max-width: 767.98px) {
	.carousel-hint {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 6px;
		margin: 0 0 12px;
		color: var(--mp-muted);
		font-size: .82rem;
		font-weight: 900;
		text-transform: uppercase;
	}

	.products-grid {
		display: flex;
		grid-template-columns: none;
		gap: 14px;
		margin-inline: -12px;
		padding: 4px 12px 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.products-grid::-webkit-scrollbar {
		display: none;
	}

	.products-grid > .suite-product {
		flex: 0 0 86%;
		scroll-snap-align: center;
	}
}
