/* =========================================================================
   Steps — "Просто. Безопасно. Офлайн."
   ========================================================================= */
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 56px;
	position: relative;
}
.step {
	position: relative;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 44px 30px 40px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}
.step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.step__num {
	display: none;
}
.step__ic {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: #e8efff;
	color: var(--blue);
	display: grid;
	place-items: center;
	margin: 0 auto 28px;
}
.step__ic svg {
	width: 44px;
	height: 44px;
}
.step h3 {
	font-size: 16px;
	margin-bottom: 12px;
	color: #0d1b3e;
}
.step p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.55;
}
.step__arrow {
	position: absolute;
	top: 92px;
	right: -48px;
	transform: translateY(-50%);
	color: #c2ccdd;
	z-index: 2;
}
.step__arrow svg {
	width: 40px;
	height: 12px;
}
.step:last-child .step__arrow {
	display: none;
}

@media (max-width: 900px) {
	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.step__arrow {
		display: none !important;
	}
}
@media (max-width: 460px) {
	.steps {
		grid-template-columns: 1fr;
	}
}
