/* ================= ROOT ================= */
.dr1057servicesbrief {
	padding: 70px 20px;
	background: radial-gradient(circle at top, #071020, #02040a);
	color: #fff;
	font-family: "Segoe UI", sans-serif;
	position: relative;
	overflow: hidden;
}

/* subtle glowing background effect */
.dr1057servicesbrief::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 10%, rgba(0, 212, 255, 0.15),
		transparent 40%),
		radial-gradient(circle at 80% 30%, rgba(79, 172, 254, 0.12),
		transparent 45%);
	pointer-events: none;
}

/* ================= CONTAINER ================= */
.dr1057servicesbrief-container {
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 2;
}

/* ================= HERO ================= */
.dr1057servicesbrief-hero {
	text-align: center;
	margin-bottom: 40px;
}

.dr1057servicesbrief-title {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	background: linear-gradient(90deg, #00d4ff, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
}

.dr1057servicesbrief-subtitle {
	font-size: 15px;
	color: #cfd8dc;
	line-height: 1.7;
	max-width: 900px;
	margin: auto;
}

/* ================= CTA BUTTONS ================= */
.dr1057servicesbrief-cta {
	margin-top: 20px;
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.dr1057servicesbrief-btn {
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.dr1057servicesbrief-btn.primary {
	background: linear-gradient(135deg, #00d4ff, #4facfe);
	color: #000;
	box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.dr1057servicesbrief-btn.secondary {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid rgba(0, 212, 255, 0.3);
	backdrop-filter: blur(10px);
}

.dr1057servicesbrief-btn:hover {
	transform: translateY(-3px) scale(1.05);
}

/* ================= GRID ================= */
.dr1057servicesbrief-grid {
	margin-top: 35px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

/* ================= CARD ================= */
.dr1057servicesbrief-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(0, 212, 255, 0.25);
	border-radius: 18px;
	padding: 18px 18px;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0
		rgba(255, 255, 255, 0.08);
	transition: all 0.35s ease;
	transform-style: preserve-3d;
	position: relative;
}

/* hover glow 3D effect */
.dr1057servicesbrief-card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 20px 50px rgba(0, 212, 255, 0.25), inset 0 1px 0
		rgba(255, 255, 255, 0.15);
	border-color: rgba(0, 212, 255, 0.5);
}

/* ================= CARD TITLE ================= */
.dr1057servicesbrief-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #ffffff;
}

/* ================= CARD TEXT ================= */
.dr1057servicesbrief-card p {
	font-size: 13px;
	color: #cfd8dc;
	line-height: 1.6;
	margin-bottom: 10px;
}

/* ================= CARD LINK ================= */
.dr1057servicesbrief-card a {
	font-size: 13px;
	font-weight: 600;
	color: #00d4ff;
	text-decoration: none;
	display: inline-block;
	position: relative;
}

.dr1057servicesbrief-card a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background: linear-gradient(90deg, #00d4ff, #4facfe);
	transition: 0.3s;
}

.dr1057servicesbrief-card a:hover::after {
	width: 100%;
}

/* ================= FOOTER NOTE ================= */
.dr1057servicesbrief-footer {
	margin-top: 40px;
	text-align: center;
	padding: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dr1057servicesbrief-footer p {
	font-size: 12px;
	color: #9fb3c8;
	line-height: 1.6;
	max-width: 900px;
	margin: auto;
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 768px) {
	.dr1057servicesbrief {
		padding: 50px 15px;
	}
	.dr1057servicesbrief-subtitle {
		font-size: 13px;
	}
	.dr1057servicesbrief-card {
		padding: 15px;
	}
	.dr1057servicesbrief-card h3 {
		font-size: 15px;
	}
}