.stats-band {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	align-items: center !important;
}
.stats-band-3 {
	grid-template-columns: repeat(3, 1fr) !important;
}

.stats-band .stats-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px !important;
	min-height: 135px;
	padding: 0 34px;
}

.stats-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: var(--color-secondary);
	opacity: 0.6;
}

.stats-item__icon {
	width: 90px;
	height: auto;
	flex-shrink: 0;
	margin: 0 auto;
}

.stats-item__content {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}

.stats-item__number {
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1;
	font-weight: 800;
	color: var(--color-secondary);
}

.stats-item__text {
	font-size: 16px;
	line-height: 1.05;
	color: var(--color-text);
}

.stats-item--pink .stats-item__number,
.stats-item--pink .stats-item__icon {
	color: var(--color-pink);
}

.stats-item--orange .stats-item__number,
.stats-item--orange .stats-item__icon {
	color: var(--color-primary);
}

.stats-item--purple .stats-item__number,
.stats-item--purple .stats-item__icon {
	color: var(--color-secondary);
}

.stats-item--purple2 .stats-item__number,
.stats-item--purple2 .stats-item__icon {
	color: var(--color-purple2);
}

.stats-item--vertical {
	flex-direction: column !important;
	gap: 12px !important;
	text-align: center;
}

.stats-item--vertical .stats-item__content {
	flex-direction: column !important;
	gap: 4px !important;
}

.stats-item--vertical .stats-item__text {
	max-width: 120px;
}

/* Responsive */
@media (max-width: 800px) {
	.stats-band {
		grid-template-columns: 1fr !important;
		padding: 24px 16px;
	}

	.stats-item:nth-child(2)::after {
		display: none !important;
	}

	.stats-item {
		padding: 28px 24px !important;
	}

	.stats-item:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(88, 34, 100, 0.45) !important;
	}

	.stats-band__grid {
		grid-template-columns: 1fr !important;
	}

	.stats-item {
		flex-direction: column;
		text-align: center;
		min-height: auto;
		padding: 28px 12px;
		gap: 12px;
	}

	.stats-item::after {
		display: none;
	}

	.stats-item:not(:last-child) {
		border-bottom: 1px solid rgba(88, 34, 100, 0.45);
	}

	.stats-item__content {
		justify-content: center;
	}

	.stats-item__number {
		font-size: 40px;
	}

	.stats-item__text {
		font-size: 15px;
	}
}
