.rok-value-calculator {
	--rok-value-accent: #FE7D02;
	--rok-value-bg: #0F0F0F;
	--rok-value-card: #191919;
	--rok-value-text: #FFFFFF;
	--rok-value-muted: #999999;
	width: 100%;
	background: var(--rok-value-bg);
	color: var(--rok-value-text);
	box-sizing: border-box;
}

.rok-value-inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

/* ==========================================
   EQUATION
========================================== */

.rok-value-equation {
	display: grid;

	grid-template-columns:
		minmax(100px, 1fr)
		40px
		minmax(100px, 1fr)
		40px
		minmax(100px, 1fr)
		40px
		minmax(170px, 1fr);

	align-items: center;

	gap: 10px;

	padding: 10px;

	background: var(--rok-value-card);

	border-radius: 12px;

	box-sizing: border-box;
}

.rok-value-factor {
	text-align: center;
}

.rok-value-factor strong {
	display: block;

	font-family: "Barlow Condensed", sans-serif;
	font-size: 40px;
	font-weight: 800;
	line-height: 1;

	color: var(--rok-value-accent);
}

.rok-value-factor span,
.rok-value-result span {
	display: block;

	margin-top: 8px;

	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	line-height: 1.4;

	color: var(--rok-value-muted);
}

.rok-value-symbol {
	font-family: "Barlow Condensed", sans-serif;

	font-size: 32px;
	font-weight: 700;

	text-align: center;

	color: #3A3A3A;
}

.rok-value-result {
	padding: 26px 20px;

	background: var(--rok-value-accent);

	border-radius: 10px;

	text-align: center;
}

.rok-value-result strong {
	display: block;

	font-family: "Barlow Condensed", sans-serif;
	font-size: 48px;
	font-weight: 800;
	line-height: 1;

	color: #FFFFFF;
}

.rok-value-result span {
	color: rgba(255, 255, 255, .9);
}


/* ==========================================
   STATEMENT
========================================== */

.rok-value-statement {
	margin: 20px auto;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  max-width: 1000px;
}

.rok-value-statement strong {
	color: #FFFFFF;
}


/* ==========================================
   STAT CARDS
========================================== */

.rok-value-stats {
	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 16px;
}

.rok-value-stat {
	padding: 24px;

	background: var(--rok-value-card);

	border-radius: 9px;

	text-align: center;
}

.rok-value-stat strong {
	display: block;

	font-family: "Barlow Condensed", sans-serif;
	font-size: 38px;
	font-weight: 800;
	line-height: 1;

	color: var(--rok-value-accent);
}

.rok-value-stat span {
	display: block;

	margin-top: 7px;

	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	line-height: 1.4;

	color: var(--rok-value-muted);
}


/* ==========================================
   FOOTER
========================================== */

.rok-value-footer {
	padding: 30px 10px 8px;

	text-align: center;
}

.rok-value-footer h3 {
	margin: 0;
	font-weight: 700;
}

.rok-value-footer p {
	margin: 4px 0 0;
	line-height: 1.5;
	color: #555555;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

	.rok-value-equation {
		grid-template-columns: repeat(3, 1fr);
	}

	.rok-value-symbol {
		display: none;
	}

	.rok-value-result {
		grid-column: 1 / -1;

		max-width: 260px;

		width: 100%;

		margin: 10px auto 0;
	}

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

	.rok-value-calculator {
		padding: 10px;
	}

	.rok-value-equation {
		grid-template-columns: 1fr;

		padding: 24px 18px;

		gap: 24px;
	}

	.rok-value-result {
		grid-column: auto;

		max-width: none;
	}

	.rok-value-factor strong {
		font-size: 34px;
	}

	.rok-value-result strong {
		font-size: 42px;
	}

	.rok-value-stats {
		grid-template-columns: 1fr;
	}

	.rok-value-statement {
		font-size: 14px;
	}

	.rok-value-footer h3 {
		font-size: 19px;
	}

}