:root {
	--dx-brand: #0066ff;
	--dx-brand-hover: #0052cc;
	--dx-brand-soft: rgba(0, 102, 255, 0.08);
	--dx-text: #1a1a2e;
	--dx-text-muted: #5c5c6f;
	--dx-bg: #ffffff;
	--dx-surface: #f8faff;
	--dx-border: #e8ecf4;
	--dx-nav-height: 104px;
	--dx-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
	--dx-shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.1);
	--dx-radius: 12px;
	--dx-radius-lg: 16px;
	--dx-font: "Inter", system-ui, -apple-system, sans-serif;
}

body.dx-saas-page .navbar,
body.dx-saas-page .web-footer,
body.dx-saas-page .page-breadcrumbs,
body.dx-saas-page .page-header-wrapper,
body.dx-saas-page .page-header,
body.dx-saas-page .page-footer {
	display: none !important;
}

body.dx-saas-page {
	margin: 0;
	padding: 0;
}

body.dx-saas-page .page-content-wrapper,
body.dx-saas-page main,
body.dx-saas-page .page_content,
body.dx-saas-page [data-path="saas"] {
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
	width: 100% !important;
}

.dx-saas,
.dx-saas *,
.dx-saas *::before,
.dx-saas *::after {
	box-sizing: border-box;
}

.dx-saas {
	font-family: var(--dx-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--dx-text-muted);
	background: var(--dx-bg);
	min-height: 100vh;
	width: 100%;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	padding-top: var(--dx-nav-height);
}

.dx-saas h1,
.dx-saas h2,
.dx-saas h3,
.dx-saas h4 {
	color: var(--dx-text);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.dx-saas a {
	color: inherit;
	text-decoration: none;
}

.dx-container {
	width: 100%;
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* —— Nav —— */
.dx-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--dx-border);
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.dx-nav__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: var(--dx-nav-height);
	padding: 4px 0;
	column-gap: 24px;
	position: relative;
}

.dx-logo {
	grid-column: 1;
	justify-self: start;
	align-self: center;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
	margin-left: -8px;
}

.dx-logo__img {
	height: 96px;
	width: auto;
	max-width: min(480px, 78vw);
	display: block;
	flex-shrink: 0;
	object-fit: contain;
	object-position: left center;
}

.dx-nav__toggle {
	display: none;
	grid-column: 3;
	justify-self: end;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 2;
}

.dx-nav__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--dx-text);
	border-radius: 1px;
}

.dx-nav__links {
	grid-column: 2;
	justify-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px 24px;
	flex-wrap: wrap;
}

.dx-nav__links > a,
.dx-dropdown__trigger {
	font-size: 15px;
	font-weight: 500;
	color: var(--dx-text-muted);
	padding: 8px 4px;
	background: transparent;
	border: 0;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	font-family: inherit;
	line-height: 1.4;
}

.dx-nav__links > a:hover,
.dx-dropdown__trigger:hover {
	color: var(--dx-brand);
}

.dx-dropdown {
	position: relative;
}

.dx-dropdown__panel {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 8px;
	min-width: 200px;
	background: #fff;
	border: 1px solid var(--dx-border);
	border-radius: 10px;
	box-shadow: var(--dx-shadow-lg);
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	z-index: 20;
}

.dx-dropdown__panel a {
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 14px;
	color: var(--dx-text);
}

.dx-dropdown__panel a:hover {
	background: var(--dx-brand-soft);
	color: var(--dx-brand);
}

.dx-nav__actions {
	grid-column: 3;
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
	z-index: 3;
}

.dx-link-login {
	font-weight: 600;
	color: var(--dx-text);
	font-size: 15px;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	z-index: 2;
	white-space: nowrap;
}

.dx-link-login:hover {
	color: var(--dx-brand);
	text-decoration: none;
}

/* —— Buttons —— */
.dx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 10px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
	font-family: inherit;
	text-decoration: none;
}

.dx-btn--primary,
.dx-saas a.dx-btn--primary,
.dx-saas button.dx-btn--primary {
	background: var(--dx-brand);
	color: #fff;
	border-color: var(--dx-brand);
}

