.dr1060servicesbrief6 {
	padding: 80px 20px;
	background: radial-gradient(circle at top, #0b1220, #05070d);
	color: #ffffff;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
	overflow: hidden;
}

/* =========================
   HERO SECTION
========================= */
.lj-hero {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
	display: grid;
}

.lj-hero-image {
	width: 100%;
	height: 420px;
	object-fit: cover;
	filter: brightness(0.75) contrast(1.2);
	transform: scale(1.05);
	grid-area: 1/1;
}

.lj-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(0, 0, 0, 0.7),
		rgba(0, 0, 0, 0.2));
	z-index: 1;
}

.lj-hero-content {
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
	max-width: 650px;
	z-index: 2;
}

.lj-title {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.5px;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.lj-subtitle {
	margin-top: 12px;
	font-size: 16px;
	opacity: 0.85;
	line-height: 1.6;
}

.lj-badges {
	margin-top: 18px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.lj-badges span {
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================
   FLOW SECTION
========================= */
.lj-flow-wrapper {
	margin-top: 60px;
}

.lj-section-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 30px;
	opacity: 0.9;
	text-align: center;
}

.lj-flow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.lj-step {
	width: min(720px, 100%);
	padding: 18px 20px;
	border-radius: 16px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transform: translateY(30px);
	opacity: 0;
	transition: all 0.8s ease;
}

.lj-step.show {
	transform: translateY(0);
	opacity: 1;
}

.lj-step h4 {
	margin: 0;
	font-size: 18px;
}

.lj-step p {
	margin-top: 6px;
	font-size: 14px;
	opacity: 0.75;
	line-height: 1.5;
}

.lj-step .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #4da3ff;
	margin-bottom: 8px;
	box-shadow: 0 0 15px #4da3ff;
}

.lj-step.highlight {
	border: 1px solid rgba(77, 163, 255, 0.4);
	box-shadow: 0 0 40px rgba(77, 163, 255, 0.15);
}

.lj-step.final {
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: linear-gradient(145deg, rgba(77, 163, 255, 0.15),
		rgba(255, 255, 255, 0.02));
}

.lj-arrow {
	font-size: 18px;
	opacity: 0.5;
}

/* =========================
   MESSAGE STRIP
========================= */
.lj-message {
	margin-top: 50px;
	text-align: center;
	font-size: 15px;
	opacity: 0.8;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* =========================
   RESPONSIVE FIX (IMPORTANT)
========================= */
@media ( max-width : 768px) {
	.lj-hero-image {
		height: 260px;
		transform: scale(1); /* FIX: remove zoom causing misalignment */
	}
	.lj-hero-content {
		position: relative; /* KEY FIX */
		top: auto;
		left: auto;
		transform: none; /* REMOVE vertical centering */
		padding: 16px;
		margin-top: -110px; /* overlay effect without breaking layout */
		max-width: 100%;
	}
	.lj-title {
		font-size: 20px;
		line-height: 1.3;
	}
	.lj-subtitle {
		font-size: 13px;
	}
	.lj-badges {
		justify-content: flex-start;
	}
	.lj-section-title {
		font-size: 18px;
	}
}