/* CTA行动号召横幅 */
.cta-banner-section { background: linear-gradient(135deg, #FF3366 0%, #FF6B8B 50%, #FF8FA3 100%); padding: 70px 24px; text-align: center; margin-top: 40px; }
.cta-banner-content { max-width: 700px; margin: 0 auto 48px; }
.cta-banner-text { font-family: var(--brutal-font-serif); font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: #FFFFFF; margin: 0 0 28px; line-height: 1.35; text-shadow: 0 2px 4px rgba(0,0,0,0.15); }
.cta-banner-btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 18px 44px; background: #0A0A0A; color: #FFFFFF;
	border: 2px solid #0A0A0A; font-family: var(--brutal-font-sans);
	font-weight: 800; font-size: 17px; text-decoration: none;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
	transition: all 0.3s ease; box-shadow: 6px 6px 0 rgba(10,10,10,0.25);
}
.cta-banner-btn:hover {
	background: #FFFFFF; color: #FF3366; border-color: #FFFFFF;
	transform: translate(-3px, -3px); box-shadow: 8px 8px 0 rgba(255,255,255,0.35);
}
.cta-steps-bar { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 700px; margin: 0 auto; }
.cta-step-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cta-step-icon {
	width: 44px; height: 44px; background: #0A0A0A; color: #FFFFFF;
	border: 2px solid #0A0A0A; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--brutal-font-mono); font-weight: 800; font-size: 16px;
}
.cta-step-item span:last-child { font-family: var(--brutal-font-sans); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.95); }
.cta-step-line { width: 60px; height: 2px; background: rgba(255,255,255,0.4); margin: 0 16px; margin-bottom: 28px; }

@media(max-width:768px){.cta-steps-bar{flex-wrap:wrap;gap:16px}.cta-step-line{display:none}}
