/* ============================================
   讯灵寰宇 - GEO+AI智能生态系统
   主样式文件
   ============================================ */

/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #6366f1;
    --secondary: #06b6d4;
    --accent: #8b5cf6;
    --bg: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-muted: #f1f5f9;
    --dark: #ffffff;
    --dark-light: #f8fafc;
    --card-bg: #ffffff;
    --text-light: #0f172a;
    --text-muted: #64748b;
    --text-subtle: #475569;
    --glass: rgba(99, 102, 241, 0.06);
    --border-color: rgba(99, 102, 241, 0.15);
    --border-light: rgba(15, 23, 42, 0.08);
    --surface-muted: rgba(15, 23, 42, 0.03);
    --nav-bg: rgba(255, 255, 255, 0.88);
    --nav-bg-scrolled: rgba(255, 255, 255, 0.98);
    --nav-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --dropdown-bg: #ffffff;
    --shadow-card: 0 12px 40px rgba(15, 23, 42, 0.08);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
    --gradient-3: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --gradient-heading: linear-gradient(135deg, #0f172a 0%, #4f46e5 50%, #06b6d4 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.18;
    animation: float-particle 15s infinite;
}

@keyframes float-particle {
    0%, 100% { 
        transform: translateY(100vh) rotate(0deg); 
        opacity: 0; 
    }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { 
        transform: translateY(-100vh) rotate(720deg); 
        opacity: 0; 
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

nav.scrolled {
    padding: 0.6rem 2rem;
    background: var(--nav-bg-scrolled);
    box-shadow: var(--nav-shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 56px;
    width: auto;
    max-width: min(240px, 52vw);
    display: block;
    object-fit: contain;
}

.logo-img-footer {
    height: 64px;
    max-width: 280px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% { box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(6, 182, 212, 0.6); }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-links > li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    margin: 0;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-dropdown-toggle i {
    font-size: 0.75rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown.is-current .nav-dropdown-toggle {
    color: var(--text-light);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    margin: 0;
    padding: 0.5rem;
    list-style: none;
    background: var(--dropdown-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a,
.nav-dropdown-menu .nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(99, 102, 241, 0.15);
    color: var(--text-light);
}

.nav-dropdown-menu a.is-active {
    background: rgba(99, 102, 241, 0.12);
}

.nav-dropdown-menu a i,
.nav-dropdown-menu .nav-dropdown-item i {
    font-size: 1.25rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.nav-dropdown-menu a span,
.nav-dropdown-menu .nav-dropdown-item span {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}

.nav-dropdown-menu a strong,
.nav-dropdown-menu .nav-dropdown-item strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-dropdown-menu a small,
.nav-dropdown-menu .nav-dropdown-item small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-dropdown-menu .nav-dropdown-ext {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: auto;
}

.nav-dropdown-menu a:hover .nav-dropdown-ext {
    color: var(--primary-light);
}

.nav-dropdown-menu .nav-dropdown-item.is-disabled {
    opacity: 0.48;
    cursor: default;
}

.nav-dropdown-menu .nav-dropdown-item.is-disabled i,
.nav-dropdown-menu .nav-dropdown-item.is-disabled strong,
.nav-dropdown-menu .nav-dropdown-item.is-disabled small {
    color: var(--text-muted);
}

.mobile-menu-sub .mobile-menu-item.is-disabled {
    display: block;
    padding: 0.65rem 1rem;
    color: var(--text-muted);
    opacity: 0.65;
    cursor: default;
    font-size: 0.95rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-2);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dropdown-bg);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--glass);
}

.mobile-menu-group-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-group-toggle:hover {
    background: var(--glass);
}

.mobile-menu-group-toggle i {
    font-size: 0.85rem;
    transition: var(--transition);
}

.mobile-menu-group.open .mobile-menu-group-toggle i {
    transform: rotate(180deg);
}

.mobile-menu-sub {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.25rem 0 0.25rem 1rem;
}

.mobile-menu-group.open .mobile-menu-sub {
    display: flex;
}

.mobile-menu-sub a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.mobile-menu.active {
    display: flex;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.24;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 55%),
        rgba(255, 255, 255, 0.76);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 950px;
    z-index: 2;
    padding: 2rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    animation: pulse-glow 2s infinite;
}

.hero-badge i {
    font-size: 1.25rem;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.5); }
}

.hero h1 {
    font-size: 4.25rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(99, 102, 241, 0.3);
    text-wrap: balance;
}

.hero-title-main {
    display: inline-block;
}

.hero-title-keep {
    white-space: nowrap;
}

.hero-title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 1rem;
    -webkit-text-fill-color: var(--text-subtle);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.25rem;
    color: #334155;
    margin-bottom: 3rem;
    line-height: 1.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Buttons */
.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn i {
    font-size: 1.25rem;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-light);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(99, 102, 241, 0.35);
}

