/**
 * Universal service benefits showcase block.
 *
 * Unique classes:
 * - atb-service-benefits-showcase
 * - atb-service-benefits-showcase__*
 */

.atb-service-benefits-showcase {
	padding: 72px 20px;
	background: #f5f7fb;
	color: #0f172a;
	overflow: hidden;
}

.atb-service-benefits-showcase *,
.atb-service-benefits-showcase *::before,
.atb-service-benefits-showcase *::after {
	box-sizing: border-box;
}

.atb-service-benefits-showcase svg {
	display: block;
	max-width: 100%;
	height: auto;
}

.atb-service-benefits-showcase__inner {
	width: min(1180px, 100%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
	gap: 48px;
	align-items: center;
}

.atb-service-benefits-showcase__content {
	max-width: 440px;
}

.atb-service-benefits-showcase__title {
	position: relative;
	margin: 0 0 30px;
	color: #111827;
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.08;
	letter-spacing: -0.045em;
}

.atb-service-benefits-showcase__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -14px;
	width: 64px;
	height: 3px;
	border-radius: 999px;
	background: #0b63ce;
}

.atb-service-benefits-showcase__list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.atb-service-benefits-showcase__item {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	margin: 0;
	padding: 0;
	color: #344054;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.atb-service-benefits-showcase__check {
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 20px;
	margin-top: 1px;
	color: #0b63ce;
	overflow: hidden;
}

.atb-service-benefits-showcase__check svg {
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	max-width: 20px;
	max-height: 20px;
	display: block;
	flex: 0 0 20px;
}

.atb-service-benefits-showcase__check circle {
	fill: #0b63ce;
	stroke: #0b63ce;
}

.atb-service-benefits-showcase__check path {
	fill: none;
	stroke: #ffffff;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.atb-service-benefits-showcase__media {
	position: relative;
	min-height: 430px;
	margin: 0;
	overflow: hidden;
	border-radius: 2px;
	background: #0b1220;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
}

.atb-service-benefits-showcase__image {
	width: 100%;
	height: 100%;
	min-height: 430px;
	display: block;
	object-fit: cover;
}

.atb-service-benefits-showcase__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(2, 6, 23, 0.10), transparent 42%),
		linear-gradient(180deg, transparent 55%, rgba(2, 6, 23, 0.25));
	pointer-events: none;
}

.atb-service-benefits-showcase__stats {
	position: absolute;
	right: 28px;
	top: 50%;
	z-index: 2;
	width: min(222px, calc(100% - 56px));
	display: grid;
	gap: 22px;
	margin: 0;
	padding: 26px 24px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 14px;
	background: rgba(8, 15, 28, 0.76);
	color: #ffffff;
	backdrop-filter: blur(14px);
	transform: translateY(-50%);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.atb-service-benefits-showcase__stat {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.atb-service-benefits-showcase__stat-icon {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #2f80ff;
	overflow: hidden;
}

.atb-service-benefits-showcase__stat-icon svg {
	width: 30px;
	height: 30px;
	min-width: 30px;
	min-height: 30px;
	max-width: 30px;
	max-height: 30px;
	display: block;
}

.atb-service-benefits-showcase__stat-icon path,
.atb-service-benefits-showcase__stat-icon circle {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.atb-service-benefits-showcase__stat-body {
	display: grid;
	gap: 3px;
}

.atb-service-benefits-showcase__stat strong {
	color: #ffffff;
	font-size: 25px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
}

.atb-service-benefits-showcase__stat small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
}

@media (max-width: 980px) {
	.atb-service-benefits-showcase__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.atb-service-benefits-showcase__content {
		max-width: 760px;
	}

	.atb-service-benefits-showcase__media {
		min-height: 360px;
	}

	.atb-service-benefits-showcase__image {
		min-height: 360px;
	}
}

@media (max-width: 700px) {
	.atb-service-benefits-showcase {
		padding: 48px 16px;
	}

	.atb-service-benefits-showcase__media {
		min-height: 520px;
		border-radius: 18px;
	}

	.atb-service-benefits-showcase__image {
		min-height: 520px;
	}

	.atb-service-benefits-showcase__stats {
		left: 18px;
		right: 18px;
		top: auto;
		bottom: 18px;
		width: auto;
		transform: none;
	}

	.atb-service-benefits-showcase__title {
		font-size: 32px;
	}
}
