/* ========== Reset & Base ========== */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
 --primary: #0EA5E9;
 --primary-light: #38BDF8;
 --primary-dark: #0284C7;
 --accent: #38BDF8;
 --accent2: #F59E0B;
 --bg-dark: #0B1120;
 --bg-darker: #080D19;
 --bg-card: rgba(255, 255, 255, 0.04);
 --bg-card-hover: rgba(255, 255, 255, 0.07);
 --text-primary: #E2E8F0;
 --text-secondary: rgba(255, 255, 255, 0.7);
 --text-muted: rgba(255, 255, 255, 0.4);
 --border-color: rgba(255, 255, 255, 0.08);
 --gradient-1: linear-gradient(135deg, #0EA5E9, #6366F1);
 --gradient-2: linear-gradient(135deg, #F59E0B, #EF4444);
 --gradient-3: linear-gradient(135deg, #0EA5E9, #38BDF8);
 --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.15);
 --radius: 16px;
 --radius-sm: 8px;
 --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 --max-width: 1000px;
}
html {
	scroll-behavior: smooth;
	font-size: 16px;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}
a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}
ul, ol {
	list-style: none;
}
img {
	max-width: 100%;
	display: block;
}
.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}
/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
}
h1 {
	font-size: 3.5rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 1.5rem;
}
h4 {
	font-size: 1.25rem;
}
h5 {
	font-size: 1.1rem;
}
h6 {
	font-size: 1rem;
}
.section-header {
	text-align: center;
	margin-bottom: 40px;
}
.section-header .label {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 16px;
}
.section-header h2 {
	margin-bottom: 16px;
}
.section-header p {
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	font-size: 1.1rem;
}
.gradient-text {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.label {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--accent);
}
/* ========== Buttons ========== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: var(--transition);
	text-align: center;
	justify-content: center;
	line-height: 1.2;
}
.btn-primary {
	background: var(--gradient-1);
	color: #fff;
	box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(14, 165, 233, 0.6);
}
.btn-outline {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--border-color);
}
.btn-outline:hover {
	border-color: var(--primary);
	background: rgba(14, 165, 233, 0.1);
}
.btn-sm {
	padding: 10px 24px;
	font-size: 0.9rem;
}
/* ========== Header / Navigation ========== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 20px 0;
	border-bottom: 1px solid transparent;
	transition: var(--transition);
}
.header.scrolled {
	padding: 12px 0;
	background: rgba(10, 14, 39, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-color);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}
.logo img {
	height: 36px;
	width: auto;
	filter: brightness(0) invert(1);
}
.logo-tagline {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 1px;
	line-height: 1;
}
.nav-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1;
	justify-content: center;
}
.nav-menu a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	position: relative;
	padding: 4px 0;
	white-space: nowrap;
}
.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-1);
	border-radius: 2px;
	transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
	color: var(--text-primary);
}
.nav-menu a:hover::after, .nav-menu a.active::after {
	width: 100%;
}
.nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
	background: none;
	border: none;
}
.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}
/* Mobile Nav Overlay */
.nav-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 998;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.nav-overlay.active {
	display: block;
	opacity: 1;
}
/* Mobile Nav Close Button */
.nav-close {
	display: none;
	position: absolute;
	top: 24px;
	right: 24px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--border-color);
	border-radius: 50%;
	background: transparent;
	color: var(--text-secondary);
	font-size: 1.1rem;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	z-index: 10;
}
.nav-close:hover {
	border-color: var(--primary);
	color: var(--text-primary);
	background: rgba(14, 165, 233, 0.15);
}
/* Body scroll lock when menu open */
body.menu-open {
	overflow: hidden;
}
/* ========== Page Banner (Inner Pages) ========== */
.page-banner {
	position: relative;
	padding: 160px 0 80px;
	text-align: center;
	overflow: hidden;
	background: var(--bg-darker);
}
.page-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 30% 50%, rgba(14, 165, 233, 0.12) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
	animation: rotateBg 20s linear infinite;
}
.page-banner .container {
	position: relative;
	z-index: 2;
}
.page-banner h1 {
	font-size: 2.2rem;
	margin-bottom: 16px;
}
.page-banner p {
	color: var(--text-secondary);
	font-size: 1.15rem;
	max-width: 600px;
	margin: 0 auto;
}
.page-banner .breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
	color: var(--text-muted);
	font-size: 0.9rem;
}
.page-banner .breadcrumb a:hover {
	color: var(--accent);
}
.page-banner .breadcrumb .separator {
	color: var(--text-muted);
}
/* ========== Course List ========== */
.course-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}
.course-item {
	padding: 20px 24px;
	border-radius: 12px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.course-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.06), transparent);
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}
.course-item:hover {
	border-color: rgba(14, 165, 233, 0.2);
	box-shadow: 0 0 1px rgba(14, 165, 233, 0.5), 0 0 20px rgba(14, 165, 233, 0.15);
}
.course-item:hover::before {
	opacity: 1;
}
.course-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	margin: -20px -24px 16px;
	border-radius: 12px 12px 0 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(14, 165, 233, 0.03);
}
.course-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	background: var(--gradient-1);
}
.course-item:nth-child(1) .course-icon { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.course-item:nth-child(2) .course-icon { background: linear-gradient(135deg, #f97316, #ef4444); }
.course-item:nth-child(3) .course-icon { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.course-item:nth-child(4) .course-icon { background: linear-gradient(135deg, #10b981, #059669); }
.course-item:nth-child(5) .course-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.course-item:nth-child(6) .course-icon { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.course-header h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
}
.course-row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 8px 0;
}
.course-row + .course-row {
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.course-label {
	flex-shrink: 0;
	width: 80px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent);
	padding-top: 2px;
}
.course-content {
	flex: 1;
}
.course-content p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 0;
}
.course-points {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px 20px;
}
.course-points li {
	color: var(--text-secondary);
	font-size: 0.88rem;
	line-height: 1.5;
	position: relative;
	padding-left: 14px;
}
.course-points li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	opacity: 0.6;
}
/* ========== Hero Section (Homepage) ========== */
.hero {
	position: relative;
	min-height: calc(100vh - 280px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 48px 0 5px;
}
.hero canvas, .hero .particles-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
	z-index: 1;
}
.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 24px 0;
}
.hero-content h1 {
	font-size: 4rem;
	margin-bottom: 10px;
	line-height: 1.1;
}
.hero-content p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 28px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.hero-stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 25px;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--max-width);
	padding: 0 24px;
	flex-wrap: wrap;
}
.hero-stats .stat-item {
	text-align: center;
}
.hero-stats .stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 8px;
}
.hero-stats .stat-label {
	font-size: 0.9rem;
	color: var(--text-muted);
}
/* ========== Cards ========== */
.card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	padding: 36px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), transparent);
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}
.card:hover {
	transform: translateY(-8px);
	background: var(--bg-card-hover);
	border-color: rgba(14, 165, 233, 0.3);
	box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15), 0 0 40px rgba(14, 165, 233, 0.05);
}
.card:hover::before {
	opacity: 1;
}
.card-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--gradient-1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}
.card-icon img, .card-icon svg {
	width: 28px;
	height: 28px;
}
.card h3 {
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}
.card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}
/* Feature Card */
.feature-card {
	text-align: center;
	padding: 48px 32px;
}
.feature-card .card-icon {
	margin: 0 auto 24px;
}
/* Service Card */
.service-card {
	padding: 40px 32px;
}
.service-card .card-header-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}
.service-card .card-header-row h3 {
	font-size: 1.15rem;
	white-space: nowrap;
}
.service-card .card-header-row .card-icon {
	margin-bottom: 0;
	flex-shrink: 0;
}
.service-card:nth-child(1) .card-icon {
	background: linear-gradient(135deg, #0EA5E9, #6366F1);
}
.service-card:nth-child(2) .card-icon {
	background: linear-gradient(135deg, #10B981, #0EA5E9);
}
.service-card:nth-child(3) .card-icon {
	background: linear-gradient(135deg, #8B5CF6, #EC4899);
}
.service-card .card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 20px;
	color: var(--accent);
	font-weight: 600;
	font-size: 0.9rem;
}
.service-card .card-link:hover {
	gap: 10px;
}
/* Featured Case */
.featured-case-section {
	padding-top: 35px;
	padding-bottom: 0;
}
.featured-case {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	overflow: hidden;
	transition: var(--transition);
}
.featured-case:hover {
	border-color: rgba(14, 165, 233, 0.3);
	box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
}
.featured-case-image {
	width: 100%;
	min-height: 360px;
}
.featured-case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.featured-case-content {
	padding: 48px 40px;
	display: flex;
	flex-direction: column;
}
.featured-case-content .tag {
	align-self: flex-start;
	margin-top: -20px;
	margin-bottom: 16px;
	font-size: 0.75rem;
	font-weight: 500;
	padding: 3px 10px;
	background: rgba(14, 165, 233, 0.15);
	color: var(--primary-light);
	border: 1px solid rgba(14, 165, 233, 0.25);
	border-radius: 4px;
}
.featured-case-content h2 {
	font-size: 1.5rem;
	margin-bottom: 16px;
}
.featured-case-tags .badge {
	padding: 3px 10px;
	font-size: 0.75rem;
	font-weight: 500;
	background: rgba(14, 165, 233, 0.15);
	color: var(--primary-light);
	border: 1px solid rgba(14, 165, 233, 0.25);
	border-radius: 4px;
}
.featured-case-content > a:last-child {
	margin-top: auto;
	padding-top: 16px;
}
.featured-case-content p {
	color: var(--text-secondary);
	line-height: 1.8;
	font-size: 0.95rem;
}
/* Case Card */
.case-card {
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
}
.case-card .case-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	flex-shrink: 0;
}
.case-card .case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.case-card:hover .case-image img {
	transform: scale(1.05);
}
.case-card .case-content {
	padding: 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.case-card .case-content h3 {
	margin: 0 0 12px;
	line-height: 1.4;
	font-size: 1.1rem;
}
.case-card .case-content > p {
	margin: 0 0 16px;
	flex: 1;
}
.case-card .case-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.case-card .case-tags .badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	line-height: 1.3;
	font-size: 0.75rem;
	font-weight: 500;
	background: rgba(14, 165, 233, 0.15);
	color: var(--primary-light);
	border: 1px solid rgba(14, 165, 233, 0.25);
	border-radius: 4px;
}
.case-card .case-content > a:last-child {
	margin-top: auto;
	padding-top: 16px;
}
/* News Card */
.news-card {
	padding: 0;
	overflow: hidden;
}
.news-card .news-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.news-card .news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.news-card:hover .news-image img {
	transform: scale(1.05);
}
.news-card .news-content {
	padding: 24px;
}
.news-card .news-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
	font-size: 0.875rem;
	color: var(--text-muted);
}
.news-card .news-content h3 {
	font-size: 1.15rem;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-card .news-content p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/* Team Card */
.team-card {
	text-align: center;
	padding: 40px 24px;
}
.team-card .team-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 20px;
	overflow: hidden;
	border: 3px solid transparent;
	background-image: var(--gradient-1);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	position: relative;
}
.team-card .team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.team-card .team-name {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 4px;
}
.team-card .team-role {
	font-size: 0.875rem;
	color: var(--accent);
	margin-bottom: 12px;
}
.team-card .team-desc {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 16px;
}
.team-card .team-social {
	display: flex;
	justify-content: center;
	gap: 12px;
}
.team-card .team-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	color: var(--text-secondary);
}
.team-card .team-social a:hover {
	border-color: var(--primary);
	background: rgba(14, 165, 233, 0.15);
	color: var(--primary-light);
}
/* ========== Grid Layouts ========== */
.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.grid-5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
}
.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* ========== Sections ========== */
section {
	padding: 70px 0;
	position: relative;
}
.section-alt {
	background: var(--bg-darker);
}
.section-alt::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.section-alt::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
/* Stats Section */
.stats-section {
	padding: 35px 0;
	background: var(--bg-darker);
	position: relative;
	overflow: hidden;
}
.stats-divider {
	height: 1px;
	margin: 50px auto 50px;
	max-width: 200px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.stats-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
	z-index: 1;
}
.stat-box {
	text-align: center;
	padding: 15px 15px;
	background: rgba(14, 165, 233, 0.03);
	border: 1px solid rgba(14, 165, 233, 0.08);
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-box:hover {
	transform: translateY(-8px);
	background: rgba(14, 165, 233, 0.08);
	border-color: rgba(14, 165, 233, 0.25);
	box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15), 0 0 40px rgba(14, 165, 233, 0.08);
}
.stat-box .stat-number {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 8px;
	transition: all 0.3s ease;
}
.stat-number .stat-value {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}
.stat-number .stat-unit {
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	-webkit-text-fill-color: #fff;
	margin-left: 4px;
}
.stat-box:hover .stat-number .stat-value {
	background: var(--gradient-2);
	-webkit-background-clip: text;
	background-clip: text;
}
.stat-box:hover .stat-number {
	transform: scale(1.05);
}
.stat-box .stat-label {
	font-size: 0.95rem;
	color: var(--text-secondary);
}
.stat-icon {
	width: 76px;
	height: 76px;
	border-radius: 16px;
	background: rgba(14, 165, 233, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 1.8rem;
	color: var(--accent);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-box:hover .stat-icon {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
	transform: scale(1.1);
}
/* Real Delivery Section */
.delivery-carousel {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 60px;
}
.carousel-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	flex: 1;
	padding-bottom: 8px;
}
.carousel-track::-webkit-scrollbar {
	height: 4px;
}
.carousel-track::-webkit-scrollbar-thumb {
	background: var(--accent);
	border-radius: 2px;
}
.carousel-item {
	position: relative;
	flex: 0 0 calc((100% - 32px) / 3);
	border-radius: 12px;
	overflow: hidden;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}
.carousel-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	color: transparent;
	font-size: 0;
	line-height: 0;
}
.carousel-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px 12px;
	background: linear-gradient(transparent, rgba(0,0,0,0.7));
	color: #fff;
	font-size: 0.875rem;
}
.carousel-btn {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(14, 165, 233, 0.3);
	background: rgba(14, 165, 233, 0.1);
	color: var(--accent);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	position: relative;
	z-index: 2;
}
.carousel-btn:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}
.carousel-btn:active {
	transform: scale(0.95);
}
.carousel-btn i {
	font-size: 14px;
}
.data-gallery {
	margin-top: 40px;
}
.data-carousel {
	display: flex;
	align-items: center;
	gap: 16px;
}
.data-carousel-wrapper {
	flex: 1;
	overflow: hidden;
}
.data-carousel-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.data-carousel-track::-webkit-scrollbar {
	display: none;
}
.data-card {
	flex: 0 0 calc(25% - 15px);
	border-radius: 12px;
	overflow: hidden;
	scroll-snap-align: start;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	transition: all 0.3s;
}
.data-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
	border-color: rgba(14, 165, 233, 0.3);
}
.data-card img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	background: #fff;
	display: block;
	padding: 12px;
	cursor: pointer;
	color: transparent;
	font-size: 0;
	line-height: 0;
}
.data-card img:hover {
	opacity: 0.85;
}
.data-card-label {
	padding: 14px 16px;
	font-size: 0.9rem;
	color: var(--text-secondary);
	text-align: center;
}

