
        :root {
            --primary: #3B82F6;
            --primary-dark: #2563EB;
            --primary-light: #60A5FA;
            --secondary: #1E293B;
            --accent: #06B6D4;
            --accent-light: #22D3EE;
            --success: #10B981;
            --warning: #F59E0B;
            --light: #F8FAFC;
            --light-gray: #F1F5F9;
            --gray: #64748B;
            --dark-gray: #334155;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, #0F172A 100%);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
            --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --border-radius: 12px;
            --border-radius-lg: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--secondary);
            background-color: var(--white);
            overflow-x: hidden;
        }

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

        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(35, 35, 35, 0.90);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition-smooth);
        }

        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: var(--shadow-md);
        }

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

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

        .logo-icon {
            width: 42px;
            height: 42px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        
        .logo-image {
            width: 50px; /* 根据需要调整大小 */
            height: 50px; /* 根据需要调整大小 */
            object-fit: contain; /* 保持图片比例 */
            display: block;
            border-radius: 10px;
        }

        .logo-text {
            font-size: 26px;
            font-weight: 600;
            background: #fff1ea;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: #fff1ea;
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition-fast);
            position: relative;
            padding: 8px 0;
        }

        .nav-link:hover {
            color: white;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: var(--transition-fast);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: #916f5b;
            color: white;
            padding: 12px 28px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition-fast);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--secondary);
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: var(--transition-fast);
        }

        .mobile-menu-btn:hover {
            background: var(--light-gray);
        }

        /* 英雄区域 */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, #cdcccb 0%, #ffd8c1 50%, #855f48 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
            border-radius: 50%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #663417 0%, #bca99d 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-text p {
            font-size: 18px;
            color: var(--dark-gray);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #916f5b;
            color: white;
            padding: 16px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition-fast);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #69391d;
            padding: 16px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition-fast);
            border: 1px solid #69391d;
        }

        .btn-secondary:hover {
            background: #916f5b;
            color: white;
            transform: translateY(-3px);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(59, 130, 246, 0.2);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 40px;
            font-weight: 800;
            background: #6b3b1f;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--gray);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .hero-visual {
            position: relative;
        }

        .ai-platforms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .platform-card {
            background: white;
            padding: 24px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            transition: var(--transition-fast);
            text-align: center;
            border: 1px solid var(--light-gray);
        }

        .platform-card:hover {
            transform: translateY(-5px);
            /*box-shadow: var(--shadow-lg); */
            /*border-color: var(--primary-light); */
        }

        .platform-icon {
            width: 56px;
            height: 56px;
            background: var(--light-gray);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 24px;
            color: var(--primary);
        }

        .platform-name {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--secondary);
        }

        .platform-desc {
            font-size: 13px;
            color: var(--gray);
        }
        
        .aboutme {
            padding: 100px 0;
            background: white;
        }

        /* 服务部分 */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .section-description {
            font-size: 18px;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .services {
            padding: 100px 0;
            background: var(--light);
        }

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

        .service-card {
            background: white;
            padding: 40px 32px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--light-gray);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 28px;
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--secondary);
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            margin-top: 20px;
        }

        .service-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-gray);
        }

        .service-features li i {
            color: var(--success);
            font-size: 14px;
        }

        /* GEO流程部分 */
        .process {
            padding: 100px 0;
            background: white;
        }

        .process-container {
            position: relative;
        }

        .process-line {
            position: absolute;
            left: 50%;
            top: 80px;
            bottom: 80px;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary-light), var(--accent-light));
            transform: translateX(-50%);
            z-index: 1;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .process-step {
            display: flex;
            align-items: center;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-step:nth-child(odd) {
            flex-direction: row;
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .step-content {
            background: white;
            padding: 32px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            flex: 1;
            border: 1px solid var(--light-gray);
        }

        .step-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        /* 平台覆盖部分 */
        .platforms {
            padding: 100px 0;
            background: var(--light);
        }

        .platforms-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .platform-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .platform-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--primary);
            font-size: 20px;
        }

        .feature-content h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--secondary);
        }

        /* 数据展示部分 */
        .stats-section {
            padding: 100px 0;
            background: var(--gradient-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

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

        .stat-box {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition-fast);
        }

        .stat-box:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .stat-box h3 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 8px;
            color: white;
        }

        .stat-box p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* 案例部分 */
        .cases {
            padding: 100px 0;
            background: white;
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .case-card {
            background: var(--light);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--light-gray);
        }

        .case-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .case-header {
            padding: 24px 24px 0;
        }

        .case-industry {
            display: inline-block;
            padding: 6px 16px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        .case-content {
            padding: 24px;
        }

        .case-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        .case-metrics {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
        }

        .metric {
            text-align: center;
        }

        .metric-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .metric-label {
            font-size: 12px;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CTA部分 */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C800,50 600,100 400,80C200,60 100,30 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
            opacity: 0.3;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-light {
            background: white;
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition-fast);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-light {
            background: transparent;
            color: white;
            padding: 16px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition-fast);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
        }

        /* 页脚 */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .logo-text {
            background: linear-gradient(135deg, white, var(--accent-light));
            -webkit-background-clip: text;
            background-clip: text;
        }

        .footer-description {
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 300px;
        }

        .footer-column h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            color: white;
        }

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

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .contact-info {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-item i {
            color: var(--accent-light);
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        
        .platform-image {
            width: 100px; /* 根据需要调整大小 */
            height: 100px; /* 根据需要调整大小 */
            object-fit: contain; /* 保持图片比例 */
            display: block;
        }
        
        
        .aiplatform-image {
            width: 50px; /* 根据需要调整大小 */
            height: 50px; /* 根据需要调整大小 */
            object-fit: contain; /* 保持图片比例 */
            display: block;
        }
        
        
        .case-img {
            width: 100%;
            max-width: 1200px; /* 可根据页面布局调整最大值 */
            margin: 20px auto; /* 水平居中+上下间距 */
            border-radius: 8px; /* 圆角大小 */
            box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* 可选：添加轻微阴影提升层次感 */
            object-fit: cover; /* 保持图片比例，裁剪溢出部分 */
        }

        /* 响应式设计 */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .platforms-container {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .process-line {
                display: none;
            }
            
            .process-step {
                flex-direction: column !important;
                text-align: center;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow-lg);
                gap: 0;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-link {
                padding: 16px 0;
                width: 100%;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-text h1 {
                font-size: 40px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .services-grid,
            .cases-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .stat-number {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            
            .hero-text h1 {
                font-size: 32px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .ai-platforms-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeInUp 0.6s ease forwards;
        }
