/**
 * Next Orbit — design system for Astra + Elementor.
 * Apply classes directly on Elementor widgets, columns, and sections.
 */

:root {
	--bg: #04060f;
	--surface: #080d1e;
	--surface-2: #0d1428;
	--border: rgba(255, 255, 255, 0.07);
	--border-2: rgba(255, 255, 255, 0.12);
	--fg: #f0f4ff;
	--muted: #7a88a8;
	--muted-2: #9aaac4;
	--blue: #4b7bec;
	--blue-light: #6b9eff;
	--violet: #7c5cbf;
	--violet-light: #9d7fdf;
	--accent: linear-gradient(135deg, #4b7bec, #7c5cbf);
	--accent-text: linear-gradient(135deg, #6b9eff, #9d7fdf);
	--r: 10px;
	--r-lg: 16px;
	--r-xl: 24px;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
	--header-h: 72px;
	--px: 1.5rem;
}

@media (min-width: 768px) {
	:root {
		--px: 2.5rem;
	}
}

/* ── typography ── */
.t-grad {
	background: var(--accent-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.disp {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.08;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--blue-light);
}

.eyebrow::before {
	content: "";
	width: 20px;
	height: 1px;
	background: var(--blue-light);
}

/* ── layout helpers (Elementor-friendly, no max-width containers) ── */
.split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 960px) {
	.split {
		grid-template-columns: 1fr 1fr;
	}
}

.sec {
	padding: 6rem 0;
}

@media (min-width: 768px) {
	.sec {
		padding: 8rem 0;
	}
}

.sec-hd {
	text-align: center;
	max-width: 48rem;
	margin: 0 auto 3.5rem;
}

.sec-hd .eyebrow {
	margin-bottom: 1.25rem;
}

.sec-hd h2 {
	margin-top: 0.75rem;
}

.sec-sub {
	color: var(--muted-2);
	font-size: 1.0625rem;
	margin-top: 1rem;
	line-height: 1.7;
}

/* ── ambient mesh (attach to a full-width Elementor section) ── */
.mesh {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 60% at 15% -5%, rgba(75, 123, 236, 0.13), transparent),
		radial-gradient(ellipse 60% 50% at 85% 20%, rgba(124, 92, 191, 0.13), transparent),
		radial-gradient(ellipse 40% 40% at 50% 80%, rgba(75, 123, 236, 0.07), transparent);
}

/* ── buttons ── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 100px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.2s;
	white-space: nowrap;
	text-decoration: none;
}

.btn-primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 16px 48px -12px rgba(75, 123, 236, 0.45);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 60px -12px rgba(75, 123, 236, 0.55);
	color: #fff;
}

.btn-ghost {
	border: 1px solid var(--border-2);
	background: rgba(13, 20, 40, 0.5);
	color: var(--fg);
}

.btn-ghost:hover {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(13, 20, 40, 0.8);
	color: var(--fg);
}

.btn-lg {
	padding: 0.9rem 2rem;
	font-size: 0.9375rem;
}

.btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* ── cards ── */
.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.card:hover {
	border-color: var(--border-2);
	transform: translateY(-4px);
	box-shadow: 0 24px 64px -24px rgba(0, 0, 0, 0.6);
}

.card-pad {
	padding: 1.75rem;
}

@media (min-width: 768px) {
	.card-pad {
		padding: 2.25rem;
	}
}

.card-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(75, 123, 236, 0.1);
	border: 1px solid rgba(75, 123, 236, 0.2);
	margin-bottom: 1.5rem;
	flex-shrink: 0;
}

.card-icon svg {
	width: 22px;
	height: 22px;
	color: var(--blue-light);
}

/* ── hero ── */
.hero {
	min-height: 80vh;
	display: flex;
	align-items: center;
	padding: 4rem 0 5rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 960px) {
	.hero-grid {
		grid-template-columns: 1.15fr 1fr;
		gap: 4rem;
	}
}

.hero-label {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 1.75rem;
}

.hero-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
	flex-shrink: 0;
}

.hero-label span {
	font-size: 0.8125rem;
	color: var(--muted);
}

.hero-h1 {
	font-family: "DM Serif Display", serif;
	font-size: clamp(2.5rem, 5.5vw, 4rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

.hero-sub {
	font-size: 1.125rem;
	color: var(--muted-2);
	margin-bottom: 1rem;
	font-style: italic;
}

.hero-body {
	color: var(--muted);
	margin-bottom: 2rem;
	line-height: 1.75;
}

.hero-body p {
	margin-bottom: 0.75rem;
}

.hero-body strong {
	color: var(--fg);
	font-weight: 600;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	margin-bottom: 3rem;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
}

.hero-stat {
	padding: 1.25rem 1.5rem;
	text-align: center;
}

.hero-stat + .hero-stat {
	border-left: 1px solid var(--border);
}

.stat-val {
	display: block;
	font-family: "DM Serif Display", serif;
	font-size: 1.75rem;
	letter-spacing: -0.02em;
	background: var(--accent-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-lbl {
	display: block;
	font-size: 0.75rem;
	color: var(--muted);
	margin-top: 0.25rem;
}

/* ── orbit visual ── */
.orbit-wrap {
	position: relative;
	width: min(100%, 500px);
	aspect-ratio: 1;
	margin-inline: auto;
}

.o-glow {
	position: absolute;
	inset: -15%;
	background: radial-gradient(closest-side, rgba(75, 123, 236, 0.2), transparent 70%);
	filter: blur(60px);
}

.o-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transform: translate(-50%, -50%);
}

.o-ring::after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 16px rgba(75, 123, 236, 0.9);
	transform: translate(-50%, -50%);
}

.o-r1 { width: 90%; height: 90%; }
.o-r2 { width: 73%; height: 73%; }
.o-r3 { width: 56%; height: 56%; }
.o-r4 { width: 40%; height: 40%; }

.o-core {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 33%;
	min-width: 88px;
	min-height: 88px;
	border-radius: 50%;
	background: rgba(8, 13, 30, 0.9);
	border: 1px solid var(--border-2);
	backdrop-filter: blur(24px);
	box-shadow: 0 0 40px rgba(75, 123, 236, 0.12);
	z-index: 2;
	text-align: center;
	padding: 0.5rem;
}

.o-name {
	font-family: "DM Serif Display", serif;
	font-size: 1.375rem;
	background: var(--accent-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.o-role {
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--muted);
	margin-top: 2px;
}

.o-dot {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}

/* ── outcomes ── */
.outcomes-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	overflow: hidden;
}

@media (min-width: 600px) {
	.outcomes-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.outcomes-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.outcome-item {
	background: var(--surface);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: background 0.25s;
}

.outcome-item:hover {
	background: var(--surface-2);
}

.outcome-item h3 {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.outcome-item h3 {
		font-size: 1.0625rem;
	}
}

/* ── trust bar ── */
.trust {
	border-block: 1px solid var(--border);
	padding: 4rem 0;
	background: rgba(8, 13, 30, 0.6);
	position: relative;
	overflow: hidden;
}

.trust::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(75, 123, 236, 0.05), transparent 70%);
	pointer-events: none;
}

.trust-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	margin-bottom: 2.75rem;
}

.trust-strip-item {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0 1.75rem;
	font-size: 0.8125rem;
	color: var(--muted-2);
	line-height: 1.4;
	text-align: center;
	position: relative;
}

.trust-strip-item + .trust-strip-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 15%;
	height: 70%;
	width: 1px;
	background: var(--border-2);
}

.trust-strip-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(75, 123, 236, 0.1);
	border: 1px solid rgba(75, 123, 236, 0.2);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.trust-strip-icon svg {
	width: 15px;
	height: 15px;
	color: var(--blue-light);
}

.trust-badges-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	justify-content: center;
	margin-bottom: 3rem;
}

.trust-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.125rem;
	border: 1px solid rgba(75, 123, 236, 0.25);
	border-radius: 100px;
	background: rgba(75, 123, 236, 0.06);
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--blue-light);
	transition: border-color 0.2s, background 0.2s;
}

.trust-badge-pill:hover {
	border-color: rgba(75, 123, 236, 0.5);
	background: rgba(75, 123, 236, 0.12);
}

.trust-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue-light);
	opacity: 0.7;
}

.trust-logos-label {
	text-align: center;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--muted);
	margin-bottom: 1.5rem;
}

.trust-logos-track {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--border);
}

.trust-logo-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 1.25rem;
	border: 1px solid var(--border-2);
	border-radius: var(--r);
	background: rgba(13, 20, 40, 0.5);
	font-size: 0.9375rem;
	font-weight: 600;
	color: rgba(154, 170, 196, 0.7);
	letter-spacing: -0.01em;
	transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.trust-logo-chip:hover {
	color: var(--fg);
	border-color: var(--border-2);
	background: rgba(13, 20, 40, 0.9);
}

/* ── GTM genome ── */
.genome-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 600px) {
	.genome-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.genome-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.genome-card {
	position: relative;
	padding: 2.25rem 2rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	overflow: hidden;
	transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.genome-card::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(75, 123, 236, 0.1), transparent 70%);
	transition: opacity 0.4s;
	pointer-events: none;
}

.genome-card:hover {
	border-color: rgba(75, 123, 236, 0.3);
	transform: translateY(-6px);
	box-shadow: 0 28px 64px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(75, 123, 236, 0.1);
}

.genome-card:hover::before {
	opacity: 1;
}

@media (min-width: 1100px) {
	.genome-card:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 2.875rem;
		right: -1.5rem;
		width: 1.25rem;
		height: 1px;
		background: linear-gradient(90deg, rgba(75, 123, 236, 0.4), transparent);
		z-index: 2;
	}
}

.genome-step {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.genome-step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--accent);
	font-size: 0.8125rem;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(75, 123, 236, 0.35);
}

.genome-step-label {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--muted);
}

.genome-card-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(75, 123, 236, 0.08);
	border: 1px solid rgba(75, 123, 236, 0.18);
	margin-bottom: 1.25rem;
}

.genome-card-icon svg {
	width: 20px;
	height: 20px;
	color: var(--blue-light);
}

.genome-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.625rem;
	line-height: 1.3;
}

.genome-card p {
	font-size: 0.875rem;
	color: var(--muted);
	line-height: 1.65;
	flex: 1;
}

.genome-card-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-top: 1.5rem;
	padding: 0.3rem 0.75rem;
	border-radius: 100px;
	border: 1px solid rgba(75, 123, 236, 0.2);
	background: rgba(75, 123, 236, 0.06);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--blue-light);
	width: fit-content;
}

/* ── proof / cases ── */
.cases-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.cases-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.case-card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	overflow: hidden;
	transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
	display: flex;
	flex-direction: column;
}

.case-card:hover {
	border-color: rgba(75, 123, 236, 0.3);
	transform: translateY(-6px);
	box-shadow: 0 32px 64px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(75, 123, 236, 0.08);
}

.case-card-top {
	height: 3px;
	background: var(--accent);
	width: 100%;
}

.case-card-body {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.case-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.case-avi {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	font-family: "DM Serif Display", serif;
	font-size: 1.25rem;
	font-weight: 400;
	color: #fff;
	background: var(--accent);
	flex-shrink: 0;
	box-shadow: 0 8px 24px rgba(75, 123, 236, 0.3);
}

.case-co {
	font-family: "DM Serif Display", serif;
	font-size: 1.25rem;
	line-height: 1.2;
}

.case-co-sub {
	font-size: 0.75rem;
	color: var(--muted);
	margin-top: 0.125rem;
}

.case-divider {
	height: 1px;
	background: var(--border);
	margin-bottom: 1.5rem;
}

.case-metrics {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	flex: 1;
}

.case-metric {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
}

.case-metric-icon {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 7px;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.case-metric-icon.primary {
	background: rgba(75, 123, 236, 0.15);
	border: 1px solid rgba(75, 123, 236, 0.25);
}

.case-metric-icon.secondary {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-metric-icon svg {
	width: 13px;
	height: 13px;
}

.case-metric-icon.primary svg {
	color: var(--blue-light);
}

.case-metric-icon.secondary svg {
	color: var(--muted);
}

.case-metric-text {
	font-size: 0.9375rem;
	line-height: 1.45;
}

.case-metric-text.primary {
	color: var(--fg);
	font-weight: 500;
}

.case-metric-text.secondary {
	color: var(--muted-2);
}

/* ── orbit drift ── */
.drift-scene {
	position: relative;
	width: min(100%, 380px);
	aspect-ratio: 1;
	margin-inline: auto;
}

.drift-outer {
	position: absolute;
	inset: 0;
	border: 1px dashed rgba(255, 255, 255, 0.08);
	border-radius: 50%;
}

.drift-mid {
	position: absolute;
	inset: 18%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
}

.drift-blob {
	position: absolute;
	top: -4%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4b7bec, #7c5cbf);
	box-shadow: 0 0 24px rgba(75, 123, 236, 0.7);
	transform: translateX(-50%);
}

.drift-core {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--surface-2);
	border: 1px solid var(--border-2);
	display: grid;
	place-items: center;
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--muted);
}

.drift-label {
	position: absolute;
	bottom: 1rem;
	right: 0.5rem;
	padding: 0.375rem 0.75rem;
	background: rgba(8, 13, 30, 0.85);
	border: 1px solid var(--border);
	border-radius: 100px;
	font-size: 0.75rem;
	color: var(--muted-2);
}

.symptoms-card {
	padding: 1.75rem;
	margin-top: 1.5rem;
}

.symptoms-hd {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--muted);
	margin-bottom: 1.25rem;
}

.symptoms-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem 1rem;
}

.symptom {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.9375rem;
	color: var(--muted-2);
}

.symptom::before {
	content: "✓";
	color: #22c55e;
	font-weight: 700;
	flex-shrink: 0;
	font-size: 0.8125rem;
	margin-top: 0.15rem;
}

.drift-cta-box {
	margin-top: 3.5rem;
	text-align: center;
	padding: 2.25rem;
	background: rgba(75, 123, 236, 0.05);
	border: 1px solid rgba(75, 123, 236, 0.15);
	border-radius: var(--r-xl);
}

.drift-cta-box p {
	color: var(--muted);
	margin-bottom: 0.625rem;
}

.drift-cta-box strong {
	color: var(--fg);
}

/* ── DNA section ── */
.dna-section {
	background: var(--surface);
	border-block: 1px solid var(--border);
}

.dna-intro {
	font-size: 1.125rem;
	color: var(--muted-2);
	line-height: 1.75;
	margin: 1.5rem 0;
}

.dna-strands-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	margin: 1.75rem 0;
}

.dna-tag {
	padding: 0.4rem 1rem;
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 500;
	border: 1px solid rgba(75, 123, 236, 0.3);
	background: rgba(75, 123, 236, 0.08);
	color: var(--blue-light);
}

.dna-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 480px;
	perspective: 100vmin;
	overflow: visible;
	transform-style: preserve-3d;
}

.dna-visual,
.dna-visual *,
.dna-visual *::before,
.dna-visual *::after {
	transform-style: preserve-3d;
}

.dna-glow {
	position: absolute;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(124, 92, 191, 0.28), transparent 70%);
	filter: blur(56px);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.dna-helix {
	--dna-h: min(460px, 58vmin);
	--dna-w: calc(var(--dna-h) * 0.4);
	height: var(--dna-h);
	width: var(--dna-w);
	display: grid;
	transform-style: preserve-3d;
	transform: rotateX(8deg);
	rotate: 28deg;
	gap: 0.45vmin;
	animation: dna-rotate 14s infinite linear;
	position: relative;
	z-index: 1;
}

.dna-strand {
	--speed: 2;
	--delay: calc(sin(var(--index) / var(--total) * 45deg) * var(--speed) * -1s);
	width: 100%;
	transform-style: preserve-3d;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.dna-node {
	--bg: var(--node-color, #4b7bec);
	background: var(--bg);
	height: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	position: relative;
	border: 1px solid rgba(107, 158, 255, 0.35);
	box-shadow: 0 0 14px rgba(75, 123, 236, 0.35);
	animation: dna-jump calc(var(--speed) * 1s) var(--delay, 0s) infinite ease-in-out;
}

.dna-strand::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 94%;
	height: 28%;
	background: linear-gradient(90deg, rgba(75, 123, 236, 0.08), rgba(124, 92, 191, 0.14), rgba(75, 123, 236, 0.08));
	transform: translate3d(-50%, -50%, -2px);
	transform-origin: center;
	animation: dna-scale calc(var(--speed) * 1s) var(--delay, 0s) infinite linear;
	border: 1px solid rgba(107, 158, 255, 0.18);
	border-radius: 3px;
}

.dna-node::after {
	content: "";
	height: 18%;
	aspect-ratio: 1;
	background: var(--bg, #6b9eff);
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg) translate(450%);
	animation: dna-orbit calc(var(--speed) * 0.35s) var(--delay, 0s) infinite linear;
	box-shadow: 0 0 6px rgba(107, 158, 255, 0.6);
}

.dna-node:first-of-type {
	--destination: calc((var(--dna-h) * 0.4) - 100%);
}

.dna-node:last-of-type {
	--destination: calc(((var(--dna-h) * 0.4) - 100%) * -1);
	animation-direction: reverse;
}

@keyframes dna-rotate {
	to {
		transform: rotateX(8deg) rotateY(360deg);
	}
}

@keyframes dna-scale {
	25%, 75% {
		transform: translate3d(-50%, -50%, -2px) scaleX(0);
	}
	0%, 50%, 100% {
		transform: translate3d(-50%, -50%, -2px) scaleX(1);
	}
}

@keyframes dna-orbit {
	100% {
		transform: translate(-50%, -50%) rotate(360deg) translate(450%);
	}
}

@keyframes dna-jump {
	25% {
		transform: translate3d(0, 0, 1px);
	}
	50% {
		transform: translateX(var(--destination));
	}
	75% {
		transform: translate3d(0, 0, -1px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.dna-helix,
	.dna-node,
	.dna-strand::before,
	.dna-node::after {
		animation: none !important;
	}
}

.dna-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.875rem;
	margin-top: 2.5rem;
}

@media (min-width: 640px) {
	.dna-cards {
		grid-template-columns: 1fr 1fr;
	}
}

.dna-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.375rem 1.5rem;
	background: rgba(4, 6, 15, 0.6);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	transition: border-color 0.3s, transform 0.3s var(--ease);
}

.dna-card:hover {
	border-color: var(--border-2);
	transform: translateX(4px);
}

.dna-card-num {
	font-family: "DM Serif Display", serif;
	font-size: 1.75rem;
	line-height: 1;
	background: var(--accent-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	flex-shrink: 0;
	width: 32px;
}

.dna-card h3 {
	font-size: 1.0625rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.dna-card p {
	font-size: 0.875rem;
	color: var(--muted);
}

/* ── diagnostic ── */
.diag-wrap {
	padding: 3rem;
	background: linear-gradient(135deg, rgba(75, 123, 236, 0.06), rgba(124, 92, 191, 0.06));
	border: 1px solid rgba(75, 123, 236, 0.18);
	border-radius: var(--r-xl);
}

@media (min-width: 768px) {
	.diag-wrap {
		padding: 4rem 4.5rem;
	}
}

.diag-body {
	color: var(--muted);
	margin: 1.5rem 0;
	line-height: 1.8;
}

.diag-body p {
	margin-bottom: 0.875rem;
}

.diag-body strong {
	color: var(--fg);
	font-weight: 600;
}

.diag-pill {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 1.75rem;
	background: rgba(8, 13, 30, 0.7);
	border: 1px solid var(--border-2);
	border-radius: var(--r-lg);
	font-size: 1rem;
	margin: 2rem 0;
}

.diag-pill .arrow {
	color: var(--blue-light);
	font-weight: 700;
	font-size: 1.25rem;
}

.diag-checklist {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 1.75rem;
}

.diag-check {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.9375rem;
	color: var(--muted-2);
}

.diag-check::before {
	content: "✓";
	color: #22c55e;
	font-weight: 700;
	flex-shrink: 0;
}

.diag-note {
	margin-top: 2rem;
	padding: 1.25rem 1.5rem;
	background: rgba(34, 197, 94, 0.06);
	border: 1px solid rgba(34, 197, 94, 0.15);
	border-radius: var(--r-lg);
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.7;
}

.diag-note strong {
	color: var(--fg);
}

/* ── about ── */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: start;
}

@media (min-width: 900px) {
	.about-grid {
		grid-template-columns: 320px 1fr;
		gap: 4rem;
	}
}

.about-card {
	padding: 2.25rem;
	text-align: center;
}

.about-avi {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--accent);
	border: 2px solid var(--border-2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	box-shadow: 0 0 32px rgba(75, 123, 236, 0.25);
}

.about-avi span {
	font-family: "DM Serif Display", serif;
	font-size: 2rem;
	color: #fff;
}

.about-name {
	font-family: "DM Serif Display", serif;
	font-size: 1.5rem;
	margin-bottom: 0.375rem;
}

.about-role {
	font-size: 0.875rem;
	color: var(--blue-light);
	font-weight: 500;
	margin-bottom: 0.875rem;
}

.about-bar {
	font-size: 0.8125rem;
	color: var(--muted);
	line-height: 1.6;
}

.about-body {
	color: var(--muted);
	margin: 1.5rem 0;
	line-height: 1.8;
}

.about-body p {
	margin-bottom: 0.875rem;
}

.about-body strong {
	color: var(--fg);
	font-weight: 600;
}

.about-creds {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2rem;
}

.about-cred {
	padding: 0.375rem 0.875rem;
	border: 1px solid var(--border-2);
	border-radius: 100px;
	font-size: 0.8125rem;
	color: var(--muted-2);
}

/* ── FAQ accordion ── */
.accordion {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.acc-item {
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	background: var(--surface);
	overflow: hidden;
}

.acc-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.375rem 1.75rem;
	text-align: left;
	font-size: 1.0625rem;
	font-weight: 500;
	transition: background 0.2s;
	cursor: pointer;
}

.acc-btn:hover {
	background: var(--surface-2);
}

.acc-ico {
	width: 20px;
	height: 20px;
	color: var(--muted);
	transition: transform 0.3s var(--ease);
	flex-shrink: 0;
}

.acc-item.open .acc-ico {
	transform: rotate(45deg);
}

.acc-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.32s var(--ease);
}

.acc-body {
	padding: 0 1.75rem 1.375rem;
	color: var(--muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

/* ── contact / CTA ── */
.cta-section {
	position: relative;
	padding: 7rem 0;
	overflow: hidden;
}

.cta-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cta-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(75, 123, 236, 0.12), transparent 60%);
}

.cta-rings {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
}

.cta-ring {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 50%;
	aspect-ratio: 1;
}

.cta-r1 { width: 10%; }
.cta-r2 { width: 25%; }
.cta-r3 { width: 45%; }
.cta-r4 { width: 65%; }
.cta-r5 { width: 85%; }

.cta-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 960px) {
	.cta-inner {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

.cta-left h2 {
	font-family: "DM Serif Display", serif;
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 1.25rem;
}

.cta-left p {
	color: var(--muted);
	margin-bottom: 0.75rem;
	line-height: 1.75;
}

.cta-left p strong {
	color: var(--fg);
}

.cta-items {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2rem;
}

.cta-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9375rem;
	color: var(--muted-2);
}

.cta-item::before {
	content: "✓";
	color: #22c55e;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

/* ── contact form (WPForms overrides can target these if needed) ── */
.contact-form-card {
	padding: 2.5rem;
	border-radius: var(--r-xl);
	background: var(--surface);
	border: 1px solid var(--border-2);
}

@media (min-width: 768px) {
	.contact-form-card {
		padding: 3rem;
	}
}

.form-head {
	margin-bottom: 2rem;
}

.form-head h3 {
	font-family: "DM Serif Display", serif;
	font-size: 1.625rem;
	margin-bottom: 0.5rem;
}

.form-head p {
	font-size: 0.9rem;
	color: var(--muted);
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 600px) {
	.form-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.form-full {
	grid-column: 1 / -1;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
	background: rgba(4, 6, 15, 0.6);
	border: 1px solid var(--border-2);
	border-radius: var(--r);
	color: var(--fg);
	font: inherit;
	font-size: 0.9375rem;
	padding: 0.75rem 1rem;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: rgba(75, 123, 236, 0.5);
	box-shadow: 0 0 0 3px rgba(75, 123, 236, 0.12);
}

.form-group textarea {
	resize: vertical;
	min-height: 110px;
	line-height: 1.6;
}

.form-group select option {
	background: #0d1428;
	color: var(--fg);
}

.form-select-wrap {
	position: relative;
}

.form-select-wrap::after {
	content: "▾";
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--muted);
	pointer-events: none;
	font-size: 0.875rem;
}

.form-select-wrap select {
	width: 100%;
	padding-right: 2.5rem;
	cursor: pointer;
}

.form-submit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 0.5rem;
}

.form-note {
	font-size: 0.8125rem;
	color: var(--muted);
}

.form-success {
	display: none;
	padding: 1.25rem;
	background: rgba(34, 197, 94, 0.08);
	border: 1px solid rgba(34, 197, 94, 0.2);
	border-radius: var(--r-lg);
	color: #4ade80;
	font-size: 0.9375rem;
	margin-top: 1rem;
	text-align: center;
}

/* ── scroll reveal (fallback before GSAP runs) ── */
.rev {
	opacity: 0;
	transform: translateY(24px);
}

.rev.in {
	opacity: 1;
	transform: none;
}

.rev-r {
	opacity: 0;
	transform: translateX(24px);
}

.rev-r.in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.rev,
	.rev-r {
		opacity: 1;
		transform: none;
	}
}

