/* ========================================
   6. 页面特定样式（Page Sections）
   ======================================== */

/* ==================== Policy 政策背景 ==================== */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.policy-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

.policy-national { border-top: 4px solid var(--primary-500); }
.policy-carbon { border-top: 4px solid var(--accent-green); }
.policy-building { border-top: 4px solid var(--accent-orange); }

.policy-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.policy-national .policy-icon { background: rgba(59,130,246,0.1); color: var(--primary-500); }
.policy-carbon .policy-icon { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.policy-building .policy-icon { background: rgba(245,158,11,0.1); color: var(--accent-orange); }

.policy-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }

.policy-source {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

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

.policy-list li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-500);
}

.policy-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 2px solid var(--accent-green);
  border-radius: 16px;
  padding: 20px 28px;
}

.policy-highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  flex-shrink: 0;
}

.policy-highlight-text {
  font-size: 1rem;
  color: #065F46;
}

/* ==================== 温度对比摘要 (temp-summary) ==================== */
.temp-summary {
  background: white;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.temp-summary-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.temp-summary-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  background: #FEF2F2;
  border: 2px solid #FECACA;
  border-radius: 16px;
  min-width: 140px;
}

.temp-summary-card-success {
  background: #ECFDF5;
  border-color: #A7F3D0;
}

.temp-summary-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DC2626;
}

.temp-summary-card-success .temp-summary-icon {
  color: #059669;
}

.temp-summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #DC2626;
}

.temp-summary-card-success .temp-summary-value {
  color: #059669;
}

.temp-summary-label {
  font-size: 0.8125rem;
  color: #991B1B;
}

.temp-summary-card-success .temp-summary-label {
  color: #065F46;
}

.temp-summary-arrow {
  color: #10B981;
}

.temp-summary-divider {
  width: 2px;
  height: 60px;
  background: var(--gray-200);
  margin: 0 8px;
}

/* ==================== 原理对比 (principle-comparison) ==================== */
.principle-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.principle-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.principle-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-100);
}

.principle-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.principle-badge-warning { background: #FEF3C7; color: #92400E; }
.principle-badge-success { background: #D1FAE5; color: #065F46; }

.principle-card-header h3 { font-size: 1.25rem; font-weight: 600; margin: 0; }

.principle-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.principle-flow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  overflow-x: auto;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

.flow-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-icon-red {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}

.flow-icon-green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.flow-text {
  flex: 1;
  min-width: 120px;
}

.flow-text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.flow-text p {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--gray-300);
  flex-shrink: 0;
  padding-top: 8px;
}

.principle-problems {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #FEF2F2;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #991B1B;
}

.principle-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #ECFDF5;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #065F46;
}

.principle-catux-detail {
  padding: 16px;
  background: var(--gray-50);
  border-radius: 12px;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.principle-catux-detail p {
  margin: 0 0 12px;
}

.principle-catux-detail p:last-child {
  margin-bottom: 0;
}

/* ==================== Hero区域 ==================== */

/**
 * 英雄区
 * 首屏展示区域
 */
.hero {
  min-height: 100vh;                 /* 最小高度 */
  display: flex;                       /* 弹性盒 */
  flex-direction: column;             /* 纵向排列 */
  justify-content: center;             /* 垂直居中 */
  align-items: center;                /* 水平居中 */
  padding: 120px 24px 80px;           /* 内边距 */
  background: linear-gradient(180deg, var(--primary-50) 0%, var(--gray-50) 100%);  /* 渐变背景 */
  text-align: center;                  /* 居中文字 */
  position: relative;                 /* 相对定位 */
  overflow: hidden;                   /* 隐藏溢出 */
}

/**
 * 英雄区装饰背景
 */
.hero::before {
  content: '';                         /* 空内容 */
  position: absolute;                  /* 绝对定位 */
  width: 600px;                       /* 宽度 */
  height: 600px;                       /* 高度 */
  background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);  /* 径向渐变 */
  top: -200px;                         /* 顶部偏移 */
  right: -200px;                       /* 右侧偏移 */
  animation: float 20s ease-in-out infinite;  /* 漂浮动画 */
}

/**
 * 漂浮动画
 */
@keyframes float {
  0%, 100% { transform: translate(0, 0); }          /* 初始位置 */
  50% { transform: translate(-50px, 50px); }       /* 中间位置 */
}

/**
 * 英雄区内容
 */
.hero-content {
  max-width: 800px;                   /* 最大宽度 */
  position: relative;                 /* 相对定位 */
  z-index: 1;                          /* 层级 */
}

