@media (max-width: 460px) {
	.modules-grid {
		padding-left: 12px;
		padding-right: 12px;
		box-sizing: border-box;
	}
}
@import url("https://fonts.googleapis.com/css?family=Oleo+Script:400|Open+Sans:300,300italic,600,600italic,800");

/*
	hardoly by hardoly.com
	hardoly.com | @2026
*/

:root {
	--primary: #667eea;
	--secondary: #764ba2;
	--accent: #f06625;
	--bg-light: #f9fafb;
	--bg-card: #fff;
	--text-main: #2c3e50;
	--text-sub: #6c757d;
	--radius: 14px;
}
/* ==========================================
	全局样式
	========================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
	line-height: 1.6;
	color: #333;
	background: #f9fafb;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ==========================================
	头部导航栏
	========================================== */
.site-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 15px 0;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.brand-section {
	display: flex;
	align-items: center;
	gap: 30px;
}

.main-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.main-brand-logo {
	font-size: 32px;
	font-weight: 700;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 8px rgba(102,126,234,0.10);
	padding: 2px;
}

.main-brand-tagline {
	font-size: 13px;
	opacity: 0.7;
}

.service-brand {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	height: 56px;
}

.service-brand-desc {
	font-size: 13px;
	opacity: 0.85;
	display: flex;
	align-items: center;
	height: 100%;
}

.service-brand-divider {
	font-size: 20px;
	opacity: 0.6;
}

.service-brand-name {
	font-weight: 700;
	color: var(--primary);
}

.service-brand-desc {
	font-size: 13px;
	opacity: 0.85;
}

.main-nav {
	display: flex;
	gap: 28px;
}

.nav-item {
	color: white;
	text-decoration: none;
	font-weight: 500;
	padding: 10px 16px;
	border-radius: var(--radius);
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
            justify-content: center;
            align-items: center;
            height: 2vh;
}

.nav-item:hover,
.nav-item.active {
	background: rgba(255, 255, 255, 0.15);
}

.nav-item.coming-soon {
	opacity: 0.6;
	cursor: not-allowed;
}

.nav-badge {
	font-size: 11px;
	background: rgba(255, 255, 255, 0.2);
	padding: 2px 6px;
	border-radius: 10px;
}

/* Reduce nav link spacing */
.main-nav .nav-item {
	margin-right: 12px;
	margin-left: 0;
}
.main-nav .nav-item:last-child {
	margin-right: 0;
}
/* Logo square styles */
.logo-square {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	overflow: hidden;
	min-width: 56px;
	min-height: 56px;
}

.logo-link {
	font-size: 2rem;
	font-weight: bold;
	color: #222;
	text-decoration: none;
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

/* 仅用于 #logo 区块的样式 */
#logo {
	display: inline-block;
}
#logo h1 {
	background: #ff4486;
	color: #fff;
	border-radius: 6px;
	font-family: 'Oleo Script', serif;
	font-weight: 800;
	padding: 0.08em 0.08em 0.08em 0.08em;
	font-size: 2.75em;
	letter-spacing: 0.1em;
	display: inline-block;
	vertical-align: middle;
}
#logo h1 a {
	color: #fff;
	text-decoration: none;
	outline: 0;
}
#logo span {
	font-weight: 800;
	line-height: 4.5em;
	letter-spacing: 0.025em;
	font-size: 0.9em;
	vertical-align: middle;
	margin: 0 0 0 1.25em;
}

/* ==========================================
	主内容区
	========================================== */
.main-content {
	min-height: calc(100vh - 60px - 80px);
	background: var(--bg-light);
}

/* ==========================================
	英雄区域 - 服务品牌核心
	========================================== */
.service-hero {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	padding: 90px 0 70px 0;
	text-align: center;
}

.hero-brand {
	margin-bottom: 30px;
}

.service-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.service-logo-emoji {
	font-size: 54px;
}

.service-logo-name {
	font-size: 54px;
	font-weight: 800;
	letter-spacing: -1.5px;
	color: #fff;
}

