        :root {
            /* 快消品行业特色色 - 全红色系 */
            --fcmg-red: #e63946;
            --fcmg-red-dark: #c1121f;
            --fcmg-red-light: #ffeaea;
            --fcmg-red-secondary: #ff6b6b;
            --fcmg-red-secondary-dark: #d14949;
            --fcmg-red-secondary-light: #ffd6d6;
            --retail-gray: #6c757d;
            --promotion-gold: #ffc300;
            --cost-green: #2e8b57;
            
            /* 中性色调 */
            --neutral-50: #fafafa;
            --neutral-100: #f5f5f5;
            --neutral-200: #f0f0f0;
            --neutral-300: #d9d9d9;
            --neutral-400: #bfbfbf;
            --neutral-500: #8c8c8c;
            --neutral-600: #595959;
            --neutral-700: #434343;
            --neutral-800: #262626;
            --neutral-900: #1f1f1f;
            
            /* 功能色 */
            --success: #2e8b57;
            --warning: #ffc300;
            --error: #e63946;
            --info: #d14949;
            
            /* 间距系统 */
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 32px;
            --spacing-xl: 48px;
            --spacing-xxl: 64px;
            --spacing-xxxl: 96px;
            
            /* 阴影系统 */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
            --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 8px 32px rgba(0, 0, 0, 0.16);
            
            /* 圆角系统 */
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-round: 9999px;
            
            /* 字体系统 */
            --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --font-size-xs: 12px;
            --font-size-sm: 14px;
            --font-size-md: 16px;
            --font-size-lg: 18px;
            --font-size-xl: 20px;
            --font-size-2xl: 24px;
            --font-size-3xl: 30px;
            --font-size-4xl: 36px;
            --font-size-5xl: 48px;
            
            /* 行高系统 */
            --line-height-sm: 1.4;
            --line-height-md: 1.5715;
            --line-height-lg: 1.6667;
            
            /* 动画时间 */
            --transition-fast: 150ms;
            --transition-normal: 300ms;
            --transition-slow: 500ms;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-family);
            font-size: var(--font-size-md);
            line-height: var(--line-height-md);
            color: var(--neutral-800);
            background-color: var(--neutral-50);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        
        .container-narrow {
            max-width: 900px;
        }
        
        .section {
            padding: var(--spacing-xxxl) 0;
            position: relative;
        }
        
        .section-alt {
            background-color: var(--neutral-50);
        }
        
        .section-gradient {
            background: linear-gradient(135deg, #ffeaea 0%, #ffd6d6 100%);
        }
        
        .text-center {
            text-align: center;
        }
        
        .mb-xs { margin-bottom: var(--spacing-xs); }
        .mb-sm { margin-bottom: var(--spacing-sm); }
        .mb-md { margin-bottom: var(--spacing-md); }
        .mb-lg { margin-bottom: var(--spacing-lg); }
        .mb-xl { margin-bottom: var(--spacing-xl); }
        .mb-xxl { margin-bottom: var(--spacing-xxl); }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: var(--line-height-sm);
            color: var(--neutral-900);
        }
        
        h1 {
            font-size: var(--font-size-5xl);
            margin-bottom: var(--spacing-lg);
        }
        
        h2 {
            font-size: var(--font-size-4xl);
            margin-bottom: var(--spacing-md);
        }
        
        h3 {
            font-size: var(--font-size-2xl);
            margin-bottom: var(--spacing-sm);
        }
        
        .lead {
            font-size: var(--font-size-xl);
            line-height: var(--line-height-lg);
            color: var(--neutral-700);
        }
        
        .text-muted {
            color: var(--neutral-600);
        }
        
        .page-header {
            padding: var(--spacing-xxxl) 0 var(--spacing-xxl);
            background: linear-gradient(135deg, #ffeaea 0%, #ffd6d6 100%);
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><path fill="%23e63946" fill-opacity="0.03" d="M0 0h800v800H0z"/><path fill="none" stroke="%23e63946" stroke-width="2" stroke-opacity="0.05" d="M400 0v800M0 400h800M200 0v800M600 0v800M0 200h800M0 600h800"/></svg>');
            background-size: cover;
            z-index: 0;
        }
        
        .header-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        
        .value-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--spacing-xs);
            background-color: rgba(230, 57, 70, 0.1);
            color: var(--fcmg-red);
            padding: 8px 16px;
            border-radius: var(--radius-round);
            font-size: var(--font-size-sm);
            font-weight: 600;
            margin-bottom: var(--spacing-lg);
        }
        
        .challenge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-xl);
        }
        
        .challenge-card {
            background: var(--neutral-50);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            border: 1px solid var(--neutral-200);
            transition: all var(--transition-normal) ease;
            position: relative;
            overflow: hidden;
        }
        
        .challenge-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--fcmg-red);
        }
        
        .challenge-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--fcmg-red), var(--fcmg-red-secondary));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: var(--font-size-xl);
            margin-bottom: var(--spacing-md);
        }
        
        .challenge-number {
            position: absolute;
            top: 0;
            right: 0;
            width: 32px;
            height: 32px;
            background-color: rgba(230, 57, 70, 0.1);
            color: var(--fcmg-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--font-size-sm);
            font-weight: 600;
            border-radius: 0 var(--radius-lg) 0 var(--radius-md);
        }
        
        .solution-flow {
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--spacing-xl);
            box-shadow: var(--shadow-md);
            margin: var(--spacing-xxl) 0;
            position: relative;
            overflow: hidden;
        }
        
        .flow-diagram {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--spacing-md);
            margin: var(--spacing-xl) 0;
            position: relative;
        }
        
        .flow-step {
            flex: 1;
            min-width: 180px;
            text-align: center;
            padding: var(--spacing-lg);
            background: var(--neutral-50);
            border-radius: var(--radius-lg);
            border: 1px solid var(--neutral-200);
            transition: all var(--transition-normal) ease;
            position: relative;
            z-index: 1;
        }
        
        .flow-step.active {
            background: linear-gradient(135deg, var(--fcmg-red), var(--fcmg-red-secondary));
            color: white;
            border-color: var(--fcmg-red);
            box-shadow: var(--shadow-lg);
        }
        
        .flow-step::before {
            content: '→';
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--neutral-400);
            font-size: var(--font-size-xl);
            z-index: 0;
        }
        
        .flow-step:last-child::before {
            display: none;
        }
        
        .step-icon {
            font-size: var(--font-size-2xl);
            margin-bottom: var(--spacing-sm);
        }
        
        .step-details {
            margin-top: var(--spacing-md);
            padding: var(--spacing-md);
            background: white;
            border-radius: var(--radius-md);
            border: 1px solid var(--neutral-200);
            box-shadow: var(--shadow-md);
            display: none;
        }
        
        .step-details.active {
            display: block;
        }
        
        .scenario-tabs {
            display: flex;
            gap: var(--spacing-xs);
            margin-bottom: var(--spacing-xl);
            border-bottom: 1px solid var(--neutral-200);
            padding-bottom: var(--spacing-xs);
        }
        
        .tab-button {
            padding: var(--spacing-sm) var(--spacing-lg);
            background: none;
            border: none;
            border-bottom: 2px solid transparent;
            font-size: var(--font-size-md);
            color: var(--neutral-600);
            cursor: pointer;
            transition: all var(--transition-fast) ease;
            position: relative;
        }
        
        .tab-button.active {
            color: var(--fcmg-red);
            border-bottom-color: var(--fcmg-red);
            font-weight: 600;
        }
        
        .tab-content {
            display: none;
            animation: fadeIn var(--transition-normal) ease;
        }
        
        .tab-content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .scenario-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }
        
        .solution-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            border: 1px solid var(--neutral-200);
            transition: all var(--transition-normal) ease;
        }
        
        .solution-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--fcmg-red);
        }
        
        .solution-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 107, 0.2));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--fcmg-red);
            font-size: var(--font-size-xl);
            margin-bottom: var(--spacing-md);
        }
        
        .value-badge-small {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background-color: var(--fcmg-red);
            color: white;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            font-size: var(--font-size-xs);
            font-weight: 600;
            margin-right: var(--spacing-xs);
            margin-bottom: var(--spacing-xs);
        }
        
        .case-studies {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-xl);
        }
        
        .case-study {
            background: white;
            border-radius: var(--radius-lg);
            padding: var(--spacing-xl);
            border: 1px solid var(--neutral-200);
            transition: all var(--transition-normal) ease;
        }
        
        .case-study:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--fcmg-red);
        }
        
        .case-logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 107, 0.2));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--fcmg-red);
            font-size: var(--font-size-2xl);
            margin-bottom: var(--spacing-lg);
        }
        
        .results {
            display: flex;
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }
        
        .result-item {
            flex: 1;
            text-align: center;
            padding: var(--spacing-md);
            background: rgba(230, 57, 70, 0.05);
            border-radius: var(--radius-md);
        }
        
        .result-value {
            font-size: var(--font-size-2xl);
            font-weight: 700;
            color: var(--fcmg-red);
            margin-bottom: var(--spacing-xs);
        }
        
        .comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-xl);
        }
        
        .advantage-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: var(--spacing-xl);
            border: 1px solid var(--neutral-200);
            text-align: center;
            transition: all var(--transition-normal) ease;
        }
        
        .advantage-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--fcmg-red);
        }
        
        .advantage-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--fcmg-red), var(--fcmg-red-secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: var(--font-size-2xl);
            margin: 0 auto var(--spacing-lg);
        }
        
        .cta-section {
            text-align: center;
            padding: var(--spacing-xxxl) 0;
            background: linear-gradient(135deg, var(--fcmg-red-dark), #9c1c28);
            color: white;
        }
        
        .cta-buttons {
            display: flex;
            gap: var(--spacing-md);
            justify-content: center;
            margin-top: var(--spacing-xl);
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-sm);
            padding: 16px 32px;
            font-size: var(--font-size-md);
            font-weight: 600;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all var(--transition-normal) ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--fcmg-red), var(--fcmg-red-secondary));
            color: white;
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
            background: linear-gradient(135deg, var(--fcmg-red-secondary), var(--fcmg-red));
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        @media (max-width: 992px) {
            .scenario-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .flow-step::before {
                display: none;
            }
            
            .flow-step {
                min-width: calc(50% - var(--spacing-md));
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: var(--font-size-4xl);
            }
            
            h2 {
                font-size: var(--font-size-3xl);
            }
            
            .section {
                padding: var(--spacing-xxl) 0;
            }
            
            .scenario-grid {
                grid-template-columns: 1fr;
            }
            
            .challenge-grid,
            .comparison,
            .case-studies {
                grid-template-columns: 1fr;
            }
            
            .flow-diagram {
                flex-direction: column;
                align-items: center;
            }
            
            .flow-step {
                width: 100%;
                max-width: 400px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: var(--font-size-3xl);
            }
            
            h2 {
                font-size: var(--font-size-2xl);
            }
            
            .lead {
                font-size: var(--font-size-lg);
            }
            
            .tab-button {
                padding: var(--spacing-xs) var(--spacing-sm);
                font-size: var(--font-size-sm);
            }
        }