/**
 * 英雄区徽章
 */
.hero-badge {
  display: inline-flex;               /* 行内弹性盒 */
  align-items: center;                /* 垂直居中 */
  gap: 8px;                           /* 间距 */
  padding: 6px 14px;                  /* 内边距 */
  background: white;                   /* 背景色 */
  border-radius: 100px;                /* 圆形边框 */
  font-size: 0.8125rem;               /* 字号 */
  font-weight: 500;                    /* 字重 */
  color: var(--gray-600);              /* 文字色 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);  /* 阴影 */
  margin-bottom: 24px;                 /* 底部间距 */
}

/**
 * 徽章指示点
 */
.hero-badge-dot {
  width: 8px;                          /* 宽度 */
  height: 8px;                         /* 高度 */
  background: var(--accent-green);     /* 背景色 */
  border-radius: 50%;                  /* 圆形 */
  animation: pulse 2s ease-in-out infinite;  /* 脉冲动画 */
}

/**
 * 脉冲动画
 */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }   /* 初始状态 */
  50% { opacity: 0.5; transform: scale(1.3); }    /* 放大状态 */
}

/**
 * 英雄区标题
 */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);  /* 响应式字号 */
  font-weight: 700;                     /* 字重 */
  line-height: 1.15;                    /* 行高 */
  letter-spacing: -0.02em;              /* 字间距 */
  margin-bottom: 20px;                  /* 底部间距 */
}

/**
 * 标题强调部分
 */
.hero-title-accent {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-900));  /* 渐变背景 */
  -webkit-background-clip: text;         /* 文字裁剪 */
  -webkit-text-fill-color: transparent;  /* 透明文字 */
  background-clip: text;                 /* 背景裁剪 */
}

/**
 * 页面音频播放按钮
 */
.section-audio-btn {
  display: inline-flex;                  /* 内联弹性盒 */
  align-items: center;                  /* 垂直居中 */
  justify-content: center;              /* 水平居中 */
  width: 36px;                          /* 宽度 */
  height: 36px;                         /* 高度 */
  margin-left: 12px;                    /* 左边距 */
  background: rgba(59, 130, 246, 0.1);   /* 背景色 */
  border: 2px solid var(--primary-500);  /* 边框 */
  border-radius: 50%;                   /* 圆形 */
  color: var(--primary-500);            /* 图标色 */
  cursor: pointer;                      /* 鼠标指针 */
  transition: all 0.3s;                  /* 过渡效果 */
  vertical-align: middle;               /* 垂直对齐 */
}

.section-audio-btn:hover {
  background: var(--primary-500);       /* 悬停背景 */
  color: white;                          /* 悬停图标色 */
  transform: scale(1.1);                 /* 悬停放大 */
}

.section-audio-btn.playing {
  background: var(--accent-green);       /* 播放中背景 */
  border-color: var(--accent-green);    /* 播放中边框 */
  color: white;                          /* 播放中图标色 */
  animation: pulse-scale 1.5s infinite;        /* 播放中脉冲动画 */
}

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

/**
 * 英雄区副标题
 */
.hero-subtitle {
  font-size: 1.125rem;                  /* 字号 */
  color: var(--gray-500);               /* 文字色 */
  margin-bottom: 40px;                  /* 底部间距 */
}

/**
 * 英雄区按钮组
 */
.hero-cta {
  display: flex;                        /* 弹性盒 */
  flex-wrap: wrap;                      /* 换行 */
  gap: 16px;                            /* 间距 */
  justify-content: center;               /* 居中 */
}

/* ==================== 动画演示模块 ==================== */

/**
 * 动画舞台
 */
.animation-stage {
  position: relative;                   /* 相对定位 */
  aspect-ratio: 16/9;                   /* 宽高比 */
  max-height: 400px;                    /* 最大高度 */
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);  /* 渐变背景 */
  border-radius: 20px;                  /* 圆角 */
  overflow: hidden;                     /* 隐藏溢出 */
  margin-bottom: 32px;                   /* 底部间距 */
}

/**
 * 电梯井道
 */
