/* Блок «Как мы работаем» — стили для превью вёрстки */
.wt-process {
	width: 100%;
	margin: 48px 0 0;
	padding: 28px 20px 24px;
	background: #f5f6f4;
	border-radius: 12px;
	box-sizing: border-box;
}

.wt-process__title {
	margin: 0 0 28px;
	font-family: Arial, sans-serif;
	font-size: 26px;
	line-height: 1.15;
	font-weight: 700;
	text-transform: uppercase;
	color: #1a1a1a;
}

.wt-process__steps {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: stretch;
	gap: 0 8px;
}

/* Колонка: карточка этапа + плашка-итог под ней */
.wt-process__step {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

.wt-process__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 auto;
	padding: 22px 18px 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

.wt-process__icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	margin: 0 0 14px;
	border: 2px solid #b5d44a;
	border-radius: 50%;
	background: #f7f8f5;
	box-sizing: border-box;
}

.wt-process__icon {
	display: block;
	width: 44px;
	height: 44px;
	margin: 0;
	object-fit: contain;
}

.wt-process__card-title {
	margin: 0 0 14px;
	font-family: Arial, sans-serif;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 700;
	text-align: center;
	color: #1a1a1a;
}

.wt-process__list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.wt-process__list li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 16px;
	font-family: 'Circe', Verdana, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.4;
	color: #444;
}

.wt-process__list li:last-child {
	margin-bottom: 0;
}

.wt-process__list li:before {
	content: '';
	position: absolute;
	top: 6px;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #8fbf3a;
}

.wt-process__arrow {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 58px;
	color: #b0b0b0;
	line-height: 0;
}

.wt-process__arrow svg {
	display: block;
	width: 28px;
	height: 12px;
}

.wt-process__summary-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 16px;
	background: #e8efc8;
	border-radius: 10px;
	box-sizing: border-box;
}

.wt-process__summary-icon {
	display: block;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	object-fit: contain;
}

.wt-process__summary-icon--blend {
	mix-blend-mode: multiply;
}

.wt-process__summary-text {
	margin: 0;
	font-family: 'Circe', Verdana, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.3;
	color: #333;
}

@media (max-width: 991px) {
	.wt-process {
		padding: 22px 16px 18px;
		margin-top: 36px;
	}

	.wt-process__title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.wt-process__steps {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.wt-process__arrow {
		display: none;
	}

	.wt-process__card {
		padding: 18px 16px;
	}

	.wt-process__icon-wrap {
		width: 72px;
		height: 72px;
	}

	.wt-process__icon {
		width: 36px !important;
		height: 36px !important;
	}

	.wt-process__summary-item {
		justify-content: flex-start;
		padding: 12px 14px;
	}
}

@media (max-width: 767px) {
	.wt-process {
		margin-top: 28px;
		padding: 18px 12px 14px;
		border-radius: 8px;
	}

	.wt-process__icon-wrap {
		width: 72px;
		height: 72px;
	}

	.wt-process__icon {
		width: 36px !important;
		height: 36px !important;
	}

	.wt-process__summary-icon {
		width: 36px !important;
		height: 36px !important;
	}

	.wt-process__title {
		font-size: 18px;
		margin-bottom: 16px;
	}

	.wt-process__card-title {
		font-size: 16px;
	}

	.wt-process__list li {
		font-size: 13px;
	}

	.wt-process__summary-text {
		font-size: 12px;
	}
}
