.dr1060servicesbrief5 {
	padding: 95px 0;
	position: relative;
	background: radial-gradient(circle at top right, rgba(0, 150, 255, .18),
		transparent 45%),
		radial-gradient(circle at bottom left, rgba(140, 70, 255, .14),
		transparent 50%), linear-gradient(135deg, #050814, #070c1a);
	color: #fff;
	overflow: hidden;
}

/* HEADER */
.workflow-header {
	width: min(1100px, 92%);
	margin: 0 auto 40px;
	text-align: center;
}

.workflow-header h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 700;
}

.workflow-header h2 span {
	background: linear-gradient(90deg, #6be7ff, #a855f7, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.workflow-header p {
	margin-top: 12px;
	opacity: .85;
	font-size: 1.1rem;
	line-height: 1.7;
}

/* HERO IMAGE */
.workflow-hero {
	width: min(1100px, 92%);
	margin: 40px auto 60px;
	position: relative;
	display: flex;
	justify-content: center;
}

.workflow-glow {
	position: absolute;
	width: 520px;
	height: 520px;
	background: #00d4ff;
	border-radius: 50%;
	filter: blur(170px);
	opacity: .18;
	z-index: 0;
}

.workflow-image {
	width: 100%;
	max-width: 800px;
	border-radius: 26px;
	position: relative;
	z-index: 2;
	box-shadow: 0 50px 160px rgba(0, 0, 0, .65);
	border: 1px solid rgba(255, 255, 255, .12);
	transform: scale(1.02);
}

/* ROADMAP */
.workflow-roadmap {
	width: min(1100px, 92%);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 14px;
}

/* STEP */
.workflow-step {
	padding: 14px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .14);
	backdrop-filter: blur(14px);
	font-size: .95rem;
	font-weight: 500;
	transition: .4s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.workflow-step:hover {
	transform: translateY(-6px) scale(1.05);
	background: rgba(255, 255, 255, .1);
}

/* FINAL STEP SPECIAL */
.workflow-step.final {
	background: linear-gradient(135deg, rgba(0, 212, 255, .25),
		rgba(168, 85, 247, .25));
	border: 1px solid rgba(255, 255, 255, .25);
}

/* ARROW */
.workflow-arrow {
	font-size: 1.2rem;
	opacity: .6;
}

/* MESSAGE */
.workflow-message {
	width: min(900px, 92%);
	margin: 40px auto 0;
	text-align: center;
	font-size: 1.05rem;
	opacity: .85;
	line-height: 1.7;
}

/* ANIMATION */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all .8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* RESPONSIVE */
@media ( max-width :900px) {
	.workflow-roadmap {
		flex-direction: column;
		gap: 10px;
	}
	.workflow-arrow {
		transform: rotate(90deg);
	}
	.workflow-image {
		max-width: 100%;
	}
}