/* 省钱兄官网 - 全局浅色设计系统 */

:root {
	--sqx-primary: #ff6400;
	--sqx-primary-hover: #e85500;
	--sqx-primary-light: #fff4ed;
	--sqx-primary-soft: rgba(255, 100, 0, 0.1);
	--sqx-bg: #ffffff;
	--sqx-bg-secondary: #f7f8fa;
	--sqx-bg-tertiary: #eef0f4;
	--sqx-bg-card: #ffffff;
	--sqx-text: #111827;
	--sqx-text-heading: #0f172a;
	--sqx-text-secondary: #475569;
	--sqx-text-muted: #64748b;
	--sqx-text-light: #94a3b8;
	--sqx-border: #e2e8f0;
	--sqx-border-light: #f1f5f9;
	--sqx-nav-bg-scroll: rgba(255, 255, 255, 0.97);
	--sqx-nav-text: #ffffff;
	--sqx-nav-text-scroll: #374151;
	--sqx-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
	--sqx-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
	--sqx-shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);
	--sqx-radius: 12px;
	--sqx-radius-sm: 8px;
	--sqx-section-pad: 80px;
}

body {
	background: var(--sqx-bg);
	color: var(--sqx-text);
	-webkit-font-smoothing: antialiased;
}

/* 导航布局：源码购买与语言切换分离 */
.sqx-nav-wrap {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	min-height: 44px;
}

.sqx-nav-wrap .navbar-brand {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	line-height: 1 !important;
	height: 34px;
	padding: 0 !important;
	margin: 0 !important;
	float: none !important;
}

.sqx-nav-wrap .navbar-brand > img {
	display: block;
	height: 34px;
	width: auto;
	max-width: 130px;
	object-fit: contain;
	vertical-align: top;
}

.sqx-nav-wrap .navbar-collapse {
	flex: 1 1 auto;
	min-width: 0;
	float: none !important;
}

@media (min-width: 768px) {
	.sqx-nav-wrap .navbar-collapse {
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
	}

	.sqx-nav-wrap .navbar-collapse .navbar-nav {
		display: flex;
		align-items: center;
		float: none !important;
		margin: 0 !important;
	}

	.sqx-nav-wrap .navbar-nav > li {
		float: none !important;
		display: flex;
		align-items: center;
	}

	.sqx-nav-wrap .navbar-nav > li > a {
		display: inline-flex;
		align-items: center;
		line-height: 1.4;
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
}

.header .navbar .sqx-nav-wrap {
	align-items: center;
}

.header .navbar {
	padding-top: 22px !important;
	padding-bottom: 22px !important;
}

body.fixed-header .scrolling-header .navbar {
	padding-top: 14px !important;
	padding-bottom: 14px !important;
}

.sqx-nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: 20px;
	flex-shrink: 0;
}

.sqx-nav-buy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	border-radius: 8px;
	background: var(--sqx-primary);
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
	transition: all 0.2s ease;
	border: 1px solid var(--sqx-primary);
}

.sqx-nav-buy-btn:hover {
	background: var(--sqx-primary-hover);
	border-color: var(--sqx-primary-hover);
	color: #fff !important;
	transform: translateY(-1px);
}

body.fixed-header .sqx-nav-buy-btn {
	background: var(--sqx-primary);
	border-color: var(--sqx-primary);
}

.sqx-nav-buy-btn-mobile {
	margin-bottom: 10px;
	display: inline-flex;
}

.sqx-lang-sep {
	opacity: 0.5;
	margin: 0 2px;
}

.navbar-tools {
	float: none;
	margin: 0;
}

.sqx-nav-wrap .navbar-tools {
	margin-top: 0;
	margin-right: 0;
}

.sqx-tool-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s ease;
}

body.fixed-header .sqx-tool-btn {
	border-color: var(--sqx-border);
	background: var(--sqx-bg-secondary);
	color: var(--sqx-text);
}

.sqx-tool-btn:hover {
	background: var(--sqx-primary);
	border-color: var(--sqx-primary);
	color: #fff;
}

.sqx-lang-switch .sqx-lang-active {
	font-weight: 700;
	color: var(--sqx-primary);
}

body.fixed-header .sqx-lang-switch .sqx-lang-active {
	color: var(--sqx-primary);
}

