/* ========== Reset & Base ========== */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
 --primary: #6C5CE7;
 --primary-light: #A29BFE;
 --primary-dark: #4834D4;
 --accent: #00D2FF;
 --accent2: #7F5AF0;
 --bg-dark: #0A0E27;
 --bg-darker: #060918;
 --bg-card: rgba(255, 255, 255, 0.03);
 --bg-card-hover: rgba(255, 255, 255, 0.06);
 --text-primary: #FFFFFF;
 --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, #6C5CE7, #00D2FF);
 --gradient-2: linear-gradient(135deg, #7F5AF0, #2CB67D);
 --gradient-3: linear-gradient(135deg, #E040FB, #6C5CE7);
 --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.15);
 --radius: 16px;
 --radius-sm: 8px;
 --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 --max-width: 1200px;
}
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: 60px;
}
.section-header .label {
	display: inline-block;
	font-size: 0.85rem;
	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.85rem;
	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;
}
.btn-primary {
	background: var(--gradient-1);
	color: #fff;
	box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(108, 92, 231, 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(108, 92, 231, 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;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.5px;
}
.logo img {
	height: 36px;
	width: auto;
}
.logo .gradient-text {
	font-size: 1.5rem;
	font-weight: 800;
}
.nav-menu {
	display: flex;
	align-items: center;
	gap: 36px;
}
.nav-menu a {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text-secondary);
	position: relative;
	padding: 4px 0;
}
.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(108, 92, 231, 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(108, 92, 231, 0.12) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(0, 210, 255, 0.08) 0%, transparent 50%);
	animation: rotateBg 20s linear infinite;
}
.page-banner .container {
	position: relative;
	z-index: 2;
}
.page-banner h1 {
	font-size: 3rem;
	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);
}
/* ========== Hero Section (Homepage) ========== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 80px;
}
.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(108, 92, 231, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(0, 210, 255, 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: 0 24px;
}
.hero-content h1 {
	font-size: 4rem;
	margin-bottom: 24px;
	line-height: 1.1;
}
.hero-content p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 40px;
	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: 60px;
	margin-top: 80px;
	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(108, 92, 231, 0.05), transparent);
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}
.card:hover {
	transform: translateY(-8px);
	background: var(--bg-card-hover);
	border-color: rgba(108, 92, 231, 0.3);
	box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15), 0 0 40px rgba(108, 92, 231, 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-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;
}
/* Case Card */
.case-card {
	padding: 0;
	overflow: hidden;
}
.case-card .case-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
}
.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;
}
.case-card .case-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
/* 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.85rem;
	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.85rem;
	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.85rem;
	color: var(--text-secondary);
}
.team-card .team-social a:hover {
	border-color: var(--primary);
	background: rgba(108, 92, 231, 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;
}
.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* ========== Sections ========== */
section {
	padding: 100px 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: 80px 0;
	background: var(--bg-darker);
	position: relative;
	overflow: hidden;
}
.stats-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 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: 32px 16px;
}
.stat-box .stat-number {
	font-size: 3rem;
	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;
}
.stat-box .stat-label {
	font-size: 0.95rem;
	color: var(--text-secondary);
}
/* CTA Section */
.cta-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 210, 255, 0.1));
}
.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at 30% 50%, rgba(108, 92, 231, 0.2) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
}
.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(108, 92, 231, 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(108, 92, 231, 0.05);
	box-shadow: 0 0 0 3px rgba(108, 92, 231, 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: #1a1e3a;
	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(108, 92, 231, 0.35);
 border-radius: 3px;
 transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
 background: rgba(108, 92, 231, 0.6);
}

::-webkit-scrollbar-corner {
 background: transparent;
}
* {
	scrollbar-width: thin;
	scrollbar-color: rgba(108, 92, 231, 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 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 60px;
}
.footer-brand p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin-top: 16px;
	line-height: 1.7;
	max-width: 300px;
}
.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-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(108, 92, 231, 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-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.85rem;
}
.footer-bottom-links {
	display: flex;
	gap: 24px;
}
.footer-bottom-links a {
	color: var(--text-muted);
	font-size: 0.85rem;
}
.footer-bottom-links 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(108, 92, 231, 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(108, 92, 231, 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(108, 92, 231, 0.4);
}
 50% {
 box-shadow: 0 0 0 20px rgba(108, 92, 231, 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(108, 92, 231, 0.15);
	color: var(--primary-light);
	border: 1px solid rgba(108, 92, 231, 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: 90vh;
}
.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: 50px;
}
.hero-stats .stat-number {
	font-size: 2rem;
}
.hero-buttons {
	flex-direction: column;
	align-items: center;
}
/* Grids Mobile */
.grid-2, .grid-3, .grid-4 {
	grid-template-columns: 1fr;
}
.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;
}
/* CTA Mobile */
.cta-content h2 {
	font-size: 1.8rem;
}
.section-header {
	margin-bottom: 40px;
}
}

/* ========== 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: 85vh;
	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: 8px 18px;
	font-size: 0.85rem;
	width: auto;
}
.card {
	padding: 24px;
}
.feature-card {
	padding: 32px 20px;
}
.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(108, 92, 231, 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(108, 92, 231, 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.85rem;
	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(108, 92, 231, 0.3);
	box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
}
.featured-news .featured-image {
	width: 100%;
	height: 100%;
	min-height: 360px;
	background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 210, 255, 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.85rem;
	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(108, 92, 231, 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;
}
}
/* News Detail Styles */
.article-header {
	max-width: 800px;
	margin: 0 auto 40px;
}
.article-header .tag {
	margin-bottom: 16px;
	display: inline-block;
}
.article-header h1 {
	font-size: 2.5rem;
	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(108, 92, 231, 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(108, 92, 231, 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(108, 92, 231, 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 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;
}
}
.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(108, 92, 231, 0.15);
}
.apply-modal-header {
	margin-bottom: 28px;
}
.apply-modal-header h3 {
	font-size: 1.4rem;
}
 @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;
}
.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.85rem;
}
/* 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(108, 92, 231, 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: 80px 0;
}
.case-overview-header {
	max-width: 800px;
	margin: 0 auto 48px;
	text-align: center;
}
.case-overview-header .badge {
	margin-bottom: 16px;
	display: inline-block;
}
.case-overview-header h1 {
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 20px;
}
.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(108, 92, 231, 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: 80px 0;
}
.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.85rem;
	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.85rem;
	color: var(--text-muted);
}
 @media (max-width: 768px) {
.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;
}
}