.dx-btn--primary:hover,
.dx-btn--primary:focus,
.dx-btn--primary:active,
.dx-saas a.dx-btn--primary:hover,
.dx-saas a.dx-btn--primary:focus,
.dx-saas a.dx-btn--primary:active,
.dx-saas button.dx-btn--primary:hover {
	background: var(--dx-brand-hover);
	border-color: var(--dx-brand-hover);
	color: #fff;
}

.dx-btn--outline {
	background: #fff;
	color: var(--dx-brand);
	border-color: var(--dx-brand);
}

.dx-btn--outline:hover {
	background: var(--dx-brand-soft);
}

.dx-btn--ghost {
	background: transparent;
	color: var(--dx-text);
	border-color: var(--dx-border);
}

.dx-btn--ghost:hover {
	border-color: var(--dx-brand);
	color: var(--dx-brand);
}

.dx-btn--lg {
	padding: 14px 28px;
	font-size: 16px;
}

.dx-btn--sm {
	padding: 10px 18px;
	font-size: 14px;
}

.dx-btn--block {
	width: 100%;
}

/* —— Hero —— */
.dx-hero {
	position: relative;
	overflow: hidden;
	background: #0a1628;
}

.dx-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.dx-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 55% center;
	transform: scale(1.03);
	animation: dx-hero-kenburns 22s ease-in-out infinite alternate;
	will-change: transform;
}

@keyframes dx-hero-kenburns {
	from {
		transform: scale(1.03) translate3d(0, 0, 0);
	}
	to {
		transform: scale(1.08) translate3d(-1%, 0, 0);
	}
}

.dx-hero__bg-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.48) 30%, rgba(255, 255, 255, 0.12) 46%, transparent 58%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.dx-hero__swoosh {
	position: absolute;
	right: 10%;
	top: 38%;
	width: min(340px, 36vw);
	height: auto;
	color: var(--dx-brand);
	opacity: 0.45;
	z-index: 1;
	pointer-events: none;
	animation: dx-hero-swoosh 8s ease-in-out infinite alternate;
}

@keyframes dx-hero-swoosh {
	from {
		transform: translate3d(0, 0, 0) rotate(-2deg);
		opacity: 0.45;
	}
	to {
		transform: translate3d(12px, -8px, 0) rotate(1deg);
		opacity: 0.7;
	}
}

.dx-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: clamp(520px, 68vh, 680px);
	padding-top: 56px;
	padding-bottom: 48px;
}

.dx-hero__card {
	width: 100%;
	max-width: 660px;
	padding: 28px 40px 20px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: none;
	border-radius: 14px;
	box-shadow: 0 10px 36px rgba(15, 23, 42, 0.12);
}

.dx-hero__title {
	font-size: clamp(1.65rem, 3.2vw, 2.25rem);
	margin-bottom: 12px;
	letter-spacing: -0.02em;
	line-height: 1.2;
	font-weight: 700;
	color: #3d3d4a;
}

.dx-accent {
	color: var(--dx-brand);
}

.dx-hero__lead {
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 18px;
	max-width: 100%;
	color: #6b6b7b;
}

.dx-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 0;
}

.dx-hero__cta .dx-btn--lg {
	padding: 12px 22px;
	font-size: 15px;
}

.dx-btn--on-card.dx-btn--outline {
	background: rgba(255, 255, 255, 0.7);
}

.dx-btn--on-card.dx-btn--outline:hover {
	background: #fff;
}

.dx-hero__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	font-size: 14px;
	font-weight: 500;
	color: var(--dx-text);
}

.dx-hero__trust li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dx-check {
	width: 18px;
	height: 18px;
	color: var(--dx-brand);
	flex-shrink: 0;
}

.dx-hero__divider {
	position: relative;
	z-index: 2;
	height: 6px;
	background: linear-gradient(90deg, var(--dx-brand) 0%, #3d8bff 50%, var(--dx-brand) 100%);
}

.dx-hero__highlights {
	position: relative;
	z-index: 2;
	background: #fff;
	padding: 28px 0 36px;
}

.dx-hero__highlights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px 32px;
}

.dx-hero__highlight {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 8px 0;
	transition: transform 0.3s ease;
}

.dx-hero__highlight:hover {
	transform: translateX(4px);
}

.dx-hero__highlight-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--dx-brand-soft);
	color: var(--dx-brand);
	transition: background 0.3s ease, transform 0.3s ease;
}

