/* H-Lead Stats Section ("Moving Forward with Purpose").
 * Figma: 'purpose' frame (desktop) / 'about' frame (mobile),
 * 01. H-lead_homepage_*_v1. Desktop: stats 2x2 left, text column right.
 * Mobile: text on top, stats 2x2 below, centered. */

.hl-stats-section {
	display: flex;
	/* Markup order is stats-then-content; the design shows the text column
	 * on the LEFT and the stats grid on the RIGHT, hence row-reverse. */
	flex-direction: row-reverse;
	align-items: center;
	gap: var(--hl-space-80);
	/* Figma gap=342 is whitespace between fixed columns; space-between + capped width gives the same result responsively */
	justify-content: space-between;
}

.hl-stats-section__stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--hl-space-56) var(--hl-space-40);
}

.hl-stats-section__stat {
	display: flex;
	align-items: center;
	gap: var(--hl-space-32);
}

.hl-stats-section__icon {
	width: 100px;
	height: 100px;
	object-fit: contain;
}

.hl-stats-section__stat-text {
	display: flex;
	flex-direction: column;
	gap: var(--hl-space-8);
}

.hl-stats-section__value {
	color: var(--hl-color-brand-700);
	font-size: 36px;
	line-height: 44px;
	font-weight: 700;
}

.hl-stats-section__label {
	color: var(--hl-color-grey-600);
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
}

.hl-stats-section__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 551px;
}

.hl-stats-section__title {
	margin: 0;
	color: var(--hl-color-brand-700);
	font-size: 36px;
	line-height: 44px;
	font-weight: 700;
}

.hl-stats-section__description {
	margin: var(--hl-space-12) 0 0;
	color: var(--hl-color-grey-600);
	font-size: 20px;
	line-height: 30px;
}

.hl-stats-section__content .hl-btn {
	margin-top: var(--hl-space-48);
}

@media (max-width: 991px) {
	.hl-stats-section {
		flex-direction: column-reverse;
		align-items: stretch;
		gap: var(--hl-space-40);
	}

	.hl-stats-section__stats {
		gap: var(--hl-space-32) var(--hl-space-16);
	}

	.hl-stats-section__stat {
		flex-direction: column;
		gap: var(--hl-space-8);
		text-align: center;
	}

	.hl-stats-section__icon {
		width: 80px;
		height: 80px;
	}

	.hl-stats-section__stat-text {
		gap: var(--hl-space-4);
		align-items: center;
	}

	.hl-stats-section__value {
		font-size: 32px;
		line-height: 38px;
	}

	.hl-stats-section__label {
		font-size: 20px;
		line-height: 30px;
	}

	.hl-stats-section__description {
		font-size: 18px;
		line-height: 28px;
	}

	.hl-stats-section__content {
		max-width: none;
	}

	.hl-stats-section__content .hl-btn {
		margin-top: var(--hl-space-32);
	}
}

@media (max-width: 991px) {
	.hl-stats-section__title {
		font-size: 24px;
		line-height: 32px;
	}
}