.fx-big-numbers {
	--fx-big-numbers-base: #2d2f31;
	--fx-big-numbers-fg: rgba(255, 255, 255, 0.92);
	--fx-big-numbers-fg-soft: rgba(255, 255, 255, 0.72);

	display: block;
	flex: 1 1 100% !important;
	flex-basis: 100% !important;
	align-self: stretch !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: clamp(18px, 3vw, 40px) 0;
	box-sizing: border-box;
}

 .fx-big-numbers__title-wrap {
	width: 65%;
	max-width: 65%;
	margin: 0 auto 48px;
	text-align: center;
}

.fx-big-numbers__title {
	margin: 0;
	color: var(--fx-big-numbers-fg);
	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 800;
}

/* Force shortcode widget to span full e-con-inner width in Elementor. */
.e-con-inner > .elementor-element:has(.fx-big-numbers) {
	width: 100% !important;
	max-width: 100% !important;
	flex: 1 1 100% !important;
	flex-basis: 100% !important;
	align-self: stretch !important;
}

.e-con-inner > .elementor-element:has(.fx-big-numbers) > .elementor-widget-container {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.fx-big-numbers__cards {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 100%;
	margin: 0;
	padding: 0;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	align-items: stretch;
	gap: clamp(18px, 2.8vw, 28px);
	box-sizing: border-box;
}

.fx-big-numbers__card {
	width: 100%;
	max-width: none !important;
	min-width: 0;
	position: relative;
	overflow: hidden;

	border-radius: 18px;
	padding: clamp(26px, 3.2vw, 42px);
	min-height: 260px;

	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.16) 100%),
		var(--fx-big-numbers-base);

	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.24),
		inset 0 0 0 1px rgba(255, 255, 255, 0.06);

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
}

.fx-big-numbers__card:nth-child(1) {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.16) 100%),
		#1f2123;
}

.fx-big-numbers__card:nth-child(2) {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.16) 100%),
		#1f2123;
}

.fx-big-numbers__card:nth-child(3) {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.16) 100%),
		#1f2123;
}

.fx-big-numbers__card::before {
	content: '';
	position: absolute;
	inset: -2px;
	background:
		radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.14), transparent 55%),
		radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.08), transparent 58%);
	pointer-events: none;
}

.fx-big-numbers__card::after {
	content: '';
	position: absolute;
	top: 16px;
	right: 16px;
	width: 56px;
	height: 56px;
	background-color: #e0f8de;
	border-radius: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%232d2f31' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 16 L9 10 L13 14 L21 6'/%3E%3Cpath d='M16 6 H21 V11'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 78% 78%;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
	pointer-events: none;
	z-index: 2;
}

.fx-big-numbers__card > * {
	position: relative;
	z-index: 1;
}

.fx-big-numbers__number-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 0.08em;
}

.fx-big-numbers__number {
	font-size: clamp(58px, 6.5vw, 99px);
	font-weight: 850;
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: var(--fx-big-numbers-fg);
	transform: translateZ(0);
}

.fx-big-numbers__suffix {
	font-size: clamp(34px, 3.6vw, 50px);
	font-weight: 800;
	line-height: 0.9;
	color: var(--fx-big-numbers-fg);
	margin-bottom: clamp(3px, 0.3vw, 6px);
}

.fx-big-numbers__description {
	margin: 12px 0 0;
	max-width: 34ch;
	color: var(--fx-big-numbers-fg);
	font-size: clamp(14px, 1.8vw, 18px);
	font-weight: 700;
	line-height: 1.45;
	/* Reserve space so numbers don't shift when description wraps. */
	min-height: calc(2 * 1.45em);
}

@media (max-width: 767px) {
	.fx-big-numbers__title-wrap {
		width: 100%;
		max-width: 100%;
	}

	.fx-big-numbers__cards {
		grid-template-columns: 1fr !important;
		gap: 14px;
	}

	.fx-big-numbers__card {
		width: 100%;
		min-height: 220px;
	}

	.fx-big-numbers__description {
		font-size: 18px;
		line-height: 1.5;
	}
}

