.crm-product,
.crm-landing {
	--crm-blue: #0966ce;
	--crm-blue-dark: #073b83;
	--crm-navy: #10233f;
	--crm-text: #334155;
	--crm-muted: #59687a;
	--crm-line: #dce5ed;
	--crm-surface: #f6f8fa;
	--crm-white: #ffffff;
	box-sizing: border-box;
	color: var(--crm-text);
	font-family: Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
.crm-product *,
.crm-landing * {
	box-sizing: border-box;
}
.crm-product img,
.crm-landing img {
	display: block;
	max-width: 100%;
}
.crm-product button,
.crm-product a,
.crm-landing button,
.crm-landing a {
	font-family: inherit;
}
.crm-product h1,
.crm-product h2,
.crm-product h3,
.crm-product h4,
.crm-landing h1,
.crm-landing h2,
.crm-landing h3,
.crm-landing h4 {
	min-height: 0;
	margin: 0;
	padding: 0;
	color: var(--crm-navy);
	font-weight: 700;
	line-height: 1.25;
	/* Keep legacy store heading rules from overriding each section's alignment. */
	text-align: inherit;
}
.crm-product h1,
.crm-product h2,
.crm-landing h1,
.crm-landing h2 {
	text-wrap: balance;
}
.crm-product p,
.crm-landing p {
	margin: 0;
	text-wrap: pretty;
}
.crm-product section[id],
.crm-landing section[id] {
	scroll-margin-top: 96px;
}
.crm-product :is(a, button, summary):focus-visible,
.crm-landing :is(a, button, summary):focus-visible {
	outline: 3px solid #075c75;
	outline-offset: 5px;
}
.crm-shell {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}
.crm-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 18px;
	color: var(--accent-dark);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
}
.crm-kicker:before {
	width: 22px;
	height: 3px;
	border-radius: 999px;
	background: var(--accent);
	content: '';
}
.crm-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 52px;
	padding: 13px 24px;
	border: 0;
	border-radius: 999px;
	background: var(--crm-blue);
	box-shadow: 0 12px 28px rgba(8, 118, 232, .2);
	color: #fff !important;
	font-size: 17px;
	font-weight: 700;
	text-decoration: none !important;
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.crm-action:hover {
	background: #065fc0;
	box-shadow: 0 15px 34px rgba(8, 118, 232, .28);
	transform: translateY(-2px);
}
.crm-action--ghost {
	border: 1px solid #b8cce0;
	background: rgba(255,255,255,.72);
	box-shadow: none;
	color: var(--crm-blue-dark) !important;
}
.crm-action--ghost:hover {
	background: #fff;
	box-shadow: none;
}
.crm-action .fa {
	font-size: 16px;
}

