/* ==========================================================================
   Trust stats — animated counter strip
   ========================================================================== */

.lss-trust {
	padding-block: 48px;
	border-block: 1px solid rgba(90, 190, 255, 0.1);
	background: rgba(7, 11, 20, 0.6);
	position: relative;
	z-index: 1;
}

.lss-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.lss-trust__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	padding: 26px 18px;
	border-radius: var(--radius, 18px);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* Consistent hover lift across all four cards. */
.lss-trust__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 0 0 1px rgba(56, 209, 255, 0.35), 0 18px 34px -20px rgba(0, 0, 0, 0.6);
}

/* WhatsApp payment card is a link — no underline, inherit text colour. */
a.lss-trust__card--wa {
	text-decoration: none;
	color: inherit;
}

a.lss-trust__card--wa:focus-visible {
	outline: 2px solid var(--cyan-400);
	outline-offset: 3px;
}

.lss-trust__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	color: var(--cyan-400);
	background: linear-gradient(135deg, rgba(46, 155, 255, 0.16), rgba(56, 209, 255, 0.05));
	box-shadow: inset 0 0 0 1px rgba(120, 190, 255, 0.16);
}

.lss-trust__value {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 800;
	line-height: 1;
	direction: ltr;
}

.lss-trust__label {
	font-size: 13px;
	color: var(--silver-500);
	font-weight: 600;
}

@media (max-width: 720px) {
	.lss-trust__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.lss-trust {
		padding-block: 36px;
	}

	.lss-trust__card {
		padding: 20px 14px;
	}
}