/* 产品中心下拉 */
.nav-products-dropdown { position: relative; }
.nav-products-dropdown .dropdown-menu {
	min-width: 200px;
	border-radius: 8px;
	border: 1px solid var(--sqx-border);
	box-shadow: var(--sqx-shadow);
	padding: 8px 0;
}
.nav-products-dropdown .dropdown-menu li a {
	padding: 8px 20px;
	font-size: 13px;
	color: var(--sqx-text) !important;
	border-bottom: none !important;
}
.nav-products-dropdown .dropdown-menu li a:hover {
	color: var(--sqx-primary) !important;
	background: var(--sqx-primary-light);
}

.navbar-nav > li > a.sqx-nav-cta {
	display: none;
}

/* 首屏增强 */
#intro.top-header {
	position: relative;
}

.sqx-hero-extra {
	position: absolute;
	bottom: 130px;
	left: 0;
	right: 0;
	z-index: 15;
	padding: 20px 20px 0;
	pointer-events: none;
	background: none;
}

.sqx-hero-extra > * {
	pointer-events: auto;
}

.sqx-lang-switch a {
	color: inherit;
	text-decoration: none;
}

.sqx-featured-more .sqx-btn-primary {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 8px;
	text-transform: none;
	font-weight: 600;
}

/* 首屏统计 */
.sqx-hero-stats {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
	margin: 12px 0 28px;
}

.sqx-hero-stat {
	text-align: center;
	min-width: 100px;
}

.sqx-hero-stat .num {
	font-size: 28px;
	font-weight: 700;
	color: var(--sqx-primary);
	line-height: 1.2;
}

.sqx-hero-stat .label {
	font-size: 13px;
	color: #fff;
	margin-top: 4px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.sqx-hero-cta {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 8px;
}

.sqx-hero-cta .btn {
	padding: 14px 28px;
	font-size: 14px;
	border-radius: 8px;
	text-transform: none;
	font-weight: 600;
	min-width: 160px;
	transition: all 0.25s ease;
}

.sqx-btn-primary {
	background: var(--sqx-primary) !important;
	border: 2px solid var(--sqx-primary) !important;
	color: #fff !important;
}

.sqx-btn-primary:hover {
	background: var(--sqx-primary-hover) !important;
	border-color: var(--sqx-primary-hover) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 100, 0, 0.35);
}

.sqx-btn-outline {
	background: transparent !important;
	border: 2px solid rgba(255, 255, 255, 0.7) !important;
	color: #fff !important;
}

button.sqx-btn-outline,
button.sqx-btn-primary,
button.sqx-btn-ghost {
	font-family: inherit;
	cursor: pointer;
}

/* 隐藏首屏轮播左右箭头 */
#intro .sp-arrows,
#intro .sp-arrow {
	display: none !important;
}

.sqx-btn-outline:hover {
	background: rgba(255, 255, 255, 0.15) !important;
	transform: translateY(-2px);
}

.sqx-btn-ghost {
	background: rgba(255, 255, 255, 0.12) !important;
	border: 2px solid rgba(255, 255, 255, 0.25) !important;
	color: #fff !important;
}

.sqx-hero-tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.sqx-hero-tag {
	padding: 8px 16px;
	border-radius: 50px;
	background: rgba(0, 0, 0, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
	transition: all 0.2s;
}

.sqx-hero-tag:hover {
	background: var(--sqx-primary-soft);
	border-color: var(--sqx-primary);
	color: #fff;
	text-decoration: none;
}

.top-header .wrap-section-slider .slide-item .slide-content.sqx-hero-content {
	padding-top: 200px;
}

/* 明星产品 */
.sqx-featured-section {
	padding: var(--sqx-section-pad) 0;
	background: linear-gradient(180deg, var(--sqx-bg-secondary) 0%, var(--sqx-bg) 100%);
	border-bottom: 1px solid var(--sqx-border-light);
}

.sqx-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.sqx-product-card {
	background: var(--sqx-bg-card);
	border: 1px solid var(--sqx-border);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
	color: inherit;
}

.sqx-product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--sqx-shadow);
	text-decoration: none;
	color: inherit;
	border-color: var(--sqx-primary);
}

.sqx-product-card img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	object-position: center;
	background: var(--sqx-bg-secondary);
	padding: 10px;
}

.sqx-product-card-body {
	padding: 16px;
}

.sqx-product-card-body h4 {
	font-size: 15px;
	color: var(--sqx-text-heading);
	margin: 0 0 8px;
	font-weight: 700;
}

