.acpw-process,
.acpw-process * {
	box-sizing: border-box;
}

.acpw-process {
	--acpw-green: #52933D;
	--acpw-dark: #2B2B2B;
	--acpw-copy: #565A56;
	--acpw-step-title-size: 16px;
	--acpw-step-text-size: 12px;
	--acpw-step-width: 210px;
	--acpw-step-height: 282px;
	width: 100%;
	overflow: hidden;
	background: #F6F8F4;
	color: var(--acpw-dark);
	font-family: inherit;
}

.acpw-process__inner {
	width: calc(100% - 48px);
	max-width: 1380px;
	margin-inline: auto;
	padding: 64px 0 62px;
	display: grid;
	grid-template-columns: minmax(255px, 290px) minmax(0, 1fr);
	gap: 28px;
	align-items: center;
}

.acpw-process__intro,
.acpw-process__content {
	min-width: 0;
}

.acpw-process__intro {
	position: relative;
	z-index: 10;
}

.acpw-process__eyebrow {
	margin: 0;
	color: var(--acpw-green);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.3;
}

.acpw-process__intro-line {
	display: block;
	width: 42px;
	height: 2px;
	margin: 14px 0 24px;
	border-radius: 999px;
	background: var(--acpw-green);
}

.acpw-process__title {
	max-width: 290px;
	margin: 0;
	color: var(--acpw-dark);
	font-size: 35px;
	font-weight: 600;
	line-height: 1.16;
	letter-spacing: -0.025em;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
}

.acpw-process__description {
	max-width: 290px;
	margin: 24px 0 0;
	color: var(--acpw-copy);
	font-size: 15px;
	line-height: 1.52;
}

.acpw-process__content {
	overflow: visible;
}

.acpw-process__steps {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	overflow: visible;
	padding-inline: 2px;
}

.acpw-process__step {
	--acpw-accent: var(--acpw-green);
	position: relative;
	isolation: isolate;
	flex: 0 0 var(--acpw-step-width);
	width: var(--acpw-step-width);
	min-width: var(--acpw-step-width);
	max-width: var(--acpw-step-width);
	height: var(--acpw-step-height);
	min-height: var(--acpw-step-height);
	margin: 0;
	padding: 19px 16px 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(43,43,43,.10);
	border-radius: 50% / 43%;
	background: #FFFFFF;
	box-shadow:
		0 17px 36px rgba(43,43,43,.10),
		inset 0 0 0 8px rgba(255,255,255,.82);
	text-align: center;
	overflow: visible;
	transition: transform .3s ease, box-shadow .3s ease;
}

.acpw-process__step:not(:first-child) {
	margin-left: -10px;
}

.acpw-process__step::after {
	content: "";
	position: absolute;
	inset: 7px;
	z-index: -1;
	padding: 2px;
	border-radius: 50% / 43%;
	background: conic-gradient(
		from 8deg,
		transparent 0 54%,
		var(--acpw-accent) 54% 70%,
		transparent 70% 100%
	);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: .76;
	transition: opacity .3s ease, transform .3s ease;
	pointer-events: none;
}

.acpw-process__step:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -12px;
	z-index: 8;
	width: 17px;
	height: 17px;
	margin-top: -8px;
	border: 4px solid #FFFFFF;
	border-radius: 50%;
	background: var(--acpw-accent);
	box-shadow: 0 0 0 1px #DEE4DB, 0 4px 12px rgba(43,43,43,.12);
	pointer-events: none;
}

.acpw-process__icon {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	margin-bottom: 7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--acpw-accent);
	color: #FFFFFF;
	box-shadow: 0 8px 18px rgba(43,43,43,.14);
	transition: transform .3s ease;
}

.acpw-process__icon i,
.acpw-process__icon svg {
	color: #FFFFFF !important;
	fill: #FFFFFF !important;
	stroke: #FFFFFF;
	font-size: 21px;
	width: 21px;
	height: 21px;
}

.acpw-process__number {
	color: var(--acpw-accent);
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
}

