/**
 * 账帮帮财税服务主题 - 现代化服务卡片组件样式
 *
 * 精美的服务卡片网格布局，支持多种风格和列数配置
 * 特性：渐变图标、悬停动画、特性列表、响应式设计
 *
 * @package Zhangbangbang
 * @since 1.1.0
 */

/* ==========================================================================
   Service Cards Section - 服务卡片区块
   ========================================================================== */
.zbb-service-cards-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.zbb-service-cards-section .zbb-section-header {
	text-align: center;
	margin-bottom: 50px;
}

.zbb-service-cards-section .zbb-section-badge {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	color: var(--zbb-primary, #1a5fb4);
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	margin-bottom: 16px;
	border: 1px solid rgba(102, 126, 234, 0.2);
}

.zbb-service-cards-section .zbb-section-title {
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	font-weight: 700;
	color: var(--zbb-gray-900, #1a1a2e);
	margin-bottom: 12px;
	line-height: 1.3;
}

.zbb-service-cards-section .zbb-section-subtitle {
	font-size: 1rem;
	color: var(--zbb-gray-600, #6b7280);
	max-width: 550px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ==========================================================================
   Service Cards Grid - 卡片网格布局
   ========================================================================== */
.zbb-service-cards-grid {
	display: grid;
	gap: 24px;
}

/* 2列布局 */
.zbb-service-cards-col-2 {
	grid-template-columns: repeat(2, 1fr);
}

/* 3列布局 */
.zbb-service-cards-col-3 {
	grid-template-columns: repeat(3, 1fr);
}

/* 4列布局 */
.zbb-service-cards-col-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================================
   Service Card V2 - 现代化服务卡片
   ========================================================================== */
.zbb-service-card-v2 {
	position: relative;
	background: var(--zbb-white, #ffffff);
	border-radius: 20px;
	padding: 32px 28px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(0, 0, 0, 0.04);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zbb-service-card-v2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.zbb-service-card-v2:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
	border-color: transparent;
}

.zbb-service-card-v2:hover::before {
	transform: scaleX(1);
}

/* 背景装饰图案 */
.zbb-service-card-bg-pattern {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
	border-radius: 50%;
	pointer-events: none;
	transition: all 0.4s ease;
}

.zbb-service-card-v2:hover .zbb-service-card-bg-pattern {
	transform: scale(1.2);
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.06) 0%, rgba(118, 75, 162, 0.06) 100%);
}

/* 卡片标签 */
.zbb-service-card-tag {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 4px 12px;
	background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
	color: var(--zbb-white, #ffffff);
	font-size: 11px;
	font-weight: 600;
	border-radius: 20px;
	z-index: 2;
}

/* ==========================================================================
   Card Header - 卡片头部
   ========================================================================== */
.zbb-service-card-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}

/* 图标样式 */
.zbb-service-card-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	border-radius: 16px;
	font-size: 26px;
	color: var(--zbb-primary, #1a5fb4);
	transition: all 0.4s ease;
}

.zbb-service-card-v2:hover .zbb-service-card-icon {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: var(--zbb-white, #ffffff);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* 图标颜色变体 */
.zbb-service-card-icon.zbb-icon-blue {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
	color: #3b82f6;
}

.zbb-service-card-v2:hover .zbb-service-card-icon.zbb-icon-blue {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: var(--zbb-white, #ffffff);
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.zbb-service-card-icon.zbb-icon-green {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
	color: #22c55e;
}

.zbb-service-card-v2:hover .zbb-service-card-icon.zbb-icon-green {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: var(--zbb-white, #ffffff);
	box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.zbb-service-card-icon.zbb-icon-orange {
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
	color: #f97316;
}

.zbb-service-card-v2:hover .zbb-service-card-icon.zbb-icon-orange {
	background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
	color: var(--zbb-white, #ffffff);
	box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.zbb-service-card-icon.zbb-icon-purple {
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
	color: #a855f7;
}

.zbb-service-card-v2:hover .zbb-service-card-icon.zbb-icon-purple {
	background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
	color: var(--zbb-white, #ffffff);
	box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

/* 标题区域 */
.zbb-service-card-title-wrap {
	flex: 1;
	min-width: 0;
}

.zbb-service-card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--zbb-gray-900, #1a1a2e);
	margin: 0 0 8px;
	line-height: 1.3;
}

.zbb-service-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.zbb-service-card-title a:hover {
	color: var(--zbb-primary, #1a5fb4);
}

.zbb-service-card-desc {
	font-size: 14px;
	color: var(--zbb-gray-600, #6b7280);
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   Card Features - 特性列表
   ========================================================================== */
.zbb-service-card-features {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	flex: 1;
	position: relative;
	z-index: 1;
}

.zbb-service-card-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.zbb-service-card-features li:last-child {
	border-bottom: none;
}

.zbb-service-card-v2:hover .zbb-service-card-features li {
	border-color: rgba(102, 126, 234, 0.1);
}

.zbb-feature-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(34, 197, 94, 0.15) 100%);
	border-radius: 50%;
	color: #22c55e;
	font-size: 10px;
	transition: all 0.3s ease;
}

.zbb-service-card-v2:hover .zbb-feature-check {
	background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
	color: var(--zbb-white, #ffffff);
	transform: scale(1.1);
}

.zbb-feature-text {
	font-size: 14px;
	color: var(--zbb-gray-700, #374151);
	line-height: 1.4;
}

/* ==========================================================================
   Card Footer - 卡片底部
   ========================================================================== */
.zbb-service-card-footer {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.04);
	position: relative;
	z-index: 1;
}

.zbb-service-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--zbb-primary, #1a5fb4);
	text-decoration: none;
	transition: all 0.3s ease;
}

.zbb-service-card-link i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.zbb-service-card-link:hover {
	color: #764ba2;
}

.zbb-service-card-link:hover i {
	transform: translateX(4px);
}

/* ==========================================================================
   Featured Card - 特色卡片（大尺寸）
   ========================================================================== */
.zbb-service-card-featured {
	grid-column: span 2;
	padding: 40px 36px;
}

.zbb-service-card-featured .zbb-service-card-header {
	gap: 24px;
}

.zbb-service-card-featured .zbb-service-card-icon {
	width: 80px;
	height: 80px;
	font-size: 32px;
	border-radius: 20px;
}

.zbb-service-card-featured .zbb-service-card-title {
	font-size: 1.4rem;
}

.zbb-service-card-featured .zbb-service-card-desc {
	font-size: 15px;
}

.zbb-service-card-featured .zbb-service-card-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 24px;
}

.zbb-service-card-featured .zbb-service-card-features li {
	padding: 12px 0;
}

/* ==========================================================================
   Style Variants - 风格变体
   ========================================================================== */

/* Minimal 风格 */
.zbb-service-cards-minimal .zbb-service-card-v2 {
	background: transparent;
	border: 1px solid var(--zbb-gray-200, #e5e7eb);
	box-shadow: none;
}

.zbb-service-cards-minimal .zbb-service-card-v2:hover {
	background: var(--zbb-white, #ffffff);
	border-color: var(--zbb-primary, #1a5fb4);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.zbb-service-cards-minimal .zbb-service-card-bg-pattern {
	display: none;
}

/* Gradient 风格 */
.zbb-service-cards-gradient .zbb-service-card-v2 {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.zbb-service-cards-gradient .zbb-service-card-v2:hover {
	background: linear-gradient(135deg, #ffffff 0%, rgba(102, 126, 234, 0.05) 100%);
}

/* ==========================================================================
   Section Footer - 区块底部
   ========================================================================== */
.zbb-service-cards-section .zbb-section-footer {
	text-align: center;
	margin-top: 50px;
}

/* ==========================================================================
   Responsive Design - 响应式设计
   ========================================================================== */
@media (max-width: 1200px) {
	.zbb-service-cards-col-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.zbb-service-cards-section {
		padding: 60px 0;
	}

	.zbb-service-cards-col-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.zbb-service-card-featured {
		grid-column: span 2;
	}

	.zbb-service-card-featured .zbb-service-card-features {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.zbb-service-cards-section {
		padding: 50px 0;
	}

	.zbb-service-cards-section .zbb-section-header {
		margin-bottom: 36px;
	}

	.zbb-service-cards-grid {
		gap: 20px;
	}

	.zbb-service-cards-col-2,
	.zbb-service-cards-col-3,
	.zbb-service-cards-col-4 {
		grid-template-columns: 1fr;
	}

	.zbb-service-card-v2 {
		padding: 28px 24px;
	}

	.zbb-service-card-featured {
		grid-column: span 1;
		padding: 28px 24px;
	}

	.zbb-service-card-featured .zbb-service-card-icon {
		width: 64px;
		height: 64px;
		font-size: 26px;
	}

	.zbb-service-card-header {
		flex-direction: column;
		gap: 16px;
	}

	.zbb-service-card-icon {
		width: 56px;
		height: 56px;
		font-size: 24px;
		border-radius: 14px;
	}
}

@media (max-width: 480px) {
	.zbb-service-cards-section {
		padding: 40px 0;
	}

	.zbb-service-card-v2 {
		padding: 24px 20px;
		border-radius: 16px;
	}

	.zbb-service-card-title {
		font-size: 1.1rem;
	}

	.zbb-feature-text {
		font-size: 13px;
	}
}

/* ==========================================================================
   Animation Enhancements - 动画增强
   ========================================================================== */
@keyframes cardPulse {

	0%,
	100% {
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	}

	50% {
		box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
	}
}

.zbb-service-card-v2.is-highlighted {
	animation: cardPulse 2s ease-in-out infinite;
}

/* Stagger animation for grid items */
.zbb-service-cards-grid .zbb-service-card-v2:nth-child(1) {
	animation-delay: 0ms;
}

.zbb-service-cards-grid .zbb-service-card-v2:nth-child(2) {
	animation-delay: 100ms;
}

.zbb-service-cards-grid .zbb-service-card-v2:nth-child(3) {
	animation-delay: 200ms;
}

.zbb-service-cards-grid .zbb-service-card-v2:nth-child(4) {
	animation-delay: 300ms;
}

.zbb-service-cards-grid .zbb-service-card-v2:nth-child(5) {
	animation-delay: 400ms;
}

.zbb-service-cards-grid .zbb-service-card-v2:nth-child(6) {
	animation-delay: 500ms;
}

/**
 * 账帮帮财税服务主题 - 首页服务卡片 V3 样式
 *
 * 与工商服务页面卡片风格一致的现代化设计
 * 特性：左侧图标 + 右侧信息布局、特性列表、精美按钮
 *
 * @package Zhangbangbang
 * @since 1.2.0
 */

/* ==========================================================================
   Service Card V3 - 首页服务卡片（新风格）
   ========================================================================== */
.zbb-service-card-v3 {
	position: relative;
	background: var(--zbb-white, #ffffff);
	border-radius: 20px;
	padding: 32px 28px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(0, 0, 0, 0.04);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.zbb-service-card-v3::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.zbb-service-card-v3:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	border-color: transparent;
}

.zbb-service-card-v3:hover::before {
	transform: scaleX(1);
}

/* 背景装饰 */
.zbb-service-card-v3-bg {
	position: absolute;
	top: -60px;
	right: -60px;
	width: 160px;
	height: 160px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.04) 100%);
	border-radius: 50%;
	pointer-events: none;
	transition: all 0.4s ease;
}

.zbb-service-card-v3:hover .zbb-service-card-v3-bg {
	transform: scale(1.3);
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
}

/* ==========================================================================
   Card Header - 卡片头部（图标 + 信息）
   ========================================================================== */
.zbb-service-card-v3-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
	min-height: 130px;
}

/* 图标样式 */
.zbb-service-card-v3-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
	border-radius: 16px;
	font-size: 26px;
	color: #3b82f6;
	transition: all 0.4s ease;
}

.zbb-service-card-v3:hover .zbb-service-card-v3-icon {
	transform: scale(1.08);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

/* 图标颜色变体 */
.zbb-service-card-v3-icon.zbb-icon-blue {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.04) 100%);
	color: #3b82f6;
}

.zbb-service-card-v3:hover .zbb-service-card-v3-icon.zbb-icon-blue {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.zbb-service-card-v3-icon.zbb-icon-green {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.04) 100%);
	color: #22c55e;
}

.zbb-service-card-v3:hover .zbb-service-card-v3-icon.zbb-icon-green {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

.zbb-service-card-v3-icon.zbb-icon-orange {
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.04) 100%);
	color: #f97316;
}

.zbb-service-card-v3:hover .zbb-service-card-v3-icon.zbb-icon-orange {
	background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.zbb-service-card-v3-icon.zbb-icon-purple {
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(168, 85, 247, 0.04) 100%);
	color: #a855f7;
}

.zbb-service-card-v3:hover .zbb-service-card-v3-icon.zbb-icon-purple {
	background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
}

.zbb-service-card-v3-icon.zbb-icon-cyan {
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0.04) 100%);
	color: #06b6d4;
}

.zbb-service-card-v3:hover .zbb-service-card-v3-icon.zbb-icon-cyan {
	background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}

.zbb-service-card-v3-icon.zbb-icon-pink {
	background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(236, 72, 153, 0.04) 100%);
	color: #ec4899;
}

.zbb-service-card-v3:hover .zbb-service-card-v3-icon.zbb-icon-pink {
	background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}

/* 信息区域 */
.zbb-service-card-v3-info {
	flex: 1;
	min-width: 0;
}

.zbb-service-card-v3-info h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--zbb-gray-900, #1a1a2e);
	margin: 0 0 10px;
	line-height: 1.3;
}

.zbb-service-card-v3-info h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.zbb-service-card-v3-info h3 a:hover {
	color: #3b82f6;
}

.zbb-service-card-v3-info p {
	font-size: 14px;
	color: var(--zbb-gray-600, #6b7280);
	line-height: 1.7;
	margin: 0;
}

/* ==========================================================================
   Features List - 特性列表
   ========================================================================== */
.zbb-service-card-v3-features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	flex: 0 0 auto;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 16px;
	align-content: start;
	min-height: 76px;
}

.zbb-service-card-v3-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
	transition: all 0.3s ease;
}

.zbb-feature-dot {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.zbb-service-card-v3:hover .zbb-feature-dot {
	transform: scale(1.2);
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.zbb-service-card-v3-features li span:last-child {
	font-size: 14px;
	color: var(--zbb-gray-700, #374151);
	line-height: 1.4;
}

/* ==========================================================================
   Card Link - 了解详情按钮（精美设计）
   ========================================================================== */
.zbb-service-card-v3-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	color: #3b82f6;
	text-decoration: none;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
	margin-top: auto;
}

.zbb-service-card-v3-link span {
	position: relative;
}

.zbb-service-card-v3-link span::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
	border-radius: 1px;
	transition: width 0.3s ease;
}

.zbb-service-card-v3-link i {
	font-size: 12px;
	transition: transform 0.3s ease;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.zbb-service-card-v3-link:hover {
	color: #6366f1;
}

.zbb-service-card-v3-link:hover span::after {
	width: 100%;
}

.zbb-service-card-v3-link:hover i {
	transform: translateX(4px);
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	color: #ffffff;
}

/* ==========================================================================
   Card Footer - 卡片底部（价格 + 链接并排）
   ========================================================================== */
.zbb-service-card-v3-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* 价格标签 */
.zbb-service-card-v3-price {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: linear-gradient(135deg, rgba(245, 175, 25, 0.12) 0%, rgba(245, 175, 25, 0.04) 100%);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	color: #d97706;
	border: 1px solid rgba(245, 175, 25, 0.2);
	transition: all 0.3s ease;
}

.zbb-service-card-v3-price i {
	font-size: 11px;
	color: #f59e0b;
}

.zbb-service-card-v3:hover .zbb-service-card-v3-price {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: #ffffff;
	border-color: transparent;
	transform: scale(1.02);
}

.zbb-service-card-v3:hover .zbb-service-card-v3-price i {
	color: #ffffff;
}

/* ==========================================================================
   Services Grid - 服务网格布局
   ========================================================================== */
.zbb-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* ==========================================================================
   Responsive Design - 响应式设计
   ========================================================================== */
@media (max-width: 1200px) {
	.zbb-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.zbb-services-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.zbb-service-card-v3 {
		padding: 28px 24px;
	}

	.zbb-service-card-v3-header {
		gap: 16px;
	}

	.zbb-service-card-v3-icon {
		width: 56px;
		height: 56px;
		font-size: 24px;
		border-radius: 14px;
	}

	.zbb-service-card-v3-features {
		grid-template-columns: 1fr;
		gap: 6px;
	}
}

@media (max-width: 480px) {
	.zbb-service-card-v3 {
		padding: 24px 20px;
		border-radius: 16px;
	}

	.zbb-service-card-v3-info h3 {
		font-size: 1.125rem;
	}

	.zbb-service-card-v3-icon {
		width: 52px;
		height: 52px;
		font-size: 22px;
	}
}

/* ==========================================================================
   Animation - 动画效果
   ========================================================================== */
@keyframes cardFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.zbb-services-grid .zbb-service-card-v3 {
	animation: cardFadeIn 0.6s ease forwards;
}

.zbb-services-grid .zbb-service-card-v3:nth-child(1) {
	animation-delay: 0ms;
}

.zbb-services-grid .zbb-service-card-v3:nth-child(2) {
	animation-delay: 100ms;
}

.zbb-services-grid .zbb-service-card-v3:nth-child(3) {
	animation-delay: 200ms;
}

.zbb-services-grid .zbb-service-card-v3:nth-child(4) {
	animation-delay: 300ms;
}

.zbb-services-grid .zbb-service-card-v3:nth-child(5) {
	animation-delay: 400ms;
}

.zbb-services-grid .zbb-service-card-v3:nth-child(6) {
	animation-delay: 500ms;
}

/**
 * 账帮帮财税服务主题 - 服务流程与价格参考组件样式
 *
 * 现代化的服务流程时间线和价格卡片设计
 * 特性：渐变背景、动画效果、响应式布局
 *
 * @package Zhangbangbang
 * @since 1.1.0
 */

/* ==========================================================================
   Process Timeline V2 - 服务流程时间线
   ========================================================================== */
.zbb-process-section-v2 {
	padding: 80px 0;
}

.zbb-process-section-v2.zbb-bg-light {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.zbb-process-section-v2 .zbb-section-header {
	text-align: center;
	margin-bottom: 60px;
}

/* ==========================================================================
   Horizontal Timeline - 水平时间线
   ========================================================================== */
.zbb-process-timeline-v2 {
	position: relative;
	padding: 40px 0;
}

/* 连接线 */
.zbb-process-line {
	position: absolute;
	top: 80px;
	left: 10%;
	right: 10%;
	height: 3px;
	background: linear-gradient(90deg,
			rgba(102, 126, 234, 0.2) 0%,
			rgba(102, 126, 234, 0.5) 50%,
			rgba(102, 126, 234, 0.2) 100%);
	border-radius: 2px;
}

.zbb-process-line::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	border-radius: 2px;
	animation: lineGrow 2s ease-out forwards;
	animation-delay: 0.5s;
}

@keyframes lineGrow {
	to {
		width: 100%;
	}
}

/* 步骤容器 */
.zbb-process-steps {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

/* 单个步骤 */
.zbb-process-step-v2 {
	flex: 1;
	text-align: center;
	padding: 0 15px;
	max-width: 200px;
}

/* 步骤数字包装 */
.zbb-step-number-wrap {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
}

/* 步骤数字 */
.zbb-step-number {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--zbb-white, #ffffff);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
}

.zbb-process-step-v2:hover .zbb-step-number {
	transform: scale(0);
	opacity: 0;
}

/* 步骤图标（悬停显示） */
.zbb-step-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
	border-radius: 50%;
	font-size: 1.8rem;
	color: var(--zbb-white, #ffffff);
	box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
	transform: scale(0);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.zbb-process-step-v2:hover .zbb-step-icon {
	transform: scale(1);
	opacity: 1;
}

/* 步骤内容 */
.zbb-step-content {
	transition: transform 0.3s ease;
}

.zbb-process-step-v2:hover .zbb-step-content {
	transform: translateY(-5px);
}

.zbb-step-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--zbb-gray-900, #1a1a2e);
	margin: 0 0 8px;
}

.zbb-step-desc {
	font-size: 13px;
	color: var(--zbb-gray-600, #6b7280);
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   Cards Style - 卡片式布局
   ========================================================================== */
.zbb-process-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
	position: relative;
}

.zbb-process-card {
	position: relative;
	background: var(--zbb-white, #ffffff);
	border-radius: 20px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.zbb-process-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.zbb-process-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.zbb-process-card:hover::before {
	transform: scaleX(1);
}

.zbb-process-card-number {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 2.5rem;
	font-weight: 800;
	color: rgba(102, 126, 234, 0.1);
	line-height: 1;
	transition: color 0.3s ease;
}

.zbb-process-card:hover .zbb-process-card-number {
	color: rgba(102, 126, 234, 0.2);
}

.zbb-process-card-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	border-radius: 16px;
	margin: 0 auto 20px;
	font-size: 24px;
	color: var(--zbb-primary, #1a5fb4);
	transition: all 0.4s ease;
}

.zbb-process-card:hover .zbb-process-card-icon {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: var(--zbb-white, #ffffff);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.zbb-process-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--zbb-gray-900, #1a1a2e);
	margin: 0 0 10px;
}

.zbb-process-card-desc {
	font-size: 13px;
	color: var(--zbb-gray-600, #6b7280);
	line-height: 1.6;
	margin: 0;
}

/* 卡片间箭头 */
.zbb-process-card-arrow {
	position: absolute;
	right: -18px;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--zbb-white, #ffffff);
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	color: var(--zbb-primary, #1a5fb4);
	font-size: 14px;
	z-index: 2;
}

/* ==========================================================================
   Pricing Cards V2 - 价格卡片
   ========================================================================== */
.zbb-pricing-section-v2 {
	padding: 80px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.zbb-pricing-section-v2 .zbb-section-header {
	text-align: center;
	margin-bottom: 50px;
}

/* 价格卡片网格 */
.zbb-pricing-grid-v2 {
	display: grid;
	gap: 24px;
	align-items: stretch;
}

.zbb-pricing-cols-2 {
	grid-template-columns: repeat(2, 1fr);
	max-width: 800px;
	margin: 0 auto;
}

.zbb-pricing-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.zbb-pricing-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* 单个价格卡片 */
.zbb-pricing-card-v2 {
	position: relative;
	background: var(--zbb-white, #ffffff);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 2px solid transparent;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}

.zbb-pricing-card-v2:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* 推荐卡片样式 */
.zbb-pricing-card-v2.is-popular {
	border-color: var(--zbb-primary, #1a5fb4);
	transform: scale(1.05);
	z-index: 2;
	box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.zbb-pricing-card-v2.is-popular:hover {
	transform: scale(1.05) translateY(-8px);
}

/* 推荐徽章 */
.zbb-pricing-popular-badge {
	position: absolute;
	top: 16px;
	right: -32px;
	padding: 6px 40px;
	background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
	color: var(--zbb-white, #ffffff);
	font-size: 12px;
	font-weight: 600;
	transform: rotate(45deg);
	box-shadow: 0 4px 15px rgba(245, 175, 25, 0.4);
	display: flex;
	align-items: center;
	gap: 4px;
	z-index: 3;
}

.zbb-pricing-popular-badge i {
	font-size: 10px;
}

/* 价格卡片头部 */
.zbb-pricing-header-v2 {
	padding: 32px 28px 24px;
	text-align: center;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.zbb-pricing-card-v2.is-popular .zbb-pricing-header-v2 {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

/* 颜色变体 */
.zbb-pricing-blue .zbb-pricing-header-v2 {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.zbb-pricing-purple .zbb-pricing-header-v2 {
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.zbb-pricing-gold .zbb-pricing-header-v2 {
	background: linear-gradient(135deg, rgba(245, 175, 25, 0.08) 0%, rgba(241, 39, 17, 0.05) 100%);
}

.zbb-pricing-plan-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--zbb-gray-900, #1a1a2e);
	margin: 0 0 16px;
}

/* 价格显示 */
.zbb-pricing-price-wrap {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-bottom: 12px;
}

.zbb-pricing-currency {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--zbb-primary, #1a5fb4);
}

.zbb-pricing-amount {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--zbb-primary, #1a5fb4);
	line-height: 1;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zbb-pricing-unit {
	font-size: 1rem;
	font-weight: 500;
	color: var(--zbb-gray-500, #9ca3af);
}

.zbb-pricing-plan-desc {
	font-size: 14px;
	color: var(--zbb-gray-600, #6b7280);
	margin: 0;
}

/* 价格卡片主体 */
.zbb-pricing-body-v2 {
	padding: 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* 特性列表 */
.zbb-pricing-features-v2 {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	flex: 1;
}

.zbb-pricing-features-v2 li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.zbb-pricing-features-v2 li:last-child {
	border-bottom: none;
}

.zbb-pricing-feature-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(34, 197, 94, 0.15) 100%);
	border-radius: 50%;
	color: #22c55e;
	font-size: 10px;
}

.zbb-pricing-feature-text {
	font-size: 14px;
	color: var(--zbb-gray-700, #374151);
}

/* 咨询按钮 */
.zbb-pricing-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	color: var(--zbb-primary, #1a5fb4);
	background: transparent;
	border: 2px solid var(--zbb-primary, #1a5fb4);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.zbb-pricing-btn:hover {
	color: var(--zbb-white, #ffffff);
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.zbb-pricing-btn.zbb-btn-popular {
	color: var(--zbb-white, #ffffff);
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-color: transparent;
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.zbb-pricing-btn.zbb-btn-popular:hover {
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* 背景装饰 */
.zbb-pricing-bg-decoration {
	position: absolute;
	top: -80px;
	right: -80px;
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
	border-radius: 50%;
	pointer-events: none;
}

/* 价格说明 */
.zbb-pricing-note-v2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
	padding: 16px 24px;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
	border-radius: 12px;
	border: 1px dashed rgba(102, 126, 234, 0.3);
}

.zbb-pricing-note-v2 i {
	color: var(--zbb-primary, #1a5fb4);
	font-size: 18px;
}

.zbb-pricing-note-v2 span {
	font-size: 14px;
	color: var(--zbb-gray-600, #6b7280);
}

/* ==========================================================================
   Responsive Design - 响应式设计
   ========================================================================== */
@media (max-width: 1200px) {
	.zbb-pricing-cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {

	.zbb-process-section-v2,
	.zbb-pricing-section-v2 {
		padding: 60px 0;
	}

	/* 水平时间线转为卡片式 */
	.zbb-process-horizontal .zbb-process-line {
		display: none;
	}

	.zbb-process-horizontal .zbb-process-steps {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}

	.zbb-process-step-v2 {
		max-width: none;
		padding: 0;
	}

	.zbb-pricing-cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.zbb-pricing-card-v2.is-popular {
		transform: scale(1);
	}

	.zbb-pricing-card-v2.is-popular:hover {
		transform: translateY(-8px);
	}
}

@media (max-width: 768px) {

	.zbb-process-section-v2 .zbb-section-header,
	.zbb-pricing-section-v2 .zbb-section-header {
		margin-bottom: 40px;
	}

	.zbb-process-horizontal .zbb-process-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.zbb-process-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.zbb-process-card-arrow {
		display: none;
	}

	.zbb-pricing-cols-2,
	.zbb-pricing-cols-3,
	.zbb-pricing-cols-4 {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.zbb-pricing-amount {
		font-size: 2.8rem;
	}
}

@media (max-width: 576px) {

	.zbb-process-section-v2,
	.zbb-pricing-section-v2 {
		padding: 50px 0;
	}

	.zbb-process-horizontal .zbb-process-steps,
	.zbb-process-cards {
		grid-template-columns: 1fr;
	}

	.zbb-step-number-wrap {
		width: 64px;
		height: 64px;
	}

	.zbb-step-number,
	.zbb-step-icon {
		width: 64px;
		height: 64px;
		font-size: 1.2rem;
	}

	.zbb-step-icon {
		font-size: 1.5rem;
	}

	.zbb-process-card {
		padding: 28px 20px;
	}

	.zbb-pricing-header-v2 {
		padding: 24px 20px 20px;
	}

	.zbb-pricing-body-v2 {
		padding: 20px;
	}

	.zbb-pricing-note-v2 {
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}
}

/* ==========================================================================
   Animation Enhancements - 动画增强
   ========================================================================== */
@keyframes priceCountUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.zbb-pricing-card-v2[data-aos="fade-up"].aos-animate .zbb-pricing-amount {
	animation: priceCountUp 0.6s ease-out;
}

/* 步骤序号脉冲动画 */
@keyframes stepPulse {

	0%,
	100% {
		box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
	}

	50% {
		box-shadow: 0 10px 40px rgba(102, 126, 234, 0.6);
	}
}

.zbb-step-number:hover {
	animation: stepPulse 1.5s ease-in-out infinite;
}

/**
 * 账帮帮财税服务主题 - 现代化 FAQ 组件样式
 *
 * 精美的手风琴式 FAQ 设计
 * 特性：渐变装饰、平滑动画、玻璃态效果
 *
 * @package Zhangbangbang
 * @since 1.2.0
 */

/* ==========================================================================
   FAQ Section V2 - 基础样式
   ========================================================================== */
.zbb-faq-section-v2 {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

/* 背景变体 */
.zbb-faq-v2-bg-white {
	background: var(--zbb-white, #ffffff);
}

.zbb-faq-v2-bg-light {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.zbb-faq-v2-bg-gradient {
	background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf3 50%, #f0f4f8 100%);
}

/* ==========================================================================
   FAQ List Container
   ========================================================================== */
.zbb-faq-list-v2 {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ==========================================================================
   FAQ Item - 单个问答项
   ========================================================================== */
.zbb-faq-item-v2 {
	position: relative;
	background: var(--zbb-white, #ffffff);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.zbb-faq-item-v2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.zbb-faq-item-v2:hover {
	box-shadow: 0 12px 40px rgba(102, 126, 234, 0.12);
	border-color: rgba(102, 126, 234, 0.1);
	transform: translateX(4px);
}

.zbb-faq-item-v2:hover::before {
	opacity: 1;
}

.zbb-faq-item-v2.is-open {
	box-shadow: 0 16px 50px rgba(102, 126, 234, 0.15);
	border-color: rgba(102, 126, 234, 0.2);
}

.zbb-faq-item-v2.is-open::before {
	opacity: 1;
}

/* ==========================================================================
   FAQ Number Badge - 序号徽章（默认隐藏，可选显示）
   ========================================================================== */
.zbb-faq-number {
	display: none;
}

/* 如需显示序号，添加 .zbb-faq-v2-show-numbers 类 */
.zbb-faq-v2-show-numbers .zbb-faq-number {
	position: absolute;
	top: 20px;
	right: 80px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--zbb-primary, #1a5fb4);
	opacity: 0.6;
	transition: all 0.3s ease;
	pointer-events: none;
}

.zbb-faq-v2-show-numbers .zbb-faq-item-v2:hover .zbb-faq-number,
.zbb-faq-v2-show-numbers .zbb-faq-item-v2.is-open .zbb-faq-number {
	opacity: 1;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: var(--zbb-white, #ffffff);
}

/* ==========================================================================
   FAQ Icon Prefix - 问题图标前缀（替代序号）
   ========================================================================== */
.zbb-faq-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	border-radius: 12px;
	margin-right: 16px;
	font-size: 16px;
	color: var(--zbb-primary, #1a5fb4);
	transition: all 0.3s ease;
}

.zbb-faq-item-v2:hover .zbb-faq-icon,
.zbb-faq-item-v2.is-open .zbb-faq-icon {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: var(--zbb-white, #ffffff);
	transform: scale(1.05);
}

/* ==========================================================================
   FAQ Question Button - 问题按钮
   ========================================================================== */
.zbb-faq-question-v2 {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 24px 28px;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--zbb-gray-800, #1f2937);
	text-align: left;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	line-height: 1.5;
	gap: 16px;
}

.zbb-faq-question-v2:hover {
	color: var(--zbb-primary, #1a5fb4);
}

.zbb-faq-question-v2:focus {
	outline: none;
}

.zbb-faq-question-v2:focus-visible {
	outline: 2px solid var(--zbb-primary, #1a5fb4);
	outline-offset: -2px;
	border-radius: 16px;
}

.zbb-faq-question-text {
	flex: 1;
}

/* ==========================================================================
   FAQ Toggle Icon - 展开/收起图标（箭头样式）
   ========================================================================== */
.zbb-faq-toggle {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zbb-faq-toggle i {
	font-size: 14px;
	color: var(--zbb-gray-400, #9ca3af);
	transition: all 0.3s ease;
}

/* 使用单个箭头图标，通过旋转实现展开/收起 */
.zbb-faq-toggle .fa-chevron-down {
	transform: rotate(0deg);
}

.zbb-faq-item-v2.is-open .zbb-faq-toggle .fa-chevron-down {
	transform: rotate(180deg);
	color: var(--zbb-primary, #1a5fb4);
}

.zbb-faq-question-v2:hover .zbb-faq-toggle i {
	color: var(--zbb-primary, #1a5fb4);
}

/* ==========================================================================
   FAQ Answer Panel - 答案面板
   ========================================================================== */
.zbb-faq-answer-v2 {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zbb-faq-answer-v2[hidden] {
	display: block;
}

.zbb-faq-item-v2.is-open .zbb-faq-answer-v2 {
	max-height: 500px;
}

.zbb-faq-answer-content {
	padding: 0 28px 28px;
	padding-left: 28px;
	border-top: 1px solid rgba(102, 126, 234, 0.1);
	margin-top: 0;
	padding-top: 20px;
}

.zbb-faq-answer-content p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--zbb-gray-600, #6b7280);
}

/* ==========================================================================
   FAQ CTA Section - 行动号召
   ========================================================================== */
.zbb-faq-cta-v2 {
	margin-top: 50px;
}

.zbb-faq-cta-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 28px 40px;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.08) 100%);
	border-radius: 20px;
	border: 1px dashed rgba(102, 126, 234, 0.25);
	transition: all 0.3s ease;
}

.zbb-faq-cta-content:hover {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.12) 100%);
	border-color: rgba(102, 126, 234, 0.4);
}

.zbb-faq-cta-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 16px;
	font-size: 24px;
	color: var(--zbb-white, #ffffff);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.zbb-faq-cta-text {
	flex: 1;
}

.zbb-faq-cta-text p {
	margin: 0 0 4px;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--zbb-gray-800, #1f2937);
}

.zbb-faq-cta-text span {
	font-size: 0.9rem;
	color: var(--zbb-gray-500, #9ca3af);
}

/* Glow Button */
.zbb-btn-glow {
	position: relative;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	padding: 14px 28px;
	border-radius: 12px;
	font-weight: 600;
	color: var(--zbb-white, #ffffff);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
	transition: all 0.3s ease;
}

.zbb-btn-glow:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(102, 126, 234, 0.45);
	color: var(--zbb-white, #ffffff);
}

.zbb-btn-glow i {
	margin-right: 8px;
}

/* ==========================================================================
   Background Decoration - 背景装饰
   ========================================================================== */
.zbb-faq-decoration {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
}

.zbb-faq-decoration-circle {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.zbb-faq-decoration-1 {
	width: 400px;
	height: 400px;
	top: -100px;
	right: -100px;
}

.zbb-faq-decoration-2 {
	width: 300px;
	height: 300px;
	bottom: -80px;
	left: -80px;
}


/* ==========================================================================
   Style Variants - 样式变体
   ========================================================================== */

/* Minimal Style - 极简风格 */
.zbb-faq-v2-minimal .zbb-faq-item-v2 {
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--zbb-gray-200, #e5e7eb);
	border-radius: 0;
	box-shadow: none;
}

.zbb-faq-v2-minimal .zbb-faq-item-v2::before {
	display: none;
}

.zbb-faq-v2-minimal .zbb-faq-item-v2:hover {
	transform: none;
	box-shadow: none;
}

.zbb-faq-v2-minimal .zbb-faq-number {
	display: none;
}

.zbb-faq-v2-minimal .zbb-faq-question-v2 {
	padding: 20px 0;
	padding-right: 60px;
}

.zbb-faq-v2-minimal .zbb-faq-toggle {
	background: transparent;
	width: 32px;
	height: 32px;
}

.zbb-faq-v2-minimal .zbb-faq-item-v2.is-open .zbb-faq-toggle {
	background: transparent;
	box-shadow: none;
}

.zbb-faq-v2-minimal .zbb-faq-item-v2.is-open .zbb-faq-toggle i {
	color: var(--zbb-primary, #1a5fb4);
}

.zbb-faq-v2-minimal .zbb-faq-answer-content {
	padding: 0 0 20px;
	border-top: none;
}

/* Cards Style - 卡片风格 */
.zbb-faq-v2-cards .zbb-faq-list-v2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 1100px;
}

.zbb-faq-v2-cards .zbb-faq-item-v2 {
	border-radius: 20px;
	padding: 8px;
}

.zbb-faq-v2-cards .zbb-faq-item-v2::before {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
	border-radius: 20px 20px 0 0;
}

.zbb-faq-v2-cards .zbb-faq-item-v2:hover {
	transform: translateY(-4px);
}

.zbb-faq-v2-cards .zbb-faq-number {
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	font-size: 12px;
}

.zbb-faq-v2-cards .zbb-faq-question-v2 {
	padding: 20px;
	padding-right: 100px;
	font-size: 1rem;
}

.zbb-faq-v2-cards .zbb-faq-toggle {
	width: 36px;
	height: 36px;
	border-radius: 10px;
}

.zbb-faq-v2-cards .zbb-faq-answer-content {
	padding: 0 20px 20px;
}

/* ==========================================================================
   Responsive Design - 响应式设计
   ========================================================================== */
@media (max-width: 992px) {
	.zbb-faq-section-v2 {
		padding: 60px 0;
	}

	.zbb-faq-v2-cards .zbb-faq-list-v2 {
		grid-template-columns: 1fr;
	}

	.zbb-faq-cta-content {
		flex-direction: column;
		text-align: center;
		gap: 20px;
		padding: 24px;
	}

	.zbb-faq-cta-text {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.zbb-faq-section-v2 {
		padding: 50px 0;
	}

	.zbb-faq-list-v2 {
		gap: 12px;
	}

	.zbb-faq-item-v2 {
		border-radius: 12px;
	}

	.zbb-faq-number {
		display: none;
	}

	.zbb-faq-question-v2 {
		padding: 20px;
		font-size: 0.95rem;
	}

	.zbb-faq-icon {
		width: 36px;
		height: 36px;
		font-size: 14px;
		margin-right: 12px;
	}

	.zbb-faq-toggle {
		width: 36px;
		height: 36px;
		border-radius: 10px;
	}

	.zbb-faq-toggle i {
		font-size: 12px;
	}

	.zbb-faq-answer-content {
		padding: 0 20px 20px;
	}

	.zbb-faq-answer-content p {
		font-size: 0.9rem;
	}

	.zbb-faq-cta-icon {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}

	.zbb-faq-cta-text p {
		font-size: 1rem;
	}

	.zbb-btn-glow {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.zbb-faq-section-v2 {
		padding: 40px 0;
	}

	.zbb-faq-question-v2 {
		padding: 16px;
		font-size: 0.9rem;
	}

	.zbb-faq-icon {
		width: 32px;
		height: 32px;
		font-size: 13px;
		margin-right: 10px;
		border-radius: 8px;
	}

	.zbb-faq-toggle {
		width: 32px;
		height: 32px;
	}

	.zbb-faq-answer-content {
		padding: 0 16px 16px;
	}

	.zbb-faq-cta-content {
		padding: 20px 16px;
	}
}

/* ==========================================================================
   Animation Enhancements - 动画增强
   ========================================================================== */

/* Smooth scroll indicator */
.zbb-faq-item-v2.is-open .zbb-faq-answer-content {
	animation: fadeSlideIn 0.4s ease-out;
}

@keyframes fadeSlideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   Accessibility - 无障碍支持
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

	.zbb-faq-item-v2,
	.zbb-faq-toggle,
	.zbb-faq-toggle i,
	.zbb-faq-answer-v2,
	.zbb-faq-item-v2.is-open .zbb-faq-toggle {
		transition: none;
		animation: none;
	}
}

/* High contrast mode */
@media (prefers-contrast: high) {
	.zbb-faq-item-v2 {
		border: 2px solid var(--zbb-gray-800, #1f2937);
	}

	.zbb-faq-question-v2 {
		color: var(--zbb-gray-900, #111827);
	}

	.zbb-faq-answer-content p {
		color: var(--zbb-gray-800, #1f2937);
	}
}

/**
 * 账帮帮财税服务主题 - CTA 咨询区域组件样式
 *
 * 现代化的咨询行动召唤组件，支持多种布局和背景样式
 * 特性：玻璃态设计、渐变背景、动画效果、响应式布局
 *
 * @package Zhangbangbang
 * @since 1.2.0
 */

/* ==========================================================================
   Base Styles - 基础样式
   ========================================================================== */
.zbb-cta-contact {
	position: relative;
	padding: 60px 0;
	overflow: hidden;
}

/* ==========================================================================
   Background Variants - 背景变体
   ========================================================================== */

/* 渐变背景 */
.zbb-cta-contact--bg-gradient {
	background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7a 50%, #062654 100%);
	color: var(--zbb-white, #ffffff);
}

/* 深色背景 */
.zbb-cta-contact--bg-dark {
	background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
	color: var(--zbb-white, #ffffff);
}

/* 浅色背景 */
.zbb-cta-contact--bg-light {
	background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
	color: var(--zbb-gray-900, #1a1a2e);
}

/* 图片背景 */
.zbb-cta-contact--bg-image {
	background-image: var(--cta-bg-image);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--zbb-white, #ffffff);
}

.zbb-cta-contact--bg-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 95, 180, 0.9) 0%, rgba(13, 58, 122, 0.95) 100%);
	z-index: 0;
}

.zbb-cta-contact--bg-image>* {
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   Background Shapes - 背景装饰
   ========================================================================== */
.zbb-cta-contact__bg-shapes {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.zbb-cta-contact__shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
}

.zbb-cta-contact__shape--1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, #ffffff 0%, transparent 70%);
	top: -150px;
	right: -100px;
	animation: floatShape 20s ease-in-out infinite;
}

.zbb-cta-contact__shape--2 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, #ffd700 0%, transparent 70%);
	bottom: -100px;
	left: -50px;
	animation: floatShape 15s ease-in-out infinite reverse;
}

.zbb-cta-contact__shape--3 {
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, #ffffff 0%, transparent 70%);
	top: 50%;
	left: 30%;
	animation: floatShape 25s ease-in-out infinite;
}

@keyframes floatShape {

	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}

	25% {
		transform: translate(20px, -20px) rotate(5deg);
	}

	50% {
		transform: translate(-10px, 10px) rotate(-5deg);
	}

	75% {
		transform: translate(15px, 15px) rotate(3deg);
	}
}

/* ==========================================================================
   Split Layout - 分栏布局
   ========================================================================== */
.zbb-cta-contact__grid {
	display: grid;
	grid-template-columns: 5fr 6fr;
	gap: 32px;
	align-items: stretch;
}

/* Info Column */
.zbb-cta-contact__info {
	position: relative;
	z-index: 1;
}

.zbb-cta-contact__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.zbb-cta-contact--bg-light .zbb-cta-contact__badge {
	background: rgba(26, 95, 180, 0.1);
	color: var(--zbb-primary, #1a5fb4);
	border-color: rgba(26, 95, 180, 0.2);
}

.zbb-cta-contact__title {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 12px;
	color: inherit;
}

.zbb-cta-contact__subtitle {
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.9;
	margin: 0 0 24px;
	max-width: 420px;
}

.zbb-cta-contact--bg-light .zbb-cta-contact__subtitle {
	color: var(--zbb-gray-600, #6b7280);
}

/* Features List */
.zbb-cta-contact__features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.zbb-cta-contact__features li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
}

.zbb-cta-contact__features li i {
	color: #4ade80;
	font-size: 16px;
}

/* ==========================================================================
   Contact Methods - 联系方式
   ========================================================================== */
.zbb-cta-contact__methods {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.zbb-cta-contact__method {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
}

.zbb-cta-contact--bg-light .zbb-cta-contact__method {
	background: var(--zbb-white, #ffffff);
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.zbb-cta-contact__method:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateX(8px);
	text-decoration: none;
	color: inherit;
}

.zbb-cta-contact--bg-light .zbb-cta-contact__method:hover {
	background: var(--zbb-white, #ffffff);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border-color: var(--zbb-primary, #1a5fb4);
}

.zbb-cta-contact__method--phone:hover {
	cursor: pointer;
}

.zbb-cta-contact__method-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: var(--zbb-white, #ffffff);
	border-radius: 10px;
	color: var(--zbb-primary, #1a5fb4);
	font-size: 1.125rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.zbb-cta-contact__method:hover .zbb-cta-contact__method-icon {
	transform: scale(1.1);
}

.zbb-cta-contact__method-icon--wechat {
	color: #07c160;
}

.zbb-cta-contact__method-content {
	flex: 1;
	min-width: 0;
}

.zbb-cta-contact__method-label {
	display: block;
	font-size: 12px;
	opacity: 1;
	margin-bottom: 2px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.zbb-cta-contact--bg-light .zbb-cta-contact__method-label {
	color: var(--zbb-gray-500, #9ca3af);
}

.zbb-cta-contact__method-value {
	display: block;
	font-size: 0.9375rem;
	font-weight: 600;
}

.zbb-cta-contact--bg-light .zbb-cta-contact__method-value {
	color: var(--zbb-gray-900, #1a1a2e);
}

.zbb-cta-contact__method-arrow {
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s ease;
	font-size: 14px;
}

.zbb-cta-contact__method:hover .zbb-cta-contact__method-arrow {
	opacity: 1;
	transform: translateX(0);
}

/* QR Code */
.zbb-cta-contact__qr-trigger,
.zbb-cta-contact__qr-placeholder {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.zbb-cta-contact__method:hover .zbb-cta-contact__qr-trigger {
	transform: scale(1.1);
}

.zbb-cta-contact__qr-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	background: var(--zbb-white, #ffffff);
	padding: 4px;
}

.zbb-cta-contact__qr-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	color: #07c160;
	font-size: 1.5rem;
}

/* ==========================================================================
   Form Wrapper - 表单容器
   ========================================================================== */
.zbb-cta-contact__form-wrapper {
	position: relative;
	z-index: 1;
}

.zbb-cta-contact__form-inner {
	background: var(--zbb-white, #ffffff);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/* Card Style */
.zbb-cta-contact__form--card .zbb-cta-contact__form-inner {
	padding: 0;
}

.zbb-cta-contact__form--card .zbb-cta-contact__form-header {
	padding: 20px 24px 14px;
	background: linear-gradient(135deg, rgba(26, 95, 180, 0.03) 0%, rgba(102, 126, 234, 0.05) 100%);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	text-align: center;
}

.zbb-cta-contact__form--card .zbb-contact-form-wrapper {
	padding: 16px 24px 24px;
	box-shadow: none;
	border-radius: 0;
}

/* Glass Style */
.zbb-cta-contact__form--glass .zbb-cta-contact__form-inner {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Flat Style */
.zbb-cta-contact__form--flat .zbb-cta-contact__form-inner {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Form Header */
.zbb-cta-contact__form-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--zbb-gray-900, #1a1a2e);
	margin: 0 0 8px;
}

.zbb-cta-contact__form-title i {
	color: var(--zbb-primary, #1a5fb4);
}

.zbb-cta-contact__form-desc {
	font-size: 14px;
	color: var(--zbb-gray-500, #9ca3af);
	margin: 0;
}

/* Override contact form styles inside CTA */
.zbb-cta-contact__form-wrapper .zbb-contact-form-wrapper {
	background: transparent;
}

.zbb-cta-contact__form-wrapper .zbb-contact-form-header {
	display: none;
}

/* 紧凑表单样式 - CTA 区域专用 */
.zbb-cta-contact__form-wrapper .zbb-form-group {
	margin-bottom: 12px;
}

.zbb-cta-contact__form-wrapper .zbb-form-label {
	margin-bottom: 6px;
	font-size: 13px;
}

.zbb-cta-contact__form-wrapper .zbb-form-input,
.zbb-cta-contact__form-wrapper .zbb-form-select {
	padding: 10px 12px 10px 38px;
	font-size: 14px;
}

.zbb-cta-contact__form-wrapper .zbb-form-textarea {
	min-height: 80px;
	padding: 10px 12px 10px 38px;
	font-size: 14px;
}

.zbb-cta-contact__form-wrapper .zbb-input-icon {
	left: 12px;
	font-size: 14px;
}

.zbb-cta-contact__form-wrapper .zbb-form-submit {
	margin-top: 16px;
}

.zbb-cta-contact__form-wrapper .zbb-btn-submit {
	padding: 12px 24px;
	font-size: 15px;
}

.zbb-cta-contact__form-wrapper .zbb-form-privacy {
	margin-top: 12px;
	font-size: 12px;
}

.zbb-cta-contact__form-wrapper .zbb-form-meta {
	margin-top: 4px;
}

/* ==========================================================================
   Centered Layout - 居中布局
   ========================================================================== */
.zbb-cta-contact--centered .zbb-cta-contact__centered {
	max-width: 800px;
	margin: 0 auto;
}

.zbb-cta-contact__header {
	text-align: center;
	margin-bottom: 40px;
}

.zbb-cta-contact--centered .zbb-cta-contact__title {
	font-size: 2.25rem;
}

.zbb-cta-contact--centered .zbb-cta-contact__subtitle {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Methods Row */
.zbb-cta-contact__methods-row {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 48px;
}

.zbb-cta-contact__method-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 28px 36px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	min-width: 180px;
}

.zbb-cta-contact--bg-light .zbb-cta-contact__method-card {
	background: var(--zbb-white, #ffffff);
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.zbb-cta-contact__method-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.2);
	text-decoration: none;
	color: inherit;
}

.zbb-cta-contact--bg-light .zbb-cta-contact__method-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.zbb-cta-contact__method-card .zbb-cta-contact__method-icon {
	width: 56px;
	height: 56px;
	font-size: 1.5rem;
}

.zbb-cta-contact__method-card .zbb-cta-contact__method-label {
	font-size: 14px;
	font-weight: 600;
	opacity: 1;
	margin-bottom: 0;
}

.zbb-cta-contact__method-card .zbb-cta-contact__method-value {
	font-size: 15px;
	font-weight: 500;
	opacity: 0.8;
}

.zbb-cta-contact__method-card .zbb-cta-contact__qr-img {
	width: 80px;
	height: 80px;
	margin-top: 8px;
}

/* Centered Form */
.zbb-cta-contact__form-centered {
	max-width: 560px;
	margin: 0 auto;
}

.zbb-cta-contact__form-centered .zbb-contact-form-wrapper {
	background: var(--zbb-white, #ffffff);
	border-radius: 24px;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Minimal Layout - 简约布局
   ========================================================================== */
.zbb-cta-contact__minimal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.zbb-cta-contact__minimal-content {
	flex: 1;
}

.zbb-cta-contact--minimal .zbb-cta-contact__title {
	font-size: 2rem;
	margin-bottom: 8px;
}

.zbb-cta-contact--minimal .zbb-cta-contact__subtitle {
	margin-bottom: 0;
	font-size: 1rem;
}

.zbb-cta-contact__minimal-actions {
	display: flex;
	gap: 16px;
	flex-shrink: 0;
}

/* Button Styles for Minimal */
.zbb-cta-contact .zbb-btn-white {
	background: var(--zbb-white, #ffffff);
	color: var(--zbb-primary, #1a5fb4);
	border: none;
	font-weight: 600;
}

.zbb-cta-contact .zbb-btn-white:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.zbb-cta-contact .zbb-btn-outline-white {
	background: transparent;
	color: var(--zbb-white, #ffffff);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.zbb-cta-contact .zbb-btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--zbb-white, #ffffff);
}

/* ==========================================================================
   Responsive Design - 响应式设计
   ========================================================================== */
@media (max-width: 1200px) {
	.zbb-cta-contact__grid {
		gap: 40px;
	}

	.zbb-cta-contact__title {
		font-size: 2rem;
	}
}

@media (max-width: 992px) {
	.zbb-cta-contact {
		padding: 60px 0;
	}

	.zbb-cta-contact__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.zbb-cta-contact__info {
		text-align: center;
	}

	.zbb-cta-contact__subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.zbb-cta-contact__features {
		justify-content: center;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.zbb-cta-contact__methods {
		max-width: 480px;
		margin: 0 auto;
	}

	.zbb-cta-contact__methods-row {
		flex-direction: column;
		align-items: center;
	}

	.zbb-cta-contact__method-card {
		width: 100%;
		max-width: 300px;
	}

	.zbb-cta-contact__minimal {
		flex-direction: column;
		text-align: center;
	}

	.zbb-cta-contact__minimal-actions {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.zbb-cta-contact {
		padding: 50px 0;
	}

	.zbb-cta-contact__title {
		font-size: 1.75rem;
	}

	.zbb-cta-contact__subtitle {
		font-size: 1rem;
	}

	.zbb-cta-contact__features {
		grid-template-columns: 1fr;
	}

	.zbb-cta-contact__method {
		padding: 14px 16px;
	}

	.zbb-cta-contact__method-icon {
		width: 44px;
		height: 44px;
		font-size: 1.125rem;
	}

	.zbb-cta-contact__qr-trigger,
	.zbb-cta-contact__qr-placeholder {
		width: 56px;
		height: 56px;
	}

	.zbb-cta-contact__form--card .zbb-cta-contact__form-header {
		padding: 20px 24px 16px;
	}

	.zbb-cta-contact__form--card .zbb-contact-form-wrapper {
		padding: 20px 24px 24px;
	}

	.zbb-cta-contact__form-title {
		font-size: 1.25rem;
	}

	.zbb-cta-contact__shape--1 {
		width: 250px;
		height: 250px;
	}

	.zbb-cta-contact__shape--2 {
		width: 180px;
		height: 180px;
	}

	.zbb-cta-contact__shape--3 {
		display: none;
	}
}

@media (max-width: 480px) {
	.zbb-cta-contact {
		padding: 40px 0;
	}

	.zbb-cta-contact__title {
		font-size: 1.5rem;
	}

	.zbb-cta-contact__badge {
		font-size: 12px;
		padding: 6px 12px;
	}

	.zbb-cta-contact__method {
		flex-wrap: wrap;
	}

	.zbb-cta-contact__method-content {
		flex: 1 1 calc(100% - 80px);
	}

	.zbb-cta-contact__qr-trigger,
	.zbb-cta-contact__qr-placeholder {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
		max-width: 120px;
		margin: 12px auto 0;
	}

	.zbb-cta-contact__form-inner {
		border-radius: 16px;
	}

	.zbb-cta-contact__minimal-actions {
		width: 100%;
	}

	.zbb-cta-contact__minimal-actions .zbb-btn {
		flex: 1;
		justify-content: center;
	}
}

/* ==========================================================================
   Animation Enhancements - 动画增强
   ========================================================================== */
.zbb-cta-contact__method {
	animation: fadeInUp 0.5s ease-out backwards;
}

.zbb-cta-contact__method:nth-child(1) {
	animation-delay: 0.1s;
}

.zbb-cta-contact__method:nth-child(2) {
	animation-delay: 0.2s;
}

.zbb-cta-contact__method:nth-child(3) {
	animation-delay: 0.3s;
}

.zbb-cta-contact__method:nth-child(4) {
	animation-delay: 0.4s;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hover glow effect */
.zbb-cta-contact__form-inner {
	transition: box-shadow 0.4s ease;
}

.zbb-cta-contact__form-wrapper:hover .zbb-cta-contact__form-inner {
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
}

/**
 * 账帮帮财税服务主题 - 现代化导航样式
 * 
 * 设计理念：
 * - 深邃的深蓝黑色背景，传达专业与信任
 * - 金色点缀呼应品牌色彩
 * - 微妙的玻璃态效果增加现代感
 * - 精致的动画效果提升交互体验
 *
 * @package Zhangbangbang
 * @since 1.2.0
 */

/* ==========================================================================
   Modern Header - 现代化导航（非透明设计）
   ========================================================================== */

/* 主导航容器 - 深邃的深蓝黑色背景 */
.zbb-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	/* 使用更深沉的蓝黑色，与英雄区域的渐变形成层次 */
	background: linear-gradient(180deg,
			#0a0e27 0%,
			#0d1233 50%,
			#101640 100%);
	/* 底部金色渐变边框 - 呼应品牌金色 */
	border-bottom: 2px solid transparent;
	background-clip: padding-box;
	/* 移除外部阴影，只保留底部金色边框效果 */
	box-shadow: inset 0 -2px 0 0 rgba(245, 175, 25, 0.4);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 滚动状态 - 增强阴影和边框 */
.zbb-site-header.is-scrolled {
	background: linear-gradient(180deg,
			#080b1f 0%,
			#0a0e27 100%);
	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.2),
		inset 0 -2px 0 0 rgba(245, 175, 25, 0.6);
}

/* 顶部信息栏 */
.zbb-site-header .zbb-header-top {
	background: rgba(0, 0, 0, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* 主导航区域 */
.zbb-site-header .zbb-header-main {
	background: transparent;
	border-bottom: none;
	padding: 12px 0;
}

/* ==========================================================================
   Logo & Branding - 品牌标识
   ========================================================================== */

/* Logo 尺寸优化 - 确保完整显示 */
.zbb-site-header .zbb-site-logo img {
	height: 60px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.zbb-site-header .zbb-site-title a {
	color: #ffffff;
	font-weight: 700;
	letter-spacing: -0.5px;
	transition: all 0.3s ease;
}

.zbb-site-header .zbb-site-title a:hover {
	color: #f5d033;
	text-decoration: none;
}

.zbb-site-header .zbb-site-description {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
}

/* ==========================================================================
   Navigation Menu - 导航菜单
   ========================================================================== */

/* 导航链接基础样式 */
.zbb-site-header .zbb-primary-menu>li>a {
	position: relative;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	font-size: 15px;
	padding: 10px 18px;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

/* 悬停背景效果 */
.zbb-site-header .zbb-primary-menu>li>a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
			rgba(245, 175, 25, 0.15) 0%,
			rgba(245, 208, 51, 0.1) 100%);
	border-radius: 8px;
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.3s ease;
	z-index: -1;
}

/* 悬停状态 */
.zbb-site-header .zbb-primary-menu>li>a:hover,
.zbb-site-header .zbb-primary-menu>li.current-menu-item>a,
.zbb-site-header .zbb-primary-menu>li.current-menu-ancestor>a {
	color: #f5d033;
	background-color: transparent;
}

.zbb-site-header .zbb-primary-menu>li>a:hover::before,
.zbb-site-header .zbb-primary-menu>li.current-menu-item>a::before,
.zbb-site-header .zbb-primary-menu>li.current-menu-ancestor>a::before {
	opacity: 1;
	transform: scale(1);
}

/* 当前页面 - 金色填充按钮样式 */
.zbb-site-header .zbb-primary-menu>li.current-menu-item>a {
	background: linear-gradient(135deg, #f5af19 0%, #f5c842 100%);
	color: #0a0e27;
	border-radius: 8px;
	font-weight: 600;
}

.zbb-site-header .zbb-primary-menu>li.current-menu-item>a::before {
	display: none;
}

.zbb-site-header .zbb-primary-menu>li.current-menu-item>a::after {
	display: none;
}

/* 当前页面指示器 - 底部金色线条 */
.zbb-site-header .zbb-primary-menu>li>a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #f5af19 0%, #f5d033 100%);
	border-radius: 2px;
	transform: translateX(-50%);
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zbb-site-header .zbb-primary-menu>li>a:hover::after,
.zbb-site-header .zbb-primary-menu>li.current-menu-item>a::after {
	width: 60%;
}

/* ==========================================================================
   Dropdown Menu - 下拉菜单
   ========================================================================== */
.zbb-site-header .zbb-primary-menu .sub-menu {
	background: linear-gradient(180deg,
			#0d1233 0%,
			#101640 100%);
	border: 1px solid rgba(245, 175, 25, 0.15);
	border-radius: 12px;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.05);
	padding: 8px;
	min-width: 220px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.zbb-site-header .zbb-primary-menu .sub-menu a {
	color: rgba(255, 255, 255, 0.85);
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.25s ease;
}

.zbb-site-header .zbb-primary-menu .sub-menu a:hover {
	color: #f5d033;
	background: rgba(245, 175, 25, 0.1);
}

/* 下拉箭头 */
.zbb-site-header .zbb-dropdown-arrow {
	color: rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease;
}

.zbb-site-header .zbb-primary-menu>li:hover .zbb-dropdown-arrow {
	color: #f5d033;
}

/* ==========================================================================
   Header CTA Button - 行动按钮
   ========================================================================== */
.zbb-site-header .zbb-header-cta .zbb-btn {
	background: linear-gradient(135deg,
			#f5af19 0%,
			#f5c842 50%,
			#f5af19 100%);
	background-size: 200% 200%;
	border: none;
	border-radius: 50px;
	padding: 12px 28px;
	font-weight: 600;
	font-size: 14px;
	color: #0a0e27;
	box-shadow:
		0 4px 15px rgba(245, 175, 25, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: ctaGradientShift 4s ease infinite;
}

@keyframes ctaGradientShift {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.zbb-site-header .zbb-header-cta .zbb-btn:hover {
	transform: translateY(-2px);
	box-shadow:
		0 8px 25px rgba(245, 175, 25, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	color: #0a0e27;
}

.zbb-site-header .zbb-header-cta .zbb-btn:active {
	transform: translateY(0);
}

.zbb-site-header .zbb-header-cta .zbb-btn i {
	color: #0a0e27;
}

/* ==========================================================================
   Mobile Menu Toggle - 移动端菜单按钮
   ========================================================================== */
.zbb-site-header .zbb-menu-bar {
	background-color: #ffffff;
	transition: all 0.3s ease;
}

.zbb-site-header .zbb-menu-toggle:hover .zbb-menu-bar {
	background-color: #f5d033;
}

/* ==========================================================================
   Header Top Bar - 顶部信息栏
   ========================================================================== */
.zbb-site-header .zbb-header-contact .zbb-contact-item {
	color: rgba(255, 255, 255, 0.7);
}

.zbb-site-header .zbb-header-contact .zbb-contact-item i {
	color: #f5af19;
}

.zbb-site-header .zbb-header-contact .zbb-contact-item a {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.3s ease;
}

.zbb-site-header .zbb-header-contact .zbb-contact-item a:hover {
	color: #f5d033;
	text-decoration: none;
}

/* 社交链接 */
.zbb-site-header .zbb-social-link {
	color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.zbb-site-header .zbb-social-link:hover {
	color: #ffffff;
	background: #07c160;
	border-color: #07c160;
}

/* ==========================================================================
   Subtle Animations - 微妙动画效果
   ========================================================================== */

/* 导航微光效果 */
.zbb-site-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(245, 175, 25, 0.03) 50%,
			transparent 100%);
	animation: headerShimmer 12s ease-in-out infinite;
	pointer-events: none;
}

@keyframes headerShimmer {

	0%,
	100% {
		left: -100%;
	}

	50% {
		left: 150%;
	}
}

/* ==========================================================================
   Hero Section Adjustment - 英雄区域调整（与导航呼应）
   ========================================================================== */

/* 英雄区域顶部渐变过渡 - 与导航无缝衔接 */
.zbb-hero-enhanced {
	background: linear-gradient(180deg,
			#101640 0%,
			/* 与导航底部颜色完全一致 */
			#101640 5%,
			/* 保持一段纯色，避免阴影效果 */
			#1a237e 40%,
			#283593 80%,
			#303f9f 100%);
}

/* 英雄区域顶部过渡层 - 已移除避免产生阴影效果 */
/* .zbb-hero-enhanced::after 已禁用 */

/* ==========================================================================
   Responsive Design - 响应式设计
   ========================================================================== */
@media (max-width: 992px) {

	/* 移动端导航 */
	.zbb-site-header .zbb-primary-menu>li>a::after {
		display: none;
	}

	.zbb-site-header .zbb-header-main {
		padding: 10px 0;
	}

	/* 移动端 Logo 尺寸 - 确保完整显示 */
	.zbb-site-header .zbb-site-logo img {
		height: 56px;
	}
}

@media (max-width: 768px) {
	.zbb-site-header {
		box-shadow: inset 0 -1px 0 0 rgba(245, 175, 25, 0.3);
	}

	/* 小屏幕 Logo 适当增大以确保清晰 */
	.zbb-site-header .zbb-site-logo img {
		height: 52px;
	}
}

/* ==========================================================================
   Print Styles - 打印样式
   ========================================================================== */
@media print {
	.zbb-site-header {
		position: static;
		background: #ffffff;
		box-shadow: none;
		border-bottom: 1px solid #cccccc;
	}

	.zbb-site-header .zbb-site-title a,
	.zbb-site-header .zbb-primary-menu>li>a {
		color: #000000;
	}
}

/* Card Alignment Fix - 2024-12-27 */
.zbb-service-card-v3-header {
	height: 160px !important;
	flex-shrink: 0
}

.zbb-service-card-v3-info p {
	display: -webkit-box !important;
	-webkit-line-clamp: 4 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	height: 95px !important
}

.zbb-service-card-v3-features {
	height: 84px !important;
	overflow: hidden !important
}

@media(max-width:768px) {
	.zbb-service-card-v3-header {
		height: auto !important
	}

	.zbb-service-card-v3-info p {
		height: auto !important;
		-webkit-line-clamp: unset !important
	}

	.zbb-service-card-v3-features {
		height: auto !important
	}
}

/* ==========================================================================
   Why Choose Us - 信任背书模块 (Added 2024-12-27)
   ========================================================================== */
.zbb-why-choose-us {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.zbb-why-choose-us-light {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.zbb-why-choose-us-gradient {
	background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7a 100%);
	color: #ffffff;
}

.zbb-why-choose-us-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 50px;
}

/* 优势卡片 */
.zbb-advantage-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 28px 24px;
	background: var(--zbb-white, #ffffff);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
}

.zbb-advantage-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.zbb-advantage-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	font-size: 22px;
	transition: all 0.3s ease;
}

/* 图标颜色 */
.zbb-advantage-icon.zbb-icon-gold {
	background: linear-gradient(135deg, rgba(245, 175, 25, 0.12) 0%, rgba(245, 175, 25, 0.04) 100%);
	color: #f59e0b;
}

.zbb-advantage-icon.zbb-icon-blue {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.04) 100%);
	color: #3b82f6;
}

.zbb-advantage-icon.zbb-icon-green {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.04) 100%);
	color: #22c55e;
}

.zbb-advantage-icon.zbb-icon-orange {
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.04) 100%);
	color: #f97316;
}

.zbb-advantage-icon.zbb-icon-purple {
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(168, 85, 247, 0.04) 100%);
	color: #a855f7;
}

.zbb-advantage-icon.zbb-icon-cyan {
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0.04) 100%);
	color: #06b6d4;
}

.zbb-advantage-card:hover .zbb-advantage-icon {
	transform: scale(1.1);
}

.zbb-advantage-content h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--zbb-gray-900, #1a1a2e);
	margin: 0 0 8px;
}

.zbb-advantage-content p {
	font-size: 14px;
	color: var(--zbb-gray-600, #6b7280);
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   Testimonials - 客户评价模块
   ========================================================================== */
.zbb-testimonials {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.zbb-testimonials-light {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.zbb-testimonials-gradient {
	background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7a 50%, #062654 100%);
	color: #ffffff;
}

.zbb-testimonials-gradient .zbb-section-title {
	color: #ffffff;
}

.zbb-testimonials-gradient .zbb-section-subtitle {
	color: rgba(255, 255, 255, 0.8);
}

/* Badge 样式 */
.zbb-badge-light {
	background: rgba(255, 255, 255, 0.15) !important;
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.2) !important;
}

.zbb-title-light {
	color: #ffffff !important;
}

.zbb-subtitle-light {
	color: rgba(255, 255, 255, 0.8) !important;
}

/* 评价轮播 */
.zbb-testimonials-carousel {
	max-width: 700px;
	margin: 0 auto 50px;
	position: relative;
}

.zbb-testimonials-track {
	position: relative;
	min-height: 220px;
}

.zbb-testimonial-card {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: var(--zbb-white, #ffffff);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.5s ease;
	pointer-events: none;
}

.zbb-testimonial-card.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.zbb-testimonial-rating {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
}

.zbb-testimonial-rating i {
	color: #f59e0b;
	font-size: 16px;
}

.zbb-testimonial-content p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--zbb-gray-700, #374151);
	margin: 0;
	font-style: italic;
}

.zbb-testimonial-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.zbb-testimonial-author {
	font-weight: 700;
	font-style: normal;
	color: var(--zbb-gray-900, #1a1a2e);
	font-size: 15px;
}

.zbb-testimonial-service {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	color: var(--zbb-primary, #1a5fb4);
}

.zbb-testimonial-service i {
	font-size: 10px;
}

/* 轮播导航点 */
.zbb-testimonials-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
	position: relative;
	z-index: 10;
}

.zbb-testimonial-dot {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.zbb-testimonial-dot:hover {
	background: rgba(255, 255, 255, 0.5);
}

.zbb-testimonial-dot.active {
	background: #ffffff;
	border-color: #ffffff;
	transform: scale(1.2);
}

/* 统计数据网格 */
.zbb-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.zbb-stat-item {
	text-align: center;
	padding: 24px 16px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

.zbb-stat-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-4px);
}

.zbb-stat-icon {
	margin-bottom: 12px;
}

.zbb-stat-icon i {
	font-size: 28px;
	color: #f59e0b;
}

.zbb-stat-value {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 4px;
	line-height: 1.2;
}

.zbb-stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

/* ==========================================================================
   Why Choose Us & Testimonials - 响应式调整
   ========================================================================== */
@media (max-width: 1200px) {
	.zbb-why-choose-us-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {

	.zbb-why-choose-us,
	.zbb-testimonials {
		padding: 60px 0;
	}

	.zbb-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {

	.zbb-why-choose-us,
	.zbb-testimonials {
		padding: 50px 0;
	}

	.zbb-why-choose-us-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.zbb-advantage-card {
		padding: 24px 20px;
	}

	.zbb-advantage-icon {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}

	.zbb-testimonials-carousel {
		margin-bottom: 36px;
	}

	.zbb-testimonial-card {
		padding: 24px 20px;
	}

	.zbb-stats-grid {
		gap: 16px;
	}

	.zbb-stat-item {
		padding: 20px 12px;
	}

	.zbb-stat-value {
		font-size: 1.5rem;
	}

	.zbb-service-card-v3-footer {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.zbb-service-card-v3-price {
		justify-content: center;
	}

	.zbb-service-card-v3-link {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.zbb-advantage-content h3 {
		font-size: 1rem;
	}

	.zbb-testimonial-content p {
		font-size: 0.9375rem;
	}

	.zbb-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.zbb-stat-icon i {
		font-size: 24px;
	}

	.zbb-stat-value {
		font-size: 1.25rem;
	}

	.zbb-stat-label {
		font-size: 12px;
	}
}