/* ===== Image Lightbox ===== */
.lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.lightbox-overlay img {
	max-width: 90%;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 8px;
}
.lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
}
.lightbox-close:hover {
	background: rgba(255,255,255,0.2);
}
/* ===== Success Cases ===== */
.success-cases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.success-case-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	overflow: hidden;
	transition: var(--transition);
}
.success-case-card:hover {
	transform: translateY(-6px);
	border-color: rgba(14, 165, 233, 0.3);
	box-shadow: 0 16px 48px rgba(14, 165, 233, 0.12);
}
.success-case-qrcode {
	background: #fff;
	border-radius: 16px 16px 0 0;
	overflow: hidden;
}
.success-case-qrcode img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}
.success-case-body {
	padding: 20px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.success-case-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 14px;
	background: var(--gradient-1);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 20px;
	width: fit-content;
}
.success-case-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	margin: 0;
}
.success-case-desc {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin: 0;
	flex: 1;
}
.success-case-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid var(--border-color);
	border-radius: 24px;
	padding: 15px 18px;
	width: fit-content;
	transition: var(--transition);
}
.success-case-link:hover {
	color: var(--accent);
	border-color: rgba(14, 165, 233, 0.3);
}

/* CTA Section */
.section-bottom-sm {
	padding-bottom: 30px;
}
.cta-section {
	padding: 50px 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(99, 102, 241, 0.1));
}
.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at 30% 50%, rgba(14, 165, 233, 0.2) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
	pointer-events: none;
}
.cta-content {
	text-align: center;
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}
.cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}
.cta-content p {
	color: var(--text-secondary);
	font-size: 1.15rem;
	margin-bottom: 36px;
}
.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
/* ========== Timeline ========== */
.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0;
}
.timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background: linear-gradient(to bottom, var(--primary), var(--accent));
	opacity: 0.3;
}
.timeline-item {
	position: relative;
	width: 50%;
	padding: 0 40px 60px;
}
.timeline-item:nth-child(odd) {
	left: 0;
	text-align: right;
	padding-right: 60px;
	padding-left: 0;
}
.timeline-item:nth-child(even) {
	left: 50%;
	text-align: left;
	padding-left: 60px;
	padding-right: 0;
}
.timeline-item::before {
	content: '';
	position: absolute;
	top: 8px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--gradient-1);
	box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
	z-index: 1;
}
.timeline-item:nth-child(odd)::before {
	right: -8px;
}
.timeline-item:nth-child(even)::before {
	left: -8px;
}
.timeline-item .timeline-year {
	font-size: 1.1rem;
	font-weight: 700;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}
