/* ═══════════════════════════════════════════════════════════════════════════
   CE STEPS — 3-step cards with chevron connectors
   Used for "What you need to do" style sections
   ═══════════════════════════════════════════════════════════════════════════ */

.ce-steps {
	background: #f9f9f9;
	padding: 5rem 0;
}

.ce-steps__heading {
	font-family: var(--ci-font-primary);
	font-size: var(--ci-text-h2);
	font-weight: 700;
	color: #6d9fa3;
	text-align: center;
	margin: 0 0 3rem;
	line-height: 1.25;
}

.ce-steps__intro {
	font-family: var(--ci-font-primary);
	font-size: var(--ci-text-body);
	line-height: 1.75;
	color: var(--ci-color-text-muted);
	text-align: center;
	max-width: 600px;
	margin: -1.5rem auto 2.5rem;
}

/* ── Track: cards + connectors in a flex row ── */
.ce-steps__track {
	display: flex;
	align-items: stretch;
}

/* ── Step card — liquid glass ── */
.ce-steps__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.75rem 1.5rem;
	background: rgba(109, 159, 163, 0.13);
	border: 1px solid rgba(109, 159, 163, 0.28);
	border-radius: 1.25rem;
	backdrop-filter: blur(20px) saturate(1.3);
	-webkit-backdrop-filter: blur(20px) saturate(1.3);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 4px 20px rgba(0, 0, 0, 0.05);
	gap: 0.75rem;
}

/* ── Chevron connector ── */
.ce-steps__connector {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 3.5rem;
	color: #6d9fa3;
	font-size: 1.5rem;
	opacity: 0.8;
}

/* ── Icon badge with step number pill ── */
.ce-steps__badge-wrap {
	position: relative;
	display: inline-flex;
}

.ce-steps__badge {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
}

/* ── Brand colour cycling on badges ── */
.ce-steps__item:nth-child(1) .ce-steps__badge {
	background: rgba(249, 157, 49, 0.18);
	color: var(--ci-color-engage);
}
.ce-steps__item:nth-child(3) .ce-steps__badge {
	background: rgba(83, 141, 169, 0.2);
	color: var(--ci-color-innovate);
}
.ce-steps__item:nth-child(5) .ce-steps__badge {
	background: rgba(113, 148, 126, 0.2);
	color: #71947e;
}

/* ── Step number pill ── */
.ce-steps__num {
	position: absolute;
	top: -0.65rem;
	right: -0.65rem;
	width: 1.85rem;
	height: 1.85rem;
	border-radius: 50%;
	background: #6d9fa3;
	color: #ffffff;
	font-family: var(--ci-font-primary);
	font-size: 0.72rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	border: 2.5px solid #f9f9f9;
}

/* ── Text ── */
.ce-steps__title {
	font-family: var(--ci-font-primary);
	font-size: var(--ci-text-card-heading);
	font-weight: 700;
	color: var(--ci-color-navy);
	margin: 0;
	line-height: 1.4;
}

.ce-steps__desc {
	font-family: var(--ci-font-primary);
	font-size: var(--ci-text-card-body);
	font-weight: 700;
	line-height: 1.4;
	color: var(--ci-color-navy);
	margin: 0;
}

@media (max-width: 767px) {
	.ce-steps {
		padding: 3rem 0;
	}
}