.dx-hero__highlight:hover .dx-hero__highlight-icon {
	background: rgba(0, 102, 255, 0.14);
	transform: scale(1.06);
}

.dx-hero__highlight strong {
	display: block;
	font-size: 1rem;
	color: var(--dx-text);
	margin-bottom: 2px;
}

.dx-hero__highlight span {
	display: block;
	font-size: 0.9rem;
	color: var(--dx-text-muted);
}

@media (prefers-reduced-motion: reduce) {
	.dx-hero__bg-img,
	.dx-hero__swoosh {
		animation: none;
	}

	.dx-hero__highlight:hover {
		transform: none;
	}
}

/* —— Dashboard mock —— */
.dx-dash {
	background: #fff;
	border-radius: var(--dx-radius-lg);
	box-shadow: var(--dx-shadow-lg);
	border: 1px solid var(--dx-border);
	overflow: hidden;
}

.dx-dash--hero {
	transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
}

.dx-dash__top {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #f4f6fb;
	border-bottom: 1px solid var(--dx-border);
}

.dx-dash__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ddd;
}

.dx-dash__dot:nth-child(1) {
	background: #ff5f57;
}
.dx-dash__dot:nth-child(2) {
	background: #febc2e;
}
.dx-dash__dot:nth-child(3) {
	background: #28c840;
}

.dx-dash__url {
	margin-left: auto;
	font-size: 11px;
	color: var(--dx-text-muted);
}

.dx-dash__body {
	display: grid;
	grid-template-columns: 52px 1fr;
	min-height: 280px;
}

.dx-dash--inline .dx-dash__body {
	min-height: 320px;
}

