/* ==========================================================================
   Why us — benefit cards with line-draw icons
   ========================================================================== */

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

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

.lss-why-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding: 28px;
	border-radius: var(--radius, 18px);
}

.lss-why-card__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-why-card__svg path {
	stroke-dasharray: 90;
	stroke-dashoffset: 90;
	opacity: 0;
	transition: stroke-dashoffset 1.1s var(--ease-premium), opacity 0.3s ease;
}

.lss-why-card.is-visible .lss-why-card__svg path {
	stroke-dashoffset: 0;
	opacity: 1;
}

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

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

@media (max-width: 980px) {
	.lss-why__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.lss-why__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lss-why-card__svg path {
		stroke-dashoffset: 0;
		opacity: 1;
	}
}
