/* ─── AV How It Works ─── */
.av-hiw {
	background: var(--av-bg);
	padding: 96px 20px;
}
.av-hiw-head {
	text-align: center;
	margin-bottom: 56px;
}
.av-hiw-head .av-eyebrow { justify-content: center; }
.av-hiw-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	position: relative;
} 
.av-hiw-step {
	text-align: center;
	padding: 0 6px;
	position: relative;
	z-index: 1;
	width: calc(25% - 18px);
}
.av-hiw-step::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 30px;
	width: 100%;
	border-bottom: 2px dashed #ddd;
}
.av-hiw-step:last-child::before {
	display: none;
}
.av-hiw-num {
	width: 60px; height: 60px;
	border-radius: 50%;
	background: var(--av-paper);
	border: 2px solid var(--av-line);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--av-font-display);
	font-size: 22px;
	font-weight: 700;
	color: var(--av-navy);
	margin: 0 auto 22px;
	transition: all .25s;
	position: relative;
}
.av-hiw-step:hover .av-hiw-num {
	background: var(--av-navy);
	border-color: var(--av-navy);
	color: #fff;
	transform: scale(1.05);
}
.av-hiw-step h3 {
	font-size: 18px;
	margin-top: 0px;
	margin-bottom: 8px;
	letter-spacing: -.01em;
	color: var(--av-navy);
}
.av-hiw-step p {
	font-size: 14px;
	color: var(--av-ink-3);
	line-height: 1.6;
}
.av-hiw-step p a { color: var(--av-rust); font-weight: 600; }

@media (max-width: 767.98px) {
	.av-hiw-steps { gap: 36px 20px; }
	.av-hiw-step::before { display: none; }
	.av-hiw-step {
		width: calc(50% - 10px);
	}
}
@media (max-width: 575.98px) { 
	.av-hiw-step {
		width: 100%;
	}
}
