/**
 * Hello Zentics — product screenshots (contain, no top crop).
 */

.wz-page-hello-zentics {
	--hz-accent: #0070f3;
	--hz-accent-secondary: #7928ca;
	--hz-accent-soft: color-mix(in srgb, #0070f3 10%, var(--background));
}

/* Post-hero feature demo video */
.hello-zentics-hero-video {
	padding-block: var(--space-12) var(--space-14);
	background:
		radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--hz-accent, #0070f3) 6%, transparent), transparent 42%),
		var(--background);
	border-bottom: var(--guide-width) solid var(--guide-color);
}

.hello-zentics-hero-video__header {
	max-width: 42rem;
	margin-inline: auto;
	margin-bottom: var(--space-8);
	text-align: center;
}

.hello-zentics-hero-video__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 var(--space-3);
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--link) 10%, var(--background));
	color: var(--link);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hello-zentics-hero-video__title {
	margin: 0 0 var(--space-4);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--text-primary);
}

.hello-zentics-hero-video__lead {
	margin: 0;
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 1.65;
}

.hello-zentics-hero-video__media {
	margin: 0;
	padding: var(--space-3);
	border: 1px solid var(--border);
	border-radius: calc(var(--radius-md) + 4px);
	background: var(--background);
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
	position: relative;
	overflow: hidden;
}

.hello-zentics-hero-video__play {
	position: absolute;
	inset: var(--space-3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-3);
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: calc(var(--radius-md) - 2px);
	background:
		linear-gradient(180deg, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.42) 100%);
	color: #fff;
	cursor: pointer;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 2;
}

.hello-zentics-hero-video__play:hover,
.hello-zentics-hero-video__play:focus-visible {
	background:
		linear-gradient(180deg, rgba(15, 23, 42, 0.24) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.hello-zentics-hero-video__play:focus-visible {
	outline: 2px solid var(--link);
	outline-offset: 3px;
}

.hello-zentics-hero-video__play-icon {
	display: grid;
	place-items: center;
	width: clamp(4.5rem, 12vw, 6.5rem);
	height: clamp(4.5rem, 12vw, 6.5rem);
	border-radius: 50%;
	background: #fff;
	color: var(--hz-accent, #0070f3);
	box-shadow:
		0 12px 40px rgba(15, 23, 42, 0.28),
		0 0 0 1px rgba(255, 255, 255, 0.65) inset;
	transition: transform 0.2s ease;
}

.hello-zentics-hero-video__play-icon svg {
	margin-left: 0.2rem;
	width: clamp(1.75rem, 4vw, 2.5rem);
	height: clamp(1.75rem, 4vw, 2.5rem);
}

.hello-zentics-hero-video__play:hover .hello-zentics-hero-video__play-icon,
.hello-zentics-hero-video__play:focus-visible .hello-zentics-hero-video__play-icon {
	transform: scale(1.05);
}

.hello-zentics-hero-video__play-label {
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-shadow: 0 1px 12px rgba(15, 23, 42, 0.45);
}

.hello-zentics-hero-video__media.is-playing .hello-zentics-hero-video__play {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.hello-zentics-hero-video__player {
	display: block;
	width: 100%;
	height: auto;
	min-height: 18rem;
	max-height: 36rem;
	object-fit: contain;
	border-radius: calc(var(--radius-md) - 2px);
	background: #0f172a;
}

.hello-zentics-hero-video__player:focus-visible {
	outline: 2px solid var(--link);
	outline-offset: 3px;
}

@media (min-width: 960px) {
	.hello-zentics-hero-video {
		padding-block: var(--space-14) var(--space-16);
	}
}

/* Admin AI agent — post-video showcase */
.hello-zentics-admin-agent {
	padding-block: var(--space-12) var(--space-14);
	background: var(--background-subtle);
	border-bottom: var(--guide-width) solid var(--guide-color);
}

.hello-zentics-admin-agent__grid {
	display: grid;
	gap: var(--space-8);
	align-items: center;
}

@media (min-width: 960px) {
	.hello-zentics-admin-agent__grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: var(--space-10);
	}
}

.hello-zentics-admin-agent__eyebrow {
	display: inline-flex;
	margin: 0 0 var(--space-3);
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--hz-accent-secondary, #7928ca) 10%, var(--background));
	color: var(--hz-accent-secondary, #7928ca);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hello-zentics-admin-agent__title {
	margin: 0 0 var(--space-4);
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--text-primary);
}

.hello-zentics-admin-agent__lead {
	margin: 0 0 var(--space-5);
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 1.65;
}

.hello-zentics-admin-agent__bullets {
	margin: 0 0 var(--space-6);
	padding: 0;
	list-style: none;
	display: grid;
	gap: var(--space-3);
}

.hello-zentics-admin-agent__bullets li {
	position: relative;
	padding-left: 1.75rem;
	color: var(--text-secondary);
	line-height: 1.55;
}

.hello-zentics-admin-agent__bullets li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.2rem;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 999px;
	background: var(--hz-accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2 4.8 8.5 9.5 3.8' stroke='%230070f3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 0.7rem no-repeat;
}

.hello-zentics-admin-agent__media {
	margin: 0;
	padding: var(--space-3);
	border: 1px solid var(--border);
	border-radius: calc(var(--radius-md) + 4px);
	background: #0b1220;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

.hello-zentics-admin-agent__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: calc(var(--radius-md) - 2px);
}

.wz-page-hello-zentics .container {
	width: 100%;
	max-width: var(--page-max);
	margin-inline: auto;
	padding-inline: var(--space-6);
	box-sizing: border-box;
}

.wz-page-hello-zentics .global-features__item--has-image .global-features__item-title::before {
	display: none;
}

.wz-page-hello-zentics .global-features__item--has-image .global-features__item-text {
	padding-left: 0;
}

.wz-page-hello-zentics .global-features__lead {
	margin-top: var(--space-4);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.wz-page-hello-zentics .global-features__item-image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 220px;
	margin-bottom: var(--space-2);
	object-fit: contain;
	object-position: center top;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--background);
}

.wz-page-hello-zentics .global-features__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-4);
	margin-top: var(--space-10);
}

