/* ================= ROOT ================= */
.dr1058servicesbrief {
	padding: 120px 20px;
	background: linear-gradient(180deg, #020617, #000);
	color: #fff;
}

/* ================= CONTAINER ================= */
.dr1058services-container {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	max-width: 1200px;
	margin: auto;
}

/* ================= LEFT ================= */
.services-left {
	position: sticky;
	top: 120px;
	height: fit-content;
}

/* TAG */
.services-tag {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;

	background: rgba(59,130,246,0.15);
	border: 1px solid rgba(59,130,246,0.35);

	margin-bottom: 18px;
}

/* TITLE */
.services-left h2 {
	font-size: clamp(32px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
}

/* TEXT */
.services-left p {
	font-size: 15px;
	color: #cbd5f5;
	line-height: 1.7;
	margin-bottom: 30px;
}

/* ================= IMAGE ================= */
.services-image {
	position: relative;
	margin-bottom: 30px;
	border-radius: 18px;
	overflow: hidden;

	background: linear-gradient(
		145deg,
		rgba(255,255,255,0.08),
		rgba(255,255,255,0.02)
	);

	border: 1px solid rgba(255,255,255,0.1);

	box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.services-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain; /* IMPORTANT: no crop */
	transition: transform 0.6s ease;
}

.services-image:hover img {
	transform: scale(1.05);
}

/* ================= ACTIONS ================= */
.services-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* BUTTON BASE */
.services-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: all 0.35s ease;
}

/* PRIMARY */
.services-btn.primary {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: #fff;

	box-shadow:
		0 10px 30px rgba(59,130,246,0.4),
		inset 0 1px 0 rgba(255,255,255,0.4);
}

/* glossy shine */
.services-btn.primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255,255,255,0.5),
		transparent
	);
	transition: 0.6s;
}

.services-btn.primary:hover::before {
	left: 100%;
}

.services-btn.primary:hover {
	transform: translateY(-3px);
}

/* SECONDARY */
.services-btn.secondary {
	background: rgba(255,255,255,0.08);
	color: #e2e8f0;
	border: 1px solid rgba(255,255,255,0.2);
}

.services-btn.secondary:hover {
	background: rgba(255,255,255,0.15);
	color: #fff;
	transform: translateY(-2px);
}

/* ================= RIGHT ================= */
.services-right {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* PANEL */
.service-panel {
	position: relative;
	padding: 30px;
	border-radius: 20px;

	background: linear-gradient(
		145deg,
		rgba(255,255,255,0.06),
		rgba(255,255,255,0.02)
	);

	backdrop-filter: blur(16px);

	border: 1px solid rgba(255,255,255,0.08);

	box-shadow: 0 20px 50px rgba(0,0,0,0.6);

	transition: all 0.4s ease;

	opacity: 0;
	transform: translateY(60px);
}

/* NUMBER */
.service-panel span {
	position: absolute;
	top: 20px;
	right: 24px;

	font-size: 32px;
	font-weight: 800;

	color: rgba(255,255,255,0.08);
}

/* TITLE */
.service-panel h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

/* TEXT */
.service-panel p {
	font-size: 14px;
	color: #cbd5f5;
	line-height: 1.6;
}

/* HOVER */
.service-panel:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

/* SHOW */
.dr1058servicesbrief.show .service-panel {
	opacity: 1;
	transform: translateY(0);
}

/* STAGGER */
.dr1058servicesbrief.show .service-panel:nth-child(1){ transition-delay: .1s; }
.dr1058servicesbrief.show .service-panel:nth-child(2){ transition-delay: .2s; }
.dr1058servicesbrief.show .service-panel:nth-child(3){ transition-delay: .3s; }
.dr1058servicesbrief.show .service-panel:nth-child(4){ transition-delay: .4s; }

/* ================= MOBILE ================= */
@media (max-width: 900px) {

	.dr1058services-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.services-left {
		position: relative;
		top: 0;
	}

	.services-left h2 {
		font-size: 26px;
	}

	.services-actions {
		flex-direction: column;
	}

	.services-btn {
		width: 100%;
	}
}