.timeline-item h3 {
	font-size: 1.2rem;
	margin-bottom: 8px;
}
.timeline-item p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
}
/* ========== Form ========== */
.form-group {
	margin-bottom: 24px;
}
.form-group label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-secondary);
}
.form-control {
	width: 100%;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	color: var(--text-primary);
	font-size: 1rem;
	font-family: inherit;
	transition: var(--transition);
	outline: none;
}
 .form-control::placeholder {
 color: var(--text-muted);
}
.form-control:focus {
	border-color: var(--primary);
	background: rgba(14, 165, 233, 0.05);
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
textarea.form-control {
	min-height: 140px;
	resize: vertical;
	line-height: 1.6;
}
select.form-control {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}
select.form-control option {
	background: #0F172A;
	color: var(--text-primary);
	padding: 10px;
}

/* ========== Custom Scrollbar ========== */
::-webkit-scrollbar {
 width: 6px;
 height: 6px;
}

::-webkit-scrollbar-track {
 background: rgba(255, 255, 255, 0.03);
 border-radius: 3px;
}

::-webkit-scrollbar-thumb {
 background: rgba(14, 165, 233, 0.35);
 border-radius: 3px;
 transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
 background: rgba(14, 165, 233, 0.6);
}

::-webkit-scrollbar-corner {
 background: transparent;
}
* {
	scrollbar-width: thin;
	scrollbar-color: rgba(14, 165, 233, 0.35) rgba(255, 255, 255, 0.03);
}
/* ========== Footer ========== */
.footer {
	background: var(--bg-darker);
	padding: 80px 0 0;
	position: relative;
}
.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1.2fr 1.2fr;
	gap: 48px;
	padding-bottom: 0;
}
.footer-brand .logo img {
	filter: brightness(0) invert(1);
}
.footer-brand {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer-logo-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 16px;
}
.footer-tagline {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 1px;
	margin-top: 4px;
}
.footer-brand p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin-top: 16px;
	line-height: 1.7;
}
.footer-col h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--text-primary);
}
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-results {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 40px;
}
.footer-group {
	display: flex;
	flex-direction: column;
}
.footer-group h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-primary);
}
.footer-group a {
	color: var(--text-secondary);
	font-size: 0.9rem;
	transition: var(--transition);
	display: block;
	padding: 4px 0;
}
.footer-group a:hover {
	color: var(--accent);
	padding-left: 4px;
}
.mobile-results {
	display: none !important;
}
.mobile-section-title {
	display: none !important;
}
.footer-col-split {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 40px;
}
.footer-col-group {
	display: flex;
	flex-direction: column;
}
.footer-col-group h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-primary);
}
.footer-links a {
	color: var(--text-secondary);
	font-size: 0.9rem;
	transition: var(--transition);
}
.footer-links a:hover {
	color: var(--accent);
	padding-left: 4px;
}
.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}
.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	font-size: 1rem;
	transition: var(--transition);
}
.footer-social a:hover {
	border-color: var(--primary);
	background: rgba(14, 165, 233, 0.15);
	color: var(--primary-light);
	transform: translateY(-2px);
}
/* WeChat QR Code Popup */
.footer-social .wechat-wrap {
	position: relative;
}
.footer-social .wechat-qr {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background: #fff;
	border-radius: 12px;
	padding: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
	pointer-events: none;
	width: 164px;
	min-width: 164px;
}
.footer-social .wechat-qr::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: #fff;
}
.footer-social .wechat-qr img {
	width: 140px;
	height: 140px;
	display: block;
	border-radius: 6px;
}
.footer-social .wechat-qr p {
	text-align: center;
	font-size: 0.75rem;
	color: #666;
	margin-top: 8px;
	max-width: none;
	line-height: 1.4;
}
.footer-social .wechat-wrap:hover .wechat-qr {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
/* 小红书 SVG 图标 */
.icon-xiaohongshu {
	width: 1em;
	height: 1em;
	fill: currentColor;
	vertical-align: -0.125em;
}
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--text-secondary);
	font-size: 0.9rem;
}
.footer-contact li i {
	color: var(--accent);
	margin-top: 4px;
}
.footer-stats {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-stats li {
	color: var(--text-muted);
	font-size: 0.875rem;
}
.footer-stats .stat-num {
	display: inline-block;
	margin-right: 6px;
	font-weight: 700;
}
.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.footer-bottom p {
	color: var(--text-muted);
	font-size: 0.875rem;
}
.footer-bottom-links {
	display: flex;
	gap: 24px;
}
.footer-bottom-links a {
	color: var(--text-muted);
	font-size: 0.875rem;
}
.footer-bottom-links a:hover {
	color: var(--accent);
}
.footer-nav {
	display: flex;
	gap: 24px;
}
.footer-nav a {
	color: var(--text-muted);
	font-size: 0.875rem;
}
.footer-nav a:hover {
	color: var(--accent);
}
/* ========== Back to Top Button ========== */
.back-to-top {
	position: fixed;
	bottom: 32px;
	right: 32px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--gradient-1);
	color: #fff;
	border: none;
	font-size: 1.2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 900;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: var(--transition);
	box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}