.acpw-process__accent {
	width: 36px;
	height: 3px;
	margin: 8px 0 12px;
	border-radius: 999px;
	background: var(--acpw-accent);
}

.acpw-process__step-title {
	width: 100%;
	max-width: 178px;
	margin: 0;
	color: var(--acpw-dark);
	font-size: var(--acpw-step-title-size);
	font-weight: 700;
	line-height: 1.18;
	white-space: nowrap;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
}

.acpw-process__step-text {
	width: 100%;
	max-width: 168px;
	margin: 10px 0 0;
	color: #595D59;
	font-size: var(--acpw-step-text-size);
	line-height: 1.34;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	text-wrap: pretty;
}

.acpw-process__statement {
	width: min(72%, 640px);
	min-height: 64px;
	margin: 31px auto 0;
	padding: 14px 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	border: 1px solid rgba(43,43,43,.10);
	border-radius: 14px;
	background: #FFFFFF;
	box-shadow: 0 10px 26px rgba(43,43,43,.08);
}

.acpw-process__statement-icon {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(82,147,61,.11);
	color: var(--acpw-green);
}

.acpw-process__statement-icon i,
.acpw-process__statement-icon svg {
	color: var(--acpw-green) !important;
	fill: var(--acpw-green) !important;
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.acpw-process__statement p {
	margin: 0;
	color: var(--acpw-dark);
	font-size: 15px;
	line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
	.acpw-process__step:hover {
		z-index: 12;
		transform: translateY(-8px);
		box-shadow:
			0 26px 50px rgba(43,43,43,.17),
			inset 0 0 0 8px rgba(255,255,255,.9);
	}

	.acpw-process__step:hover::after {
		opacity: 1;
		transform: rotate(8deg);
	}

	.acpw-process__step:hover .acpw-process__icon {
		transform: scale(1.06);
	}
}

@media (max-width: 1180px) {
	.acpw-process__inner {
		width: calc(100% - 64px);
		padding: 58px 0;
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.acpw-process__title,
	.acpw-process__description {
		max-width: 680px;
	}

	.acpw-process__title {
		font-size: 26px;
	}

	.acpw-process__description {
		margin-top: 18px;
		font-size: 12px;
	}

	.acpw-process__steps {
		display: grid;
		grid-template-columns: repeat(2, minmax(250px, 300px));
		justify-content: center;
		gap: 24px;
	}

	.acpw-process__step {
		width: var(--acpw-step-width);
		min-width: 0;
		max-width: 100%;
		height: var(--acpw-step-height);
		min-height: var(--acpw-step-height);
		margin-left: 0 !important;
		padding: 26px 24px 28px;
		border-radius: 50% / 43%;
	}

	.acpw-process__step:not(:last-child)::before {
		display: none;
	}

	.acpw-process__step-title {
		max-width: 210px;
		white-space: normal;
	}

	.acpw-process__step-text {
		max-width: 210px;
		line-height: 1.42;
	}

	.acpw-process__statement {
		width: min(100%, 620px);
	}
}

@media (max-width: 767px) {
	.acpw-process__inner {
		width: calc(100% - 40px);
		padding: 46px 0;
		gap: 28px;
	}

	.acpw-process__title {
		max-width: none;
		font-size: 28px;
		line-height: 1.1;
	}

	.acpw-process__description {
		max-width: none;
		font-size: 14px;
	}

	.acpw-process__steps {
		grid-template-columns: minmax(0, 310px);
		gap: 22px;
	}

	.acpw-process__step {
		width: min(100%, var(--acpw-step-width));
		max-width: var(--acpw-step-width);
		height: var(--acpw-step-height);
		min-height: var(--acpw-step-height);
		padding: 28px 25px 30px;
	}

	.acpw-process__statement {
		width: 100%;
		padding: 14px 16px;
	}

	.acpw-process__statement p {
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.acpw-process__step,
	.acpw-process__step::after,
	.acpw-process__icon {
		transition: none !important;
		transform: none !important;
	}
}
