.business-banner {
	margin-top: 50px;
	display: flex;
	align-items: center;
	width: 100%;
	/* max-width: 1200px; */
	background: #fff;
	/* border-radius: 8px; */
	box-shadow: rgb(244, 141, 53) 0px 0px 4px -1px;
	overflow: hidden;
}

/* 左侧标题 */
.banner-title {
	flex: 1;
	padding: 20px 32px;
	color: #f55e3c;
	font-weight: 700;
	font-size: 20px;
	white-space: nowrap;
}

/* 步骤区域 */
.steps-container {
	flex: 2;
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 20px 0;
}

.step {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #333;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s ease;
}

.step:hover {
	color: #f55e3c;
}

.step-icon {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff5f2;
	border-radius: 50%;
	flex-shrink: 0;
}

.step-icon svg {
	width: 16px;
	height: 16px;
	fill: #f55e3c;
}

.step-number {
	font-weight: 700;
	color: #f55e3c;
	margin-right: 4px;
}

/* 右侧CTA按钮 */
.cta-section {
	flex-shrink: 0;
	background: linear-gradient(90deg, #f55e3c, #f98a3d);
	padding: 20px 32px;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.cta-section:hover {
	opacity: 0.9;
}

.cta-title {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 4px;
}

.cta-subtitle {
	font-size: 13px;
	opacity: 0.95;
}

/* 响应式适配 */
@media (max-width: 900px) {
	.business-banner {
		flex-direction: column;
		text-align: center;
	}

	.banner-title {
		padding: 16px;
	}

	.steps-container {
		flex-wrap: wrap;
		justify-content: left;
		gap: 24px;
		padding: 16px;
	}

	.cta-section {
		width: 100%;
		padding: 16px;
	}
}

/* 无障碍聚焦样式 */
.step:focus-visible,
.cta-section:focus-visible {
	outline: 2px solid #4d90fe;
	outline-offset: 2px;
}