/* ================================
   DG Service Scope
================================ */

.dg-service-scope {
	position: relative;
	isolation: isolate;
	width: 100vw;
	max-width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	padding: 96px 20px;
	overflow: hidden;
	background: var(--dg-bg, #1c1c1c);
	color: var(--dg-text, #ffffff);
}

.dg-service-scope,
.dg-service-scope * {
	box-sizing: border-box;
}

.dg-service-scope::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.032), transparent 27%),
		radial-gradient(circle at 82% 78%, rgba(17, 228, 79, 0.11), transparent 36%);
	pointer-events: none;
}

.dg-service-scope-inner {
	width: min(100%, 1240px);
	margin: 0 auto;
}

.dg-service-scope-header {
	max-width: 940px;
	margin: 0 auto 56px;
	text-align: center;
}

.dg-service-scope-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin: 0 auto 30px;
	padding: 0 20px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 999px;
	font-family: var(--dg-font-body, "Montserrat", Arial, sans-serif);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	box-shadow:
		0 18px 42px rgba(0, 0, 0, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.045);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.dg-service-scope-title {
	max-width: 940px;
	margin: 0 auto;
	color: #ffffff;
	font-family: var(--dg-font-heading, "TT Firs Neue", "Montserrat", Arial, sans-serif);
	font-size: clamp(42px, 4.2vw, 56px);
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: 0;
	text-align: center;
	text-wrap: balance;
}

.dg-service-scope-subtext {
	max-width: 720px;
	margin: 24px auto 0;
	color: rgba(255, 255, 255, 0.62);
	font-family: var(--dg-font-body, "Montserrat", Arial, sans-serif);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.48;
	letter-spacing: 0;
	text-align: center;
	text-wrap: balance;
}

.dg-service-scope-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.dg-service-scope-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 76px;
	padding: 24px 22px;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.78);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
		#242424;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	box-shadow:
		0 16px 42px rgba(0, 0, 0, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.035);
	font-family: var(--dg-font-body, "Montserrat", Arial, sans-serif);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	letter-spacing: 0;
	transition:
		border-color 0.22s ease,
		box-shadow 0.22s ease,
		background-color 0.22s ease,
		color 0.22s ease;
}

.dg-service-scope-item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 18px;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--dg-accent, #11e44f);
	box-shadow: 0 0 18px rgba(17, 228, 79, 0.48);
	opacity: 0.78;
	transform: translateY(-50%);
	pointer-events: none;
}

.dg-service-scope-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(17, 228, 79, 0.10), transparent 46%);
	opacity: 0;
	transition: opacity 0.22s ease;
	pointer-events: none;
}

.dg-service-scope-item span {
	position: relative;
	z-index: 1;
	display: block;
	padding: 0 14px;
}

.dg-service-scope-item:hover {
	color: #ffffff;
	border-color: rgba(17, 228, 79, 0.26);
	box-shadow:
		0 20px 52px rgba(0, 0, 0, 0.22),
		0 0 0 1px rgba(17, 228, 79, 0.035),
		inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.dg-service-scope-item:hover::after {
	opacity: 1;
}

.dg-service-scope-no-accent .dg-service-scope-item::before {
	display: none;
}

.dg-service-scope-no-accent .dg-service-scope-item span {
	padding-right: 0;
	padding-left: 0;
}

@media (max-width: 1024px) {
	.dg-service-scope {
		padding-top: 82px;
		padding-bottom: 82px;
	}

	.dg-service-scope-header {
		margin-bottom: 44px;
	}

	.dg-service-scope-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.dg-service-scope {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
		padding: 68px 16px;
	}

	.dg-service-scope-header {
		margin-bottom: 34px;
	}

	.dg-service-scope-label {
		min-height: 38px;
		margin-bottom: 24px;
		padding: 0 16px;
		font-size: 13px;
	}

	.dg-service-scope-title {
		font-size: clamp(34px, 10.6vw, 46px);
		line-height: 1;
	}

	.dg-service-scope-subtext {
		margin-top: 20px;
		font-size: 16px;
		line-height: 1.55;
	}

	.dg-service-scope-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.dg-service-scope-item {
		min-height: 68px;
		padding: 20px 18px;
		border-radius: 16px;
		font-size: 15.5px;
	}

	.dg-service-scope-item::before {
		left: 16px;
		width: 6px;
		height: 6px;
	}
}

@media (max-width: 390px) {
	.dg-service-scope {
		padding-right: 14px;
		padding-left: 14px;
	}

	.dg-service-scope-title {
		font-size: 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dg-service-scope-item,
	.dg-service-scope-item::after {
		transition: none;
	}
}
