/* TNC新能源充电桩 - 英雄图样式 */

/* 内容区域 - 居中对齐 */
.hero-content {
	justify-content: center;
	padding-top: 60px;
}

.hero-text-center {
	color: #fff;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.hero-title-large {
	font-size: 64px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	margin-bottom: 30px !important;
	text-shadow: 0 3px 30px rgba(0, 0, 0, 0.5) !important;
	letter-spacing: 2px !important;
}

.hero-subtitle-large {
	font-size: 24px !important;
	line-height: 1.6 !important;
	margin-bottom: 50px !important;
	opacity: 0.95 !important;
	font-weight: 300 !important;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4) !important;
}

/* 按钮组 - 居中 */
.hero-buttons-center {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-btn-large {
	display: inline-block;
	padding: 18px 50px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	letter-spacing: 1px;
}

.hero-btn-large.hero-btn-primary {
	background: #1abc9e;
	color: #fff;
	border: 2px solid #1abc9e;
	box-shadow: 0 8px 20px rgba(26, 188, 156, 0.4);
}

.hero-btn-large.hero-btn-primary:hover {
	background: #16a085;
	border-color: #16a085;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(26, 188, 156, 0.5);
}

.hero-btn-large.hero-btn-outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.9);
}

.hero-btn-large.hero-btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

/* 底部数据展示卡片 - 现代化极简风格 */
.hero-stats-card {
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 100%;
	z-index: 2;
}

/* 极简容器 - 完全融入背景 */
.stats-content {
	position: relative;
	background: transparent;
	padding: 40px 50px;
	display: flex;
	align-items: center;
	gap: 80px;
}

/* 移除所有复杂装饰效果 */

.stats-grid {
	display: flex;
	gap: 80px;
	flex: 1;
	justify-content: space-around;
}

.stat-item {
	text-align: center;
	color: #fff;
}

.stat-number {
	font-size: 48px;
	font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 500; /* 极细字体，更具现代感 */
	line-height: 1;
	margin-bottom: 8px;
	color: #ffffff;
	letter-spacing: -2.5px; /* 更紧凑的字间距 */
	transition: all 0.3s ease;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-variant-numeric: tabular-nums; /* 等宽数字，避免滚动时的跳动 */
}

.stat-label {
	font-size: 13px;
	font-family: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	opacity: 0.7;
	font-weight: 400;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 极简悬停效果 */
.stat-item:hover .stat-number {
	color: #1abc9e;
}

.stat-item:hover .stat-label {
	opacity: 1;
}

/* 响应式 */
/* 响应式设计 - 极简风格适配 */
@media (max-width: 1600px) {
	.hero-title-large {
		font-size: 52px !important;
	}

	.hero-subtitle-large {
		font-size: 20px !important;
	}

	.stat-number {
		font-size: 40px;
	}

	.stats-grid {
		gap: 60px;
	}
}

@media (max-width: 1200px) {
	.stats-content {
		flex-direction: column;
		gap: 30px;
		padding: 30px 40px;
	}

	.stats-grid {
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.hero-stats-card {
		bottom: 50px;
	}

	.stats-content {
		padding: 25px 20px;
		gap: 25px;
	}

	.stat-number {
		font-size: 32px;
	}

	.stat-label {
		font-size: 11px;
	}

	.stats-grid {
		gap: 30px;
	}
}