.sqx-product-card-body p {
	font-size: 13px;
	color: var(--sqx-text-secondary);
	margin: 0;
	line-height: 1.7;
}

.sqx-product-tag {
	display: inline-block;
	padding: 2px 8px;
	background: var(--sqx-primary-soft);
	color: var(--sqx-primary);
	font-size: 11px;
	border-radius: 4px;
	margin-bottom: 8px;
}

.sqx-featured-more {
	text-align: center;
	margin-top: 36px;
}

/* 客户案例 */
.sqx-cases-section {
	padding: var(--sqx-section-pad) 0;
	background: var(--sqx-bg);
	border-top: 1px solid var(--sqx-border-light);
}

.sqx-cases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.sqx-case-card {
	padding: 28px 24px;
	background: var(--sqx-bg-card);
	border: 1px solid var(--sqx-border);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.sqx-case-card:hover {
	box-shadow: var(--sqx-shadow);
	border-color: var(--sqx-primary);
}

.sqx-case-industry {
	font-size: 12px;
	color: var(--sqx-primary);
	font-weight: 600;
	margin-bottom: 10px;
}

.sqx-case-card h4 {
	font-size: 17px;
	margin: 0 0 10px;
	font-weight: 700;
	color: var(--sqx-text-heading);
}

.sqx-case-card p {
	font-size: 13px;
	color: var(--sqx-text-secondary);
	line-height: 1.8;
	margin: 0;
}

.sqx-case-result {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed var(--sqx-border);
	font-size: 13px;
	color: var(--sqx-primary);
	font-weight: 600;
}

@media (max-width: 992px) {
	.sqx-product-grid { grid-template-columns: repeat(2, 1fr); }
	.sqx-cases-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
	/* 移动端顶栏：汉堡左 + Logo 居中 */
	.header .navbar {
		padding-top: 14px !important;
		padding-bottom: 14px !important;
	}

	.header .navbar > .container.sqx-nav-wrap {
		display: grid;
		grid-template-columns: 48px 1fr 48px;
		align-items: center;
		column-gap: 8px;
		min-height: 44px;
		padding-left: max(12px, env(safe-area-inset-left, 0px));
		padding-right: max(12px, env(safe-area-inset-right, 0px));
		width: 100%;
	}

	.header .navbar .sqx-nav-wrap .toggle-button {
		grid-column: 1;
		grid-row: 1;
		float: none !important;
		line-height: 1;
		padding: 10px 8px 10px 4px;
		margin: 0;
		z-index: 3;
		color: #fff;
		font-size: 20px;
	}

	.header .navbar .sqx-nav-wrap .navbar-brand {
		grid-column: 1 / -1;
		grid-row: 1;
		justify-self: center;
		position: static !important;
		left: auto !important;
		right: auto !important;
		width: auto !important;
		max-width: calc(100% - 100px);
		margin: 0 !important;
		float: none !important;
		height: auto;
		text-align: center;
		pointer-events: auto;
	}

	.header .navbar .sqx-nav-wrap .navbar-brand > img {
		height: 28px;
		max-width: min(115px, 100%);
		margin: 0 auto;
	}

	.header .navbar .sqx-nav-wrap .navbar-collapse {
		grid-column: 1 / -1;
		grid-row: 2;
		float: none !important;
		width: 100%;
		margin-top: 12px !important;
	}

	.header .navbar .sqx-nav-wrap .sqx-nav-actions {
		display: none;
	}

	.navbar-tools {
		float: none;
		justify-content: center;
		margin: 10px 0;
	}
	.sqx-product-grid { grid-template-columns: 1fr; }
	.section-title {
		font-size: 26px !important;
	}
	.section-subtitle {
		font-size: 15px !important;
	}
	.sqx-portfolio-link {
		font-size: 11px;
		padding: 5px 12px;
	}
	.features-section,
	.laptops-section,
	.latest-works-section,
	.steps-section,
	.team-section,
	.clients-section,
	.countact-us-section,
	.geo-keywords-section,
	.sqx-featured-section,
	.sqx-cases-section {
		padding-top: 56px !important;
		padding-bottom: 56px !important;
	}
	.top-header .wrap-section-slider .slide-item .slide-content.sqx-hero-content {
		padding-top: 160px;
	}
	.sqx-hero-cta .btn { min-width: 140px; padding: 12px 20px; font-size: 13px; }
	.sqx-hero-stat .num { font-size: 22px; }
	body { padding-bottom: 64px; }
	.sqx-float-actions { bottom: 72px; }
	.sqx-hero-extra { bottom: 72px; }

	#intro.top-header::after {
		height: 160px;
	}

	#intro .ai-hero-overlay {
		background: linear-gradient(
			180deg,
			rgba(8, 11, 20, 0.86) 0%,
			rgba(8, 11, 20, 0.62) 35%,
			rgba(8, 11, 20, 0.58) 55%,
			rgba(8, 11, 20, 0.75) 82%,
			rgba(8, 11, 20, 0.92) 100%
		);
	}

	/* 首屏 H5 适配 */
	.top-header.home-header {
		min-height: 620px;
	}

	.top-header .wrap-section-slider,
	.top-header .wrap-section-slider .sp-mask,
	.top-header .wrap-section-slider .sp-slides-container,
	.top-header .wrap-section-slider .slide-item {
		min-height: 620px !important;
		height: 620px !important;
	}

	.sqx-hero-headline .title {
		font-size: 32px;
	}

	.sqx-hero-headline .under-title {
		font-size: 14px;
		min-height: 24px;
		padding: 0 12px;
	}

	.sqx-hero-stats {
		gap: 12px 16px;
		margin: 10px 0 20px;
	}

	.sqx-hero-stat {
		min-width: 72px;
		flex: 0 0 calc(50% - 16px);
	}

	.sqx-hero-cta {
		gap: 10px;
		padding: 0 10px;
	}

	.sqx-hero-cta .btn {
		min-width: 0;
		flex: 1 1 calc(50% - 10px);
		padding: 12px 14px;
		font-size: 13px;
	}

	.sqx-hero-cta .btn.sqx-btn-ghost {
		flex: 1 1 100%;
	}

	.sqx-hero-tags {
		gap: 8px;
		padding: 0 12px;
		margin-top: 16px;
	}

	.sqx-hero-tag {
		font-size: 12px;
		padding: 6px 12px;
	}

	.container {
		padding-left: max(16px, env(safe-area-inset-left, 0px));
		padding-right: max(16px, env(safe-area-inset-right, 0px));
	}
}