.btn-outline:hover {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.5);
}

.btn-block {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    min-width: 160px;
}

.stat-item:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 20px; }
}

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

.scroll-indicator span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    pointer-events: none;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 20%;
    right: -10%;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 30%;
    left: -5%;
}

/* ============================================
   TRENDS SECTION
   ============================================ */
.trends-section {
    background: var(--bg);
}

.trends-image-container {
    margin-bottom: 4rem;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.2);
}

.trends-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.trends-image-container:hover .trends-image {
    transform: scale(1.02);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.stat-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25);
}

.stat-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.stat-card-icon i {
    font-size: 2rem;
    color: white;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   PRODUCT SECTION
   ============================================ */
.product-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.product-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-content h2 span {
    font-size: 1.5rem;
    font-weight: 600;
}

.product-content p {
    color: var(--text-subtle);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: var(--transition);
}

.product-feature:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(5px);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check i {
    font-size: 0.9rem;
    color: white;
}

.product-visual {
    position: relative;
}

.product-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
}

.product-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(10, 15, 28, 0.95));
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.product-video {
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.product-video-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-video-header h3 {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-video-header h3 i {
    font-size: 1.75rem;
    color: var(--primary-light);
}

.product-video-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.product-video-wrapper {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: var(--shadow-card);
    background: #000;
}

.product-video-player {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background: #000;
}

.platform-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.25);
    border: 1px solid rgba(99, 102, 241, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.platform-tag:hover {
    background: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.platform-tag i {
    font-size: 1rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--bg-subtle);
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.feature-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
}

.feature-card .feature-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.35);
}