@media (min-width: 768px) {
	.wz-page-hello-zentics .global-features__gallery {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.wz-page-hello-zentics .global-features__gallery-image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 260px;
	object-fit: contain;
	object-position: center top;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--background);
}

.wz-page-hello-zentics .enterprise-hero--full-bleed-cards .enterprise-hero__card-link--cover {
	background-size: contain;
	background-position: center top;
	background-color: #0a0a12;
	min-height: 420px;
}

@media (min-width: 960px) {
	.wz-page-hello-zentics .enterprise-hero--full-bleed-cards .enterprise-hero__card-link--cover {
		min-height: 480px;
	}
}

.wz-page-hello-zentics .core-tech__image.section-placeholder,
.wz-page-hello-zentics .core-tech__video.section-placeholder,
.wz-page-hello-zentics .case-study__aside .section-placeholder,
.wz-page-hello-zentics .case-study__video.section-placeholder {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: auto;
	object-fit: contain;
	object-position: center top;
	background: var(--background);
}

.wz-page-hello-zentics .core-tech__video.section-placeholder {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
}

.wz-page-hello-zentics .core-tech__media {
	margin: 0;
	width: 100%;
}

.wz-page-hello-zentics .core-tech__media:has(.core-tech__video[data-core-tech-video-hover]) {
	cursor: pointer;
}

.wz-page-hello-zentics .core-tech__video[data-core-tech-video-hover]:focus-visible {
	outline: 2px solid var(--hz-accent);
	outline-offset: 2px;
}

.wz-page-hello-zentics .case-study__video.section-placeholder {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
}

.wz-page-hello-zentics .case-study__media {
	margin: 0;
	width: 100%;
}

/* Feature highlight — copy and media aligned top-to-bottom */
.wz-page-hello-zentics .feature-highlight__grid {
	align-items: stretch;
	justify-items: stretch;
	gap: var(--space-10);
}

@media (min-width: 960px) {
	.wz-page-hello-zentics .feature-highlight__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: var(--space-12);
		align-items: stretch;
	}
}

.wz-page-hello-zentics .feature-highlight__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: none;
	height: 100%;
}

.wz-page-hello-zentics .feature-highlight__title {
	max-width: none;
	text-wrap: balance;
}

.wz-page-hello-zentics .feature-highlight__text {
	max-width: none;
}

.wz-page-hello-zentics .feature-highlight__image.section-placeholder,
.wz-page-hello-zentics .feature-highlight__video.section-placeholder {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100%;
	margin-top: 0;
	margin-inline: auto;
	align-self: stretch;
	aspect-ratio: auto;
	object-fit: contain;
	object-position: center center;
	background: var(--background);
	justify-self: stretch;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
}

