.sms-why,
.sms-partners {
	box-sizing: border-box;
	font-family: inherit;
}

.sms-why *,
.sms-partners * {
	box-sizing: border-box;
}

.sms-why {
	--sms-why-start: #7a32f4;
	--sms-why-end: #ec3f9d;
	position: relative;
	overflow: hidden;
	padding: clamp(56px, 7vw, 88px) 24px;
	background: linear-gradient(135deg, var(--sms-why-start), var(--sms-why-end));
	color: #fff;
}

.sms-why--full-width {
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
}

.sms-why__inner {
	width: min(1180px, 100%);
	margin: 0 auto;
}

.sms-why__header {
	max-width: 920px;
	margin: 0 auto clamp(38px, 5vw, 58px);
	text-align: center;
}

.sms-why__heading {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(34px, 4.2vw, 54px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.035em;
}

.sms-why__intro {
	margin: 0;
	color: rgba(255, 255, 255, .78);
	font-size: clamp(19px, 2.25vw, 28px);
	line-height: 1.55;
}

.sms-why__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.sms-why-item {
	display: flex;
	min-width: 0;
	min-height: 320px;
	padding: clamp(27px, 3vw, 38px);
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 30px;
	background: rgba(255, 255, 255, .14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
	color: #fff;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease;
}

a.sms-why-item:hover,
a.sms-why-item:focus-visible {
	background: rgba(255, 255, 255, .2);
	color: #fff;
	transform: translateY(-3px);
}

.sms-why-item__icon {
	display: flex;
	width: 52px;
	height: 52px;
	margin-bottom: 24px;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.sms-why-item__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sms-why-item__custom-icon {
	font-size: 42px;
	line-height: 1;
}

.sms-why-item__title,
.sms-why-item__description {
	display: block;
}

.sms-why-item__title {
	margin-bottom: 12px;
	color: #fff;
	font-size: clamp(22px, 2vw, 29px);
	font-weight: 800;
	line-height: 1.2;
}

.sms-why-item__description {
	color: rgba(255, 255, 255, .78);
	font-size: clamp(17px, 1.45vw, 21px);
	line-height: 1.55;
}

.sms-partners {
	padding: clamp(48px, 6vw, 72px) 24px;
	background: #fff;
}

.sms-partners__inner {
	width: min(1000px, 100%);
	margin: 0 auto;
	text-align: center;
}

.sms-partners__heading {
	margin: 0 0 40px;
	color: #9da5b5;
	font-size: clamp(18px, 2vw, 25px);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sms-partners__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
	gap: 26px 34px;
	align-items: start;
}

.sms-partner {
	display: flex;
	min-width: 0;
	padding: 8px;
	flex-direction: column;
	align-items: center;
	color: #697386;
	text-align: center;
	text-decoration: none;
}

a.sms-partner:hover,
a.sms-partner:focus-visible {
	color: #7137f8;
}

.sms-partner__logo {
	display: flex;
	width: 100%;
	height: 88px;
	margin-bottom: 14px;
	align-items: center;
	justify-content: center;
}

.sms-partner__image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 82px;
	object-fit: contain;
}

.sms-partner__text-logo {
	color: #172033;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(22px, 2.4vw, 31px);
	font-weight: 500;
	line-height: 1.05;
}

.sms-partner__name {
	display: block;
	color: inherit;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
}

.sms-partners__all {
	display: inline-flex;
	margin-top: 42px;
	align-items: center;
	gap: 8px;
	color: #7137f8;
	font-size: clamp(20px, 2.2vw, 27px);
	font-weight: 800;
	text-decoration: none;
}

.sms-partners__all:hover,
.sms-partners__all:focus-visible {
	color: #5120d4;
}

@media (max-width: 1099px) {
	.sms-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sms-why-item {
		min-height: 0;
	}
}

@media (max-width: 600px) {
	.sms-why {
		padding: 52px 20px;
	}

	.sms-why__header {
		margin-bottom: 34px;
	}

	.sms-why__intro {
		font-size: 18px;
	}

	.sms-why__grid {
		gap: 16px;
	}

	.sms-why-item {
		padding: 24px;
		border-radius: 24px;
	}

	.sms-why-item__icon {
		width: 42px;
		height: 42px;
		margin-bottom: 18px;
	}

	.sms-partners {
		padding: 44px 18px 50px;
	}

	.sms-partners__heading {
		margin-bottom: 28px;
	}

	.sms-partners__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px 10px;
	}

	.sms-partner__logo {
		height: 72px;
	}

	.sms-partner__image {
		max-height: 68px;
	}

	.sms-partner__name {
		font-size: 16px;
	}

	.sms-partners__all {
		margin-top: 34px;
	}
}

@media (max-width: 420px) {
	.sms-why__grid {
		grid-template-columns: 1fr;
	}
}

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