.stats {
	background-color: #031527;
	margin-top: -40px;
	position: relative;
	z-index: 0;
	padding-top: 140px;
	padding-bottom: 140px;
}

.stats__inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.stats__header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
}

.stats__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 28px;
}

.stats__eyebrow-icon-img {
	width: 32px;
	height: 32px;
	display: block;
}

.stats__eyebrow-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #FFFFFF;
}

.stats__heading {
	margin: 0 0 20px 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 52px;
	color: #FFFFFF;
}

.stats__description {
	margin: 0 0 80px 0;
	max-width: 70%;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: rgba(255, 255, 255, 0.7);
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	width: 50%;
}

.stats__card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 24px;
	min-height: 275px;
	padding: 24px;
	border: 1px solid #383838;
	border-radius: 24px;
}

.stats__number {
	font-size: 80px;
	font-weight: 500;
	line-height: 88px;
	color: #FFFFFF;
}

.stats__divider {
	width: 100%;
	height: 1px;
	background-color: #0072FF;
}

.stats__label {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
	.stats {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.stats__inner {
		flex-direction: column;
		gap: 40px;
	}

	.stats__header {
		width: 100%;
	}

	.stats__eyebrow {
		margin-bottom: 20px;
	}

	.stats__heading {
		font-size: 42px;
		line-height: 48px;
	}

	.stats__description {
		max-width: 100%;
	}

	.stats__grid {
		gap: 32px 0;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.stats {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.stats__inner {
		gap: 20px;
	}

	.stats__eyebrow {
		gap: 8px;
	}

	.stats__eyebrow-text {
		font-size: 16px;
		line-height: 20px;
	}

	.stats__heading {
		margin-bottom: 28px;
		font-size: 36px;
		line-height: 42px;
	}

	.stats__description {
		font-size: 16px;
		line-height: 20px;
	}

	.stats__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