.elevator-shaft {
  position: absolute;                   /* 绝对定位 */
  left: 50%;                            /* 水平居中 */
  top: 8%;                              /* 顶部偏移 */
  bottom: 18%;                          /* 底部偏移 */
  width: 100px;                         /* 宽度 */
  transform: translateX(-50%);           /* 水平偏移 */
  background: linear-gradient(90deg, #2d2d44 0%, #1f1f35 100%);  /* 渐变背景 */
  border: 2px solid #3d3d5c;            /* 边框 */
  border-radius: 6px;                   /* 圆角 */
}

/**
 * 电梯轿厢
 */
.elevator-cabin {
  position: absolute;                   /* 绝对定位 */
  left: 6px;                           /* 左侧偏移 */
  right: 6px;                          /* 右侧偏移 */
  top: 20px;                           /* 顶部偏移 */
  height: 60px;                        /* 高度 */
  background: linear-gradient(135deg, var(--primary-500), var(--primary-900));  /* 渐变背景 */
  border-radius: 4px;                   /* 圆角 */
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);  /* 发光效果 */
}

/**
 * 电梯运行动画
 */
.elevator-cabin.running {
  animation: cabinMove 4s ease-in-out infinite;  /* 运行动画 */
}

/**
 * 电梯移动动画
 */
@keyframes cabinMove {
  0%, 100% { transform: translateY(0); }                       /* 顶部 */
  50% { transform: translateY(calc(100% - 60px)); }          /* 底部 */
}

/**
 * 发电机
 */
.generator {
  position: absolute;                   /* 绝对定位 */
  left: 50%;                            /* 水平居中 */
  bottom: 6%;                           /* 底部偏移 */
  transform: translateX(-50%);           /* 水平偏移 */
  width: 80px;                          /* 宽度 */
  height: 50px;                         /* 高度 */
  background: linear-gradient(135deg, #4a5568, #2d3748);  /* 渐变背景 */
  border-radius: 6px;                   /* 圆角 */
  display: flex;                        /* 弹性盒 */
  align-items: center;                  /* 垂直居中 */
  justify-content: center;               /* 水平居中 */
  border: 2px solid #5a6578;            /* 边框 */
}

/**
 * 发电机指示灯
 */
.generator-light {
  width: 16px;                          /* 宽度 */
  height: 16px;                          /* 高度 */
  background: var(--gray-500);            /* 背景色 */
  border-radius: 50%;                   /* 圆形 */
  transition: all var(--transition-normal);  /* 过渡效果 */
}

.generator-light.active {
  background: var(--accent-green);      /* 激活背景 */
  box-shadow: 0 0 20px var(--accent-green);  /* 发光效果 */
}

/**
 * 能量标签
 */
.energy-label {
  position: absolute;                   /* 绝对定位 */
  bottom: 25%;                          /* 底部偏移 */
  left: 50%;                            /* 水平居中 */
  transform: translateX(-50%);           /* 水平偏移 */
  color: var(--primary-500);            /* 文字色 */
  font-size: 0.75rem;                   /* 字号 */
  font-weight: 500;                     /* 字重 */
  opacity: 0;                            /* 隐藏 */
  transition: opacity var(--transition-normal);  /* 过渡效果 */
}

.energy-label.show {
  opacity: 1;                            /* 显示 */
}

/**
 * 动画控制按钮组
 */
.animation-controls {
  display: flex;                        /* 弹性盒 */
  justify-content: center;              /* 居中 */
  gap: 12px;                             /* 间距 */
  flex-wrap: wrap;                       /* 换行 */
}

/**
 * 控制按钮
 */
.control-btn {
  display: flex;                         /* 弹性盒 */
  align-items: center;                   /* 垂直居中 */
  gap: 8px;                              /* 间距 */
  padding: 12px 20px;                    /* 内边距 */
  background: white;                      /* 背景色 */
  border: 2px solid var(--gray-200);     /* 边框 */
  border-radius: 10px;                   /* 圆角 */
  font-size: 0.9375rem;                  /* 字号 */
  font-weight: 600;                      /* 字重 */
  cursor: pointer;                       /* 鼠标指针 */
  transition: all var(--transition-fast);  /* 过渡效果 */
}

.control-btn:hover {
  border-color: var(--primary-500);     /* 悬停边框 */
  color: var(--primary-600);            /* 悬停颜色 */
}

.control-btn.active {
  background: var(--primary-500);       /* 激活背景 */
  border-color: var(--primary-500);     /* 激活边框 */
  color: white;                          /* 激活颜色 */
}

/**
 * 动画信息卡片组
 */
.animation-info {
  display: grid;                         /* 网格布局 */
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));  /* 自适应列 */
  gap: 20px;                             /* 间距 */
  margin-top: 40px;                      /* 顶部间距 */
}

/**
 * 信息卡片
 */
