.dr1060servicesbrief7 {
	padding: 90px 20px;
	background: radial-gradient(circle at top, #070b14, #04050a);
	color: #fff;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
	overflow: hidden;
}

/* ================= HERO ================= */
.fe-hero {
	position: relative;
	border-radius: 26px;
	overflow: hidden;
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
	display: grid;
}

.fe-hero-image {
	width: 100%;
	height: 440px;
	object-fit: cover;
	grid-area: 1/1;
	filter: brightness(0.75) contrast(1.2);
	transform: scale(1.05);
}

.fe-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(0, 0, 0, 0.75),
		rgba(0, 0, 0, 0.2));
	z-index: 1;
}

.fe-content {
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
	max-width: 650px;
	z-index: 2;
}

.fe-title {
	font-size: 36px;
	font-weight: 900;
	letter-spacing: -0.5px;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.fe-subtitle {
	margin-top: 12px;
	font-size: 16px;
	opacity: 0.85;
	line-height: 1.6;
}

.fe-badges {
	margin-top: 18px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.fe-badges span {
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
}

/* ================= ECOSYSTEM GRAPH ================= */
.fe-ecosystem {
	margin-top: 70px;
}

.fe-section-title {
	text-align: center;
	font-size: 22px;
	margin-bottom: 40px;
	opacity: 0.9;
}

.fe-graph {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

/* Nodes */
.fe-node {
	padding: 14px 18px;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.07),
		rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	text-align: center;
	min-width: 180px;
	transition: all 0.6s ease;
}

.fe-node small {
	display: block;
	font-size: 11px;
	opacity: 0.7;
	margin-top: 4px;
}

/* Root */
.fe-node.root {
	font-weight: 800;
	border: 1px solid rgba(77, 163, 255, 0.5);
	box-shadow: 0 0 40px rgba(77, 163, 255, 0.2);
}

/* AI nodes */
.fe-node.ai {
	border: 1px solid rgba(120, 200, 255, 0.25);
}

.fe-node.future {
	opacity: 0.75;
}

/* Lines */
.fe-line {
	width: 2px;
	height: 40px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3),
		transparent);
}

/* Branch layout */
.fe-branches {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: center;
}

/* Future grid */
.fe-future {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 10px;
}

/* Message */
.fe-message {
	margin-top: 40px;
	text-align: center;
	max-width: 800px;
	opacity: 0.8;
}

/* ================= ANIMATION ================= */
.fe-node, .fe-hero-image, .fe-content {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.fe-node.show, .fe-hero-image.show, .fe-content.show {
	opacity: 1;
	transform: translateY(0);
}

/* ================= MOBILE FIX ================= */
@media ( max-width : 768px) {
	.fe-hero-image {
		height: 280px;
		transform: scale(1);
	}
	.fe-content {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		padding: 16px;
		margin-top: -110px;
	}
	.fe-title {
		font-size: 22px;
		line-height: 1.3;
	}
	.fe-subtitle {
		font-size: 13px;
	}
	.fe-branches {
		gap: 20px;
	}
}