.service-slogan {
	font-size: 20px;
	opacity: 0.85;
	margin-top: 8px;
}

.hero-content h2 {
	font-size: 40px;
	font-weight: 800;
	margin-bottom: 18px;
	letter-spacing: -1px;
}

.hero-desc {
	font-size: 18px;
	opacity: 0.92;
	margin-bottom: 36px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	gap: 18px;
	justify-content: center;
	margin-bottom: 28px;
}

.btn {
	display: inline-block;
	padding: 16px 36px;
	border-radius: var(--radius);
	font-weight: 700;
	font-size: 17px;
	text-decoration: none;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-primary {
	background: #fff;
	color: var(--primary);
	box-shadow: 0 4px 18px rgba(255,255,255,0.18);
}

.btn-primary:hover {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 8px 32px rgba(255,255,255,0.25);
}

.btn-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.btn-secondary:hover {
	background: rgba(255,255,255,0.12);
	color: #fff;
}

.trust-badges {
	color: rgba(255,255,255,0.92);
	font-size: 15px;
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

/* ==========================================
	现有服务模块
	========================================== */
.existing-services {
	padding: 80px 0;
	background: white;
}

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

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 18px;
	color: #6c757d;
	max-width: 600px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
}

.service-card {
	background: var(--bg-card);
	border-radius: var(--radius);
	padding: 32px 24px;
	text-align: center;
	transition: all 0.2s;
	border: 2px solid transparent;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 2px 8px rgba(102,126,234,0.06);
}

.service-card:hover {
	transform: translateY(-4px) scale(1.03);
	border-color: var(--primary);
	box-shadow: 0 8px 32px rgba(102,126,234,0.13);
}

.service-card-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

.service-card-title {
	font-size: 24px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 12px;
}

.service-card-desc {
	color: #6c757d;
	font-size: 16px;
	line-height: 1.7;
}

.service-card-badge {
	display: inline-block;
	margin-top: 12px;
	padding: 4px 12px;
	background: #e3e8ff;
	color: var(--primary);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
}

/* ==========================================
	核心功能模块
	========================================== */
.core-modules {
	padding: 80px 0;
	background: #f9fafb;
}

.modules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}

.module-card {
	background: var(--bg-card);
	border-radius: var(--radius);
	padding: 28px 18px;
	text-align: center;
	transition: all 0.2s;
	border: 2px solid transparent;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 2px 8px rgba(102,126,234,0.06);
}

.module-card:hover {
	transform: translateY(-4px) scale(1.03);
	border-color: var(--primary);
	box-shadow: 0 8px 32px rgba(102,126,234,0.13);
}

.module-card.featured {
	border-color: var(--accent);
	position: relative;
}

.module-card.featured::before {
	content: "推荐";
	position: absolute;
	top: -16px;
	right: -16px;
	font-size: 14px;
	background: var(--accent);
	color: #fff;
	border-radius: 16px;
	padding: 4px 14px;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(240,102,37,0.15);
}

.module-icon {
	font-size: 42px;
	margin-bottom: 16px;
}

.module-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 10px;
}

.module-card p {
	color: #6c757d;
	font-size: 15px;
	line-height: 1.6;
}

/* ==========================================
	价值主张
	========================================== */
.value-proposition {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f7ff 0%, #eef1ff 100%);
}

.value-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
}

.value-card {
	text-align: center;
	padding: 32px 18px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(102,126,234,0.06);
}

.value-card .card-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

.value-card h4 {
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 12px;
}

.value-card p {
	color: #6c757d;
	font-size: 16px;
	line-height: 1.6;
}

/* ==========================================
	用户证言
	========================================== */
.testimonials {
	padding: 80px 0;
	background: #fff;
}

