.custom-home-flow__list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.custom-home-flow__list li {
	--custom-home-flow-accent: #3a7ca5;
	--custom-home-flow-bg: #eef7fb;
	--custom-home-flow-border: rgba(58, 124, 165, 0.42);
	--custom-home-flow-shadow: rgba(58, 124, 165, 0.16);
	--custom-home-flow-filter: none;
	display: grid;
	gap: 4px;
	justify-items: center;
	align-content: center;
	min-height: 104px;
	padding: 10px 10px 6px;
	border: 1px solid var(--color-line);
	border-radius: 12px;
	background: var(--color-white);
	box-shadow: 0 8px 18px rgba(16, 35, 51, 0.04);
	font-weight: 800;
	animation: custom-home-flow-pulse 4.9s linear infinite;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.custom-home-tour + .custom-home-flow {
	padding-top: clamp(18px, 3vw, 32px);
}

.custom-home-flow__list li:nth-child(1) {
	--custom-home-flow-filter: brightness(0) saturate(100%) invert(36%) sepia(24%) saturate(520%) hue-rotate(170deg) brightness(88%) contrast(90%);
}

.custom-home-flow__list li:nth-child(2) {
	--custom-home-flow-filter: brightness(0) saturate(100%) invert(42%) sepia(18%) saturate(620%) hue-rotate(78deg) brightness(88%) contrast(89%);
	animation-delay: 0.7s;
}

.custom-home-flow__list li:nth-child(3) {
	--custom-home-flow-filter: brightness(0) saturate(100%) invert(48%) sepia(35%) saturate(560%) hue-rotate(4deg) brightness(88%) contrast(90%);
	animation-delay: 1.4s;
}

.custom-home-flow__list li:nth-child(4) {
	--custom-home-flow-filter: brightness(0) saturate(100%) invert(38%) sepia(18%) saturate(520%) hue-rotate(220deg) brightness(88%) contrast(90%);
	animation-delay: 2.1s;
}

.custom-home-flow__list li:nth-child(5) {
	--custom-home-flow-filter: brightness(0) saturate(100%) invert(42%) sepia(28%) saturate(620%) hue-rotate(345deg) brightness(88%) contrast(90%);
	animation-delay: 2.8s;
}

.custom-home-flow__list li:nth-child(6) {
	--custom-home-flow-filter: brightness(0) saturate(100%) invert(47%) sepia(30%) saturate(620%) hue-rotate(325deg) brightness(88%) contrast(90%);
	animation-delay: 3.5s;
}

.custom-home-flow__list li:nth-child(7) {
	--custom-home-flow-filter: brightness(0) saturate(100%) invert(36%) sepia(24%) saturate(480%) hue-rotate(130deg) brightness(88%) contrast(90%);
	animation-delay: 4.2s;
}

.custom-home-flow__image {
	display: block;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	filter: var(--custom-home-flow-filter);
	object-fit: contain;
	opacity: 0.88;
}

.custom-home-flow__list strong {
	color: var(--color-ink);
	font-size: clamp(0.82rem, 1.02vw, 0.94rem);
	line-height: 1.35;
	text-align: center;
	white-space: nowrap;
}

@keyframes custom-home-flow-pulse {
	0%,
	13% {
		border-color: rgba(58, 124, 165, 0.42);
		background: #eef7fb;
		box-shadow: 0 12px 26px rgba(58, 124, 165, 0.16);
		color: var(--color-blue);
	}

	14%,
	100% {
		border-color: var(--color-line);
		background: var(--color-white);
		box-shadow: 0 8px 18px rgba(16, 35, 51, 0.04);
		color: inherit;
	}
}

@media (prefers-reduced-motion: reduce) {
	.custom-home-flow__list li {
		animation: none;
	}
}
