.hardware-section {
	padding: 40px 0 0px;
	background: linear-gradient(180deg, #f7faff, #fff)
}

.hardware-board {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 28px;
	padding: 14px;
	box-shadow: var(--shadow);
	overflow: hidden
}

.hardware-board:before {
	content: "";
	position: absolute;
	inset: -40% auto auto -10%;
	width: 45%;
	height: 120%;
	background: radial-gradient(circle, rgba(7, 93, 221, .07), transparent 68%);
	pointer-events: none
}

.flow-guide {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 2px 6px;
	color: var(--green);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase
}

.flow-guide small {
	margin-left: auto;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none
}

.flow-guide-pulse {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 0 rgba(40, 173, 101, .4);
	animation: flow-guide-pulse 1.8s ease-out infinite
}

.flow-row {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 42px .88fr 42px 1.4fr 42px 1.08fr 42px 1.2fr;
	align-items: stretch
}

.flow-card {
	position: relative;
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 6px 14px;
	background: #fff;
	min-width: 0;
	opacity: 0;
	transform: translateY(18px) scale(.985);
	transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .2, 1), border-color .4s ease, box-shadow .4s ease
}

.hardware-board.is-visible .flow-card {
	opacity: 1;
	transform: none
}

.hardware-board.is-visible .flow-card:nth-of-type(1) {
	transition-delay: .05s
}

.hardware-board.is-visible .flow-card:nth-of-type(2) {
	transition-delay: .18s
}

.hardware-board.is-visible .flow-card:nth-of-type(3) {
	transition-delay: .31s
}

.hardware-board.is-visible .flow-card:nth-of-type(4) {
	transition-delay: .44s
}

.hardware-board.is-visible .flow-card:nth-of-type(5) {
	transition-delay: .57s
}

.flow-card:after {
	content: "";
	position: absolute;
	inset: -1px;
	border: 2px solid transparent;
	border-radius: 18px;
	pointer-events: none;
	transition: border-color .35s ease, box-shadow .35s ease
}

.flow-card.is-active {
	transform: translateY(-4px);
	border-color: rgba(7, 93, 221, .3);
	box-shadow: 0 16px 34px rgba(7, 52, 111, .13)
}

.flow-card.is-active:after {
	border-color: rgba(7, 93, 221, .22);
	box-shadow: 0 0 0 5px rgba(7, 93, 221, .05)
}

.flow-card[data-flow-step]:before {
	content: attr(data-flow-step);
	position: absolute;
	right: 14px;
	top: 14px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #edf4ff;
	color: var(--blue);
	font-size: 13px;
	font-weight: 900;
	transition: background .35s ease, color .35s ease, transform .35s ease
}

.flow-card.is-active:before {
	background: var(--blue);
	color: #fff;
	transform: scale(1.12)
}

.card-label {
	display: inline-flex;
	max-width: calc(100% - 42px);
	padding: 10px 15px;
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	line-height: 1.25;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin-bottom: 16px
}

.card-label.green {
	background: var(--green)
}

.card-label.blue {
	background: #1d73d8
}

.card-label.navy {
	background: var(--navy)
}

.card-label.purple {
	background: var(--purple)
}

.method-list {
	display: grid;
	gap: 12px
}

.method-item {
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 14px;
	align-items: center;
	border: 1px solid #e8eef6;
	border-radius: 14px;
	padding: 14px
}

.method-item img {
	width: 82px;
	height: 72px;
	object-fit: contain
}

.method-item b,
.method-item small {
	display: block
}

.method-item b {
	font-size: 17px;
	line-height: 1.3
}

.method-item small {
	font-size: 14px;
	line-height: 1.45;
	color: var(--muted);
	margin-top: 3px
}

.or {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: auto;
	background: var(--green);
	color: #fff;
	font-size: 11px;
	font-weight: 900
}

.arrow {
	position: relative;
	display: grid;
	place-items: center;
	color: var(--green);
	font-size: 38px;
	font-weight: 900;
	opacity: .35;
	transition: opacity .35s ease, filter .35s ease
}

.arrow span {
	display: block
}

.arrow:after {
	content: "";
	position: absolute;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--green);
	left: 1px;
	top: 50%;
	opacity: 0;
	box-shadow: 0 0 10px rgba(40, 173, 101, .65)
}

.arrow.is-active {
	opacity: 1;
	filter: drop-shadow(0 0 5px rgba(40, 173, 101, .28))
}

