/* ==========================================================================
   How it works — 3-step path
   ========================================================================== */

.lss-how {
	padding-block: 84px;
	position: relative;
	z-index: 1;
}

.lss-how__grid {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 8px;
}

.lss-how-step {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	max-width: 320px;
}

.lss-how-step__card {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 28px;
	border-radius: var(--radius, 18px);
	position: relative;
}

.lss-how-step__num {
	position: absolute;
	top: 18px;
	inset-inline-end: 20px;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--silver-700);
	direction: ltr;
}

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

.lss-how-step__title {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	color: var(--silver-100);
	margin: 0;
}

.lss-how-step__desc {
	font-size: 14px;
	line-height: 1.7;
	color: var(--silver-500);
	margin: 0;
}

.lss-how-step__connector {
	flex: 0 0 auto;
	color: var(--silver-700);
	transform: scaleX(-1); /* RTL: arrow points start-ward like reading direction */
}

.lss-how__cta {
	display: flex;
	justify-content: center;
	margin-top: 44px;
}

@media (max-width: 980px) {
	.lss-how__grid {
		flex-direction: column;
		align-items: stretch;
	}

	.lss-how-step {
		max-width: none;
	}

	.lss-how-step__connector {
		transform: rotate(90deg);
		align-self: center;
	}
}

@media (max-width: 640px) {
	.lss-how {
		padding-block: 56px;
	}

	.lss-how-step__card {
		padding: 22px;
	}
}
