.msb-ecosystem,
.msb-ecosystem * {
	box-sizing: border-box;
}

.msb-ecosystem {
	width: 100%;
	padding: 80px 0;
	background:
		radial-gradient(
			circle at 50% 0%,
			rgba(57, 255, 20, 0.08),
			transparent 35%
		),
		#050505;
	color: #ffffff;
}

.msb-ecosystem__container {
	width: min(100% - 40px, 1400px);
	margin: 0 auto;
}

.msb-ecosystem__heading {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 38px;
}

.msb-ecosystem__heading h2 {
	margin: 0;
	font-family: var(--msb-ecosystem-heading, Arial, sans-serif);
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 800;
	text-transform: uppercase;
}

.msb-ecosystem__heading h2 span {
	color: var(--msb-ecosystem-primary, #39ff14);
}

.msb-ecosystem__heading-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(
		90deg,
		var(--msb-ecosystem-primary, #39ff14),
		transparent
	);
}

.msb-ecosystem__brands {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 32px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.02);
}

.msb-ecosystem-brand {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 190px;
	padding: 24px;
	text-align: center;
	text-decoration: none;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	transition:
		background 0.25s ease,
		transform 0.25s ease;
}

.msb-ecosystem-brand:last-child {
	border-right: 0;
}

.msb-ecosystem-brand:hover {
	background: rgba(57, 255, 20, 0.05);
	transform: translateY(-4px);
}

.msb-ecosystem-brand__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 90px;
	margin-bottom: 14px;
}

.msb-ecosystem-brand__logo img {
	display: block;
	max-width: 220px;
	max-height: 100px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.msb-ecosystem-brand__name {
	margin: 0;
	color: #ffffff;
	font-family: var(--msb-ecosystem-heading, Arial, sans-serif);
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
}

.msb-ecosystem-brand__tagline {
	margin: 7px 0 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.msb-ecosystem__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid rgba(57, 255, 20, 0.25);
	background: rgba(255, 255, 255, 0.025);
}

.msb-ecosystem-stat {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 115px;
	padding: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.msb-ecosystem-stat:last-child {
	border-right: 0;
}

.msb-ecosystem-stat__icon {
	flex: 0 0 auto;
	color: var(--msb-ecosystem-primary, #39ff14);
	font-size: 38px;
	line-height: 1;
}

.msb-ecosystem-stat__content {
	display: flex;
	flex-direction: column;
}

.msb-ecosystem-stat__value {
	color: var(--msb-ecosystem-secondary, #ffd600);
	font-family: var(--msb-ecosystem-heading, Arial, sans-serif);
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 800;
	line-height: 1;
}

.msb-ecosystem-stat__label {
	margin-top: 7px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

@media (max-width: 1050px) {
	.msb-ecosystem__brands,
	.msb-ecosystem__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.msb-ecosystem-brand:nth-child(2n),
	.msb-ecosystem-stat:nth-child(2n) {
		border-right: 0;
	}

	.msb-ecosystem-brand:nth-child(-n + 2),
	.msb-ecosystem-stat:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
}

@media (max-width: 620px) {
	.msb-ecosystem {
		padding: 58px 0;
	}

	.msb-ecosystem__container {
		width: calc(100% - 28px);
	}

	.msb-ecosystem__heading-line {
		display: none;
	}

	.msb-ecosystem__brands,
	.msb-ecosystem__stats {
		grid-template-columns: 1fr;
	}

	.msb-ecosystem-brand,
	.msb-ecosystem-stat {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.msb-ecosystem-brand:last-child,
	.msb-ecosystem-stat:last-child {
		border-bottom: 0;
	}

	.msb-ecosystem-stat {
		justify-content: flex-start;
		padding-left: 35px;
	}
}