.arrow.is-active:after {
	animation: flow-signal 1.1s ease-in-out infinite
}

.barrier-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: center;
	justify-content: center;
	padding: 22px 16px;
	min-height: 320px
}

.barrier-card>.barrier-visual {
	width: 100%;
	height: 190px;
	object-fit: contain;
	object-position: center;
	margin: 4px auto 12px
}

.barrier-card p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.5;
	max-width: 240px
}

.app-card .dashboard-img {
	height: 280px;
	width: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: #f5f9ff
}

.app-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 16px
}

.app-points div {
	text-align: center
}

.app-points i {
	font-style: normal;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: 0 auto 7px;
	background: #edf4ff;
	color: var(--blue);
	font-size: 20px
}

.app-points span {
	font-size: 13px;
	line-height: 1.35;
	font-weight: 800;
	color: #344a66
}

.payment-list {
	display: grid;
	gap: 14px
}

.payment-list>div {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 14px;
	align-items: center;
	border: 1px solid #eee7fb;
	border-radius: 16px;
	padding: 14px
}

.payment-list i {
	font-style: normal;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #f2ebff;
	color: var(--purple);
	font-size: 20px;
	font-weight: 900
}

.payment-list b,
.payment-list small {
	display: block
}

.payment-list b {
	font-size: 17px
}

.payment-list small {
	font-size: 13px;
	line-height: 1.45;
	color: var(--muted);
	margin-top: 3px
}

.exit-barrier {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 14px;
	align-items: center;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px dashed var(--line)
}

.exit-barrier img {
	width: 130px;
	height: 92px;
	object-fit: contain
}

.exit-barrier span {
	font-size: 14px;
	line-height: 1.45;
	color: var(--muted);
	font-weight: 700
}

.benefit-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin-top: 20px
}

.benefit-row>div {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 14px;
	align-items: center;
	border: 1px solid #dce9e1;
	border-radius: 17px;
	padding: 18px;
	background: linear-gradient(180deg, #fbfffc, #f8fbff)
}

.benefit-row i {
	font-style: normal;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #eaf3ff;
	color: var(--blue);
	font-size: 22px
}

.benefit-row b,
.benefit-row small {
	display: block
}

.benefit-row b {
	font-size: 17px
}

.benefit-row small {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.45;
	margin-top: 3px
}

@keyframes flow-guide-pulse {
	70% {
		box-shadow: 0 0 0 8px rgba(40, 173, 101, 0)
	}

	100% {
		box-shadow: 0 0 0 0 rgba(40, 173, 101, 0)
	}
}

@keyframes flow-signal {
	0% {
		left: 0;
		opacity: 0
	}

	20%,
	75% {
		opacity: 1
	}

	100% {
		left: calc(100% - 7px);
		opacity: 0
	}
}

@keyframes flow-signal-mobile {
	0% {
		left: 50%;
		top: 0;
		opacity: 0
	}

	20%,
	75% {
		opacity: 1
	}

	100% {
		left: 50%;
		top: calc(100% - 7px);
		opacity: 0
	}
}

@media(max-width:1400px) {
	.flow-row {
		grid-template-columns: 1fr
	}

	.arrow {
		transform: none;
		height: 42px;
		font-size: 0
	}

	.arrow span {
		transform: rotate(90deg);
		font-size: 36px
	}

	.arrow:after {
		left: 50%;
		top: 0
	}

	.arrow.is-active:after {
		animation-name: flow-signal-mobile
	}

	.flow-card {
		width: 100%;
		max-width: 900px;
		margin: auto
	}

	.barrier-card {
		width: min(100%, 650px)
	}

	.barrier-card>img {
		max-width: 440px
	}

	.benefit-row {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width:850px) {
	.flow-guide small {
		display: none
	}

	.flow-card {
		max-width: none
	}

	.benefit-row {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width:560px) {
	.hardware-board {
		padding: 11px
	}

	.benefit-row {
		grid-template-columns: 1fr
	}

	.app-points {
		grid-template-columns: 1fr 1fr
	}
}

@media(prefers-reduced-motion:reduce) {

	.flow-guide-pulse,
	.arrow.is-active:after {
		animation: none
	}

	.flow-card,
	.hardware-board.is-visible .flow-card {
		opacity: 1;
		transform: none;
		transition: none
	}

	.flow-card.is-active {
		transform: none
	}

	.arrow {
		transition: none
	}
}