/* Why businesses choose us — row of five value cards */
.why {
	background: #fff;
}
.value-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 52px;
}
.value {
	border: 1px solid var(--border);
	border-radius: 15px;
	padding: 24px 20px;
	background: var(--grey-light);
	transition:
		transform 0.18s,
		box-shadow 0.18s,
		border-color 0.18s;
}
.value:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px -22px rgba(20, 50, 35, 0.24);
	border-color: var(--green-20);
	background: #fff;
}
.value .vi {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--green-10);
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.value .vi svg {
	width: 24px;
	height: 24px;
}
.value h3 {
	font-size: 15.5px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--grey-70);
	line-height: 1.25;
}
.value p {
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--grey-60);
	margin-top: 8px;
}
.why-foot {
	max-width: 820px;
	margin: 40px auto 0;
	text-align: center;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--grey-60);
	text-wrap: pretty;
}
.why-foot a {
	font-weight: 600;
}