.dx-dash__side {
	background: #f8faff;
	border-right: 1px solid var(--dx-border);
	padding: 16px 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dx-dash__side-item {
	height: 8px;
	border-radius: 4px;
	background: #e0e6f0;
}

.dx-dash__side-item--active {
	background: var(--dx-brand);
	width: 100%;
}

.dx-dash__main {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.dx-dash__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.dx-dash__stat {
	background: var(--dx-surface);
	border-radius: 8px;
	padding: 10px;
	border: 1px solid var(--dx-border);
}

.dx-dash__stat-bar {
	height: 6px;
	width: 45%;
	background: var(--dx-brand);
	border-radius: 3px;
	margin-bottom: 8px;
	opacity: 0.85;
}

.dx-dash__stat-line {
	height: 4px;
	background: #e8ecf4;
	border-radius: 2px;
	width: 100%;
}

.dx-dash__chart-row {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 12px;
}

.dx-dash__chart {
	background: var(--dx-surface);
	border: 1px solid var(--dx-border);
	border-radius: 10px;
	padding: 12px;
	min-height: 120px;
	display: flex;
	align-items: flex-end;
}

.dx-dash__bars {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	width: 100%;
	height: 100px;
}

.dx-dash__bar {
	flex: 1;
	background: linear-gradient(180deg, var(--dx-brand), #4d94ff);
	border-radius: 4px 4px 0 0;
	min-height: 20%;
}

.dx-dash__widgets {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dx-dash__widget {
	flex: 1;
	background: var(--dx-surface);
	border: 1px solid var(--dx-border);
	border-radius: 10px;
	min-height: 52px;
}

.dx-dash__table {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dx-dash__table-line {
	height: 10px;
	background: #eef1f7;
	border-radius: 4px;
}

.dx-dash__table-line:nth-child(2) {
	width: 85%;
}
.dx-dash__table-line:nth-child(3) {
	width: 70%;
}

/* —— Sections —— */
.dx-section {
	padding: 80px 0;
}

.dx-section--surface {
	background: #f8f9fa;
}

.dx-section--gradient {
	background: linear-gradient(180deg, #fff 0%, #f0f5ff 100%);
}

.dx-section-eyebrow {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(92, 92, 111, 0.85);
}

.dx-divider {
	border: 0;
	border-top: 1px solid var(--dx-border);
	margin: 56px 0;
}

/* —— About (About Us) —— */
.dx-about__head {
	text-align: center;
	margin-bottom: 36px;
}

.dx-about__hero {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: start;
}

.dx-about__title {
	font-size: clamp(2rem, 4.2vw, 3rem);
	letter-spacing: -0.03em;
	margin: 0 0 16px;
	color: var(--dx-text);
	font-family: var(--dx-font);
	font-weight: 800;
}

.dx-about__accent {
	color: var(--dx-brand);
	font-style: normal;
	font-weight: 800;
}

.dx-about__lead {
	margin: 0;
	max-width: 520px;
	font-size: 1.05rem;
	line-height: 1.7;
}

.dx-quote {
	margin: 0 0 18px;
	padding: 0 0 0 18px;
	border-left: 3px solid rgba(0, 102, 255, 0.28);
}

.dx-quote p {
	margin: 0;
	font-style: italic;
	color: var(--dx-text);
	opacity: 0.82;
	line-height: 1.8;
	font-family: var(--dx-font);
	font-size: 15px;
}

.dx-about__body {
	margin: 0 0 16px;
	line-height: 1.75;
	font-size: 15px;
}

.dx-about__body strong {
	color: var(--dx-text);
	font-weight: 700;
}

.dx-standfor-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.dx-standfor-card {
	background: #fff;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-lg);
	box-shadow: var(--dx-shadow);
	padding: 26px 24px;
}

.dx-standfor-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	color: var(--dx-brand);
	background: rgba(0, 102, 255, 0.08);
}

.dx-standfor-card__icon svg {
	width: 26px;
	height: 26px;
}

.dx-standfor-card__icon--mission {
	color: var(--dx-brand);
	background: var(--dx-brand-soft);
}

.dx-standfor-card__icon--vision {
	color: var(--dx-brand);
	background: var(--dx-brand-soft);
}

.dx-standfor-card h3 {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--dx-brand);
}

.dx-standfor-card > p {
	margin: 0 0 12px;
	color: var(--dx-text);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.35;
}

.dx-standfor-card__muted {
	margin: 0;
	color: var(--dx-text-muted);
	font-size: 15px;
	line-height: 1.75;
	font-weight: 400;
}

/* —— Values —— */
.dx-values__title {
	font-size: clamp(1.9rem, 4vw, 2.5rem);
	margin: 0 0 10px;
	letter-spacing: -0.02em;
	text-align: center;
}

.dx-values__sub {
	margin: 0 0 34px;
	color: var(--dx-text-muted);
	max-width: 760px;
	line-height: 1.75;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.dx-values-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.dx-value-card {
	background: #fff;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-lg);
	box-shadow: var(--dx-shadow);
	padding: 22px 22px;
}

.dx-value-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	color: var(--dx-brand);
	background: rgba(0, 102, 255, 0.08);
}

.dx-value-card__icon svg {
	width: 26px;
	height: 26px;
}

.dx-value-card h3 {
	margin: 0 0 10px;
	font-size: 1.05rem;
}

.dx-value-card p {
	margin: 0;
	line-height: 1.75;
	font-size: 15px;
}

.dx-value-card__icon--blue {
	color: #2563eb;
	background: rgba(37, 99, 235, 0.12);
}

.dx-value-card__icon--amber {
	color: #d97706;
	background: rgba(217, 119, 6, 0.14);
}

.dx-value-card__icon--slate {
	color: #475569;
	background: rgba(71, 85, 105, 0.12);
}

.dx-value-card__icon--teal {
	color: #0f766e;
	background: rgba(15, 118, 110, 0.12);
}

.dx-section-title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	text-align: center;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

.dx-section-sub {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
	padding: 0 8px;
	color: var(--dx-text-muted);
	line-height: 1.65;
}

/* —— Audience —— */
.dx-audience-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.dx-audience-card {
	background: #fff;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-lg);
	padding: 28px 24px;
	box-shadow: var(--dx-shadow);
	transition: box-shadow 0.2s, border-color 0.2s;
	text-align: center;
	height: 100%;
}

.dx-audience-card:hover {
	border-color: rgba(0, 102, 255, 0.25);
	box-shadow: var(--dx-shadow-lg);
}

.dx-icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--dx-brand-soft);
	color: var(--dx-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.dx-icon-wrap svg {
	width: 26px;
	height: 26px;
}

.dx-audience-card h3 {
	font-size: 1.125rem;
	margin-bottom: 8px;
}

.dx-audience-card p {
	margin: 0;
	font-size: 15px;
	color: var(--dx-text-muted);
}

/* —— Features / Benefits —— */
.dx-capabilities {
	background: #f4f4f6;
	padding: 80px 0 96px;
}

.dx-capabilities__container {
	max-width: 960px;
}

.dx-capabilities__head {
	text-align: center;
	margin-bottom: 64px;
}

.dx-capabilities__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: #4a4a58;
	line-height: 1.3;
	margin: 0 0 32px;
}

.dx-capabilities__subtitle {
	font-size: 1rem;
	color: #6b6b7b;
	line-height: 1.7;
	max-width: 640px;
	margin: 0 auto;
	padding-top: 4px;
}

.dx-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px 40px;
	margin-top: 8px;
}

.dx-benefit:last-child:nth-child(3n + 1):nth-last-child(1) {
	grid-column: 2;
}

.dx-benefit {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 18px;
}

.dx-benefit__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 102, 255, 0.1);
	color: var(--dx-brand);
	flex-shrink: 0;
}