.wz-page-hello-zentics .feature-highlight__media {
	display: flex;
	align-items: stretch;
	margin: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.wz-page-hello-zentics .feature-highlight__actions .btn--secondary {
	background: color-mix(in srgb, var(--hz-accent-secondary) 8%, var(--background));
	color: var(--hz-accent-secondary);
	border-color: color-mix(in srgb, var(--hz-accent-secondary) 40%, var(--border));
	box-shadow: none;
}

.wz-page-hello-zentics .feature-highlight__actions .btn--secondary:hover,
.wz-page-hello-zentics .feature-highlight__actions .btn--secondary:focus-visible {
	background: color-mix(in srgb, var(--hz-accent-secondary) 14%, var(--background));
	border-color: var(--hz-accent-secondary);
	color: var(--hz-accent-secondary);
}

.wz-page-hello-zentics .award-card--forrester-alt .award-card__brand {
	background: var(--hz-accent-secondary);
}

.wz-page-hello-zentics .award-card--forrester-alt .award-card__link {
	color: var(--hz-accent-secondary);
}

.wz-page-hello-zentics .award-card--forrester-alt .award-card__link:hover {
	color: var(--hz-accent);
}

.wz-page-hello-zentics .case-study__grid {
	align-items: center;
	gap: var(--space-12);
}

@media (min-width: 960px) {
	.wz-page-hello-zentics .case-study__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: var(--space-12);
		align-items: center;
	}

	.wz-page-hello-zentics .case-study--story-in-main .case-study__grid {
		align-items: stretch;
	}
}

.wz-page-hello-zentics .case-study--story-in-main .case-study__aside {
	display: flex;
	flex-direction: column;
}

@media (min-width: 960px) {
	.wz-page-hello-zentics .case-study--story-in-main .case-study__main,
	.wz-page-hello-zentics .case-study--story-in-main .case-study__aside {
		align-self: stretch;
		min-height: 100%;
	}

	.wz-page-hello-zentics .case-study--story-in-main .case-study__aside {
		justify-content: stretch;
	}

	.wz-page-hello-zentics .case-study--story-in-main .case-study__media {
		position: relative;
		flex: 1 1 auto;
		display: block;
		width: 100%;
		min-height: 100%;
		height: 100%;
		overflow: hidden;
		border-radius: var(--radius-md);
	}

	.wz-page-hello-zentics .case-study--story-in-main .case-study__video.section-placeholder {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		max-width: none;
		object-fit: cover;
		object-position: center bottom;
		border-radius: inherit;
	}
}

.wz-page-hello-zentics .case-study__story {
	margin-top: var(--space-8);
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
}

.wz-page-hello-zentics .case-study__main .case-study__intro {
	margin: 0;
}

.wz-page-hello-zentics .case-study__main .case-study__quote-card {
	margin: 0;
}

.wz-page-hello-zentics .case-study__title {
	max-width: none;
	margin-bottom: var(--space-8);
}

.wz-page-hello-zentics .case-study__block-text,
.wz-page-hello-zentics .case-study__intro {
	max-width: none;
}

.wz-page-hello-zentics .case-study__main,
.wz-page-hello-zentics .case-study__aside {
	width: 100%;
	max-width: none;
}


/* Capabilities tabbed showcase (Proven Results layout) */
.global-features--showcase .global-features__header {
	max-width: 52rem;
	margin-bottom: var(--space-10);
}

.global-features--showcase .global-features__showcase {
	margin-top: 0;
	padding: 0;
	border: none;
	background: transparent;
}

.global-features--showcase .project-lighthouse__board {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--background);
	overflow: hidden;
	box-shadow: var(--ds-shadow-small);
}

.global-features--showcase .project-lighthouse__tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-bottom: 1px solid var(--border);
	background: var(--background-subtle);
}

.global-features--showcase .project-lighthouse__tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-3);
	min-height: 7.5rem;
	padding: var(--space-5) var(--space-3);
	border: none;
	border-right: 1px solid var(--border);
	background: transparent;
	cursor: pointer;
	font: inherit;
	color: var(--text-muted);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.global-features--showcase .project-lighthouse__tab:last-child {
	border-right: none;
}

.global-features--showcase .project-lighthouse__tab:hover {
	background: var(--ds-gray-100);
}

.global-features--showcase .project-lighthouse__tab.is-active {
	background: var(--background);
	color: var(--text-primary);
}

.global-features--showcase .project-lighthouse__tab--thumb {
	gap: var(--space-3);
	padding: var(--space-4) var(--space-4) var(--space-5);
	width: 100%;
}

