
/* ═══════════════════════════════════════════
 * Background Reveal Section – CSS
 * ═══════════════════════════════════════════ */
.bgr-section {
	position: relative;
	width: 100%;
	overflow: visible;
}

/* ── Two-column layout ── */
.bgr-layout {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
	gap: 20px;
}

.bgr-col-left {
	gap: 20px;
	display: flex;
	flex-direction: column;
}

.bgr-col-right {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.bgr-col-right > div {
	flex: 1;
}

/* ── Text block ── */
.bgr-text-block {
	padding: 40px 0;
}

.bgr-heading {
	font-family: "Schnebel", sans-serif;
	font-weight: 900 !important;
	line-height: 1 !important;
	margin: 0 0 30px 0;
	max-width: 800px;
}

/* ── Quad windows ── */
.bgr-quad-window {
	position: relative;
	overflow: hidden;
}

.bgr-quad-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}

.bgr-quad-row .bgr-quad {
	flex: 1 1 50%;
}

/* ── Stat card ── */
.bgr-stat-card {
	position: relative;
}

.bgr-stat-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.bgr-stat-content {
	text-align: center;
	padding: 30px;
	max-width: 800px;
}

.bgr-stat-label {
	display: block;
	font-family: "Schnebel", sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	opacity: .85;
}

.bgr-stat-number {
	font-family: "Schnebel", sans-serif;
	font-weight: 900;
	font-size: 72px;
	line-height: 1;
}

.bgr-stat-suffix {
	font-weight: 900;
}

.bgr-stat-divider {
	width: 90px;
	height: 1px;
	margin: 15px auto;
	background-color: #95c043;
}

.bgr-stat-desc {
	font-family: "Schnebel", sans-serif;
	font-size: 16px;
	line-height: 1.2;
	margin: 0;
	opacity: .9;
}

/* ═══════════════════════════════════════════
 * RESPONSIVE
 * ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
	.bgr-layout {
		flex-direction: column;
	}
	
	.bgr-col-left, .bgr-col-right {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	
	.bgr-stat-number {
		font-size: 56px;
	}
	
	/* Reset transforms on tablet to avoid overflow */
	.bgr-q4 {
		transform: none !important;
	}
}

@media (max-width: 767px) {
	.bgr-text-block {
		padding: 20px 0;
	}
	
	.bgr-heading {
		font-size: 28px !important;
	}
	
	.bgr-quad-row {
		flex-direction: row;
	}
	
	.bgr-quad-window {
		border-radius: 20px !important;
	}
	
	.bgr-stat-card {
		min-height: 240px !important;
	}
	
	.bgr-stat-number {
		font-size: 42px;
	}
	
	/* Reset all transforms on mobile */
	.bgr-q1, .bgr-q2, .bgr-q3, .bgr-q4 {
		transform: none !important;
	}
	
	.bgr-quad-row {
		display: none;
	}
}