/* Store v3 product pages */
.crm-service-heading {
	padding: 56px 0 64px;
	background: #fff;
}
.crm-service-heading__inner {
	display: flex;
	align-items: center;
	gap: 30px;
}
.crm-service-heading__icon {
	flex: 0 0 120px;
	width: 120px;
	height: 120px;
	aspect-ratio: 1;
	object-fit: contain;
	border-radius: 16px;
	box-shadow: 0 5px 16px rgba(16, 35, 63, .08);
}
.crm-service-heading__copy {
	flex: 1;
	min-width: 0;
}
.crm-product--membership .crm-service-heading__icon {
	border-radius: 26%;
}
.crm-service-heading__title {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 18px;
}
.crm-product .crm-service-heading__title h2 {
	color: #333;
	font-size: clamp(36px, 5vw, 60px);
	line-height: 1.15;
	text-align: left;
}
.crm-service-heading__badge {
	flex: 0 0 auto;
	padding: 3px 10px;
	border: 1px solid #a300ec;
	border-radius: 4px;
	color: #a300ec;
	font-size: 16px;
	line-height: 1.5;
	white-space: nowrap;
}
.crm-product .crm-service-heading__copy p {
	margin-top: 18px;
	color: #66717d;
	font-size: 18px;
	line-height: 1.65;
}
.crm-settings-mock__head > img[src*="m_membership"] {
	border-radius: 26%;
}
.crm-service-heading + .crm-product__proof {
	margin-top: 0;
}
@media (max-width: 767px) {
	.crm-service-heading {
		padding: 36px 0;
	}
	.crm-service-heading__inner {
		align-items: flex-start;
		gap: 18px;
	}
	.crm-service-heading__icon {
		flex-basis: 72px;
		width: 72px;
		height: 72px;
		border-radius: 12px;
	}
	.crm-service-heading__title {
		gap: 8px;
	}
	.crm-product .crm-service-heading__title h2 {
		font-size: clamp(25px, 7vw, 34px);
	}
	.crm-service-heading__badge {
		padding: 2px 7px;
		font-size: 12px;
	}
	.crm-product .crm-service-heading__copy p {
		margin-top: 12px;
		font-size: 15px;
	}
}
.crm-product {
	--accent: #0aa95b;
	--accent-dark: #087843;
	--accent-soft: #e9f8ef;
	--accent-wash: #f5fbf6;
	overflow: hidden;
	background: #fff;
}
.crm-product--membership {
	--accent: #0b97a0;
	--accent-dark: #075c75;
	--accent-soft: #e6f7f7;
	--accent-wash: #f4fafb;
}
.crm-product__hero {
	position: relative;
	min-height: 720px;
	padding: 80px 0 64px;
	overflow: hidden;
	background:
		radial-gradient(circle at 86% 4%, var(--accent-soft) 0, transparent 34%),
		linear-gradient(135deg, #fff 0%, var(--accent-wash) 100%);
}
.crm-product__hero:after {
	position: absolute;
	right: -180px;
	bottom: -310px;
	width: 650px;
	height: 650px;
	border: 120px solid rgba(255,255,255,.7);
	border-radius: 50%;
	content: '';
}
.crm-product__hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, .96fr) minmax(500px, 1.04fr);
	align-items: center;
	gap: 52px;
}
.crm-product__hero-copy h1 {
	max-width: 570px;
	font-size: clamp(44px, 4.6vw, 66px);
	letter-spacing: -.045em;
}
.crm-product__hero-copy h1 em {
	display: block;
	color: var(--accent-dark);
	font-style: normal;
}
.crm-product__hero-copy > p {
	max-width: 570px;
	margin-top: 24px;
	color: #596579;
	font-size: 20px;
	line-height: 1.7;
}
.crm-product__hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}
.crm-product__hero-actions .crm-action {
	white-space: nowrap;
}
.crm-product__hero-note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	color: #617083;
	font-size: 14px;
}
.crm-product__hero-note .fa {
	color: var(--accent);
}
.crm-visual {
	position: relative;
	min-height: 520px;
}
.crm-dashboard-mock {
	position: absolute;
	top: 28px;
	right: 0;
	width: 91%;
	min-height: 410px;
	overflow: hidden;
	border: 1px solid rgba(118,139,158,.24);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 28px 70px rgba(34,67,95,.18);
}
.crm-dashboard-mock__bar {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 42px;
	padding: 0 18px;
	border-bottom: 1px solid #edf1f4;
	background: #fbfcfd;
}
.crm-dashboard-mock__bar i {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d9e0e6;
}
.crm-dashboard-mock__body {
	display: grid;
	grid-template-columns: 116px 1fr;
	min-height: 368px;
}
.crm-dashboard-mock__side {
	padding: 20px 12px;
	background: #12385f;
}
.crm-dashboard-mock__logo {
	margin: 0 8px 20px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
}
.crm-dashboard-mock__nav {
	display: grid;
	gap: 9px;
}
.crm-dashboard-mock__nav span {
	height: 26px;
	border-radius: 7px;
	background: rgba(255,255,255,.08);
}
.crm-dashboard-mock__nav span:nth-child(3) {
	background: var(--accent);
}
.crm-dashboard-mock__content {
	padding: 24px;
}
.crm-dashboard-mock__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.crm-dashboard-mock__title strong {
	color: var(--crm-navy);
	font-size: 17px;
}
.crm-dashboard-mock__title span {
	width: 98px;
	height: 26px;
	border-radius: 8px;
	background: var(--accent-soft);
}
.crm-stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.crm-stat-row > div {
	min-height: 78px;
	padding: 12px;
	border: 1px solid #e7edf2;
	border-radius: 14px;
	background: #fff;
}
.crm-stat-row small {
	display: block;
	color: #8a96a5;
	font-size: 9px;
}
.crm-stat-row strong {
	display: block;
	margin-top: 9px;
	color: var(--crm-navy);
	font-size: 17px;
}
.crm-chart {
	position: relative;
	height: 137px;
	margin-top: 15px;
	overflow: hidden;
	border: 1px solid #e7edf2;
	border-radius: 16px;
	background: repeating-linear-gradient(to bottom, #fff, #fff 33px, #edf2f5 34px);
}
.crm-chart svg {
	position: absolute;
	left: 10px;
	bottom: 8px;
	width: calc(100% - 20px);
	height: 100px;
}
.crm-phone-mock {
	position: absolute;
	right: -10px;
	bottom: 0;
	width: 208px;
	min-height: 410px;
	padding: 11px;
	border: 6px solid #13202d;
	border-radius: 34px;
	background: #fff;
	box-shadow: 0 24px 50px rgba(24,44,63,.24);
}
.crm-phone-mock:before {
	display: block;
	width: 72px;
	height: 17px;
	margin: -5px auto 12px;
	border-radius: 0 0 12px 12px;
	background: #13202d;
	content: '';
}
.crm-phone-mock__brand {
	color: var(--accent-dark);
	font-size: 13px;
	font-weight: 800;
}
.crm-phone-mock__card {
	margin-top: 14px;
	padding: 17px;
	border-radius: 18px;
	background: linear-gradient(145deg, var(--accent-dark), var(--accent));
	color: #fff;
}
.crm-phone-mock__card small,
.crm-phone-mock__card strong {
	display: block;
}
.crm-phone-mock__card strong {
	margin-top: 10px;
	font-size: 25px;
}
.crm-phone-mock__list {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}
.crm-phone-mock__list span {
	height: 42px;
	border: 1px solid #e5ebef;
	border-radius: 12px;
	background: #fafcfd;
}
.crm-coin {
	position: absolute;
	z-index: 3;
	left: 0;
	bottom: 50px;
	display: grid;
	place-items: center;
	width: 112px;
	height: 112px;
	border: 9px solid #ffd775;
	border-radius: 50%;
	background: linear-gradient(145deg, #fff4b4, #eeb42d);
	box-shadow: 0 17px 30px rgba(175,126,5,.25), inset 0 0 0 6px rgba(255,255,255,.35);
	color: #b77800;
	font-size: 52px;
	font-weight: 800;
	transform: rotate(-10deg);
}
.crm-member-pass {
	position: absolute;
	z-index: 3;
	left: 0;
	bottom: 24px;
	width: 350px;
	aspect-ratio: 1.586 / 1;
	display: flex;
	flex-direction: column;
	padding: 28px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 22px;
	background:
		radial-gradient(circle at 110% -10%, rgba(65,226,212,.65), transparent 42%),
		linear-gradient(145deg, #092b52, #061c35);
	box-shadow: 0 24px 50px rgba(4,31,59,.32);
	color: #fff;
	transform: rotate(-4deg);
}
.crm-member-pass:after {
	position: absolute;
	right: -52px;
	bottom: -70px;
	width: 230px;
	height: 230px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 50%;
	box-shadow: 0 0 0 34px rgba(255,255,255,.035), 0 0 0 72px rgba(255,255,255,.025);
	content: '';
}
.crm-member-pass small,
.crm-member-pass strong,
.crm-member-pass span {
	position: relative;
	z-index: 2;
	display: block;
}
.crm-member-pass small {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .2em;
}
.crm-member-pass strong {
	margin-top: 18px;
	font-size: 31px;
}
.crm-member-pass span {
	margin-top: auto;
	font-size: 13px;
}
.crm-product__proof {
	position: relative;
	z-index: 3;
	margin-top: -32px;
}
.crm-proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
	border: 1px solid #e2e9ef;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(29,59,84,.1);
}
.crm-proof-item {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 116px;
	padding: 24px 28px;
}
.crm-proof-item + .crm-proof-item {
	border-left: 1px solid #e8edf1;
}
.crm-proof-icon {
	display: grid;
	flex: 0 0 50px;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background: var(--accent-soft);
	color: var(--accent-dark);
	font-size: 22px;
}
.crm-proof-item > div > strong,
.crm-proof-item > div > span {
	display: block;
}
.crm-proof-item > div > strong {
	color: var(--crm-navy);
	font-size: 17px;
}
.crm-proof-item > div > span {
	margin-top: 4px;
	color: var(--crm-muted);
	font-size: 14px;
}
.crm-product__section,
.crm-landing__section {
	padding: 110px 0;
}
.crm-product__section--tint,
.crm-landing__section--tint {
	background: var(--accent-wash);
}
.crm-section-head {
	max-width: 860px;
	margin: 0 auto 54px;
	text-align: center;
}
.crm-section-head h2 {
	font-size: clamp(34px, 4vw, 50px);
	letter-spacing: -.035em;
}
.crm-section-head p {
	margin-top: 16px;
	color: var(--crm-muted);
	font-size: 18px;
}
.crm-journey {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.crm-journey__step {
	position: relative;
	min-height: 244px;
	padding: 28px;
	border: 1px solid #e1e9ef;
	border-radius: 24px;
	background: #fff;
}
.crm-journey__step:not(:last-child):after {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: -29px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid #e2e9ef;
	border-radius: 50%;
	background: #fff;
	color: var(--accent-dark);
	font-family: 'lnw-icon';
	content: '\e902';
	transform: translateY(-50%);
}
.crm-journey__number {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: var(--accent-soft);
	color: var(--accent-dark);
	font-size: 18px;
	font-weight: 800;
}
.crm-journey__step h3 {
	margin-top: 26px;
	font-size: 22px;
}
.crm-journey__step p {
	margin-top: 10px;
	color: var(--crm-muted);
	font-size: 15px;
}
.crm-feature-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
}
.crm-feature-card {
	grid-column: span 4;
	min-height: 270px;
	padding: 30px;
	border: 1px solid #e1e8ee;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 8px 26px rgba(31,61,86,.05);
}
.crm-feature-card--wide {
	grid-column: span 6;
}
.crm-feature-card__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 17px;
	background: var(--accent-soft);
	color: var(--accent-dark);
	font-size: 23px;
}
.crm-feature-card h3 {
	margin-top: 24px;
	font-size: 22px;
}
.crm-feature-card p {
	margin-top: 10px;
	color: var(--crm-muted);
	font-size: 15px;
}
.crm-feature-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 20px;
}
.crm-feature-card__meta span {
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-dark);
	font-size: 12px;
	font-weight: 700;
}
.crm-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 72px;
}
.crm-split--reverse .crm-split__visual {
	order: 2;
}
.crm-split__copy h2 {
	font-size: clamp(34px, 4vw, 50px);
	letter-spacing: -.035em;
}
.crm-split__copy > p {
	margin-top: 18px;
	color: var(--crm-muted);
	font-size: 18px;
}
.crm-check-list {
	display: grid;
	gap: 16px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}