.global-features--showcase .project-lighthouse__tab-thumb {
	display: block;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 10;
	border: 1px solid var(--border);
	border-radius: calc(var(--radius-md) - 2px);
	overflow: hidden;
	background: var(--background-subtle);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.global-features--showcase .project-lighthouse__tab-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.wz-page-hello-zentics .global-features--showcase .project-lighthouse__tab.is-active .project-lighthouse__tab-thumb {
	border-color: var(--hz-accent);
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--hz-accent) 35%, transparent);
}

.wz-page-hello-zentics .global-features--showcase .project-lighthouse__tab--icon {
	gap: var(--space-3);
	padding: var(--space-5) var(--space-4) var(--space-4);
}

.wz-page-hello-zentics .global-features--showcase .project-lighthouse__tab--icon .project-lighthouse__tab-ring--icon {
	width: 3.25rem;
	height: 3.25rem;
	margin-inline: auto;
	border-radius: var(--radius-md);
	border: 1px solid color-mix(in srgb, var(--hz-accent) 22%, var(--border));
	background: color-mix(in srgb, var(--hz-accent) 7%, var(--background));
}

.wz-page-hello-zentics .global-features--showcase .project-lighthouse__tab--icon.is-active .project-lighthouse__tab-ring--icon {
	border-color: var(--hz-accent);
	background: color-mix(in srgb, var(--hz-accent) 12%, var(--background));
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--hz-accent) 30%, transparent);
}

.wz-page-hello-zentics .global-features--showcase .project-lighthouse__tab--icon .project-lighthouse__tab-ring--icon .global-features__icon {
	width: 30px;
	height: 30px;
}

.global-features--showcase .project-lighthouse__tab-ring--icon {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
}

.global-features--showcase .project-lighthouse__tab-ring--icon .global-features__icon {
	width: 28px;
	height: 28px;
}

.global-features--showcase .project-lighthouse__tab-label {
	max-width: none;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
}

.global-features--showcase .project-lighthouse__panels {
	min-height: 22rem;
	padding: var(--space-10) var(--space-8);
}

@media (min-width: 960px) {
	.global-features--showcase .project-lighthouse__panels {
		padding: var(--space-10) var(--space-10);
	}
}

.global-features--showcase .project-lighthouse__panel {
	display: none;
}

.global-features--showcase .project-lighthouse__panel.is-active {
	display: block;
}

.global-features--showcase .project-lighthouse__panel-grid {
	display: grid;
	gap: var(--space-8);
	align-items: stretch;
}

@media (min-width: 960px) {
	.global-features--showcase .project-lighthouse__panel-grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
		gap: var(--space-12);
		align-items: stretch;
	}

	.global-features--showcase .project-lighthouse__detail {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding-right: var(--space-10);
		border-right: 1px solid var(--border);
	}

	.global-features--showcase .project-lighthouse__preview {
		padding-left: var(--space-2);
		align-self: stretch;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}
}

.global-features--showcase .project-lighthouse__metric-title {
	margin: 0 0 var(--space-4);
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--text-primary);
}

.global-features--showcase .project-lighthouse__metric-text {
	margin: 0 0 var(--space-5);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-secondary);
	max-width: none;
}

.global-features--showcase .global-features__showcase-bullets {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.global-features--showcase .global-features__showcase-bullets li {
	position: relative;
	padding-left: calc(var(--space-4) + 2px);
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--text-secondary);
}

.global-features--showcase .global-features__showcase-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--link);
}

.wz-page-hello-zentics .global-features--showcase .global-features__showcase-bullets li::before {
	background: var(--hz-accent);
}

.global-features--showcase .project-lighthouse__preview {
	margin: 0;
	padding: var(--space-3);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--background-subtle);
}

.global-features--showcase .project-lighthouse__preview img {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	min-height: 18rem;
	object-fit: contain;
	object-position: center top;
	border-radius: calc(var(--radius-md) - 2px);
	background: var(--background);
}

@media (max-width: 959px) {
	.global-features--showcase .project-lighthouse__tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.global-features--showcase .project-lighthouse__tab:nth-child(2n) {
		border-right: none;
	}

	.global-features--showcase .project-lighthouse__tab:nth-child(-n + 2) {
		border-bottom: 1px solid var(--border);
	}
}

@media (max-width: 519px) {
	.global-features--showcase .project-lighthouse__tabs {
		grid-template-columns: 1fr;
	}

	.global-features--showcase .project-lighthouse__tab {
		border-right: none;
		border-bottom: 1px solid var(--border);
		min-height: auto;
		flex-direction: row;
		justify-content: flex-start;
		padding: var(--space-4) var(--space-5);
	}

	.global-features--showcase .project-lighthouse__tab:last-child {
		border-bottom: none;
	}

	.global-features--showcase .project-lighthouse__tab-label {
		max-width: none;
		text-align: left;
		text-transform: none;
		font-size: 0.875rem;
		letter-spacing: 0;
	}
}

