/* 全局样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* 明亮主题色 - 优化色彩 */
	--bg-base: #fafafa;
	--text-primary: #1a1a2e;
	--text-secondary: #64748b;
	--text-muted: #94a3b8;
	--border-color: rgba(148, 163, 184, 0.15);
	--glass-bg: rgba(255, 255, 255, 0.75);
	--glass-border: rgba(255, 255, 255, 0.9);
	--accent-blue: #0066FF;
	--accent-purple: #6366F1;
	--accent-gradient: linear-gradient(135deg, #0066FF 0%, #6366F1 100%);
	--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
	--shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 全局背景 - 更精致的渐变 */
.global-background {
	position: fixed;
	inset: 0;
	z-index: -10;
	pointer-events: none;
	overflow: hidden;
}

.bg-base {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(140px);
	opacity: 0.15;
	animation: pulse-glow 20s ease-in-out infinite;
	will-change: transform, opacity;
}

.glow-1 {
	top: -10%;
	left: 20%;
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, oklch(0.75 0.28 250) 0%, transparent 70%);
}

.glow-2 {
	top: 40%;
	right: 15%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, oklch(0.72 0.25 280) 0%, transparent 70%);
	animation-delay: 7s;
}

.glow-3 {
	bottom: -10%;
	left: 30%;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, oklch(0.78 0.22 330) 0%, transparent 70%);
	animation-delay: 14s;
}

@keyframes pulse-glow {
	0%, 100% {
		opacity: 0.15;
		transform: scale(1) translate(0, 0);
	}
	33% {
		opacity: 0.25;
		transform: scale(1.1) translate(20px, -20px);
	}
	66% {
		opacity: 0.2;
		transform: scale(0.95) translate(-20px, 20px);
	}
}

/* 导航栏 - 更现代的设计 */
.nav-glass {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.nav-glass.scrolled {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-bottom-color: var(--border-color);
}

.nav-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	transition: transform 0.2s ease;
}

.nav-brand:hover {
	transform: scale(1.02);
}

.brand-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.nav-toggle:hover {
	background: rgba(0, 0, 0, 0.05);
}

.nav-toggle span {
	width: 24px;
	height: 2.5px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.2s ease;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.nav-link:hover {
	color: var(--accent-blue);
	background: rgba(0, 102, 255, 0.05);
}

.nav-cta {
	padding: 0.625rem 1.5rem;
	background: var(--accent-gradient);
	color: white !important;
	border-radius: 9999px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 102, 255, 0.35);
	background: linear-gradient(135deg, #0052CC 0%, #5856D6 100%);
}

/* 导航下拉菜单 */
.nav-dropdown {
	position: relative;
}

.nav-link-dropdown {
	cursor: pointer;
}

.dropdown-arrow {
	transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 1rem);
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	display: grid;
	grid-template-columns: 1fr 300px;
	overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	top: calc(100% + 0.5rem);
}

.dropdown-content {
	padding: 2rem;
}

.dropdown-section {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	border-radius: 12px;
	transition: all 0.2s ease;
	cursor: pointer;
}

.dropdown-section:hover {
	background: rgba(0, 122, 255, 0.05);
}

.dropdown-icon {
	width: 40px;
	height: 40px;
	padding: 10px;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	border-radius: 10px;
	color: white;
	flex-shrink: 0;
}

.dropdown-icon svg {
	width: 100%;
	height: 100%;
}

.dropdown-text h4 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.dropdown-text p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

.dropdown-cta {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
}

.dropdown-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	color: white;
	text-decoration: none;
	border-radius: 9999px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.dropdown-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.dropdown-highlight {
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	padding: 2rem;
	color: white;
}

.dropdown-highlight h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.highlight-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.highlight-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	line-height: 1.6;
}

.highlight-list li svg {
	flex-shrink: 0;
	margin-top: 0.2rem;
}

/* Hero Section - 更吸引人的设计 */
.hero-section {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8rem 2rem 4rem;
	position: relative;
}

.hero-content {
	max-width: 900px;
	text-align: center;
	margin-bottom: 4rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	margin-bottom: 2rem;
	border-radius: 9999px;
	border: 1px solid rgba(0, 102, 255, 0.2);
	background: rgba(0, 102, 255, 0.05);
	backdrop-filter: blur(10px);
	animation: slide-up 0.6s ease;
	box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

.badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-blue);
	animation: pulse-dot 2s ease-in-out infinite;
	box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4);
}

@keyframes pulse-dot {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(0, 102, 255, 0);
	}
}

.badge-text {
	font-size: 0.8rem;
	color: var(--accent-blue);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
}

.hero-title {
	font-size: clamp(2.75rem, 7vw, 5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #1a1a2e 0%, #0066FF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: slide-up 0.6s ease 0.1s backwards;
	letter-spacing: -0.03em;
}

.hero-subtitle {
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto 3rem;
	line-height: 1.8;
	animation: slide-up 0.6s ease 0.2s backwards;
	font-weight: 400;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: slide-up 0.6s ease 0.3s backwards;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2.25rem;
	background: var(--accent-gradient);
	color: white;
	text-decoration: none;
	border-radius: 9999px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0, 102, 255, 0.4);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2.25rem;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	color: var(--text-primary);
	text-decoration: none;
	border: 1.5px solid var(--border-color);
	border-radius: 9999px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 1);
	border-color: var(--accent-blue);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-visual {
	animation: slide-up 0.6s ease 0.4s backwards;
	width: 100%;
	max-width: 1100px;
}