/* 移动端底部转化栏 */
.sqx-mobile-cta {
	display: none;
}

@media (max-width: 767px) {
	.sqx-mobile-cta {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 9998;
		background: var(--sqx-bg-card);
		border-top: 1px solid var(--sqx-border);
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
		padding: 0;
	}

	.sqx-mobile-cta-item {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2px;
		padding: 8px 4px;
		border: none;
		background: transparent;
		color: var(--sqx-text-muted);
		font-size: 11px;
		font-family: inherit;
		text-decoration: none;
		cursor: pointer;
		transition: color 0.2s, background 0.2s;
		-webkit-appearance: none;
		appearance: none;
	}

	.sqx-mobile-cta-item i {
		font-size: 18px;
	}

	.sqx-mobile-cta-item:hover,
	.sqx-mobile-cta-item:focus {
		color: var(--sqx-primary);
		text-decoration: none;
	}

	.sqx-mobile-cta-primary {
		color: var(--sqx-primary);
		font-weight: 600;
	}
	.nav-products-dropdown .dropdown-menu li a {
		color: #fff !important;;
	}
}

/* FAQ 区块 - 浅色 */
.geo-faq-section {
	background: var(--sqx-bg-secondary);
	color: var(--sqx-text-secondary);
	border-top: 1px solid var(--sqx-border-light);
	border-bottom: 1px solid var(--sqx-border-light);
	padding: var(--sqx-section-pad) 0;
}

.geo-faq-section .section-title {
	color: var(--sqx-text-heading);
	font-weight: 800;
}

.geo-faq-section .section-subtitle {
	color: var(--sqx-text-secondary);
}

.geo-faq-item {
	border-bottom-color: var(--sqx-border);
}

.geo-faq-item summary {
	color: var(--sqx-text-heading);
	font-weight: 600;
}

.geo-faq-item summary:hover {
	color: var(--sqx-primary);
}

.geo-faq-answer {
	color: var(--sqx-text-secondary);
}

/* 微信二维码居中弹窗 */
.sqx-wechat-modal {
	position: fixed;
	inset: 0;
	z-index: 10001;
}