/* Integrations strip */
.integrations-strip {
	padding-block: var(--space-12);
	background: var(--background-subtle);
	border-bottom: var(--guide-width) solid var(--guide-color);
}

.integrations-strip__header {
	text-align: center;
	max-width: 42rem;
	margin-inline: auto;
	margin-bottom: var(--space-10);
}

.integrations-strip__eyebrow,
.before-after__eyebrow,
.trust-security__eyebrow,
.faq-section__eyebrow {
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: var(--space-3);
}

.wz-page-hello-zentics .integrations-strip__eyebrow,
.wz-page-hello-zentics .before-after__eyebrow,
.wz-page-hello-zentics .trust-security__eyebrow,
.wz-page-hello-zentics .faq-section__eyebrow {
	color: var(--hz-accent);
}

.integrations-strip__title,
.before-after__title,
.trust-security__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--text-primary);
	margin-bottom: var(--space-4);
}

.integrations-strip__lead,
.before-after__lead,
.trust-security__lead {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-secondary);
	max-width: none;
}

.integrations-strip__carousel {
	margin-top: calc(var(--space-2) * -1);
}

.integrations-strip__viewport {
	overflow: hidden;
	mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 8%,
		#000 92%,
		transparent 100%
	);
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 8%,
		#000 92%,
		transparent 100%
	);
}

.integrations-strip__track {
	display: flex;
	width: max-content;
	animation: integrations-strip-scroll 50s linear infinite;
}

.integrations-strip__track:hover {
	animation-play-state: paused;
}

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

@media (prefers-reduced-motion: reduce) {
	.integrations-strip__track {
		animation: none;
		overflow-x: auto;
		max-width: 100%;
		padding-bottom: var(--space-2);
		scroll-snap-type: x mandatory;
	}

	.integrations-strip__viewport {
		mask-image: none;
		-webkit-mask-image: none;
	}

	.integrations-strip__row .integrations-strip__logo {
		scroll-snap-align: start;
	}
}

.integrations-strip__row {
	display: flex;
	align-items: stretch;
	gap: var(--space-4);
	margin: 0;
	padding: var(--space-2) var(--space-4);
	list-style: none;
}

.integrations-strip__logo {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	gap: var(--space-2);
	min-width: 7.5rem;
	min-height: 5.5rem;
	padding: var(--space-4) var(--space-4);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--background);
	text-align: center;
}

.integrations-strip__logo-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
}

.integrations-strip__logo-icon svg {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
}

.integrations-strip__logo-label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-secondary);
	line-height: 1.25;
	letter-spacing: -0.01em;
}

/* Use cases — audience tabs (Hello Zentics page palette) */
.wz-page-hello-zentics .use-cases {
	--use-cases-accent: var(--hz-accent);
	--use-cases-accent-secondary: var(--hz-accent-secondary);
	--use-cases-accent-soft: var(--hz-accent-soft);
	--use-cases-eyebrow: var(--link);
	--use-cases-eyebrow-soft: color-mix(in srgb, var(--link) 10%, var(--background));
	--use-cases-title-highlight: var(--text-primary);
	padding-block: var(--space-16);
	background:
		radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--hz-accent-secondary) 8%, transparent), transparent 28%),
		var(--background-subtle);
	border-bottom: var(--guide-width) solid var(--guide-color);
}

.use-cases__header {
	max-width: 46rem;
	margin-inline: auto;
	margin-bottom: var(--space-10);
	text-align: center;
}

.use-cases__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	margin: 0 auto var(--space-4);
	padding: var(--space-2) var(--space-4);
	border-radius: var(--radius-pill);
	background: var(--use-cases-eyebrow-soft, var(--use-cases-accent-soft));
	color: var(--use-cases-eyebrow, var(--use-cases-accent));
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.use-cases__eyebrow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
}

.use-cases__eyebrow-icon .global-features__icon {
	width: 1rem;
	height: 1rem;
}

.use-cases__title {
	margin: 0 0 var(--space-4);
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--text-primary);
}

.use-cases__title-highlight {
	color: var(--use-cases-title-highlight, var(--text-primary));
	text-decoration: none;
}

.use-cases__lead {
	margin: 0 auto;
	max-width: 42rem;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

.use-cases__board-shell {
	border: 1px solid var(--border);
	border-radius: calc(var(--radius-md) + 4px);
	background: var(--background);
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.use-cases__tabs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-bottom: 1px solid var(--border);
	background: var(--background);
}

.use-cases__tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	min-height: 6rem;
	padding: var(--space-4) var(--space-3);
	border: 0;
	border-right: 1px solid var(--border);
	background: transparent;
	cursor: pointer;
	position: relative;
}