.hero-platforms {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
}

.platform-icon {
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 102, 255, 0.1);
	border-radius: 16px;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--text-primary);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	min-width: 90px;
	cursor: pointer;
}

.platform-icon img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-icon span {
	font-size: 0.875rem;
	font-weight: 500;
}

.platform-icon:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 24px rgba(0, 102, 255, 0.15);
	border-color: var(--accent-blue);
	background: white;
}

.platform-icon:hover img {
	transform: scale(1.1);
}

/* 滚动提示 */
.scroll-hint {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	animation: slide-up 0.6s ease 0.5s backwards;
}

.scroll-text {
	font-size: 0.75rem;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}

.scroll-indicator {
	width: 24px;
	height: 40px;
	border-radius: 12px;
	border: 2px solid var(--border-color);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 0.5rem;
}

.scroll-arrow {
	width: 12px;
	height: 12px;
	color: var(--text-muted);
	animation: bounce 2s ease-in-out infinite;
}

@keyframes slide-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(6px);
	}
}

/* Stats Section */
.stats-section {
	padding: 4rem 2rem;
}

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

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.stat-card {
	text-align: center;
	padding: 2rem;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-blue);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.95rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Info Section */
.info-section {
	padding: 4rem 2rem;
}

.section-heading {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 600;
	text-align: center;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.section-body {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-secondary);
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

/* Features Section */
.features-section {
	padding: 4rem 2rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	padding: 2rem;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-blue);
}

.feature-icon {
	width: 48px;
	height: 48px;
	padding: 12px;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	border-radius: 12px;
	color: white;
	margin-bottom: 1.5rem;
}

.feature-icon svg {
	width: 100%;
	height: 100%;
}

.feature-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.feature-desc {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
	padding: 4rem 2rem;
}

.cta-card {
	max-width: 800px;
	margin: 0 auto;
	padding: 4rem 2rem;
	text-align: center;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 122, 255, 0.3);
}

.cta-title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 600;
	color: white;
	margin-bottom: 1rem;
}

.cta-desc {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-buttons .btn-primary {
	background: white;
	color: var(--accent-blue);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Links Section */
.links-section {
	padding: 2rem;
	border-top: 1px solid var(--border-color);
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
}

.links-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	font-size: 0.9rem;
}

.links-label {
	color: var(--text-secondary);
	font-weight: 600;
}

.links-list {
	color: var(--text-secondary);
	flex: 1;
}

.links-list a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s ease;
	margin: 0 0.5rem;
}

.links-list a:hover {
	color: var(--accent-blue);
}

/* Why Choose Us Section */
.why-section {
	padding: 4rem 2rem;
	background: linear-gradient(to bottom, transparent, rgba(0, 122, 255, 0.02));
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-top: 0.5rem;
	margin-bottom: 3rem;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.why-card {
	padding: 2rem;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.why-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.why-card:hover::before {
	transform: scaleX(1);
}

.why-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-blue);
}

.why-number {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.3;
	line-height: 1;
	margin-bottom: 1rem;
}

.why-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.why-desc {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials-section {
	padding: 4rem 2rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.testimonial-card {
	padding: 2rem;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-blue);
}

.testimonial-stars {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1.5rem;
	color: #FFB800;
}

.testimonial-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.author-info {
	flex: 1;
}

.author-name {
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.author-role {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* Footer */
.footer {
	background: linear-gradient(to bottom, rgba(0, 122, 255, 0.02), rgba(88, 86, 214, 0.02));
	border-top: 1px solid var(--border-color);
	padding: 4rem 2rem 2rem;
}

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

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand {
	max-width: 300px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.footer-logo .brand-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.footer-desc {
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.footer-social {
	display: flex;
	gap: 0.75rem;
}

.social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--glass-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-link:hover {
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	color: white;
	border-color: transparent;
	transform: translateY(-2px);
}

.footer-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-list li {
	margin-bottom: 0.75rem;
}

.footer-list a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-list a:hover {
	color: var(--accent-blue);
}

.footer-list svg {
	flex-shrink: 0;
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-bottom-left {
	flex: 1;
}

.footer-copyright {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin: 0 0 0.75rem 0;
}

.footer-partner {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.6;
}

.footer-partner strong {
	color: var(--text-primary);
	font-weight: 600;
}

.footer-divider {
	margin: 0 0.5rem;
	color: var(--border-color);
}

.footer-badges {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: var(--glass-bg);
	border: 1px solid var(--border-color);
	border-radius: 9999px;
	font-size: 0.85rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.footer-badge svg {
	color: var(--accent-blue);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.nav-toggle {
		display: flex;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(20px);
		padding: 1rem;
		gap: 0.5rem;
		border-bottom: 1px solid var(--border-color);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: all 0.3s ease;
	}

	.nav-menu.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	.nav-dropdown {
		width: 100%;
	}

	.dropdown-menu {
		position: static;
		transform: none;
		width: 100%;
		grid-template-columns: 1fr;
		margin-top: 0.5rem;
	}

	.nav-dropdown:hover .dropdown-menu {
		top: auto;
	}

	.dropdown-highlight {
		display: none;
	}

	.hero-section {
		padding: 6rem 1.5rem 3rem;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.cta-card {
		padding: 3rem 1.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-brand {
		max-width: 100%;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-badges {
		justify-content: center;
	}
}
