/* ===========================================
   首页专用样式 (Index Page Styles)
   包含首页特有的英雄区域、功能展示等组件
   =========================================== */

/* ===========================================
   全新分屏式英雄区域
   =========================================== */

.hero-section-split {
    padding: 120px 0 80px;
    margin-top: 56px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.03) 0%, rgba(0, 102, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* 左侧内容卡片 */
.hero-content-card {
    padding: var(--space-lg) 0;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid rgba(0, 82, 204, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #0052cc;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.1);
}

.content-badge i {
    font-size: 12px;
}

.hero-main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.title-primary {
    display: block;
    color: #1a1a1a;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #0052cc, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-hero {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero.primary {
    background: linear-gradient(135deg, #0052cc, #0066ff);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.btn-hero.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
}

.btn-hero.secondary {
    background: white;
    color: #0052cc;
    border: 1px solid #e0e0e0;
}

.btn-hero.secondary:hover {
    border-color: #0052cc;
    background: rgba(0, 82, 204, 0.05);
}

.hero-trust-badges {
    display: flex;
    gap: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.badge-item i {
    color: #10b981;
    font-size: 16px;
}

/* 右侧数据展示面板 */
.hero-data-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.data-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.data-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.data-card.primary-card {
    grid-column: span 2;
    background: linear-gradient(135deg, #0052cc, #0066ff);
    color: white;
    border: none;
}

.data-card.highlight-card {
    grid-column: span 2;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: none;
}

.data-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 82, 204, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.primary-card .data-icon {
    background: rgba(255, 255, 255, 0.2);
}

.data-icon i {
    font-size: 22px;
    color: #0052cc;
}

.primary-card .data-icon i {
    color: white;
}

.data-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.primary-card .data-value {
    color: white;
}

.data-label {
    font-size: 13px;
    color: #666;
}

.primary-card .data-label {
    color: rgba(255, 255, 255, 0.9);
}

/* 迷你仪表板 */
.mini-dashboard {
    padding: 8px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
    color: #1565c0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: rgba(0, 82, 204, 0.3);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.chart-bar.active {
    background: #0052cc;
}

.chart-bar:hover {
    background: #0052cc;
}

/* ===========================================
   响应式网格功能区域
   =========================================== */

.features-grid-section {
    padding: var(--space-xl) 0;
    background: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-header-center {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-title .highlight {
    color: #0052cc;
}

.section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* 功能卡片网格 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.feature-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.15);
    border-color: rgba(0, 82, 204, 0.3);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon-wrapper i {
    font-size: 28px;
    color: #0052cc;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

.card-stats {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #0052cc;
}

.stat-label {
    font-size: 12px;
    color: #999;
}

/* 成就数据展示条 */
.achievements-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, #0052cc, #0066ff);
    border-radius: 16px;
    margin-top: var(--space-lg);
}

.achievement-item {
    text-align: center;
    padding: 20px;
}

.achievement-number {
    font-size: 36px;
    font-weight: 700;
    color: white !important;
    margin-bottom: 8px;
    display: block;
}

.achievement-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9) !important;
    display: block;
}

/* ===========================================
   功能详解区域
   =========================================== */

.features-detailed-section {
    padding: var(--space-xl) 0;
    background: #f8f9fa;
}

.detailed-card {
    background: white;
    border-radius: 16px;
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.detailed-card:hover {
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.1);
}

.detailed-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.detailed-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

.feature-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
}

.point-item i {
    color: #10b981;
    font-size: 16px;
}

/* ===========================================
   服务优势区域
   =========================================== */

.advantages-section {
    padding: var(--space-xl) 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.advantage-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.15);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon i {
    font-size: 32px;
    color: #0052cc;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.advantage-card > p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.advantage-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
}

.advantage-features li i {
    color: #10b981;
    font-size: 14px;
}

/* 客户评价卡片 */
.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: var(--space-lg);
    margin-top: var(--space-lg);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 48px;
    color: #0052cc;
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0052cc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 24px;
    color: white;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

/* ===========================================
   集成生态系统展示区
   =========================================== */

.integration-ecosystem-section {
    padding: var(--space-xl) 0;
    background: white;
}

.integration-showcase {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

/* 左侧分类 */
.integration-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-card {
    padding: 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover,
.category-card.active {
    border-color: #0052cc;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(0, 102, 255, 0.05));
    transform: translateX(4px);
}

.category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.category-card.active .category-icon {
    background: linear-gradient(135deg, #0052cc, #0066ff);
}

.category-icon i {
    font-size: 22px;
    color: #0052cc;
}

.category-card.active .category-icon i {
    color: white;
}

.category-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.category-count {
    font-size: 13px;
    color: #666;
}

/* 右侧平台展示 */
.integration-platforms {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.1);
    border-color: #0052cc;
}

.platform-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo i {
    font-size: 32px;
    color: #0052cc;
}

.platform-item span {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.integration-cta {
    text-align: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
}

.integration-cta p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.btn-integration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0052cc, #0066ff);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-integration:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.3);
}

/* ===========================================
   实施流程时间线
   =========================================== */

.implementation-timeline-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.timeline-wrapper {
    position: relative;
    margin-top: var(--space-xl);
    padding: var(--space-lg) 0;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0052cc 0%, #0066ff 100%);
    transform: translateX(-50%);
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.timeline-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: var(--space-md);
    align-items: center;
}

.timeline-step:nth-child(even) {
    grid-template-columns: 1fr 80px 1fr;
}

.timeline-step:nth-child(even) .step-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.timeline-step:nth-child(even) .step-marker {
    grid-column: 2;
}

.timeline-step:nth-child(odd) .step-content {
    grid-column: 3;
    text-align: left;
}

.timeline-step:nth-child(odd) .step-marker {
    grid-column: 2;
}

/* 时间线标记 */
.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.marker-circle {
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #0052cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #0052cc;
}

.marker-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0052cc, #0066ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-icon i {
    font-size: 20px;
    color: white;
}

/* 步骤内容 */
.step-content {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.15);
    border-color: #0052cc;
}

.step-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #0052cc;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-badge.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-content > p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: #333;
}

.step-features i {
    color: #10b981;
    font-size: 14px;
}

/* CTA区域 */
.timeline-cta {
    margin-top: var(--space-xl);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(0, 102, 255, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(0, 82, 204, 0.1);
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cta-content > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 28px;
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: linear-gradient(135deg, #0052cc, #0066ff);
    color: white;
}

.btn-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
}

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

.btn-cta.secondary:hover {
    background: rgba(0, 82, 204, 0.05);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-main-title {
        font-size: 40px;
    }

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

    .achievements-bar {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

    .integration-showcase {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .timeline-step {
        grid-template-columns: 1fr;
    }

    .timeline-track {
        left: 30px;
    }

    .timeline-step:nth-child(even) .step-content,
    .timeline-step:nth-child(odd) .step-content {
        grid-column: 1;
        text-align: left;
        margin-left: 80px;
    }

    .timeline-step:nth-child(even) .step-marker,
    .timeline-step:nth-child(odd) .step-marker {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .hero-section-split {
        padding: 80px 0 60px;
    }

    .hero-main-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-hero {
        justify-content: center;
    }

    .hero-data-panel {
        grid-template-columns: 1fr;
    }

    .data-card.primary-card,
    .data-card.highlight-card {
        grid-column: span 1;
    }

    .section-title {
        font-size: 28px;
    }

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

    .achievements-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-number {
        font-size: 28px;
    }

    .detailed-card {
        padding: var(--space-md);
    }

    .feature-points {
        grid-template-columns: 1fr;
    }

    .testimonial-content > p {
        font-size: 16px;
    }

    .integration-categories {
        flex-direction: row;
        overflow-x: auto;
    }

    .category-card {
        min-width: 200px;
    }

    .platforms-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .platform-item {
        padding: 16px;
    }

    .platform-logo {
        width: 50px;
        height: 50px;
    }

    .platform-logo i {
        font-size: 24px;
    }

    .timeline-track {
        left: 20px;
    }

    .timeline-step:nth-child(even) .step-content,
    .timeline-step:nth-child(odd) .step-content {
        margin-left: 60px;
    }

    .marker-circle {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .marker-icon {
        width: 40px;
        height: 40px;
    }

    .marker-icon i {
        font-size: 16px;
    }

    .cta-content {
        padding: var(--space-lg);
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-buttons-group {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   英雄区域样式 - 极简垂直居中设计（保留旧样式以防兼容）
   =========================================== */

.hero-section-asymmetric {
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    padding: 120px 0 80px;
    margin-top: 56px;
}

.hero-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

/* 移除背景装饰元素 */
.hero-background-elements,
.floating-shape,
.geometric-pattern {
    display: none;
}

/* 主要布局 - 单列垂直 */
.hero-split-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

/* 内容区域 */
.hero-content-left {
    max-width: 800px;
}

.hero-badge-asymmetric {
    display: none;
}

.badge-icon {
    display: none;
}

.badge-glow {
    display: none;
}

.hero-title-asymmetric {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.title-line-1 {
    display: inline;
    color: var(--text-primary);
}

.title-line-2 {
    display: inline;
    color: var(--primary-blue);
}

.title-underline {
    display: none;
}

.hero-description-asymmetric {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 内联统计数据 */
.hero-stats-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.stat-divider {
    display: none;
}

/* 按钮区域 */
.hero-actions-asymmetric {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.btn-asymmetric {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px var(--space-md);
    border-radius: var(--radius-sm);
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    height: 44px;
}

.btn-primary-asymmetric {
    background: var(--primary-blue);
    color: var(--text-white);
}

.btn-primary-asymmetric:hover {
    background: var(--primary-blue-hover);
}

.btn-outline-asymmetric {
    background: var(--bg-white);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    height: 42px;
}

.btn-outline-asymmetric:hover {
    background: var(--bg-gray);
}

.btn-border-animation,
.btn-ripple,
.btn-icon {
    display: none;
}

/* 右侧视觉展示区域 - 极简线框图 */
.hero-visual-right {
    max-width: 500px;
    margin: 0 auto;
}

/* 仪表板预览 - 极简线框 */
.dashboard-preview {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.dashboard-preview:hover {
    box-shadow: none;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border-color);
}

.header-controls {
    display: flex;
    gap: 4px;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
}

.control-dot.red,
.control-dot.yellow,
.control-dot.green {
    background: var(--border-color);
}

.header-title {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 12px;
}

.header-status {
    display: none;
}

.status-indicator {
    display: none;
}

.dashboard-content {
    padding: var(--space-md);
}

/* 指标卡片 - 极简化 */
.metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.metric-card {
    padding: var(--space-sm);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.metric-card::before {
    display: none;
}

.metric-icon {
    width: 24px;
    height: 24px;
    background: var(--bg-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 12px;
}

.metric-info {
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.metric-label {
    font-size: 11px;
    color: var(--text-secondary);
}

.metric-trend {
    display: none;
}

.metric-trend.up {
    display: none;
}

/* 图表区域 - 极简化 */
.chart-area {
    margin-bottom: var(--space-sm);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.chart-header span {
    font-weight: 400;
    font-size: 12px;
    color: var(--text-secondary);
}

.chart-period {
    display: none;
}

.chart-period span {
    display: none;
}

.chart-period span.active {
    display: none;
}

.mini-chart {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 40px;
    padding: var(--space-xs);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.chart-bar {
    flex: 1;
    background: var(--border-color);
    border-radius: 1px 1px 0 0;
}

.chart-bar.active {
    background: var(--primary-blue);
    opacity: 1;
}

/* 功能预览 - 极简化 */
.features-preview {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.feature-item:hover {
    background: var(--bg-white);
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
    color: var(--text-secondary);
    font-size: 10px;
}

.feature-icon.data,
.feature-icon.ai,
.feature-icon.alert {
    background: var(--bg-gray);
    color: var(--text-secondary);
}

.feature-item span {
    flex: 1;
    font-size: 11px;
    color: var(--text-secondary);
}

.feature-status {
    display: none;
}

.feature-status.active,
.feature-status.warning {
    display: none;
}

/* 浮动卡片 - 移除装饰 */
.floating-cards,
.floating-card {
    display: none;
}

/* 新增动画 */
@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

@keyframes rotateGeometry {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 保留原有样式以防兼容性问题 */
.hero-section-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(147, 197, 253, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.hero-container-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

.hero-content-split {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 160px);
    text-align: center;
}

.hero-text-section {
    animation: fadeInUp 0.8s ease-out;
    max-width: 800px;
}

.hero-badge-modern {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-soft);
    border: 1px solid var(--primary-orange-200);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-xl);
    animation: scaleIn 0.6s ease-out 0.2s both;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.highlight-text {
    background: var(--primary-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.highlight-text::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-description-modern {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-features-quick {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.feature-quick {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid var(--primary-orange-200);
    border-radius: var(--radius-md);
    color: var(--primary-blue);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-quick:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm-sm);
}

.feature-quick i {
    color: var(--primary-orange-500);
}

.hero-actions-modern {
    display: flex;
    gap: var(--space-md);
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-primary-modern {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-warm-md);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm-lg);
}

.btn-secondary-modern {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-orange-300);
}

.btn-secondary-modern:hover {
    background: var(--primary-orange-50);
    border-color: var(--primary-orange-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm-sm);
}

/* 数据面板相关样式已移除 */

/* ===========================================
   瀑布流核心功能区域样式
   =========================================== */

.core-features-waterfall {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

/* 区域分割装饰 - 移除 */
.section-divider,
.divider-line,
.divider-ornament,
.ornament-circle,
.ornament-rays {
    display: none;
}

.container-waterfall {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* 区域标题样式 - 极简化 */
.features-header-waterfall {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.header-decoration,
.decoration-shape,
.badge-sparkle,
.badge-trail {
    display: none;
}

.features-badge-waterfall {
    display: none;
}

.section-title-waterfall {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    position: relative;
}

.section-title-waterfall::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    margin: var(--space-sm) auto 0;
}

.title-main {
    display: inline;
    color: var(--text-primary);
}

.title-highlight {
    display: inline;
    color: var(--primary-blue);
}

.title-decoration,
.decoration-dot,
.decoration-line {
    display: none;
}

.section-description-waterfall {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 瀑布流容器 - 改为统一3列网格 */
.waterfall-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

/* 瀑布流卡片基础样式 - 极简化 */
.waterfall-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: var(--space-lg);
    transition: box-shadow var(--transition-fast);
}

.waterfall-card:hover {
    box-shadow: var(--shadow-sm);
}

/* 所有卡片等高等宽 */
.waterfall-card.hero-card,
.waterfall-card.wide-card,
.waterfall-card.tall-card,
.waterfall-card.standard-card {
    grid-column: span 1;
    min-height: auto;
}

/* 卡片背景装饰 - 移除 */
.card-background,
.bg-pattern {
    display: none;
}

.bg-pattern.pattern-3 {
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: var(--creative-purple-300);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.bg-pattern.pattern-4 {
    bottom: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    background: var(--warm-coral-300);
    border-radius: 20%;
    transform: rotate(45deg);
}

.bg-pattern.pattern-5 {
    top: 50%;
    right: -15px;
    width: 60px;
    height: 60px;
    background: var(--warm-peach-300);
    border-radius: 50%;
    transform: translateY(-50%);
}

.bg-pattern.pattern-6 {
    top: -15px;
    left: 50%;
    width: 70px;
    height: 70px;
    background: var(--primary-orange-200);
    border-radius: 50%;
    transform: translateX(-50%);
}

.bg-glow {
    display: none;
}

.waterfall-card:hover .bg-glow {
    display: none;
}

/* 卡片布局 */
.card-layout.horizontal {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 卡片头部 - 极简化 */
.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: var(--text-white);
    font-size: 20px;
    flex-shrink: 0;
}

.card-icon.primary,
.card-icon.secondary,
.card-icon.finance,
.card-icon.analytics,
.card-icon.supply,
.card-icon.crm {
    background: var(--primary-blue);
}

.icon-pulse {
    display: none;
}

.card-category {
    display: none;
}

/* 卡片内容 - 极简化 */
.card-content {
    padding: 0;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* 功能指标 - 隐藏 */
.feature-metrics {
    display: none;
}

.metric-item {
    display: none;
}

.metric-number {
    display: none;
}

.metric-label {
    display: none;
}

/* 进度展示 - 隐藏 */
.progress-showcase {
    display: none;
}

.progress-item {
    display: none;
}

.progress-label {
    display: none;
}

.progress-bar {
    display: none;
}

.progress-fill {
    height: 100%;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: width 1.5s ease;
}

.progress-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    min-width: 40px;
}

/* 财务图表 */
.finance-chart {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.chart-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 15px solid transparent;
}

.chart-segment.segment-1 {
    border-top-color: var(--primary-orange-500);
    border-right-color: var(--primary-orange-500);
    transform: rotate(0deg);
}

.chart-segment.segment-2 {
    border-bottom-color: var(--creative-purple-400);
    border-left-color: var(--creative-purple-400);
    transform: rotate(120deg);
}

.chart-segment.segment-3 {
    border-top-color: var(--success-green);
    border-left-color: var(--success-green);
    transform: rotate(240deg);
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.chart-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 数据可视化 */
.data-visualization {
    margin-top: var(--space-lg);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 80px;
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.chart-bar {
    flex: 1;
    background: var(--primary-orange-300);
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.chart-bar.active {
    background: var(--primary-blue);
    opacity: 1;
    transform: scale(1.1);
}

.chart-insights {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.insight-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.insight-item i {
    color: var(--success-green);
}

/* 供应链流程 */
.supply-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.flow-step span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.flow-arrow {
    color: var(--primary-orange-400);
    font-weight: bold;
    font-size: 1.2rem;
}

/* 客户统计 */
.customer-stats {
    display: flex;
    justify-content: center;
    margin-top: var(--space-lg);
}

.stat-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.circle-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--primary-blue) calc(var(--progress) * 3.6deg), var(--border-color) 0deg);
    position: relative;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.circle-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 卡片底部 */
.card-footer {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    position: relative;
    z-index: 1;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tag {
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary-orange-100);
    color: var(--primary-blue);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-orange-200);
    transform: translateY(-1px);
}

/* 成就展示区域 */
.achievements-waterfall {
    margin-top: var(--space-3xl);
    padding: var(--space-3xl) 0;
    background: var(--gradient-soft);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.achievements-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.decoration-center {
    position: relative;
    margin: 0 var(--space-lg);
}

.center-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);
}

.achievements-content {
    text-align: center;
}

.achievements-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.highlight-number {
    background: var(--primary-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievements-grid-waterfall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-orange-100);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.achievement-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.achievement-label {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.achievement-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.achievement-card:hover .achievement-glow {
    opacity: 0.05;
}

/* 新增动画 */
@keyframes sparkleRotate {
    0%,
    100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

@keyframes trailSlide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===========================================
   Z字形功能展示区域样式
   =========================================== */

.features-showcase-zigzag {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

/* 波浪分割线 - 移除 */
.zigzag-divider {
    display: none;
}

.divider-wave {
    display: none;
}

.divider-wave svg {
    display: none;
}

.container-zigzag {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* 区域标题 - 极简化 */
.zigzag-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.header-ornament {
    display: none;
}

.ornament-left,
.ornament-right {
    display: none;
}

.header-badge-zigzag {
    display: none;
}

.badge-fire {
    display: none;
}

.badge-shimmer {
    display: none;
}

.section-title-zigzag {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.section-title-zigzag::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    margin: var(--space-sm) auto 0;
}

.title-line {
    display: inline;
    color: var(--text-primary);
}

.title-highlight-zigzag {
    display: inline;
    color: var(--primary-blue);
}

.title-underline-zigzag {
    display: none;
}

.title-underline-zigzag::before {
    display: none;
}

.section-description-zigzag {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Z字形功能行 - 改为垂直堆叠 */
.zigzag-feature-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--border-color);
}

.zigzag-feature-row:last-child {
    border-bottom: none;
}

.zigzag-feature-row::before {
    display: none;
}

.zigzag-feature-row.right-visual {
    direction: ltr;
}

.zigzag-feature-row.right-visual > * {
    direction: ltr;
}

/* 视觉展示区域 - 隐藏 */
.zigzag-visual {
    display: none;
}

.visual-decoration {
    display: none;
}

/* 装饰元素 - 全部隐藏 */
.decoration-circle,
.decoration-circle.circle-1,
.decoration-circle.circle-2,
.decoration-triangle,
.decoration-hexagon,
.decoration-hexagon.hex-1,
.decoration-hexagon.hex-2,
.decoration-square {
    display: none;
}

.decoration-diamond {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--warm-peach-300);
    opacity: 0.1;
    transform: rotate(45deg);
    animation: floatUpDown 12s ease-in-out infinite;
}

.decoration-diamond.diamond-1 {
    top: 20%;
    right: 25%;
    animation-delay: 0.5s;
}

.decoration-diamond.diamond-2 {
    bottom: 30%;
    left: 30%;
    animation-delay: 2.5s;
}

.decoration-wave {
    position: absolute;
    top: 40%;
    left: 10%;
    width: 100px;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-orange-200) 0px,
        var(--primary-orange-200) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.1;
    animation: wave 3s ease-in-out infinite;
}

/* 功能模拟界面 */
.feature-mockup {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(249, 115, 22, 0.1);
    border: 1px solid var(--primary-orange-100);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.4s ease;
}

.feature-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(249, 115, 22, 0.15);
}

.zigzag-feature-row.right-visual .feature-mockup {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    background: var(--gradient-soft);
    border-bottom: 1px solid var(--primary-orange-100);
}

.header-controls {
    display: flex;
    gap: var(--space-sm);
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-btn.minimize {
    background: #ffbd2e;
}

.control-btn.maximize {
    background: #28ca42;
}

.control-btn.close {
    background: #ff5f57;
}

.header-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.header-status,
.header-ai,
.header-realtime {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.active {
    background: var(--success-green);
    animation: pulse 2s infinite;
}

.ai-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--creative-purple-400);
    animation: pulse 1.5s infinite;
}

.realtime-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-orange-500);
    animation: pulse 1s infinite;
}

.mockup-content {
    padding: var(--space-xl);
}

/* 仪表板指标 */
.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.metric-box {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-blue);
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.metric-icon.orders {
    background: var(--primary-blue);
}

.metric-icon.success {
    background: linear-gradient(135deg, var(--success-green), #10b981);
}

.metric-data {
    flex: 1;
}

.metric-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.metric-trend.up {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
}

.metric-trend.stable {
    background: rgba(107, 114, 128, 0.1);
    color: var(--text-secondary);
}

/* 处理流程 */
.process-pipeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pipeline-step {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.pipeline-step.completed {
    background: rgba(16, 185, 129, 0.05);
    border-color: var(--success-green);
}

.pipeline-step.active {
    background: rgba(249, 115, 22, 0.05);
    border-color: var(--primary-orange-400);
}

.step-icon {
    width: 32px;
    height: 32px;
    background: var(--warm-gray-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.pipeline-step.completed .step-icon {
    background: var(--success-green);
}

.pipeline-step.active .step-icon {
    background: var(--primary-blue);
}

.step-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 1.5s ease;
}

/* 浮动元素 */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-orange-100);
    font-size: 0.8rem;
    color: var(--text-primary);
    animation: floatUpDown 4s ease-in-out infinite;
}

.floating-card.notification {
    top: 15%;
    right: -10%;
    animation-delay: 0.5s;
}

.floating-card.data {
    bottom: 25%;
    left: -15%;
    animation-delay: 2s;
}

.floating-card.ai-suggestion {
    top: 20%;
    left: -12%;
    animation-delay: 1s;
}

.floating-card.alert {
    bottom: 30%;
    right: -8%;
    animation-delay: 3s;
}

.floating-card.insight {
    top: 25%;
    right: -10%;
    animation-delay: 1.5s;
}

.floating-card.report {
    bottom: 35%;
    left: -12%;
    animation-delay: 2.5s;
}

.floating-card i {
    color: var(--primary-orange-500);
}

/* 内容区域 */
.zigzag-content {
    padding: 0;
}

.content-badge {
    display: none;
}

.content-badge.primary,
.content-badge.professional,
.content-badge.data {
    display: none;
}

.zigzag-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.zigzag-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 功能亮点 - 极简化 */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.highlight-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.highlight-item:hover {
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 14px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.highlight-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* 统计网格 - 隐藏 */
.feature-stats-grid {
    display: none;
}

.stat-cell {
    display: none;
}

.stat-cell:hover {
    display: none;
}

.stat-value {
    display: none;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 库存相关样式 */
.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm-sm);
    border-color: var(--primary-orange-200);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* 改进展示 */
.improvement-showcase {
    background: var(--gradient-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.improvement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    text-align: center;
}

.improvement-before,
.improvement-after {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.improvement-before .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.improvement-after .value {
    font-size: 2rem;
    font-weight: 700;
}

.improvement-after .value.highlight {
    color: var(--success-green);
}

.improvement-arrow {
    font-size: 1.5rem;
    color: var(--primary-orange-500);
    font-weight: bold;
}

.improvement-label {
    grid-column: span 3;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-md);
}

/* 分析相关样式 */
.analytics-features {
    margin-bottom: var(--space-xl);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.analytics-item {
    text-align: center;
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.analytics-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm-md);
    border-color: var(--primary-orange-200);
}

.analytics-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto var(--space-md);
}

.analytics-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.analytics-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* 性能指标 */
.performance-metrics {
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.metrics-header {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.metric-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.metric-name {
    font-size: 0.9rem;
    color: var(--text-primary);
    min-width: 120px;
}

.metric-bar {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: var(--primary-blue);
    border-radius: 4px;
    transition: width 1.5s ease;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    min-width: 40px;
    text-align: right;
}

/* 新增动画 */
@keyframes flicker {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes glow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

@keyframes wave {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* 保留原有核心功能样式以防兼容性问题 */
.core-features-modern {
    padding: var(--space-3xl) 0;
    background: white;
    position: relative;
}

.container-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.features-header-modern {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.features-badge-modern {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-soft);
    border: 1px solid var(--primary-orange-200);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-lg);
}

.features-header-modern h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

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

.features-header-modern p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 特色功能展示区 */
.hero-features-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.feature-hero-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary-orange-100);
    transition: all 0.4s ease;
}

.feature-hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-blue);
}

.feature-hero-card.main {
    box-shadow: var(--shadow-warm-lg);
}

.feature-hero-card.secondary {
    box-shadow: var(--shadow-warm-md);
}

.feature-hero-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-warm-xl);
}

.feature-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.floating-particles {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-orange-400);
    border-radius: 50%;
    animation: floatUp 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 60%;
    animation-delay: 3s;
}

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

.feature-hero-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.feature-hero-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.feature-hero-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.feature-stats-mini {
    display: flex;
    gap: var(--space-lg);
}

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

.stat-mini .number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-mini .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

/* 错位网格功能展示 */
.features-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.masonry-item.large {
    grid-column: span 2;
}

.masonry-item.wide {
    grid-column: span 2;
}

.masonry-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--primary-orange-100);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.masonry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm-lg);
}

.masonry-card.horizontal {
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
}

.card-visual {
    margin-bottom: var(--space-lg);
    position: relative;
}

.masonry-card.horizontal .card-visual {
    margin-bottom: 0;
    flex-shrink: 0;
}

.visual-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.visual-icon.finance {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.visual-icon.supply {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.visual-icon.crm {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.visual-icon.store {
    background: var(--primary-blue);
}

.visual-icon.tools {
    background: linear-gradient(135deg, #10b981, #059669);
}

.visual-pattern {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--primary-orange-200), var(--primary-orange-300));
    border-radius: 50%;
    opacity: 0.3;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tag {
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary-orange-100);
    color: var(--primary-blue);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.progress-indicators {
    margin-top: var(--space-md);
}

.progress-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.progress-label {
    font-size: 0.9rem;
    color: var(--text-primary);
    min-width: 80px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: width 1s ease;
}

.progress-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    min-width: 35px;
}

/* 成果展示区域 */
.achievements-showcase {
    background: var(--gradient-soft);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
}

.achievements-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.achievement-item {
    padding: var(--space-lg);
}

.achievement-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.achievement-label {
    color: var(--text-primary);
    font-weight: 500;
}

/* ===========================================
   功能深度展示区域
   =========================================== */

.features-showcase-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-gray);
}

.container-full {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.showcase-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.header-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-soft);
    border: 1px solid var(--primary-orange-200);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-lg);
}

.showcase-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.showcase-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 功能聚焦展示 */
.feature-spotlight {
    margin-bottom: var(--space-3xl);
    padding: var(--space-3xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-warm-sm);
}

.spotlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.spotlight-container.reverse {
    direction: rtl;
}

.spotlight-container.reverse > * {
    direction: ltr;
}

.spotlight-visual {
    position: relative;
}

.visual-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    z-index: 0;
}

.animated-elements {
    position: relative;
    width: 100%;
    height: 300px;
}

.element {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: floatUpDown 3s ease-in-out infinite;
}

.element.order-flow {
    background: linear-gradient(135deg, var(--primary-orange-500), var(--primary-blue));
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element.data-indicator {
    background: var(--primary-blue);
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.element.notification-bell {
    background: linear-gradient(135deg, #10b981, #059669);
    bottom: 30%;
    left: 60%;
    animation-delay: 2s;
}

.feature-preview {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-warm-md);
    border: 1px solid var(--primary-orange-100);
    position: relative;
    z-index: 1;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.system-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.system-icon.orders-icon {
    background: linear-gradient(135deg, var(--primary-orange-500), var(--primary-blue));
}

.system-icon.inventory-icon {
    background: linear-gradient(135deg, var(--creative-purple-400), var(--creative-purple-300));
}

.system-icon.analytics-icon {
    background: var(--primary-blue);
}

.status-indicator,
.data-indicator {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.status-indicator.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
}

.data-indicator {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-blue);
}

.preview-content {
    /* 内容样式根据具体预览类型定制 */
    position: relative;
}

.order-stats,
.inventory-overview,
.analytics-dashboard {
    margin-bottom: var(--space-lg);
}

.stat-item,
.overview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.stat-number,
.overview-number {
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label,
.overview-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.overview-item.warning {
    color: var(--warning-amber);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.flow-step.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
}

.flow-step.processing {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-blue);
    animation: pulse 2s infinite;
}

.spotlight-content {
    /* 内容区域样式 */
    position: relative;
}

.content-header {
    margin-bottom: var(--space-xl);
}

.feature-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.feature-badge.core {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-blue);
}

.feature-badge.professional {
    background: rgba(196, 132, 252, 0.1);
    color: var(--creative-purple-400);
}

.feature-badge.data {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-blue);
}

.content-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.content-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.feature-grid-modern.compact {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.feature-point {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-point:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm-sm);
}

.point-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.point-icon.data {
    background: linear-gradient(135deg, var(--primary-orange-500), var(--primary-blue));
}

.point-icon.status {
    background: linear-gradient(135deg, var(--creative-purple-400), var(--creative-purple-300));
}

.point-icon.notification {
    background: linear-gradient(135deg, #10b981, #059669);
}

.point-icon.integration {
    background: var(--primary-blue);
}

.point-icon.realtime {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.point-icon.data {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.point-icon.coordination {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.point-icon.alert {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.point-icon.trend {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.point-icon.behavior {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.point-icon.market {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.point-icon.reports {
    background: linear-gradient(135deg, #64748b, #475569);
}

.point-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.point-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 快速功能展示 */
.features-quick-showcase {
    margin-top: var(--space-3xl);
    padding: var(--space-3xl);
    background: var(--gradient-soft);
    border-radius: var(--radius-xl);
}

.quick-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.quick-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.quick-header p {
    color: var(--text-secondary);
}

.quick-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.quick-feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--primary-orange-100);
    transition: all 0.3s ease;
}

.quick-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm-lg);
}

.quick-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.quick-feature-card.finance .quick-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.quick-feature-card.supply .quick-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.quick-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.quick-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.quick-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.quick-features span {
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary-orange-100);
    color: var(--primary-blue);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===========================================
   服务优势区域
   =========================================== */

.service-advantages-new {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.advantages-hero {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.hero-background {
    display: none;
}

.floating-shapes {
    display: none;
}

.shape,
.shape-1,
.shape-2,
.shape-3,
.shape-4 {
    display: none;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: none;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.hero-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    margin: var(--space-sm) auto 0;
}

.hero-content p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-stats {
    display: none;
}

.hero-stat {
    display: none;
}

.stat-value {
    display: none;
}

.stat-label {
    display: none;
}

.advantages-showcase {
    position: relative;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.advantage-card-modern {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    border: 1px solid var(--border-color);
    transition: box-shadow var(--transition-fast);
}

.advantage-card-modern:hover {
    box-shadow: var(--shadow-sm);
}

.card-glow {
    display: none;
}

.advantage-card-modern:hover .card-glow {
    display: none;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.icon-bg {
    display: none;
}

.icon-wrapper i {
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-pulse {
    display: none;
}

.card-badge {
    display: none;
}

.card-content {
    margin-bottom: var(--space-sm);
}

.card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.feature-highlights {
    list-style: none;
    margin-top: var(--space-md);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: 4px;
    color: var(--text-primary);
    font-size: 14px;
}

.highlight-item i {
    color: var(--primary-blue);
    font-size: 12px;
}

.card-metric {
    display: none;
}

.metric-circle {
    display: none;
}

.circle-progress {
    display: none;
}

.circle-content {
    display: none;
    text-align: center;
}

.metric-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

/* 客户证言区域 */
.advantages-testimonial {
    margin-top: var(--space-3xl);
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-warm-lg);
    position: relative;
    z-index: 1;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.testimonial-content {
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 3rem;
    color: var(--primary-orange-200);
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: var(--space-xl);
    padding-left: var(--space-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-left: var(--space-xl);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--gradient-soft);
    border-radius: var(--radius-lg);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.stat-label {
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* ===========================================
   首页专用动画
   =========================================== */

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatUp {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0.8;
    }
}

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

/* ===========================================
   新布局响应式设计 - 移动端优化
   =========================================== */

/* 平板设备适配 (1200px以下) */
@media (max-width: 1200px) {
    /* 英雄区域响应式 */
    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-title-asymmetric {
        font-size: 3.2rem;
    }

    .hero-stats-inline {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-actions-asymmetric {
        justify-content: center;
        flex-wrap: wrap;
    }

    .dashboard-preview {
        transform: rotate(0deg);
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-cards {
        display: none;
    }

    /* 瀑布流响应式 */
    .waterfall-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .waterfall-card.hero-card,
    .waterfall-card.wide-card {
        grid-column: span 2;
    }

    .feature-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    /* Z字形布局响应式 */
    .zigzag-feature-row {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .zigzag-feature-row.right-visual {
        direction: ltr;
    }

    .zigzag-feature-row::before {
        display: none;
    }

    .feature-mockup {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-highlights {
        gap: var(--space-md);
    }

    .feature-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .analytics-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .achievements-grid-waterfall {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 移动设备适配 (768px以下) */
@media (max-width: 768px) {
    /* 英雄区域移动端 */
    .hero-section-asymmetric {
        padding: 80px 0 60px;
        margin-top: 48px;
    }

    .hero-title-asymmetric {
        font-size: 32px;
    }

    .hero-description-asymmetric {
        font-size: 14px;
    }

    .hero-stats-inline {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-number {
        font-size: 24px;
    }

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

    .btn-asymmetric {
        width: 100%;
    }

    /* 仪表板预览移动端 */
    .hero-visual-right {
        max-width: 100%;
    }

    /* 核心功能区域移动端 */
    .section-title-waterfall {
        font-size: 24px;
    }

    .section-description-waterfall {
        font-size: 13px;
    }

    .waterfall-container {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .card-content p {
        font-size: 13px;
    }

    /* Z字形布局移动端 */
    .section-title-zigzag {
        font-size: 24px;
    }

    .zigzag-content h3 {
        font-size: 18px;
    }

    .zigzag-content p {
        font-size: 13px;
    }

    .highlight-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .highlight-content h4 {
        font-size: 13px;
    }

    .highlight-content p {
        font-size: 12px;
    }

    /* 服务优势移动端 */
    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .icon-wrapper i {
        font-size: 20px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .highlight-item {
        font-size: 13px;
    }

    .metric-name {
        min-width: auto;
    }

    /* 模拟界面移动端适配 */
    .mockup-content {
        padding: var(--space-md);
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .metric-box {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .process-pipeline {
        gap: var(--space-xs);
    }

    .pipeline-step {
        padding: var(--space-sm);
        gap: var(--space-sm);
    }

    .step-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .floating-elements {
        display: none;
    }
}

/* 小屏幕移动设备 (480px以下) */
@media (max-width: 480px) {
    /* 容器和间距调整 */
    .hero-container-asymmetric,
    .container-waterfall,
    .container-zigzag {
        padding: 0 var(--space-md);
    }

    /* 英雄区域小屏适配 */
    .hero-title-asymmetric {
        font-size: 2rem;
    }

    .hero-description-asymmetric {
        font-size: 1rem;
    }

    .hero-badge-asymmetric {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.8rem;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .stat-item-inline {
        padding: var(--space-sm);
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    /* 瀑布流小屏适配 */
    .section-title-waterfall {
        font-size: 2rem;
    }

    .section-description-waterfall {
        font-size: 1rem;
    }

    .features-badge-waterfall {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.9rem;
    }

    .waterfall-card {
        min-height: auto;
    }

    .card-header {
        padding: var(--space-md);
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .card-content {
        padding: 0 var(--space-md) var(--space-md);
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .card-footer {
        padding: var(--space-md);
    }

    .feature-tags {
        justify-content: center;
    }

    /* Z字形布局小屏适配 */
    .section-title-zigzag {
        font-size: 2rem;
    }

    .section-description-zigzag {
        font-size: 1rem;
    }

    .header-badge-zigzag {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.9rem;
    }

    .badge-fire {
        font-size: 1.1rem;
    }

    .zigzag-content h3 {
        font-size: 1.4rem;
    }

    .zigzag-content p {
        font-size: 1rem;
    }

    .content-badge {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.8rem;
    }

    .highlight-content h4 {
        font-size: 1rem;
    }

    .highlight-content p {
        font-size: 0.85rem;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .benefit-text h4 {
        font-size: 1rem;
    }

    .benefit-text p {
        font-size: 0.85rem;
    }

    .analytics-item h4 {
        font-size: 0.9rem;
    }

    .analytics-item p {
        font-size: 0.8rem;
    }

    /* 模拟界面小屏适配 */
    .feature-mockup {
        border-radius: var(--radius-lg);
    }

    .mockup-header {
        padding: var(--space-md);
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .header-controls {
        order: 2;
    }

    .header-title {
        order: 1;
        font-size: 0.9rem;
    }

    .header-status,
    .header-ai,
    .header-realtime {
        order: 3;
        font-size: 0.8rem;
    }

    .mockup-content {
        padding: var(--space-sm);
    }

    .metric-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .metric-number {
        font-size: 1rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    .pipeline-step {
        padding: var(--space-xs) var(--space-sm);
        gap: var(--space-xs);
    }

    .step-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .pipeline-step span {
        font-size: 0.8rem;
    }

    /* 成就展示小屏适配 */
    .achievements-title {
        font-size: 1.4rem;
    }

    .achievement-card {
        padding: var(--space-md);
    }

    .achievement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .achievement-number {
        font-size: 1.6rem;
    }

    .achievement-label {
        font-size: 0.8rem;
    }
}

/* 超小屏幕适配 (360px以下) */
@media (max-width: 360px) {
    .hero-container-asymmetric,
    .container-waterfall,
    .container-zigzag {
        padding: 0 var(--space-sm);
    }

    .hero-title-asymmetric {
        font-size: 1.8rem;
    }

    .section-title-waterfall,
    .section-title-zigzag {
        font-size: 1.8rem;
    }

    .waterfall-card,
    .achievement-card {
        margin: 0 var(--space-xs);
    }

    .btn-asymmetric {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.9rem;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .zigzag-content h3 {
        font-size: 1.3rem;
    }
}

/* 保留原有响应式样式以防兼容性问题 */
@media (max-width: 1200px) {
    .hero-content-split {
        text-align: center;
    }

    .hero-title-modern {
        font-size: 3rem;
    }

    .hero-features-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .feature-hero-card.main {
        grid-column: span 2;
    }

    .features-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-item.large,
    .masonry-item.wide {
        grid-column: span 1;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .spotlight-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .spotlight-container.reverse {
        direction: ltr;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }

    .hero-features-quick {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
    }

    .hero-features-showcase {
        grid-template-columns: 1fr;
    }

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

    .feature-grid-modern {
        grid-template-columns: 1fr;
    }

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

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .testimonial-stats {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-container-modern {
        padding: 0 var(--space-md);
    }

    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-description-modern {
        font-size: 1rem;
    }

    .container-modern,
    .container-full {
        padding: 0 var(--space-md);
    }

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

    .feature-hero-card.main {
        grid-column: span 1;
    }
}

/* ===========================================
   极简风格移动端响应式优化
   =========================================== */

@media (max-width: 768px) {
    .hero-section {
        padding: calc(48px + 60px) 0 60px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 14px;
    }

    .hero-stats {
        gap: var(--space-lg);
    }

    .waterfall-container {
        grid-template-columns: 1fr;
    }

    .showcase-container {
        padding: 60px 0;
    }

    .showcase-item {
        padding: var(--space-xl);
    }

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

@media (max-width: 480px) {
    .hero-section {
        padding: calc(48px + 40px) 0 40px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .section-title {
        font-size: 28px;
    }

    .waterfall-container,
    .showcase-container,
    .advantages-grid {
        gap: var(--space-md);
    }
}