.dx-benefit__icon svg {
	width: 26px;
	height: 26px;
	display: block;
}

.dx-benefit__text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #4a4a58;
	font-weight: 400;
	max-width: 220px;
}

/* —— Platform glance —— */
.dx-glance {
	background: #fff;
	padding: 96px 0 72px;
}

.dx-glance__container {
	max-width: 1100px;
}

.dx-glance__head {
	text-align: center;
	margin-bottom: 40px;
}

.dx-glance__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: #4a4a58;
	margin: 0 0 32px;
	padding-top: 8px;
	line-height: 1.3;
}

.dx-glance__subtitle {
	font-size: 1rem;
	color: #6b6b7b;
	line-height: 1.7;
	max-width: 720px;
	margin: 0 auto;
}

.dx-glance__carousel {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px 20px;
	margin-bottom: 12px;
}

.dx-glance__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid #d8dce5;
	border-radius: 4px;
	background: #fff;
	color: #4a4a58;
	cursor: pointer;
	flex-shrink: 0;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.dx-glance__arrow:hover {
	border-color: var(--dx-brand);
	color: var(--dx-brand);
	background: var(--dx-brand-soft);
}

.dx-glance__arrow:focus-visible {
	outline: 2px solid var(--dx-brand);
	outline-offset: 2px;
}

.dx-glance__viewport {
	overflow: hidden;
	width: 100%;
	min-width: 0;
}

.dx-glance__track {
	display: flex;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
	.dx-glance__track {
		transition: none;
	}
}

.dx-glance__slide {
	flex: 0 0 100%;
	min-width: 100%;
	margin: 0;
	padding: 0 4px;
	box-sizing: border-box;
}

.dx-glance__frame {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
	border: 1px solid #e4e8ef;
	max-width: 880px;
	margin: 0 auto;
	line-height: 0;
}

.dx-glance__img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: top;
	background: #fff;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.dx-glance__img.is-loaded {
	opacity: 1;
}

.dx-glance__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #f4f6fa 0%, #e8ecf4 100%);
	color: #8b93a7;
	font-size: 0.875rem;
	font-weight: 500;
}

.dx-glance__placeholder.is-hidden {
	display: none;
}

.dx-glance__label {
	margin: 10px 0 0;
	text-align: center;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #4a4a58;
	line-height: 1.4;
}

.dx-glance__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 24px;
}

.dx-glance__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #c4c8d4;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.dx-glance__dot:hover {
	background: #9aa0b0;
}

.dx-glance__dot.is-active {
	background: #4a4a58;
	transform: scale(1.1);
}

.dx-glance__dot:focus-visible {
	outline: 2px solid var(--dx-brand);
	outline-offset: 2px;
}

/* —— Steps —— */
.dx-steps-row {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: nowrap;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

.dx-step-card {
	flex: 1 1 0;
	min-width: 0;
	max-width: 280px;
	text-align: center;
	background: #fff;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-lg);
	padding: 32px 24px;
	box-shadow: var(--dx-shadow);
}

.dx-step-card__num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--dx-brand);
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.dx-step-card h3 {
	font-size: 1.125rem;
	margin-bottom: 8px;
}

.dx-step-card p {
	margin: 0;
	font-size: 15px;
	color: var(--dx-text-muted);
}

.dx-step-arrow {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	color: var(--dx-brand);
	padding: 0 4px;
	margin-top: 52px;
}