.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.back-to-top:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(14, 165, 233, 0.6);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(40px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
 @keyframes fadeIn {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
 @keyframes float {
 0%, 100% {
transform: translateY(0);
}
 50% {
transform: translateY(-15px);
}
}
 @keyframes pulse {
 0%, 100% {
 box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
}
 50% {
 box-shadow: 0 0 0 20px rgba(14, 165, 233, 0);
}
}
 @keyframes rotateBg {
 from {
transform: rotate(0deg);
}
to {
	transform: rotate(360deg);
}
}
/* Scroll Trigger Animation */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0);
}
.animate-on-scroll:nth-child(2) {
	transition-delay: 0.1s;
}
.animate-on-scroll:nth-child(3) {
	transition-delay: 0.2s;
}
.animate-on-scroll:nth-child(4) {
	transition-delay: 0.3s;
}
.animate-on-scroll:nth-child(5) {
	transition-delay: 0.4s;
}
.animate-on-scroll:nth-child(6) {
	transition-delay: 0.5s;
}
/* ========== Utilities ========== */
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mb-60 {
	margin-bottom: 60px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-40 {
	margin-top: 40px;
}
.mt-60 {
	margin-top: 60px;
}
.tag {
	display: inline-block;
	padding: 4px 12px;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 50px;
	background: rgba(14, 165, 233, 0.15);
	color: var(--primary-light);
	border: 1px solid rgba(14, 165, 233, 0.2);
}
a.tag.active {
	background: var(--gradient-1);
	color: #fff;
	border-color: transparent;
}
.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 50px;
	background: var(--gradient-1);
	color: #fff;
}
.badge-outline {
	background: transparent;
	border: 1px solid var(--primary);
	color: var(--primary-light);
}

/* ========== Responsive: 1024px Tablet ========== */
@media (max-width: 1024px) {
h1 {
	font-size: 2.8rem;
}
h2 {
	font-size: 2rem;
}
.grid-4 {
	grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
	grid-template-columns: repeat(2, 1fr);
}
.hero-content h1 {
	font-size: 3rem;
}
.hero-stats {
	gap: 40px;
}
.stats-grid {
	grid-template-columns: repeat(2, 1fr);
}
.footer-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.timeline-item {
	padding: 0 30px 40px;
}
.timeline-item:nth-child(odd) {
	padding-right: 40px;
}
.timeline-item:nth-child(even) {
	padding-left: 40px;
}
}

/* ========== Responsive: 768px Mobile ========== */
@media (max-width: 768px) {
html {
	font-size: 15px;
}
h1 {
	font-size: 2.2rem;
}
h2 {
	font-size: 1.75rem;
}
h3 {
	font-size: 1.3rem;
}
section {
	padding: 70px 0;
}
.container {
	padding: 0 16px;
}
/* Navigation - Hamburger Menu */
.menu-toggle {
	display: flex;
}
.nav-close {
	display: flex;
}
.nav-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 280px;
	height: 100vh;
	background: rgba(6, 9, 24, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 80px 32px 40px;
	gap: 0;
	transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 999;
	border-left: 1px solid var(--border-color);
	overflow-y: auto;
}
.nav-menu.active {
	right: 0;
}
.nav-menu a {
	font-size: 1.1rem;
	padding: 14px 0;
	width: 100%;
	border-bottom: 1px solid var(--border-color);
}
.nav-actions .btn {
	display: none;
}
/* Hero Mobile */
.hero {
	min-height: 70vh;
}
.hero-content h1 {
	font-size: 2.2rem;
}
.hero-content p {
	font-size: 1.05rem;
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 25px;
}
.hero-stats .stat-number {
	font-size: 2rem;
}
.hero-buttons {
	flex-direction: column;
	align-items: center;
}
/* Grids Mobile */
.grid-2, .grid-3 {
	grid-template-columns: 1fr;
}
.grid-4 {
	grid-template-columns: repeat(2, 1fr);
}
/* Agents page mobile cards */
.agent-card {
	border: 2px solid rgba(102, 126, 234, 0.5) !important;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.12) !important;
}
.agent-card:first-child {
	margin-bottom: 20px !important;
}
.stats-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.stat-box .stat-number {
	font-size: 2.2rem;
}
/* Page Banner Mobile */
.page-banner {
	padding: 130px 0 60px;
}
.page-banner h1 {
	font-size: 2rem;
}
/* Timeline Mobile - Single Column */
.timeline::before {
	left: 20px;
}
.timeline-item {
	width: 100%;
	padding: 0 0 40px 50px;
}
.timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
	left: 0;
	text-align: left;
	padding-left: 50px;
	padding-right: 0;
}
.timeline-item:nth-child(odd)::before, .timeline-item:nth-child(even)::before {
	left: 12px;
	right: auto;
}
/* Footer Mobile */
.footer-grid {
	grid-template-columns: 1fr;
	gap: 32px;
}
.footer-bottom {
	flex-direction: column;
	text-align: center;
}
.footer-bottom-links {
	justify-content: center;
}
.footer-nav {
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 24px;
}
/* CTA Mobile */
.cta-content h2 {
	font-size: 1.8rem;
}
.section-header {
	margin-bottom: 40px;
}
/* About Us: Founder Card Mobile */
.founder-card {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 24px !important;
	padding: 24px !important;
}
.founder-card > div:first-child {
	text-align: center !important;
}
.founder-card > div:first-child > div:first-child {
	width: 180px !important;
	height: 180px !important;
}
/* About Us: Hailan Letter Section Spacing */
.hailan-letter-section {
	padding: 0 0 40px !important;
}
.letter-card {
	padding: 24px !important;
}
.letter-quote-mark {
	font-size: 5rem !important;
	top: -10px !important;
}
.letter-title {
	font-size: 1.2rem !important;
}
/* About Us: Honors Carousel Mobile */
.honors-carousel {
	gap: 0 !important;
}
.honors-carousel .carousel-btn {
	display: none !important;
}
.honors-carousel-wrapper {
	flex: 1 !important;
	width: 100% !important;
	overflow: hidden !important;
}
.honors-track {
	gap: 12px !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch !important;
	scroll-snap-type: x mandatory !important;
	scrollbar-width: none !important;
}
.honors-track::-webkit-scrollbar {
	display: none !important;
}
.honors-item {
	flex: 0 0 calc(50% - 6px) !important;
	min-width: 0 !important;
}
}

/* ========== Responsive: 480px Small Screen ========== */
@media (max-width: 480px) {
html {
	font-size: 14px;
}
h1 {
	font-size: 1.9rem;
}
h2 {
	font-size: 1.5rem;
}
h3 {
	font-size: 1.15rem;
}
section {
	padding: 50px 0;
}
.container {
	padding: 0 12px;
}
.hero {
	min-height: 65vh;
	padding-top: 70px;
}
.hero-content h1 {
	font-size: 1.9rem;
}
.hero-content p {
	font-size: 0.95rem;
}
.btn {
	padding: 12px 24px;
	font-size: 0.9rem;
	width: 100%;
}
.btn-sm {
	padding: 15px 18px;
	font-size: 0.875rem;
	width: auto;
}
.card {
	padding: 24px;
}
.case-card {
	padding: 0;
	overflow: hidden;
}
.feature-card {
	padding: 32px 20px;
}
.news-card {
	padding: 0;
}
.stats-grid {
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.stat-box .stat-number {
	font-size: 1.8rem;
}
.page-banner {
	padding: 110px 0 50px;
}
.page-banner h1 {
	font-size: 1.7rem;
}
.cta-content h2 {
	font-size: 1.5rem;
}
.cta-content p {
	font-size: 1rem;
}
.timeline-item {
	padding-left: 40px;
}
.timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
	padding-left: 40px;
}
.footer {
	padding: 50px 0 0;
}
.footer-grid {
	gap: 24px;
}
.team-card .team-avatar {
	width: 80px;
	height: 80px;
}
.nav-menu {
	width: 100%;
	right: -100%;
}
.nav-menu.active {
	right: 0;
}
.back-to-top {
	bottom: 20px;
	right: 20px;
	width: 42px;
	height: 42px;
	font-size: 1rem;
}
}