/* ── Elementor + Astra integration ── */
body,
.elementor-page,
.ast-separate-container .ast-article-single {
	background-color: var(--bg);
	color: var(--fg);
}

.elementor-page .site-content {
	background: transparent;
}

.no-diag-bg {
	background: rgba(8, 13, 30, 0.5);
}

.no-about-bg {
	background: rgba(8, 13, 30, 0.5);
}

.elementor-section.hero {
	position: relative;
	overflow: hidden;
}

.elementor-widget-heading .elementor-heading-title.hero-h1 {
	font-family: "DM Serif Display", serif;
	font-size: clamp(2.5rem, 5.5vw, 4rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.elementor-widget-heading .elementor-heading-title.disp {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.08;
}

.elementor-widget-heading .elementor-heading-title.eyebrow {
	font-family: Inter, system-ui, sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--blue-light);
}

.elementor-widget-button .elementor-button.btn,
.elementor-widget-button .elementor-button.btn-primary,
.elementor-widget-button .elementor-button.btn-ghost {
	background: none;
	border: none;
	border-radius: 100px;
	padding: 0;
}

.elementor-widget-button .elementor-button.btn-primary {
	background: var(--accent);
	color: #fff;
	padding: 0.75rem 1.75rem;
	box-shadow: 0 16px 48px -12px rgba(75, 123, 236, 0.45);
}

.elementor-widget-button .elementor-button.btn-ghost {
	border: 1px solid var(--border-2);
	background: rgba(13, 20, 40, 0.5);
	color: var(--fg);
	padding: 0.75rem 1.75rem;
}

.elementor-widget-button .elementor-button.btn-lg {
	padding: 0.9rem 2rem;
	font-size: 0.9375rem;
}

.elementor-widget-icon-box.outcome-item .elementor-icon-box-title {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--fg);
}

.elementor-widget-icon-box.trust-strip-item .elementor-icon-box-title {
	font-size: 0.8125rem;
	color: var(--muted-2);
}

.elementor-widget-icon-box.trust-strip-item .elementor-icon-box-icon {
	width: 32px;
	height: 32px;
}

.elementor-widget-accordion .elementor-accordion-item {
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	background: var(--surface);
	margin-bottom: 0.75rem;
	overflow: hidden;
}

.elementor-widget-accordion .elementor-tab-title {
	background: transparent;
	color: var(--fg);
	padding: 1.375rem 1.75rem;
}

.elementor-widget-accordion .elementor-tab-content {
	color: var(--muted);
	border-top: none;
	padding: 0 1.75rem 1.375rem;
}

.elementor-widget-wpforms .wpforms-container,
.elementor-widget-shortcode .wpforms-container {
	--wpforms-field-size-input-spacing: 0.75rem 1rem;
}

.elementor-widget-wpforms .wpforms-field-label,
.elementor-widget-shortcode .wpforms-field-label {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
}

.elementor-widget-wpforms input,
.elementor-widget-wpforms select,
.elementor-widget-wpforms textarea,
.elementor-widget-shortcode input,
.elementor-widget-shortcode select,
.elementor-widget-shortcode textarea {
	background: rgba(4, 6, 15, 0.6);
	border: 1px solid var(--border-2);
	border-radius: var(--r);
	color: var(--fg);
}

.elementor-widget-wpforms .wpforms-submit,
.elementor-widget-shortcode .wpforms-submit {
	background: var(--accent);
	border-radius: 100px;
	padding: 0.9rem 2rem;
}

.faq-inner {
	max-width: 52rem;
	margin-inline: auto;
}

@media (max-width: 767px) {
	.elementor-column.outcome-item,
	.elementor-column.genome-card-wrap {
		width: 100% !important;
	}
}

/* ── Elementor Pro Theme Builder header / footer ── */
:root {
	--header-h: 72px;
}

/* Safety: never show Astra chrome over Theme Builder header/footer */
body.elementor-page .ast-primary-header-bar,
body.elementor-page .main-header-bar,
body.elementor-page .ast-above-header,
body.elementor-page .ast-below-header,
body.elementor-page .ast-desktop-header-content,
body.elementor-page #ast-desktop-header,
body.elementor-page .site-footer,
body.elementor-page .ast-footer-overlay {
	display: none !important;
}

.elementor-location-header {
	position: relative;
	z-index: 10000;
}

#hdr.site-hdr,
.site-hdr.hdr {
	min-height: var(--header-h);
	background: rgba(11, 18, 32, 0.92) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
	position: sticky;
	top: 0;
	z-index: 10000;
}

/* Clean wordmark — native Heading + Image + Heading in a clickable Container */
.brand-mark {
	text-decoration: none;
	line-height: 1;
}
.brand-mark.e-con {
	width: auto !important;
}
.brand-mark .elementor-widget-heading,
.brand-mark .elementor-widget-image {
	margin: 0 !important;
	width: auto !important;
}
.brand-mark .elementor-heading-title {
	line-height: 1 !important;
}

.hdr-logo-col .brand-mark .elementor-heading-title {
	font-size: 1.75rem !important;
	letter-spacing: -0.04em !important;
}

