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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6b46c1;
}

.nav-contact {
    margin-left: auto;
}

.contact-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 移动端汉堡菜单 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding-top: 80px;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #6b46c1;
}

.contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* 英雄区域 */
.hero {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
    text-align: left;
    margin-left: 5%;
    top: 80px; /* 向下移动80px */
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 轮播控制器 */
.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}


.hero-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 120px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, white 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active::before {
    width: 100%;
    animation: progressFill 3s linear forwards;
}

.indicator.progress-reset::before {
    animation: none !important;
    width: 0% !important;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

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

/* 介绍区域 */
.intro {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e6f3ff 0%, #d1e9ff 100%);
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-main {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #64748b;
}

.intro-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.intro-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
}

.intro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* 介绍区域图片轮播 */
.intro-images {
    overflow: hidden;
    position: relative;
    height: 550px; /* 进一步增加高度 */
    background: linear-gradient(135deg, #e6f3ff 0%, #d1e9ff 100%);
    padding: 4rem 0; /* 增加内边距 */
}

.intro-img-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.intro-img-grid {
    display: flex;
    width: calc(350px * 12); /* 进一步增大图片宽度 */
    animation: scrollCarousel 22s linear infinite; /* 调整动画时间 */
    height: 100%;
    align-items: flex-start;
}

/* 自动循环滚动动画 */
@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 6)); /* 调整滚动距离 */
    }
}

.intro-img-item {
    position: relative;
    width: 320px;
    height: 450px;
    margin: 0 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    
    /* 使用clip-path将整个容器裁剪成平行四边形，增大倾斜角度 */
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%) !important;
    transform: none !important;
    background: linear-gradient(135deg, #e6f3ff 0%, #d1e9ff 100%);
    border-radius: 0;
}

/* 交替上下错位效果 */
.intro-img-item:nth-child(odd) {
    margin-top: 30px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%) !important;
}

.intro-img-item:nth-child(even) {
    margin-top: -30px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%) !important;
}

.intro-img-item:hover {
    transform: translateY(-8px) scale(1.02); /* 只保持位移和缩放效果 */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%) !important;
}

.intro-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* 去掉所有变换，让图片正常显示 */
    transform: none;
    border-radius: 0;
}

.intro-img-item:hover img {
    transform: scale(1.05); /* 只保持缩放效果 */
}

.intro-img-item .img-label {
    /* 去掉所有变换 */
    transform: none;
}

.img-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1rem; /* 增大字体 */
    font-weight: 600;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* 添加边框 */
}

/* 数据展示区域 */
.stats {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/小背景.svg');
    background-size: auto;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.1;
    pointer-events: none;
}

.stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(118, 75, 162, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(102, 126, 234, 0.04) 0%, transparent 30%);
    pointer-events: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* 发展阶段 */
.evolution {
    padding: 5rem 2rem;
    background: white;
}

.evolution-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 3px solid #f97316;
    border-radius: 15px;
    padding: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.phase-chart-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.evolution-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.evolution-stages {
    space-y: 1rem;
}

.stage-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.stage-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: none;
}

.stage-header:hover {
    background: #f8fafc;
}

.stage-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.expand-icon {
    font-size: 1.5rem;
    color: #f97316;
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
}

.stage-item.active .expand-icon {
    transform: rotate(45deg);
    background: rgba(249, 115, 22, 0.2);
}

.stage-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #fafbfc;
}

.stage-item.active .stage-content {
    max-height: 400px;
    border-top: 1px solid #e2e8f0;
}

.stage-inner {
    padding: 1.5rem;
}

.stage-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stage-content li {
    margin-bottom: 0.8rem;
    color: #475569;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.stage-content li:last-child {
    margin-bottom: 0;
}

.stage-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 阶段特色颜色 */
.stage-item:nth-child(1) .stage-header {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(160, 82, 45, 0.05) 100%);
}

.stage-item:nth-child(1) .stage-content {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.02) 0%, rgba(160, 82, 45, 0.02) 100%);
}

.stage-item:nth-child(2) .stage-header {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.stage-item:nth-child(2) .stage-content {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.02) 0%, rgba(245, 158, 11, 0.02) 100%);
}

.stage-item:nth-child(3) .stage-header {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(234, 88, 12, 0.05) 100%);
}

.stage-item:nth-child(3) .stage-content {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.02) 0%, rgba(234, 88, 12, 0.02) 100%);
}

/* 工作执行平台 */
.platform {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.platform-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.platform-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.platform-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.platform-description {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-section {
    margin-bottom: 2rem;
}

.feature-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-section ul {
    list-style: none;
    margin-left: 0;
}

.feature-section li {
    margin-bottom: 0.5rem;
    color: #64748b;
    position: relative;
    padding-left: 1rem;
}

.feature-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6b46c1;
    font-weight: bold;
}

.platform-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.platform-demo {
    position: relative;
    display: block;
    width: 100%;
    height: 700px;
}

.demo-interface {
    position: absolute;
    top: 0;
    left: 50px;
    width: 60%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 10;
    transform: translateY(20px);
}

.demo-tabs {
    display: flex;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.tab {
    padding: 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex: 1;
    text-align: center;
    border-right: 1px solid #e2e8f0;
}

.tab:last-child {
    border-right: none;
}

.tab.active {
    background: white;
    font-weight: 600;
    color: #6b46c1;
}

.demo-content {
    padding: 0;
    background: transparent;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 0 0 15px 15px;
}

.demo-person {
    position: absolute;
    top: 50px;
    right: 0;
    width: 70%;
    height: 600px;
    z-index: 1;
}

.demo-person img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* AI智能体 */
.ai-agents {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.ai-agents-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-agents h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.ai-agents-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.agent-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.agent-image {
    position: relative;
    overflow: hidden;
}

.agent-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.agent-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
    color: #1e293b;
}

.agent-card p {
    color: #64748b;
    margin: 0 1.5rem;
    line-height: 1.6;
}

.agent-link {
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    color: #6b46c1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.agent-link:hover {
    color: #553c9a;
}

/* 客户案例 */
.use-cases {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.use-cases-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    position: relative;
    padding-bottom: 0.5rem;
}

.use-cases-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.use-cases-content > p {
    color: #64748b;
    margin-bottom: 3rem;
}

/* 客户标签页 */
.client-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0;
    background: transparent;
    width: 100%;
}

.client-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    border: none;
    border-bottom: 2px solid transparent;
}

.client-tab:hover {
    background: transparent;
    color: #667eea;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.client-tab.active {
    background: transparent;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    font-weight: 700;
}

/* 案例研究容器 */
.case-studies {
    position: relative;
    min-height: 450px;
    margin-bottom: 2rem;
    width: 100%;
}

.case-study {
    display: none;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
    border-radius: 15px;
    overflow: hidden;
    color: #1e293b;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    width: 100%;
}

.case-study.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.case-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, #5b6fd8 0%, #6b46c1 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(91, 111, 216, 0.3);
    position: relative;
}

