.dr1060servicesbrief2 {
	padding: 100px 0;
	background: radial-gradient(circle at top left, rgba(0, 140, 255, .18),
		transparent 45%),
		radial-gradient(circle at bottom right, rgba(140, 60, 255, .14),
		transparent 50%), linear-gradient(135deg, #050814, #070c1a);
	color: #eaf2ff;
	font-family: system-ui;
	overflow: hidden;
}

/* ================= HEADER ================= */
.dr1060servicesbrief2__header {
	width: min(1100px, 92%);
	margin: auto;
	text-align: center;
	margin-bottom: 50px;
}

.dr1060servicesbrief2__header h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
}

.dr1060servicesbrief2__header h2 span {
	background: linear-gradient(90deg, #6be7ff, #a855f7, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1060servicesbrief2__header p {
	margin-top: 12px;
	opacity: .8;
	line-height: 1.7;
}

/* ================= HERO (FIXED NO CROPPING) ================= */
.dr1060servicesbrief2__hero {
	width: min(900px, 92%);
	margin: auto;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.dr1060servicesbrief2__heroImg {
	width: 100%;
	height: auto; /* FIX: removes cropping */
	max-height: 360px; /* keeps structure */
	object-fit: contain; /* FIX: no crop */
	display: block;
	border-radius: 20px;
	box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
}

/* glow */
.dr1060servicesbrief2__glow {
	position: absolute;
	width: 420px;
	height: 420px;
	background: #00d4ff;
	opacity: .18;
	filter: blur(120px);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	pointer-events: none;
}

/* ================= GRID ================= */
.dr1060servicesbrief2__grid {
	width: min(1100px, 92%);
	margin: 60px auto 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	align-items: stretch;
}

/* ================= CARD BASE (FIXED ANIMATION) ================= */
.dr1060servicesbrief2__card {
	display: block;
	position: relative;
	padding: 28px;
	border-radius: 20px;
	text-decoration: none;
	color: #eaf2ff;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	backdrop-filter: blur(18px);
	box-shadow: 0 25px 80px rgba(0, 0, 0, .45);
	/* IMPORTANT: initial hidden state */
	transform: translateY(40px);
	opacity: 0;
	transition: .7s ease;
}

/* ACTIVE STATE (animation trigger) */
.dr1060servicesbrief2__card.is-visible {
	transform: translateY(0);
	opacity: 1;
}

/* hover */
.dr1060servicesbrief2__card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
}

/* ================= BADGES ================= */
.dr1060servicesbrief2__badge {
	display: inline-block;
	font-size: .75rem;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(0, 212, 255, .15);
	border: 1px solid rgba(0, 212, 255, .3);
	margin-bottom: 12px;
}

.dr1060servicesbrief2__badge--pro {
	background: rgba(168, 85, 247, .15);
	border-color: rgba(168, 85, 247, .35);
}

/* ================= TEXT ================= */
.dr1060servicesbrief2__card h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.dr1060servicesbrief2__card p {
	opacity: .85;
	line-height: 1.6;
	margin-bottom: 12px;
}

.dr1060servicesbrief2__card ul {
	padding-left: 18px;
	margin-bottom: 15px;
}

.dr1060servicesbrief2__card ul li {
	margin-bottom: 6px;
	opacity: .9;
}

/* CTA */
.dr1060servicesbrief2__cta {
	display: inline-block;
	margin-top: 10px;
	font-weight: 600;
	color: #6be7ff;
	transition: .3s ease;
}

.dr1060servicesbrief2__card:hover .dr1060servicesbrief2__cta {
	transform: translateX(6px);
	color: #fff;
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 900px) {
	.dr1060servicesbrief2__grid {
		grid-template-columns: 1fr;
	}
	.dr1060servicesbrief2__heroImg {
		max-height: 240px;
	}
}