:root {
	--fire-red: #c12b2b;
	--fire-orange: #e65c1e;
	--fire-dark: #8b1e1e;
	--gray-bg: #f8f9fa;
	--text-dark: #1e1e2a;
	--text-soft: #3a3a4a;
	--border-light: #e9eef2;
	--shadow-sm: 0 8px 20px rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.03);
	--shadow-hover: 0 16px 32px rgba(193,43,43,0.08), 0 6px 12px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
	font-family: system-ui, -apple-system, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', Roboto, 'Helvetica Neue', sans-serif;
	color: var(--text-dark);
	background: #fff;
	line-height: 1.6;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* 头部 */
.header {
	background: rgba(255,255,255,0.94);
	backdrop-filter: blur(8px);
	box-shadow: 0 2px 10px rgba(0,0,0,0.02);
	padding: 16px 0;
	border-bottom: 1px solid var(--border-light);
	position: sticky;
	top: 0;
	z-index: 50;
}
.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-icon {
	font-size: 34px;
	color: var(--fire-red);
	font-weight: 700;
}
.company-name {
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--fire-dark);
}
.company-name small {
	font-size: 0.8rem;
	font-weight: 400;
	color: #5f6b7a;
	margin-left: 8px;
}
.nav-links { display: flex; gap: 32px; font-weight: 500; }
.nav-links a {
	text-decoration: none;
	color: var(--text-soft);
	cursor: default;
	transition: color 0.2s;
}
.nav-links a:hover { color: var(--fire-red); }
.btn {
	display: inline-block;
	background: var(--fire-red);
	color: white;
	font-weight: 600;
	padding: 10px 24px;
	border-radius: 40px;
	text-decoration: none;
	font-size: 0.95rem;
	box-shadow: 0 4px 8px rgba(193,43,43,0.2);
	border: none;
	cursor: default;
}
.btn-outline {
	background: transparent;
	color: var(--fire-red);
	box-shadow: none;
	border: 1.5px solid var(--fire-red);
}

/* Hero */
.hero {
	padding: 56px 0 40px;
	background: linear-gradient(145deg, #fff7f5 0%, #ffffff 80%);
}
.hero-title {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--fire-dark);
}
.hero-sub {
	font-size: 1.2rem;
	color: var(--text-soft);
	max-width: 900px;
	margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: #1e1e2a;
}
.section-title .title-icon {
	color: var(--fire-orange);
	margin-right: 10px;
	font-weight: 400;
}

/* 优势卡片 */
.advantages-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 28px;
	margin: 32px 0 40px;
}
.advantage-card {
	background: white;
	padding: 28px 22px;
	border-radius: 24px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
	transition: all 0.25s;
}
.advantage-card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-4px);
	border-color: #fcd5cd;
}
.card-icon {
	font-size: 42px;
	color: var(--fire-red);
	margin-bottom: 20px;
	font-weight: 400;
}
.advantage-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--fire-dark);
}
.advantage-card p {
	color: var(--text-soft);
	margin-bottom: 12px;
	font-size: 0.98rem;
}

/* 数据统计 */
.stats-highlight {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background: var(--gray-bg);
	padding: 30px 20px;
	border-radius: 48px;
	margin: 40px 0;
}
.stat-item { text-align: center; padding: 0 15px; }
.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--fire-red);
	line-height: 1.2;
}
.stat-label { color: #475569; font-weight: 500; }

/* 中文展望卡片 */
.future-card-cn {
	background: #ffffff;
	border-radius: 32px;
	padding: 32px 36px;
	box-shadow: 0 20px 35px -8px rgba(0,0,0,0.07), 0 6px 10px rgba(0,0,0,0.02);
	border: 1px solid #f1dfdb;
	border-top: 8px solid var(--fire-red);
	margin: 48px 0 30px;
}
.future-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.future-header .header-icon {
	font-size: 32px;
	color: var(--fire-red);
	background: #ffeeea;
	padding: 10px;
	border-radius: 20px;
}
.future-header h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0;
	color: var(--fire-dark);
}
.future-text-content {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #2c3e50;
	white-space: pre-line;
}

/* 英文区域 */
.en-section {
	background: #f2f5f8;
	padding: 48px 0;
	margin-top: 30px;
	border-radius: 32px 32px 0 0;
}
.en-block {
	background: rgba(255,255,255,0.7);
	backdrop-filter: blur(4px);
	padding: 32px 36px;
	border-radius: 28px;
	box-shadow: var(--shadow-sm);
	border: 1px solid #dce5eb;
}
.en-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1e3a5f;
	margin-bottom: 20px;
	border-left: 6px solid var(--fire-red);
	padding-left: 22px;
}
.en-text {
	color: #1e2f44;
	white-space: pre-line;
}
.en-looking-ahead {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 2px dashed #b0c4de;
}
.en-looking-ahead h4 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1e3a5f;
	margin-bottom: 16px;
}

/* 页脚 */
.footer {
	background: #121826;
	color: #cbd5e1;
	padding: 28px 0;
	margin-top: 30px;
	text-align: center;
	font-size: 0.9rem;
}

/* 辅助符号 */
.symbol {
	display: inline-block;
	font-style: normal;
	font-weight: 400;
}

hr {
	margin: 30px 0;
	border: 0;
	height: 1px;
	background: linear-gradient(to right, transparent, #ccc, transparent);
}

.preserve-text { white-space: pre-line; }

/* 响应式 */
@media (max-width: 900px) {
	.advantages-grid { grid-template-columns: 1fr; }
	.hero-title { font-size: 2.2rem; }
	.header-content { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
	.company-name { font-size: 1.2rem; }
}

/* 本地图标替代（纯文本/Unicode） */
.icon-fire::before { content: "🧯"; }
.icon-box::before { content: "📦"; }
.icon-phone::before { content: "📞"; }
.icon-shield::before { content: "🛡️"; }
.icon-eye::before { content: "👁️"; }
.icon-globe::before { content: "🌐"; }
.icon-building::before { content: "🏢"; }
.icon-check::before { content: "✓"; font-weight: bold; color: var(--fire-red); }