.foz-stats-bar {
	padding: 48px 24px;
}

.foz-stats-bar__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 32px;
	text-align: center;
}

.foz-stats-bar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.foz-stats-bar__number {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.foz-stats-bar__label {
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

/* Dark style */
.foz-stats-bar--dark {
	background: linear-gradient(135deg, #0f2442 0%, #1a3a5c 100%);
}
.foz-stats-bar--dark .foz-stats-bar__number {
	color: #ffffff;
}
.foz-stats-bar--dark .foz-stats-bar__label {
	color: rgba(255, 255, 255, 0.65);
}

/* Light style */
.foz-stats-bar--light {
	background: #eef2f7;
	border-top: 1px solid rgba(29,100,161,0.1);
	border-bottom: 1px solid rgba(29,100,161,0.1);
}
.foz-stats-bar--light .foz-stats-bar__number {
	color: #0f2442;
}
.foz-stats-bar--light .foz-stats-bar__label {
	color: #6b7a8d;
}

/* Accent style */
.foz-stats-bar--accent {
	background: linear-gradient(135deg, #1D64A1 0%, #2980c9 100%);
}
.foz-stats-bar--accent .foz-stats-bar__number {
	color: #ffffff;
}
.foz-stats-bar--accent .foz-stats-bar__label {
	color: rgba(255, 255, 255, 0.7);
}

/* Dividers between items */
.foz-stats-bar__item {
	position: relative;
}
.foz-stats-bar__item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -16px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.15);
}
.foz-stats-bar--light .foz-stats-bar__item:not(:last-child)::after {
	background: rgba(15, 36, 66, 0.1);
}

@media (max-width: 768px) {
	.foz-stats-bar__inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.foz-stats-bar__item:not(:last-child)::after {
		display: none;
	}
}