.testimonial-slider {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.testimonial-item {
	background: var(--bg-card);
	border-radius: var(--radius);
	padding: 32px 18px;
	box-shadow: 0 2px 8px rgba(102,126,234,0.06);
	position: relative;
}

.testimonial-item::before {
	content: "\201C";
	position: absolute;
	top: 10px;
	left: 18px;
	font-size: 60px;
	color: #e3e8ff;
	font-family: Georgia, serif;
	line-height: 1;
}

.quote {
	font-size: 18px;
	line-height: 1.7;
	color: #2c3e50;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
}

.user {
	color: var(--primary);
	font-weight: 600;
	font-size: 15px;
}

/* ==========================================
	行动召唤
	========================================== */
.final-cta {
	padding: 90px 0 70px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	text-align: center;
}

.final-cta h2 {
	font-size: 44px;
	font-weight: 800;
	margin-bottom: 16px;
	letter-spacing: -1.5px;
}

.final-cta p {
	font-size: 19px;
	opacity: 0.92;
	margin-bottom: 28px;
}

.btn-large {
	padding: 20px 54px;
	font-size: 20px;
}

.small-note {
	margin-top: 16px;
	font-size: 14px;
	opacity: 0.8;
}

/* ==========================================
	页脚
	========================================== */
.site-footer {
	background: #2c3e50;
	color: rgba(255,255,255,0.85);
	padding: 54px 0 24px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 40px;
}

.footer-brand {
	text-align: center;
}

.footer-brand-logo {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-brand-desc {
	font-size: 13px;
	opacity: 0.7;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 32px;
}

.link-group h5 {
	color: white;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.link-group a {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	padding: 8px 0;
	transition: all 0.3s;
}

.link-group a:hover {
	color: white;
	padding-left: 8px;
}

.footer-copyright {
	text-align: center;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,0.10);
	margin-top: 32px;
	font-size: 13px;
	opacity: 0.7;
}

/* ==========================================
	响应式设计
	========================================== */
@media (max-width: 1024px) {
	.footer-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.footer-brand {
		margin-bottom: 24px;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.footer-links {
		display: flex;
		flex-direction: row;
		gap: 32px;
		justify-content: center;
		width: 100%;
		margin-bottom: 16px;
	}
	.link-group {
		text-align: left;
	}

	.service-brand {
		display: none !important;
	}
}

@media (max-width: 600px) {
	.service-hero,
	.existing-services,
	.core-modules,
	.value-proposition,
	.testimonials,
	.final-cta {
		padding: 32px 0;
	}
	.service-logo-name {
		font-size: 22px;
	}
	.service-slogan {
		font-size: 13px;
	}
	.hero-content h2 {
		font-size: 18px;
	}
	.btn {
		padding: 10px 18px;
		font-size: 14px;
	}
	.btn-large {
		padding: 12px 24px;
		font-size: 15px;
	}
	.modules-grid,
	.value-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.main-nav .nav-item {
		margin-right: 6px;
		padding: 8px 8px;
		font-size: 15px;
		flex-direction: column;
		gap: 0;
		align-items: center;
		justify-content: center;
	}
	.main-nav .nav-item span {
		display: block;
		width: 100%;
		text-align: center;
	}
	.main-nav .nav-item span:first-child {
		margin-bottom: 2px;
	}
	.final-cta h2 {
		font-size: 24px;
	}

	.service-slogan {
		display: inline-block;
		padding: 8px 12px;
		background: rgba(102,126,234,0.15);
		border-radius: 8px;
		line-height: 1.2;
		min-height: 3.6em;
	}
}

@media (max-width: 460px) {
	html, body {
		min-width: 100vw;
		width: 100vw;
		overflow-x: hidden;
	}
	.container {
		padding-left: 0;
		padding-right: 0;
	}

	.footer-brand-logo {
		font-size: 0;
	}
	.footer-brand-logo img {
		font-size: initial;
		vertical-align: middle;
	}

	.logo-square {
		margin-left: 12px;
	}

	.main-nav .nav-item {
		margin-right: 2px;
		margin-left: 0;
		padding-left: 6px;
		padding-right: 6px;
	}
	.main-nav .nav-item:last-child {
		margin-right: 0;
	}
}