/* ========== Touch Device Fixes ========== */
@media (hover: none) and (pointer: coarse) {
.card:hover {
	transform: none;
	box-shadow: none;
}
.card:active {
	transform: translateY(-4px);
	background: var(--bg-card-hover);
	border-color: rgba(14, 165, 233, 0.3);
}
.btn-primary:hover {
	transform: none;
}
.btn-primary:active {
	transform: translateY(-2px);
}
}
/* ========== Clickable Tags ========== */
.news-filter .tag, .case-filter .tag {
	cursor: pointer;
	user-select: none;
	transition: var(--transition);
}
.news-filter .tag:hover, .case-filter .tag:hover {
	background: rgba(14, 165, 233, 0.25);
}
.news-filter .tag.active {
	background: var(--gradient-1);
	color: #fff;
	border-color: transparent;
}

/* ========== Partner Scroll ========== */
@keyframes partnerScroll {
 0% {
transform: translateX(0);
}
 100% {
transform: translateX(-50%);
}
}
.partner-scroll-wrapper:hover .partner-scroll-track {
	animation-play-state: paused;
}
.partner-scroll-wrapper.dragging .partner-scroll-track {
	animation-play-state: paused;
}
.partner-scroll-wrapper.dragging {
	cursor: grabbing;
}
/* News Page Specific Styles */
.news-filter {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.news-filter .tag {
	cursor: pointer;
	padding: 8px 20px;
	font-size: 0.875rem;
	transition: var(--transition);
}
.news-filter .tag:hover, .news-filter .tag.active {
	background: var(--gradient-1);
	color: #fff;
	border-color: transparent;
}
.featured-news {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-bottom: 60px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	overflow: hidden;
	transition: var(--transition);
}
.featured-news:hover {
	border-color: rgba(14, 165, 233, 0.3);
	box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
}
.featured-news .featured-image {
	width: 100%;
	height: 100%;
	min-height: 360px;
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(99, 102, 241, 0.15));
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.featured-news .featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.featured-news .featured-content {
	padding: 48px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.featured-news .featured-content .tag {
	align-self: flex-start;
	margin-bottom: 16px;
}
.featured-news .featured-content h2 {
	font-size: 1.75rem;
	margin-bottom: 16px;
	line-height: 1.4;
}
.featured-news .featured-content p {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 24px;
}
.featured-news .featured-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--text-muted);
	font-size: 0.875rem;
	margin-bottom: 24px;
}
.featured-news .read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent);
	font-weight: 600;
	font-size: 0.95rem;
}
.featured-news .read-more:hover {
	gap: 12px;
}
.news-card .news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-card .read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	color: var(--accent);
	font-weight: 600;
	font-size: 0.9rem;
}
.news-card .read-more:hover {
	gap: 10px;
}
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 60px;
}
.pagination a, .pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-weight: 600;
	transition: var(--transition);
}
.pagination a:hover {
	border-color: var(--primary);
	background: rgba(14, 165, 233, 0.1);
	color: var(--text-primary);
}
.pagination .active {
	background: var(--gradient-1);
	color: #fff;
	border-color: transparent;
}
.pagination .prev, .pagination .next {
	width: auto;
	padding: 0 16px;
	gap: 6px;
}
 @media (max-width: 768px) {
.featured-news {
	grid-template-columns: 1fr;
}
.featured-news .featured-image {
	min-height: 220px;
}
.featured-news .featured-content {
	padding: 28px 24px;
}
.featured-news .featured-content h2 {
	font-size: 1.35rem;
}
.featured-case {
	grid-template-columns: 1fr;
}
.featured-case-image {
	min-height: 220px;
}
.featured-case-content {
	padding: 28px 24px;
}
.featured-case-content h2 {
	font-size: 1.35rem;
}
.featured-case-content > a:last-child {
	margin-top: 10px !important;
	padding-top: 16px !important;
}
.featured-case-content .tag {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-top: 0 !important;
	margin-bottom: 12px !important;
	padding: 4px 10px !important;
	line-height: 1.3 !important;
}
.featured-case-tags {
	margin-top: 12px !important;
	margin-bottom: 12px !important;
}
.featured-case-tags .badge {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 4px 10px !important;
	line-height: 1.3 !important;
}
}
/* News Detail Styles */
.article-header {
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: center;
}
.article-header .tag {
	margin-bottom: 16px;
	display: inline-block;
}
.article-header h1 {
	font-size: 2.2rem;
	line-height: 1.3;
	margin-bottom: 20px;
}
.article-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	color: var(--text-muted);
	font-size: 0.9rem;
	flex-wrap: wrap;
}
.article-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.article-cover {
	max-width: 900px;
	margin: 0 auto 48px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border-color);
}
.article-cover img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}
.article-body {
	max-width: 800px;
	margin: 0 auto;
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 2;
}
.article-body h2 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin: 48px 0 20px;
}
.article-body h3 {
	font-size: 1.25rem;
	color: var(--text-primary);
	margin: 36px 0 16px;
}
.article-body p {
	margin-bottom: 20px;
}
.article-body blockquote {
	border-left: 3px solid var(--primary);
	padding: 16px 24px;
	margin: 32px 0;
	background: rgba(14, 165, 233, 0.06);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	color: var(--text-primary);
	font-style: italic;
}
.article-body ul, .article-body ol {
	padding-left: 24px;
	margin-bottom: 20px;
}
.article-body li {
	margin-bottom: 10px;
	list-style: disc;
}
.article-body ol li {
	list-style: decimal;
}
.article-body img {
	width: 100%;
	border-radius: var(--radius-sm);
	margin: 24px 0;
}
.article-tags {
	max-width: 800px;
	margin: 48px auto 0;
	padding-top: 32px;
	border-top: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.article-tags span.label-text {
	color: var(--text-muted);
	font-size: 0.9rem;
}
.article-share {
	max-width: 800px;
	margin: 24px auto 0;
	display: flex;
	align-items: center;
	gap: 12px;
}
.article-share span {
	color: var(--text-muted);
	font-size: 0.9rem;
}
.article-share a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	font-size: 1rem;
	transition: var(--transition);
}
.article-share a:hover {
	border-color: var(--primary);
	color: var(--text-primary);
	background: rgba(14, 165, 233, 0.1);
}
.article-share .wechat-wrap {
	position: relative;
}
.article-share .wechat-wrap a {
	cursor: pointer;
}
.article-share .wechat-qr {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background: #fff;
	border-radius: 12px;
	padding: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
	pointer-events: none;
	width: 164px;
	min-width: 164px;
}
.article-share .wechat-qr::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: #fff;
}
.article-share .wechat-qr img {
	width: 140px;
	height: 140px;
	display: block;
	border-radius: 6px;
}
.article-share .wechat-qr p {
	text-align: center;
	font-size: 0.75rem;
	color: #666;
	margin-top: 8px;
	max-width: none;
	line-height: 1.4;
}
.article-share .wechat-wrap:hover .wechat-qr {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
/* Article Navigation */
.article-nav {
	max-width: 800px;
	margin: 60px auto 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.article-nav a {
	display: block;
	padding: 24px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}
.article-nav a:hover {
	border-color: rgba(14, 165, 233, 0.3);
	background: var(--bg-card-hover);
}
.article-nav .nav-label {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.article-nav .nav-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	line-height: 1.4;
}
.article-nav .next-article {
	text-align: right;
}
.article-nav .next-article .nav-label {
	justify-content: flex-end;
}
/* Related News */
.related-news {
	padding: 100px 0;
}
 @media (max-width: 768px) {
.article-header {
	text-align: center;
}
.article-header h1 {
	font-size: 1.75rem;
}
.article-cover img {
	height: 240px;
}
.article-body {
	font-size: 1rem;
}
.article-nav {
	grid-template-columns: 1fr;
}
.article-nav .next-article {
	text-align: left;
}
.article-nav .next-article .nav-label {
	justify-content: flex-start;
}
/* 文章内视频案例 - 手机端三胶囊一行，二维码在下 */
/* 匹配视频案例卡片的父级 */
.article-body .highlight-box ~ div[style*="margin:48px"] > div[style*="display:flex"][style*="gap:40px"],
.article-body hr ~ div[style*="margin:48px"] > div[style*="display:flex"][style*="gap:40px"] {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 16px !important;
}
/* 如果上面的选择器匹配不到，用更宽泛的匹配 */
.article-body div[style*="margin:48px 0 32px"] > div[style*="display:flex"][style*="gap:40px"],
.article-body div[style*="margin:48px 0"] > div[style*="gap:40px"][style*="display:flex"] {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 16px !important;
}
/* 胶囊标签行 - 所有含 flex-wrap 的内层 div */
.article-body div[style*="margin:48px"] > div[style*="gap:40px"] > div > div[style*="flex-wrap:wrap"] {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 8px !important;
	justify-content: center !important;
}
/* 胶囊 span */
.article-body div[style*="margin:48px"] > div[style*="gap:40px"] > div > div[style*="flex-wrap:wrap"] > span {
	white-space: nowrap !important;
	flex-shrink: 0 !important;
}
/* 二维码区域 */
.article-body div[style*="margin:48px"] > div[style*="gap:40px"] > div[style*="flex-shrink:0"] {
	text-align: center !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
}
.article-body div[style*="margin:48px"] > div[style*="gap:40px"] > div[style*="flex-shrink:0"] img {
	width: 140px !important;
	height: auto !important;
	margin: 0 auto !important;
	display: block !important;
}
}
.apply-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.apply-modal-overlay.active {
	display: flex;
}
.apply-modal {
	background: var(--bg-darker);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	padding: 40px;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	animation: modalFadeIn 0.3s ease;
}
 @keyframes modalFadeIn {
 from {
opacity: 0;
transform: translateY(20px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
.apply-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	background: transparent;
	color: var(--text-secondary);
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	z-index: 1;
}
.apply-modal-close:hover {
	border-color: var(--primary);
	color: var(--text-primary);
	background: rgba(14, 165, 233, 0.15);
}
.apply-modal-header {
	margin-bottom: 28px;
}
.apply-modal-header h3 {
	font-size: 1.4rem;
}
/* ========== 移动端页脚隐藏联系信息 ========== */
@media (max-width: 768px) {
	.footer-col-contact {
		display: none !important;
	}
	/* 页脚成功案例/学员战报：桌面端隐藏，移动端显示3列布局 */
	.footer-col-split {
		display: none !important;
	}
	.desktop-results {
		display: none !important;
	}
	/* 隐藏桌面端的h4标题 */
	.footer-group h4 {
		display: none !important;
	}
	.mobile-results {
		display: grid !important;
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 0 !important;
		margin: 20px auto 0 !important;
		max-width: 320px !important;
		text-align: center !important;
	}
	.mobile-section-title {
		display: block !important;
		font-size: 0.95rem !important;
		font-weight: 700 !important;
		margin-bottom: 8px !important;
		color: var(--text-primary) !important;
	}
	.mobile-results a {
		color: var(--text-secondary) !important;
		font-size: 0.82rem !important;
		display: block !important;
		padding: 4px 0 !important;
		transition: var(--transition) !important;
	}
}
/* ========== 移动端微信浮动按钮 ========== */
@media (max-width: 768px) {
/* 成功案例标签间距 */
a.tag {
	margin: 4px !important;
	padding: 6px 14px !important;
	font-size: 0.8rem !important;
}
.wechat-float {
	top: auto !important;
	bottom: 80px !important;
	right: 16px !important;
	transform: none !important;
}
.wechat-float-tab {
	flex-direction: column !important;
	background: var(--primary) !important;
	color: #fff !important;
	width: 48px !important;
	height: 48px !important;
	padding: 0 !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: 0 4px 16px rgba(14,165,233,0.3) !important;
	animation: wechatBounce 2s ease-in-out infinite !important;
	cursor: pointer !important;
	font-size: 0 !important;
}
.wechat-float-tab i {
	font-size: 1.4rem !important;
	margin: 0 !important;
}
.wechat-float-tab::after,
.wechat-float-tab .wechat-text {
	display: none !important;
}
.wechat-float-popup {
	display: none !important;
}
.wechat-float-popup.active {
	position: fixed !important;
	bottom: 140px !important;
	right: 16px !important;
	top: auto !important;
	transform: none !important;
	display: block !important;
}
.wechat-float-tab.active {
	display: none !important;
}
@keyframes wechatBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
}
 @media (max-width: 480px) {
.apply-modal {
	padding: 28px 20px;
}
}
/* Contact Page Specific Styles */
.contact-cards .card {
	text-align: center;
}
.contact-cards .card-icon {
	margin: 0 auto 24px;
}
.contact-cards .card h3 {
	margin-bottom: 8px;
}
.contact-cards .card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}
@media (max-width: 768px) {
	.contact-cards .grid-4 {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
.contact-map-section {
	padding: 0;
}
.map-full {
	width: 100%;
	height: 400px;
	border-radius: var(--radius);
	overflow: hidden;
}
.contact-form-section {
	padding: 100px 0;
}
.contact-form-wrapper .card {
	padding: 40px;
}
.map-placeholder {
	width: 100%;
	height: 260px;
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 1rem;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}
.map-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.map-placeholder i {
	font-size: 2.5rem;
	margin-right: 12px;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.office-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.office-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}
.office-item:hover {
	border-color: rgba(108,92,231,0.3);
	background: var(--bg-card-hover);
}
.office-item .office-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--gradient-1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1rem;
	flex-shrink: 0;
}
.office-item .office-info h4 {
	font-size: 1rem;
	margin-bottom: 4px;
}
.office-item .office-info p {
	color: var(--text-secondary);
	font-size: 0.875rem;
}
/* FAQ Styles */
.faq-section {
	padding: 100px 0;
}
.faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.faq-list details {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	transition: var(--transition);
	overflow: hidden;
}
.faq-list details[open] {
	border-color: rgba(108,92,231,0.3);
	background: var(--bg-card-hover);
}
.faq-list details summary {
	padding: 20px 24px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--text-primary);
	transition: var(--transition);
}
 .faq-list details summary::-webkit-details-marker {
 display: none;
}
.faq-list details summary::after {
	content: '\f078';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 0.8rem;
	color: var(--text-muted);
	transition: transform 0.3s ease;
}
.faq-list details[open] summary::after {
	transform: rotate(180deg);
}
.faq-list details .faq-answer {
	padding: 0 24px 20px;
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
}
.legal-content {
	max-width: 860px;
	margin: 0 auto;
}
.legal-nav {
	display: flex;
	gap: 16px;
	margin-bottom: 60px;
	justify-content: center;
	flex-wrap: wrap;
}
.legal-nav a {
	padding: 12px 28px;
	border-radius: 50px;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-weight: 600;
	font-size: 0.95rem;
	transition: var(--transition);
}
.legal-nav a:hover {
	border-color: var(--primary);
	background: rgba(14, 165, 233, 0.1);
	color: var(--text-primary);
}
.legal-section {
	margin-bottom: 80px;
}
.legal-section h2 {
	font-size: 2rem;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.legal-section h2 i {
	font-size: 1.5rem;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.legal-section .update-date {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 36px;
}
.legal-section h3 {
	font-size: 1.25rem;
	margin: 36px 0 16px;
	color: var(--text-primary);
}
.legal-section p {
	color: var(--text-secondary);
	line-height: 1.9;
	margin-bottom: 16px;
	font-size: 1rem;
}
.legal-section ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.legal-section ul li {
	color: var(--text-secondary);
	line-height: 1.9;
	margin-bottom: 8px;
	list-style: disc;
}
.legal-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
	margin: 80px 0;
}
 @media (max-width: 768px) {
.legal-section h2 {
	font-size: 1.5rem;
}
.legal-section h3 {
	font-size: 1.1rem;
}
}
/* Case Detail Styles */
.case-overview {
	padding: 40px 0;
}
.case-overview-header {
	max-width: 800px;
	margin: 0 auto 24px;
	text-align: center;
}
.case-overview-header .badge {
	margin-bottom: 8px;
	display: inline-block;
}
.case-overview-header h1 {
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 12px;
}
.case-overview-header p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	line-height: 1.8;
}
.case-cover {
	max-width: 1000px;
	margin: 0 auto 60px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border-color);
}
.case-cover img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	display: block;
}
/* Key Metrics */
.case-metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto 80px;
}
.case-metric-item {
	text-align: center;
	padding: 32px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}