.feature-card .feature-icon i {
    font-size: 2.25rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-grid-geo {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    border-radius: 28px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-medical {
    border-color: rgba(16, 185, 129, 0.35);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, var(--card-bg) 100%);
}

.pricing-card-medical .pricing-badge {
    color: #059669;
}

.pricing-card.popular {
    border-color: rgba(99, 102, 241, 0.5);
    transform: scale(1.05);
    box-shadow: 0 40px 80px rgba(99, 102, 241, 0.25);
    z-index: 2;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, var(--card-bg) 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.popular-badge i {
    font-size: 1.1rem;
}

.pricing-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-badge {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-price .period {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 0;
}

.pricing-features-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    min-height: 220px;
}

.pricing-features.is-collapsed li:nth-child(n+6) {
    display: none;
}

.pricing-features-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    padding: 0.45rem 0.85rem;
    background: none;
    border: none;
    color: var(--primary);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    align-self: center;
}

.pricing-features-toggle:hover {
    color: var(--primary-dark);
}

.pricing-features-toggle i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.pricing-features-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.pricing-features-wrap:not(.has-more) .pricing-features-toggle {
    display: none;
}

.pricing-card > .btn {
    margin-top: auto;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    color: var(--text-subtle);
    border-bottom: 1px solid var(--surface-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li i {
    font-size: 1.15rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* ============================================
   CASES SECTION
   ============================================ */
.cases-section {
    background: var(--bg);
}

.cases-image-container {
    margin-bottom: 4rem;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.2);
}

.cases-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.cases-image-container:hover .cases-image {
    transform: scale(1.02);
}

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

@media (max-width: 1200px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

.case-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-2);
}

.case-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(99, 102, 241, 0.15);
}

.case-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.case-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.case-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 0;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.case-tag i {
    font-size: 1rem;
}

.case-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.case-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.case-link:hover {
    gap: 0.6rem;
    color: var(--primary-dark);
}

.case-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.case-stat strong {
    display: block;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    font-weight: 800;
}

.case-stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-container-single {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.home-contact {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
}

.home-contact-map {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.home-contact-map .china-map {
    min-height: 0;
    padding: 1rem;
}

.home-contact-map .china-map-stage {
    width: 100%;
}

.home-contact-info .section-tag {
    margin-bottom: 0.75rem;
}

.home-contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-contact-info > p {
    color: var(--text-subtle);
    margin-bottom: 1.75rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.home-contact-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.home-contact-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}

.home-contact-points li > i {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.home-contact-points a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.home-contact-points a:hover {
    text-decoration: underline;
}

.home-contact-info .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info > p {
    color: var(--text-subtle);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-method div strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.contact-method div span {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: var(--shadow-card);
    border-radius: 28px;
    padding: 0;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.contact-form {
    padding: 2.75rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 1rem;
}

.form-group label i {
    color: var(--primary);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.1rem 1.25rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    color: var(--text-light);
    font-size: 1.05rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer-brand .logo {
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 42px;
    height: 42px;
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 28px;
    padding: 2.75rem;
    max-width: 520px;
    width: 90%;
    animation: modalIn 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
    position: relative;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 45px;
    height: 45px;
    background: var(--border-light);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(15, 23, 42, 0.12);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.35);
}

.modal-icon i {
    color: white;
    font-size: 2.25rem;
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.package-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 14px;
}

.package-display i {
    color: var(--primary);
    font-size: 1.25rem;
}

.package-display input {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--surface-muted);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    transition: var(--transition);
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.input-wrapper i {
    color: var(--primary);
    font-size: 1.25rem;
}

.input-wrapper input {
    background: transparent;
    border: none;
    flex: 1;
    padding: 0;
}

.input-wrapper input:focus {
    box-shadow: none;
    background: transparent;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .product-grid,
    .contact-container,
    .home-contact {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-visual {
        order: -1;
    }

    .home-contact-info h2 {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 48px;
        max-width: min(200px, 48vw);
    }
    
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 span,
    .hero-title-sub {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .stat-item {
        padding: 1.25rem 1.5rem;
        min-width: auto;
        flex: 1;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: scale(1) translateY(-10px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .contact-methods {
        align-items: stretch;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 280px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* ============================================
   NEW: TRUST BAR
   ============================================ */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    min-width: 120px;
    transition: var(--transition);
}

.trust-item:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-3px);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.trust-item strong {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   NEW: GEO INTRO
   ============================================ */
.geo-intro-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 100%);
}

.geo-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.geo-step {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    background: var(--card-bg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.geo-step:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.geo-step-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.6;
}

.geo-step-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: white;
}

.geo-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.geo-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.geo-step-arrow {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.5;
}

.geo-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.geo-compare-item {
    flex: 1;
    min-width: 260px;
    max-width: 400px;
    padding: 1.5rem 2rem;
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    text-align: center;
}

.geo-compare-item.highlight {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.08);
}

.geo-compare-item .label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.geo-compare-item .label.old {
    background: rgba(148, 163, 184, 0.2);
    color: var(--text-muted);
}

.geo-compare-item .label.new {
    background: var(--gradient-2);
    color: white;
}

.geo-compare-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

.geo-compare-vs {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.25rem;
}

/* ============================================
   NEW: CASES 3 COL + SCENE
   ============================================ */
.cases-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .cases-grid-3 {
        grid-template-columns: 1fr;
    }
    .geo-step-arrow {
        display: none;
    }
}

.case-scene {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.case-scene i {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   NEW: PRICING NOTE
   ============================================ */
.pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.pricing-note i {
    color: var(--primary);
}

.pricing-price .amount {
    font-size: 2rem !important;
}

/* ============================================
   NEW: FAQ
   ============================================ */
.faq-section {
    background: var(--bg-subtle);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.faq-item.active {
    border-color: rgba(99, 102, 241, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.98rem;
}

/* ============================================
   NEW: WECHAT CARD + FORM
   ============================================ */
.wechat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.wechat-card img {
    border-radius: 8px;
    flex-shrink: 0;
}

.wechat-card strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.wechat-card strong i {
    color: #07c160;
    font-size: 1.25rem;
}

.wechat-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.contact-method {
    text-decoration: none;
    color: inherit;
}

.mobile-menu-cta {
    background: var(--gradient-2) !important;
    color: white !important;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ============================================
   NEW: FLOAT ACTIONS + MOBILE BAR
   ============================================ */
.float-actions {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--card-bg);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--text-light);
    font-size: 1.35rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.float-btn:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    color: var(--primary);
}

.float-btn-primary {
    background: var(--gradient-2);
    border: none;
    color: white;
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
}

.float-btn-primary:hover {
    color: white;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.float-btn-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease;
}

.float-btn-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--nav-bg-scrolled);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.5rem 0;
}

.mbb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: var(--transition);
}

.mbb-item i {
    font-size: 1.35rem;
}

.mbb-item:hover,
.mbb-item:active {
    color: var(--primary);
}

.mbb-primary {
    color: white !important;
    background: var(--gradient-2);
    margin: 0 0.5rem;
    border-radius: 12px;
}

.mbb-primary i {
    font-size: 1.25rem;
}

/* Quote / WeChat Modal */
.modal-quote,
.modal-wechat {
    text-align: center;
    max-width: 400px;
    padding: 2rem 1.4rem 1.4rem;
}

.modal-quote .modal-close,
.modal-wechat .modal-close {
    top: 0.85rem;
    right: 0.85rem;
    width: 36px;
    height: 36px;
}

.modal-quote .modal-header,
.modal-wechat .modal-header {
    margin-bottom: 1rem;
}

.modal-quote .modal-icon,
.modal-wechat .modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 0.7rem;
}

.modal-quote .modal-icon i,
.modal-wechat .modal-icon i {
    font-size: 1.4rem;
}

.modal-quote .modal-header h3,
.modal-wechat .modal-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.modal-quote .modal-header p,
.modal-wechat .modal-header p {
    font-size: 0.88rem;
    line-height: 1.4;
}

.modal-package-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    margin: 0 auto 0.9rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 999px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.88rem;
    max-width: 100%;
}

.modal-package-badge i {
    font-size: 1rem;
    color: var(--primary);
}

.modal-branch-tabs-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin: 0 0 0.9rem;
}

.modal-branch-tabs {
    display: flex;
    flex: 1;
    flex-wrap: nowrap;
    gap: 0.45rem;
    min-width: 0;
    margin: 0;
    padding: 0.1rem 0.1rem 0.2rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.modal-branch-tabs::-webkit-scrollbar {
    display: none;
}

.modal-branch-tabs-wrap.is-scrollable .modal-branch-tabs {
    mask-image: linear-gradient(90deg, transparent, #000 10px, #000 calc(100% - 10px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10px, #000 calc(100% - 10px), transparent);
}

.modal-branch-nav {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    font-size: 0.95rem;
}

.modal-branch-tabs-wrap.is-scrollable .modal-branch-nav {
    display: inline-flex;
}

.modal-branch-nav:hover:not(:disabled) {
    border-color: rgba(99, 102, 241, 0.35);
    background: rgba(99, 102, 241, 0.06);
    color: var(--primary);
}

.modal-branch-nav:disabled,
.modal-branch-nav.is-disabled {
    opacity: 0.28;
    cursor: default;
    box-shadow: none;
}

.modal-branch-nav-next.is-hint {
    animation: branchNavHint 1.4s ease-in-out 2;
}

@keyframes branchNavHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.modal-branch-tab {
    flex: 0 0 auto;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: #fff;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    scroll-snap-align: start;
    cursor: pointer;
    transition: var(--transition);
}

.modal-branch-tab:hover {
    border-color: rgba(99, 102, 241, 0.35);
    color: var(--text-light);
    background: rgba(99, 102, 241, 0.04);
}

.modal-branch-tab.active {
    background: var(--primary-dark);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.26);
}

.modal-branch-card {
    padding: 1.1rem 1rem 0.9rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.modal-branch-qr-wrap {
    width: min(168px, 48vw);
    margin: 0 auto 0.75rem;
    padding: 0.45rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.wechat-modal-qr {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin: 0;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
}

.modal-branch-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin: 0 0 0.85rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.4;
}

.modal-branch-tip i {
    color: #07c160;
    font-size: 1.05rem;
}

.modal-branch-tip strong {
    color: var(--text-light);
    font-weight: 700;
}

.modal-branch-phone {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0.85rem;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    text-align: left;
    transition: var(--transition);
}

.modal-branch-phone:hover {
    border-color: rgba(99, 102, 241, 0.35);
    background: rgba(99, 102, 241, 0.04);
}

.modal-branch-phone-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 1.05rem;
}

.modal-branch-phone-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    min-width: 0;
}

.modal-branch-phone-meta small {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.modal-branch-phone-meta strong {
    font-size: 0.98rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.modal-branch-phone-arrow {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-bar {
        gap: 0.75rem;
    }

    .trust-item {
        min-width: calc(50% - 0.75rem);
        padding: 0.75rem 1rem;
    }

    .trust-item strong {
        font-size: 1.25rem;
    }

    .wechat-card {
        flex-direction: column;
        text-align: center;
    }

    .float-actions .float-btn:not(.float-btn-primary) {
        display: none;
    }

    .mobile-bottom-bar {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .float-actions {
        bottom: 90px;
    }

    .workflow-steps {
        flex-direction: column;
    }

    .workflow-step-line {
        width: 2px;
        height: 24px;
        margin: 0 auto;
    }

    .workflow-compare {
        flex-direction: column;
    }

    .compare-arrow {
        transform: rotate(90deg);
    }
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 100%);
}

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

.service-card {
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    border-radius: 24px;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
}

.service-card.featured {
    border-color: rgba(99, 102, 241, 0.35);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, var(--card-bg) 100%);
}

.service-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.25rem;
}

.service-card-icon.geo {
    background: var(--gradient-2);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}

.service-card-icon.ai {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
}

.service-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
}

.service-card > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-points {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: var(--text-subtle);
    font-size: 0.95rem;
}

.service-points li i {
    color: var(--primary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   AI WORKFLOW SECTION
   ============================================ */
.ai-workflow-section {
    background: var(--bg-subtle);
    position: relative;
}

.ai-workflow-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 60%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.workflow-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
}

.workflow-intro strong {
    color: var(--text-light);
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.workflow-step {
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    text-align: center;
    padding: 1.25rem 0.75rem;
}

.workflow-step-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
    color: white;
}

.workflow-step h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.workflow-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.workflow-step-line {
    width: 32px;
    height: 2px;
    background: var(--gradient-2);
    opacity: 0.4;
    flex-shrink: 0;
}

.workflow-scenarios {
    margin-bottom: 3rem;
}

.workflow-scenarios h3 {
    text-align: center;
    font-size: 1.35rem;
    margin-bottom: 2rem;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.scenario-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.scenario-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-4px);
}

.scenario-card > i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}

.scenario-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.scenario-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.workflow-compare {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.compare-box {
    flex: 1;
    min-width: 280px;
    max-width: 420px;
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.compare-box.before {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.compare-box.after {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

.compare-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.compare-box.before .compare-tag {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.compare-box.after .compare-tag {
    background: rgba(99, 102, 241, 0.25);
    color: var(--primary-dark);
}

.compare-box ul {
    list-style: none;
}

.compare-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.compare-box.before li i {
    color: #f87171;
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-box.after li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-arrow {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
}

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

.workflow-banner {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 24px 60px rgba(139, 92, 246, 0.15);
}

.workflow-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.scenarios-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin: -1.5rem auto 2rem;
    max-width: 600px;
    font-size: 1rem;
}

.scenarios-visual {
    margin-bottom: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.scenarios-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.scenarios-group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 2rem 0 1.25rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--primary);
}

.scenario-industry {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.15);
    color: #7c3aed;
    border: 1px solid rgba(139, 92, 246, 0.25);
    margin-bottom: 0.75rem;
}

/* PDF Download */
.workflow-download {
    margin: 3rem 0 2rem;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    flex-wrap: wrap;
}

.download-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.download-info {
    flex: 1;
    min-width: 200px;
}

.download-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.download-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.download-card .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .download-card {
        flex-direction: column;
        text-align: center;
    }

    .download-card .btn {
        width: 100%;
    }
}

/* ============================================
   FEATURES DUAL BLOCK
   ============================================ */
.features-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.features-block-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.features-block-title i {
    color: var(--primary);
    font-size: 1.35rem;
}

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

.features-grid-compact .feature-card {
    padding: 1.5rem;
}

.features-grid-compact .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.features-grid-compact .feature-card h3 {
    font-size: 1.1rem;
}

.features-grid-compact .feature-card p {
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .features-dual {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TABS (案例 / 方案)
   ============================================ */
.tab-bar {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background: var(--bg-subtle);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.tab-btn:hover {
    border-color: rgba(99, 102, 241, 0.4);
    color: var(--text-light);
}

.tab-btn.active {
    background: var(--gradient-2);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-description strong {
    color: var(--primary-dark);
}

/* ============================================
   CONTACT PAGE / OFFICES
   ============================================ */
.page-contact nav,
.page-team nav,
.page-honors nav {
    background: var(--nav-bg-scrolled);
}

.page-banner {
    position: relative;
    padding: 9rem 0 4rem;
    background:
        radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 10%, rgba(6, 182, 212, 0.1) 0%, transparent 35%),
        linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.page-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.page-breadcrumb a:hover {
    color: var(--primary);
}

.page-breadcrumb i {
    font-size: 0.75rem;
}

.page-banner h1 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-banner > .container > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

.offices-section {
    padding-top: 4rem;
    background: var(--bg);
    scroll-margin-top: 88px;
}

.offices-section .tab-panel {
    scroll-margin-top: 100px;
}

.offices-intro {
    max-width: 860px;
    margin: 0 auto 3rem;
    text-align: center;
    scroll-margin-top: 100px;
}

.offices-intro h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.offices-intro p {
    color: var(--text-subtle);
    line-height: 1.9;
    font-size: 1.05rem;
}

.offices-intro a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.offices-intro a:hover {
    text-decoration: underline;
}

.offices-tabs {
    margin-bottom: 2rem;
}

.offices-tabs .tab-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
}

.office-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.office-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-muted);
    align-content: start;
}

.office-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 14px;
    background: var(--bg-subtle);
}

/* 3 张：上一下二，主图保持横向比例 */
.office-gallery:has(img:nth-child(3):last-child) {
    grid-template-columns: 1fr 1fr;
}

.office-gallery:has(img:nth-child(3):last-child) img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.office-gallery:has(img:nth-child(3):last-child) img:nth-child(2),
.office-gallery:has(img:nth-child(3):last-child) img:nth-child(3) {
    aspect-ratio: 4 / 3;
}

.office-gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 280px;
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(6, 182, 212, 0.08)),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 12px,
            rgba(99, 102, 241, 0.04) 12px,
            rgba(99, 102, 241, 0.04) 24px
        );
}

.office-gallery-placeholder p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.office-placeholder-icon {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    color: var(--primary);
    font-size: 2.25rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.12);
}