.info-card {
  background: var(--gray-50);            /* 背景色 */
  border-radius: 16px;                   /* 圆角 */
  padding: 24px;                         /* 内边距 */
  text-align: center;                    /* 居中文字 */
  transition: all var(--transition-normal);  /* 过渡效果 */
}

.info-card:hover {
  background: var(--primary-50);        /* 悬停背景 */
  transform: translateY(-4px);           /* 悬停位移 */
}

/**
 * 信息图标
 */
.info-icon {
  width: 48px;                           /* 宽度 */
  height: 48px;                          /* 高度 */
  margin: 0 auto 16px;                   /* 居中 + 底部间距 */
  background: white;                      /* 背景色 */
  border-radius: 12px;                   /* 圆角 */
  display: flex;                          /* 弹性盒 */
  align-items: center;                   /* 垂直居中 */
  justify-content: center;               /* 水平居中 */
  color: var(--primary-600);             /* 图标色 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);  /* 阴影 */
}

.info-title {
  font-size: 1rem;                       /* 字号 */
  font-weight: 600;                       /* 字重 */
  margin-bottom: 4px;                    /* 底部间距 */
}

.info-desc {
  font-size: 0.8125rem;                  /* 字号 */
  color: var(--gray-500);                /* 文字色 */
}

/* ==================== 计算器模块 ==================== */

/**
 * 计算器网格布局
 */
.calculator-grid {
  display: grid;                          /* 网格布局 */
  grid-template-columns: 1fr;            /* 单列布局 */
  gap: 32px;                             /* 间距 */
}

/* 桌面端双列布局 */
@media (min-width: 1024px) {
  .calculator-grid {
    grid-template-columns: 1fr 1fr;      /* 双列布局 */
  }
}

/**
 * 计算器面板
 */
.calc-panel {
  background: var(--gray-50);            /* 背景色 */
  border: 1px solid var(--gray-200);     /* 边框 */
  border-radius: 20px;                   /* 圆角 */
  padding: 32px;                          /* 内边距 */
}

/**
 * 计算器标题
 */
.calc-title {
  font-size: 1.125rem;                   /* 字号 */
  font-weight: 600;                       /* 字重 */
  margin-bottom: 28px;                   /* 底部间距 */
  display: flex;                          /* 弹性盒 */
  align-items: center;                    /* 垂直居中 */
  gap: 10px;                             /* 间距 */
}

.calc-title svg {
  width: 22px;                           /* 宽度 */
  height: 22px;                          /* 高度 */
  color: var(--primary-600);              /* 图标色 */
}

/**
 * 计算器字段
 */
.calc-field {
  margin-bottom: 20px;                   /* 底部间距 */
}

/**
 * 计算器标签
 */
.calc-label {
  display: flex;                          /* 弹性盒 */
  justify-content: space-between;         /* 两端对齐 */
  font-size: 0.875rem;                    /* 字号 */
  font-weight: 500;                        /* 字重 */
  color: var(--gray-600);                 /* 文字色 */
  margin-bottom: 8px;                     /* 底部间距 */
}

.calc-unit {
  color: var(--gray-400);                /* 单位颜色 */
}

/**
 * 计算器输入框
 */
.calc-input {
  width: 100%;                            /* 全宽 */
  padding: 14px 18px;                    /* 内边距 */
  font-size: 1.5rem;                      /* 字号 */
  font-weight: 600;                       /* 字重 */
  font-family: 'JetBrains Mono', monospace;  /* 等宽字体 */
  border: 2px solid var(--gray-200);     /* 边框 */
  border-radius: 10px;                    /* 圆角 */
  background: white;                       /* 背景色 */
  transition: all var(--transition-fast);  /* 过渡效果 */
}

.calc-input:focus {
  outline: none;                           /* 移除轮廓 */
  border-color: var(--primary-500);       /* 聚焦边框 */
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);  /* 发光效果 */
}

/**
 * 主要结果展示
 */
.result-main {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-900));  /* 渐变背景 */
  border-radius: 16px;                    /* 圆角 */
  padding: 32px;                           /* 内边距 */
  text-align: center;                      /* 居中文字 */
  color: white;                            /* 文字色 */
  margin-bottom: 20px;                    /* 底部间距 */
}

.result-label {
  font-size: 0.875rem;                    /* 字号 */
  opacity: 0.85;                           /* 透明度 */
  margin-bottom: 8px;                      /* 底部间距 */
}