/* —— Split layouts —— */
.dx-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.dx-split__copy h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 16px;
}

.dx-split__copy > p {
	margin: 0 0 20px;
	font-size: 1.05rem;
}

.dx-bullets {
	margin: 0;
	padding-left: 1.2rem;
	color: var(--dx-text-muted);
	font-size: 15px;
}

.dx-bullets li {
	margin-bottom: 8px;
}

.dx-caption {
	margin: 12px 0 0;
	font-size: 13px;
	color: var(--dx-text-muted);
	text-align: center;
}

/* —— Why choose —— */
.dx-illustration {
	position: relative;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dx-laptop {
	position: relative;
	width: 260px;
}

.dx-laptop__screen {
	height: 160px;
	background: linear-gradient(145deg, #1a1a2e, #16213e);
	border-radius: 12px 12px 0 0;
	border: 3px solid #c5cdd8;
	border-bottom: none;
	position: relative;
	overflow: hidden;
}

.dx-laptop__glow {
	position: absolute;
	inset: 12px;
	background: linear-gradient(135deg, rgba(0, 102, 255, 0.35), rgba(230, 57, 70, 0.2));
	border-radius: 6px;
}

.dx-laptop__base {
	height: 14px;
	background: #aeb8c4;
	border-radius: 0 0 10px 10px;
	margin: 0 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dx-laptop__base::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 80px;
	height: 6px;
	background: #9aa5b3;
	border-radius: 0 0 6px 6px;
}

.dx-rocket {
	position: absolute;
	right: 10%;
	top: 0;
	width: 72px;
	height: 72px;
	animation: dx-rocket-float 3s ease-in-out infinite;
}

@keyframes dx-rocket-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.dx-benefits {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dx-benefits li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--dx-text);
	margin-bottom: 16px;
}

.dx-check-wrap {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	color: var(--dx-brand);
}

.dx-check-wrap svg {
	width: 100%;
	height: 100%;
}

/* —— Testimonials —— */
.dx-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.dx-testimonial {
	background: #fff;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius-lg);
	padding: 28px 24px;
	box-shadow: var(--dx-shadow);
	display: flex;
	flex-direction: column;
}

.dx-testimonial__quote {
	font-style: italic;
	color: var(--dx-text);
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.65;
	flex: 1;
}

.dx-testimonial__person {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.dx-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--dx-brand), #4d94ff);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dx-testimonial__name {
	margin: 0;
	font-weight: 600;
	color: var(--dx-text);
	font-size: 15px;
}

.dx-testimonial__role {
	margin: 2px 0 0;
	font-size: 13px;
	color: var(--dx-text-muted);
}

.dx-stars {
	color: #e6b422;
	font-size: 14px;
	letter-spacing: 2px;
}

/* —— FAQ —— */
.dx-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}

.dx-faq {
	background: #fff;
	border: 1px solid var(--dx-border);
	border-radius: var(--dx-radius);
	overflow: hidden;
	box-shadow: var(--dx-shadow);
}

.dx-faq__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	color: var(--dx-text);
	background: #fff;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

.dx-faq__q:hover {
	background: var(--dx-brand-soft);
}

.dx-faq__chev {
	flex-shrink: 0;
	color: var(--dx-brand);
	transition: transform 0.2s;
}

.dx-faq.is-open .dx-faq__chev {
	transform: rotate(180deg);
}

.dx-faq__a {
	padding: 0 20px 18px;
	border-top: 1px solid var(--dx-border);
}

.dx-faq__a p {
	margin: 14px 0 0;
	font-size: 15px;
	color: var(--dx-text-muted);
}

/* —— Final CTA —— */
.dx-final-cta {
	position: relative;
	padding: 80px 0;
	background: linear-gradient(135deg, #e8f0ff 0%, #f5f9ff 50%, #e6f2ff 100%);
	overflow: hidden;
}

.dx-final-cta__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.dx-final-cta__inner h2 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	margin-bottom: 12px;
}

.dx-final-cta__inner > p {
	font-size: 1.125rem;
	color: var(--dx-text-muted);
	margin: 0 0 28px;
}

.dx-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.dx-final-cta__decor {
	position: absolute;
	width: 80px;
	height: 80px;
	pointer-events: none;
}

.dx-final-cta__decor--left {
	left: 8%;
	bottom: 20%;
}