.crm-check-list li {
	position: relative;
	padding-left: 34px;
	color: #4d5e72;
}
.crm-check-list li:before {
	position: absolute;
	left: 0;
	top: 2px;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent-dark);
	font-size: 12px;
	font-weight: 800;
	content: '✓';
}
.crm-settings-mock,
.crm-lnwme-mock,
.crm-customer-mock {
	position: relative;
	min-height: 460px;
	padding: 30px;
	border: 1px solid #dfe7ed;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 22px 55px rgba(31,61,86,.12);
}
.crm-settings-mock__head,
.crm-customer-mock__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}
.crm-settings-mock__head strong,
.crm-customer-mock__head strong {
	color: var(--crm-navy);
	font-size: 18px;
}
.crm-toggle {
	position: relative;
	width: 46px;
	height: 26px;
	border-radius: 999px;
	background: var(--accent);
}
.crm-toggle:after {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,.15);
	content: '';
}
.crm-setting-row {
	display: grid;
	grid-template-columns: 52px minmax(0,1fr) auto;
	align-items: center;
	gap: 15px;
	padding: 16px 0;
	border-top: 1px solid #edf1f4;
}
.crm-setting-row__icon {
	display: grid;
	place-items: center;
	width: 45px;
	height: 45px;
	border-radius: 14px;
	background: var(--accent-soft);
	color: var(--accent-dark);
	font-size: 20px;
	line-height: 1;
}
.crm-setting-row > div > strong,
.crm-setting-row > div > span {
	display: block;
}
.crm-setting-row > div > strong {
	color: var(--crm-navy);
	font-size: 15px;
}
.crm-setting-row > div > span {
	color: var(--crm-muted);
	font-size: 12px;
}
.crm-setting-value {
	min-width: 78px;
	padding: 9px 12px;
	border: 1px solid #dbe4ea;
	border-radius: 10px;
	color: var(--crm-navy) !important;
	font-size: 14px !important;
	font-weight: 700;
	text-align: center;
}
.crm-cta {
	position: relative;
	padding: 76px 0;
	overflow: hidden;
	background: linear-gradient(125deg, #06489a, #0876e8 70%, #079bb2);
	color: #fff;
}
.crm-cta:before,
.crm-cta:after {
	position: absolute;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 50%;
	content: '';
}
.crm-cta:before {
	right: -150px;
	top: -270px;
	width: 580px;
	height: 580px;
	box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.025);
}
.crm-cta:after {
	left: -100px;
	bottom: -210px;
	width: 340px;
	height: 340px;
}
.crm-cta__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}
.crm-cta h2 {
	max-width: 720px;
	color: #fff;
	font-size: clamp(32px, 4vw, 48px);
}
.crm-cta p {
	max-width: 680px;
	margin-top: 14px;
	color: rgba(255,255,255,.78);
	font-size: 17px;
}
.crm-cta .crm-action {
	flex: 0 0 auto;
	background: #fff;
	box-shadow: none;
	color: #0758b4 !important;
}
.crm-product__image-break {
	width: 100%;
	margin: 0;
	overflow: hidden;
	background: var(--accent-wash);
}
.crm-product__image-break img {
	width: 100%;
	height: auto;
	aspect-ratio: 1895 / 830;
	object-fit: cover;
}

