.wf-process-steps-animated {
	--wf-psa-blue-deep: #16a0e4;
	--wf-psa-blue-mid: #4fbcef;
	--wf-psa-blue-light: #a9dff9;
	--wf-psa-ink: #243240;
	--wf-psa-body-text: #46535f;
	--wf-psa-track: #e4f3fc;
	--wf-psa-radius: 28px;
	width: 100%;
}

.wf-process-steps-animated__steps {
	width: 100%;
	max-width: 1460px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 38px;
}

@media (max-width: 1100px) {
	.wf-process-steps-animated__steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.wf-process-steps-animated__steps {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

.wf-process-steps-animated__card {
	position: relative;
	background: #fff;
	border-radius: var(--wf-psa-radius);
	box-shadow: 0 18px 40px -18px rgba(16, 42, 67, 0.16);
	overflow: hidden;
	will-change: transform, opacity;
}

.wf-process-steps-animated__card-head {
	position: relative;
	height: 172px;
	background:
		radial-gradient(120% 95% at 50% 115%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 62%),
		linear-gradient(168deg, var(--wf-psa-blue-deep) 0%, var(--wf-psa-blue-mid) 58%, var(--wf-psa-blue-light) 125%);
}

.wf-process-steps-animated__num,
.wf-process-steps-animated__check {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wf-process-steps-animated__num {
	font-size: 84px;
	font-weight: 600;
	color: #fff;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 12px rgba(10, 80, 130, 0.12);
}

.wf-process-steps-animated__check {
	opacity: 0;
}

.wf-process-steps-animated__check svg {
	width: 58px;
	height: 58px;
}

.wf-process-steps-animated__card-body {
	padding: 36px 32px 56px;
}

.wf-process-steps-animated__card-title {
	font-size: 30px;
	font-weight: 600;
	color: var(--wf-psa-ink);
	letter-spacing: -0.01em;
	margin: 0;
}

.wf-process-steps-animated__card-description {
	margin-top: 18px;
	font-size: 17px;
	line-height: 1.7;
	color: var(--wf-psa-body-text);
}

.wf-process-steps-animated__card-description > :first-child {
	margin-top: 0;
}

.wf-process-steps-animated__card-description > :last-child {
	margin-bottom: 0;
}

.wf-process-steps-animated__bar {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 22px;
	height: 4px;
	border-radius: 99px;
	background: var(--wf-psa-track);
	opacity: 0;
}

.wf-process-steps-animated__bar-fill {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--wf-psa-blue-deep), var(--wf-psa-blue-mid));
	transform: scaleX(0);
	transform-origin: left center;
}