.dx-final-cta__decor--right {
	right: 8%;
	top: 18%;
	width: 72px;
	height: 72px;
}

/* —— Footer —— */
.dx-footer {
	padding: 22px 0 40px;
	font-size: 13px;
	color: var(--dx-text-muted);
	border-top: 1px solid var(--dx-border);
}

.dx-footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.dx-footer__links {
	display: flex;
	gap: 16px;
}

.dx-footer__links a:hover {
	color: var(--dx-brand);
}

/* —— Reveal —— */
[data-dx-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-dx-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* —— Legacy pages (signup, dashboard) —— */
.dx-section__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
}

.dx-section__head h2 {
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	margin: 0 0 12px;
}

.dx-section__head p {
	color: var(--dx-text-muted);
	margin: 0;
	line-height: 1.6;
}

.dx-grid {
	display: grid;
	gap: 18px;
}

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

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

.dx-card {
	background: #fff;
	border-radius: var(--dx-radius-lg);
	border: 1px solid var(--dx-border);
	box-shadow: var(--dx-shadow);
	padding: 22px;
}

.dx-form-wrap {
	padding: 40px 0 64px;
}

.dx-form-intro h1 {
	margin: 0 0 10px;
}

.dx-form-intro p {
	color: var(--dx-text-muted);
	margin: 0 0 24px;
}

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

.dx-field span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--dx-text);
}

.dx-field input,
.dx-field select {
	width: 100%;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid var(--dx-border);
	font: inherit;
	background: #fbfcff;
}

.dx-field input:focus,
.dx-field select:focus {
	outline: 2px solid rgba(0, 102, 255, 0.25);
	border-color: var(--dx-brand);
}

.dx-form__error {
	color: #c0392b;
	font-size: 14px;
	margin-top: 8px;
}

.dx-thanks {
	text-align: center;
	padding: 80px 0;
}

.dx-thanks__lead {
	font-size: 1.15rem;
	color: var(--dx-text-muted);
	max-width: 560px;
	margin: 16px auto 16px;
	line-height: 1.6;
}

.dx-thanks__note {
	font-size: 0.95rem;
	color: var(--dx-text-muted);
	max-width: 520px;
	margin: 0 auto 28px;
	line-height: 1.5;
}

.dx-dash-lead,
.dx-dash-dl dt {
	color: var(--dx-text-muted);
}

.dx-dash-dl {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 8px 12px;
	margin: 0;
	font-size: 14px;
}

.dx-dash-dl dd {
	margin: 0;
}

.dx-dash-empty {
	text-align: center;
	padding: 32px;
}

.dx-dash-card--stripe {
	border-style: dashed;
}

.dx-dash-pay-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 24px;
}

.dx-dash-pay {
	border-style: dashed;
}

.dx-dash-pay__banner {
	padding: 12px 14px;
	margin-bottom: 16px;
	border-radius: 8px;
	background: var(--dx-brand-soft, rgba(99, 102, 241, 0.12));
	color: var(--dx-text, #1e1e2e);
	font-size: 14px;
	line-height: 1.5;
}

.dx-dash-pay__banner code {
	font-size: 13px;
}

.dx-dash-pay__title {
	margin: 0 0 12px;
	font-size: 1.125rem;
}

.dx-dash-pay__readonly {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 20px;
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 8px;
	background: var(--dx-surface-2, #f4f4f8);
	font-size: 14px;
}

.dx-dash-pay__label {
	display: block;
	font-size: 12px;
	color: var(--dx-text-muted);
	margin-bottom: 4px;
}

.dx-dash-pay__field {
	display: block;
	margin-bottom: 14px;
}

.dx-dash-pay__field input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--dx-border, #e2e2ea);
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
}

.dx-dash-pay__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.dx-dash-pay__error {
	color: #b42318;
	font-size: 14px;
	margin: 0 0 12px;
}

.dx-dash-pay__success {
	color: #027a48;
	font-size: 14px;
	margin: 0 0 12px;
}

.dx-pay-page__lead {
	margin-bottom: 20px;
	color: var(--dx-text-muted);
}

.dx-pay-page__card {
	max-width: 480px;
	padding: 24px;
}

.dx-pay-page__amount {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 16px;
}

.dx-provision-status__dl {
	margin: 20px 0;
}

.dx-pill {
	display: inline-block;
	margin-top: 12px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--dx-brand-soft);
	color: var(--dx-brand);
	font-size: 12px;
	font-weight: 700;
}