.result-value {
  font-size: 3rem;                         /* 字号 */
  font-weight: 700;                        /* 字重 */
  font-family: 'JetBrains Mono', monospace;  /* 等宽字体 */
  line-height: 1;                          /* 行高 */
  margin-bottom: 4px;                     /* 底部间距 */
}

.result-unit {
  font-size: 1.125rem;                    /* 字号 */
  opacity: 0.85;                           /* 透明度 */
}

/**
 * 结果分解网格
 */
.result-breakdown {
  display: grid;                           /* 网格布局 */
  grid-template-columns: 1fr 1fr;         /* 双列布局 */
  gap: 16px;                               /* 间距 */
}

/**
 * 结果卡片
 */
.result-card {
  background: white;                       /* 背景色 */
  border-radius: 14px;                     /* 圆角 */
  padding: 20px;                            /* 内边距 */
  text-align: center;                       /* 居中文字 */
}

.result-card-label {
  font-size: 0.8125rem;                    /* 字号 */
  color: var(--gray-500);                  /* 文字色 */
  margin-bottom: 6px;                      /* 底部间距 */
}

.result-card-value {
  font-size: 1.375rem;                     /* 字号 */
  font-weight: 700;                        /* 字重 */
  font-family: 'JetBrains Mono', monospace;  /* 等宽字体 */
}

.result-card-value.customer {
  color: var(--accent-green);              /* 客户收益色 */
}

.result-card-value.catux {
  color: var(--primary-600);               /* 卡图思收益色 */
}

/* ==================== 产品参数模块 ==================== */

/**
 * 产品网格布局
 */
.product-grid {
  display: grid;                           /* 网格布局 */
  grid-template-columns: 1fr;              /* 单列布局 */
  gap: 40px;                               /* 间距 */
  align-items: center;                     /* 垂直居中 */
}

/* 桌面端双列布局 */
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;       /* 双列布局 */
  }
}

/**
 * 产品图片区域
 */
.product-image {
  position: relative;                      /* 相对定位 */
  aspect-ratio: 4/3;                      /* 宽高比 */
  background: linear-gradient(135deg, var(--gray-100), var(--gray-50));  /* 渐变背景 */
  border-radius: 24px;                     /* 圆角 */
  display: flex;                           /* 弹性盒 */
  align-items: center;                     /* 垂直居中 */
  justify-content: center;                 /* 水平居中 */
  box-shadow: var(--shadow-xl);            /* 阴影 */
}

.product-image::before {
  content: 'CE-0430H0C*2';                 /* 标签内容 */
  position: absolute;                      /* 绝对定位 */
  top: 20px;                               /* 顶部偏移 */
  left: 20px;                              /* 左侧偏移 */
  padding: 8px 14px;                      /* 内边距 */
  background: var(--primary-500);         /* 背景色 */
  color: white;                            /* 文字色 */
  font-size: 0.8125rem;                    /* 字号 */
  font-weight: 600;                        /* 字重 */
  border-radius: 8px;                      /* 圆角 */
}

/**
 * 产品图标
 */
.product-icon {
  width: 120px;                            /* 宽度 */
  height: 120px;                           /* 高度 */
  background: white;                        /* 背景色 */
  border-radius: 24px;                     /* 圆角 */
  display: flex;                           /* 弹性盒 */
  align-items: center;                     /* 垂直居中 */
  justify-content: center;                 /* 水平居中 */
  font-size: 4rem;                          /* 字号 */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);  /* 阴影 */
}

/**
 * 规格列表
 */
.specs-list {
  display: grid;                            /* 网格布局 */
  gap: 16px;                                /* 间距 */
}

/**
 * 规格项
 */
.spec-item {
  display: flex;                            /* 弹性盒 */
  align-items: center;                      /* 垂直居中 */
  gap: 16px;                                /* 间距 */
  padding: 16px;                            /* 内边距 */
  background: var(--gray-50);               /* 背景色 */
  border-radius: 12px;                      /* 圆角 */
  transition: all var(--transition-fast);   /* 过渡效果 */
}

.spec-item:hover {
  background: var(--primary-50);           /* 悬停背景 */
}

.spec-icon {
  width: 44px;                               /* 宽度 */
  height: 44px;                              /* 高度 */
  background: white;                         /* 背景色 */
  border-radius: 10px;                      /* 圆角 */
  display: flex;                             /* 弹性盒 */
  align-items: center;                       /* 垂直居中 */
  justify-content: center;                  /* 水平居中 */
  color: var(--primary-600);                 /* 图标色 */
  flex-shrink: 0;                            /* 不缩小 */
}

