/* ==========================================================================
   Probit Stats Block — single bar with dividers
   ========================================================================== */

.stats {
	background: #eceef2;
	padding: 40px 0;
}

.stats .container {
	max-width: var(--container-wide);
}

.stats__bar {
	background: var(--color-white);
	border: 1px solid #e2e6ec;
	border-radius: 4px;
	box-shadow: 0 4px 18px rgba(15, 27, 45, 0.05);
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 28px 20px;
	min-height: 148px;
	border-right: 1px solid #e4e8ee;
}

.stat-item:last-child {
	border-right: none;
}

.stat-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.stat-item__svg {
	display: block;
	width: 34px;
	height: 34px;
}

.stat-item__number {
	font-size: clamp(1.875rem, 2.4vw, 2.375rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--color-primary);
	margin-bottom: 6px;
	letter-spacing: -0.02em;
}

.stat-item__label {
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.4;
	color: #3d4a5c;
}

@media (max-width: 1024px) {
	.stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stat-item {
		border-right: 1px solid #e4e8ee;
		border-bottom: 1px solid #e4e8ee;
	}

	.stat-item:nth-child(2n) {
		border-right: none;
	}

	.stat-item:nth-last-child(-n + 2) {
		border-bottom: none;
	}
}

@media (max-width: 768px) {
	.stats {
		padding: 28px 0;
	}

	.stat-item {
		padding: 22px 16px;
		min-height: 128px;
	}

	.stat-item__svg {
		width: 30px;
		height: 30px;
	}

	.stat-item__number {
		font-size: 1.75rem;
	}
}

@media (max-width: 540px) {
	.stats__grid {
		grid-template-columns: 1fr;
	}

	.stat-item {
		border-right: none;
		border-bottom: 1px solid #e4e8ee;
	}

	.stat-item:last-child {
		border-bottom: none;
	}
}
