.home-customer-journey {
	position: relative;
	overflow: hidden;
	padding: 34px 0 var(--section-space);
	background:
		linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #ffffff 100%),
		radial-gradient(circle at 12% 18%, rgba(6, 74, 167, 0.08), transparent 30%),
		radial-gradient(circle at 88% 8%, rgba(6, 74, 167, 0.06), transparent 28%);
}

.home-customer-journey__head {
	max-width: 680px;
	margin: 0 auto 24px;
	text-align: center;
}

.home-customer-journey__head .section-title {
	margin-bottom: 8px;
}

.home-customer-journey__head p {
	margin: 0;
	color: #53657c;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.45;
}

.home-customer-journey__slider {
	position: relative;
	overflow: hidden;
	padding-bottom: 4px;
	touch-action: pan-y;
	user-select: none;
	-webkit-user-select: none;
}

.home-customer-journey__slider.swiper-initialized {
	cursor: grab;
}

.home-customer-journey__slider.swiper-initialized:active {
	cursor: grabbing;
}

.home-customer-journey__slider:not(.swiper-initialized) .home-customer-journey__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.customer-journey-card {
	position: relative;
	overflow: hidden;
	min-width: 0;
	height: auto;
	border: 2px solid #c9dcf5;
	border-radius: 8px;
	background: #ffffff;
	text-align: center;
	transition: border-color 180ms ease;
}

.customer-journey-card:hover,
.customer-journey-card:focus-within {
	border-color: rgba(6, 74, 167, 0.52);
}

.customer-journey-card__photos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px;
	padding: 8px 8px 0;
}

.customer-journey-card figure {
	position: relative;
	overflow: hidden;
	min-width: 0;
	aspect-ratio: 4 / 5;
	margin: 0;
	border: 1px solid #e2edf8;
	border-radius: 7px;
	background: #edf5fc;
}

.customer-journey-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
}

.customer-journey-card figcaption {
	position: absolute;
	right: 8px;
	bottom: 7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	min-height: 22px;
	padding: 0 9px;
	border-radius: 999px;
	background: linear-gradient(180deg, #0758c6 0%, #003f9d 100%);
	box-shadow: 0 5px 12px rgba(0, 65, 154, 0.2);
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.customer-journey-card figure:nth-child(2) figcaption {
	right: auto;
	left: 8px;
}

.customer-journey-card__body {
	padding: 16px 20px 20px;
}

.customer-journey-card h3 {
	margin: 0 0 3px;
	color: #064aa7;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.2;
}

.customer-journey-card p {
	margin: 0 0 13px;
	color: #31425d;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}

.customer-journey-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 146px;
	min-height: 36px;
	padding: 0 18px;
	border: 2px solid #bfd4f1;
	border-radius: 999px;
	background: #ffffff;
	color: #064aa7;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.customer-journey-card__button:hover,
.customer-journey-card__button:focus {
	border-color: #0a5fc5;
	background: #eaf5ff;
	color: #003f9d;
	text-decoration: none;
	transform: translateY(-1px);
}

@media (max-width: 1100px) {
	.home-customer-journey__slider:not(.swiper-initialized) .home-customer-journey__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.home-customer-journey {
		padding: 28px 0 var(--section-space);
	}

	.home-customer-journey__head {
		margin-bottom: 20px;
	}

	.home-customer-journey__slider:not(.swiper-initialized) .home-customer-journey__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

}