.spec-label {
  font-size: 0.875rem;                       /* 字号 */
  color: var(--gray-500);                   /* 文字色 */
}

.spec-value {
  font-size: 1.125rem;                       /* 字号 */
  font-weight: 600;                          /* 字重 */
  font-family: 'JetBrains Mono', monospace;   /* 等宽字体 */
}

/* ==================== 成功案例模块 ==================== */

/**
 * 案例网格布局
 */
.cases-grid {
  display: grid;                              /* 网格布局 */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));  /* 自适应列 */
  gap: 24px;                                 /* 间距 */
}

/**
 * 案例卡片
 */
.case-card {
  background: white;                          /* 背景色 */
  border-radius: 20px;                        /* 圆角 */
  padding: 28px;                              /* 内边距 */
  box-shadow: var(--shadow-md);               /* 阴影 */
  transition: all var(--transition-normal);   /* 过渡效果 */
  cursor: pointer;                            /* 鼠标指针 */
}

.case-card:hover {
  transform: translateY(-8px);               /* 悬停位移 */
  box-shadow: var(--shadow-xl);               /* 悬停阴影 */
}

/**
 * 案例徽章
 */
.case-badge {
  display: inline-block;                     /* 行内块 */
  padding: 4px 10px;                         /* 内边距 */
  font-size: 0.75rem;                        /* 字号 */
  font-weight: 600;                          /* 字重 */
  border-radius: 6px;                        /* 圆角 */
  margin-bottom: 14px;                       /* 底部间距 */
}

.case-badge.signatured {
  background: rgba(16, 185, 129, 0.1);       /* 已签约背景 */
  color: var(--accent-green);               /* 文字色 */
}

.case-name {
  font-size: 1.25rem;                        /* 字号 */
  font-weight: 600;                          /* 字重 */
  margin-bottom: 6px;                        /* 底部间距 */
}

.case-location {
  font-size: 0.875rem;                        /* 字号 */
  color: var(--gray-500);                    /* 文字色 */
  margin-bottom: 20px;                        /* 底部间距 */
}

.case-stats {
  display: grid;                              /* 网格布局 */
  grid-template-columns: 1fr 1fr;             /* 双列布局 */
  gap: 16px;                                  /* 间距 */
  padding-top: 20px;                          /* 顶部间距 */
  border-top: 1px solid var(--gray-100);     /* 顶部边框 */
}

.case-stat-value {
  font-size: 1.5rem;                           /* 字号 */
  font-weight: 700;                           /* 字重 */
  font-family: 'JetBrains Mono', monospace;    /* 等宽字体 */
  color: var(--primary-600);                  /* 文字色 */
}

.case-stat-label {
  font-size: 0.75rem;                         /* 字号 */
  color: var(--gray-500);                     /* 文字色 */
}

/* ==================== 售后服务模块 ==================== */

/**
 * 服务网格布局
 */
.service-grid {
  display: grid;                               /* 网格布局 */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));  /* 自适应列 */
  gap: 24px;                                   /* 间距 */
  margin-bottom: 60px;                        /* 底部间距 */
}

/**
 * 服务卡片
 */
.service-card {
  background: var(--gray-50);                  /* 背景色 */
  border-radius: 20px;                         /* 圆角 */
  padding: 32px;                               /* 内边距 */
  text-align: center;                          /* 居中文字 */
  transition: all var(--transition-normal);    /* 过渡效果 */
}

.service-card:hover {
  background: var(--primary-50);              /* 悬停背景 */
  transform: translateY(-4px);                 /* 悬停位移 */
}

.service-icon {
  width: 60px;                                 /* 宽度 */
  height: 60px;                                /* 高度 */
  margin: 0 auto 20px;                        /* 居中 + 底部间距 */
  background: white;                           /* 背景色 */
  border-radius: 16px;                         /* 圆角 */
  display: flex;                               /* 弹性盒 */
  align-items: center;                        /* 垂直居中 */
  justify-content: center;                     /* 水平居中 */
  color: var(--primary-600);                   /* 图标色 */
  box-shadow: var(--shadow-md);                /* 阴影 */
}

.service-title {
  font-size: 1.125rem;                         /* 字号 */
  font-weight: 600;                            /* 字重 */
  margin-bottom: 8px;                          /* 底部间距 */
}

.service-desc {
  font-size: 0.875rem;                         /* 字号 */
  color: var(--gray-500);                      /* 文字色 */
}