/* CRM public landing */
.crm-landing {
	--accent: #0876e8;
	--accent-dark: #0757ad;
	--accent-soft: #eaf4ff;
	--accent-wash: #f6f9fc;
	overflow: hidden;
	background: #fff;
}
.crm-landing__hero {
	position: relative;
	padding: 96px 0 104px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% -35%, #dceeff 0, transparent 44%),
		linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}
.crm-landing__hero-copy {
	max-width: 930px;
	margin: 0 auto;
	text-align: center;
}
.crm-landing__hero-copy h1 {
	font-size: clamp(46px, 6.2vw, 78px);
	letter-spacing: -.055em;
}
.crm-landing__hero-copy h1 em {
	color: var(--crm-blue);
	font-style: normal;
}
.crm-landing__hero-copy p {
	max-width: 720px;
	margin: 24px auto 0;
	color: #657286;
	font-size: 20px;
}
.crm-landing__hero-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 30px;
}
.crm-workspace {
	position: relative;
	width: min(1110px, calc(100% - 48px));
	min-height: 560px;
	margin: 68px auto 0;
}
.crm-hero-film {
	width: min(1180px, calc(100% - 48px));
	margin: 54px auto 0;
}
.crm-hero-film__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid #dfebf4;
	border-radius: 32px;
	background: #f1f8fc;
	box-shadow: 0 24px 64px rgba(28, 64, 96, .1);
}
.crm-hero-film__poster,
.crm-hero-film__video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.crm-hero-film__video {
	opacity: 0;
	transition: opacity .3s ease;
}
.crm-hero-film--loaded .crm-hero-film__video {
	opacity: 1;
}
.crm-hero-film__control {
	position: absolute;
	right: 18px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 15px;
	border: 1px solid #cfdeeb;
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	color: #234b70;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}
.crm-hero-film__control[hidden] {
	display: none;
}
.crm-hero-film__control:hover {
	background: #eaf4ff;
}
.crm-hero-film__control:focus-visible {
	outline: 3px solid #0876e8;
	outline-offset: 3px;
}
.crm-hero-film__control-icon {
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 9px solid currentColor;
}
.crm-hero-film--playing .crm-hero-film__control-icon {
	width: 10px;
	height: 12px;
	border: 0;
	border-right: 3px solid currentColor;
	border-left: 3px solid currentColor;
}
.crm-hero-film figcaption {
	margin-top: 18px;
	color: #76879b;
	font-size: 13px;
	text-align: center;
}
@media (max-width: 767px) {
	.crm-hero-film {
		width: calc(100% - 24px);
		margin-top: 36px;
	}
	.crm-hero-film__frame {
		border-radius: 20px;
	}
	.crm-hero-film__control {
		right: 8px;
		bottom: 8px;
		padding: 6px 11px;
		font-size: 11px;
	}
	.crm-hero-film figcaption {
		padding: 0 12px;
		font-size: 12px;
	}
}
.crm-workspace__main {
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 150px);
	min-height: 500px;
	overflow: hidden;
	border: 1px solid #dbe4ec;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 28px 70px rgba(28,64,96,.17);
}
.crm-workspace__bar {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 46px;
	padding: 0 18px;
	border-bottom: 1px solid #edf1f4;
	background: #fbfcfd;
}
.crm-workspace__bar i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d7dfe6;
}
.crm-workspace__body {
	display: grid;
	grid-template-columns: 150px minmax(0,1fr) 250px;
	min-height: 454px;
}
.crm-workspace__side {
	padding: 24px 15px;
	background: #102d50;
}
.crm-workspace__side strong {
	display: block;
	margin: 0 9px 23px;
	color: #fff;
	font-size: 14px;
}
.crm-workspace__side span {
	display: block;
	height: 32px;
	margin-top: 8px;
	border-radius: 8px;
	background: rgba(255,255,255,.08);
}
.crm-workspace__side span:nth-of-type(2) {
	background: var(--crm-blue);
}
.crm-workspace__list {
	padding: 24px;
}
.crm-search-bar {
	display: flex;
	align-items: center;
	height: 42px;
	padding: 0 14px;
	border: 1px solid #dce4ea;
	border-radius: 12px;
	color: #94a0ad;
	font-size: 12px;
}
.crm-customer-row {
	display: grid;
	grid-template-columns: 35px minmax(90px,1fr) 1fr 70px;
	align-items: center;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid #edf1f4;
}
.crm-customer-row__avatar {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent-dark);
	font-size: 12px;
	font-weight: 800;
}
.crm-customer-row strong,
.crm-customer-row span {
	display: block;
	overflow: hidden;
	font-size: 11px;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.crm-customer-row strong {
	color: var(--crm-navy);
}
.crm-customer-row span {
	color: #8995a3;
}
.crm-customer-row em {
	justify-self: end;
	padding: 5px 9px;
	border-radius: 999px;
	background: #fff1ca;
	color: #9a6a00;
	font-size: 10px;
	font-style: normal;
	font-weight: 700;
}
.crm-workspace__profile {
	padding: 24px;
	border-left: 1px solid #e8edf1;
	background: #fbfcfd;
}
.crm-profile-head {
	display: flex;
	align-items: center;
	gap: 11px;
}
.crm-profile-head .crm-customer-row__avatar {
	width: 44px;
	height: 44px;
}
.crm-profile-head strong,
.crm-profile-head span {
	display: block;
}
.crm-profile-head strong {
	color: var(--crm-navy);
	font-size: 12px;
}
.crm-profile-head span {
	color: var(--crm-muted);
	font-size: 10px;
}
.crm-profile-card {
	margin-top: 19px;
	padding: 17px;
	border: 1px solid #e1e8ed;
	border-radius: 14px;
	background: #fff;
}
.crm-profile-card small,
.crm-profile-card strong,
.crm-profile-card span {
	display: block;
}
.crm-profile-card small {
	color: #83909e;
	font-size: 10px;
}
.crm-profile-card strong {
	margin-top: 6px;
	color: var(--crm-blue);
	font-size: 23px;
}
.crm-profile-card span {
	margin-top: 12px;
	padding-top: 10px;
	border-top: 1px solid #edf1f4;
	color: var(--crm-navy);
	font-size: 11px;
	font-weight: 700;
}
.crm-workspace .crm-phone-mock {
	right: 0;
	bottom: 0;
}
.crm-cycle {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.crm-cycle__item {
	position: relative;
	padding: 32px 24px;
	border: 1px solid #e0e7ed;
	border-radius: 24px;
	background: #fff;
	text-align: center;
}
.crm-cycle__item:not(:last-child):after {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: -27px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--crm-blue);
	color: #fff;
	content: '→';
	transform: translateY(-50%);
}
.crm-cycle__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin: 0 auto;
	border-radius: 20px;
	background: var(--accent-soft);
	color: var(--crm-blue);
	font-size: 26px;
}
.crm-cycle__item:nth-child(3) .crm-cycle__icon {
	background: #fff4d8;
	color: #c88700;
}
.crm-cycle__item h3 {
	margin-top: 20px;
	font-size: 22px;
}
.crm-cycle__item p {
	margin-top: 8px;
	color: var(--crm-muted);
	font-size: 14px;
}
.crm-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.crm-service-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 285px;
	padding: 26px;
	border: 1px solid #e1e8ee;
	border-radius: 24px;
	background: #fff;
}
.crm-service-card__head {
	display: flex;
	align-items: center;
	gap: 13px;
}
.crm-service-card__icon {
	display: grid;
	flex: 0 0 48px;
	place-items: center;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border-radius: 15px;
	background: var(--accent-soft);
	color: var(--crm-blue);
	font-size: 21px;
}
.crm-service-card__icon img {
	width: 48px;
	height: 48px;
	object-fit: cover;
}
.crm-service-card h3 {
	font-size: 19px;
}
.crm-service-card p {
	margin-top: 16px;
	color: var(--crm-muted);
	font-size: 16px;
}
.crm-service-card__preview {
	width: 100%;
	min-height: 78px;
	margin-top: 20px;
	padding: 14px;
	border-radius: 14px;
	background: var(--accent-soft);
}
.crm-mini-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.crm-mini-chips span {
	padding: 5px 8px;
	border-radius: 999px;
	background: #fff;
	color: var(--accent-dark);
	font-size: 10px;
	font-weight: 700;
}
.crm-service-card__preview strong,
.crm-service-card__preview span {
	display: block;
}
.crm-service-card__preview > strong {
	color: var(--crm-blue);
	font-size: 22px;
}
.crm-service-card__preview > span {
	color: var(--crm-muted);
	font-size: 13px;
}
.crm-activation-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}
.crm-activation-card {
	display: flex;
	min-height: 306px;
	padding: 30px;
	border: 1px solid #dce5ed;
	border-radius: 26px;
	background: linear-gradient(145deg, #fff 0%, #f8fbfd 100%);
	box-shadow: 0 16px 40px rgba(31, 61, 86, .07);
	flex-direction: column;
}
.crm-activation-card__head {
	display: flex;
	align-items: center;
	gap: 15px;
}
.crm-activation-card__head > div {
	min-width: 0;
}
.crm-activation-card__icon {
	display: grid;
	flex: 0 0 54px;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 17px;
	background: #e6f3ff;
	color: var(--crm-blue);
	font-size: 23px;
}
.crm-activation-card:nth-child(2) .crm-activation-card__icon {
	background: #e9f8ef;
	color: #07824a;
}
.crm-activation-card:nth-child(3) .crm-activation-card__icon {
	background: #e6f7f7;
	color: #087f8a;
}
.crm-activation-card:nth-child(4) .crm-activation-card__icon {
	background: #f2eefe;
	color: #6b46c1;
}
.crm-activation-card:nth-child(5) .crm-activation-card__icon {
	background: #edf2f7;
	color: #526276;
}
.crm-activation-card:last-child {
	grid-column: 1 / -1;
	min-height: 260px;
}
.crm-activation-card__badge {
	display: block;
	margin-bottom: 3px;
	color: var(--crm-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.crm-activation-card h3 {
	font-size: 21px;
}
.crm-activation-card > p {
	margin-top: 18px;
	color: var(--crm-muted);
	font-size: 16px;
}
.crm-activation-preview {
	display: flex;
	min-height: 76px;
	margin-top: 24px;
	padding: 15px;
	border: 1px solid #e3eaf0;
	border-radius: 16px;
	background: #fff;
}
.crm-activation-preview--tags {
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
}
.crm-activation-preview--tags span {
	padding: 6px 10px;
	border-radius: 999px;
	background: #eef4f8;
	color: #526276;
	font-size: 11px;
	font-weight: 700;
}
.crm-activation-preview--tags strong {
	margin-left: auto;
	color: #07824a;
	font-size: 12px;
}
.crm-activation-preview--rule,
.crm-activation-preview--message,
.crm-activation-preview--partner {
	align-items: center;
	gap: 10px;
}
.crm-activation-preview--rule > span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: #e9f8ef;
	color: #07824a;
	font-size: 17px;
}
.crm-activation-preview--rule strong {
	color: #425168;
	font-size: 12px;
}
.crm-activation-preview--rule i {
	margin-left: auto;
	color: #9ba8b6;
	font-size: 13px;
}
.crm-activation-preview--rule em {
	color: #07824a;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
}
.crm-activation-preview--message > span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: #fff4d8;
	color: #b87800;
	font-size: 18px;
}
.crm-activation-card:nth-child(3) .crm-activation-preview--message > span {
	background: #e6f7f7;
	color: #087f8a;
}
.crm-activation-preview--message strong,
.crm-activation-preview--message small {
	display: block;
}
.crm-activation-preview--message strong {
	color: #425168;
	font-size: 12px;
}
.crm-activation-preview--message small {
	color: #8793a2;
	font-size: 10px;
}
.crm-activation-preview--partner {
	justify-content: center;
}
.crm-activation-preview--partner span {
	color: #59687a;
	font-size: 11px;
	font-weight: 700;
}
.crm-activation-preview--partner i {
	width: 22px;
	height: 1px;
	background: #cbd5df;
}
.crm-experience {
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	border: 1px solid #dce5ec;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 20px 50px rgba(31,61,86,.09);
}
.crm-experience__side {
	padding: 46px;
}
.crm-experience__side + .crm-experience__side {
	border-left: 1px solid #dce5ec;
	background: #f2fbfa;
}
.crm-experience__side h3 {
	font-size: 30px;
}
.crm-experience__side > p {
	margin-top: 12px;
	color: var(--crm-muted);
}
.crm-availability {
	display: grid;
	grid-template-columns: 1.15fr repeat(3, 1fr);
	margin-top: 34px;
	overflow: hidden;
	border: 1px solid #dce4ea;
	border-radius: 20px;
	background: #fff;
}
.crm-availability > div {
	min-height: 70px;
	padding: 18px;
	border-right: 1px solid #e5ebef;
	border-bottom: 1px solid #e5ebef;
	font-size: 13px;
}
.crm-availability > div:nth-child(4n) {
	border-right: 0;
}
.crm-availability > div:nth-last-child(-n+4) {
	border-bottom: 0;
}
.crm-availability__head {
	background: #f6f8fa;
	color: var(--crm-navy);
	font-weight: 700;
	text-align: center;
}
.crm-availability__label {
	color: var(--crm-navy);
	font-weight: 700;
}
.crm-availability__value {
	color: var(--crm-muted);
	text-align: center;
}
.crm-availability__value .fa {
	display: block;
	margin-bottom: 5px;
	color: #11a663;
}

@media (max-width: 1024px) {
	.crm-shell {
		width: min(940px, calc(100% - 40px));
	}
	.crm-product__hero-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}
	.crm-product__hero .crm-visual {
		width: min(620px, 100%);
		margin-inline: auto;
	}
	.crm-product__hero-copy h1 {
		font-size: 50px;
	}
	.crm-dashboard-mock {
		width: 100%;
	}
	.crm-dashboard-mock__body {
		grid-template-columns: 90px 1fr;
	}
	.crm-phone-mock {
		right: -22px;
	}
	.crm-journey,
	.crm-cycle {
		grid-template-columns: repeat(2, 1fr);
	}
	.crm-journey__step:not(:last-child):after,
	.crm-cycle__item:not(:last-child):after {
		display: none;
	}
	.crm-feature-card {
		grid-column: span 6;
	}
	.crm-split {
		gap: 42px;
	}
	.crm-service-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.crm-activation-grid {
		grid-template-columns: 1fr;
	}
	.crm-workspace__main {
		width: calc(100% - 100px);
	}
	.crm-workspace__body {
		grid-template-columns: 120px minmax(0,1fr) 210px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.crm-product__hero-copy {
		max-width: 680px;
		margin-inline: auto;
		text-align: center;
	}
	.crm-product__hero-copy h1,
	.crm-product__hero-copy > p {
		max-width: none;
	}
	.crm-product__hero-actions,
	.crm-product__hero-note {
		justify-content: center;
	}
	.crm-split {
		grid-template-columns: minmax(0, 1fr);
	}
	.crm-split__copy,
	.crm-split__visual {
		width: 100%;
		max-width: 680px;
		margin-inline: auto;
	}
	.crm-split__copy {
		order: 0;
	}
	.crm-split .crm-split__visual {
		order: 1;
	}
}

@media (max-width: 767px) {
	.crm-product,
	.crm-landing {
		font-size: 15px;
	}
	.crm-shell {
		width: calc(100% - 32px);
	}
	.crm-product__hero {
		min-height: 0;
		padding: 56px 0 48px;
	}
	.crm-product__hero-grid {
		grid-template-columns: 1fr;
	}
	.crm-product__hero-copy h1 {
		font-size: 42px;
	}
	.crm-product__hero-copy > p,
	.crm-landing__hero-copy p {
		font-size: 17px;
	}
	.crm-product__hero-actions,
	.crm-landing__hero-actions {
		align-items: stretch;
		flex-direction: column;
	}
	.crm-action {
		width: 100%;
	}
	.crm-visual {
		min-height: 450px;
		margin-top: 12px;
	}
	.crm-dashboard-mock {
		left: 0;
		right: auto;
		width: 94%;
		min-height: 340px;
	}
	.crm-dashboard-mock__body {
		grid-template-columns: 70px 1fr;
		min-height: 298px;
	}
	.crm-dashboard-mock__side {
		padding: 14px 8px;
	}
	.crm-dashboard-mock__content {
		padding: 14px;
	}
	.crm-stat-row > div:nth-child(3) {
		display: none;
	}
	.crm-stat-row {
		grid-template-columns: repeat(2,1fr);
	}
	.crm-chart {
		height: 105px;
	}
	.crm-phone-mock {
		right: 0;
		bottom: 0;
		width: 158px;
		min-height: 325px;
		border-width: 5px;
		border-radius: 27px;
	}
	.crm-phone-mock__card {
		padding: 12px;
	}
	.crm-phone-mock__card strong {
		font-size: 20px;
	}
	.crm-phone-mock__list span {
		height: 31px;
	}
	.crm-coin {
		left: 3px;
		bottom: 26px;
		width: 82px;
		height: 82px;
		font-size: 38px;
	}
	.crm-member-pass {
		left: 0;
		bottom: 30px;
		width: min(300px, 78%);
		padding: 22px;
	}
	.crm-member-pass strong {
		font-size: 26px;
	}
	.crm-proof-grid,
	.crm-journey,
	.crm-cycle,
	.crm-feature-grid,
	.crm-split,
	.crm-service-grid,
	.crm-experience {
		grid-template-columns: 1fr;
	}
	.crm-product__proof {
		margin-top: 0;
	}
	.crm-proof-item + .crm-proof-item {
		border-top: 1px solid #e8edf1;
		border-left: 0;
	}
	.crm-product__section,
	.crm-landing__section {
		padding: 72px 0;
	}
	.crm-section-head {
		margin-bottom: 36px;
	}
	.crm-section-head h2,
	.crm-split__copy h2 {
		font-size: 34px;
	}
	.crm-journey {
		gap: 14px;
	}
	.crm-journey__step {
		min-height: 0;
	}
	.crm-feature-card,
	.crm-feature-card--wide {
		grid-column: 1 / -1;
		min-height: 0;
	}
	.crm-split--reverse .crm-split__visual {
		order: 1;
	}
	.crm-split__copy {
		order: 0;
	}
	.crm-split__visual {
		order: 1;
		min-width: 0;
	}
	.crm-settings-mock,
	.crm-lnwme-mock,
	.crm-customer-mock {
		min-height: 0;
		padding: 20px;
	}
	.crm-setting-row {
		grid-template-columns: 44px minmax(0,1fr);
	}
	.crm-setting-value {
		grid-column: 2;
		justify-self: start;
	}
	.crm-cta {
		padding: 58px 0;
	}
	.crm-cta__inner {
		align-items: stretch;
		flex-direction: column;
		text-align: center;
	}
	.crm-product__image-break img {
		height: 320px;
		aspect-ratio: auto;
		object-position: center;
	}
	.crm-landing__hero {
		padding: 62px 0 72px;
	}
	.crm-landing__hero-copy h1 {
		font-size: clamp(34px, 10.25vw, 44px);
	}
	.crm-workspace {
		width: calc(100% - 24px);
		min-height: 500px;
		margin-top: 44px;
	}
	.crm-workspace__main {
		width: 100%;
		min-height: 400px;
	}
	.crm-workspace__body {
		grid-template-columns: 70px 1fr;
		min-height: 354px;
	}
	.crm-workspace__profile {
		display: none;
	}
	.crm-workspace__side {
		padding: 16px 8px;
	}
	.crm-workspace__side strong {
		font-size: 10px;
	}
	.crm-workspace__list {
		padding: 16px 12px;
	}
	.crm-customer-row {
		grid-template-columns: 30px minmax(60px,1fr) 60px;
		gap: 8px;
	}
	.crm-customer-row > span:nth-of-type(3) {
		display: none;
	}
	.crm-workspace .crm-phone-mock {
		right: -4px;
		bottom: -8px;
	}
	.crm-service-grid {
		gap: 14px;
	}
	.crm-service-card {
		min-height: 0;
	}
	.crm-activation-grid {
		gap: 14px;
	}
	.crm-activation-card {
		min-height: 0;
		padding: 24px;
	}
	.crm-activation-card:last-child {
		grid-column: auto;
		min-height: 0;
	}
	.crm-activation-preview {
		margin-top: 22px;
	}
	.crm-experience__side {
		padding: 30px 24px;
	}
	.crm-experience__side + .crm-experience__side {
		border-top: 1px solid #dce5ec;
		border-left: 0;
	}
	.crm-availability {
		grid-template-columns: 1.2fr repeat(3, .8fr);
		overflow-x: auto;
	}
	.crm-availability > div {
		min-width: 105px;
		padding: 13px 9px;
		font-size: 11px;
	}
}

/* Quick reading paths and pre-sales questions, shared by all three pages. */
.crm-section-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 32px 0 0;
}
.crm-section-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 9px 18px;
	border: 1px solid var(--crm-line);
	border-radius: 999px;
	background: #fff;
	color: var(--accent-dark);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}