.dx-spinner {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #fff;
	animation: dx-spin 0.8s linear infinite;
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
}

@keyframes dx-spin {
	to {
		transform: rotate(360deg);
	}
}

/* —— Responsive —— */
@media (max-width: 1024px) {
	.dx-audience-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dx-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 32px;
	}

	.dx-benefit:last-child:nth-child(2n + 1):nth-last-child(1) {
		grid-column: 1 / -1;
		justify-self: center;
	}

	.dx-glance__carousel {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.dx-glance__arrow--prev {
		grid-row: 2;
		grid-column: 1;
		justify-self: start;
	}

	.dx-glance__viewport {
		grid-row: 1;
		grid-column: 1;
	}

	.dx-glance__arrow--next {
		grid-row: 2;
		grid-column: 1;
		justify-self: end;
	}
}

@media (max-width: 960px) {
	.dx-nav__inner {
		grid-template-columns: 1fr auto;
		row-gap: 0;
	}

	.dx-nav__toggle {
		display: flex;
		grid-column: 2;
		grid-row: 1;
	}

	.dx-logo {
		grid-column: 1;
		grid-row: 1;
	}

	.dx-logo__img {
		height: 76px;
		max-width: min(360px, 74vw);
	}

	.dx-nav__links,
	.dx-nav__actions {
		display: none;
		grid-column: 1 / -1;
	}

	.dx-nav.is-open .dx-nav__links {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-self: stretch;
		width: 100%;
		max-width: 100%;
		gap: 0;
		padding: 12px 12px 0;
		margin-top: 8px;
		border-top: 1px solid var(--dx-border);
	}

	.dx-nav.is-open .dx-nav__actions {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-self: stretch;
		width: 100%;
		max-width: 100%;
		gap: 12px;
		padding: 0 12px 8px;
	}

	.dx-nav__links > a,
	.dx-dropdown {
		border-bottom: 1px solid var(--dx-border);
		padding: 12px 8px;
	}

	.dx-dropdown__panel {
		position: static;
		margin-top: 8px;
		box-shadow: none;
		border: none;
		background: var(--dx-surface);
	}

	.dx-nav__actions .dx-btn {
		width: 100%;
	}

	.dx-hero__inner,
	.dx-split {
		min-height: clamp(420px, 58vh, 520px);
		padding-top: 36px;
		padding-bottom: 32px;
	}

	.dx-hero__card {
		max-width: none;
		padding: 24px 24px 18px;
		border-radius: 12px;
	}

	.dx-hero__swoosh {
		display: none;
	}

	.dx-hero__bg-overlay {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(10, 22, 40, 0.25) 100%);
	}

	.dx-hero__highlights-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.dx-about__hero,
	.dx-standfor-grid,
	.dx-values-grid {
		grid-template-columns: 1fr;
	}

	.dx-testimonial-grid {
		grid-template-columns: 1fr;
	}

	.dx-step-arrow {
		display: none;
	}

	.dx-steps-row {
		flex-direction: column;
		align-items: center;
	}

	.dx-step-card {
		max-width: 100%;
		width: 100%;
	}

	.dx-illustration {
		order: -1;
		min-height: 220px;
	}
}

@media (max-width: 768px) {
	.dx-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.dx-faq-grid {
		grid-template-columns: 1fr;
	}

	.dx-capabilities {
		padding: 64px 0 72px;
	}

	.dx-capabilities__head {
		margin-bottom: 40px;
	}

	.dx-benefits-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.dx-benefit:last-child:nth-child(3n + 1):nth-last-child(1),
	.dx-benefit:last-child:nth-child(2n + 1):nth-last-child(1) {
		grid-column: auto;
		justify-self: stretch;
	}

	.dx-benefit__text {
		max-width: 280px;
	}

	.dx-dash__stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.dx-dash__chart-row {
		grid-template-columns: 1fr;
	}

	.dx-grid--2,
	.dx-grid--3,
	.dx-form__grid {
		grid-template-columns: 1fr;
	}

	.dx-audience-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.dx-final-cta__decor {
		opacity: 0.5;
	}
}