/* ==================== 常见问题模块 ==================== */

/**
 * FAQ容器
 */
.faq-container {
  max-width: 800px;                            /* 最大宽度 */
  margin: 0 auto;                              /* 居中 */
}

/**
 * FAQ项目
 */
.faq-item {
  background: var(--gray-50);                  /* 背景色 */
  border-radius: 14px;                         /* 圆角 */
  margin-bottom: 12px;                         /* 底部间距 */
  overflow: hidden;                             /* 隐藏溢出 */
}

/**
 * FAQ问题
 */
.faq-question {
  width: 100%;                                 /* 全宽 */
  padding: 20px 24px;                         /* 内边距 */
  background: none;                            /* 无背景 */
  border: none;                                 /* 无边框 */
  text-align: left;                            /* 左对齐 */
  font-size: 1rem;                             /* 字号 */
  font-weight: 600;                            /* 字重 */
  cursor: pointer;                             /* 鼠标指针 */
  display: flex;                               /* 弹性盒 */
  align-items: center;                         /* 垂直居中 */
  justify-content: space-between;              /* 两端对齐 */
}

.faq-question svg {
  width: 18px;                                 /* 宽度 */
  height: 18px;                                /* 高度 */
  transition: transform var(--transition-fast);  /* 过渡效果 */
  flex-shrink: 0;                              /* 不缩小 */
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);                   /* 展开旋转 */
}

/**
 * FAQ答案
 */
.faq-answer {
  max-height: 0;                               /* 高度为0 */
  overflow: hidden;                            /* 隐藏溢出 */
  transition: max-height var(--transition-normal);  /* 过渡效果 */
}

.faq-item.open .faq-answer {
  max-height: 150px;                          /* 展开高度 */
}

.faq-answer-content {
  padding: 0 24px 20px;                       /* 内边距 */
  color: var(--gray-600);                     /* 文字色 */
  line-height: 1.7;                           /* 行高 */
}

/* ==================== 页脚 ==================== */

/* ========================================
   6. 联系我们页面（Contact）
   ======================================== */

/**
 * 联系我们 section
 */
.contact-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1e3a5f 50%, var(--gray-900) 100%);
  color: white;
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--accent-green);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, var(--gray-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact-vision {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.3s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: var(--accent-green);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-green), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-card-label {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.contact-card-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.contact-company {
  margin-bottom: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-logo {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--accent-green), var(--primary-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.company-english {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.contact-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 32px;
}

.contact-copyright {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* 响应式 */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 24px;
  }
}

/**
 * 页脚
 */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 60px 24px 40px;
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;                           /* 字号 */
  font-weight: 700;                            /* 字重 */
  margin-bottom: 8px;                          /* 底部间距 */
}

.footer-name {
  font-size: 0.875rem;                         /* 字号 */
  color: var(--gray-400);                     /* 文字色 */
  margin-bottom: 24px;                        /* 底部间距 */
}

.footer-contact {
  font-size: 0.875rem;                         /* 字号 */
  color: var(--gray-400);                     /* 文字色 */
  margin-bottom: 8px;                          /* 底部间距 */
}

.footer-copy {
  margin-top: 40px;                           /* 顶部间距 */
  padding-top: 24px;                           /* 顶部内边距 */
  border-top: 1px solid var(--gray-800);     /* 顶部边框 */
  font-size: 0.8125rem;                        /* 字号 */
  color: var(--gray-500);                     /* 文字色 */
}

/* ========================================
   7. 按钮组件
   ======================================== */

/* 下一区块按钮 */
.next-section-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary-500);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  z-index: 100;
}

.next-section-btn:hover {
  background: var(--primary-600);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.next-section-btn svg {
  animation: bounce 1.5s ease-in-out infinite;
}

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

/* ========================================
   8. 经济效益（Economics）
   ======================================== */
.economics-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #0F2744 100%);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
  color: white;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.economics-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.economics-scenario {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.scenario-item { text-align: center; }
.scenario-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); display: block; margin-bottom: 4px; }
.scenario-value { font-size: 1.5rem; font-weight: 700; }
.scenario-warning .scenario-value { color: #FCA5A5; }
.scenario-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.economics-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.economics-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

.economics-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-600);
}

.economics-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.economics-card p { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 16px; }
.economics-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-green);
  padding: 8px 16px;
  background: rgba(16,185,129,0.1);
  border-radius: 20px;
  display: inline-block;
}