.crm-section-nav a:hover {
	border-color: var(--accent-dark);
	background: var(--accent-soft);
}
.crm-section-nav + .crm-product__proof {
	margin-top: 0;
}
.crm-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	margin-top: 18px;
	color: var(--accent-dark);
	font-size: 15px;
	font-weight: 700;
	text-underline-offset: 4px;
}
.crm-text-link:hover {
	text-decoration: underline;
}
.crm-text-link .fa {
	flex: 0 0 auto;
}
.crm-start-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.crm-start-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px;
	border: 1px solid var(--crm-line);
	border-radius: 24px;
	background: #fff;
}
.crm-start-card:nth-child(2) {
	background: #f3faf5;
}
.crm-start-card:nth-child(3) {
	background: #f0f9fa;
}
.crm-start-card h3 {
	font-size: 24px;
}
.crm-start-card p {
	margin: 16px 0;
	color: var(--crm-muted);
}
.crm-start-card .crm-text-link {
	margin-top: auto;
}
.crm-section-note {
	max-width: 800px;
	margin: 24px auto 0 !important;
	color: var(--crm-muted);
	font-size: 14px;
	text-align: center;
}
.crm-faq-layout {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	align-items: start;
	gap: 64px;
}
.crm-faq-layout h2 {
	font-size: clamp(30px, 3.4vw, 42px);
}
.crm-faq-layout header p {
	margin-top: 18px;
	color: var(--crm-muted);
}
.crm-faq details {
	padding: 0 22px;
	border: 1px solid var(--crm-line);
	border-radius: 16px;
	background: #fff;
}
.crm-faq details + details {
	margin-top: 12px;
}
.crm-faq summary {
	padding: 20px 0;
	color: var(--crm-navy);
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
}
.crm-faq summary::marker {
	color: var(--accent-dark);
}
.crm-faq details > div {
	padding: 0 0 22px;
	color: var(--crm-muted);
	font-size: 16px;
}
.crm-faq details[open] {
	border-color: var(--accent-dark);
}
.crm-landing .crm-product__image-break {
	margin: 0;
}
.crm-marketing-host .defaultCTA h2,
.crm-product-host .defaultCTA h2 {
	margin-inline: auto;
	text-align: center;
}
.crm-landing .defaultCTA h2 {
	margin-bottom: 16px;
}
.crm-landing .defaultCTA > div > p {
	margin: 0 auto 32px;
}
@media (max-width: 767px) {
	.crm-section-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.crm-section-nav a {
		padding-inline: 8px;
		font-size: 14px;
	}
	.crm-start-grid,
	.crm-faq-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.crm-faq-layout header {
		margin-bottom: 12px;
		text-align: center;
	}
	.crm-start-card {
		padding: 24px;
	}
	.crm-member-pass {
		padding: 18px;
	}
	.crm-member-pass strong {
		margin-top: 10px;
		font-size: 22px;
	}
	.crm-member-pass span {
		font-size: 11px;
	}
}