.use-cases__tab:last-child {
	border-right: none;
}

.use-cases__tab.is-active {
	background: color-mix(in srgb, var(--use-cases-accent) 4%, var(--background));
}

.use-cases__tab.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: var(--use-cases-accent);
}

.use-cases__tab-icon {
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--background-subtle);
	border: 1px solid var(--border);
}

.use-cases__tab.is-active .use-cases__tab-icon {
	background: var(--use-cases-accent-soft);
	border-color: color-mix(in srgb, var(--use-cases-accent) 25%, var(--border));
}

.use-cases__tab-label {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-align: center;
}

.use-cases__tab.is-active .use-cases__tab-label {
	color: var(--text-primary);
}

.use-cases__panels {
	padding: var(--space-8);
	background:
		radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--use-cases-accent) 7%, transparent), transparent 34%),
		var(--background);
}

.use-cases__panel-grid {
	display: grid;
	gap: var(--space-8);
	align-items: center;
}

@media (min-width: 960px) {
	.use-cases__panel-grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: var(--space-10);
		align-items: center;
	}

	.use-cases__detail {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding-right: var(--space-6);
	}
}

.use-cases__panel-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	margin: 0 0 var(--space-3);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--use-cases-accent);
}

.use-cases__panel-eyebrow::before {
	content: "✦";
	font-size: 0.875rem;
	line-height: 1;
}

.use-cases__panel-title {
	margin: 0 0 var(--space-4);
	font-size: clamp(1.5rem, 2.5vw, 1.875rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
	max-width: none;
}

.use-cases__panel-text {
	margin: 0 0 var(--space-5);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-secondary);
	max-width: none;
}

