/* ========== Why Data Analytics Skills Are in Demand ========== */
.asmorix-demand {
	--ad-blue: #0c5adb;
	--ad-navy: #041424;
	--ad-muted: #5b6b7c;
	--ad-font: "Nunito", "Poppins", sans-serif;
	--ad-display: "Rajdhani", "Nunito", sans-serif;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 88px 0 96px;
	background:
		radial-gradient(900px 420px at 12% -10%, rgba(12, 90, 219, 0.1), transparent 55%),
		radial-gradient(720px 360px at 100% 30%, rgba(255, 210, 0, 0.06), transparent 50%),
		linear-gradient(180deg, #f3f7fc 0%, #eaf0f8 45%, #f8fafc 100%);
	color: var(--ad-navy);
	font-family: var(--ad-font);
}

.asmorix-demand__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	opacity: 0.45;
	background:
		radial-gradient(circle at 20% 30%, rgba(12, 90, 219, 0.07) 0 1px, transparent 1.5px),
		radial-gradient(circle at 80% 70%, rgba(4, 20, 36, 0.05) 0 1px, transparent 1.5px);
	background-size: 28px 28px, 36px 36px;
}

.asmorix-demand__inner {
	position: relative;
	z-index: 1;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.asmorix-demand__header {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}

.asmorix-demand__header.is-inview {
	opacity: 1;
	transform: none;
}

.asmorix-demand__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	padding: 7px 14px;
	border-radius: 999px;
	background: rgba(12, 90, 219, 0.08);
	color: var(--ad-blue);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.asmorix-demand__title {
	margin: 0 0 14px;
	font-family: var(--ad-display);
	font-size: clamp(30px, 3.4vw, 44px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--ad-navy);
}

.asmorix-demand__lead {
	margin: 0;
	font-size: 16.5px;
	line-height: 1.65;
	color: var(--ad-muted);
	font-weight: 500;
}

/* ---- Stat boxes: glass strip + top glow ---- */
.asmorix-demand__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 0 0 28px;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s .08s cubic-bezier(.22,1,.36,1), transform .7s .08s cubic-bezier(.22,1,.36,1);
}

.asmorix-demand__stats.is-inview {
	opacity: 1;
	transform: none;
}

.asmorix-demand__stat {
	position: relative;
	padding: 30px 26px 26px;
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(247,250,255,0.9) 100%);
	border: 0;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 20px 50px rgba(4, 20, 36, 0.08);
	overflow: hidden;
	transition: transform .35s ease, box-shadow .35s ease;
}

.asmorix-demand__stat::before {
	content: "";
	position: absolute;
	left: 24px;
	right: 24px;
	top: 0;
	height: 4px;
	border-radius: 0 0 8px 8px;
	background: linear-gradient(90deg, #0c5adb, #3b82f6 50%, #ffd200);
}

.asmorix-demand__stat::after {
	content: "";
	position: absolute;
	right: -30px;
	top: -30px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(12, 90, 219, 0.1), transparent 70%);
	pointer-events: none;
}

.asmorix-demand__stat:hover {
	transform: translateY(-6px);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 28px 56px rgba(4, 20, 36, 0.12);
}

.asmorix-demand__stat-value {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	font-family: var(--ad-display);
	font-size: clamp(36px, 3.4vw, 48px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #0c5adb 0%, #041424 85%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.asmorix-demand__stat-value sup {
	font-size: 0.42em;
	font-weight: 700;
	margin-left: 1px;
}

.asmorix-demand__stat-label {
	position: relative;
	z-index: 1;
	margin: 0 0 6px;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--ad-navy);
}

.asmorix-demand__stat-source {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #8494a7;
}

/* ---- Insight boxes: icon well + soft panel ---- */
.asmorix-demand__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px;
}

.asmorix-demand__point {
	grid-column: span 4;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 28px 26px 26px;
	border-radius: 22px;
	background: #fff;
	border: 1px solid transparent;
	background-clip: padding-box;
	box-shadow:
		0 0 0 1px rgba(12, 90, 219, 0.06),
		0 14px 36px rgba(4, 20, 36, 0.05);
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, transform .3s ease;
}

.asmorix-demand__point.is-inview {
	opacity: 1;
	transform: none;
}

