/**
 * SingleMeetSingle how-it-works steps.
 */
.sms-steps {
	--sms-steps-ink: #101727;
	--sms-steps-muted: #70798c;
	--sms-steps-line: #e8ebf0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 20px 16px;
	box-sizing: border-box;
}

.sms-steps__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}

.sms-step {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	min-height: 310px;
	padding: 34px;
	box-sizing: border-box;
	border: 1.5px solid var(--sms-steps-line);
	border-radius: 28px;
	color: var(--sms-steps-ink);
	background: #fff;
	text-align: left;
	text-decoration: none !important;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .03);
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

a.sms-step:hover,
a.sms-step:focus-visible {
	color: var(--sms-steps-ink);
	border-color: #d9d3f8;
	box-shadow: 0 12px 28px rgba(50, 35, 105, .09);
	transform: translateY(-3px);
	outline: none;
}

a.sms-step:focus-visible {
	box-shadow: 0 0 0 4px rgba(111, 44, 255, .14), 0 12px 28px rgba(50, 35, 105, .09);
}

.sms-step__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	margin-bottom: 24px;
	border-radius: 24px;
	color: #06c8b2;
	background: linear-gradient(135deg, #e7fbf8 0%, #eee9ff 100%);
}

.sms-step__icon svg {
	display: block;
	width: 52px;
	height: 52px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sms-step__custom-icon {
	font-size: 44px;
	line-height: 1;
}

.sms-step__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.sms-step__badge {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	margin-bottom: 20px;
	padding: 6px 18px;
	box-sizing: border-box;
	border-radius: 999px;
	color: #fff;
	background: linear-gradient(110deg, #09c8b2 0%, #3297de 50%, #7242ee 100%);
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 5px 13px rgba(79, 70, 220, .16);
}

.sms-step__title {
	display: block;
	margin: 0;
	color: var(--sms-steps-ink);
	font-size: clamp(23px, 2.2vw, 31px);
	font-weight: 850;
	line-height: 1.16;
	letter-spacing: -.035em;
}

.sms-step__description {
	display: block;
	margin-top: 14px;
	color: var(--sms-steps-muted);
	font-size: 18px;
	font-weight: 430;
	line-height: 1.55;
}

@media (max-width: 980px) {
	.sms-steps__inner {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 920px;
	}

	.sms-step {
		display: grid;
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 28px;
		align-items: center;
		min-height: 0;
		padding: 30px 40px;
	}

	.sms-step__icon {
		width: 100px;
		height: 100px;
		margin: 0;
	}

	.sms-step__title {
		font-size: clamp(24px, 3.6vw, 31px);
	}

	.sms-step__description {
		font-size: clamp(18px, 2.6vw, 23px);
	}
}

@media (max-width: 600px) {
	.sms-steps {
		padding: 14px 12px;
	}

	.sms-steps__inner {
		gap: 16px;
	}

	.sms-step {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 20px;
		padding: 20px;
		border-radius: 22px;
	}

	.sms-step__icon {
		width: 76px;
		height: 76px;
		border-radius: 20px;
	}

	.sms-step__icon svg {
		width: 46px;
		height: 46px;
	}

	.sms-step__badge {
		min-height: 29px;
		margin-bottom: 12px;
		padding: 5px 13px;
		font-size: 14px;
	}

	.sms-step__title {
		font-size: clamp(20px, 5.7vw, 25px);
	}

	.sms-step__description {
		margin-top: 9px;
		font-size: clamp(15px, 4.5vw, 18px);
		line-height: 1.5;
	}
}

@media (max-width: 390px) {
	.sms-step {
		grid-template-columns: 62px minmax(0, 1fr);
		gap: 15px;
		padding: 17px;
	}

	.sms-step__icon {
		width: 62px;
		height: 62px;
		border-radius: 17px;
	}

	.sms-step__icon svg {
		width: 38px;
		height: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sms-step {
		transition: none;
	}
}