.economics-process {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.economics-process h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.process-step:last-child { border-bottom: none; }

.process-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.process-text { font-size: 1rem; color: var(--gray-700); }

/* 核心亮点 */
.economics-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: 20px 32px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.highlight-text {
  font-size: 1.25rem;
  color: #92400e;
}

.highlight-text strong {
  color: #b45309;
  font-weight: 800;
}

/* 发电数据展示 */
.economics-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.economics-data-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-100);
  transition: all var(--transition-normal);
}

.economics-data-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.economics-data-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1.2;
  margin-bottom: 8px;
}

.economics-data-value span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-left: 4px;
}

.economics-data-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* 两种模式对比 */
.economics-comparison {
  margin-bottom: 40px;
}

.comparison-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--gray-800);
  margin-bottom: 32px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

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

.comparison-emc {
  border: 2px solid var(--primary-200);
}

.comparison-emc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
}

.comparison-buy {
  border: 2px solid var(--accent-green);
}

.comparison-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), #059669);
}

.comparison-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.comparison-emc .comparison-badge {
  background: var(--primary-50);
  color: var(--primary-600);
}

.comparison-buy .comparison-badge {
  background: rgba(16,185,129,0.1);
  color: var(--accent-green);
}

.comparison-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.comparison-highlight {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.comparison-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1;
}

.comparison-value span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-500);
}

.comparison-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 8px;
}

.comparison-details {
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.detail-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.detail-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-700);
}

.detail-value.highlight {
  color: var(--accent-green);
}

.comparison-tag {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  color: var(--primary-600);
}

.comparison-buy .comparison-tag {
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.2));
  color: var(--accent-green);
}

/* 附加价值 */
.economics-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16,185,129,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
}

.benefit-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ========================================
   8. 三包政策（Warranty）
   ======================================== */
.warranty-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.warranty-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0 20px;
}

.warranty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-500);
  transition: all var(--transition-normal);
}

.warranty-highlight .warranty-icon {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: #ECFDF5;
}

.warranty-badge {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.warranty-item h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 4px; }
.warranty-item p { font-size: 0.875rem; color: var(--gray-500); }

.warranty-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-200), var(--accent-green));
  margin-top: 36px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .warranty-line { display: none; }
}

.warranty-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FEF3C7;
  border: 2px solid #F59E0B;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.warranty-note-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D97706;
  flex-shrink: 0;
}

.warranty-note-text { font-size: 0.9375rem; color: #92400E; line-height: 1.6; }

.warranty-exceptions {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.warranty-exceptions h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

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

.exception-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: 12px;
  font-size: 0.9375rem;
  color: #991B1B;
}
   11. 合作方式（Cooperation）
   ======================================== */
.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.cooperation-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all var(--transition-normal);
}

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

.cooperation-emc {
  border: 3px solid var(--accent-green);
  background: linear-gradient(135deg, #F0FDF4 0%, white 100%);
}

.cooperation-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--primary-500);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.cooperation-badge-emc { background: var(--accent-green); }

.cooperation-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 8px;
}

.cooperation-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.cooperation-features { display: flex; flex-direction: column; gap: 12px; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.feature-item svg { flex-shrink: 0; margin-top: 2px; }

.emc-profit-share {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px dashed var(--gray-200);
}

.profit-item {
  flex: 1;
  text-align: center;
  padding: 16px;
  background: white;
  border-radius: 12px;
}

.catux-profit { background: rgba(16,185,129,0.1); }

.profit-label { font-size: 0.8125rem; color: var(--gray-500); display: block; margin-bottom: 4px; }
.profit-value { font-size: 1.75rem; font-weight: 700; color: var(--gray-900); }
.catux-profit .profit-value { color: var(--accent-green); }

.cooperation-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 2px solid var(--primary-200);
  border-radius: 20px;
  padding: 28px;
}

.summary-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-500);
  flex-shrink: 0;
}

.summary-text {
  font-size: 1rem;
  color: #1E40AF;
  line-height: 1.7;
}

/* ========================================
   10. 动画效果（Animations）
   ======================================== */

/**
 * 淡入动画
 * 用于元素进入视口时的动画效果
 */
.fade-in {
  opacity: 1;                                   /* 默认可见 */
  transform: translateY(0);                     /* 默认位置 */
  transition: all 0.6s ease-out;               /* 过渡效果 */
}

.fade-in.visible {
  animation: fadeInUp 0.6s ease-out forwards;  /* 动画效果 */
}

/* ========================================
   9. 动画关键帧
   ======================================== */

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