.case-metric-item:hover {
	border-color: rgba(14, 165, 233, 0.3);
	background: var(--bg-card-hover);
}
.case-metric-value {
	font-size: 2.2rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 8px;
}
.case-metric-label {
	font-size: 0.9rem;
	color: var(--text-muted);
}
/* Case Content */
.case-content-section {
	padding: 40px 0 20px;
}
.case-body {
	max-width: 800px;
	margin: 0 auto;
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 2;
}
.case-body h2 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin: 48px 0 20px;
	padding-left: 16px;
	border-left: 3px solid var(--primary);
}
.case-body h3 {
	font-size: 1.2rem;
	color: var(--text-primary);
	margin: 32px 0 14px;
}
.case-body p {
	margin-bottom: 20px;
}
.case-body ul {
	padding-left: 24px;
	margin-bottom: 20px;
}
.case-body li {
	margin-bottom: 10px;
	list-style: disc;
}
.case-body img {
	width: 100%;
	border-radius: var(--radius-sm);
	margin: 28px 0;
}
/* Info Card */
.case-info-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	padding: 36px;
	margin: 40px 0;
}
.case-info-card h4 {
	font-size: 1.1rem;
	margin-bottom: 20px;
	color: var(--text-primary);
}
.case-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.case-info-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.case-info-item i {
	color: var(--primary-light);
	margin-top: 4px;
	flex-shrink: 0;
}
.case-info-item .info-label {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-bottom: 2px;
}
.case-info-item .info-value {
	font-size: 0.95rem;
	color: var(--text-primary);
	font-weight: 500;
}
/* Testimonial */
.case-testimonial {
	max-width: 800px;
	margin: 60px auto;
	padding: 40px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	position: relative;
}
.case-testimonial .quote-icon {
	font-size: 2rem;
	color: var(--primary-light);
	opacity: 0.3;
	margin-bottom: 16px;
}
.case-testimonial p {
	font-size: 1.05rem;
	line-height: 1.9;
	color: var(--text-secondary);
	margin-bottom: 20px;
	font-style: italic;
}
.case-testimonial .testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.case-testimonial .testimonial-author img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}
.case-testimonial .author-name {
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-primary);
}
.case-testimonial .author-role {
	font-size: 0.875rem;
	color: var(--text-muted);
}
 @media (max-width: 768px) {
.case-overview {
	padding: 20px 0 !important;
}
.case-overview-header {
	margin-bottom: 12px !important;
}
.case-content-section {
	padding: 20px 0 10px !important;
}
.case-overview-header h1 {
	font-size: 1.75rem;
}
.case-cover img {
	height: 240px;
}
.case-metrics {
	grid-template-columns: repeat(2, 1fr);
}
.case-metric-value {
	font-size: 1.8rem;
}
.case-info-grid {
	grid-template-columns: 1fr;
}
.case-body {
	font-size: 1rem;
}
/* 案例页视频案例 - 手机端三胶囊一行，二维码在下 */
.case-body > div[style*="margin:48px"] > div[style*="gap:40px"] {
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 16px !important;
}
.case-body > div[style*="margin:48px"] > div[style*="gap:40px"] > div[style*="flex:1"] > div[style*="flex-wrap:wrap"] {
	flex-wrap: nowrap !important;
	gap: 8px !important;
	justify-content: center !important;
}
.case-body > div[style*="margin:48px"] > div[style*="gap:40px"] > div[style*="flex:1"] > div[style*="flex-wrap:wrap"] > span {
	white-space: nowrap !important;
	flex-shrink: 0 !important;
}
.case-body > div[style*="margin:48px"] > div[style*="gap:40px"] > div[style*="flex-shrink:0"] {
	width: 100% !important;
	flex: 1 !important;
	text-align: center !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
}
.case-body > div[style*="margin:48px"] > div[style*="gap:40px"] > div[style*="flex-shrink:0"] img {
	width: 140px !important;
	height: auto !important;
	margin: 0 auto !important;
	display: block !important;
}
}

