/* SugarCRM 专题页样式 */

/* Hero 区 */
.scrm-hero {
	min-height: 100vh; display: flex; align-items: center; justify-content: center;
	background: linear-gradient(160deg, #08081e 0%, #10103a 30%, #1a1050 60%, #0e0a30 100%);
	position: relative; overflow: hidden; padding-top: 72px;
}
.scrm-hero::before {
	content: ''; position: absolute; top: -50%; right: -30%; width: 80%; height: 200%;
	background: radial-gradient(ellipse, rgba(76,83,245,0.15) 0%, transparent 60%);
}
.scrm-hero::after {
	content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
	background: linear-gradient(to top, rgba(255,255,255,1), transparent);
}
.scrm-hero .grid-bg {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(76,83,245,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(76,83,245,0.05) 1px, transparent 1px);
	background-size: 60px 60px;
}
.scrm-hero .content {
	position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 40px;
}
.scrm-hero h1 {
	font-size: 60px; font-weight: 700; color: #fff; line-height: 1.2;
	margin-bottom: 24px; letter-spacing: 2px;
}
.scrm-hero h1 span {
	background: linear-gradient(135deg, #c84fff, #4C53F5, #8a5cff);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.scrm-hero .desc {
	font-size: 20px; color: rgba(255,255,255,0.6); line-height: 1.8;
	margin-bottom: 48px; max-width: 680px; margin-left: auto; margin-right: auto;
}
.scrm-hero .stats {
	display: flex; gap: 60px; justify-content: center; margin-top: 80px;
	position: relative; z-index: 2;
}
.scrm-hero .stats .stat { text-align: center; }
.scrm-hero .stats .stat .num { font-size: 40px; font-weight: 700; color: #fff; }
.scrm-hero .stats .stat .num span { color: #c84fff; font-size: 24px; }
.scrm-hero .stats .stat .label { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 8px; }
/* 第一次服务免费 - Hero高亮横幅 */
.scrm-hero .free-service-highlight {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 32px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(229,57,53,0.15), rgba(255,87,34,0.12));
	border: 2px solid rgba(229,57,53,0.4);
	margin-bottom: 36px;
	animation: free-glow 2s ease-in-out infinite alternate;
}
@keyframes free-glow {
	from { box-shadow: 0 0 20px rgba(229,57,53,0.15); }
	to { box-shadow: 0 0 40px rgba(229,57,53,0.3); }
}
.free-service-icon { font-size: 28px; line-height: 1; }
.free-service-text { text-align: left; }
.free-service-text strong {
	display: block; font-size: 22px; font-weight: 800; color: #ff6b6b; letter-spacing: 2px;
}
.free-service-text span {
	font-size: 14px; color: rgba(255,255,255,0.6);
}
/* 免费统计项 */
.scrm-hero .stats .stat-free .num {
	background: linear-gradient(135deg, #e53935, #ff6d00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 36px;
}
.scrm-hero .stats .stat-free .label {
	color: #ff6b6b;
	font-weight: 600;
}
/* 优势区免费项高亮 */
.adv-feature-free {
	background: linear-gradient(135deg, #fff5f5, #fffaf0) !important;
	border: 2px solid rgba(229,57,53,0.15) !important;
}
.adv-feature-free:hover {
	border-color: rgba(229,57,53,0.35) !important;
	box-shadow: 0 8px 32px rgba(229,57,53,0.1) !important;
}
.adv-feature-free .adv-icon {
	background: linear-gradient(135deg, rgba(229,57,53,0.08), rgba(255,87,34,0.15)) !important;
}
.adv-feature-free h3 {
	color: #e53935 !important;
}

/* SugarCRM介绍 */
.scrm-intro { background: #fff; }
.intro-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
	max-width: 1200px; margin: 0 auto;
}
.intro-card {
	background: #fafafa; border-radius: 16px; padding: 40px 32px;
	border: 1px solid rgba(0,0,0,0.04);
	transition: all 0.3s;
}
.intro-card:hover {
	transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08);
	background: #fff;
}
.intro-icon {
	width: 56px; height: 56px; border-radius: 14px;
	background: linear-gradient(135deg, rgba(76,83,245,0.08), rgba(138,92,255,0.15));
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 24px;
}
.intro-icon svg { width: 28px; height: 28px; }
.intro-card h3 {
	font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px;
}
.intro-card p {
	font-size: 15px; color: #888; line-height: 1.8;
}

/* 版本对比表 */
.intro-versions {
	max-width: 900px; margin: 72px auto 0;
}
.intro-versions > h3 {
	font-size: 24px; font-weight: 700; color: #1a1a1a; text-align: center; margin-bottom: 32px;
}
.version-table {
	border-radius: 12px; overflow: hidden;
	border: 1px solid #eee;
}
.version-row {
	display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
}
.version-row:not(:last-child) { border-bottom: 1px solid #f0f0f0; }
.version-cell {
	padding: 14px 20px; font-size: 14px; color: #555;
	display: flex; align-items: center; justify-content: center; text-align: center;
}
.version-row:not(.header-row) .version-cell:first-child {
	justify-content: flex-start; font-weight: 500; color: #333;
}
.header-row .version-cell {
	background: #f8f7fc; font-weight: 700; color: #1a1a1a; font-size: 15px;
}
.version-cell.highlight { color: #4C53F5; font-weight: 600; }
.version-tip {
	text-align: center; margin-top: 24px; font-size: 15px; color: #888;
}
.version-tip a { color: #4C53F5; font-weight: 600; }
.version-tip a:hover { text-decoration: underline; }

/* 服务内容 */
.scrm-services { background: #fafafa; }
.svc-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
	max-width: 1200px; margin: 0 auto;
}
.svc-card {
	background: #fff; border-radius: 16px; padding: 40px 32px;
	border: 1px solid rgba(0,0,0,0.04);
	transition: all 0.3s; position: relative; overflow: hidden;
}
.svc-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, #4C53F5, #8a5cff); opacity: 0;
	transition: opacity 0.3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.svc-card:hover::before { opacity: 1; }
.svc-num {
	font-size: 48px; font-weight: 800; line-height: 1;
	background: linear-gradient(135deg, rgba(76,83,245,0.12), rgba(138,92,255,0.18));
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	margin-bottom: 16px;
}
.svc-card h3 {
	font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px;
}
.svc-card > p {
	font-size: 14px; color: #888; line-height: 1.8; margin-bottom: 16px;
}
.svc-card ul {
	list-style: none; padding: 0; margin: 0;
}
.svc-card ul li {
	font-size: 13px; color: #666; padding: 5px 0; padding-left: 18px;
	position: relative; line-height: 1.6;
}
.svc-card ul li::before {
	content: ''; position: absolute; left: 0; top: 12px;
	width: 6px; height: 6px; border-radius: 50%;
	background: linear-gradient(135deg, #4C53F5, #8a5cff);
}

/* 我们的优势 */
.scrm-advantages { background: #fff; }
.adv-main {
	display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
	max-width: 1200px; margin: 0 auto;
}
.adv-feature {
	display: flex; gap: 20px; padding: 28px;
	border-radius: 14px; margin-bottom: 16px;
	background: #fafafa; transition: all 0.3s;
	border: 1px solid transparent;
}
.adv-feature:hover {
	background: #fff; border-color: rgba(76,83,245,0.12);
	box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.adv-icon {
	width: 48px; height: 48px; border-radius: 12px;
	background: linear-gradient(135deg, rgba(76,83,245,0.08), rgba(138,92,255,0.15));
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.adv-icon svg { width: 24px; height: 24px; }
.adv-feature h3 {
	font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px;
}
.adv-feature p {
	font-size: 14px; color: #888; line-height: 1.8; margin: 0;
}

/* 对比表 */
.compare-box {
	max-width: 900px; margin: 60px auto 0;
}
.compare-box > h3 {
	font-size: 24px; font-weight: 700; color: #1a1a1a; text-align: center; margin-bottom: 32px;
}
.compare-table {
	border-radius: 12px; overflow: hidden;
	border: 1px solid #eee;
}
.compare-row {
	display: grid; grid-template-columns: 1.5fr 1.5fr 1.5fr;
}
.compare-row:not(:last-child) { border-bottom: 1px solid #f0f0f0; }
.compare-cell {
	padding: 16px 24px; font-size: 14px; color: #555;
	display: flex; align-items: center;
}
.compare-header .compare-cell {
	background: #f8f7fc; font-weight: 700; font-size: 15px;
	justify-content: center; text-align: center;
}
.compare-cell.us {
	color: #4C53F5; font-weight: 600; justify-content: center;
}
.compare-cell.them {
	color: #bbb; justify-content: center;
}
.compare-header .compare-cell.us { color: #4C53F5; }
.compare-header .compare-cell.them { color: #999; }

/* 行业案例 */
/* 本土化增强 */
.localization-box {
	max-width: 1200px; margin: 60px auto 0;
}
.loc-header {
	text-align: center; margin-bottom: 48px;
}
.loc-header h3 {
	font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px;
}
.loc-header p {
	font-size: 16px; color: #888; max-width: 700px; margin: 0 auto; line-height: 1.8;
}
.loc-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.loc-card {
	background: #fafafa; border-radius: 14px; padding: 32px 24px;
	border: 1px solid rgba(0,0,0,0.04);
	transition: all 0.3s;
}
.loc-card:hover {
	transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08);
	background: #fff; border-color: rgba(76,83,245,0.12);
}
.loc-icon {
	width: 48px; height: 48px; border-radius: 12px;
	background: linear-gradient(135deg, rgba(76,83,245,0.08), rgba(138,92,255,0.15));
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px;
}
.loc-icon svg { width: 24px; height: 24px; }
.loc-card h4 {
	font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px;
}
.loc-card p {
	font-size: 13px; color: #888; line-height: 1.8; margin: 0;
}
.loc-cta {
	text-align: center; margin-top: 36px; font-size: 15px; color: #888;
}
.loc-cta a { color: #4C53F5; font-weight: 600; }
.loc-cta a:hover { text-decoration: underline; }

.scrm-cases { background: #fafafa; }
.industry-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	max-width: 1200px; margin: 0 auto;
}
.industry-card {
	background: #fff; border-radius: 14px; padding: 32px 24px;
	text-align: center; border: 1px solid rgba(0,0,0,0.04);
	transition: all 0.3s;
}
.industry-card:hover {
	transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.industry-icon {
	font-size: 36px; margin-bottom: 16px;
}
.industry-card h3 {
	font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px;
}
.industry-card p {
	font-size: 13px; color: #888; line-height: 1.7; margin: 0;
}

/* 服务流程 */
.scrm-process { background: #fff; }
.workflow {
	display: flex; align-items: flex-start; justify-content: center;
	max-width: 1100px; margin: 0 auto; gap: 0;
}
.workflow-step {
	text-align: center; flex: 1; padding: 0 16px;
}
.workflow-num {
	width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
	background: linear-gradient(135deg, #4C53F5, #8a5cff);
	display: flex; align-items: center; justify-content: center;
	font-size: 24px; font-weight: 800; color: #fff;
	box-shadow: 0 4px 20px rgba(76,83,245,0.3);
}
.workflow-step h4 {
	font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px;
}
.workflow-step p {
	font-size: 13px; color: #888; line-height: 1.7; max-width: 180px; margin: 0 auto;
}
.workflow-arrow {
	font-size: 28px; color: #d0c8f8; font-weight: 300;
	padding-top: 18px; flex-shrink: 0;
}

/* CTA 区增强 */
.cta-section .cta-btns {
	display: flex; gap: 20px; justify-content: center;
}
.cta-btn-outline {
	padding: 16px 48px; border: 1px solid rgba(255,255,255,0.3); border-radius: 8px;
	color: #fff; font-size: 16px; cursor: pointer; background: rgba(255,255,255,0.05);
	transition: all 0.3s;
}
.cta-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* Responsive */
@media (max-width: 1024px) {
	.intro-grid { grid-template-columns: 1fr; max-width: 600px; }
	.svc-grid { grid-template-columns: repeat(2, 1fr); }
	.adv-main { grid-template-columns: 1fr; }
	.industry-grid { grid-template-columns: repeat(2, 1fr); }
	.loc-grid { grid-template-columns: repeat(2, 1fr); }
	.scrm-hero h1 { font-size: 42px; }
	.version-row, .compare-row { font-size: 13px; }
}
@media (max-width: 768px) {
	.scrm-hero h1 { font-size: 30px; }
	.scrm-hero .desc { font-size: 15px; }
	.scrm-hero .stats { gap: 24px; flex-wrap: wrap; }
	.scrm-hero .stats .stat .num { font-size: 26px; }
	.scrm-hero .stats .stat .label { font-size: 12px; }
	.scrm-hero .content { padding: 0 20px; }
	.intro-grid { max-width: 100%; }
	.intro-card { padding: 28px 20px; }
	.svc-grid { grid-template-columns: 1fr; }
	.svc-card { padding: 28px 20px; }
	.adv-main { gap: 0; }
	.adv-feature { padding: 20px 16px; }
	.industry-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.loc-grid { grid-template-columns: 1fr; }
	.loc-header h3 { font-size: 22px; }
	.loc-header p { font-size: 14px; }
	.workflow { flex-direction: column; align-items: center; gap: 24px; }
	.workflow-arrow { transform: rotate(90deg); padding: 0; }
	.workflow-num { width: 52px; height: 52px; font-size: 20px; }
	.intro-versions, .compare-box { overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.version-table, .compare-table { min-width: 500px; }
	.version-row { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; }
	.version-cell { padding: 10px 8px; font-size: 12px; }
	.compare-row { grid-template-columns: 1fr 1fr 1fr; }
	.compare-cell { padding: 10px 12px; font-size: 12px; }
	.cta-section .cta-btns { flex-direction: column; align-items: center; }
	.cta-section h2 { font-size: 28px; }
	.scrm-hero .cta-group { flex-direction: column; align-items: center; }
	.scrm-hero .cta-primary, .scrm-hero .cta-outline { width: 100%; max-width: 280px; text-align: center; }
}
@media (max-width: 480px) {
	.scrm-hero h1 { font-size: 26px; }
	.scrm-hero .desc { font-size: 14px; }
	.scrm-hero .stats { gap: 16px; }
	.scrm-hero .stats .stat .num { font-size: 22px; }
	.industry-grid { grid-template-columns: 1fr; }
	.intro-card { padding: 24px 16px; }
	.svc-card { padding: 24px 16px; }
	.adv-feature { flex-direction: column; gap: 12px; }
	.loc-card { padding: 24px 16px; }
	.cta-section h2 { font-size: 24px; }
	.cta-section p { font-size: 15px; }
	.cta-section { padding: 80px 20px; }
}