.office-body {
    padding: 2.25rem 2.25rem 2.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.office-qr {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
    padding: 1rem;
    border-radius: 14px;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
}

.office-qr img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background: #fff;
}

.office-qr p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.office-city {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.office-body h3 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    color: var(--text-light);
}

.office-meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.office-meta li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.office-meta li > i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

.office-meta strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.office-meta span,
.office-meta a {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    text-decoration: none;
}

.office-meta a:hover {
    color: var(--primary);
}

.office-pending {
    color: var(--text-muted) !important;
    font-style: italic;
}

.office-note {
    margin-top: 1.5rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: var(--bg-subtle);
    border: 1px dashed rgba(99, 102, 241, 0.25);
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.office-note a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.office-card-placeholder {
    border-style: dashed;
}

/* Office map (联系页：静态中国区域展示) */
.offices-map-panel {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.offices-map-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.offices-map-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.25rem 0 0.35rem;
}

.offices-map-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.china-map-legend {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.china-map-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.china-map-legend-item i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.china-map-legend-item.is-open i {
    background: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.22);
}

.china-map-legend-item.is-pending i {
    background: #94a3b8;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.18);
}

.offices-map.contact-map {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.offices-map-left {
    position: relative;
    min-height: 460px;
    background: #fff;
}

.china-map {
    width: 100%;
    height: 100%;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    background: #fff;
}

.china-map-stage {
    position: relative;
    width: min(100%, 560px);
}

.china-map-bg {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    pointer-events: none;
}

/* 城市标签样式参考三维天地 contact map pointer */
.china-map-pin {
    position: absolute;
    z-index: 2;
    font-size: 0.875rem;
    line-height: 1.3;
    color: var(--primary-dark);
    background: #fff;
    padding: 0.2rem 0.65rem;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(99, 102, 241, 0.2);
    white-space: nowrap;
    pointer-events: none;
    font-weight: 600;
}

.china-map-pin.is-pending {
    color: #64748b;
}

.china-map-pin.is-current {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 0 8px rgba(79, 70, 229, 0.4);
}

.china-map-pin.is-current.is-pending {
    background: #94a3b8;
    box-shadow: 0 0 8px rgba(148, 163, 184, 0.35);
}

.offices-map-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    max-height: 460px;
    overflow-y: auto;
    background: linear-gradient(180deg, #fff 0%, var(--bg-subtle) 100%);
    border-left: 1px solid var(--border-light);
}

.offices-map-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    width: 100%;
    text-align: left;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: #fff;
    transition: var(--transition);
    color: inherit;
}

.offices-map-item.active {
    border-color: transparent;
    background: rgba(79, 70, 229, 0.1);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.12);
}