/* Keep the product navigation in the same scroll flow as the CRM landing. */
.crm-product-host > #nv_container {
	position: sticky;
}
@media (max-width: 375px) {
	:is(.crm-product-host, .crm-marketing-host) > #nv_container nav > .container {
		flex-wrap: nowrap;
		gap: 8px;
		padding-inline: 12px;
	}
	:is(.crm-product-host, .crm-marketing-host) > #nv_container nav > .container > div:first-child {
		min-width: 0;
		gap: 4px;
	}
	:is(.crm-product-host, .crm-marketing-host) > #nv_container nav > .container > .btn-blue {
		padding-inline: 12px !important;
	}
	:is(.crm-product-host, .crm-marketing-host) > #nv_container nav > .container > div:first-child > a > img {
		width: 90px;
		height: auto !important;
	}
}

/* Shared, progressive motion for the three CRM marketing pages only. */
@media (prefers-reduced-motion: no-preference) and (min-width: 1024px) and (hover: hover) and (pointer: fine) {
	.crm-product .crm-motion-parallax,
	.crm-landing .crm-motion-parallax {
		transform: translate3d(0, var(--crm-parallax-y, 0px), 0);
	}
	.crm-product .crm-motion-parallax--image,
	.crm-landing .crm-motion-parallax--image {
		transform: translate3d(0, var(--crm-parallax-y, 0px), 0) scale(1.1);
	}
	.crm-product .crm-feature-card,
	.crm-landing .crm-service-card,
	.crm-landing .crm-activation-card {
		transition: border-color .25s ease, box-shadow .25s ease;
	}
	.crm-product .crm-feature-card:hover,
	.crm-landing .crm-service-card:hover,
	.crm-landing .crm-activation-card:hover {
		border-color: var(--accent);
		box-shadow: 0 12px 32px rgba(28, 64, 96, .08);
	}
}

@media print {
	.crm-hero-film__video,
	.crm-hero-film__control {
		display: none;
	}
	.crm-product *,
	.crm-landing * {
		animation: none !important;
	}
	.crm-motion-parallax {
		transform: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.crm-product *,
	.crm-landing * {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}