.case-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.case-quote {
    font-style: italic;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.case-author {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

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

.case-stats .stat {
    text-align: center;
}

.case-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.case-stats .stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.use-cases-right {
    display: block;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.use-cases-right p {
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* 合作伙伴 */
.partners {
    padding: 3rem 2rem;
    background: white;
    text-align: center;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem 2rem;
    margin-bottom: 3rem;
    align-items: center;
    justify-items: center;
}

.partners-grid img {
    height: 50px;
    max-width: 120px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    object-fit: contain;
}

.partners-grid img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.view-all-btn {
    background: #fbbf24;
    color: #1e293b;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

/* 资源区域 */
.resources {
    padding: 5rem 2rem;
    background: #1e1e2e;
    color: white;
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
}

.resources h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.resources-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 3rem;
}

.news-carousel {
    position: relative;
}

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

.news-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* CTA区域 */
.cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 1rem;
}

.cta-btn.primary {
    background: white;
    color: #6b46c1;
    border: none;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* 页脚 */
.footer {
    background: #1e1e2e;
    color: white;
    padding: 3rem 2rem 2rem;
}

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

.footer-top {
    margin-bottom: 3rem;
}

.footer-search h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.search-box {
    display: flex;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.language-selector button {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: white;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: white;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    text-align: center;
}

.footer-logo {
    height: 30px;
    width: auto;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* =================================
   新页面设计样式
================================= */

/* 品牌宣言页面 - About */
.brand-manifesto {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.manifesto-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.manifesto-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manifesto-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    font-style: italic;
}

/* 品牌故事 */
.brand-story {
    padding: 6rem 2rem;
    background: white;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-chapter {
    display: flex;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: flex-start;
}

.chapter-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.chapter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.large-text {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #64748b;
}

.problem-details {
    margin-top: 2rem;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.problem-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
}

/* 价值观 */
.core-values {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.value-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* 产品体验页面 */
.experience-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.scenario-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.scenario-line {
    display: block;
    margin-bottom: 0.5rem;
}

.pain-points {
    list-style: none;
    margin: 1.5rem 0;
}

.pain-points li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.pain-points li:before {
    content: "• ";
    color: #f97316;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* 一天的转变 */
.day-transformation {
    padding: 6rem 2rem;
    background: white;
}

.transformation-container {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-timeline {
    margin-top: 3rem;
}

.experience-moment {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.moment-time {
    font-size: 2rem;
    font-weight: 700;
    color: #6b46c1;
    flex-shrink: 0;
    width: 100px;
}

.moment-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.moment-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.before, .after {
    padding: 1.5rem;
    border-radius: 10px;
}

.before {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
}

.after {
    background: #dcfce7;
    border-left: 4px solid #22c55e;
}

.before h4, .after h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.before h4 {
    color: #dc2626;
}

.after h4 {
    color: #16a34a;
}

/* AI智能体生态页面 */
.agents-manifesto {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.manifesto-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* 智能体一天 */
.agent-day-in-life {
    padding: 6rem 2rem;
    background: white;
}

.day-container {
    max-width: 1200px;
    margin: 0 auto;
}

.day-timeline {
    margin-top: 3rem;
}

.day-moment {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.moment-time {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6b46c1;
    flex-shrink: 0;
    width: 80px;
}

.thought-bubble {
    background: #f0f7ff;
    border: 2px solid #3b82f6;
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.thought-bubble:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #3b82f6;
}

.thought-process {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.process-step {
    font-size: 0.9rem;
    color: #1e40af;
    background: #dbeafe;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* 智能体生态系统 */
.agent-ecosystem {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
}

.collaboration-flow {
    margin-top: 2rem;
}

.collaboration-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-agent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.agent-avatar {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-name {
    font-weight: 600;
    color: #1e293b;
}

.step-action {
    flex: 1;
}

.action-details {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

/* 解决方案页面 */
.problems-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 1rem;
}

/* 智能产品页面特定的hero内容样式 */
.smart-product-hero .hero-title,
.defi-hero .hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.smart-product-hero .title-line,
.defi-hero .title-line {
    display: inline;
    margin-right: 0.5rem;
    word-break: break-word;
}

.smart-product-hero .hero-description,
.defi-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* 问题诊断器 */
.problem-diagnostic {
    padding: 6rem 2rem;
    background: white;
}

.diagnostic-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.problem-card {
    padding: 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.problem-card:hover {
    border-color: #6b46c1;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-symptoms {
    margin: 1rem 0;
}

.symptom {
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.problem-impact {
    margin-top: 1rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    font-size: 0.9rem;
    color: #dc2626;
}

/* ==================== 
   新About页面专用样式 
   ==================== */

/* 开场承诺区域 */
.trust-promise {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-promise::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.promise-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promise-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.promise-emphasis {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promise-proof {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #60a5fa;
    line-height: 1;
}

.proof-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
    margin-top: 0.5rem;
}

.proof-divider {
    font-size: 2rem;
    opacity: 0.3;
}

.promise-question {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
}

.answer-preview {
    color: #60a5fa;
    font-weight: 600;
    margin-top: 1rem;
}

.trust-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-seal {
    width: 200px;
    height: 200px;
    border: 3px solid #60a5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(96, 165, 250, 0.1);
}

.security-seal::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.1); opacity: 0; }
}

.seal-inner {
    text-align: center;
}

.seal-number {
    font-size: 4rem;
    font-weight: 900;
    color: #60a5fa;
    display: block;
}

.seal-text {
    font-size: 1rem;
    font-weight: 600;
}

.badge-verification {
    margin-top: 1.5rem;
    text-align: center;
}

.verification-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.verification-logos {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.audit-logo {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 危机时间线 */
.crisis-timeline {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.timeline-subtitle {
    font-size: 1.25rem;
    text-align: center;
    opacity: 0.7;
    margin-bottom: 4rem;
}

.crisis-events {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
}

.crisis-event {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ef4444;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid #fecaca;
}

.date-month {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
}

.date-year {
    font-size: 2rem;
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.event-industry, .event-ours {
    margin-bottom: 1rem;
}

.industry-label, .ours-label {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.industry-label {
    color: #dc2626;
}

.ours-label {
    color: #059669;
}

.industry-action {
    color: #dc2626;
    font-style: italic;
}

.ours-action {
    color: #059669;
    font-weight: 600;
}

.event-proof {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: #ecfdf5;
    border-radius: 8px;
    border: 1px solid #a7f3d0;
}

.proof-text {
    font-size: 0.9rem;
    color: #047857;
    font-weight: 500;
}

.timeline-insight {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.insight-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
}

/* 行业对比 */
.industry-comparison {
    padding: 6rem 2rem;
    background: white;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.comparison-subtitle {
    font-size: 1.25rem;
    text-align: center;
    opacity: 0.7;
    margin-bottom: 4rem;
}

.comparison-grid {
    display: grid;
    gap: 3rem;
    margin: 4rem 0;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.pain-point {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.our-solution {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.pain-point h3, .our-solution h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pain-point h3 {
    color: #dc2626;
}

.our-solution h3 {
    color: #059669;
}

.pain-list, .solution-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pain-item, .solution-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pain-icon, .solution-icon {
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.pain-text, .solution-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pain-text {
    color: #7f1d1d;
}

.solution-text {
    color: #064e3b;
}

.comparison-summary {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    margin-top: 3rem;
}

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

.summary-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* 解决思路 */
.solution-thinking {
    padding: 6rem 2rem;
    background: #f8fafc;
}

/* 创始人故事 */
.founder-story {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
}

.founder-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.founder-subtitle {
    font-size: 1.25rem;
    text-align: center;
    opacity: 0.8;
    margin-bottom: 4rem;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: flex-start;
}

.founder-video {
    position: sticky;
    top: 2rem;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
}

.video-duration {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.founder-quotes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.quote-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.quote-timestamp {
    font-size: 0.8rem;
    font-weight: 600;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
}

.founder-proof {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.proof-header p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.proof-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* 即时行动 */
.immediate-action {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.action-container {
    max-width: 1200px;
    margin: 0 auto;
}

.action-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.action-subtitle {
    font-size: 1.25rem;
    text-align: center;
    opacity: 0.7;
    margin-bottom: 4rem;
}

.action-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.action-option {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.action-option.primary {
    border-color: #6366f1;
    transform: scale(1.05);
}

.action-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.option-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.option-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-badge:not(.secondary) {
    background: #6366f1;
    color: white;
}

.option-badge.secondary {
    background: #10b981;
    color: white;
}

.option-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #64748b;
}

.detail-icon {
    font-size: 1.25rem;
}

.action-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn.primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.action-btn.secondary {
    background: #f1f5f9;
    color: #334155;
    border: 2px solid #e2e8f0;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

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

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.action-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.action-guarantee {
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.guarantee-icon {
    font-size: 2rem;
    margin-top: 0.25rem;
}

.guarantee-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.guarantee-text span {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

/* 最后联系 */
.final-contact {
    padding: 4rem 2rem;
    background: #1e293b;
    color: white;
}

.final-container {
    max-width: 1000px;
    margin: 0 auto;
}

.final-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-info strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .promise-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .promise-title {
        font-size: 2.5rem;
    }
    
    .promise-proof {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .crisis-event {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .comparison-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .action-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .action-option.primary {
        transform: none;
    }
    
    .guarantee-items {
        grid-template-columns: 1fr;
    }
    
    .contact-direct {
        grid-template-columns: 1fr;
    }
    
    .timeline-title, 
    .comparison-title, 
    .founder-title, 
    .action-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .trust-promise {
        padding: 4rem 1rem 3rem;
    }
    
    .crisis-timeline,
    .industry-comparison,
    .founder-story,
    .immediate-action {
        padding: 3rem 1rem;
    }
    
    .promise-title {
        font-size: 2rem;
    }
    
    .proof-number {
        font-size: 2rem;
    }
    
    .action-option {
        padding: 1.5rem;
    }
}
}

.thinking-process {
    margin-top: 3rem;
}

.thinking-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 80px;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-methods {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.method {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 案例深度解析 */
.case-deep-dive {
    padding: 6rem 2rem;
    background: white;
}

.case-container {
    max-width: 1200px;
    margin: 0 auto;
}

.case-studies {
    margin-top: 3rem;
}

.case-study {
    margin-bottom: 4rem;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.case-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.company-details {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.case-journey {
    padding: 2rem;
}

.journey-phase {
    margin-bottom: 3rem;
}

.phase-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.phase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.phase-situation h4,
.phase-analysis h4,
.phase-approach h4,
.phase-insight h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.result-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-weight: 600;
    color: #374151;
}

.metric-change {
    font-weight: 700;
    color: #059669;
}

/* 问题解决框架 */
.problem-solving-framework {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.framework-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.framework-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.framework-step .step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.framework-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-details ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.step-details li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1rem;
}

.step-details li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6b46c1;
    font-weight: bold;
}

/* 开始解决问题 */
.start-solving {
    padding: 6rem 2rem;
    background: white;
}

.solving-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.option-card {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.option-card.immediate {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
}

.option-card.consultation {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid #3b82f6;
}

.option-card.explore {
    background: linear-gradient(135deg, #d1fae5 0%, #bbf7d0 100%);
    border: 2px solid #10b981;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-btn.primary {
    background: #6b46c1;
    color: white;
}

.option-btn.secondary {
    background: #3b82f6;
    color: white;
}

.option-btn.outline {
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
}

/* 产品超能力 */
.product-superpowers {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.superpowers-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.superpower {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.superpower-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.superpower-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.superpower-description {
    font-size: 1.1rem;
    color: #6b46c1;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* 创建体验 */
.creation-experience {
    padding: 6rem 2rem;
    background: white;
}

.creation-container {
    max-width: 1200px;
    margin: 0 auto;
}

.creation-journey {
    margin-top: 3rem;
}

.journey-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 80px;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-description {
    font-style: italic;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.step-visual {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.voice-input, .text-input, .natural-language {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.auto-design {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.design-option {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
}

.design-option.recommended {
    border-color: #6b46c1;
    background: #f3f0ff;
    color: #6b46c1;
    font-weight: 600;
}

.deployment-success {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.success-indicator, .monitoring, .automation-running {
    background: #dcfce7;
    color: #16a34a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 创建CTA */
.creation-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 20px;
}

.creation-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* 技术保障 */
.tech-assurance {
    padding: 6rem 2rem;
    background: white;
}

.assurance-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.assurance-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
}

.assurance-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.assurance-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

/* 智能体能力图谱 */
.agent-capabilities-map {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.capability-domain {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.domain-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.domain-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.domain-agents {
    padding: 1.5rem;
}

.agent-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.agent-card:hover {
    border-color: #6b46c1;
    transform: translateY(-2px);
}

.agent-card:last-child {
    margin-bottom: 0;
}

.agent-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.agent-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.agent-skills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.skill {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 智能体成长 */
.agent-growth {
    padding: 6rem 2rem;
    background: white;
}

.growth-container {
    max-width: 1200px;
    margin: 0 auto;
}

.growth-stories {
    margin-top: 3rem;
}

.growth-story {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.story-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.agent-portrait {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.growth-timeline {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.growth-phase {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #e2e8f0;
}

.growth-phase.current {
    border-left-color: #6b46c1;
    background: #f3f0ff;
}

.phase-period {
    font-weight: 600;
    color: #6b46c1;
    margin-bottom: 0.5rem;
}

.phase-description h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.learning-insights h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.new-skills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.skill-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.skill-badge.new {
    background: #fef3c7;
    color: #d97706;
}

.growth-achievements {
    margin-top: 2rem;
}

.achievement {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
}

.achievement-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.achievement-text h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

/* 加入生态系统 */
.join-ecosystem {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.join-container {
    max-width: 1200px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.join-content > p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.ecosystem-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.join-cta {
    text-align: center;
}

.join-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.agent-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.agent-option {
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.agent-option:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.agent-option h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.agent-option p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

/* 使命网格样式 - About页面 */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
}

/* 愿景路线图样式 */
.vision-roadmap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.roadmap-year {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    min-width: 100px;
}

.roadmap-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.roadmap-content p {
    color: #64748b;
    line-height: 1.6;
}

/* 信念详情样式 */
.belief-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.belief-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.belief-item:hover {
    transform: translateY(-3px);
}

.belief-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.belief-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.belief-text p {
    color: #64748b;
    line-height: 1.6;
}

/* About页面 - Hero区域样式 */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-emphasis {
    background: linear-gradient(45deg, #ffc300, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 20px;
}

.hero-subtitle {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #ffc300;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(255, 195, 0, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    font-weight: 500;
}

.stat-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5em;
    font-weight: 300;
}

/* 行业思维对比部分样式 */
.industry-thinking {
    background: #f8fafc;
    padding: 120px 0;
    position: relative;
}

.thinking-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.thinking-header {
    text-align: center;
    margin-bottom: 80px;
}

.thinking-title {
    font-size: 3em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thinking-subtitle {
    font-size: 1.3em;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.thinking-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: stretch;
}

.comparison-side {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.comparison-side.industry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.comparison-side.ours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.side-header h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: #1e293b;
}

.side-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.side-tag.common {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.side-tag.unique {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.thinking-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.thinking-point:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.point-icon {
    font-size: 1.5em;
    min-width: 40px;
}

.point-text {
    flex: 1;
    line-height: 1.6;
}

.point-text strong {
    color: #1e293b;
    font-weight: 600;
}

.thinking-problem,
.thinking-solution {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
}

.thinking-solution {
    border-left-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.arrow-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.arrow-text {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    padding: 15px 20px;
    border-radius: 50%;
    font-size: 1.2em;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 1px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .thinking-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison-arrow {
        order: -1;
        flex-direction: row;
    }
    
    .arrow-line {
        width: 60px;
        height: 2px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .thinking-title {
        font-size: 2.2em;
    }
    
    .thinking-subtitle {
        font-size: 1.1em;
    }
    
    .comparison-side {
        padding: 30px 20px;
    }
    
    .side-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 进化逻辑部分样式 */
.evolution-logic {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.evolution-logic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 117, 201, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 195, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.evolution-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.evolution-header {
    text-align: center;
    margin-bottom: 80px;
}

.evolution-title {
    font-size: 3.2em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #2d75c9, #ffc300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.evolution-subtitle {
    font-size: 1.3em;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.evolution-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 80px;
}

.comparison-side {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.comparison-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
}

.industry-way::before {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 99, 132, 0.5) 50%, 
        transparent 100%);
}

.our-way::before {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(45, 117, 201, 0.5) 50%, 
        transparent 100%);
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.comparison-header h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: #fff;
}

.comparison-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-tag.flow {
    background: rgba(255, 99, 132, 0.2);
    color: #ff6384;
    border: 1px solid rgba(255, 99, 132, 0.3);
}

.comparison-tag.value {
    background: rgba(45, 117, 201, 0.2);
    color: #2d75c9;
    border: 1px solid rgba(45, 117, 201, 0.3);
}

.comparison-approach {
    margin-bottom: 30px;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-item:last-child {
    border-bottom: none;
}

.approach-icon {
    font-size: 1.2em;
    min-width: 30px;
}

.approach-text {
    color: #e0e0e0;
    font-size: 1.1em;
    line-height: 1.5;
}

.comparison-problem,
.comparison-solution {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid rgba(255, 99, 132, 0.5);
    color: #b0b0b0;
    line-height: 1.6;
}

.comparison-solution {
    border-left-color: rgba(45, 117, 201, 0.5);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-symbol {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2d75c9, #ffc300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 10px 30px rgba(45, 117, 201, 0.3);
}

.evolution-outcomes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.outcome-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.outcome-header h3 {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.outcome-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.outcome-icon {
    font-size: 2em;
    min-width: 60px;
}

.outcome-text {
    flex: 1;
}

.outcome-text strong {
    display: block;
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

.outcome-text span {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1.1em;
}

.evolution-mission {
    background: rgba(45, 117, 201, 0.08);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(45, 117, 201, 0.15);
    text-align: center;
}

.mission-quote blockquote {
    font-size: 1.4em;
    line-height: 1.7;
    color: #e0e0e0;
    font-style: italic;
    margin: 0 0 40px 0;
    position: relative;
}

.mission-quote blockquote::before,
.mission-quote blockquote::after {
    content: '"';
    font-size: 2em;
    color: #2d75c9;
    font-family: serif;
}

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

.mission-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-stat .stat-number {
    font-size: 2.5em;
    font-weight: 700;
    background: linear-gradient(45deg, #2d75c9, #ffc300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.mission-stat .stat-label {
    color: #b0b0b0;
    font-size: 1em;
    text-align: center;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .evolution-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison-vs {
        order: -1;
    }

    .evolution-outcomes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .evolution-logic {
        padding: 80px 0;
    }
    
    .evolution-title {
        font-size: 2.2em;
    }
    
    .evolution-subtitle {
        font-size: 1.1em;
    }
    
    .comparison-side,
    .outcome-section,
    .evolution-mission {
        padding: 30px 20px;
    }
    
    .mission-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .vs-symbol {
        width: 60px;
        height: 60px;
        font-size: 1.2em;
    }

    .comparison-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .evolution-outcomes {
        grid-template-columns: 1fr;
    }
}

/* 团队哲学 - About页面专用样式 */
.team-philosophy {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

.talent-philosophy {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.talent-trait {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trait-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    display: flex;
    justify-content: center;
}

.talent-trait h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.talent-trait p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.join-us {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.join-statement h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.join-statement p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.join-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* 成就里程碑样式 */
.crypto-achievements {
    padding: 6rem 2rem;
    background: #1e293b;
    color: white;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.achievements-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

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

.achievement-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.achievement-description {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.achievement-trend {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

.recognition {
    margin-top: 4rem;
}

.recognition h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.recognition-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.recognition-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.recognition-item strong {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.recognition-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* 响应式设计 - 团队哲学和成就部分 */
@media (max-width: 768px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .talent-trait {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recognition-list {
        grid-template-columns: 1fr;
    }
}

/* 响应式设计针对新样式 */
@media (max-width: 768px) {
    .manifesto-hero,
    .manifesto-container,
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-chapter,
    .thinking-step,
    .journey-step {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .manifesto-title,
    .scenario-title {
        font-size: 2.5rem;
    }
    
    .values-grid,
    .superpowers-grid,
    .capabilities-grid,
    .ecosystem-benefits {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .moment-before-after,
    .phase-content {
        grid-template-columns: 1fr;
    }
    
    .growth-timeline {
        flex-direction: column;
    }
    
    .agent-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solving-options {
        grid-template-columns: 1fr;
    }
    
    .assurance-grid {
        grid-template-columns: 1fr;
    }
}

/* 响应式设计 */
.about-section {
    padding: 100px 0 80px;
    background: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 关于我们头部 */
.about-hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 80px;
    padding: 60px 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-hero-content {
    flex: 1;
    padding: 0 3rem;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-slogan {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.slogan-text {
    font-size: 1.8rem;
    color: #34495e;
    font-weight: 400;
}

.slogan-highlight {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.about-hero-image {
    flex: 1;
    text-align: center;
}

.about-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* 愿景使命区域 */
.vision-mission {
    display: flex;
    gap: 4rem;
    margin-bottom: 80px;
    align-items: flex-start;
}

.vision-section {
    flex: 1.5;
}

.vision-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vision-section > p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.vision-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #667eea;
}

.vision-item p {
    line-height: 1.8;
    color: #555;
}

.vision-images {
    flex: 1;
}

.vision-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.vision-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 公司优势 */
.company-advantages {
    margin-bottom: 80px;
}

.advantages-header h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.advantage-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.advantage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.advantage-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.expand-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.advantage-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.advantage-content.expanded {
    max-height: 200px;
    padding: 2rem;
}

.advantage-content p {
    line-height: 1.8;
    color: #555;
}

/* 公司发展时间线 */
.company-timeline {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.timeline-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 700;
}

.timeline-controls {
    display: flex;
    gap: 1rem;
}

.timeline-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.timeline-container {
    overflow: hidden;
}

.timeline-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.timeline-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-year {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
}

.timeline-image {
    flex: 1;
}

.timeline-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.timeline-text {
    flex: 1;
    text-align: left;
}

.timeline-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .slogan-text, .slogan-highlight {
        font-size: 1.4rem;
    }
    
    .vision-mission {
        flex-direction: column;
        gap: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-text {
        text-align: center;
    }
    
    .company-timeline {
        padding: 2rem;
    }
}

/* =================================
   声明公告样式
================================= */

/* 业务声明区域 */
.business-statement {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 50%, #f8f9ff 100%);
    border-top: 3px solid #667eea;
    border-bottom: 3px solid #764ba2;
    position: relative;
}

.business-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(102, 126, 234, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(118, 75, 162, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.statement-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 声明头部 */
.statement-header {
    text-align: center;
    margin-bottom: 3rem;
}

.statement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #667eea;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #4c51bf;
    animation: pulse-attention 2s infinite;
}

.badge-icon {
    font-size: 1.2rem;
    animation: shake 3s infinite;
}

.statement-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.statement-subtitle {
    font-size: 1.1rem;
    color: #636e72;
    font-weight: 500;
}

/* 声明内容 */
.statement-content {
    max-width: 1000px;
    margin: 0 auto;
}

.main-statement {
    text-align: center;
    margin-bottom: 3rem;
}

.main-statement p {
    font-size: 1.1rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.highlight-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    margin: 1.5rem 0;
    border-left: 5px solid #4c51bf;
    text-align: center;
}

/* 业务立场 */
.business-positions {
    margin-bottom: 3rem;
}

.business-positions h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #2d3436;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #4c51bf);
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.position-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.position-card h4 {
    color: #2d3436;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.position-card p {
    color: #636e72;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* 风险警示 */
.risk-warning {
    background: linear-gradient(135deg, #fff8f8, #fef2f2);
    border: 2px solid #e53e3e;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}

.risk-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(229, 62, 62, 0.03) 10px,
            rgba(229, 62, 62, 0.03) 20px
        );
    pointer-events: none;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.warning-icon {
    font-size: 2rem;
    animation: warning-flash 2s infinite;
}

.warning-header h3 {
    color: #e53e3e;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.warning-content {
    position: relative;
    z-index: 1;
}

.warning-content p {
    color: #2d3436;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.warning-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #e53e3e;
}

.warning-bullet {
    font-size: 1.2rem;
    color: #e53e3e;
}

.warning-item span:last-child {
    color: #2d3436;
    font-weight: 500;
}

.report-info {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.report-info p {
    color: white !important;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-label {
    font-weight: 600;
    color: #fff;
}

.contact-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-number:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* 动画效果 */
@keyframes pulse-attention {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-2deg); }
    20%, 40%, 60%, 80% { transform: rotate(2deg); }
}

@keyframes warning-flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.7; }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .business-statement {
        padding: 3rem 1rem;
    }
    
    .statement-title {
        font-size: 1.8rem;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .position-card {
        padding: 1.5rem;
    }
    
    .risk-warning {
        padding: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }
}

/* =================================
   智能技术专用样式
================================= */

/* 智能解决方案英雄区 */
.smart-solutions-hero,
.blockchain-solutions-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.smart-solutions-hero::before,
.blockchain-solutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(118, 75, 162, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.smart-badge,
.blockchain-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

/* 区块链生态系统可视化 */
.blockchain-ecosystem {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.ecosystem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-node {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.center-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.ecosystem-rings {
    position: relative;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.ring-1 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ecosystem-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ecosystem-node:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* 节点位置 */
.node-defi { top: -30px; left: 50%; transform: translateX(-50%); }
.node-nft { top: 50%; right: -30px; transform: translateY(-50%); }
.node-dao { bottom: -30px; left: 50%; transform: translateX(-50%); }

.node-dex { top: -30px; left: 25%; transform: translateX(-50%); }
.node-bridge { top: 25%; right: -30px; transform: translateY(-50%); }
.node-oracle { bottom: -30px; right: 25%; transform: translateX(50%); }
.node-staking { bottom: 25%; left: -30px; transform: translateY(50%); }

/* 连接线 */
.connecting-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: flow 3s ease-in-out infinite;
}

@keyframes flow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* 智能产品英雄区 */
.smart-product-hero,
.defi-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.smart-badge,
.defi-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 69, 0, 0.15);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

/* 智能仪表板 */
.smart-dashboard,
.defi-dashboard {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #667eea;
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    color: #1e293b;
}

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

.dashboard-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-weight: 600;
}

.dashboard-value {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #1e293b;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-change {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.chart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.chart-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.chart-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.chart-value {
    font-weight: 800;
    font-size: 1.3rem;
    color: #10b981;
}

/* AI交易英雄区 */
.trading-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.trading-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

/* 交易终端 */
.trading-terminal {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-title {
    font-weight: 600;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.terminal-status.live {
    color: #10b981;
}

.terminal-content {
    padding: 1.5rem;
}

.price-ticker {
    margin-bottom: 2rem;
}

.ticker-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-item:last-child {
    border-bottom: none;
}

.symbol {
    font-weight: 600;
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
}

.change.up {
    color: #10b981;
}

.change.down {
    color: #ef4444;
}

.ai-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.action-type {
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
}

.action-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 交易策略卡片 */
.strategies-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strategy-card, .product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #e2e8f0;
}

.strategy-card:hover, .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* 策略状态指示器 */
.strategy-status, .product-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
}

.status-indicator.active {
    background: #10b981;
    animation: blink 2s infinite;
}

.status-indicator.paused {
    background: #f59e0b;
}

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

.status-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
}

/* 策略性能指标 */
.strategy-performance, .product-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.performance-metric, .stat {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.metric-value, .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metric-value.positive, .stat-value.positive {
    color: #10b981;
}

.metric-value.negative {
    color: #ef4444;
}

.metric-label, .stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* 策略按钮 */
.strategy-btn, .product-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.strategy-btn.primary, .product-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.strategy-btn.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.strategy-btn.disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* 加密货币特定颜色 */
.trend-following {
    border-left-color: #10b981;
}

.grid-trading {
    border-left-color: #f59e0b;
}

.arbitrage {
    border-left-color: #8b5cf6;
}

.mean-reversion {
    border-left-color: #ef4444;
}

.yield-farming {
    border-left-color: #10b981;
}

.staking {
    border-left-color: #3b82f6;
}

.lending {
    border-left-color: #f59e0b;
}

.cross-chain {
    border-left-color: #8b5cf6;
}

/* APY 标签 */
.product-apy, .apy-value {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* 加密统计数据 */
.crypto-stats, .hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* 核心解决方案样式 */
.core-solutions {
    padding: 6rem 2rem;
    background: white;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.solution-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.solution-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.solution-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

.solution-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.hot {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-badge.new {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.status-badge.popular {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-badge.trending {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.solution-features .feature {
    font-size: 0.9rem;
    color: #374151;
    padding: 0.25rem 0;
}

.solution-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.tech-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.solution-examples, .solution-cases {
    margin: 1rem 0;
}

.example, .case {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.solution-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.solution-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.solution-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.solution-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.solution-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* 区块链服务时间线 */
.blockchain-services {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-timeline {
    margin-top: 3rem;
}

.timeline-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 80px;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-deliverables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.deliverable {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 成功案例样式 */
.crypto-success-stories {
    padding: 6rem 2rem;
    background: white;
}

.stories-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.type-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.result-highlight {
    text-align: center;
}

.result-value {
    font-size: 2rem;
    font-weight: 900;
    display: block;
}

.result-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.story-challenge, .story-solution {
    margin-bottom: 2rem;
}

.story-challenge h4, .story-solution h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.solution-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-icon {
    font-size: 1.1rem;
}

.story-metrics {
    margin-top: 2rem;
}

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

.metric-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #64748b;
}

.story-achievements {
    margin-top: 1.5rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: #f0f7ff;
    border-radius: 8px;
}

.achievement-icon {
    font-size: 1.2rem;
}

.story-governance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.governance-metric {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.metric-title {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

/* 加密解决方案框架 */
.crypto-solutions-framework {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.framework-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.framework-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.framework-step:hover {
    transform: translateY(-5px);
}

.framework-step .step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.framework-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-details ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.step-details li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1rem;
}

.step-details li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6b46c1;
    font-weight: bold;
}

/* 开始项目区域 */
.start-crypto-project {
    padding: 6rem 2rem;
    background: white;
}

.project-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.option-card {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.option-card.enterprise {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #ef4444;
}

.option-card.startup {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
}

.option-card.consulting {
    background: linear-gradient(135deg, #d1fae5 0%, #bbf7d0 100%);
    border-color: #10b981;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-features {
    margin: 1.5rem 0;
    text-align: left;
}

.option-features .feature {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #374151;
}

.option-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.option-btn.primary {
    background: #6b46c1;
    color: white;
}

.option-btn.secondary {
    background: #3b82f6;
    color: white;
}

.option-btn.outline {
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
}

.option-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 加密CTA区域 */
.cta.crypto-cta {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

/* 移动端响应式 - 加密货币样式 */
@media (max-width: 768px) {
    .blockchain-ecosystem {
        width: 300px;
        height: 300px;
    }
    
    .solutions-grid, .stories-grid, .project-options {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-number {
        font-size: 2rem;
        width: auto;
        text-align: center;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .metrics-row, .governance-metric {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .framework-steps {
        grid-template-columns: 1fr;
    }
    
    .crypto-stats, .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =================================
   About页面布局优化
================================= */

/* 加密货币宣言 - 全新设计 */
.crypto-manifesto {
    padding: 4rem 2rem;
    background: 
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 30%, #16213e 70%, #0f3460 100%);
    color: white;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.crypto-manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* 粒子效果背景 */
.crypto-manifesto::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(102, 126, 234, 0.4), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 60% 10%, rgba(118, 75, 162, 0.4), transparent);
    background-repeat: repeat;
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    animation: sparkle 20s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.manifesto-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.manifesto-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manifesto-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    font-style: italic;
}

.manifesto-hero {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 0 1rem;
}

.manifesto-content {
    max-width: 100%;
    padding-right: 0.5rem;
}

.manifesto-statement {
    margin-bottom: 0;
}

.manifesto-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.title-line {
    display: inline;
    margin-right: 0.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.title-line.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    opacity: 0.6;
}

.manifesto-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* 简化的可视化设计 */
.manifesto-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.blockchain-network {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 中心Logo */
.blockchain-network::before {
    content: 'V';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* 简化的节点 */
.network-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
    animation: nodeFloat 3s ease-in-out infinite;
}

.network-node span {
    display: none;
}

.network-node.node-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.network-node.node-2 {
    top: 25%;
    right: 25%;
    animation-delay: 0.8s;
}

.network-node.node-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 1.6s;
}

.network-node.node-4 {
    bottom: 25%;
    right: 30%;
    animation-delay: 2.4s;
}

@keyframes nodeFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-5px) scale(1.3);
        opacity: 1;
    }
}

/* 移除复杂的连接线 */
.network-connections,
.connection-line {
    display: none;
}

/* 加密故事 - 优化布局 */
.crypto-story {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-chapter {
    display: flex;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: flex-start;
    position: relative;
}

.story-chapter::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 120px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, transparent);
    opacity: 0.3;
}

.story-chapter:last-child::before {
    display: none;
}

.chapter-number {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 160px;
    position: relative;
}

.chapter-number::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0.5;
}

.chapter-content {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
}

.chapter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px 20px 0 0;
}

.chapter-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
    position: relative;
}

/* 信念声明 - 优化 */
.belief-statement {
    margin-bottom: 3rem;
}

.crypto-quote {
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: #475569;
    border-left: 5px solid #667eea;
    padding-left: 2.5rem;
    margin-bottom: 3rem;
    line-height: 1.5;
    position: relative;
}

.crypto-quote::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -20px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.3;
}

.crypto-quote::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -30px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.3;
}

/* 信念详情 - 网格优化 */
.belief-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.belief-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.belief-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.belief-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.belief-item:hover::before {
    opacity: 1;
}

.belief-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.belief-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    position: relative;
    z-index: 1;
}

.belief-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* 使命网格 - 优化 */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.mission-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: block;
}

.mission-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.mission-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* 愿景路线图 - 时间轴优化 */
.vision-roadmap {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.vision-roadmap::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 2px;
    opacity: 0.3;
}

.roadmap-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    border-left: 5px solid #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.12);
}

.roadmap-year {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    min-width: 120px;
    position: relative;
}

.roadmap-year::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, 0 0 0 6px #667eea;
}

.roadmap-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.roadmap-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* 加密价值观 - 卡片优化 */
.crypto-values {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.value-item {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.value-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.value-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.value-subtitle {
    font-size: 1rem;
    color: #667eea;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 500;
}

.value-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* 团队哲学 - 优化版本 */
.team-philosophy {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.team-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.philosophy-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
    line-height: 1.2;
}

.talent-philosophy {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.talent-trait {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.talent-trait:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(10px);
}

.trait-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 80px;
}

.talent-trait h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.talent-trait p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
}

.join-us {
    background: rgba(255, 255, 255, 0.15);
    padding: 4rem 3rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.join-statement h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.join-statement p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.join-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

/* 成就里程碑 - 优化版 */
.crypto-achievements {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.crypto-achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.achievements-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.achievements-container h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: white;
}

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

.achievement-item {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.achievement-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.achievement-description {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
}

.achievement-trend {
    font-size: 1rem;
    color: #10b981;
    font-weight: 500;
}

/* 行业认可 - 优化 */
.recognition {
    margin-top: 5rem;
}

.recognition h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

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

.recognition-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.recognition-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.recognition-item strong {
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.recognition-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* 响应式 - About页面优化 */
@media (max-width: 768px) {
    /* 宣言英雄区 - 移动端 */
    .crypto-manifesto {
        padding: 3rem 1rem;
        min-height: 70vh;
    }
    
    .manifesto-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0;
        max-width: 100%;
    }
    
    .manifesto-content {
        padding-right: 0;
        max-width: 100%;
    }
    
    .manifesto-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .manifesto-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .blockchain-network {
        width: 200px;
        height: 200px;
    }
    
    .blockchain-network::before {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .network-node {
        width: 6px;
        height: 6px;
    }
    
    /* 故事章节 - 移动端 */
    .crypto-story {
        padding: 5rem 1.5rem;
    }
    
    .story-chapter {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-bottom: 5rem;
    }
    
    .story-chapter::before {
        display: none;
    }
    
    .chapter-number {
        font-size: 3.5rem;
        width: auto;
    }
    
    .chapter-number::after {
        display: none;
    }
    
    .chapter-content {
        padding: 2rem;
    }
    
    .chapter-content h2 {
        font-size: 2.2rem;
    }
    
    .crypto-quote {
        font-size: 1.5rem;
        padding-left: 1.5rem;
        border-left-width: 3px;
    }
    
    .crypto-quote::before,
    .crypto-quote::after {
        font-size: 3rem;
    }
    
    /* 信念详情 - 移动端 */
    .belief-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .belief-item {
        padding: 2rem;
    }
    
    /* 使命卡片 - 移动端 */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    /* 愿景路线图 - 移动端 */
    .vision-roadmap::before {
        left: 50px;
        width: 2px;
    }
    
    .roadmap-item {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem;
    }
    
    .roadmap-year {
        font-size: 2.5rem;
        min-width: auto;
    }
    
    .roadmap-year::after {
        display: none;
    }
    
    /* 价值观 - 移动端 */
    .crypto-values {
        padding: 5rem 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-item {
        padding: 2.5rem 2rem;
    }
    
    .value-icon {
        font-size: 3rem;
    }
    
    .value-header h3 {
        font-size: 1.5rem;
    }
    
    /* 团队哲学 - 移动端 */
    .team-philosophy {
        padding: 5rem 1.5rem;
    }
    
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .philosophy-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .talent-trait {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .trait-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .join-us {
        padding: 3rem 2rem;
    }
    
    .join-statement h3 {
        font-size: 1.8rem;
    }
    
    .join-statement p {
        font-size: 1.1rem;
    }
    
    /* 成就里程碑 - 移动端 */
    .crypto-achievements {
        padding: 5rem 1.5rem;
    }
    
    .achievements-container h2 {
        font-size: 2.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .achievement-item {
        padding: 2.5rem 1.5rem;
    }
    
    .achievement-number {
        font-size: 3rem;
    }
    
    /* 认可列表 - 移动端 */
    .recognition-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recognition-item {
        padding: 2rem;
    }
}

/* 平板优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .manifesto-hero {
        grid-template-columns: 2fr 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .manifesto-content {
        padding-right: 0.5rem;
    }
    
    .manifesto-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .blockchain-network {
        width: 240px;
        height: 240px;
    }
    
    .blockchain-network::before {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .network-node {
        width: 7px;
        height: 7px;
    }
    
    .story-chapter {
        gap: 3rem;
        margin-bottom: 6rem;
    }
    
    .chapter-number {
        font-size: 4.5rem;
        width: 140px;
    }
    
    .chapter-content {
        padding: 2.5rem;
    }
    
    .chapter-content h2 {
        font-size: 2.5rem;
    }
    
    .crypto-quote {
        font-size: 1.8rem;
    }
    
    .philosophy-container {
        gap: 4rem;
    }
    
    .philosophy-content h2 {
        font-size: 2.8rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* 大屏幕优化 */
@media (min-width: 1400px) {
    .manifesto-hero {
        max-width: 1600px;
    }
    
    .story-container {
        max-width: 1600px;
    }
    
    .philosophy-container {
        max-width: 1600px;
    }
    
    .achievements-container {
        max-width: 1600px;
    }
    
    .manifesto-title {
        font-size: 4.5rem;
    }
    
    .chapter-content h2 {
        font-size: 3rem;
    }
    
    .philosophy-content h2 {
        font-size: 3.5rem;
    }
    
    .achievements-container h2 {
        font-size: 3.5rem;
    }
}

/* AI交易页面专用样式 */
/* AI交易员个人资料 */
.ai-trader-profile {
    padding: 6rem 2rem;
    background: white;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.traders-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: flex-start;
}

.trader-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.trader-card.featured {
    border: 2px solid #667eea;
}

.trader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trader-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.trader-avatar {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.trader-info {
    flex: 1;
}

.trader-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.trader-specialty {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trader-experience {
    font-size: 0.9rem;
    color: #64748b;
}

.trader-performance {
    text-align: center;
    min-width: 100px;
}

.performance-score {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.performance-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

/* 交易统计 */
.trader-stats {
    padding: 2rem;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.stat-item:hover {
    background: #e2e8f0;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-value.positive {
    color: #10b981;
}

/* 交易员个性特征 */
.trader-personality {
    padding: 2rem;
    background: #fafbfc;
    margin: 0 2rem 2rem 2rem;
    border-radius: 15px;
}

.trader-personality h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.personality-traits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trait {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.trait-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    min-width: 80px;
}

.trait-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
}

.trait-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.trait-value {
    font-size: 0.8rem;
    color: #64748b;
    min-width: 60px;
    text-align: right;
}

/* 最近交易活动 */
.trader-recent-activity {
    padding: 2rem;
}

.trader-recent-activity h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.activity-item:hover {
    background: #e2e8f0;
}

.activity-time {
    color: #64748b;
    font-weight: 500;
    min-width: 70px;
}

.activity-action {
    font-weight: 600;
    color: #1e293b;
}

.activity-price {
    color: #64748b;
    font-family: monospace;
}

.activity-result {
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    min-width: 60px;
    text-align: center;
}

.activity-result.profit {
    background: #dcfce7;
    color: #166534;
}

.activity-result.loss {
    background: #fee2e2;
    color: #dc2626;
}

.activity-result.pending {
    background: #fef3c7;
    color: #d97706;
}

/* 选择交易员按钮 */
.select-trader-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem;
    margin-bottom: 0;
}

.select-trader-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* 其他交易员卡片 */
.other-traders {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trader-mini-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.trader-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mini-avatar {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-info {
    flex: 1;
}

.mini-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.mini-performance {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

.mini-select-btn {
    padding: 0.5rem 1rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mini-select-btn:hover {
    background: #5b21b6;
}

/* 风险管理系统 */
.risk-management {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.risk-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.risk-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.risk-feature:hover {
    transform: translateY(-5px);
}

.risk-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.risk-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.risk-feature p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.risk-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.detail-label {
    font-size: 0.9rem;
    color: #64748b;
}

.detail-value {
    font-weight: 600;
    color: #1e293b;
}

/* 实时交易数据 */
.live-trading-data {
    padding: 6rem 2rem;
    background: #1e293b;
    color: white;
}

.data-container {
    max-width: 1200px;
    margin: 0 auto;
}

.data-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.data-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.data-summary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.summary-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.summary-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.summary-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.summary-change.positive {
    color: #10b981;
}

.live-trades {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-trades h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.trades-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trade-item {
    display: grid;
    grid-template-columns: auto auto auto 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.8rem;
}

.trade-time {
    color: #94a3b8;
    font-family: monospace;
}

.trade-bot {
    font-weight: 600;
    color: #67e8f9;
}

.trade-action {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

.trade-action.buy {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.trade-action.sell {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.trade-pair {
    font-family: monospace;
    color: white;
}

.trade-amount {
    font-family: monospace;
    color: #94a3b8;
}

.trade-price {
    font-family: monospace;
    color: #fbbf24;
}

/* 开始AI交易 */
.start-ai-trading {
    padding: 6rem 2rem;
    background: white;
}

.start-container {
    max-width: 1200px;
    margin: 0 auto;
}

.start-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.start-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.start-step {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 300px;
    transition: transform 0.3s ease;
}

.start-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-content .step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.step-note {
    font-size: 0.8rem;
    color: #94a3b8;
    font-style: italic;
}

.step-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
}

.start-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 20px;
}

.start-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.start-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.start-main-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.start-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.start-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

/* 响应式 - AI交易页面 */
@media (max-width: 768px) {
    .traders-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trader-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .data-dashboard {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .start-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .start-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trade-item {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        font-size: 0.7rem;
    }
}

/* =================================
   Products页面专用样式
================================= */

/* 智能产品页面样式 */
.smart-products,
.defi-products {
    padding: 6rem 2rem;
    background: white;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.products-intro {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* 收益策略组合 */
.yield-strategies {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.strategies-container {
    max-width: 1200px;
    margin: 0 auto;
}

.strategies-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.strategies-intro {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.strategies-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.strategy-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.strategy-tab:hover {
    border-color: #667eea;
    transform: translateY(-3px);
}

.strategy-tab.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
}

.tab-icon {
    font-size: 2rem;
}

.strategy-tab span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.tab-apy {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

.strategy-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.strategy-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.strategy-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategy-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.strategy-info p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.strategy-allocation h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.allocation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.allocation-item:last-child {
    border-bottom: none;
}

.asset {
    font-weight: 500;
    color: #374151;
}

.percentage {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

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

.metric {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.metric-label {
    font-size: 0.8rem;
    color: #64748b;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.strategy-visual {
    display: flex;
    flex-direction: column;
}

.performance-chart {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

.performance-chart h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.chart-placeholder {
    position: relative;
    height: 150px;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

.chart-line.balanced {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.chart-line.aggressive {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.chart-points {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}

.chart-point {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
}

.chart-point.active {
    background: #10b981;
    transform: scale(1.5);
}

.chart-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

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

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-value.green {
    color: #10b981;
}

.strategy-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.strategy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* 安全保障 */
.security-assurance {
    padding: 6rem 2rem;
    background: white;
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
}

.security-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.security-intro {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.security-item {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.security-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.security-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.security-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 开始使用 */
.get-started {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.started-container {
    max-width: 1200px;
    margin: 0 auto;
}

.started-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.step-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 300px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-content .step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.step-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
}

.started-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.started-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.started-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.started-main-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.started-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.started-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.started-stats .stat {
    text-align: center;
}

.started-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

.started-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

/* 响应式设计 - Products页面 */
@media (max-width: 768px) {
    .strategies-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .strategy-tab {
        width: 100%;
        max-width: 300px;
    }
    
    .strategy-details {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .strategy-metrics {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-flow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .started-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* 响应式设计 */

/* 平板电脑和小桌面 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .intro-description {
        gap: 2rem;
    }
    
    .evolution-container {
        gap: 2rem;
    }
    
    .platform-container {
        gap: 2rem;
    }
}

/* 大平板 (768px - 900px) */
@media (min-width: 768px) and (max-width: 900px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-contact {
        display: none;
    }
}

/* 移动端和小平板 (max-width: 768px) */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        text-align: center;
        margin-left: 0;
        top: 60px;
        padding: 0 1rem;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-carousel {
        height: 60vh;
    }
    
    .intro-description {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-main {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .intro-content {
        padding: 3rem 1.5rem;
    }
    
    .intro-img-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stats-title {
        font-size: 2.2rem;
    }
    
    .stats-container {
        padding: 3rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .evolution-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .platform-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .platform-demo {
        height: 600px;
    }
    
    .demo-interface {
        left: 20px;
        width: 70%;
        transform: translateY(10px);
    }
    
    .demo-person {
        top: 30px;
        width: 80%;
        height: 520px;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .agent-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .use-cases-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .client-tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0;
    }
    
    .client-tab {
        padding: 0.8rem 1rem;
        border-bottom: 2px solid transparent;
    }
    
    .case-study {
        grid-template-columns: 1fr;
    }
    
    .case-content {
        padding: 1.5rem;
    }
    
    .case-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        padding: 3rem 1.5rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-container {
        padding: 2rem 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-content {
        text-align: center;
        margin-left: 0;
        top: 40px;
        padding: 0 1rem;
    }
    
    .hero {
        min-height: 50vh;
    }
    
    .hero-carousel {
        height: 50vh;
    }
    
    .hero-indicators {
        gap: 0.3rem;
    }
    
    .indicator {
        width: 80px;
        height: 4px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-main {
        font-size: 1.5rem;
    }
    
    .intro-content {
        padding: 2rem 1rem;
    }
    
    .intro-img-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .stats-title {
        font-size: 1.8rem;
    }
    
    .stats-container {
        padding: 2rem 1rem;
    }
    
    .evolution-container {
        padding: 2rem 1rem;
    }
    
    .platform-container {
        padding: 2rem 1rem;
    }
    
    .platform-demo {
        height: 500px;
    }
    
    .demo-interface {
        left: 10px;
        width: 75%;
        transform: translateY(5px);
    }
    
    .demo-person {
        top: 20px;
        width: 85%;
        height: 420px;
    }
    
    .use-cases-container {
        padding: 2rem 1rem;
    }
    
    .client-tabs {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0;
    }
    
    .client-tab {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        border-bottom: 2px solid transparent;
    }
    
    .case-content {
        padding: 1rem;
    }
    
    .case-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .case-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .cta-container {
        padding: 2rem 1rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .footer-container {
        padding: 1.5rem 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-box input {
        width: 100%;
    }
}

/* 动画效果样式 */
/* 淡入动画 */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        opacity: 1;
        transform: scale(0.9) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 打字机效果 - 已移除
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #667eea;
    }
}
*/

/* 发光效果 */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(102, 126, 234, 0.5), 0 0 10px rgba(102, 126, 234, 0.3), 0 0 15px rgba(102, 126, 234, 0.2);
    }
    50% {
        text-shadow: 0 0 10px rgba(102, 126, 234, 0.8), 0 0 20px rgba(102, 126, 234, 0.6), 0 0 30px rgba(102, 126, 234, 0.4);
    }
}

/* 脉冲效果 */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.6);
    }
    100% {
        transform: scale(1.2);
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

/* 弹跳效果 */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* 浮动效果 */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 旋转效果 */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 流动效果 */
@keyframes flow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

/* 动画类 */
.fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 1.2s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* 打字机动画类 - 已禁用
.typewriter {
    overflow: visible;
    border-right: none;
    white-space: normal;
    animation: none;
}

.typewriter-quote {
    overflow: visible;
    border-right: none;
    animation: none;
}
*/

.glow-text {
    animation: glow 2s ease-in-out infinite alternate;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

.pulse-text {
    animation: pulse 1.5s ease-in-out infinite;
}

.pulse-dot {
    animation: pulse-ring 2s infinite;
}

.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.bounce-icon {
    animation: bounce 2s infinite;
}

.hover-bounce:hover {
    animation: bounce 0.5s ease-in-out;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.rotating-nodes {
    animation: rotate 20s linear infinite;
}

.spinning {
    animation: rotate 15s linear infinite;
}

.rotate-slow {
    animation: rotate-slow 30s linear infinite;
}

.flow-animation {
    position: relative;
    overflow: hidden;
}

.flow-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.4), transparent);
    animation: flow 3s linear infinite;
}

.hover-lift:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hover-tilt:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
    transition: transform 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    transition: box-shadow 0.3s ease;
}

.hover-highlight:hover {
    background: rgba(102, 126, 234, 0.1);
    transition: background 0.3s ease;
}

.card-float {
    animation: floating 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animated-icon {
    animation: bounce 1s ease-in-out infinite;
}

.animated-terminal {
    position: relative;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.animated-dashboard {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.counter-animation {
    display: inline-block;
    transition: all 0.3s ease;
}

.positive-flash {
    animation: glow 1.5s ease-in-out;
    color: #10b981;
}

.negative-flash {
    animation: glow 1.5s ease-in-out;
    color: #ef4444;
}

.success-flash {
    animation: glow 1.5s ease-in-out;
    color: #059669;
}

.color-cycle {
    animation: glow 3s ease-in-out infinite;
}

.glow-badge {
    position: relative;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(139, 92, 246, 0.1));
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* 延迟动画类 */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* 响应式动画 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* JavaScript动画控制增强 */
.js-animation-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.js-animation-ready.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 动态数据更新效果 */
.data-update-flash {
    animation: dataFlash 1s ease-out;
}

@keyframes dataFlash {
    0% { 
        background: rgba(16, 185, 129, 0.3);
        transform: scale(1.02);
    }
    100% { 
        background: transparent;
        transform: scale(1);
    }
}

/* 高级交互效果 */
.interactive-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 终端打字效果 */
.terminal-typing::after {
    content: '_';
    animation: terminal-cursor 1s infinite;
}

@keyframes terminal-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* 成功状态脉冲 */
.success-state {
    animation: successPulse 2s ease-in-out;
}

@keyframes successPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
}

/* 错误抖动动画 */
.error-shake {
    animation: errorShake 0.5s ease-in-out;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* 现代简洁布局样式 */
.enterprise-section,
.consumer-section {
    padding: 80px 0;
    background: #fff;
}

.enterprise-section {
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 企业流程设计 */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid #f3f4f6;
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4f46e5;
    background: #eef2ff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-content h4 {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 20px;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.step-content li:before {
    content: "•";
    color: #4f46e5;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* 成果条 */
.results-bar {
    display: flex;
    justify-content: space-around;
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
}

.result-metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.section-conclusion {
    background: #fafbfc;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.section-conclusion p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* 消费者双向布局 */
.dual-approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.approach-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.approach-number {
    background: #10b981;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.approach-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.scenario-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.scenario {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.scenario h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.scenario p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
}

.outcome {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
    background: #f0fdf4;
    padding: 8px 12px;
    border-radius: 4px;
    border-left: 3px solid #10b981;
}

/* 进化逻辑摘要 */
.evolution-summary {
    text-align: center;
    background: #fafbfc;
    border-radius: 12px;
    padding: 40px;
}

.evolution-summary h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.logic-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.logic-step {
    background: #eef2ff;
    color: #4f46e5;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.logic-arrow {
    color: #6b7280;
    font-size: 1.2rem;
    font-weight: 600;
}

.evolution-summary p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* 公司宣传视频 */
.company-video {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.company-video::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.video-player-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.video-player {
    position: relative;
    width: 100%;
    max-width: 650px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-player:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    background: #000;
    aspect-ratio: 16/9;
    cursor: pointer;
}

/* 隐藏所有浏览器默认视频控件 */
.main-video::-webkit-media-controls {
    display: none !important;
}

.main-video::-webkit-media-controls-panel {
    display: none !important;
}

.main-video::-webkit-media-controls-play-button {
    display: none !important;
}

.main-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.main-video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.main-video::-webkit-media-controls-timeline {
    display: none !important;
}

.main-video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.main-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.main-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.main-video::-webkit-media-controls-overlay-enclosure {
    display: none !important;
}

.main-video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

/* Firefox */
.main-video::-moz-media-controls {
    display: none !important;
}

/* IE/Edge */
.main-video::-ms-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-overlay.hidden {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    z-index: -1 !important;
}

.play-button {
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.play-button svg circle {
    fill: rgba(255, 255, 255, 0.95);
}

.play-button svg path {
    fill: #667eea;
}

.video-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.video-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #6b7280;
    font-size: 0.9rem;
}

.video-duration {
    font-weight: 500;
    color: #4f46e5;
    background: #eef2ff;
    padding: 6px 12px;
    border-radius: 20px;
}

/* 右侧内容区域 */
.video-highlights {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-highlights h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.highlight-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.highlight-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.video-cta {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cta-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #667eea;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

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

.cta-button:hover .btn-arrow {
    transform: translateX(4px);
}

.video-size {
    background: #eef2ff;
    color: #4f46e5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* 隐藏原有的自定义视频控件样式 */

/* 响应式设计 */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
        padding: 24px 0;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .results-bar {
        flex-direction: column;
        gap: 24px;
    }
    
    .dual-approach {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .logic-chain {
        flex-direction: column;
        gap: 12px;
    }
    
    .logic-arrow {
        transform: rotate(90deg);
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* 视频区域移动端适配 */
    .company-video {
        padding: 40px 0;
    }
    
    .video-container {
        padding: 0 16px;
    }
    
    .video-header {
        margin-bottom: 32px;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .video-player {
        border-radius: 12px;
        max-width: 100%;
    }
    
    .play-button svg {
        width: 60px;
        height: 60px;
    }
}