.offices-map-item.is-pending {
    opacity: 0.82;
}

.offices-map-pin {
    width: 12px;
    height: 12px;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: var(--primary-dark);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.18);
    flex-shrink: 0;
}

.offices-map-item.active .offices-map-pin {
    box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.28);
}

.offices-map-item.is-pending .offices-map-pin {
    background: #94a3b8;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.18);
}

.offices-map-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.offices-map-item-body strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-light);
}

.offices-map-item-body small {
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .office-card {
        grid-template-columns: 1fr;
    }

    .office-body {
        padding: 1.75rem;
    }

    .offices-map.contact-map {
        grid-template-columns: 1fr;
    }

    .offices-map-left,
    .china-map {
        min-height: 320px;
    }

    .offices-map-right {
        max-height: none;
        border-left: none;
        border-top: 1px solid var(--border-light);
    }

    .offices-map-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .page-banner {
        padding: 8rem 0 3rem;
    }

    .office-gallery img {
        aspect-ratio: 3 / 2;
    }

    .office-gallery:has(img:nth-child(3):last-child) img:first-child {
        aspect-ratio: 16 / 10;
    }

    .office-body h3 {
        font-size: 1.45rem;
    }
}

.modal-kefu{text-align:center;max-width:400px;padding:2rem 1.4rem 1.4rem}
.modal-kefu .modal-close{top:.85rem;right:.85rem;width:36px;height:36px}
.modal-kefu .modal-header{margin-bottom:1rem}
.modal-kefu .modal-icon{width:48px;height:48px;border-radius:14px;margin-bottom:.7rem}
.modal-kefu .modal-icon i{font-size:1.4rem}
.modal-kefu .modal-header h3{font-size:1.25rem;margin-bottom:.3rem}
.modal-kefu .modal-header p{font-size:.88rem;line-height:1.4}
.kefu-branch-list{display:flex;flex-direction:column;gap:.55rem;text-align:left}
.kefu-branch-item{display:flex;align-items:center;gap:.75rem;width:100%;padding:.85rem .95rem;border:1px solid var(--border-light);border-radius:14px;background:var(--bg-subtle);color:inherit;font-family:inherit;cursor:pointer;transition:var(--transition);text-align:left}
.kefu-branch-item:hover:not(:disabled){border-color:rgba(99,102,241,.35);background:rgba(99,102,241,.05);transform:translateY(-1px)}
.kefu-branch-item:disabled{opacity:.7;cursor:wait}
.kefu-branch-item.is-loading{border-color:rgba(99,102,241,.45);background:rgba(99,102,241,.08)}
.kefu-branch-icon{width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;border-radius:12px;background:rgba(99,102,241,.12);color:var(--primary);font-size:1.15rem}
.kefu-branch-meta{flex:1;min-width:0;display:flex;flex-direction:column;gap:.12rem}
.kefu-branch-meta strong{font-size:.95rem;color:var(--text-light);font-weight:700}
.kefu-branch-meta small{font-size:.78rem;color:var(--text-muted)}
.kefu-branch-arrow{color:var(--text-muted);font-size:1rem;flex-shrink:0}
.kefu-branch-item.is-loading .kefu-branch-arrow{animation:kefuSpin .8s linear infinite}
@keyframes kefuSpin{to{transform:rotate(360deg)}}
.float-btn-kefu{background:var(--gradient-2);border:none;color:#fff}
.float-btn-kefu:hover{color:#fff;box-shadow:0 12px 32px rgba(99,102,241,.5)}

/* 右侧贴边在线咨询（桌面端；手机端用底部栏「在线咨询」） */
.float-kefu-side {
    position: fixed;
    right: 0;
    bottom: 32%;
    z-index: 901;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 46px;
    padding: 0.85rem 0 0.9rem;
    border: none;
    border-radius: 10px 0 0 10px;
    background: linear-gradient(180deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    cursor: pointer;
    box-shadow: -4px 6px 24px rgba(79, 70, 229, 0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease, width 0.25s ease;
    font-family: inherit;
}

@media (min-width: 769px) {
    .float-kefu-side {
        display: flex;
    }
}

.float-kefu-side:hover {
    width: 50px;
    box-shadow: -6px 8px 28px rgba(79, 70, 229, 0.48);
    transform: translateX(-2px);
}

.float-kefu-side-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 1.15rem;
    animation: kefuSidePulse 2.4s ease-in-out infinite;
}

.float-kefu-side-text {
    writing-mode: vertical-rl;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1;
    opacity: 0.95;
}

@keyframes kefuSidePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35); }
    50% { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: var(--bg);
}

.team-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.team-intro p {
    color: var(--text-subtle);
    line-height: 1.9;
    font-size: 1.05rem;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.team-card-featured {
    display: grid;
    grid-template-columns: minmax(240px, 280px) 1fr;
    background:
        linear-gradient(180deg, rgba(99, 102, 241, 0.07) 0%, var(--card-bg) 42%);
    border-color: rgba(99, 102, 241, 0.22);
}

.team-card-profile {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--border-light);
}

.team-avatar {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-2);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
    margin-bottom: 1.25rem;
    overflow: hidden;
    flex-shrink: 0;
}

