.process-steps-container {
	position: relative;
	display: flex;
	min-height: 1200px;
	padding: 50px 40px;
	margin: 40px 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.process-road {
	position: relative;
	width: 200px;
	flex-shrink: 0;
	margin-right: 60px;
	background: linear-gradient(135deg, #b8c8d8 0%, #9db0c0 100%);
    border-right: 2px solid gray;
    border-left: 2px solid gray;
}

.road-line {
	position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, white 0%, #5a9fd4 100%);
    border-radius: 3px;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 8px rgba(125, 184, 232, 0.2);
}

.road-dashes {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: repeating-linear-gradient(to bottom, black 0px, black 12px, transparent 12px, transparent 24px);
	transform: translateX(-50%);
	z-index: 2;
}

.road-car {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 140px;
	height: 200px;
	z-index: 10;
	transition: top 0.2s cubic-bezier(0.4, 0, 0.2, 1), left 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: top, left;
}

.road-car img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
	transition: transform 0.3s ease;
}

.road-car:hover img {
	transform: scale(1.05);
}

.process-steps {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-right: 40px;
}

.process-step {
	position: relative;
	display: flex;
	gap: 30px;
	align-items: flex-start;
	padding: 30px;
	background: #fff;
	border: 2px solid #e8eef5;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.process-step:hover {
	transform: translateX(8px);
	box-shadow: 0 6px 25px rgba(125, 184, 232, 0.12);
	border-color: #a8c8e0;
	background: #f8fafc;
}

.process-step::before {
	content: '';
	position: absolute;
	left: -2px;
	top: 0;
	bottom: 0;
	width: 4px;
	/* background: linear-gradient(to bottom, #7db8e8, #5a9fd4); */
	border-radius: 2px 0 0 2px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.process-step:hover::before {
	opacity: 1;
}

.step-number {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #b8c8d8 0%, #9db0c0 100%);
	flex-shrink: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Убираем псевдоэлемент, который перекрывает текст */
.step-number::before {
	display: none;
}

.step-number-active {
	background: linear-gradient(135deg, #7db8e8 0%, #5a9fd4 100%);
	transform: scale(1.1);
	box-shadow: 0 5px 20px rgba(125, 184, 232, 0.3);
	color: #fff;
}

.step-content {
	flex: 1;
	padding-top: 4px;
}

.step-title {
	font-size: 24px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 12px;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.process-step:hover .step-title {
	color: #5a9fd4;
}

.step-text {
	font-size: 16px;
	line-height: 1.7;
	color: #5a6c7d;
	margin: 0;
}

.process-steps-title {
	font-size: 32px;
	font-weight: 700;
	color: #2c3e50;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	padding-bottom: 20px;
}

.process-steps-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, transparent, #7db8e8, transparent);
	border-radius: 2px;
}

@media (max-width: 1200px) {
	.process-steps-container {
		padding: 40px 30px;
	}
	
	.process-road {
		width: 180px;
		margin-right: 40px;
	}
	
	.road-car {
		width: 120px;
		height: 170px;
	}
}

@media (max-width: 1024px) {
	.process-steps-container {
		flex-direction: column;
		padding: 40px 30px;
		min-height: auto;
	}
	
	.process-road {
		display: none;
	}
	
	.process-steps {
		padding-right: 0;
		width: 100%;
		gap: 30px;
	}
	
	.process-step {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		padding: 25px;
	}
	
	.process-step:hover {
		transform: translateY(-3px);
	}
	
	.process-step::before {
		left: 0;
		top: -2px;
		right: 0;
		bottom: auto;
		width: auto;
		height: 4px;
		border-radius: 2px 2px 0 0;
	}
	
	.step-number {
		width: 56px;
		height: 56px;
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.process-steps-container {
		padding: 30px 20px;
		margin: 20px 0;
		border-radius: 10px;
	}
	
	.process-steps-title {
		font-size: 26px;
		margin-bottom: 30px;
		padding-bottom: 15px;
	}
	
	.process-steps {
		gap: 25px;
	}
	
	.process-step {
		padding: 22px;
		gap: 20px;
	}
	
	.step-number {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}
	
	.step-title {
		font-size: 20px;
		margin-bottom: 10px;
	}
	
	.step-text {
		font-size: 15px;
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
	.process-steps-container {
		padding: 25px 15px;
		margin: 15px 0;
		border-radius: 8px;
	}
	
	.process-steps-title {
		font-size: 22px;
		margin-bottom: 25px;
		padding-bottom: 12px;
	}
	
	.process-steps {
		gap: 20px;
	}
	
	.process-step {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 20px 15px;
		gap: 15px;
	}
	
	.process-step:hover {
		transform: translateY(-2px);
	}
	
	.process-step::before {
		left: 0;
		top: -2px;
		right: 0;
		bottom: auto;
		width: auto;
		height: 3px;
	}
	
	.step-number {
		width: 48px;
		height: 48px;
		font-size: 18px;
		margin-bottom: 0;
	}
	
	.step-title {
		font-size: 18px;
	}
	
	.step-text {
		font-size: 14px;
	}
}