.hdr-logo-col .brand-mark .elementor-widget-image img {
	width: 1.65rem !important;
	height: 1.65rem !important;
	object-fit: contain;
}
.brand-mark .elementor-widget-image img {
	display: block;
	filter: drop-shadow(0 0 6px rgba(76, 185, 183, 0.35));
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-mark:hover .elementor-widget-image img {
	transform: scale(1.08);
}

#hdr.site-hdr > .e-con-inner,
.site-hdr.hdr > .e-con-inner {
	min-height: 0 !important;
	padding: 0 !important;
	gap: 0 !important;
}

.admin-bar #hdr.site-hdr,
.admin-bar .site-hdr.hdr {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar #hdr.site-hdr,
	.admin-bar .site-hdr.hdr {
		top: 46px;
	}
}

/* Force single-row compact header: logo | nav | CTA */
.hdr-inner,
.hdr-inner.e-con {
	width: 100% !important;
	min-height: var(--header-h) !important;
}

.hdr-inner > .e-con-inner {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 0.75rem !important;
	min-height: var(--header-h) !important;
	width: 100% !important;
}

.hdr-logo-col,
.hdr-nav-col,
.hdr-cta-col {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.hdr-logo-col > .e-con-inner,
.hdr-nav-col > .e-con-inner,
.hdr-cta-col > .e-con-inner {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 0 !important;
	padding: 0 !important;
	min-height: 0 !important;
	width: 100% !important;
}

.hdr-logo-col {
	flex: 0 0 auto !important;
	width: auto !important;
	max-width: 280px !important;
}

.hdr-nav-col {
	flex: 1 1 auto !important;
	width: auto !important;
	justify-content: center !important;
}

.hdr-nav-col > .e-con-inner {
	justify-content: center !important;
}

.hdr-cta-col {
	flex: 0 0 auto !important;
	width: auto !important;
	justify-content: flex-end !important;
}

.hdr-cta-col > .e-con-inner {
	justify-content: flex-end !important;
}

.hdr-logo-col .brand-mark,
.hdr-nav-col .elementor-widget-nav-menu,
	.hdr-cta-col .elementor-widget-button {
	margin: 0 !important;
	width: auto !important;
}

/* Why This Matters — impact band. The background photo + dark overlay are
   both set natively on the Elementor container itself (editable via
   Style > Background in the editor) — this stylesheet only adds card look. */
.home-sec--matters {
	position: relative;
	overflow: hidden;
}

.home-sec--matters > .e-con-inner,
.home-sec--matters .matters-band {
	position: relative;
	z-index: 1;
}

.matters-band {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	gap: 2.5rem !important;
	width: 100% !important;
}

.matters-band__copy {
	flex: 1 1 54% !important;
	width: 54% !important;
	max-width: 54% !important;
	min-width: 0 !important;
	padding-top: 0.25rem;
}

.matters-band__side {
	flex: 1 1 40% !important;
	width: 40% !important;
	max-width: 40% !important;
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 0.65rem !important;
}

/* Pillar cards + quote card are native Elementor containers (B::card) —
   solid (no blur) so they render identically everywhere. */
.matters-pillar.e-con {
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.matters-pillar.e-con:hover {
	background: rgba(255, 255, 255, 0.07) !important;
	border-color: rgba(76, 185, 183, 0.4) !important;
	transform: translateY(-2px);
}

.matters-quote.e-con {
	margin-top: 0.35rem;
	border-left: 3px solid #4CB9B7 !important;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.matters-quote .elementor-icon {
	margin-bottom: 0.1rem;
	opacity: 0.9;
}

.matters-quote .elementor-widget-heading .elementor-heading-title {
	font-style: italic;
	margin: 0;
}

.matters-quote .elementor-widget-text-editor p {
	margin: 0;
	padding-top: 0.15rem;
}

@media (max-width: 900px) {
	.matters-band {
		flex-wrap: wrap !important;
	}
	.matters-band__copy,
	.matters-band__side {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
}

.home-sec--about-matters .about-matters-panel .elementor-widget-text-editor p {
	max-width: none;
	margin-inline: 0;
}

.home-sec--pull-quote.e-con > .e-con-inner {
	gap: 0.75rem !important;
}

.home-sec--pull-quote .elementor-heading-title {
	max-width: 42rem;
	margin-inline: auto;
}

.home-sec--orbit-notes-list .orbit-notes-grid {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 1rem !important;
}

.home-sec--orbit-notes-list .orbit-notes-grid > .e-con {
	flex: 1 1 calc(33.33% - 0.75rem) !important;
	min-width: 260px !important;
	max-width: 100% !important;
}

/* About — Accolades recognition cards (not client logos) */
.home-sec--about-accolades .about-accolades-row {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 0.85rem !important;
	width: 100% !important;
}

.home-sec--about-accolades .about-accolades-row > .e-con {
	min-width: 0 !important;
	flex: 1 1 0 !important;
}

.home-sec--about-accolades .about-accolade-card {
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-sec--about-accolades .about-accolade-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(45, 67, 86, 0.1) !important;
}

.home-sec--about-accolades .elementor-icon {
	width: 52px !important;
	height: 52px !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(76, 185, 183, 0.12);
}

@media (max-width: 900px) {
	.home-sec--about-accolades .about-accolades-row {
		flex-wrap: wrap !important;
	}
	.home-sec--about-accolades .about-accolades-row > .e-con {
		flex: 1 1 calc(50% - 0.5rem) !important;
		max-width: calc(50% - 0.5rem) !important;
	}
}

@media (max-width: 560px) {
	.home-sec--about-accolades .about-accolades-row > .e-con {
		flex: 1 1 100% !important;
		max-width: 100% !important;
	}
}

@media (max-width: 768px) {
	.home-sec--orbit-notes-list .orbit-notes-grid > .e-con {
		flex: 1 1 100% !important;
	}
}


.hdr-nav-col .elementor-widget-nav-menu {
	position: relative;
	width: 100%;
}

/* Desktop horizontal nav */
@media (min-width: 1025px) {
	.hdr-nav-col .elementor-nav-menu--main {
		display: block !important;
	}

	.hdr-nav-col .elementor-nav-menu--main .elementor-nav-menu {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 0.15rem;
		margin: 0 !important;
		padding: 0 !important;
	}

	.hdr-nav-col .elementor-nav-menu--main .elementor-item {
		font-family: "DM Sans", sans-serif !important;
		font-size: 12.5px !important;
		font-weight: 500 !important;
		color: #C8D0DC !important;
		padding: 6px 8px !important;
		line-height: 1.2 !important;
		white-space: nowrap;
		border-radius: 6px;
		transition: color 0.15s ease, background 0.15s ease;
	}

	.hdr-nav-col .elementor-nav-menu--main .elementor-item:hover,
	.hdr-nav-col .elementor-nav-menu--main .elementor-item.elementor-item-active,
	.hdr-nav-col .elementor-nav-menu--main .current-menu-item .elementor-item {
		color: #FFFFFF !important;
		background: rgba(255, 255, 255, 0.06);
	}

	.hdr-nav-col .elementor-menu-toggle {
		display: none !important;
	}

	.hdr-nav-col .elementor-nav-menu--dropdown {
		display: none !important;
	}
}

.hdr-cta-col .elementor-widget-button {
	margin: 0 !important;
	width: auto !important;
}

.hdr-cta-col .elementor-widget-button .elementor-button-wrapper {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
}

.hdr-cta-col .elementor-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: #2F6FED !important;
	color: #fff !important;
	border: none !important;
	border-radius: 999px !important;
	box-shadow: 0 6px 16px rgba(47, 111, 237, 0.28);
	white-space: nowrap;
	min-height: 44px !important;
	padding: 0 1.35rem !important;
	font-size: 0.875rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: 0.01em;
}

.hdr-cta-col .elementor-button .elementor-button-content-wrapper {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
}

.hdr-cta-col .elementor-button .elementor-button-text {
	line-height: 1 !important;
	padding: 0 !important;
	margin: 0 !important;
}

.hdr-cta-col .elementor-button:hover {
	background: #1D4ED8 !important;
	transform: translateY(-1px);
}

@media (max-width: 1024px) {
	#hdr.site-hdr,
	.site-hdr.hdr,
	.elementor-location-header {
		overflow: visible !important;
	}

	.hdr-cta-col {
		display: none !important;
	}

	.hdr-inner > .e-con-inner {
		flex-wrap: nowrap !important;
		justify-content: space-between !important;
		gap: 0.75rem !important;
		padding-inline: 1rem !important;
	}

	.hdr-logo-col {
		flex: 0 1 auto !important;
		width: auto !important;
		max-width: calc(100% - 3.5rem) !important;
		min-width: 0 !important;
	}

	.hdr-nav-col {
		flex: 0 0 auto !important;
		width: auto !important;
		max-width: none !important;
		margin-left: auto !important;
	}

	.hdr-nav-col > .e-con-inner {
		justify-content: flex-end !important;
		width: auto !important;
	}

	.hdr-nav-col .elementor-widget-nav-menu {
		display: flex !important;
		justify-content: flex-end !important;
		align-items: center !important;
		width: auto !important;
	}

	/* Hide desktop menu — burger only */
	.hdr-nav-col .elementor-nav-menu--main {
		display: none !important;
	}

	.hdr-nav-col .elementor-menu-toggle {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 2.75rem !important;
		height: 2.75rem !important;
		margin: 0 !important;
		padding: 0 !important;
		border-radius: 10px !important;
		border: 1px solid rgba(255, 255, 255, 0.1) !important;
		background: rgba(255, 255, 255, 0.06) !important;
		color: #ffffff !important;
		flex-shrink: 0;
		z-index: 1002;
	}

	.hdr-nav-col .elementor-menu-toggle .e-font-icon-svg,
	.hdr-nav-col .elementor-menu-toggle i {
		width: 1.15rem;
		height: 1.15rem;
		font-size: 1.15rem;
	}

	/* Full-width mobile panel below header — only when burger is open */
	.hdr-nav-col .elementor-nav-menu--dropdown {
		display: none !important;
		position: fixed !important;
		top: var(--header-h, 64px) !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		max-width: 100vw !important;
		margin: 0 !important;
		padding: 0.75rem 1rem 1.25rem !important;
		background: #0B1220 !important;
		border: none !important;
		border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
		box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45) !important;
		z-index: 10001 !important;
		max-height: calc(100dvh - var(--header-h, 64px));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.hdr-nav-col .elementor-menu-toggle.elementor-active ~ .elementor-nav-menu--dropdown,
	.hdr-nav-col .elementor-menu-toggle.elementor-active + .elementor-nav-menu--dropdown {
		display: block !important;
	}

	.admin-bar .hdr-nav-col .elementor-nav-menu--dropdown {
		top: calc(var(--header-h, 64px) + 32px) !important;
		max-height: calc(100dvh - var(--header-h, 64px) - 32px);
	}

	.hdr-nav-col .elementor-nav-menu--dropdown .elementor-nav-menu {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 0.2rem !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.hdr-nav-col .elementor-nav-menu--dropdown .elementor-item {
		display: block !important;
		width: 100% !important;
		padding: 0.8rem 1rem !important;
		font-family: "DM Sans", sans-serif !important;
		font-size: 0.9375rem !important;
		font-weight: 500 !important;
		line-height: 1.35 !important;
		color: #E8EEF5 !important;
		white-space: normal !important;
		border-radius: 10px !important;
		text-align: left !important;
	}

	.hdr-nav-col .elementor-nav-menu--dropdown .elementor-item:hover,
	.hdr-nav-col .elementor-nav-menu--dropdown .elementor-item:focus,
	.hdr-nav-col .elementor-nav-menu--dropdown .current-menu-item .elementor-item {
		background: rgba(255, 255, 255, 0.08) !important;
		color: #ffffff !important;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .hdr-nav-col .elementor-nav-menu--dropdown {
		top: calc(var(--header-h, 64px) + 46px) !important;
		max-height: calc(100dvh - var(--header-h, 64px) - 46px);
	}
}

/* Dropdown / mobile nav panel — base colors */
.elementor-nav-menu--dropdown {
	background: #0B1220 !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.elementor-nav-menu--dropdown .elementor-item {
	color: #E8EEF5 !important;
}

/* ── Footer ── */
.site-ftr.footer,
.elementor-location-footer .site-ftr {
	position: relative;
	background: linear-gradient(180deg, #0A1019 0%, #070B14 100%) !important;
	border-top: none;
	overflow: hidden;
}

.site-ftr.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #4CB9B7 35%, #2F6FED 65%, transparent 100%);
	opacity: 0.85;
	pointer-events: none;
}

	.footer-inner {
	position: relative;
	z-index: 1;
}

.ftr-grid {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	gap: 3rem !important;
	width: 100% !important;
	padding-bottom: 2.25rem;
}

.ftr-grid > .e-con {
	min-width: 0 !important;
}

.ftr-grid > .e-con:first-child {
	flex: 1 1 42% !important;
	width: 42% !important;
	max-width: 42% !important;
}

.ftr-grid > .e-con:last-child {
	flex: 1 1 58% !important;
	width: 58% !important;
	max-width: 58% !important;
}

.ftr-brand .brand-mark {
	margin-bottom: 0.15rem;
}

.ftr-brand .elementor-widget-text-editor p {
	max-width: 22rem;
	margin: 0;
}

.ftr-brand-actions {
	margin-top: 0.15rem;
}

.ftr-brand-actions .elementor-button {
	font-size: 0.875rem !important;
	padding: 0.7rem 1.35rem !important;
	border-radius: 999px !important;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ftr-brand-actions .elementor-button:hover {
	transform: translateY(-1px);
}

.ftr-brand-actions .elementor-widget-icon .elementor-icon {
	border-radius: 10px !important;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ftr-brand-actions .elementor-widget-icon:hover .elementor-icon {
	background: #4CB9B7 !important;
	color: #070B14 !important;
	transform: translateY(-1px);
}

.ftr-nav-group {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	justify-content: flex-end !important;
	gap: 3.5rem !important;
}

.ftr-nav-group > .ftr-nav-col {
	flex: 0 1 auto !important;
	min-width: 9.5rem;
}

.ftr-nav-col .elementor-heading-title {
	margin: 0;
}

.ftr-nav-col .elementor-icon-list-items {
	gap: 0.15rem;
}

.ftr-nav-col .elementor-icon-list-icon {
	display: none !important;
}

.ftr-nav-col .elementor-icon-list-item a {
	text-decoration: none;
	padding: 0.28rem 0;
	display: inline-block;
	transition: color 0.2s ease, transform 0.2s ease;
}

.ftr-nav-col .elementor-icon-list-item:hover .elementor-icon-list-text {
	color: #FFFFFF !important;
}

.ftr-nav-col .elementor-icon-list-item:hover a {
	transform: translateX(3px);
}

.ftr-bottom {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
}

.ftr-bottom .elementor-widget-text-editor {
	margin: 0;
}

.ftr-bottom .elementor-widget-text-editor p {
	margin: 0;
}

.ftr-bottom p a {
	color: #C8D0DC;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ftr-bottom p a:hover {
	color: #4CB9B7;
}

@media (max-width: 900px) {
	.ftr-grid {
		flex-wrap: wrap !important;
		gap: 2.25rem !important;
	}
	.ftr-grid > .e-con:first-child,
	.ftr-grid > .e-con:last-child {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	.ftr-nav-group {
		flex-wrap: wrap !important;
		justify-content: flex-start !important;
		gap: 2rem !important;
	}
}

@media (max-width: 767px) {
	.ftr-bottom {
		flex-wrap: wrap !important;
		gap: 0.65rem !important;
	}
	.ftr-bottom .elementor-widget-text-editor:last-child p {
		text-align: left !important;
	}
}

/* -------------------------------------------
   WebVeda-style Elementor-native homepage
   ------------------------------------------- */

.wv-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse 70% 60% at 85% 40%, rgba(76, 185, 183, 0.18), transparent 55%),
		radial-gradient(ellipse 50% 50% at 10% 80%, rgba(75, 123, 236, 0.12), transparent 60%),
		#0B1220 !important;
}

.wv-hero .elementor-heading-title,
.wv-hero .elementor-icon-box-title,
.wv-hero .elementor-icon-box-title span {
	color: #fff;
}

.wv-hero-grid {
	align-items: center;
	max-width: 1200px;
	margin-inline: auto;
}

.wv-proof-label .elementor-heading-title {
	font-size: 0.9375rem !important;
	font-weight: 500 !important;
	color: rgba(255, 255, 255, 0.85) !important;
	letter-spacing: 0.01em;
}

.wv-hero-title .elementor-heading-title {
	font-family: "DM Sans", "Inter", system-ui, sans-serif !important;
	font-size: clamp(2.25rem, 5vw, 3.75rem) !important;
	font-weight: 800 !important;
	line-height: 1.08 !important;
	letter-spacing: -0.03em !important;
	color: #fff !important;
	margin: 0 0 1rem !important;
}

.wv-hero-sub {
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78) !important;
	max-width: 32rem;
}

.wv-hero-sub p { margin: 0; color: inherit; }

.wv-hero .btn-primary,
.wv-hero .elementor-button {
	background: #3B82F6 !important;
	border: none !important;
	border-radius: 9999px !important;
	padding: 1rem 1.75rem !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	box-shadow: 0 10px 28px rgba(59, 130, 246, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wv-hero .btn-primary:hover,
.wv-hero .elementor-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(59, 130, 246, 0.45);
	background: #2563EB !important;
}

.wv-hero-features .elementor-icon-box-wrapper {
	align-items: center;
}

.wv-feature .elementor-icon {
	color: #fff !important;
	font-size: 1.125rem !important;
}

.wv-feature .elementor-icon-box-title,
.wv-feature .elementor-icon-box-title span {
	font-size: 0.8125rem !important;
	font-weight: 600 !important;
	color: rgba(255, 255, 255, 0.9) !important;
	line-height: 1.3 !important;
}

.wv-hero-photo img {
	width: 100%;
	max-width: 480px;
	height: auto;
	border-radius: 1.25rem;
	object-fit: cover;
	box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
	display: block;
	margin-inline: auto;
}

.wv-trust {
	border-bottom: 1px solid rgba(59, 91, 109, 0.1);
}

.wv-trust-label .elementor-heading-title {
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	color: #5A6B78 !important;
	margin-bottom: 1.5rem !important;
}

.wv-logo-grid {
	max-width: 1100px;
	margin-inline: auto;
	align-items: center;
}

.wv-logo-col {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 4.5rem;
	padding: 0.5rem;
}

.wv-logo img {
	width: 100%;
	max-width: 140px;
	height: 40px !important;
	object-fit: contain !important;
	filter: none;
	opacity: 1;
	transition: transform 0.25s ease;
}

.wv-logo:hover img {
	transform: scale(1.05);
}

.wv-section { }
.wv-h2 .elementor-heading-title {
	font-family: "DM Sans", "Inter", system-ui, sans-serif !important;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	color: #2D4356 !important;
}

.wv-h2--light .elementor-heading-title { color: #fff !important; }

.wv-pain-card {
	background: #fff;
	border: 1px solid rgba(59, 91, 109, 0.1);
	border-radius: 1rem;
	padding: 1.25rem 1.5rem;
	height: 100%;
	box-shadow: 0 8px 24px rgba(45, 67, 86, 0.06);
}

.wv-pain-card .elementor-icon { color: #ba1a1a !important; }
.wv-pain-card .elementor-icon-box-title { color: #2D4356 !important; font-size: 1rem !important; font-weight: 600 !important; }

.wv-symptom {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1.25rem;
	padding: 1.75rem 1.25rem;
	height: 100%;
}

.wv-symptom .elementor-icon { color: #4CB9B7 !important; }
.wv-symptom .elementor-icon-box-title,
.wv-symptom .elementor-icon-box-title span { color: #fff !important; font-size: 1rem !important; }

.wv-stat-callout .elementor-heading-title {
	font-size: clamp(1.125rem, 2.5vw, 1.5rem) !important;
	font-weight: 700 !important;
	color: #4CB9B7 !important;
	max-width: 40rem;
	margin-inline: auto;
}

.wv-step-num .elementor-heading-title {
	font-size: 2.75rem !important;
	font-weight: 800 !important;
	color: rgba(59, 91, 109, 0.15) !important;
	line-height: 1 !important;
}

.wv-step-card {
	background: #fff;
	border: 1px solid rgba(59, 91, 109, 0.1);
	border-radius: 1.25rem;
	padding: 1.5rem 1.25rem 1.75rem;
	height: 100%;
	box-shadow: 0 8px 28px rgba(45, 67, 86, 0.06);
}

.wv-step-card .elementor-icon { color: #3B5B6D !important; }
.wv-step-card .elementor-icon-box-title { color: #2D4356 !important; font-weight: 700 !important; }
.wv-step-card .elementor-icon-box-description { color: #5A6B78 !important; font-size: 0.875rem !important; }

.wv-quote-text .elementor-heading-title {
	font-size: clamp(1.375rem, 3vw, 2rem) !important;
	font-style: italic !important;
	font-weight: 500 !important;
	color: #fff !important;
	line-height: 1.45 !important;
	max-width: 48rem;
	margin: 0 auto 1.25rem !important;
}

.wv-quote-attr .elementor-heading-title {
	font-size: 1rem !important;
	font-weight: 700 !important;
	color: #4CB9B7 !important;
}

.wv-badge .elementor-heading-title {
	display: inline-block !important;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	background: rgba(76, 185, 183, 0.12);
	border: 1px solid rgba(76, 185, 183, 0.3);
	font-size: 0.8125rem !important;
	font-weight: 700 !important;
	color: #3B5B6D !important;
	margin-bottom: 0.75rem !important;
}

.wv-result-card {
	background: #fff;
	border: 1px solid rgba(59, 91, 109, 0.1);
	border-radius: 1.25rem;
	padding: 2rem 1.5rem;
	box-shadow: 0 8px 28px rgba(45, 67, 86, 0.07);
}

.wv-metric .elementor-heading-title {
	font-size: clamp(2rem, 4vw, 2.75rem) !important;
	font-weight: 800 !important;
	color: #4CB9B7 !important;
	line-height: 1 !important;
	margin-bottom: 0.5rem !important;
}

.wv-metric-label .elementor-heading-title {
	font-size: 1rem !important;
	font-weight: 600 !important;
	color: #2D4356 !important;
}

.wv-audit-num .elementor-heading-title {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: linear-gradient(145deg, #4CB9B7, #3B5B6D);
	color: #fff !important;
	font-size: 1.125rem !important;
	font-weight: 800 !important;
	margin-bottom: 1rem !important;
}

.wv-audit-title .elementor-heading-title {
	font-size: 1.0625rem !important;
	font-weight: 700 !important;
	color: #2D4356 !important;
	margin-bottom: 0.5rem !important;
}

.wv-urgency .elementor-heading-title {
	display: inline-flex !important;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 1rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.85) !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1.25rem !important;
}

.wv-cta-actions {
	max-width: 40rem;
	margin-inline: auto;
	gap: 1rem;
}

.btn-ghost-light .elementor-button,
.elementor-widget.btn-ghost-light .elementor-button {
	background: transparent !important;
	border: 1.5px solid rgba(76, 185, 183, 0.55) !important;
	color: #fff !important;
	border-radius: 9999px !important;
	padding: 1rem 1.75rem !important;
	font-weight: 700 !important;
}

.wv-contact-wrap {
	max-width: 36rem;
	margin-inline: auto;
}

.wv-contact-form {
	background: #F4F6F8;
	border-radius: 1.25rem;
	padding: 1.5rem;
}

/* Global button polish for native homepage */
.btn.btn-primary .elementor-button,
.elementor-widget.btn-primary .elementor-button {
	background: #3B5B6D !important;
	border-radius: 9999px !important;
	border: none !important;
	font-weight: 700 !important;
	padding: 0.9rem 1.6rem !important;
}

.btn.btn-primary .elementor-button:hover,
.elementor-widget.btn-primary .elementor-button:hover {
	background: #2D4356 !important;
}

@media (max-width: 767px) {
	.wv-hero-photo img { max-width: 320px; }
	.wv-cta-actions .elementor-column { width: 100% !important; }
	.wv-cta-actions .elementor-widget-button .elementor-button { width: 100%; }
}

/* Brand logo � Revolyts */
.custom-logo-link img.custom-logo,
.site-logo-img,
.ast-header-logo img {
	max-height: 48px !important;
	width: auto !important;
}
.no-brand-lockup__logo {
	height: 40px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

/* WebVeda-style home hero */
#hero.e-con,
.elementor-element#hero {
	overflow: hidden;
}
#hero .elementor-widget-image img {
	display: block;
	width: 100%;
	max-width: 100%;
	object-fit: cover;
	object-position: top center;
	border-radius: 0;
}
#hero .elementor-widget-button .elementor-button {
	background-color: #2F6FED !important;
	border-radius: 999px !important;
	padding: 16px 32px !important;
	font-weight: 700 !important;
}
#hero .elementor-widget-button .elementor-button:hover {
	background-color: #1D4ED8 !important;
}

/* Hero: grey left panel + founder shifted right
   Target #hero alone — Elementor containers ignore `_css_classes`. */
#hero,
#hero.no-hero-overlay,
.no-hero-overlay.e-con,
.elementor-element.no-hero-overlay {
	position: relative;
	min-height: 520px !important;
	/* hero_founder.png is pre-composed — use natural cover framing */
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-color: #1A1410 !important;
}
#hero::before,
#hero.no-hero-overlay::before,
.no-hero-overlay.e-con::before,
.elementor-element.no-hero-overlay::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	pointer-events: none !important;
	opacity: 1 !important;
	/* Solid grey on left for text, soft fade into photo */
	background-color: transparent !important;
	background-image: linear-gradient(
		90deg,
		rgba(32, 36, 42, 0.96) 0%,
		rgba(32, 36, 42, 0.92) 22%,
		rgba(32, 36, 42, 0.78) 38%,
		rgba(32, 36, 42, 0.42) 55%,
		rgba(32, 36, 42, 0.12) 72%,
		rgba(32, 36, 42, 0) 100%
	) !important;
}
#hero > .e-con-inner,
#hero.no-hero-overlay > .e-con-inner,
#hero.no-hero-overlay > .elementor-container,
.no-hero-overlay > .e-con-inner {
	position: relative;
	z-index: 1;
}
#hero .elementor-heading-title {
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
#hero .elementor-widget-button .elementor-button {
	background-color: #2F6FED !important;
	border-radius: 999px !important;
	padding: 14px 28px !important;
	font-weight: 700 !important;
	letter-spacing: 0.01em;
	box-shadow: 0 10px 28px rgba(47, 111, 237, 0.35);
}
#hero .elementor-widget-button .elementor-button:hover {
	background-color: #1D4ED8 !important;
}
#hero .elementor-icon-box-title {
	white-space: nowrap;
}
@media (max-width: 767px) {
	#hero,
	#hero.no-hero-overlay,
	.no-hero-overlay.e-con {
		min-height: 480px !important;
		background-size: cover !important;
		background-position: 70% center !important;
	}
	#hero::before,
	#hero.no-hero-overlay::before,
	.no-hero-overlay.e-con::before {
		background-image: linear-gradient(
			180deg,
			rgba(32, 36, 42, 0.94) 0%,
			rgba(32, 36, 42, 0.82) 55%,
			rgba(32, 36, 42, 0.35) 100%
		) !important;
	}
}

/* -------------------------------------------
   Homepage modern sections (below hero)
   ------------------------------------------- */

.home-sec .elementor-heading-title {
	letter-spacing: -0.02em;
}

.home-sec--trust {
	overflow: hidden;
}

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

.logo-marquee__track {
	display: flex;
	width: max-content;
	animation: logo-marquee-scroll 38s linear infinite;
}

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

.logo-marquee__group {
	display: flex;
	align-items: center;
	gap: 2.75rem;
	padding-inline: 1.5rem;
}

/*
 * Optical box: every logo fits inside the same frame.
 * height/width auto + max-* keeps true aspect ratio without over-enlarging.
 */
.logo-marquee__slot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	width: 168px;
	flex: 0 0 168px;
	box-sizing: border-box;
}

.logo-marquee__img {
	display: block;
	width: auto !important;
	height: auto !important;
	max-height: 48px !important;
	max-width: 148px !important;
	object-fit: contain;
	object-position: center;
	filter: none;
	opacity: 1;
	transition: transform 0.25s ease;
}

.logo-marquee__slot:hover .logo-marquee__img {
	transform: scale(1.06);
}

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

@media (max-width: 767px) {
	.logo-marquee__slot {
		height: 48px;
		width: 132px;
		flex-basis: 132px;
	}
	.logo-marquee__img {
		max-height: 40px !important;
		max-width: 118px !important;
	}
	.logo-marquee__group {
		gap: 1.75rem;
	}
}

/* Compact “Is this you?” signal board (native heading/text/card widgets) */
.drift-board__head {
	margin-bottom: 1.5rem !important;
}

.drift-board__head .elementor-button {
	background: #14202B !important;
	border-radius: 999px !important;
	box-shadow: 0 10px 24px rgba(20, 32, 43, 0.18);
	transition: transform 0.2s ease, background 0.2s ease;
}

.drift-board__head .elementor-button:hover {
	transform: translateY(-2px);
	background: #0B1220 !important;
}

.drift-board__grid.e-con {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	justify-content: space-between !important;
	gap: 0.75rem !important;
	width: 100% !important;
}

.drift-board__grid.e-con > .e-con {
	flex: 1 1 0 !important;
	width: 25% !important;
	max-width: 25% !important;
	min-width: 0 !important;
}

.drift-signal.e-con {
	height: 100%;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

@media (max-width: 1024px) {
	.drift-board__grid.e-con {
		flex-wrap: wrap !important;
	}
	.drift-board__grid.e-con > .e-con {
		flex: 1 1 calc(50% - 0.5rem) !important;
		width: calc(50% - 0.5rem) !important;
		max-width: calc(50% - 0.5rem) !important;
	}
}

@media (max-width: 640px) {
	.drift-board__grid.e-con > .e-con {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
}

.home-sec--mirror .drift-board__grid > .e-con:hover .drift-signal {
	background: #fff !important;
	border-color: rgba(47, 111, 237, 0.28) !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(15, 26, 36, 0.06);
}

.drift-signal__tag {
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #0D9488;
	background: rgba(13, 148, 136, 0.1);
	border-radius: 999px;
	padding: 0.2rem 0.5rem;
}

@media (max-width: 640px) {
	.drift-board__head {
		align-items: flex-start !important;
	}
	.drift-board__head .elementor-button {
		width: 100%;
		justify-content: center;
	}
}

.home-icon-pill {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 8px;
	background: rgba(76, 185, 183, 0.14);
	color: #4CB9B7;
	font-size: 1.25rem;
}

.home-icon-pill--light {
	background: rgba(47, 111, 237, 0.1);
	color: #2F6FED;
	margin: 0 0 4px;
}

/* Orbit Drift — reference 2-col scene + orbit animation */
.home-sec--drift .drift-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 1.75rem !important;
}

.home-sec--drift .drift-left {
	flex: 1 1 52% !important;
	width: 52% !important;
	max-width: 56% !important;
	min-width: 0 !important;
}

.home-sec--drift .drift-right {
	flex: 0 0 40% !important;
	width: 40% !important;
	max-width: 42% !important;
	min-width: 260px !important;
}

.home-sec--drift .drift-left .elementor-widget-icon-box .elementor-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(76, 185, 183, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-sec--drift .drift-left > .e-con,
.home-sec--drift .drift-left .e-con.e-child {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-sec--drift .drift-left .e-con.e-child:hover {
	transform: translateX(4px);
}

.drift-visual {
	position: relative;
	width: min(100%, 360px);
	min-height: 360px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.drift-orbit {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.drift-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(45, 67, 86, 0.14);
	animation: drift-spin 18s linear infinite;
}

.drift-ring--1 {
	width: 70%;
	height: 70%;
	animation-duration: 14s;
}

.drift-ring--2 {
	width: 88%;
	height: 88%;
	animation-duration: 22s;
	animation-direction: reverse;
	border-style: dashed;
}

.drift-ring--3 {
	width: 100%;
	height: 100%;
	animation-duration: 28s;
	opacity: 0.7;
}

.drift-core {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #4CB9B7, #2D4356);
	box-shadow: 0 0 24px rgba(76, 185, 183, 0.45);
	animation: drift-pulse 2.4s ease-in-out infinite;
}

.drift-stat {
	position: relative;
	z-index: 2;
	width: min(100%, 260px);
	padding: 1.75rem 1.4rem 1.6rem;
	border-radius: 28px;
	background: #15202B;
	color: #fff;
	text-align: center;
	box-shadow: 0 28px 60px rgba(21, 32, 43, 0.35);
	animation: drift-float 4.5s ease-in-out infinite;
}

.drift-badge {
	display: inline-block;
	margin-bottom: 0.75rem;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(76, 185, 183, 0.55);
	color: #4CB9B7;
	font-family: "DM Sans", sans-serif;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.drift-metric {
	display: block;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(3.2rem, 7vw, 4rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	color: #fff;
	margin-bottom: 0.65rem;
}

.drift-text {
	margin: 0;
	font-family: "DM Sans", sans-serif;
	font-size: 0.88rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.78);
}

@keyframes drift-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes drift-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.18); opacity: 0.85; }
}

@keyframes drift-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* Company DNA — 4 equal columns (screenshot style) */
.home-sec--dna .dna-row {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	gap: 1rem !important;
	width: 100% !important;
}

.home-sec--dna .dna-row > .e-con {
	flex: 1 1 0 !important;
	width: 25% !important;
	max-width: 25% !important;
	min-width: 0 !important;
	text-align: center;
}

.home-sec--dna .dna-row .elementor-icon {
	width: 84px;
	height: 84px;
	box-shadow: inset 0 3px 10px rgba(255, 255, 255, 0.65), 0 10px 22px rgba(45, 67, 86, 0.07);
	transition: transform 0.25s ease;
}

.home-sec--dna .dna-row .elementor-widget-icon {
	margin: 0 auto 1rem !important;
	width: 84px;
}

.home-sec--dna .dna-row > .e-con:hover .elementor-icon {
	transform: translateY(-4px) scale(1.04);
}

.home-sec--dna .elementor-heading-title {
	color: #1A2B47 !important;
}

.home-sec--dna .dna-row .elementor-widget-text-editor p {
	max-width: 16rem;
	margin-inline: auto;
	line-height: 1.5;
	color: #6B7280;
}

/* GTM Genome — 4 cards in one row (screenshot style) */
.home-sec--genome .genome-row {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	justify-content: space-between !important;
	gap: 0.85rem !important;
	width: 100% !important;
}

.home-sec--genome .genome-row > .e-con {
	flex: 1 1 0 !important;
	width: 25% !important;
	max-width: 25% !important;
	min-width: 0 !important;
}

.home-sec--genome .genome-row > .e-con > .e-con {
	height: 100%;
	border-radius: 22px !important;
	box-shadow: 0 10px 28px rgba(45, 67, 86, 0.08) !important;
}

.home-sec--genome .genome-row > .e-con > .e-con > .elementor-widget:last-child {
	margin-top: auto;
}

.genome-outcome {
	display: inline-flex;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: rgba(76, 185, 183, 0.16);
	color: #0F766E;
	font-family: "DM Sans", sans-serif;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.home-sec--genome .genome-row > .e-con > .e-con {
	display: flex !important;
	flex-direction: column !important;
}

.home-sec--genome .e-con.e-child {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-sec--genome .genome-row > .e-con:hover > .e-con {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(45, 67, 86, 0.12) !important;
}

/* DNA subhead — native text-editor widget, always wraps within a readable measure */
.home-sec--dna > .e-con-inner > .elementor-widget-text-editor {
	max-width: 46rem;
	margin: 0 auto 0.5rem;
}

.home-sec--dna > .e-con-inner > .elementor-widget-text-editor p {
	margin: 0;
	text-align: center;
}

/* Testimonials — 3 equal-height vertical cards */
.home-sec--stories .stories-row {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 1.25rem !important;
	width: 100% !important;
	margin-top: 0.5rem;
}

.home-sec--stories .stories-row > .e-con {
	flex: 1 1 0 !important;
	width: 33.333% !important;
	max-width: 33.333% !important;
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	align-self: stretch !important;
}

.home-sec--stories .stories-row > .e-con > .elementor-widget,
.home-sec--stories .stories-row > .e-con .elementor-widget-html,
.home-sec--stories .stories-row > .e-con .elementor-widget-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.story-card.e-con {
	flex: 1 1 auto;
	height: 100%;
	min-height: 100%;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-sec--stories .stories-row > .e-con:hover .story-card {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(45, 67, 86, 0.12) !important;
}

.story-card .elementor-widget-text-editor p {
	margin: 0 0 0.75rem;
	color: #2D4356;
	font-family: "DM Sans", sans-serif;
	font-size: 0.88rem;
	line-height: 1.6;
	font-weight: 400;
}

.story-card .elementor-widget-text-editor p:last-child {
	margin-bottom: 0;
}

.story-card > .e-con:last-child {
	margin-top: auto;
}

@media (max-width: 1024px) {
	.home-sec--drift .drift-layout {
		flex-wrap: wrap !important;
		flex-direction: column !important;
	}
	.home-sec--drift .drift-left,
	.home-sec--drift .drift-right {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}
	.home-sec--dna .dna-row,
	.home-sec--genome .genome-row,
	.home-sec--stories .stories-row,
	.home-sec--audit .audit-row {
		flex-wrap: wrap !important;
	}
	.home-sec--dna .dna-row > .e-con,
	.home-sec--genome .genome-row > .e-con {
		flex: 1 1 calc(50% - 0.5rem) !important;
		width: calc(50% - 0.5rem) !important;
		max-width: calc(50% - 0.5rem) !important;
	}
	.home-sec--stories .stories-row > .e-con,
	.home-sec--audit .audit-row > .e-con {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	.home-sec--dna > .e-con-inner > .elementor-widget-text-editor {
		max-width: 34rem;
		padding-inline: 0.5rem;
	}
}

@media (max-width: 640px) {
	.home-sec--dna .dna-row > .e-con,
	.home-sec--genome .genome-row > .e-con {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.drift-ring,
	.drift-core,
	.drift-stat {
		animation: none !important;
	}
}

.home-step-num {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 8px;
	background: linear-gradient(135deg, #2F6FED, #4CB9B7);
	color: #fff;
	font-family: "DM Sans", sans-serif;
	font-weight: 800;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
}

/* Audit — modern 3-step cards matching homepage */
.home-sec--audit .audit-row {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 1.15rem !important;
	width: 100% !important;
	position: relative;
}

.home-sec--audit .audit-row > .e-con {
	flex: 1 1 0 !important;
	width: 33.333% !important;
	max-width: 33.333% !important;
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}

.home-sec--audit .audit-row > .e-con > .elementor-widget,
.home-sec--audit .audit-row > .e-con .elementor-widget-html,
.home-sec--audit .audit-row > .e-con .elementor-widget-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.audit-card.e-con {
	flex: 1 1 auto;
	height: 100%;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	position: relative;
	overflow: hidden;
}

.audit-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--accent, #2F6FED);
	opacity: 0.9;
}

.audit-card--blue { --accent: #2F6FED; }
.audit-card--teal { --accent: #0D9488; }
.audit-card--violet { --accent: #7C3AED; }

.home-sec--audit .audit-row > .e-con:hover .audit-card {
	transform: translateY(-4px);
	background: color-mix(in srgb, var(--accent, #2F6FED) 12%, #FFFFFF) !important;
	box-shadow: 0 18px 40px rgba(45, 67, 86, 0.1) !important;
}

/* 1. number  2. title  3. description  4. tag pill (native widgets, in order) */
.audit-card > .elementor-element:nth-child(1) .elementor-heading-title {
	display: block;
	margin-bottom: 0.4rem;
	line-height: 1;
	letter-spacing: -0.02em;
	opacity: 0.85;
}

.audit-card > .elementor-element:nth-child(2) .elementor-heading-title {
	line-height: 1.35;
}

.audit-card > .elementor-element:nth-child(3) {
	flex: 1 1 auto;
}

.audit-card > .elementor-element:nth-child(4) {
	margin-top: auto;
}

.audit-card__tag {
	display: inline-block;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--accent, #2F6FED) 15%, transparent);
	border: 1px solid color-mix(in srgb, var(--accent, #2F6FED) 30%, transparent);
	color: color-mix(in srgb, var(--accent, #2F6FED) 80%, #0F766E);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.audit-cta__note {
	text-align: center;
}

.home-sec--cta {
	position: relative;
	overflow: hidden;
}

.home-sec--cta::before {
	content: "";
	position: absolute;
	inset: -20% auto auto 50%;
	width: 620px;
	height: 620px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(47, 111, 237, 0.22), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.home-sec--cta > .e-con-inner,
.home-sec--cta > .elementor-container {
	position: relative;
	z-index: 1;
}

.home-sec--cta .cta-actions {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 1rem !important;
	width: 100% !important;
	margin-top: 0.5rem;
}

.home-sec--cta .cta-actions > .elementor-widget {
	width: auto !important;
	max-width: none !important;
	flex: 0 0 auto !important;
}

.home-sec--cta .cta-actions .elementor-button-wrapper {
	text-align: center;
}

.home-sec--cta .cta-actions .elementor-button {
	min-width: 11.5rem;
	justify-content: center;
}

.home-sec .elementor-button {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-sec .elementor-button:hover {
	transform: translateY(-2px);
}

@media (max-width: 640px) {
	.home-sec--cta .cta-actions {
		flex-wrap: wrap !important;
	}
	.home-sec--cta .cta-actions > .elementor-widget {
		width: 100% !important;
	}
	.home-sec--cta .cta-actions .elementor-button {
		width: 100%;
	}
}

/* ══════════════════════════════════════════
   DNA Discovery page (engagement)
   ══════════════════════════════════════════ */
.home-sec--dna-hero {
	position: relative;
	overflow: hidden;
}

.home-sec--dna-hero::before {
	content: "";
	position: absolute;
	inset: -30% auto auto 50%;
	width: 680px;
	height: 680px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(47, 111, 237, 0.28), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.home-sec--dna-hero > .e-con-inner,
.home-sec--dna-hero > .elementor-container {
	position: relative;
	z-index: 1;
}

.home-sec--dna-hero .dna-hero-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 2.25rem !important;
	width: 100% !important;
}

.home-sec--dna-hero .dna-hero-copy,
.home-sec--dna-hero .dna-hero-stats {
	min-width: 0 !important;
}

.home-sec--dna-hero .dna-hero-copy .elementor-widget-text-editor p {
	max-width: 34rem;
	margin-inline: 0;
	text-align: left;
}

.home-sec--dna-hero .dna-hero-stats-card > .e-con-inner {
	gap: 1.15rem !important;
}

.home-sec--dna-hero .dna-hero-stats-card .elementor-icon-box-wrapper {
	align-items: flex-start !important;
}

.home-sec--dna-page .dna-zig-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 2.5rem !important;
	width: 100% !important;
}

.home-sec--dna-page .dna-zig-layout--reverse {
	flex-direction: row-reverse !important;
}

.home-sec--dna-page .dna-zig-col {
	min-width: 0 !important;
}

.home-sec--dna-page .dna-label-row {
	width: 100% !important;
}

.home-sec--dna-page .dna-label-row .elementor-widget-icon,
.home-sec--dna-page .dna-label-row .elementor-widget-heading {
	margin-bottom: 0 !important;
}

.home-sec--dna-zig .dna-zig-col .elementor-widget-text-editor p,
.home-sec--dna-zig .dna-zig-col .elementor-widget-heading .elementor-heading-title {
	max-width: 36rem;
	margin-inline: 0;
	text-align: left;
}

.home-sec--dna-page .dna-beats-card {
	width: 100%;
	max-width: 36rem;
	border-left: 3px solid rgba(47, 111, 237, 0.35) !important;
}

.home-sec--dna-why .dna-beats-card {
	border-left-color: rgba(47, 111, 237, 0.45) !important;
}

.home-sec--dna-fit .dna-beats-card {
	border-left-color: rgba(76, 185, 183, 0.55) !important;
}

.home-sec--dna-page .dna-beats-card .elementor-icon-list-items {
	margin: 0;
	padding: 0;
}

.home-sec--dna-page .dna-beats-card .elementor-icon-list-item {
	align-items: flex-start !important;
	padding-block: 0.12rem;
}

.home-sec--dna-dark .dna-immerse-left .elementor-icon-box-wrapper {
	align-items: flex-start !important;
}

.home-sec--dna-deliver .dna-v2-step .elementor-icon-box-wrapper {
	align-items: flex-start !important;
}

.home-sec--dna-page .elementor-widget-text-editor p {
	max-width: 46rem;
	margin-inline: auto;
}

/* Shared split layouts (dreams + fit) */
.home-sec--dna-dreams .dna-split-layout,
.home-sec--dna-fit .dna-fit-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	justify-content: space-between !important;
	gap: 1.75rem !important;
	width: 100% !important;
}

.home-sec--dna-dreams .dna-split-left,
.home-sec--dna-dreams .dna-split-right,
.home-sec--dna-fit .dna-fit-left,
.home-sec--dna-fit .dna-fit-right {
	min-width: 0 !important;
}

.home-sec--dna-dreams .dna-split-left .elementor-widget-text-editor p,
.home-sec--dna-dreams .dna-split-right .elementor-widget-text-editor p,
.home-sec--dna-fit .dna-fit-left .elementor-widget-text-editor p,
.home-sec--dna-fit .dna-fit-right .elementor-widget-text-editor p,
.home-sec--dna-dark .elementor-widget-text-editor p,
.home-sec--dna-framework .elementor-widget-text-editor p,
.home-sec--dna-why .elementor-widget-text-editor p {
	max-width: none;
	margin-inline: 0;
}

/* Why DNA Discovery — modern split */
.home-sec--dna-why .dna-why-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	justify-content: space-between !important;
	gap: 1.75rem !important;
	width: 100% !important;
}

.home-sec--dna-why .dna-why-left,
.home-sec--dna-why .dna-why-right {
	min-width: 0 !important;
}

.home-sec--dna-why .dna-why-left .elementor-widget-text-editor p {
	max-width: 28rem;
	margin-inline: 0;
}

.dna-why-clarity {
	padding: 1rem 1.15rem;
	border-radius: 16px;
	background: #FFFFFF;
	border: 1px solid rgba(45, 67, 86, 0.08);
	border-left: 3px solid #2F6FED;
	box-shadow: 0 10px 28px rgba(45, 67, 86, 0.06);
	width: 100%;
}

.dna-why-clarity__line {
	margin: 0 !important;
	font-family: "DM Sans", sans-serif !important;
	font-size: 1.05rem !important;
	line-height: 1.45 !important;
	color: #6B7280 !important;
}

.dna-why-clarity__line--strong {
	margin-top: 0.25rem !important;
	color: #1A2B47 !important;
	font-weight: 800 !important;
	font-size: 1.2rem !important;
}

.dna-why-panel {
	height: 100%;
	padding: 1.4rem 1.35rem 1.25rem;
	border-radius: 20px;
	background: #FFFFFF;
	border: 1px solid rgba(45, 67, 86, 0.08);
	box-shadow: 0 14px 36px rgba(45, 67, 86, 0.08);
}

.dna-why-panel__label {
	margin: 0 0 0.3rem;
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	color: #1A2B47;
}

.dna-why-panel__sub {
	margin: 0 0 1rem;
	font-family: "DM Sans", sans-serif;
	font-size: 0.92rem;
	line-height: 1.5;
	color: #6B7280;
}

.dna-why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.55rem;
	margin-bottom: 1rem;
}

.dna-why-chip {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0.9rem;
	border-radius: 12px;
	background: #F3F5F7;
	border: 1px solid rgba(45, 67, 86, 0.06);
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.dna-why-chip:hover {
	transform: translateX(3px);
	background: #fff;
	border-color: rgba(76, 185, 183, 0.35);
}

.dna-why-chip__icon {
	flex: 0 0 auto;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(76, 185, 183, 0.14);
	color: #0D9488;
	font-size: 0.78rem;
}

.dna-why-chip__text {
	font-family: "DM Sans", sans-serif;
	font-size: 0.9rem;
	font-weight: 650;
	line-height: 1.35;
	color: #1A2B47;
}

.dna-why-panel__close {
	margin: 0;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(45, 67, 86, 0.08);
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #1A2B47;
	font-weight: 600;
}

.dna-pill-accent {
	display: inline-flex !important;
	align-items: center;
	margin: 0.35rem 0 0 !important;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	background: rgba(47, 111, 237, 0.12);
	color: #2F6FED !important;
	font-family: "DM Sans", sans-serif !important;
	font-size: 0.95rem !important;
	font-weight: 800 !important;
	width: fit-content;
}

.home-sec--dna-dark .elementor-icon-list-text {
	color: rgba(255, 255, 255, 0.82) !important;
}

/* Immersion / “not consulting” — modern split */
.home-sec--dna-dark .dna-immerse-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 1.75rem !important;
	width: 100% !important;
}

.home-sec--dna-dark .dna-immerse-left,
.home-sec--dna-dark .dna-immerse-right {
	min-width: 0 !important;
}

.dna-immerse-hours {
	display: inline-flex;
	align-items: center;
	margin-top: 0.5rem;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: rgba(76, 185, 183, 0.14);
	border: 1px solid rgba(76, 185, 183, 0.28);
	color: #7ee0dd;
	font-family: "DM Sans", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.dna-immerse-panel {
	padding: 1.4rem 1.45rem 1.3rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.dna-immerse-lead {
	margin: 0 0 1rem;
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

.dna-immerse-challenge {
	margin: 0 0 1rem;
	padding: 0.9rem 1rem;
	border-radius: 14px;
	background: rgba(47, 111, 237, 0.1);
	border: 1px solid rgba(47, 111, 237, 0.22);
}

.dna-immerse-challenge > p {
	margin: 0 0 0.55rem;
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
}

.dna-immerse-deny {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.dna-immerse-deny li {
	font-family: "DM Sans", sans-serif;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.4;
}

.dna-immerse-deny li span {
	color: #4CB9B7;
	font-weight: 800;
}

.dna-immerse-practices {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin: 0 0 1rem;
}

.dna-immerse-practice {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 0.85rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dna-immerse-practice:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(76, 185, 183, 0.25);
	transform: translateX(3px);
}

.dna-immerse-practice__icon {
	flex: 0 0 auto;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(76, 185, 183, 0.14);
	color: #4CB9B7;
	font-size: 0.8rem;
}

.dna-immerse-practice p {
	margin: 0;
	font-family: "DM Sans", sans-serif;
	font-size: 0.92rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.78);
}

.dna-immerse-practice strong {
	color: #fff;
	font-weight: 700;
}

.dna-immerse-close {
	margin: 0;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
	font-style: italic;
}

/* ── DNA v2 bottom sections — native Elementor targets ── */
.home-sec--dna-framework.e-con > .e-con-inner,
.home-sec--dna-deliver.e-con > .e-con-inner,
.home-sec--dna-fit.e-con > .e-con-inner,
.home-sec--dna-cta.e-con > .e-con-inner {
	gap: 0.85rem !important;
	row-gap: 0.85rem !important;
}

.home-sec--dna-framework .elementor-widget-text-editor p,
.home-sec--dna-deliver .elementor-widget-text-editor p,
.home-sec--dna-fit .elementor-widget-text-editor p {
	max-width: 40rem;
	margin-inline: auto;
}

/* Genome pillars row */
.home-sec--dna-framework .dna-v2-genome__pillars {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 0.85rem !important;
	width: 100% !important;
}

.home-sec--dna-framework .dna-v2-genome__pillars > .e-con {
	min-width: 0 !important;
	flex: 1 1 0 !important;
}

.home-sec--dna-framework .dna-v2-pillar {
	height: 100%;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.home-sec--dna-framework .dna-v2-pillar:hover {
	transform: translateY(-3px);
	background-color: rgba(255, 255, 255, 0.06) !important;
	border-color: rgba(76, 185, 183, 0.35) !important;
}

.home-sec--dna-framework .dna-v2-pillar--accent {
	background-color: rgba(76, 185, 183, 0.1) !important;
	border-color: rgba(76, 185, 183, 0.28) !important;
}

.home-sec--dna-framework .dna-v2-pillar .elementor-widget-text-editor p {
	max-width: none;
	margin-inline: 0;
	font-size: 0.88rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

.home-sec--dna-framework .dna-v2-pillar .elementor-widget-text-editor strong {
	color: #fff;
	font-weight: 800;
}

.home-sec--dna-framework > .e-con-inner > .elementor-widget-heading:nth-child(2) .elementor-heading-title {
	max-width: 36rem;
	margin-inline: auto;
}

/* Outcomes 5-step row */
.home-sec--dna-deliver .dna-v2-steps {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 0.65rem !important;
	width: 100% !important;
}

.home-sec--dna-deliver .dna-v2-steps > .e-con {
	min-width: 0 !important;
	flex: 1 1 0 !important;
}

.home-sec--dna-deliver .dna-v2-step {
	height: 100%;
	border-top: 4px solid #2F6FED !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-sec--dna-deliver .dna-v2-step--1 { border-top-color: #2F6FED !important; }
.home-sec--dna-deliver .dna-v2-step--2 { border-top-color: #4CB9B7 !important; }
.home-sec--dna-deliver .dna-v2-step--3 { border-top-color: #655396 !important; }
.home-sec--dna-deliver .dna-v2-step--4 { border-top-color: #0D9488 !important; }
.home-sec--dna-deliver .dna-v2-step--5 { border-top-color: #E07A4A !important; }

.home-sec--dna-deliver .dna-v2-step:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(45, 67, 86, 0.12) !important;
}

.home-sec--dna-deliver .dna-v2-step .elementor-icon-box-wrapper {
	align-items: flex-start !important;
}

.home-sec--dna-deliver .dna-v2-more {
	width: 100% !important;
	max-width: 52rem;
	margin-inline: auto;
	background: linear-gradient(135deg, rgba(47, 111, 237, 0.14), rgba(76, 185, 183, 0.16)) !important;
	border-left: 5px solid #2F6FED !important;
	box-shadow: 0 16px 40px rgba(47, 111, 237, 0.12) !important;
}

.home-sec--dna-deliver .dna-v2-more > .e-con-inner {
	gap: 0.85rem !important;
	align-items: center !important;
}

.home-sec--dna-deliver .dna-v2-more .elementor-widget-heading:last-child .elementor-heading-title {
	font-size: clamp(1.35rem, 2.6vw, 1.85rem) !important;
	font-weight: 800 !important;
	line-height: 1.45 !important;
	max-width: 40rem;
	margin-inline: auto;
	text-align: center;
	background: linear-gradient(transparent 62%, rgba(76, 185, 183, 0.28) 62%);
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

/* Fit — constrained native stack */
.home-sec--dna-fit .dna-v2-fit {
	width: 100% !important;
	max-width: 52rem;
	margin-inline: auto;
}

.home-sec--dna-fit .dna-v2-chips .elementor-icon-list-items {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
	margin: 0;
	padding: 0;
}

.home-sec--dna-fit .dna-v2-chips .elementor-icon-list-item {
	display: flex !important;
	align-items: flex-start !important;
	gap: 0.65rem;
	margin: 0 !important;
	padding: 0.8rem 0.9rem !important;
	border-radius: 12px;
	background: #F3F5F7;
	border: 1px solid rgba(45, 67, 86, 0.08);
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.home-sec--dna-fit .dna-v2-chips .elementor-icon-list-item:hover {
	transform: translateY(-2px);
	background: #fff;
	border-color: rgba(76, 185, 183, 0.4);
}

.home-sec--dna-fit .dna-v2-chips .elementor-icon-list-item:last-child {
	grid-column: 1 / -1;
}

.home-sec--dna-fit .dna-v2-chips .elementor-icon-list-icon {
	flex: 0 0 auto;
	margin-top: 0.1rem;
}

.home-sec--dna-fit .dna-v2-chips .elementor-icon-list-icon i {
	width: 1.35rem !important;
	height: 1.35rem !important;
	border-radius: 50%;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: rgba(76, 185, 183, 0.14);
	font-size: 0.65rem !important;
}

.home-sec--dna-fit .dna-v2-chips .elementor-icon-list-text {
	font-weight: 600 !important;
	line-height: 1.35 !important;
}

.home-sec--dna-fit .dna-v2-fit__ready .elementor-widget-text-editor p {
	max-width: none;
	margin-inline: 0;
	color: rgba(255, 255, 255, 0.68);
}

/* Finale — native split */
.home-sec--dna-cta .dna-v2-finale {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	justify-content: space-between !important;
	gap: 1.25rem !important;
	width: 100% !important;
}

.home-sec--dna-cta .dna-v2-finale__story,
.home-sec--dna-cta .dna-v2-finale__cta {
	min-width: 0 !important;
}

.home-sec--dna-cta .dna-v2-finale__story .elementor-widget-text-editor p {
	max-width: none;
	margin-inline: 0;
	text-align: left;
}

.home-sec--dna-cta .dna-v2-finale__panel {
	height: 100%;
}

.home-sec--dna-cta .dna-v2-finale__panel .elementor-widget-text-editor p {
	max-width: none;
	margin-inline: 0;
	text-align: left;
}

.home-sec--dna-cta .dna-v2-finale__panel .elementor-button {
	box-shadow: 0 12px 28px rgba(47, 111, 237, 0.35);
}

@media (max-width: 1024px) {
	.home-sec--dna-framework .dna-v2-genome__pillars,
	.home-sec--dna-cta .dna-v2-finale {
		flex-wrap: wrap !important;
		flex-direction: column !important;
	}
	.home-sec--dna-framework .dna-v2-genome__pillars > .e-con,
	.home-sec--dna-cta .dna-v2-finale__story,
	.home-sec--dna-cta .dna-v2-finale__cta {
		width: 100% !important;
		max-width: 100% !important;
		flex: 1 1 100% !important;
	}
	.home-sec--dna-deliver .dna-v2-steps {
		flex-wrap: wrap !important;
	}
	.home-sec--dna-deliver .dna-v2-steps > .e-con {
		flex: 1 1 calc(33.33% - 0.5rem) !important;
		width: calc(33.33% - 0.5rem) !important;
		max-width: calc(33.33% - 0.5rem) !important;
	}
	.home-sec--dna-cta .dna-v2-finale__story .elementor-heading-title,
	.home-sec--dna-cta .dna-v2-finale__story .elementor-widget-text-editor p,
	.home-sec--dna-cta .dna-v2-finale__panel .elementor-heading-title,
	.home-sec--dna-cta .dna-v2-finale__panel .elementor-widget-text-editor p {
		text-align: center !important;
	}
	.home-sec--dna-cta .dna-v2-finale__panel .elementor-button-wrapper {
		text-align: center;
	}
}

@media (max-width: 720px) {
	.home-sec--dna-deliver .dna-v2-steps > .e-con {
		flex: 1 1 calc(50% - 0.4rem) !important;
		width: calc(50% - 0.4rem) !important;
		max-width: calc(50% - 0.4rem) !important;
	}
	.home-sec--dna-fit .dna-v2-chips .elementor-icon-list-items {
		grid-template-columns: 1fr;
	}
	.home-sec--dna-fit .dna-v2-chips .elementor-icon-list-item:last-child {
		grid-column: auto;
	}
}

@media (max-width: 480px) {
	.home-sec--dna-deliver .dna-v2-steps > .e-con {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
}

.home-sec--dna-hero.e-con,
.home-sec--dna-hero > .e-con-inner {
	gap: 0.85rem !important;
}

.home-sec--dna-hero .elementor-widget-text-editor p {
	max-width: 34rem;
	margin-inline: auto;
}

.home-sec--dna-page.e-con > .e-con-inner {
	row-gap: 0.9rem !important;
}

.home-sec--dna-cta::before {
	content: "";
	position: absolute;
	inset: -30% auto auto 50%;
	width: 560px;
	height: 560px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(47, 111, 237, 0.26), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.home-sec--dna-cta {
	position: relative;
	overflow: hidden;
}

.home-sec--dna-cta > .e-con-inner,
.home-sec--dna-cta > .elementor-container {
	position: relative;
	z-index: 1;
}

.dna-page-hero-actions {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 1rem !important;
	margin-top: 0.5rem;
}

.dna-page-hero-meta {
	display: block;
	color: rgba(255, 255, 255, 0.55);
	font-family: "DM Sans", sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-align: center;
}

.dna-page-callout {
	margin: 1rem auto 0;
	max-width: 20rem;
	text-align: center;
	color: #1A2B47;
	font-family: "DM Sans", sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
}

/* Challenge — native Elementor 2-col layout */
.home-sec--dna-challenge .dna-challenge-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 2.25rem !important;
	width: 100% !important;
}

.home-sec--dna-challenge .dna-challenge-left,
.home-sec--dna-challenge .dna-challenge-right {
	min-width: 0 !important;
}

.home-sec--dna-challenge .dna-challenge-chips {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 0.5rem !important;
	width: 100% !important;
}

.home-sec--dna-challenge .dna-challenge-chips > .e-con {
	width: auto !important;
	max-width: none !important;
	flex: 0 0 auto !important;
}

.home-sec--dna-challenge .dna-challenge-chips .elementor-heading-title {
	white-space: normal;
	line-height: 1.3;
}

.home-sec--dna-challenge .elementor-icon-list-items {
	margin: 0;
	padding: 0;
}

.home-sec--dna-challenge .elementor-icon-list-item {
	margin: 0 !important;
}

.home-sec--dna-challenge .dna-challenge-right .elementor-widget-text-editor p {
	max-width: none;
	margin-inline: 0;
}

.dna-framework__eyebrow,
.dna-deliver__eyebrow,
.dna-fit__eyebrow,
.dna-close__eyebrow {
	display: block;
	margin-bottom: 0.65rem;
	color: #2F6FED;
	font-family: "DM Sans", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Framework — 3 compact columns */
.dna-framework__head {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 1.5rem;
}

.dna-framework__title {
	margin: 0 0 0.65rem;
	color: #1A2B47;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(1.75rem, 2.5vw, 2.15rem);
	font-weight: 800;
	line-height: 1.2;
}

.dna-framework__lead {
	margin: 0;
	color: #6B7280;
	font-family: "DM Sans", sans-serif;
	font-size: 0.98rem;
	line-height: 1.55;
}

.dna-framework__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	margin-bottom: 1.15rem;
}

.dna-framework__item {
	padding: 1.15rem 1.1rem;
	border-radius: 16px;
	background: #F7F9FC;
	border: 1px solid rgba(45, 67, 86, 0.07);
}

.dna-framework__num {
	display: block;
	margin-bottom: 0.4rem;
	color: rgba(26, 43, 71, 0.2);
	font-family: "DM Sans", sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1;
}

.dna-framework__item h3 {
	margin: 0 0 0.35rem;
	color: #1A2B47;
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	font-weight: 800;
}

.dna-framework__item p {
	margin: 0;
	color: #6B7280;
	font-family: "DM Sans", sans-serif;
	font-size: 0.86rem;
	line-height: 1.45;
}

.dna-framework__strong {
	margin: 0;
	text-align: center;
	color: #1A2B47;
	font-family: "DM Sans", sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.35;
}

/* Deliverables — dense 5-up */
.dna-deliver__head {
	text-align: center;
	max-width: 36rem;
	margin: 0 auto 1.35rem;
}

.dna-deliver__title {
	margin: 0 0 0.5rem;
	color: #1A2B47;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(1.75rem, 2.5vw, 2.15rem);
	font-weight: 800;
	line-height: 1.2;
}

.dna-deliver__lead {
	margin: 0;
	color: #6B7280;
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
	line-height: 1.5;
}

.dna-deliver__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.65rem;
}

.dna-deliver__item {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	padding: 1rem 0.85rem;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(45, 67, 86, 0.07);
	box-shadow: 0 6px 18px rgba(45, 67, 86, 0.05);
	min-height: 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dna-deliver__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(45, 67, 86, 0.09);
}

.dna-deliver__num {
	color: #4CB9B7;
	font-family: "DM Sans", sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.dna-deliver__item strong {
	display: block;
	color: #1A2B47;
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 0.15rem;
}

.dna-deliver__item span {
	display: block;
	color: #6B7280;
	font-family: "DM Sans", sans-serif;
	font-size: 0.8rem;
	line-height: 1.35;
	font-weight: 500;
}

/* Fit — native Elementor 2-col lists (no cross-column bleed) */
.home-sec--dna-fit .dna-fit-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 2rem !important;
	width: 100% !important;
}

.home-sec--dna-fit .dna-fit-left,
.home-sec--dna-fit .dna-fit-right {
	min-width: 0 !important;
}

.home-sec--dna-fit .dna-fit-lists {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	gap: 1.25rem !important;
	width: 100% !important;
}

.home-sec--dna-fit .dna-fit-lists > .e-con {
	flex: 1 1 0 !important;
	width: 50% !important;
	max-width: 50% !important;
	min-width: 0 !important;
}

.home-sec--dna-fit .elementor-icon-list-items {
	margin: 0;
	padding: 0;
}

.home-sec--dna-fit .elementor-icon-list-item {
	align-items: flex-start !important;
}

.home-sec--dna-fit .elementor-icon-list-text {
	white-space: normal !important;
	word-break: normal;
	overflow-wrap: anywhere;
	line-height: 1.4;
}

.home-sec--dna-fit .dna-fit-left .elementor-widget-text-editor p {
	max-width: none;
	margin-inline: 0;
}

/* Closing CTA — compact */
.dna-close {
	max-width: 40rem;
	margin: 0 auto;
	text-align: center;
}

.dna-close__eyebrow {
	color: #4CB9B7;
}

.dna-close__title {
	margin: 0 0 0.85rem;
	color: #fff;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(1.85rem, 3vw, 2.35rem);
	font-weight: 800;
	line-height: 1.15;
}

.dna-close__lead {
	margin: 0 0 1.35rem;
	color: rgba(255, 255, 255, 0.72);
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	line-height: 1.55;
}

.dna-close__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.dna-close__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.75rem;
	border-radius: 999px;
	background: #3B82F6;
	color: #fff !important;
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none !important;
	transition: transform 0.2s ease, background 0.2s ease;
}

.dna-close__btn:hover {
	background: #2563EB;
	transform: translateY(-2px);
	color: #fff !important;
}

.dna-close__meta {
	margin: 0;
	max-width: 28rem;
	color: rgba(255, 255, 255, 0.55);
	font-family: "DM Sans", sans-serif;
	font-size: 0.88rem;
	line-height: 1.45;
}

/* Native Elementor card rows — modern polished UI */
.home-sec--dna-page .dna-native-row {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	justify-content: center !important;
	gap: 1.1rem !important;
	width: 100% !important;
}

.home-sec--dna-page .dna-native-row > .e-con {
	flex: 1 1 0 !important;
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}

.home-sec--dna-page .dna-native-row--2 {
	max-width: 48rem;
	margin-inline: auto;
}

.home-sec--dna-page .dna-native-row > .e-con > .e-con {
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 22px !important;
	box-shadow: 0 12px 32px rgba(45, 67, 86, 0.07) !important;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-sec--dna-page .dna-native-row > .e-con > .e-con::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #2F6FED, #4CB9B7);
	opacity: 0.8;
}

.home-sec--dna-page .dna-native-row > .e-con:hover > .e-con {
	transform: translateY(-5px);
	box-shadow: 0 20px 44px rgba(45, 67, 86, 0.12) !important;
}

.home-sec--dna-page .dna-native-row .elementor-widget-text-editor p,
.home-sec--dna-why .elementor-widget-text-editor p,
.home-sec--dna-link .elementor-widget-text-editor p,
.home-sec--dna-discover .elementor-widget-text-editor p,
.home-sec--dna-framework .elementor-widget-text-editor p,
.home-sec--dna-deliver .elementor-widget-text-editor p {
	max-width: 46rem;
	margin-inline: auto;
}

.home-sec--dna-page .dna-native-row .elementor-widget-text-editor p {
	max-width: none;
	margin-inline: 0;
}

/* Soft circular icons on Icon Box cards (Missing Link + DNA strands) */
.home-sec--dna-link .elementor-icon-box-wrapper,
.home-sec--dna-discover .elementor-icon-box-wrapper {
	text-align: center;
}

.home-sec--dna-link .elementor-icon-box-icon,
.home-sec--dna-discover .elementor-icon-box-icon {
	margin-bottom: 0.65rem !important;
}

.home-sec--dna-link .elementor-icon,
.home-sec--dna-discover .elementor-icon {
	width: 52px !important;
	height: 52px !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.65), 0 8px 18px rgba(45, 67, 86, 0.07);
	transition: transform 0.25s ease;
}

.home-sec--dna-discover .elementor-icon {
	width: 44px !important;
	height: 44px !important;
}

.home-sec--dna-link .dna-native-row > .e-con:hover .elementor-icon,
.home-sec--dna-discover .dna-native-row > .e-con:hover .elementor-icon {
	transform: translateY(-3px) scale(1.04);
}

.home-sec--dna-link .dna-native-row > .e-con:nth-child(1) .elementor-icon {
	background: rgba(59, 130, 246, 0.12) !important;
}
.home-sec--dna-link .dna-native-row > .e-con:nth-child(2) .elementor-icon {
	background: rgba(239, 68, 68, 0.12) !important;
}
.home-sec--dna-link .dna-native-row > .e-con:nth-child(3) .elementor-icon {
	background: rgba(13, 148, 136, 0.12) !important;
}
.home-sec--dna-link .dna-native-row > .e-con:nth-child(4) .elementor-icon {
	background: rgba(124, 58, 237, 0.12) !important;
}

.home-sec--dna-discover .dna-native-row > .e-con:nth-child(1) .elementor-icon {
	background: rgba(59, 130, 246, 0.12) !important;
}
.home-sec--dna-discover .dna-native-row > .e-con:nth-child(2) .elementor-icon {
	background: rgba(13, 148, 136, 0.12) !important;
}
.home-sec--dna-discover .dna-native-row > .e-con:nth-child(3) .elementor-icon {
	background: rgba(124, 58, 237, 0.12) !important;
}
.home-sec--dna-discover .dna-native-row > .e-con:nth-child(4) .elementor-icon {
	background: rgba(71, 85, 105, 0.12) !important;
}
.home-sec--dna-discover .dna-native-row > .e-con:nth-child(5) .elementor-icon {
	background: rgba(47, 111, 237, 0.12) !important;
}

.home-sec--dna-link .elementor-icon-box-title,
.home-sec--dna-discover .elementor-icon-box-title {
	font-weight: 800 !important;
	line-height: 1.3 !important;
	font-size: 0.9rem !important;
}

.home-sec--dna-discover .elementor-icon-box-description {
	margin-top: 0.3rem !important;
	line-height: 1.4 !important;
	font-size: 0.78rem !important;
}

.home-sec--dna-why .dna-why-left > .e-con {
	border-left: 3px solid #2F6FED;
}

/* Why cards — large muted numbers feel */
.home-sec--dna-why .dna-native-row .elementor-heading-title {
	letter-spacing: -0.02em;
}

.home-sec--dna-why .dna-why-list-wrap {
	width: 100% !important;
	max-width: 640px !important;
	margin-inline: auto;
}

.home-sec--dna-why .dna-why-list-wrap > .e-con {
	border-radius: 18px !important;
	box-shadow: 0 10px 28px rgba(45, 67, 86, 0.06) !important;
}

/* Dark immersion section polish */
.home-sec--dna-dark .elementor-icon-list-icon i,
.home-sec--dna-dark .elementor-icon-list-icon svg {
	fill: #4CB9B7;
}

.home-sec--dna-dark .elementor-icon-list-text {
	color: rgba(255, 255, 255, 0.9) !important;
}

/* Deliverables row — compact premium chips */
.home-sec--dna-deliver .dna-native-row--5 > .e-con > .e-con {
	padding-top: 4px;
}

.home-sec--dna-deliver .dna-native-row--5 .elementor-heading-title {
	line-height: 1.25 !important;
}

/* Challenge DNA pill + chip polish */
.home-sec--dna-challenge .dna-challenge-chips > .e-con > .e-con {
	box-shadow: none !important;
	transition: background 0.2s ease, transform 0.2s ease;
}

.home-sec--dna-challenge .dna-challenge-chips > .e-con:hover > .e-con {
	transform: translateY(-2px);
	background: #EEF2F7 !important;
}

.home-sec--dna-challenge .dna-challenge-left > .e-con:last-child {
	box-shadow: none !important;
}

/* Fit note + lists polish */
.home-sec--dna-fit .dna-fit-right > .e-con {
	border-radius: 20px !important;
	box-shadow: 0 12px 32px rgba(45, 67, 86, 0.07) !important;
}

.home-sec--dna-fit .elementor-icon-list-icon {
	margin-top: 0.15rem;
}

.dna-page-fit-check {
	flex: 0 0 auto;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(76, 185, 183, 0.18);
	color: #0F766E;
	font-size: 0.65rem;
	font-weight: 800;
	margin-top: 0.05rem;
}

.home-sec--dna-cta {
	position: relative;
	overflow: hidden;
}

.home-sec--dna-cta::before {
	content: "";
	position: absolute;
	inset: -25% auto auto 50%;
	width: 620px;
	height: 620px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(47, 111, 237, 0.24), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.home-sec--dna-cta > .e-con-inner,
.home-sec--dna-cta > .elementor-container {
	position: relative;
	z-index: 1;
}

.home-sec--dna-page .elementor-button {
	box-shadow: 0 10px 28px rgba(47, 111, 237, 0.28);
}

.home-sec--dna-hero .elementor-widget-text-editor p {
	max-width: 38rem;
}

@media (max-width: 1024px) {
	.home-sec--dna-page .dna-native-row,
	.home-sec--dna-page .dna-native-row--4,
	.home-sec--dna-page .dna-native-row--5 {
		flex-wrap: wrap !important;
	}
	.home-sec--dna-page .dna-native-row > .e-con {
		flex: 1 1 calc(50% - 0.55rem) !important;
		width: calc(50% - 0.55rem) !important;
		max-width: calc(50% - 0.55rem) !important;
	}
	.home-sec--dna-page .dna-native-row--2 > .e-con {
		flex: 1 1 calc(50% - 0.55rem) !important;
		width: calc(50% - 0.55rem) !important;
		max-width: calc(50% - 0.55rem) !important;
	}
	.home-sec--dna-hero .dna-hero-layout,
	.home-sec--dna-page .dna-zig-layout,
	.home-sec--dna-page .dna-zig-layout--reverse {
		flex-wrap: wrap !important;
		flex-direction: column !important;
		align-items: stretch !important;
	}
	.home-sec--dna-hero .dna-hero-copy,
	.home-sec--dna-hero .dna-hero-stats,
	.home-sec--dna-page .dna-zig-col {
		width: 100% !important;
		max-width: 100% !important;
	}
	.home-sec--dna-zig .dna-zig-col .elementor-widget-text-editor p,
	.home-sec--dna-zig .dna-zig-col .elementor-widget-heading .elementor-heading-title,
	.home-sec--dna-page .dna-beats-card {
		max-width: none;
	}
	.home-sec--dna-challenge .dna-challenge-layout,
	.home-sec--dna-dreams .dna-split-layout,
	.home-sec--dna-fit .dna-fit-layout,
	.home-sec--dna-dark .dna-immerse-layout,
	.home-sec--dna-why .dna-why-layout {
		flex-wrap: wrap !important;
		flex-direction: column !important;
		align-items: stretch !important;
	}
	.home-sec--dna-challenge .dna-challenge-left,
	.home-sec--dna-challenge .dna-challenge-right,
	.home-sec--dna-dreams .dna-split-left,
	.home-sec--dna-dreams .dna-split-right,
	.home-sec--dna-fit .dna-fit-left,
	.home-sec--dna-fit .dna-fit-right,
	.home-sec--dna-dark .dna-immerse-left,
	.home-sec--dna-dark .dna-immerse-right,
	.home-sec--dna-why .dna-why-left,
	.home-sec--dna-why .dna-why-right {
		width: 100% !important;
		max-width: 100% !important;
	}
	.dna-framework__grid {
		grid-template-columns: 1fr;
	}
	.dna-deliver__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.home-sec--dna-page .dna-native-row > .e-con {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
}

/* ══════════════════════════════════════════
   About page — Elementor native
   ══════════════════════════════════════════ */
.home-sec--about-hero {
	position: relative;
	overflow: hidden;
}

.home-sec--about-hero::before {
	content: "";
	position: absolute;
	inset: -30% auto auto 60%;
	width: 640px;
	height: 640px;
	transform: translateX(-30%);
	background: radial-gradient(circle, rgba(47, 111, 237, 0.28), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.home-sec--about-hero > .e-con-inner,
.home-sec--about-hero > .elementor-container {
	position: relative;
	z-index: 1;
}

.home-sec--about-hero .about-hero-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 2.25rem !important;
	width: 100% !important;
}

.home-sec--about-hero .about-hero-copy,
.home-sec--about-hero .about-hero-media {
	min-width: 0 !important;
}

.home-sec--about-hero .about-hero-copy .elementor-widget-text-editor p {
	max-width: 34rem;
	margin-inline: 0;
}

.home-sec--about-hero .about-hero-media img {
	border-radius: 20px;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: 52% 18%;
	aspect-ratio: 4 / 5;
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.home-sec--about-hero .about-hero-label-row {
	width: 100%;
}

.home-sec--about-hero .about-hero-label-row .elementor-widget-heading .elementor-heading-title {
	font-family: "DM Sans", sans-serif;
}

.home-sec--about-hero .about-hero-copy .elementor-widget-button {
	margin-top: 0.25rem;
}

/* About — centered prose blocks (native Elementor widgets) */
.about-prose {
	margin-inline: auto !important;
	width: 100% !important;
	max-width: 58rem !important;
}

.about-prose > .e-con-inner {
	gap: 0.65rem !important;
}

.about-prose .elementor-widget-heading .elementor-heading-title {
	text-align: center;
}

.about-prose .elementor-widget-text-editor {
	width: 100%;
}

.about-prose .elementor-widget-text-editor p {
	margin: 0;
	text-align: center;
	color: #4B5563;
}

.about-prose .elementor-widget-text-editor p + p {
	margin-top: 0.85rem;
}

.about-prose .elementor-widget-icon {
	flex-shrink: 0;
	margin-bottom: 0.15rem;
	align-self: center;
}

.about-prose .elementor-widget-button {
	margin-top: 0.5rem;
	align-self: center;
}

.about-prose .about-highlight-card,
.about-prose .about-discover-questions {
	align-self: stretch;
}

.about-prose .elementor-widget-icon .elementor-icon {
	box-shadow: 0 6px 16px rgba(45, 67, 86, 0.07);
}

.about-highlight-card,
.about-discover-questions {
	position: relative !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-inline: auto !important;
	overflow: hidden !important;
	box-shadow: 0 8px 28px rgba(45, 67, 86, 0.08) !important;
}

.about-highlight-card::before,
.about-discover-questions::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--about-accent, #2F6FED);
	z-index: 2;
}

.about-highlight-card--blue {
	--about-accent: #2F6FED;
}

.about-highlight-card--mint {
	--about-accent: #4CB9B7;
}

.about-highlight-card--quote {
	--about-accent: #655396;
	max-width: 40rem !important;
}

.about-highlight-card .elementor-heading-title,
.about-highlight-card .elementor-widget-text-editor p {
	text-align: center !important;
	margin: 0 !important;
}

.about-discover-questions {
	--about-accent: #2F6FED;
}

.about-discover-questions .elementor-heading-title {
	text-align: center !important;
	margin: 0 !important;
}

.about-discover-questions .elementor-widget-heading:first-child .elementor-heading-title {
	color: #6B7280 !important;
	font-weight: 500 !important;
}

.about-prose--matters .elementor-widget-text-editor p {
	color: rgba(255, 255, 255, 0.82);
}

.about-prose--matters .elementor-widget-text-editor p + p {
	margin-top: 0.85rem;
}

.about-matters-wrap {
	margin-inline: auto !important;
	width: 100% !important;
	max-width: 58rem !important;
}

.about-matters-panel {
	width: 100% !important;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28) !important;
}

.about-matters-panel > .e-con-inner {
	align-items: stretch !important;
	gap: 0.85rem !important;
}

.about-matters-panel .elementor-widget-icon {
	align-self: center;
}

.about-matters-panel .elementor-widget-heading .elementor-heading-title {
	text-align: center !important;
	width: 100%;
}

.about-matters-panel .elementor-widget-text-editor {
	width: 100% !important;
}

.about-matters-panel .elementor-widget-text-editor p {
	width: 100%;
	max-width: none !important;
	margin: 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
}

.about-matters-panel .elementor-widget-text-editor p + p {
	margin-top: 0.85rem;
}

.home-sec--about-question,
.home-sec--about-dna,
.home-sec--about-built,
.home-sec--about-beyond,
.home-sec--about-discover {
	border-top: 1px solid rgba(45, 67, 86, 0.05);
}

/* Pattern section — 5-card grid + centered narrative */
.home-sec--about-pattern {
	border-top: 1px solid rgba(45, 67, 86, 0.06);
	border-bottom: 1px solid rgba(45, 67, 86, 0.06);
}

.about-pattern-wrap {
	margin-inline: auto !important;
}

.about-pattern-head {
	margin-inline: auto;
	max-width: 42rem;
}

.about-pattern-head .elementor-widget-text-editor p {
	margin: 0;
	text-align: center;
}

.about-pattern-grid {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	align-items: stretch !important;
	gap: 0.75rem !important;
	width: 100% !important;
}

.about-pattern-grid > .about-pattern-signal {
	height: 100% !important;
	min-height: 10.5rem !important;
	display: flex !important;
	flex-direction: column !important;
}

.about-pattern-grid > .about-pattern-signal > .e-con-inner {
	height: 100% !important;
	flex: 1 1 auto !important;
}

.about-pattern-signal.e-con {
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	box-shadow: 0 4px 18px rgba(45, 67, 86, 0.05);
}

.about-pattern-signal.e-con:hover {
	box-shadow: 0 10px 28px rgba(45, 67, 86, 0.09);
	transform: translateY(-2px);
}

.about-pattern-signal--1.e-con:hover { border-color: rgba(47, 111, 237, 0.45) !important; }
.about-pattern-signal--2.e-con:hover { border-color: rgba(224, 122, 74, 0.45) !important; }
.about-pattern-signal--3.e-con:hover { border-color: rgba(76, 185, 183, 0.45) !important; }
.about-pattern-signal--4.e-con:hover { border-color: rgba(101, 83, 150, 0.45) !important; }
.about-pattern-signal--5.e-con:hover { border-color: rgba(13, 148, 136, 0.45) !important; }

.about-pattern-signal-inner {
	height: 100% !important;
	text-align: center;
}

.about-pattern-signal-inner .elementor-widget-icon .elementor-icon {
	width: 2.65rem !important;
	height: 2.65rem !important;
	margin-inline: auto;
}

.about-pattern-signal-inner .elementor-heading-title {
	margin: 0;
	text-align: center !important;
}

.about-pattern-signal-inner .elementor-widget-heading:first-child .elementor-heading-title {
	font-size: 0.72rem !important;
	letter-spacing: 0.08em;
}

.about-pattern-outro {
	margin-inline: auto !important;
	max-width: 58rem !important;
}

.about-pattern-outro > .e-con-inner {
	gap: 0.65rem !important;
}

.about-pattern-outro .elementor-widget-text-editor p,
.about-pattern-outro .elementor-widget-heading .elementor-heading-title {
	text-align: center !important;
}

.about-pattern-outro .elementor-widget-text-editor p {
	margin: 0;
}

@media (max-width: 1024px) {
	.about-pattern-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	.about-pattern-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.about-pattern-grid > .about-pattern-signal {
		min-height: 9.5rem !important;
	}
}

@media (max-width: 520px) {
	.about-pattern-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Milestones — equal grid tiles (stats + accolades) */
.about-milestones-wrap {
	margin-inline: auto !important;
	width: 100% !important;
	max-width: 72rem !important;
}

.about-milestones-wrap > .e-con-inner {
	align-items: center !important;
}

.about-milestones-wrap .elementor-widget-heading .elementor-heading-title {
	text-align: center !important;
}

.about-milestones-wrap .elementor-widget-text-editor p {
	text-align: center;
	margin: 0;
}

.about-prose--milestones {
	max-width: 100% !important;
}

.about-milestones-stats-row {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 1rem !important;
	width: 100% !important;
	max-width: 56rem !important;
	margin-inline: auto !important;
}

.about-milestones-badges-row {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	align-items: stretch !important;
	gap: 0.75rem !important;
	width: 100% !important;
	max-width: 58rem !important;
	margin-inline: auto !important;
	margin-top: 0.15rem !important;
}

.about-accolades-marquee {
	width: 100% !important;
	max-width: 72rem !important;
	margin-inline: auto !important;
	overflow: hidden !important;
	mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.about-accolades-marquee > .e-con-inner {
	display: flex !important;
	flex-wrap: nowrap !important;
	width: max-content !important;
	max-width: none !important;
	padding: 0.35rem 0 0.75rem !important;
}

.about-accolades-track {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 1rem !important;
	width: max-content !important;
	max-width: none !important;
	animation: about-accolades-scroll 36s linear infinite;
}

.about-accolades-track > .e-con-inner {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 1rem !important;
	width: max-content !important;
	max-width: none !important;
}

.about-accolades-marquee:hover .about-accolades-track {
	animation-play-state: paused;
}

.about-accolade-logo-card {
	flex: 0 0 240px !important;
	width: 240px !important;
	min-width: 240px !important;
	max-width: 240px !important;
	height: 7.25rem !important;
	min-height: 7.25rem !important;
	overflow: visible !important;
	box-sizing: border-box !important;
}

.about-accolade-logo-card > .e-con-inner {
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	overflow: visible !important;
}

.about-accolade-logo-card .elementor-widget-image,
.about-accolade-logo-card .elementor-widget-container,
.about-accolade-logo-card .elementor-image,
.about-accolade-logo-card figure {
	width: 100% !important;
	max-width: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	overflow: visible !important;
	margin: 0 !important;
}

.about-accolade-logo-card img {
	width: auto !important;
	height: auto !important;
	max-width: 188px !important;
	max-height: 68px !important;
	object-fit: contain !important;
	object-position: center !important;
	margin: 0 auto !important;
}

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

@media (prefers-reduced-motion: reduce) {
	.about-accolades-track {
		animation: none;
		flex-wrap: wrap !important;
		width: 100% !important;
		justify-content: center;
	}

	.about-accolades-marquee {
		mask-image: none;
		-webkit-mask-image: none;
		overflow: visible !important;
	}

	.about-accolades-marquee > .e-con-inner,
	.about-accolades-track > .e-con-inner {
		flex-wrap: wrap !important;
		width: 100% !important;
		justify-content: center;
	}
}

.about-milestones-stats-row > .about-milestone-card {
	width: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	height: 100% !important;
}

.about-milestones-badges-row > .about-milestone-card {
	width: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	height: auto !important;
}

.about-milestone-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border-top: 4px solid transparent !important;
	box-shadow: 0 6px 22px rgba(45, 67, 86, 0.07) !important;
}

.about-milestone-card > .e-con-inner {
	height: 100% !important;
	min-height: inherit !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 0.65rem !important;
}

.about-milestone-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(45, 67, 86, 0.12) !important;
}

.about-milestone-card--tile .elementor-widget-icon {
	flex-shrink: 0;
}

.about-milestone-card--tile .elementor-widget-icon .elementor-icon {
	width: 3.1rem !important;
	height: 3.1rem !important;
	box-shadow: 0 8px 18px rgba(45, 67, 86, 0.08);
}

.about-milestone-card--tile .elementor-widget-heading {
	width: 100%;
}

.about-milestone-card--tile .elementor-widget-heading .elementor-heading-title {
	text-align: center !important;
}

.about-milestone-card--tile .elementor-widget-text-editor {
	width: 100%;
}

.about-milestones-stats-row .about-milestone-card--tile .elementor-widget-text-editor {
	margin-top: auto !important;
}

.about-milestones-badges-row .about-milestone-card > .e-con-inner {
	padding: 14px 16px 16px !important;
	gap: 0.4rem !important;
	min-height: 0 !important;
	height: auto !important;
	justify-content: flex-start !important;
}

.about-milestones-badges-row .elementor-element {
	margin: 0 !important;
	--kit-widget-spacing: 0px;
}

.about-milestones-badges-row .elementor-widget-icon .elementor-icon {
	width: 2.35rem !important;
	height: 2.35rem !important;
	box-shadow: 0 4px 10px rgba(45, 67, 86, 0.08);
}

.about-milestones-badges-row .elementor-widget-heading .elementor-heading-title {
	margin: 0 !important;
}

.about-milestones-badges-row .elementor-widget-text-editor {
	margin-top: 0 !important;
}

.about-milestone-card--tile .elementor-widget-text-editor p {
	margin: 0;
	text-align: center;
}

.about-milestone-card--stat-1 .elementor-widget-heading:nth-child(2) .elementor-heading-title,
.about-milestone-card--stat-2 .elementor-widget-heading:nth-child(2) .elementor-heading-title,
.about-milestone-card--stat-3 .elementor-widget-heading:nth-child(2) .elementor-heading-title {
	font-variant-numeric: tabular-nums;
	font-size: 2.35rem !important;
	line-height: 1 !important;
}

.about-milestone-card--stat-1 .elementor-widget-heading:nth-child(2) .elementor-heading-title { color: #2F6FED !important; }
.about-milestone-card--stat-2 .elementor-widget-heading:nth-child(2) .elementor-heading-title { color: #4CB9B7 !important; }
.about-milestone-card--stat-3 .elementor-widget-heading:nth-child(2) .elementor-heading-title { color: #655396 !important; }

.about-milestone-card--stat-1 { border-top-color: #2F6FED !important; }
.about-milestone-card--stat-2 { border-top-color: #4CB9B7 !important; }
.about-milestone-card--stat-3 { border-top-color: #655396 !important; }

.about-milestone-card--badge-1 { border-top-color: #0A66C2 !important; }
.about-milestone-card--badge-2 { border-top-color: #FF7A59 !important; }
.about-milestone-card--badge-3 { border-top-color: #655396 !important; }
.about-milestone-card--badge-4 { border-top-color: #0D9488 !important; }
.about-milestone-card--badge-5 { border-top-color: #C2410C !important; }
.about-milestone-card--badge-6 { border-top-color: #8C1515 !important; }
.about-milestone-card--badge-7 { border-top-color: #6D28D9 !important; }
.about-milestone-card--badge-8 { border-top-color: #B45309 !important; }
.about-milestone-card--badge-9 { border-top-color: #2563EB !important; }

.home-sec--about-milestones .about-milestones-wrap > .e-con-inner > .elementor-widget-heading:nth-child(4) {
	margin-top: 2rem !important;
	margin-bottom: 0.5rem !important;
}

.home-sec--about-matters {
	position: relative;
	overflow: hidden;
}

.home-sec--about-matters::before {
	content: "";
	position: absolute;
	inset: -20% auto auto 50%;
	width: 520px;
	height: 520px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(76, 185, 183, 0.14), transparent 68%);
	pointer-events: none;
	z-index: 0;
}

.home-sec--about-matters > .e-con-inner,
.home-sec--about-matters > .elementor-container {
	position: relative;
	z-index: 1;
}

.home-sec--about-matters .about-matters-panel .elementor-widget-icon .elementor-icon {
	box-shadow: 0 10px 28px rgba(76, 185, 183, 0.22);
}

.home-sec--about-contact .about-contact-form-head {
	width: 100%;
	margin-bottom: 0.35rem;
}

.home-sec--about-contact .about-contact-form-head .elementor-widget-heading {
	flex: 1 1 auto;
	min-width: 0;
}

.home-sec--about-contact .about-contact-intro-card > .e-con-inner {
	gap: 0.85rem !important;
}

.home-sec--about-contact .about-contact-intro-card .elementor-widget-icon .elementor-icon {
	box-shadow: 0 8px 22px rgba(76, 185, 183, 0.18);
}

.home-sec--about-contact .about-contact-form-card > .e-con-inner {
	gap: 1rem !important;
}

@media (max-width: 1024px) {
	.about-milestones-badges-row {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		max-width: 36rem !important;
	}
}

@media (max-width: 900px) {
	.about-milestones-stats-row {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		max-width: 36rem !important;
	}
}

@media (max-width: 560px) {
	.about-milestones-stats-row,
	.about-milestones-badges-row {
		grid-template-columns: 1fr !important;
		max-width: 22rem !important;
	}

	.about-milestones-stats-row > .about-milestone-card {
		min-height: 0 !important;
	}

	.about-milestones-badges-row > .about-milestone-card {
		min-height: 0 !important;
	}
}

/* Legacy milestone grid (unused after redesign) */
.about-milestones-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	align-items: stretch !important;
	gap: 0.875rem !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-inline: auto !important;
}

.about-milestones-grid > .about-milestone-card {
	height: 100% !important;
	min-height: 12.5rem !important;
	display: flex !important;
	flex-direction: column !important;
}

.about-milestones-grid > .about-milestone-card > .e-con-inner {
	height: 100% !important;
	flex: 1 1 auto !important;
	display: flex !important;
	flex-direction: column !important;
}

.about-milestone-inner {
	height: 100% !important;
	flex: 1 1 auto !important;
}

.about-milestone-inner .elementor-widget-icon .elementor-icon {
	width: 2.85rem !important;
	height: 2.85rem !important;
}

.about-milestone-inner .elementor-widget-icon i,
.about-milestone-inner .elementor-widget-icon svg {
	font-size: 1rem !important;
}

.about-milestone-num,
.about-milestone-num--label {
	min-height: 2.35rem;
	display: flex;
	align-items: center;
}

.about-milestone-num .elementor-heading-title,
.about-milestone-num--label .elementor-heading-title {
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.045em !important;
	line-height: 1 !important;
}

.about-milestone-inner .elementor-widget-text-editor {
	margin-top: auto;
}

.about-milestone-inner .elementor-widget-text-editor p {
	margin: 0;
}

@media (max-width: 1100px) {
	.about-milestones-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	.about-milestones-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.about-milestones-grid > .about-milestone-card {
		min-height: 11rem !important;
	}
}

@media (max-width: 520px) {
	.about-milestones-grid {
		grid-template-columns: 1fr !important;
	}
}

.home-sec--about-bio .elementor-widget-text-editor p {
	max-width: 42rem;
	margin-inline: auto;
}

.home-sec--about-solve .about-solve-row {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 1.15rem !important;
	width: 100% !important;
}

.home-sec--about-solve .about-solve-row > .e-con {
	flex: 1 1 0 !important;
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}

.home-sec--about-solve .about-solve-row > .e-con > .e-con {
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 22px !important;
	box-shadow: 0 12px 32px rgba(45, 67, 86, 0.07) !important;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-sec--about-solve .about-solve-row > .e-con > .e-con::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #2F6FED, #4CB9B7);
	opacity: 0.85;
}

.home-sec--about-solve .about-solve-row > .e-con:hover > .e-con {
	transform: translateY(-5px);
	box-shadow: 0 20px 44px rgba(45, 67, 86, 0.12) !important;
}

.home-sec--about-solve .elementor-icon {
	width: 64px !important;
	height: 64px !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: inset 0 3px 10px rgba(255, 255, 255, 0.65), 0 8px 18px rgba(45, 67, 86, 0.07);
}

.home-sec--about-solve .about-solve-row > .e-con:nth-child(1) .elementor-icon {
	background: rgba(59, 130, 246, 0.12) !important;
}
.home-sec--about-solve .about-solve-row > .e-con:nth-child(2) .elementor-icon {
	background: rgba(13, 148, 136, 0.12) !important;
}
.home-sec--about-solve .about-solve-row > .e-con:nth-child(3) .elementor-icon {
	background: rgba(124, 58, 237, 0.12) !important;
}

.home-sec--about-quote .elementor-heading-title {
	max-width: 40rem;
	margin-inline: auto;
}

.home-sec--about-contact {
	position: relative;
}

.home-sec--about-contact .about-contact-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 1.35rem !important;
	width: 100% !important;
	margin-top: 0.35rem;
}

.home-sec--about-contact .about-contact-left,
.home-sec--about-contact .about-contact-right {
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}

.home-sec--about-contact .about-contact-left > .e-con,
.home-sec--about-contact .about-contact-right > .e-con {
	height: 100%;
	box-shadow: 0 18px 48px rgba(45, 67, 86, 0.1) !important;
}

.home-sec--about-contact .about-contact-left .elementor-widget-text-editor p,
.home-sec--about-contact .about-contact-right .elementor-widget-text-editor p {
	max-width: none;
	margin-inline: 0;
}

.about-response-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: rgba(76, 185, 183, 0.16);
	color: #7ee0dd;
	font-family: "DM Sans", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	width: fit-content;
}

.about-channels {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-top: 0.35rem;
}

.about-channel {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 0.95rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-decoration: none !important;
	color: inherit;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-channel:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(76, 185, 183, 0.35);
	transform: translateX(3px);
}

.about-channel__icon {
	flex: 0 0 auto;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(76, 185, 183, 0.16);
	color: #4CB9B7;
	font-size: 0.9rem;
}

.about-channel__meta {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.about-channel__label {
	font-family: "DM Sans", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.about-channel__value {
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	word-break: break-word;
}

.about-channel__go {
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.35);
	font-size: 1.1rem;
	transition: color 0.2s ease, transform 0.2s ease;
}

.about-channel:hover .about-channel__go {
	color: #4CB9B7;
	transform: translateX(2px);
}

.home-sec--about-contact #contact-form .wpforms-container,
.home-sec--about-contact .wpforms-container {
	margin: 0.35rem 0 0 !important;
	width: 100% !important;
	max-width: 100% !important;
}

.home-sec--about-contact .wpforms-form {
	width: 100% !important;
}

.home-sec--about-contact .wpforms-field-container {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0.85rem 0.75rem !important;
	width: 100% !important;
}

.home-sec--about-contact .wpforms-field {
	padding: 0 !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}

.home-sec--about-contact .wpforms-field-email,
.home-sec--about-contact .wpforms-field-textarea,
.home-sec--about-contact .wpforms-submit-container {
	grid-column: 1 / -1;
	width: 100% !important;
	max-width: 100% !important;
}

.home-sec--about-contact .wpforms-field-label {
	font-family: "DM Sans", sans-serif !important;
	font-size: 0.7rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	color: #6B7280 !important;
	margin-bottom: 0.4rem !important;
	display: block !important;
	width: 100% !important;
}

/* Override WPForms medium = 60% max-width so fields fill the card */
.home-sec--about-contact .wpforms-container input.wpforms-field-small,
.home-sec--about-contact .wpforms-container input.wpforms-field-medium,
.home-sec--about-contact .wpforms-container input.wpforms-field-large,
.home-sec--about-contact .wpforms-container textarea.wpforms-field-small,
.home-sec--about-contact .wpforms-container textarea.wpforms-field-medium,
.home-sec--about-contact .wpforms-container textarea.wpforms-field-large,
.home-sec--about-contact .wpforms-field input[type="text"],
.home-sec--about-contact .wpforms-field input[type="email"],
.home-sec--about-contact .wpforms-field textarea {
	width: 100% !important;
	max-width: 100% !important;
	display: block !important;
	box-sizing: border-box !important;
	border: 1px solid rgba(45, 67, 86, 0.1) !important;
	border-radius: 14px !important;
	background: #F3F5F7 !important;
	padding: 0.9rem 1rem !important;
	font-family: "DM Sans", sans-serif !important;
	font-size: 0.95rem !important;
	color: #1A2B47 !important;
	box-shadow: none !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-sec--about-contact .wpforms-field textarea {
	min-height: 8.5rem !important;
	height: 8.5rem !important;
	resize: vertical;
}

.home-sec--about-contact .wpforms-field input:focus,
.home-sec--about-contact .wpforms-field textarea:focus {
	border-color: rgba(47, 111, 237, 0.55) !important;
	background: #fff !important;
	box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.12) !important;
	outline: none !important;
}

.home-sec--about-contact .wpforms-submit-container {
	margin-top: 0.35rem !important;
}

.home-sec--about-contact button.wpforms-submit {
	width: 100% !important;
	border: none !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, #3B82F6, #2563EB) !important;
	color: #fff !important;
	font-family: "DM Sans", sans-serif !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	padding: 1rem 1.5rem !important;
	box-shadow: 0 12px 28px rgba(47, 111, 237, 0.3) !important;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-sec--about-contact button.wpforms-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(47, 111, 237, 0.38) !important;
}

.about-contact-form-fallback {
	padding: 1rem 1.15rem;
	border-radius: 12px;
	background: rgba(47, 111, 237, 0.06);
	border: 1px dashed rgba(47, 111, 237, 0.28);
}

.about-contact-form-fallback p {
	margin: 0 0 0.5rem;
	color: #4B5563;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.about-contact-form-fallback p:last-child {
	margin-bottom: 0;
}

.about-contact-form-fallback a {
	color: #2F6FED;
	font-weight: 600;
	text-decoration: none;
}

.about-contact-form-fallback a:hover {
	text-decoration: underline;
}

.home-sec--about-cta {
	position: relative;
	overflow: hidden;
}

.home-sec--about-cta::before {
	content: "";
	position: absolute;
	inset: -25% auto auto 50%;
	width: 620px;
	height: 620px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(47, 111, 237, 0.24), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.home-sec--about-cta > .e-con-inner,
.home-sec--about-cta > .elementor-container {
	position: relative;
	z-index: 1;
}

.home-sec--about-cta .about-cta-actions {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	gap: 0.85rem !important;
}

@media (max-width: 1024px) {
	.home-sec--about-hero .about-hero-layout,
	.home-sec--about-contact .about-contact-layout,
	.home-sec--about-solve .about-solve-row {
		flex-wrap: wrap !important;
		flex-direction: column !important;
	}
	.home-sec--about-hero .about-hero-copy,
	.home-sec--about-hero .about-hero-media,
	.home-sec--about-contact .about-contact-left,
	.home-sec--about-contact .about-contact-right,
	.home-sec--about-solve .about-solve-row > .e-con {
		width: 100% !important;
		max-width: 100% !important;
	}
	.home-sec--about-contact .wpforms-field-container {
		grid-template-columns: 1fr !important;
	}
}

/* ══════════════════════════════════════════
   Results / Growth Stories page
   ══════════════════════════════════════════ */
.home-sec--results-hero {
	position: relative;
	overflow: hidden;
}

.home-sec--results-hero::before {
	content: "";
	position: absolute;
	inset: -30% auto auto 50%;
	width: 680px;
	height: 680px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(47, 111, 237, 0.26), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.home-sec--results-hero > .e-con-inner,
.home-sec--results-hero > .elementor-container {
	position: relative;
	z-index: 1;
}

.home-sec--results-hero .results-hero-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 2.25rem !important;
	width: 100% !important;
}

.home-sec--results-hero .results-hero-copy,
.home-sec--results-hero .results-hero-stats {
	min-width: 0 !important;
}

.home-sec--results-hero .results-hero-label-row {
	width: 100% !important;
}

.home-sec--results-hero .results-hero-copy .elementor-widget-text-editor p {
	max-width: 34rem;
	margin-inline: 0;
	text-align: left;
}

.home-sec--results-hero .results-hero-stats-card > .e-con-inner {
	gap: 1.15rem !important;
}

.home-sec--results-hero .results-hero-stats-card .elementor-icon-box-wrapper {
	align-items: flex-start !important;
}

.home-sec--results-hero .results-hero-stats-card .elementor-icon-box-icon {
	margin-top: 0.15rem;
}

.home-sec--results-case .results-case-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 2.5rem !important;
	width: 100% !important;
}

.home-sec--results-case .results-case-layout--reverse {
	flex-direction: row-reverse !important;
}

.home-sec--results-case .results-case-story,
.home-sec--results-case .results-case-impact {
	min-width: 0 !important;
}

.home-sec--results-case .results-case-label-row {
	width: 100% !important;
}

.home-sec--results-case .results-case-label-row .elementor-widget-icon,
.home-sec--results-case .results-case-label-row .elementor-widget-heading {
	margin-bottom: 0 !important;
}

.home-sec--results-case .results-case-label-row .elementor-icon {
	line-height: 1;
}

.home-sec--results-case .results-case-story > .e-con-inner {
	gap: 1rem !important;
}

.home-sec--results-case .results-case-story .elementor-widget-heading .elementor-heading-title {
	text-align: left !important;
	max-width: 36rem;
}

.home-sec--results-case .results-case-story .elementor-widget-text-editor {
	width: 100%;
}

.home-sec--results-case .results-case-story .elementor-widget-text-editor p {
	max-width: 36rem;
	margin: 0;
	text-align: left;
}

.home-sec--results-case .results-case-beats {
	width: 100%;
	max-width: 36rem;
	border-left: 3px solid var(--results-accent, #2f6fed) !important;
}

.home-sec--results-case .results-case-beats .elementor-icon-list-items {
	margin: 0;
	padding: 0;
}

.home-sec--results-case .results-case-beats .elementor-icon-list-item {
	align-items: flex-start !important;
	padding-block: 0.15rem;
}

.home-sec--results-case .results-case-beats .elementor-icon-list-icon {
	margin-top: 0.35rem;
}

.home-sec--results-case .results-case-beats .elementor-icon-list-text {
	white-space: normal !important;
	line-height: 1.45;
}

.home-sec--results-case .results-case-story .elementor-widget-heading:nth-child(3) .elementor-heading-title {
	margin-bottom: 0.15rem;
}

.home-sec--results-case .results-impact-card {
	position: relative;
	height: 100%;
}

.home-sec--results-case .results-impact-card > .e-con-inner {
	gap: 0.85rem !important;
}

.home-sec--results-case .results-impact-card > .e-con-inner > .elementor-widget-heading:first-child {
	position: absolute;
	top: 0.85rem;
	right: 1.1rem;
	z-index: 0;
	pointer-events: none;
	opacity: 0.22;
	line-height: 1;
}

.home-sec--results-case .results-impact-card > .e-con-inner > .elementor-widget-heading:first-child .elementor-heading-title {
	font-size: clamp(2.5rem, 4vw, 3.25rem) !important;
}

.home-sec--results-case .results-impact-heading-row,
.home-sec--results-case .results-impact-card .elementor-widget-icon-box {
	position: relative;
	z-index: 1;
}

.home-sec--results-case .results-impact-heading-row {
	width: 100% !important;
	margin-bottom: 0.35rem;
}

.home-sec--results-case .results-impact-card {
	height: 100%;
}

.home-sec--results-case .results-impact-card > .e-con-inner {
	gap: 0.65rem !important;
}

.home-sec--results-case .results-case-impact .elementor-widget-icon-box {
	margin: 0;
}

.home-sec--results-case .results-case-impact .elementor-icon-box-wrapper {
	align-items: flex-start !important;
}

.home-sec--results-case .results-case-impact .elementor-icon-box-icon {
	margin-top: 0.1rem;
}

.home-sec--results-case .results-case-impact .elementor-icon-box-title {
	margin: 0;
}

.home-sec--results-case .results-case-story .elementor-widget-text-editor p:last-child {
	margin-bottom: 0;
}

.home-sec--results-case.results-case--1 .results-case-beats { --results-accent: #2f6fed; }
.home-sec--results-case.results-case--2 .results-case-beats { --results-accent: #655396; }
.home-sec--results-case.results-case--3 .results-case-beats { --results-accent: #0f766e; }
.home-sec--results-case.results-case--4 .results-case-beats { --results-accent: #e07a4a; }
.home-sec--results-case.results-case--5 .results-case-beats { --results-accent: #4cb9b7; }

.home-sec--results-case .results-case-impact > .e-con {
	height: 100%;
}

.home-sec--results-case .elementor-icon-list-items {
	margin: 0;
	padding: 0;
}

.home-sec--results-case .elementor-icon-list-item {
	align-items: flex-start !important;
}

.home-sec--results-case .elementor-icon-list-text {
	white-space: normal !important;
	line-height: 1.4;
}

.home-sec--results-cta {
	position: relative;
	overflow: hidden;
}

.home-sec--results-cta::before {
	content: "";
	position: absolute;
	inset: -25% auto auto 50%;
	width: 620px;
	height: 620px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(47, 111, 237, 0.22), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.home-sec--results-cta > .e-con-inner,
.home-sec--results-cta > .elementor-container {
	position: relative;
	z-index: 1;
}

@media (max-width: 1024px) {
	.home-sec--results-hero .results-hero-layout {
		flex-wrap: wrap !important;
		flex-direction: column !important;
		align-items: stretch !important;
	}
	.home-sec--results-hero .results-hero-copy,
	.home-sec--results-hero .results-hero-stats {
		width: 100% !important;
		max-width: 100% !important;
	}
	.home-sec--results-case .results-case-layout,
	.home-sec--results-case .results-case-layout--reverse {
		flex-wrap: wrap !important;
		flex-direction: column !important;
		align-items: stretch !important;
	}
	.home-sec--results-case .results-case-story,
	.home-sec--results-case .results-case-impact {
		width: 100% !important;
		max-width: 100% !important;
	}
	.home-sec--results-case .results-case-story .elementor-widget-heading .elementor-heading-title,
	.home-sec--results-case .results-case-story .elementor-widget-text-editor p,
	.home-sec--results-case .results-case-beats {
		max-width: none;
	}
}

/* ══════════════════════════════════════════
   Approach page
   ══════════════════════════════════════════ */
.home-sec--approach-hero,
.home-sec--approach-cta,
.home-sec--approach-founder {
	position: relative;
	overflow: hidden;
}

.home-sec--approach-hero::before,
.home-sec--approach-cta::before {
	content: "";
	position: absolute;
	inset: -30% auto auto 50%;
	width: 680px;
	height: 680px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(47, 111, 237, 0.26), transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.home-sec--approach-hero > .e-con-inner,
.home-sec--approach-hero > .elementor-container,
.home-sec--approach-cta > .e-con-inner,
.home-sec--approach-cta > .elementor-container,
.home-sec--approach-founder > .e-con-inner,
.home-sec--approach-founder > .elementor-container {
	position: relative;
	z-index: 1;
}

.home-sec--approach-hero .approach-hero-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 2.25rem !important;
	width: 100% !important;
}

.home-sec--approach-hero .approach-hero-copy,
.home-sec--approach-hero .approach-hero-media {
	min-width: 0 !important;
}

.home-sec--approach-hero .approach-hero-copy .elementor-widget-text-editor p {
	max-width: 34rem;
	margin-inline: 0;
	text-align: left;
}

.home-sec--approach-hero .approach-hero-media img {
	border-radius: 22px;
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.home-sec--approach-hero .approach-hero-media .elementor-widget-html {
	width: 100%;
}

.home-sec--approach-hero .approach-hero-dna {
	min-height: clamp(320px, 36vw, 420px);
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 22px;
}

.home-sec--approach-hero .approach-hero-dna .dna-helix {
	--dna-h: min(360px, 34vw);
	animation-duration: 10s;
}

.home-sec--approach-hero .approach-hero-dna .dna-glow {
	width: 180px;
	height: 180px;
	animation: approach-dna-glow 4s ease-in-out infinite alternate;
}

@keyframes approach-dna-glow {
	0% {
		opacity: 0.65;
		transform: translate(-50%, -50%) scale(0.92);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.08);
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-sec--approach-hero .approach-hero-dna .dna-glow {
		animation: none;
	}
}

.home-sec--approach-pull .elementor-widget-icon .elementor-icon {
	margin-bottom: 0.35rem;
}

.home-sec--approach-pull > .e-con-inner > .elementor-widget-heading:nth-child(2) .elementor-heading-title {
	font-size: clamp(1.45rem, 2.8vw, 2rem) !important;
	max-width: 46rem;
	margin-inline: auto;
}

.home-sec--approach-pull > .e-con-inner > .elementor-widget-heading:nth-child(3) .elementor-heading-title {
	font-size: 1rem !important;
}

.home-sec--approach-drift .approach-drift-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 0.75rem !important;
	width: 100% !important;
}

.home-sec--approach-drift .approach-drift-signal {
	height: 100%;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-sec--approach-drift .approach-drift-signal:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(45, 67, 86, 0.08);
	border-color: rgba(76, 185, 183, 0.35) !important;
}

.home-sec--approach-drift .approach-drift-signal .elementor-icon {
	margin-inline: auto;
}

.home-sec--approach-drift .approach-drift-quote-wrap {
	margin-inline: auto !important;
}

.home-sec--approach-drift .approach-drift-quote-wrap .elementor-heading-title {
	max-width: 46rem;
	margin-inline: auto;
	font-size: clamp(1.15rem, 2.2vw, 1.5rem) !important;
}

.home-sec--approach-align .e-con > .e-con-inner {
	align-items: center;
	text-align: center;
}

.approach-founder-quote > .e-con-inner > .elementor-widget-heading .elementor-heading-title {
	font-size: clamp(1.15rem, 2.2vw, 1.45rem) !important;
}

.approach-founder-quote__by .elementor-widget-heading .elementor-heading-title {
	font-size: inherit !important;
	line-height: 1.3 !important;
}

.home-sec--approach .elementor-widget-text-editor p {
	max-width: 40rem;
	margin-inline: auto;
}

.home-sec--approach-align .elementor-widget-text-editor p {
	max-width: 38rem;
}

.home-sec--approach-align .elementor-widget-text-editor strong {
	color: #1A2B47;
}

.home-sec--approach-dna .approach-dna-row,
.home-sec--approach-method .approach-method-row {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	justify-content: space-between !important;
	gap: 0.85rem !important;
	width: 100% !important;
}

.home-sec--approach-dna .approach-dna-row > .e-con,
.home-sec--approach-method .approach-method-row > .e-con {
	flex: 1 1 0 !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}

.home-sec--approach-dna .approach-dna-row > .e-con > .e-con:hover,
.home-sec--approach-method .approach-method-row > .e-con > .e-con:hover {
	transform: translateY(-3px);
}

/* Orbit Drift — clean 4×2 professional grid */
.approach-drift-panel {
	width: 100%;
	background: #ffffff;
	border: 1px solid rgba(45, 67, 86, 0.08);
	border-radius: 22px;
	box-shadow: 0 14px 40px rgba(45, 67, 86, 0.08);
	padding: 1.75rem 1.5rem 1.5rem;
}

.approach-drift-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem;
	width: 100%;
}

.approach-drift-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 3.5rem;
	padding: 0.9rem 1rem;
	background: #F3F5F7;
	border: 1px solid rgba(45, 67, 86, 0.06);
	border-radius: 14px;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.approach-drift-item:hover {
	transform: translateY(-2px);
	background: #ffffff;
	border-color: rgba(47, 111, 237, 0.22);
	box-shadow: 0 10px 22px rgba(45, 67, 86, 0.08);
}

.approach-drift-item__icon {
	flex: 0 0 auto;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(47, 111, 237, 0.12);
	color: #2F6FED;
	font-size: 0.85rem;
}

.approach-drift-item__label {
	font-family: "DM Sans", sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1A2B47;
}

.approach-drift-quote {
	margin: 1.25rem 0 0;
	padding-top: 1.15rem;
	border-top: 1px solid rgba(45, 67, 86, 0.08);
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #6B7280;
	text-align: center;
	font-style: italic;
	max-width: 46rem;
	margin-inline: auto;
}

.home-sec--approach-dna .approach-dna-row > .e-con > .e-con,
.home-sec--approach-method .approach-method-row > .e-con > .e-con {
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-sec--approach-method .approach-method-row > .e-con > .e-con {
	border-top: 3px solid #4CB9B7;
}

.home-sec--approach-method .approach-method-row > .e-con:nth-child(2) > .e-con {
	border-top-color: #655396;
}

.home-sec--approach-method .approach-method-row > .e-con:nth-child(3) > .e-con {
	border-top-color: #2F6FED;
}

.home-sec--approach-method .approach-method-row > .e-con:nth-child(4) > .e-con {
	border-top-color: #1A2B47;
}

/* Philosophy — light left/right split */
.home-sec--approach-founder {
	background: #F3F5F7 !important;
}

.home-sec--approach-founder::before {
	display: none;
}

.home-sec--approach-founder .approach-founder-layout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 1.75rem !important;
	width: 100% !important;
}

.home-sec--approach-founder .approach-founder-copy,
.home-sec--approach-founder .approach-founder-quote-col {
	min-width: 0 !important;
}

.home-sec--approach-founder .approach-founder-copy .elementor-widget-text-editor p {
	max-width: 28rem;
	margin-inline: 0;
}

.approach-founder-link .elementor-icon-list-item a {
	text-decoration: none;
	transition: gap 0.2s ease, color 0.2s ease;
}

.approach-founder-link .elementor-icon-list-item:hover .elementor-icon-list-text,
.approach-founder-link .elementor-icon-list-item:hover .elementor-icon-list-icon {
	color: #1A2B47 !important;
}

.approach-founder-quote.e-con {
	position: relative;
	overflow: hidden;
}

.approach-founder-quote::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #4CB9B7, #2F6FED);
}

/* Decorative quote-mark icon sits absolute, top-right, behind the text */
.approach-founder-quote > .elementor-widget-icon:first-child {
	position: absolute !important;
	top: -0.4rem;
	right: 0.6rem;
	z-index: 0;
	pointer-events: none;
}

.approach-founder-quote .elementor-widget-text-editor {
	position: relative;
	z-index: 1;
}

.approach-founder-quote .elementor-widget-text-editor p {
	max-width: none !important;
}

.approach-founder-quote__by.e-con > .e-con-inner {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 0.75rem !important;
	width: 100% !important;
}

.approach-founder-quote__by .elementor-widget-image {
	flex: 0 0 auto !important;
	width: 44px !important;
	max-width: 44px !important;
	min-width: 44px !important;
}

.approach-founder-quote__by .elementor-widget-image img {
	width: 44px !important;
	height: 44px !important;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}

.approach-founder-quote__by > .e-con-inner > .e-con {
	flex: 1 1 auto !important;
	min-width: 0 !important;
}

.approach-founder-quote__by .elementor-widget-heading .elementor-heading-title {
	white-space: normal;
	line-height: 1.3;
}

/* PB initials fallback only — direct child of the byline row, not the name */
.approach-founder-quote__by > .e-con-inner > .elementor-widget-heading:first-child .elementor-heading-title {
	flex: 0 0 auto;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(76, 185, 183, 0.16);
	border: 1px solid rgba(76, 185, 183, 0.35);
}

/* Final CTA — centered dark band (compact height) */
.home-sec--approach-cta.e-con,
.home-sec--approach-cta > .e-con-inner {
	gap: 0.65rem !important;
	row-gap: 0.65rem !important;
}

.home-sec--approach-cta .approach-cta-actions {
	justify-content: center !important;
	margin-top: 0.15rem !important;
}

.home-sec--approach-cta .elementor-widget-text-editor p {
	max-width: 34rem;
	margin: 0 auto !important;
}

.home-sec--approach-cta .elementor-widget-heading {
	margin: 0 !important;
}

.home-sec--approach-cta .elementor-widget-button {
	margin: 0 !important;
}

.home-sec--approach-cta .elementor-button {
	padding: 0.75rem 1.35rem !important;
}

#gtm-matrix {
	scroll-margin-top: 96px;
}

/* GTM Alignment Matrix (interactive scorecard) */
.home-sec--approach-matrix .no-gtm-matrix {
	display: grid;
	gap: 2rem;
	align-items: start;
	width: 100%;
	margin-top: 0.5rem;
}

@media (min-width: 1024px) {
	.home-sec--approach-matrix .no-gtm-matrix {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 2.5rem;
	}
}

.no-gtm-insight {
	padding: 1.5rem;
	border-radius: 1.25rem;
	background: #F3F5F7;
	border: 1px solid rgba(45, 67, 86, 0.08);
}

.no-gtm-insight__header {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 0.75rem;
	font-family: "DM Sans", sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #2F6FED;
}

.no-gtm-insight__score {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.no-gtm-insight__score-value {
	font-family: "DM Sans", sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1A2B47;
	line-height: 1;
}

.no-gtm-insight__score-label {
	font-family: "DM Sans", sans-serif;
	font-size: 0.875rem;
	color: #6B7280;
}

.no-gtm-insight__text {
	font-family: "DM Sans", sans-serif;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #6B7280;
	margin: 0;
}

.no-gtm-insight__bridge {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(45, 67, 86, 0.1);
}

.no-gtm-insight__bridge-label {
	font-family: "DM Sans", sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6B7280;
	white-space: nowrap;
}

.no-gtm-insight__bridge-bar {
	flex: 1;
	height: 0.5rem;
	border-radius: 999px;
	background: rgba(45, 67, 86, 0.1);
	overflow: hidden;
}

.no-gtm-insight__bridge-fill {
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #655396, #4CB9B7);
	width: 0%;
	transition: width 0.35s ease;
}

.no-gtm-insight__bridge-gap {
	font-family: "DM Sans", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	color: #2F6FED;
	white-space: nowrap;
}

.no-gtm-zone-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

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

.no-gtm-zone {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	padding: 1.375rem;
	border-radius: 1.25rem;
	background: #ffffff;
	border: 1px solid rgba(45, 67, 86, 0.08);
	box-shadow: 0 10px 28px rgba(45, 67, 86, 0.07);
	min-height: 11rem;
	--pct: 50%;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.no-gtm-zone:hover {
	transform: translateY(-3px);
	border-color: rgba(76, 185, 183, 0.35);
	box-shadow: 0 16px 36px rgba(45, 67, 86, 0.1);
}

.no-gtm-zone--hustle {
	--zone-color: #4CB9B7;
	--zone-track: rgba(76, 185, 183, 0.18);
	border-top: 3px solid #4CB9B7;
}

.no-gtm-zone--genome {
	--zone-color: #655396;
	--zone-track: rgba(101, 83, 150, 0.18);
	border-top: 3px solid #655396;
}

.no-gtm-zone--misfit {
	--zone-color: #2F6FED;
	--zone-track: rgba(47, 111, 237, 0.16);
	border-top: 3px solid #2F6FED;
}

.no-gtm-zone--potential {
	--zone-color: #1A2B47;
	--zone-track: rgba(26, 43, 71, 0.12);
	border-top: 3px solid #1A2B47;
}

.no-gtm-zone__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.no-gtm-zone__title {
	font-family: "DM Sans", sans-serif;
	font-size: 1.0625rem;
	font-weight: 800;
	color: #1A2B47;
	letter-spacing: -0.02em;
	margin: 0;
}

.no-gtm-zone__value {
	font-family: "DM Sans", sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--zone-color);
	background: var(--zone-track);
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
	min-width: 3rem;
	text-align: center;
}

.no-gtm-zone__text {
	font-family: "DM Sans", sans-serif;
	font-size: 0.875rem;
	line-height: 1.55;
	color: #6B7280;
	margin: 0;
	flex: 1;
}

.no-gtm-zone__slider-wrap {
	position: relative;
	height: 2rem;
	display: flex;
	align-items: center;
	--pct: 50%;
}

.no-gtm-zone__slider-rail {
	position: absolute;
	left: 0;
	right: 0;
	height: 0.625rem;
	border-radius: 999px;
	background: var(--zone-track);
	overflow: hidden;
	pointer-events: none;
}

.no-gtm-zone__slider-fill {
	height: 100%;
	width: var(--pct);
	background: var(--zone-color);
	border-radius: inherit;
	transition: width 0.12s ease;
}

.no-gtm-zone__slider {
	position: relative;
	z-index: 2;
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	height: 2rem;
	margin: 0;
	background: transparent;
	cursor: pointer;
}

.no-gtm-zone__slider::-webkit-slider-runnable-track {
	height: 0.625rem;
	border-radius: 999px;
	background: transparent;
}

.no-gtm-zone__slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 1.25rem;
	height: 1.25rem;
	margin-top: -0.3125rem;
	border-radius: 50%;
	background: var(--zone-color);
	border: 3px solid #ffffff;
	box-shadow: 0 0 0 2px var(--zone-color), 0 2px 8px rgba(45, 67, 86, 0.22);
	cursor: grab;
}

.no-gtm-zone__slider::-moz-range-track {
	height: 0.625rem;
	border-radius: 999px;
	background: transparent;
}

.no-gtm-zone__slider::-moz-range-thumb {
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: var(--zone-color);
	border: 3px solid #ffffff;
	box-shadow: 0 0 0 2px var(--zone-color), 0 2px 8px rgba(45, 67, 86, 0.22);
	cursor: grab;
}

@media (max-width: 1024px) {
	.approach-drift-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.home-sec--approach-hero .approach-hero-layout {
		flex-wrap: wrap !important;
	}
	.home-sec--approach-hero .approach-hero-copy,
	.home-sec--approach-hero .approach-hero-media {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	.home-sec--approach-dna .approach-dna-row,
	.home-sec--approach-method .approach-method-row {
		flex-wrap: wrap !important;
	}
	.home-sec--approach-dna .approach-dna-row > .e-con,
	.home-sec--approach-method .approach-method-row > .e-con {
		flex: 1 1 calc(50% - 0.45rem) !important;
		width: calc(50% - 0.45rem) !important;
		max-width: calc(50% - 0.45rem) !important;
	}
	.home-sec--approach-founder .approach-founder-layout {
		flex-wrap: wrap !important;
		flex-direction: column !important;
	}
	.home-sec--approach-founder .approach-founder-copy,
	.home-sec--approach-founder .approach-founder-quote-col {
		width: 100% !important;
		max-width: 100% !important;
	}
}

@media (max-width: 640px) {
	.approach-drift-grid {
		grid-template-columns: 1fr;
	}
	.home-sec--approach-dna .approach-dna-row > .e-con,
	.home-sec--approach-method .approach-method-row > .e-con {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
}

/* ══════════════════════════════════════════
   Sitewide responsive — mobile & tablet
   ══════════════════════════════════════════ */

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body.elementor-page {
	overflow-x: hidden;
}

img,
video,
iframe,
svg {
	max-width: 100%;
	height: auto;
}

/* Touch-friendly tap targets */
.elementor-button,
button.wpforms-submit,
.hdr-nav-col .elementor-menu-toggle,
.elementor-nav-menu--dropdown .elementor-item {
	min-height: 44px;
}

@media (max-width: 1024px) {
	/* Fixed-width Elementor containers → fluid */
	.about-prose.e-con,
	.about-matters-wrap.e-con,
	.about-pattern-wrap.e-con,
	.about-pattern-outro.e-con,
	.about-milestones-wrap.e-con {
		width: 100% !important;
		max-width: 100% !important;
	}

	.home-sec--about-hero .about-hero-layout {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 1.5rem !important;
	}

	.home-sec--approach-hero .approach-hero-layout {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 1.5rem !important;
	}

	.home-sec--results-hero .results-hero-copy .elementor-widget-text-editor p {
		max-width: none;
	}

	.home-sec--results-case .results-case-layout--reverse {
		flex-direction: column !important;
	}

	.home-sec--audit .audit-row {
		flex-wrap: wrap !important;
	}

	.home-sec--audit .audit-row > .e-con {
		flex: 1 1 calc(50% - 0.575rem) !important;
		width: calc(50% - 0.575rem) !important;
		max-width: calc(50% - 0.575rem) !important;
	}

	.no-gtm-matrix {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	:root {
		--px: 1rem;
	}

	/* Section padding — tighter on phones (content sections) */
	[class*="home-sec--"]:not(.home-sec--about-hero):not(.home-sec--approach-hero):not(.home-sec--results-hero):not(.home-sec--dna-hero).e-con > .e-con-inner {
		padding-top: clamp(2.5rem, 8vw, 3.5rem) !important;
		padding-bottom: clamp(2.5rem, 8vw, 3.5rem) !important;
		padding-left: max(1rem, env(safe-area-inset-left)) !important;
		padding-right: max(1rem, env(safe-area-inset-right)) !important;
	}

	/* Hero / CTA bands — preserve presence, scale down */
	.home-sec--about-hero.e-con > .e-con-inner,
	.home-sec--approach-hero.e-con > .e-con-inner,
	.home-sec--results-hero.e-con > .e-con-inner,
	.home-sec--dna-hero.e-con > .e-con-inner,
	.home-sec--approach-cta.e-con > .e-con-inner,
	.home-sec--dna-cta.e-con > .e-con-inner,
	.home-sec--results-cta.e-con > .e-con-inner {
		padding-top: clamp(3rem, 11vw, 4.5rem) !important;
		padding-bottom: clamp(2.5rem, 9vw, 4rem) !important;
		padding-left: max(1rem, env(safe-area-inset-left)) !important;
		padding-right: max(1rem, env(safe-area-inset-right)) !important;
	}

	#hdr.site-hdr > .e-con-inner,
	.site-ftr.footer > .e-con-inner,
	.elementor-location-footer .site-ftr > .e-con-inner {
		padding-left: max(1rem, env(safe-area-inset-left)) !important;
		padding-right: max(1rem, env(safe-area-inset-right)) !important;
	}

	/* ── About page ── */
	.home-sec--about-hero .about-hero-copy .elementor-widget-heading .elementor-heading-title {
		font-size: clamp(1.75rem, 7.5vw, 2.5rem) !important;
		line-height: 1.15 !important;
	}

	.home-sec--about-hero .about-hero-copy .elementor-widget-text-editor p {
		max-width: none;
		font-size: 1rem !important;
	}

	.home-sec--about-hero .about-hero-media img {
		max-width: 28rem;
		margin-inline: auto;
		aspect-ratio: 4 / 5;
		object-position: 50% 16%;
	}

	.about-prose .elementor-widget-heading .elementor-heading-title {
		font-size: clamp(1.5rem, 5.5vw, 2rem) !important;
	}

	.about-prose .elementor-widget-text-editor p {
		font-size: 1rem !important;
		line-height: 1.65 !important;
	}

	.about-highlight-card,
	.about-discover-questions {
		border-radius: 12px !important;
	}

	.about-highlight-card > .e-con-inner,
	.about-discover-questions > .e-con-inner {
		padding: 1rem 1.15rem !important;
	}

	.about-matters-panel > .e-con-inner {
		padding: 1.35rem 1.15rem !important;
		gap: 0.65rem !important;
	}

	.about-matters-panel .elementor-widget-heading .elementor-heading-title {
		font-size: clamp(1.5rem, 5.5vw, 2rem) !important;
	}

	.home-sec--about-contact .about-contact-left > .e-con,
	.home-sec--about-contact .about-contact-right > .e-con {
		padding: 1.25rem 1.15rem !important;
	}

	.home-sec--about-contact .about-contact-intro-card .elementor-widget-heading .elementor-heading-title {
		font-size: clamp(1.35rem, 5vw, 1.75rem) !important;
	}

	.home-sec--about-contact .wpforms-field-container {
		grid-template-columns: 1fr !important;
		gap: 0.75rem !important;
	}

	.home-sec--about-contact button.wpforms-submit {
		width: 100%;
		justify-content: center;
	}

	/* ── Results page ── */
	.home-sec--results-hero .results-hero-copy .elementor-widget-heading .elementor-heading-title {
		font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
	}

	.home-sec--results-case .results-case-story .elementor-widget-heading .elementor-heading-title {
		font-size: clamp(1.35rem, 5vw, 1.75rem) !important;
	}

	.home-sec--results-case .results-case-layout,
	.home-sec--results-case .results-case-layout--reverse {
		gap: 1.5rem !important;
	}

	/* ── Approach page ── */
	.home-sec--approach-hero .approach-hero-copy .elementor-widget-heading .elementor-heading-title {
		font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
	}

	.home-sec--approach-hero .approach-hero-dna {
		max-width: 18rem;
		margin-inline: auto;
	}

	.home-sec--approach-drift .approach-drift-quote-wrap .elementor-heading-title {
		font-size: clamp(1.05rem, 4vw, 1.25rem) !important;
	}

	.home-sec--approach-founder .approach-founder-copy .elementor-widget-text-editor p {
		max-width: none;
	}

	/* ── DNA Discovery / Engagement ── */
	.home-sec--dna-hero .dna-hero-copy .elementor-widget-heading .elementor-heading-title {
		font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
	}

	.home-sec--dna-page .dna-zig-col .elementor-widget-heading .elementor-heading-title {
		font-size: clamp(1.35rem, 5vw, 1.75rem) !important;
	}

	.home-sec--dna-deliver .dna-v2-more .elementor-widget-heading:last-child .elementor-heading-title {
		font-size: clamp(1.25rem, 4.5vw, 1.5rem) !important;
	}

	.home-sec--dna-cta .dna-v2-finale {
		flex-direction: column !important;
		gap: 1.25rem !important;
	}

	.home-sec--dna-cta .dna-v2-finale__panel .elementor-button {
		width: 100%;
		justify-content: center;
	}

	/* ── Homepage ── */
	#hero,
	#hero.no-hero-overlay,
	.no-hero-overlay.e-con {
		min-height: clamp(420px, 72vh, 520px) !important;
	}

	#hero .elementor-widget-button .elementor-button {
		width: 100%;
		justify-content: center;
	}

	.home-sec--audit .audit-row > .e-con {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.home-sec--stories .stories-row > .e-con {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.wv-hero-sub {
		font-size: 1rem !important;
		max-width: none !important;
	}

	.wv-logo-grid {
		flex-wrap: wrap !important;
		justify-content: center !important;
		gap: 1rem !important;
	}

	.wv-logo-col {
		flex: 1 1 calc(50% - 0.5rem) !important;
		min-width: 0 !important;
	}

	.no-gtm-matrix {
		grid-template-columns: 1fr !important;
	}

	/* ── Header / Footer ── */
	.hdr-inner > .e-con-inner {
		padding-inline: 0.25rem !important;
		gap: 0.5rem !important;
	}

	.hdr-logo-col {
		max-width: calc(100% - 3.5rem) !important;
	}

	.hdr-nav-col .elementor-menu-toggle {
		width: 2.65rem !important;
		height: 2.65rem !important;
	}

	.ftr-nav-group {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 1.5rem !important;
	}

	.ftr-bottom {
		flex-direction: column !important;
		align-items: flex-start !important;
		text-align: left !important;
	}

	.ftr-bottom .elementor-widget-text-editor p {
		text-align: left !important;
	}
}

@media (max-width: 480px) {
	.about-pattern-grid > .about-pattern-signal {
		min-height: auto !important;
	}

	.about-milestones-stats-row > .about-milestone-card,
	.about-milestones-badges-row > .about-milestone-card {
		min-height: 0 !important;
	}

	.about-milestone-card--tile .elementor-widget-heading:nth-child(2) .elementor-heading-title {
		font-size: 2rem !important;
	}

	.wv-logo-col {
		flex: 1 1 100% !important;
	}

	.hdr-cta-col .elementor-button {
		font-size: 0.875rem !important;
		padding: 0 1.35rem !important;
	}
}

@media (max-width: 767px) and (orientation: landscape) {
	#hero,
	#hero.no-hero-overlay,
	.no-hero-overlay.e-con {
		min-height: 360px !important;
	}

	.home-sec--about-hero .about-hero-layout,
	.home-sec--approach-hero .approach-hero-layout,
	.home-sec--results-hero .results-hero-layout {
		flex-direction: row !important;
		flex-wrap: wrap !important;
	}

	.home-sec--about-hero .about-hero-copy,
	.home-sec--about-hero .about-hero-media,
	.home-sec--approach-hero .approach-hero-copy,
	.home-sec--approach-hero .approach-hero-media {
		flex: 1 1 48% !important;
		width: 48% !important;
		max-width: 48% !important;
	}
}