.asmorix-demand__point:nth-child(1).is-inview { transition-delay: .05s; }
.asmorix-demand__point:nth-child(2).is-inview { transition-delay: .12s; }
.asmorix-demand__point:nth-child(3).is-inview { transition-delay: .19s; }
.asmorix-demand__point:nth-child(4).is-inview { transition-delay: .26s; }
.asmorix-demand__point:nth-child(5).is-inview { transition-delay: .33s; }

.asmorix-demand__point:hover {
	transform: translateY(-5px);
	box-shadow:
		0 0 0 1px rgba(12, 90, 219, 0.14),
		0 22px 44px rgba(4, 20, 36, 0.1);
}

.asmorix-demand__point--featured {
	background:
		radial-gradient(420px 220px at 100% 0%, rgba(12, 90, 219, 0.55), transparent 55%),
		linear-gradient(155deg, #03101d 0%, #0a2748 48%, #0c5adb 130%);
	color: #fff;
	box-shadow: 0 24px 48px rgba(4, 20, 36, 0.28);
}

.asmorix-demand__point--featured:hover {
	box-shadow: 0 28px 56px rgba(4, 20, 36, 0.34);
}

.asmorix-demand__point--featured .asmorix-demand__point-title,
.asmorix-demand__point--featured .asmorix-demand__point-text {
	color: #fff;
}

.asmorix-demand__point--featured .asmorix-demand__point-text {
	color: rgba(255, 255, 255, 0.88);
}

.asmorix-demand__point--featured .asmorix-demand__point-text strong,
.asmorix-demand__point--featured strong {
	color: #ffd200 !important;
	font-weight: 800;
	background: rgba(255, 210, 0, 0.16);
	padding: 0 4px;
	border-radius: 4px;
}

.asmorix-demand__point--featured .asmorix-demand__icon {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.asmorix-demand__point--wide {
	grid-column: span 8;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
	background:
		linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
	padding: 30px 28px;
}

.asmorix-demand__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: 0 0 auto;
	border-radius: 16px;
	background: linear-gradient(160deg, #eef4ff 0%, #e2ecff 100%);
	color: var(--ad-blue);
	box-shadow: inset 0 0 0 1px rgba(12, 90, 219, 0.08);
}

.asmorix-demand__icon svg {
	width: 26px;
	height: 26px;
}

.asmorix-demand__point-title {
	margin: 0;
	font-family: var(--ad-display);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--ad-navy);
}

.asmorix-demand__point-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: var(--ad-muted);
	font-weight: 500;
}

.asmorix-demand__point-text strong {
	color: var(--ad-navy);
	font-weight: 700;
}

.asmorix-demand__cta-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 42px;
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .7s .1s cubic-bezier(.22,1,.36,1), transform .7s .1s cubic-bezier(.22,1,.36,1);
}

.asmorix-demand__cta-row.is-inview {
	opacity: 1;
	transform: none;
}

.asmorix-demand__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 28px;
	border-radius: 14px;
	background: linear-gradient(135deg, #0c5adb 0%, #0a4ec4 100%);
	color: #fff !important;
	font-family: var(--ad-display);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-decoration: none !important;
	box-shadow: 0 14px 28px rgba(12, 90, 219, 0.28);
	transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.asmorix-demand__cta:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
	box-shadow: 0 18px 34px rgba(12, 90, 219, 0.34);
	color: #fff !important;
}

.asmorix-demand__cta-note {
	margin: 0;
	max-width: 520px;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--ad-muted);
	font-weight: 500;
}

@media (max-width: 1024px) {
	.asmorix-demand {
		padding: 72px 0 80px;
	}
	.asmorix-demand__stats {
		grid-template-columns: 1fr;
	}
	.asmorix-demand__point,
	.asmorix-demand__point--wide {
		grid-column: span 6;
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	.asmorix-demand {
		padding: 56px 0 64px;
	}
	.asmorix-demand__inner {
		width: min(100% - 28px, 1180px);
	}
	.asmorix-demand__header {
		margin-bottom: 32px;
	}
	.asmorix-demand__point,
	.asmorix-demand__point--wide {
		grid-column: span 12;
	}
	.asmorix-demand__stat {
		padding: 24px 20px;
	}
	.asmorix-demand__cta {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.asmorix-demand__header,
	.asmorix-demand__stats,
	.asmorix-demand__point,
	.asmorix-demand__cta-row {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