.sqx-wechat-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.sqx-wechat-panel {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 320px;
	padding: 28px 24px 24px;
	background: var(--sqx-bg-card, #fff);
	border-radius: 16px;
	box-shadow: var(--sqx-shadow, 0 12px 40px rgba(0, 0, 0, 0.2));
	text-align: center;
}

.sqx-wechat-close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	color: var(--sqx-text-muted, #999);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.sqx-wechat-close:hover {
	color: var(--sqx-primary);
}

.sqx-wechat-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--sqx-text, #333);
	margin-bottom: 8px;
}

.sqx-wechat-desc {
	font-size: 13px;
	color: var(--sqx-text-muted, #999);
	margin: 0 0 16px;
	line-height: 1.6;
}

.sqx-wechat-img {
	display: block;
	width: 200px;
	height: 200px;
	margin: 0 auto 12px;
	border-radius: 10px;
	border: 1px solid var(--sqx-border, #eee);
}

.sqx-wechat-phone {
	font-size: 20px;
	color: var(--sqx-primary);
	font-weight: 700;
	margin-bottom: 6px;
}

.sqx-wechat-note {
	font-size: 12px;
	color: var(--sqx-text-muted, #999);
}

/* 产品链接区 */
.sqx-portfolio-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 10px;
	max-width: 980px;
	margin: 0 auto 20px;
	line-height: 1.4;
}

.sqx-portfolio-link {
	font-size: 12px;
	color: var(--sqx-text-secondary);
	text-decoration: none;
	padding: 6px 14px;
	display: inline-block;
	margin-left: 0;
	border-radius: 50px;
	background: var(--sqx-bg-card);
	border: 1px solid var(--sqx-border);
	transition: all 0.2s ease;
}

.sqx-portfolio-link:first-child {
	margin-left: 0;
}

.sqx-portfolio-link:hover {
	color: var(--sqx-primary);
	background: var(--sqx-primary-light);
	border-color: var(--sqx-primary);
	text-decoration: none;
}

#portfolio .section-title a {
	text-decoration: none;
	color: var(--sqx-text);
}

@media (max-width: 1199px) {
	.sqx-nav-actions {
		margin-left: 12px;
		gap: 12px;
	}

	.sqx-nav-buy-btn {
		padding: 7px 14px;
		font-size: 12px;
	}
}

/* ========== 全局浅色风格优化 ========== */

/* 排版 */
p {
	color: var(--sqx-text-secondary);
}

p.large {
	color: var(--sqx-text-secondary);
}

h3, h4 {
	color: var(--sqx-text-heading);
	font-weight: 700;
}

h5 {
	color: var(--sqx-text-heading);
	font-weight: 600;
}

h5.italic-title {
	color: var(--sqx-text-muted);
}

em {
	color: var(--sqx-text-muted);
}

/* 区块标题 */
.section-heading {
	padding: 0 0 44px !important;
	text-align: center;
}

.section-title {
	color: var(--sqx-text-heading) !important;
	font-size: 34px !important;
	font-weight: 800 !important;
	letter-spacing: -0.02em;
	text-transform: none !important;
	line-height: 1.25;
	margin-bottom: 10px !important;
}

.section-subtitle {
	color: var(--sqx-text-secondary) !important;
	font-style: normal;
	font-size: 16px !important;
	font-weight: 400;
	max-width: 680px;
	margin-left: auto !important;
	margin-right: auto !important;
	line-height: 1.75;
	margin-bottom: 18px !important;
}

.design-arrow {
	background: var(--sqx-border);
	height: 36px;
	margin: 6px auto 0;
}

.design-arrow:after {
	border-color: var(--sqx-primary);
}

/* 区块背景节奏：白 / 浅灰交替 + 间距 */
.features-section {
	background: var(--sqx-bg);
	padding: var(--sqx-section-pad) 0 56px !important;
	border-bottom: 1px solid var(--sqx-border-light);
}

.laptops-section {
	background: var(--sqx-bg);
	padding: var(--sqx-section-pad) 0 !important;
}

.areas-section {
	background: var(--sqx-bg-secondary);
	padding: var(--sqx-section-pad) 0 !important;
}

.latest-works-section {
	background: var(--sqx-bg-secondary);
	padding: var(--sqx-section-pad) 0 72px !important;
	border-top: 1px solid var(--sqx-border-light);
}

.steps-section {
	background: var(--sqx-bg);
	padding: var(--sqx-section-pad) 0 !important;
	border-top: 1px solid var(--sqx-border-light);
}

.team-section {
	background: var(--sqx-bg-secondary);
	padding: var(--sqx-section-pad) 0 !important;
}

.clients-section {
	background: var(--sqx-bg);
	padding: var(--sqx-section-pad) 0 !important;
	border-top: 1px solid var(--sqx-border-light);
}

.countact-us-section {
	background: var(--sqx-bg-secondary) !important;
	padding: var(--sqx-section-pad) 0 !important;
}

.geo-keywords-section {
	background: var(--sqx-bg) !important;
	padding: var(--sqx-section-pad) 0 !important;
}

/* 优势卡片 */
.feature-item .wrap-feature-icon {
	background: var(--sqx-bg-card);
	border-color: var(--sqx-border);
	box-shadow: var(--sqx-shadow-sm);
	border-radius: var(--sqx-radius);
}

.feature-item {
	padding: 12px 8px 20px;
	border-radius: var(--sqx-radius);
	transition: background 0.25s ease;
}

.feature-item:hover {
	background: var(--sqx-primary-light);
}

.feature-item .title {
	color: var(--sqx-text-heading);
	font-size: 16px;
	font-weight: 700;
}

.feature-item.active .wrap-feature-icon,
.feature-item:hover .wrap-feature-icon {
	border-color: var(--sqx-primary-soft);
}

/* 关于我们 */
.areas-section h4,
.areas-section .con_h3 {
	color: var(--sqx-text-heading) !important;
	font-weight: 700;
}

.areas-section em {
	color: var(--sqx-text-muted);
}

.list-clients .client-item {
	color: var(--sqx-text-secondary);
	font-size: 14px;
	line-height: 1.6;
	padding: 8px 12px;
	margin: 6px;
	background: var(--sqx-bg-card);
	border: 1px solid var(--sqx-border);
	border-radius: var(--sqx-radius-sm);
	display: inline-block;
}

.latest-works-section .scroll-pane .scroll-bar-wrap .scroll-bar .ui-handle-helper-parent {
	background: var(--sqx-border-light);
	border-color: var(--sqx-border);
	box-shadow: inset 0 0 0 3px var(--sqx-bg-card) !important;
}

.latest-works-section .scroll-pane .scroll-bar-wrap .scroll-bar .ui-slider-handle {
	background: var(--sqx-bg-card);
	border-color: var(--sqx-border);
}

/* 服务步骤 & 技能条 */
.steps-list .step-item .item-text h5 {
	color: var(--sqx-text-heading);
	font-weight: 700;
}

.steps-section .results-container .skills li {
	background-color: var(--sqx-border-light);
}

.steps-section .results-container .skills li > span {
	color: var(--sqx-text-secondary);
}

.steps-section .results-container .skills li .progress {
	background-color: var(--sqx-text-light);
}

.steps-section .results-container .skills li.orange .progress {
	background: var(--sqx-primary);
}

.results-description h4,
.results-description h5 {
	color: var(--sqx-text-heading);
	font-weight: 700;
}

.service.carousel .item h4 {
	color: var(--sqx-text-heading);
	font-weight: 700;
}

.service.carousel .item p {
	color: var(--sqx-text-secondary);
}

/* 团队 */
.team-slider .slide-item .slide-description .member-info .name {
	color: var(--sqx-text) !important;
}

.team-slider .slide-item .slide-description .member-info .position {
	color: var(--sqx-text-muted) !important;
}

/* 联系表单 */
.countact-us-section .contact-block .info,
.countact-us-section .type-info {
	color: var(--sqx-text-secondary);
}

.countact-us-section .form-control {
	color: var(--sqx-text);
	border-bottom-color: var(--sqx-border);
}

.countact-us-section .form-control:focus {
	border-bottom-color: var(--sqx-primary);
}

/* 页脚浅色 */
.footer-section {
	background: var(--sqx-bg-secondary) !important;
	border-top: 1px solid var(--sqx-border);
}

.footer-section h5 {
	color: var(--sqx-text) !important;
}

.footer-section p,
.footer-section .footer-nav li a,
.footer-section .contacts-list a {
	color: var(--sqx-text-secondary) !important;
}

.footer-section .footer-nav li a:hover,
.footer-section .footer-nav li.active a {
	color: var(--sqx-primary) !important;
}

.footer-section .form-control {
	border-bottom-color: var(--sqx-border) !important;
	color: var(--sqx-text);
}

.footer-section .form-control-feedback {
	color: var(--sqx-primary) !important;
}

.copyright-section {
	background: var(--sqx-bg-tertiary) !important;
}

.copyright-section p {
	color: var(--sqx-text-muted) !important;
}

.copyright-section p span {
	color: var(--sqx-text-light) !important;
}

/* 固定导航滚动后 */
body.fixed-header .scrolling-header .navbar {
	background: var(--sqx-nav-bg-scroll) !important;
	box-shadow: var(--sqx-shadow-sm);
}

body.fixed-header .scrolling-header .navbar .navbar-nav li a {
	color: var(--sqx-nav-text-scroll) !important;
}

body.fixed-header .scrolling-header .navbar .navbar-nav li a:hover,
body.fixed-header .scrolling-header .navbar .navbar-nav li.active a {
	color: var(--sqx-primary) !important;
}

/* 购买 CTA 区保持品牌色 */
.buy-section {
	background: linear-gradient(135deg, var(--sqx-primary) 0%, var(--sqx-primary-hover) 100%) !important;
}

/* 区块装饰图标 */
.with-icon .section-icon:after {
	background: var(--sqx-bg-card);
	border-color: var(--sqx-border);
}

.nav-products-dropdown .dropdown-menu .divider {
	background: var(--sqx-border-light);
}

/* Toast 问候 */
.toast-info {
	background-color: #fff !important;
	color: var(--sqx-text) !important;
	border: 1px solid var(--sqx-border);
	box-shadow: var(--sqx-shadow);
}

.toast-title {
	color: var(--sqx-primary) !important;
	font-weight: 700;
}

.toast-message {
	color: var(--sqx-text-secondary) !important;
}

.toast-close-button {
	color: var(--sqx-text-light) !important;
}

.toast-progress {
	background-color: var(--sqx-primary) !important;
}

/* ========== 产品滚动 hover：深色遮罩 + 高对比标签 ========== */
.latest-works-section .scroll-pane .scroll-content-item::after,
.latest-works-section .scroll-pane2 .scroll-content-item2::after,
.latest-works-section .scroll-pane3 .scroll-content-item3::after,
.latest-works-section .scroll-pane4 .scroll-content-item4::after,
.latest-works-section .scroll-pane5 .scroll-content-item5::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.72) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
	pointer-events: none;
}