.team-avatar-photo {
    background: var(--bg-muted);
    border: 3px solid #fff;
    box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.18),
        0 12px 32px rgba(99, 102, 241, 0.28);
}

.team-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}

.team-identity {
    width: 100%;
}

.team-role {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    border-radius: 999px;
    padding: 0.28rem 0.8rem;
    margin-bottom: 0.65rem;
}

.team-identity h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.team-org {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
}

.team-tags li {
    font-size: 0.78rem;
    color: var(--text-subtle);
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
}

.team-card-bio {
    padding: 2.5rem 2.5rem 2.5rem 2.25rem;
}

.team-card-bio p {
    color: var(--text-subtle);
    font-size: 1.02rem;
    line-height: 1.95;
    margin-bottom: 1.1rem;
}

.team-card-bio p:last-child {
    margin-bottom: 0;
}

.team-bio-points {
    list-style: none;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-bio-points li {
    color: var(--text-subtle);
    font-size: 0.98rem;
    line-height: 1.75;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: var(--surface-muted);
    border: 1px solid var(--border-light);
}

.team-bio-points strong {
    display: inline-block;
    min-width: 4.5em;
    margin-right: 0.5rem;
    color: var(--primary);
    font-weight: 700;
}

.team-cta-section {
    padding-top: 0;
    padding-bottom: 6rem;
    background: var(--bg);
}

.team-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.25rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(99, 102, 241, 0.18);
    background:
        radial-gradient(circle at 8% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 92% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
        var(--bg-subtle);
}

.team-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.team-cta p {
    color: var(--text-muted);
    font-size: 1rem;
}

.team-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-grid .team-card {
    padding: 2rem 1.75rem;
    text-align: center;
}

@media (max-width: 1400px) {
    .nav-links {
        gap: 1.25rem;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a,
    .nav-dropdown-toggle {
        font-size: 0.88rem;
    }

    .team-card-featured {
        grid-template-columns: 1fr;
    }

    .team-card-profile {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 1.75rem;
    }

    .team-card-bio {
        padding: 2rem 1.75rem 2.25rem;
    }

    .team-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.75rem;
    }

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

@media (max-width: 768px) {
    .team-identity h3 {
        font-size: 1.45rem;
    }

    .team-cta h2 {
        font-size: 1.25rem;
    }
}

/* ============================================
   HONORS PAGE
   ============================================ */
.honors-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: var(--bg);
}

.honors-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.honors-intro h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.honors-intro p {
    color: var(--text-subtle);
    line-height: 1.9;
    font-size: 1.05rem;
}

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

.honors-grid-certs {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.honor-cert {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
}

.honor-cert:hover {
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(99, 102, 241, 0.12);
}

.honor-cert-media {
    aspect-ratio: 3 / 4;
    background: var(--bg-muted);
    overflow: hidden;
}

.honor-cert-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.35s ease;
}

.honor-cert:hover .honor-cert-media img {
    transform: scale(1.03);
}

.honor-cert h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-light);
    padding: 1rem 1.1rem 1.15rem;
    line-height: 1.45;
    text-align: center;
}

.honor-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    padding: 2rem 1.75rem;
    transition: var(--transition);
}

.honor-card:hover {
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(99, 102, 241, 0.12);
}

.honor-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1.15rem;
}

.honor-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--text-light);
}

.honor-card p {
    color: var(--text-subtle);
    line-height: 1.8;
    font-size: 0.98rem;
}

@media (max-width: 1024px) {
    .honors-grid-certs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .honors-grid,
    .honors-grid-certs {
        grid-template-columns: 1fr;
    }
}