/* ========== Floating WeChat Button ========== */
.wechat-float {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: flex;
	align-items: center;
}
.wechat-float-tab {
	flex-direction: column;
	background: var(--primary);
	color: #fff;
	padding: 0;
	border-radius: 50%;
	width: 56px;
	height: 56px;
	font-size: 0.7rem;
	line-height: 1.2;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	box-shadow: 0 2px 16px rgba(14, 165, 233, 0.4);
	transition: all 0.3s ease;
	overflow: hidden;
}
.wechat-float-tab.hidden {
	display: none;
}
.wechat-float-tab.active {
	display: none;
}
.wechat-float-tab:hover {
	background: var(--primary-dark);
}
.wechat-float-tab i {
	font-size: 1.2rem;
	margin: 0;
	display: block;
	line-height: 1;
}
.wechat-float-tab .wechat-text {
	display: block;
	font-size: 0.6rem;
	margin-top: 2px;
	white-space: nowrap;
}
.wechat-float-popup {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	padding: 16px;
	width: 150px;
	display: none;
}
.wechat-float-popup.active {
	display: block !important;
	animation: wechatSlideIn 0.3s ease;
}
.wechat-float-popup.hidden {
	display: none !important;
}
.wechat-float-close {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 22px;
	height: 22px;
	min-width: 22px;
	min-height: 22px;
	line-height: 22px;
	border: none;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	opacity: 0.8;
	cursor: pointer;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s;
	z-index: 10;
}
.wechat-float-close:hover {
	background: rgba(0, 0, 0, 0.8);
	opacity: 1;
}
.wechat-float-qr {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.wechat-float-qr img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	margin-bottom: 8px;
}
.wechat-float-qr p {
	font-size: 0.8rem;
	color: #000;
	margin: 0;
	font-weight: 600;
}
.wechat-float-qr p:last-child {
	font-size: 0.7rem;
	color: #333;
	margin-top: 4px;
}
.wechat-float-btn {
	display: block;
	width: 100%;
	padding: 8px 0;
	margin-top: 10px;
	background: linear-gradient(135deg, #0EA5E9, #6366F1);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
}
.wechat-float-btn:hover {
	opacity: 0.9;
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}
@keyframes wechatSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50%) translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateY(-50%) translateX(0);
	}
}

/* ========== Testimonial Carousel ========== */
.testimonial-carousel {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 60px;
}
.testimonial-carousel-wrapper {
	flex: 1;
	overflow: hidden;
	max-width: 860px;
	margin: 0 auto;
}
.testimonial-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-snap-stop: always;
	padding-bottom: 8px;
	scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar {
	display: none;
}
/* 文字版客户评价卡片 */
.testimonial-item {
	flex: 0 0 calc((100% - 40px) / 3);
	scroll-snap-align: start;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 42px 32px 36px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	transition: all 0.3s ease;
}
.testimonial-item:hover {
	border-color: rgba(14, 165, 233, 0.3);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.testimonial-quote-mark {
	font-size: 3rem;
	line-height: 1;
	color: var(--accent);
	opacity: 0.3;
	font-family: Georgia, serif;
	position: absolute;
	top: 16px;
	left: 28px;
}
.testimonial-content {
	flex: 1;
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.7;
	text-indent: 2em;
}
.testimonial-content p {
	margin: 0;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--border-color);
}
.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: #0EA5E9;
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.testimonial-avatar .avatar-text {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
}
.testimonial-info {
	flex: 1;
	min-width: 0;
}
.testimonial-name {
	color: var(--text-primary);
	font-weight: 600;
	font-size: 0.82rem;
	line-height: 1.4;
	word-break: break-all;
}

