/* ================= ROOT SECTION ================= */
.dr1060servicesbrief3 {
	padding: 95px 0;
	position: relative;
	background: radial-gradient(circle at top right, rgba(0, 140, 255, .18),
		transparent 45%),
		radial-gradient(circle at bottom left, rgba(140, 80, 255, .14),
		transparent 50%), linear-gradient(135deg, #050814, #070c1a);
	color: #fff;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
	overflow: hidden;
}

/* ================= HEADER ================= */
.dr1060servicesbrief3 .experience-header {
	width: min(1100px, 92%);
	margin: 0 auto 45px;
	text-align: center;
}

.dr1060servicesbrief3 .experience-header h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 700;
}

.dr1060servicesbrief3 .experience-header h2 span {
	background: linear-gradient(90deg, #6be7ff, #a855f7, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1060servicesbrief3 .experience-header p {
	margin-top: 12px;
	opacity: .85;
	font-size: 1.1rem;
	line-height: 1.7;
}

/* ================= HERO ================= */
.dr1060servicesbrief3 .experience-hero {
	width: min(1100px, 92%);
	margin: 40px auto 60px;
	position: relative;
	display: flex;
	justify-content: center;
}

.dr1060servicesbrief3 .exp-glow {
	position: absolute;
	width: 520px;
	height: 520px;
	background: #00d4ff;
	border-radius: 50%;
	filter: blur(170px);
	opacity: .18;
	z-index: 0;
}

.dr1060servicesbrief3 .exp-image {
	width: 100%;
	max-width: 720px;
	border-radius: 26px;
	position: relative;
	z-index: 2;
	box-shadow: 0 45px 140px rgba(0, 0, 0, .6);
	border: 1px solid rgba(255, 255, 255, .12);
	transform: scale(1.02);
}

/* ================= GRID ================= */
.dr1060servicesbrief3 .experience-grid {
	width: min(1100px, 92%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

/* ================= CARD BASE ================= */
.dr1060servicesbrief3 .exp-card {
	padding: 26px;
	border-radius: 22px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .14);
	backdrop-filter: blur(18px);
	box-shadow: 0 25px 80px rgba(0, 0, 0, .45);
	transition: transform .4s ease, background .4s ease, box-shadow .4s ease;
	/* IMPORTANT: hidden before animation */
	opacity: 0;
	transform: translateY(40px);
}

/* ================= ANIMATION ================= */
.dr1060servicesbrief3 .reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* ================= HOVER EFFECT ================= */
.dr1060servicesbrief3 .exp-card:hover {
	transform: translateY(-10px) scale(1.02);
	background: rgba(255, 255, 255, .09);
	box-shadow: 0 35px 100px rgba(0, 0, 0, .55);
}

/* ================= TEXT ================= */
.dr1060servicesbrief3 .exp-card h3 {
	font-size: 1.4rem;
	margin-bottom: 14px;
}

.dr1060servicesbrief3 .exp-card ul {
	padding-left: 18px;
}

.dr1060servicesbrief3 .exp-card ul li {
	margin-bottom: 7px;
	opacity: .88;
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 900px) {
	.dr1060servicesbrief3 .experience-grid {
		grid-template-columns: 1fr;
	}
	.dr1060servicesbrief3 .exp-image {
		max-width: 100%;
	}
}