.mle-benefits {
	position: relative;
	overflow: hidden;
	padding: 48px 0 54px;
	color: #ffffff;
	background:
		linear-gradient(180deg, rgba(1, 24, 18, 0.72) 0%, rgba(0, 49, 32, 0.86) 100%),
		var(--mle-benefits-bg-image, radial-gradient(circle at 85% 82%, rgba(0, 191, 106, 0.28), transparent 34%)),
		linear-gradient(135deg, #031711 0%, #063323 58%, #031711 100%);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	isolation: isolate;
	scroll-margin-top: 88px;
}

.mle-benefits::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 12%, rgba(0, 191, 106, 0.18), transparent 26%),
		radial-gradient(circle at 86% 90%, rgba(0, 191, 106, 0.26), transparent 30%);
	pointer-events: none;
}

.mle-benefits::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(151, 255, 198, 0.22) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: 0.14;
	pointer-events: none;
}

.mle-benefits__container {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: 100%;
	max-width: var(--uzeda-container, 1280px);
	margin: 0 auto;
	padding: 0 24px;
}

.mle-benefits__title {
	max-width: 720px;
	margin: 0 0 22px;
	color: #ffffff;
	font-size: var(--home-type-h2);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: 0;
}

.mle-benefits__title-highlight {
	color: var(--uzeda-green, #00bf6a);
}

.mle-benefits__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}

.mle-benefits__card {
	display: grid;
	grid-column: span 2;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	min-height: 154px;
	padding: 18px;
	border: 1px solid rgba(180, 255, 216, 0.24);
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(0, 94, 53, 0.66) 0%, rgba(0, 66, 43, 0.48) 100%),
		radial-gradient(circle at 18% 12%, rgba(25, 214, 128, 0.13), transparent 42%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 24px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(7px);
}

.mle-benefits__card:nth-child(4),
.mle-benefits__card:nth-child(5),
.mle-benefits__card:nth-child(6),
.mle-benefits__card:nth-child(7) {
	grid-column: span 3;
	min-height: 150px;
}

.mle-benefits__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 13px;
	background: linear-gradient(145deg, #ffffff 0%, #eef2f0 100%);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.82);
	color: var(--uzeda-green, #00bf6a);
}

.mle-benefits__icon svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
	stroke: none;
}

.mle-benefits__icon-cut {
	fill: #ffffff;
}

.mle-benefits__card h3 {
	margin: 0;
	color: #ffffff;
	font-size: 16.5px;
	font-weight: 750;
	line-height: 1.24;
	letter-spacing: 0;
}

.mle-benefits__card p {
	margin: 7px 0 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 13.2px;
	line-height: 1.46;
}

@media (max-width: 1180px) {
	.mle-benefits__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mle-benefits__card,
	.mle-benefits__card:nth-child(1),
	.mle-benefits__card:nth-child(2),
	.mle-benefits__card:nth-child(3),
	.mle-benefits__card:nth-child(4),
	.mle-benefits__card:nth-child(5),
	.mle-benefits__card:nth-child(6),
	.mle-benefits__card:nth-child(7) {
		grid-column: auto;
		min-height: 150px;
	}
}

@media (max-width: 768px) {
	.mle-benefits {
		padding: 32px 0 34px;
	}

	.mle-benefits__container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.mle-benefits__title {
		margin-bottom: 18px;
		font-size: var(--home-type-h2-mobile);
	}

	.mle-benefits__grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.mle-benefits__card,
	.mle-benefits__card:nth-child(1),
	.mle-benefits__card:nth-child(2),
	.mle-benefits__card:nth-child(3),
	.mle-benefits__card:nth-child(4),
	.mle-benefits__card:nth-child(5),
	.mle-benefits__card:nth-child(6),
	.mle-benefits__card:nth-child(7) {
		grid-column: auto;
		grid-template-columns: 40px minmax(0, 1fr);
		gap: 12px;
		min-height: 0;
		padding: 12px;
		border-radius: 12px;
	}

	.mle-benefits__icon {
		width: 38px;
		height: 38px;
		border-radius: 10px;
	}

	.mle-benefits__icon svg {
		width: 21px;
		height: 21px;
	}

	.mle-benefits__card h3 {
		font-size: 14.5px;
	}

	.mle-benefits__card p {
		display: -webkit-box;
		margin-top: 4px;
		overflow: hidden;
		font-size: 12.5px;
		line-height: 1.38;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}
}

@media (max-width: 420px) {
	.mle-benefits__card,
	.mle-benefits__card:nth-child(1),
	.mle-benefits__card:nth-child(2),
	.mle-benefits__card:nth-child(3),
	.mle-benefits__card:nth-child(4),
	.mle-benefits__card:nth-child(5),
	.mle-benefits__card:nth-child(6),
	.mle-benefits__card:nth-child(7) {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 11px;
		padding: 11px;
	}

	.mle-benefits__icon {
		width: 36px;
		height: 36px;
		border-radius: 10px;
	}

	.mle-benefits__icon svg {
		width: 20px;
		height: 20px;
	}

	.mle-benefits__card h3 {
		font-size: 14.5px;
	}

	.mle-benefits__card p {
		font-size: 12.3px;
	}
}