.use-cases__bullets {
	margin: 0 0 var(--space-6);
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.use-cases__bullets li {
	position: relative;
	padding-left: calc(var(--space-5) + 2px);
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.use-cases__bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2em;
	width: 1.125rem;
	height: 1.125rem;
	border-radius: 50%;
	background: var(--use-cases-accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2 4.8 8.5 9.5 3.8' stroke='%230070f3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 0.7rem no-repeat;
}

.wz-page-hello-zentics .use-cases__tab:focus-visible {
	outline-color: var(--hz-accent);
}

.use-cases__cta {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	align-self: flex-start;
}

.use-cases__cta-arrow {
	font-size: 1.125rem;
	line-height: 1;
}

.use-cases__preview {
	margin: 0;
	padding: var(--space-3);
	border: 1px solid var(--border);
	border-radius: calc(var(--radius-md) + 2px);
	background: var(--background);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.use-cases__preview img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 16rem;
	object-fit: contain;
	object-position: center top;
	border-radius: calc(var(--radius-md) - 2px);
	background: var(--background-subtle);
}

.use-cases__preview--video {
	padding: 0;
	overflow: hidden;
}

.use-cases__video {
	display: block;
	width: 100%;
	height: auto;
	min-height: 16rem;
	max-height: 28rem;
	object-fit: contain;
	object-position: center top;
	border-radius: calc(var(--radius-md) - 2px);
	background: #0f172a;
}

.use-cases__video:focus-visible {
	outline: 2px solid var(--use-cases-accent, var(--link));
	outline-offset: 2px;
}

/* Before / after — interactive comparison board */
.before-after {
	padding-block: var(--space-16);
	background:
		radial-gradient(circle at 15% 0%, color-mix(in srgb, var(--hz-accent, #0070f3) 7%, transparent), transparent 34%),
		radial-gradient(circle at 85% 100%, color-mix(in srgb, var(--hz-accent-secondary, #7928ca) 6%, transparent), transparent 30%),
		var(--background-subtle);
	border-bottom: var(--guide-width) solid var(--guide-color);
}

.wz-page-hello-zentics .before-after__header {
	max-width: 46rem;
	margin-inline: auto;
	margin-bottom: var(--space-10);
	text-align: center;
}

.before-after__board {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
}

.before-after__toggle {
	display: inline-flex;
	align-self: center;
	padding: var(--space-1);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	background: var(--background);
	box-shadow: var(--ds-shadow-small);
}

@media (min-width: 960px) {
	.before-after__toggle {
		display: none;
	}
}

.before-after__toggle-btn {
	border: 0;
	border-radius: var(--radius-pill);
	padding: var(--space-3) var(--space-5);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--text-secondary);
	background: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.before-after__toggle-btn.is-active,
.before-after__toggle-btn[aria-selected="true"] {
	color: var(--text-primary);
	background: var(--background);
	box-shadow: var(--ds-shadow-small);
}

.before-after__toggle-btn:focus-visible {
	outline: 2px solid var(--hz-accent, #0070f3);
	outline-offset: 2px;
}

.before-after__board-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 3.5rem minmax(0, 1fr);
	column-gap: var(--space-4);
	row-gap: var(--space-4);
	padding: var(--space-6);
	border: 1px solid var(--border);
	border-radius: calc(var(--radius-md) + 6px);
	background: var(--background);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.before-after__column-labels {
	display: none;
	grid-column: 1 / -1;
	grid-template-columns: subgrid;
	align-items: end;
	padding-bottom: var(--space-2);
	margin-bottom: var(--space-2);
	border-bottom: 1px solid var(--border);
	background: var(--background-subtle);
	margin-inline: calc(var(--space-6) * -1);
	margin-top: calc(var(--space-6) * -1);
	padding-inline: var(--space-6);
	padding-top: var(--space-5);
}

@media (min-width: 960px) {
	.before-after__column-labels {
		display: grid;
	}
}

.before-after__column-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.3;
}

.before-after__column-label--without {
	grid-column: 1;
	justify-self: start;
	text-align: left;
	color: var(--text-muted);
}

.before-after__column-label--spacer {
	grid-column: 2;
}

.before-after__column-label--with {
	grid-column: 3;
	justify-self: start;
	text-align: left;
	color: var(--hz-accent, #0070f3);
}

.before-after__rows {
	display: contents;
	margin: 0;
	padding: 0;
	list-style: none;
}

.before-after__row {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: subgrid;
	align-items: center;
}

.before-after__cell {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	padding: var(--space-4) var(--space-5);
	border-radius: calc(var(--radius-md) + 2px);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.before-after__cell--without {
	border: 1px solid var(--border);
	background: color-mix(in srgb, var(--text-muted) 6%, var(--background));
	color: var(--text-secondary);
}

.before-after__cell--with {
	border: 1px solid color-mix(in srgb, var(--hz-accent, #0070f3) 22%, var(--border));
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--hz-accent, #0070f3) 5%, var(--background)), var(--background));
	box-shadow: 0 8px 24px color-mix(in srgb, var(--hz-accent, #0070f3) 8%, transparent);
	color: var(--text-primary);
}

@media (min-width: 960px) {
	.before-after__row:hover .before-after__cell--with {
		transform: translateY(-2px);
		box-shadow: 0 14px 32px color-mix(in srgb, var(--hz-accent, #0070f3) 14%, transparent);
		border-color: color-mix(in srgb, var(--hz-accent, #0070f3) 35%, var(--border));
	}
}

.before-after__cell-icon {
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	margin-top: 0.1rem;
}

.before-after__cell-icon--minus {
	background: color-mix(in srgb, #ef4444 12%, var(--background));
	border: 1px solid color-mix(in srgb, #ef4444 25%, transparent);
	position: relative;
}

.before-after__cell-icon--minus::before,
.before-after__cell-icon--minus::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.65rem;
	height: 2px;
	background: #ef4444;
	border-radius: 1px;
	transform: translate(-50%, -50%);
}

.before-after__cell-icon--check {
	background: color-mix(in srgb, var(--hz-accent, #0070f3) 12%, var(--background));
	border: 1px solid color-mix(in srgb, var(--hz-accent, #0070f3) 25%, transparent);
	position: relative;
}

.before-after__cell-icon--check::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.45rem;
	height: 0.75rem;
	border-right: 2px solid var(--hz-accent, #0070f3);
	border-bottom: 2px solid var(--hz-accent, #0070f3);
	transform: translate(-55%, -60%) rotate(45deg);
}

.before-after__cell-text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	font-weight: 500;
}

.before-after__cell--with .before-after__cell-text {
	font-weight: 600;
}

.before-after__bridge {
	display: none;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 100%;
}

@media (min-width: 960px) {
	.before-after__bridge {
		display: flex;
	}
}

.before-after__bridge-line {
	display: none;
}

.before-after__bridge-arrow {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--background);
	border: 1px solid var(--border);
	box-shadow: var(--ds-shadow-small);
	position: relative;
	transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.before-after__bridge-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.45rem;
	height: 0.45rem;
	border-top: 2px solid var(--hz-accent, #0070f3);
	border-right: 2px solid var(--hz-accent, #0070f3);
	transform: translate(-60%, -50%) rotate(45deg);
}

.before-after__row:hover .before-after__bridge-arrow {
	transform: scale(1.08);
	border-color: color-mix(in srgb, var(--hz-accent, #0070f3) 35%, var(--border));
	background: color-mix(in srgb, var(--hz-accent, #0070f3) 8%, var(--background));
}

/* Mobile toggle views */
@media (max-width: 959px) {
	.before-after__board-shell {
		grid-template-columns: minmax(0, 1fr);
		padding: var(--space-4);
	}

	.before-after__row {
		grid-template-columns: minmax(0, 1fr);
	}

	.before-after__board[data-before-after-mode="with"] .before-after__cell--without,
	.before-after__board[data-before-after-mode="with"] .before-after__bridge {
		display: none;
	}

	.before-after__board[data-before-after-mode="without"] .before-after__cell--with,
	.before-after__board[data-before-after-mode="without"] .before-after__bridge {
		display: none;
	}

	.before-after__board[data-before-after-mode="with"] .before-after__cell--with,
	.before-after__board[data-before-after-mode="without"] .before-after__cell--without {
		padding: var(--space-5) var(--space-5);
	}
}

/* Trust & security */
.trust-security {
	padding-block: var(--space-16);
	background: var(--background);
	border-bottom: var(--guide-width) solid var(--guide-color);
}

.trust-security__header {
	max-width: 42rem;
	margin-bottom: var(--space-10);
}

.trust-security__grid {
	display: grid;
	gap: var(--space-6);
}

@media (min-width: 640px) {
	.trust-security__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.trust-security__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.trust-security__item {
	padding: var(--space-6);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--background-subtle);
}

.trust-security__icon {
	margin-bottom: var(--space-4);
}

.trust-security__item-title {
	margin: 0 0 var(--space-3);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-primary);
}

.trust-security__item-text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

/* FAQ */

/* Inquiry form sidebar */
.wz-page-hello-zentics .inquiry-form__intro-head {
	padding-bottom: 0;
	border-bottom: none;
}

.wz-page-hello-zentics .inquiry-form__benefits {
	margin-top: var(--space-8);
}

.wz-page-hello-zentics .inquiry-form__intro-stats {
	grid-template-columns: 1fr;
	border-bottom: none;
}

.wz-page-hello-zentics .inquiry-form__intro-stat {
	padding: var(--space-8) 0 0;
	min-height: 0;
}

.wz-page-hello-zentics .inquiry-form__intro-stat + .inquiry-form__intro-stat {
	border-left: none;
	padding-left: 0;
	padding-right: 0;
}

.wz-page-hello-zentics .inquiry-form__stat-copy {
	font-size: clamp(1rem, 2vw, 1.125rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.55;
	letter-spacing: normal;
	color: var(--hz-accent);
}

.wz-page-hello-zentics .inquiry-form__stat-copy strong {
	display: inline;
	font-weight: 400;
	font-style: italic;
	color: var(--hz-accent);
}

.wz-page-hello-zentics .inquiry-form__grid--quote-full .inquiry-form__intro-quote--full-width {
	grid-column: 1 / -1;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: var(--space-8) 0 0;
}

.wz-page-hello-zentics .inquiry-form__intro-quote--full-width p {
	max-width: none;
	width: 100%;
}

@media (min-width: 960px) {
	.wz-page-hello-zentics .inquiry-form__grid--quote-full {
		grid-template-columns: minmax(0, 1.15fr) minmax(280px, 380px);
	}

	.wz-page-hello-zentics .inquiry-form__grid--quote-full .inquiry-form__intro {
		grid-column: 1;
		grid-row: 1;
	}

	.wz-page-hello-zentics .inquiry-form__grid--quote-full .inquiry-form__card {
		grid-column: 2;
		grid-row: 1;
	}

	.wz-page-hello-zentics .inquiry-form__grid--quote-full .inquiry-form__intro-quote--full-width {
		grid-row: 2;
		padding-top: var(--space-10);
	}
}

@media (max-width: 959px) {
	.use-cases__tabs {
		grid-template-columns: 1fr;
	}

	.use-cases__tab {
		flex-direction: row;
		justify-content: flex-start;
		min-height: auto;
		border-right: none;
		border-bottom: 1px solid var(--border);
		padding: var(--space-4) var(--space-5);
	}

	.use-cases__tab:last-child {
		border-bottom: none;
	}

	.use-cases__tab.is-active::after {
		left: 0;
		right: auto;
		top: 0;
		bottom: 0;
		width: 3px;
		height: auto;
	}
}