.latest-works-section .scroll-pane .scroll-content-item:hover::after,
.latest-works-section .scroll-pane2 .scroll-content-item2:hover::after,
.latest-works-section .scroll-pane3 .scroll-content-item3:hover::after,
.latest-works-section .scroll-pane4 .scroll-content-item4:hover::after,
.latest-works-section .scroll-pane5 .scroll-content-item5:hover::after {
	opacity: 1;
}

.latest-works-section .scroll-pane .scroll-content-item .name,
.latest-works-section .scroll-pane2 .scroll-content-item2 .name,
.latest-works-section .scroll-pane3 .scroll-content-item3 .name,
.latest-works-section .scroll-pane4 .scroll-content-item4 .name,
.latest-works-section .scroll-pane5 .scroll-content-item5 .name {
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 600;
	line-height: 1.55;
	text-transform: none !important;
	max-width: calc(100% - 40px);
	background: rgba(255, 100, 0, 0.96);
	padding: 10px 14px;
	border-radius: 8px;
	bottom: 18px !important;
	left: 18px !important;
	z-index: 4;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.latest-works-section .scroll-pane .scroll-content-item .name:before,
.latest-works-section .scroll-pane2 .scroll-content-item2 .name:before,
.latest-works-section .scroll-pane3 .scroll-content-item3 .name:before,
.latest-works-section .scroll-pane4 .scroll-content-item4 .name:before,
.latest-works-section .scroll-pane5 .scroll-content-item5 .name:before {
	display: none;
}

/* AI 卡片标题层次 */
.ai-cap-card h4 {
	font-size: 17px;
	font-weight: 700;
	color: var(--sqx-text-heading);
}

.ai-cap-card p {
	color: var(--sqx-text-secondary);
}

/* 关于区块正文 */
.areas-section p.large {
	color: var(--sqx-text-secondary);
	line-height: 1.85;
}

.areas-section h5.italic-title {
	color: var(--sqx-text-muted);
	font-size: 14px;
}

/* 成就数据区与上下区块过渡 */
.achievements-section {
	border-top: 4px solid var(--sqx-primary);
}

#portfolio .section-title a {
	color: var(--sqx-text-heading);
}

#portfolio .section-title a:hover {
	color: var(--sqx-primary);
}