/* ========== Honors Carousel ========== */
.honors-carousel {
	display: flex;
	align-items: center;
	gap: 16px;
}
.honors-carousel-wrapper {
	overflow: hidden;
	/* 4 cards: 4×225 + 3×20 = 960px */
	flex: 0 0 960px;
	margin: 0 auto;
}
.honors-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-snap-stop: always;
	padding-bottom: 8px;
	scrollbar-width: none;
}
.honors-track::-webkit-scrollbar {
	display: none;
}
.honors-item {
	flex: 0 0 225px;
	border-radius: 12px;
	overflow: hidden;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}
.honors-item:hover {
	border-color: rgba(14, 165, 233, 0.5);
	box-shadow: 0 0 20px rgba(14, 165, 233, 0.2), 0 0 40px rgba(14, 165, 233, 0.1);
	cursor: pointer;
}
.honors-item img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	display: block;
}

/* ========== Team Gallery ========== */
.team-gallery {
	display: flex;
	flex-direction: column;
	gap: 16px;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.team-row {
	overflow: hidden;
}
.team-scroll {
	display: flex;
	gap: 16px;
	width: max-content;
}
.team-row-left .team-scroll {
	animation: teamScrollLeft 40s linear infinite;
}
.team-row-right .team-scroll {
	animation: teamScrollRight 40s linear infinite;
}
.team-row:hover .team-scroll {
	animation-play-state: paused;
}
.team-photo {
	flex: 0 0 200px;
	height: 200px;
	border-radius: 16px;
	overflow: hidden;
	border: 2px solid rgba(255,255,255,0.05);
	transition: all 0.4s ease;
	cursor: pointer;
}
.team-photo:hover {
	transform: scale(1.08);
	border-color: var(--accent);
	box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
	z-index: 2;
}
.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ========== Team Lightbox ========== */
.team-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.team-lightbox.active {
	opacity: 1;
	visibility: visible;
}
.team-lightbox img {
	max-width: 80vw;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: transform 0.3s ease;
}
.team-lightbox.active img {
	transform: scale(1);
}
.lightbox-close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.1);
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}
.lightbox-close:hover {
	background: rgba(255,255,255,0.2);
	border-color: rgba(255,255,255,0.4);
}

/* ========== Hailan Letter Section ========== */
.hailan-letter-section {
	padding: 60px 0 40px;
	background: transparent;
}
.hailan-letter {
	margin: 0;
}
.letter-card {
	position: relative;
	padding: 36px 40px;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(99,102,241,0.08));
	border: 1px solid rgba(14,165,233,0.15);
	overflow: hidden;
}
.letter-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 30% 50%, rgba(14,165,233,0.06), transparent 60%);
	pointer-events: none;
}
.letter-quote-mark {
	position: absolute;
	top: -20px;
	left: 32px;
	font-size: 8rem;
	line-height: 1;
	font-family: Georgia, serif;
	color: rgba(14,165,233,0.08);
	pointer-events: none;
}
.letter-content {
	position: relative;
	z-index: 1;
}
.letter-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 32px;
	color: #fff;
	font-family: Georgia, 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
	letter-spacing: 2px;
}
.letter-body p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 2;
	margin: 0 0 28px;
	text-indent: 2em;
}
.letter-body p:last-child {
	margin-bottom: 24px;
}
.letter-signature {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-top: 20px;
	margin-top: 32px;
	border-top: 1px solid rgba(255,255,255,0.12);
	text-align: right;
	justify-content: flex-end;
	align-items: flex-end;
}
.sign-name {
	font-size: 1rem;
	font-weight: 600;
	color: var(--accent);
	font-family: Georgia, 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
	letter-spacing: 1px;
}
.sign-title {
	font-size: 0.8rem;
	color: var(--text-secondary);
}
@keyframes teamScrollLeft {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@keyframes teamScrollRight {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

/* ===== Honors Carousel ===== */
.honors-item img {
	color: transparent;
	font-size: 0;
}
.honors-item img::after {
	content: '';
}

/* ===== Partners Marquee ===== */
.partners-marquee {
	overflow: hidden;
	position: relative;
	padding: 16px 0;
}
.partners-marquee::before,
.partners-marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}
.partners-marquee::before {
	left: 0;
	background: linear-gradient(to right, var(--bg-dark), transparent);
}
.partners-marquee::after {
	right: 0;
	background: linear-gradient(to left, var(--bg-dark), transparent);
}
.marquee-track {
	display: flex;
	gap: 32px;
	align-items: center;
	animation: marqueeScroll 40s linear infinite;
	width: max-content;
}
.marquee-track:hover {
	animation-play-state: paused;
}
@keyframes marqueeScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.partner-logo-item {
	flex-shrink: 0;
	width: 140px;
	height: 64px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	transition: var(--transition);
}
.partner-logo-item:hover {
	border-color: rgba(14, 165, 233, 0.2);
	box-shadow: 0 0 20px rgba(14, 165, 233, 0.1);
}
.partner-logo-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: 0.5;
	transition: var(--transition);
}
.partner-logo-item:hover img {
	opacity: 1;
}

/* ===== Classroom Gallery ===== */
.classroom-gallery {
	position: relative;
	padding: 16px 0 0;
}
.classroom-gallery::before,
.classroom-gallery::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}
.classroom-gallery::before {
	left: 0;
	background: linear-gradient(to right, var(--bg-darker), transparent);
}
.classroom-gallery::after {
	right: 0;
	background: linear-gradient(to left, var(--bg-darker), transparent);
}
.classroom-row {
	overflow: hidden;
	margin: 0 -60px;
	padding: 0 60px;
}
.classroom-scroll {
	display: flex;
	gap: 20px;
	align-items: center;
	animation: classroomScroll 35s linear infinite;
	width: max-content;
}
.classroom-scroll:hover {
	animation-play-state: paused;
}
@keyframes classroomScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.classroom-photo {
	flex-shrink: 0;
	width: 360px;
	height: 220px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	transition: var(--transition);
}
.classroom-photo:hover {
	border-color: rgba(14, 165, 233, 0.3);
	box-shadow: 0 0 24px rgba(14, 165, 233, 0.15);
	transform: scale(1.03);
}
.classroom-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: var(--transition);
}
.classroom-photo:hover img {
	filter: brightness(1.1);
}

/* ========== Agents Page ========== */
.agent-icon {
	width: 72px;
	height: 72px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.agent-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 24px;
}
.feature-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 12px;
	background: rgba(14, 165, 233, 0.08);
	border: 1px solid rgba(14, 165, 233, 0.15);
	border-radius: 20px;
	font-size: 0.78rem;
	color: var(--text-secondary);
	white-space: nowrap;
}
.step-number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--gradient-1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	margin: 0 auto 20px;
}
/* 上课场景轮播：移动端修复溢出 */
@media (max-width: 768px) {
	.classroom-row {
		margin: 0 !important;
		padding: 0 16px !important;
	}
	.classroom-gallery::before,
	.classroom-gallery::after {
		width: 60px !important;
	}
	.classroom-photo {
		width: 280px !important;
		height: 180px !important;
	}
}
/* 客户评价轮播：移动端 */
@media (max-width: 768px) {
	.testimonial-carousel .carousel-btn {
		display: none !important;
	}
	.testimonial-item {
		flex: 0 0 calc(100% - 10px) !important;
		padding: 19px 28px 16px !important;
	}
	.testimonial-quote-mark {
		top: 7px !important;
	}
}
