:root {
      --primary: #e60067;
      --primary-hover: #c40057;
      --primary-light: #fff0f6;
      --primary-subtle: #ffd6e7;
      --secondary: #9c27b0;
      --accent: #ff4081;
      --text-main: #1e1b1d;
      --text-muted: #5c555a;
      --text-light: #8e848a;
      --bg-page: #fdfafb;
      --bg-card: #ffffff;
      --bg-alt: #fbf3f6;
      --border-color: #f1dbe5;
      --border-focus: #e60067;
      --shadow-sm: 0 4px 12px rgba(230, 0, 103, 0.05);
      --shadow-md: 0 8px 24px rgba(230, 0, 103, 0.08);
      --shadow-lg: 0 16px 36px rgba(230, 0, 103, 0.12);
      --container-width: 1200px;
      --radius: 12px;
      --radius-sm: 6px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-page);
      color: var(--text-main);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      width: 100%;
      max-width: var(--container-width);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

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

    .brand-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.5px;
    }

    .brand-sub {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted);
      border-left: 1px solid var(--border-color);
      padding-left: 10px;
      display: inline-block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }

    .nav-links li a {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-main);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      display: inline-block;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
      color: var(--primary);
      background: var(--primary-light);
    }

    .nav-action {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn-nav-primary {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #ffffff !important;
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(230, 0, 103, 0.25);
      border: 1px solid transparent;
    }

    .btn-nav-primary:hover {
      opacity: 0.92;
      transform: translateY(-1px);
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      color: var(--text-main);
    }

    /* 区域通用规范 */
    .section-block {
      padding: 84px 0;
      position: relative;
    }

    .section-alt {
      background-color: var(--bg-alt);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 52px;
    }

    .section-tag {
      display: inline-block;
      padding: 4px 14px;
      background: var(--primary-light);
      border: 1px solid var(--primary-subtle);
      color: var(--primary);
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .section-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 首屏 HERO（禁止包含任何图片） */
    .hero-section {
      padding: 90px 0 100px;
      background: radial-gradient(circle at 80% 20%, #ffe9f2 0%, #fff7fa 45%, #ffffff 100%);
      position: relative;
      border-bottom: 1px solid var(--border-color);
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 50px;
      align-items: center;
    }

    .hero-badge-wrap {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: #ffffff;
      border: 1px solid var(--primary-subtle);
      border-radius: 50px;
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 3px rgba(230, 0, 103, 0.2);
    }

    .hero-badge-text {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--primary);
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 900;
      color: #1a1618;
      line-height: 1.2;
      margin-bottom: 22px;
      letter-spacing: -0.5px;
    }

    .hero-title span {
      color: var(--primary);
      display: inline-block;
      position: relative;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
    }

    .btn-main-action {
      background: linear-gradient(135deg, var(--primary) 0%, #d81b60 100%);
      color: #ffffff;
      font-size: 1.05rem;
      font-weight: 700;
      padding: 14px 34px;
      border-radius: 50px;
      box-shadow: 0 8px 24px rgba(230, 0, 103, 0.32);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid transparent;
    }

    .btn-main-action:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(230, 0, 103, 0.4);
      color: #ffffff;
    }

    .btn-secondary-action {
      background: #ffffff;
      color: var(--primary);
      font-size: 1.05rem;
      font-weight: 700;
      padding: 14px 30px;
      border-radius: 50px;
      border: 1.5px solid var(--border-color);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-secondary-action:hover {
      border-color: var(--primary);
      background: var(--primary-light);
      color: var(--primary);
    }

    .hero-tags-box {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-light);
    }

    .hero-tag-item {
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid var(--border-color);
      padding: 4px 12px;
      border-radius: 4px;
      color: var(--text-muted);
    }

    /* 首屏右侧纯CSS模拟的控制台数据面板 */
    .hero-dashboard-preview {
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-lg);
      padding: 24px;
      position: relative;
    }

    .dash-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #f8e5ee;
      padding-bottom: 14px;
      margin-bottom: 18px;
    }

    .dash-dots {
      display: flex;
      gap: 6px;
    }

    .dash-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .dot-red { background: #ff5f56; }
    .dot-yellow { background: #ffbd2e; }
    .dot-green { background: #27c93f; }

    .dash-status {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--primary);
      background: var(--primary-light);
      padding: 3px 10px;
      border-radius: 20px;
    }

    .dash-stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 18px;
    }

    .dash-stat-card {
      background: #fffbfe;
      border: 1px solid #f9e2ed;
      border-radius: 8px;
      padding: 14px;
    }

    .dash-stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .dash-stat-num {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--primary);
    }

    .dash-stat-note {
      font-size: 0.72rem;
      color: #9c27b0;
      margin-top: 4px;
    }

    .dash-model-flow {
      background: #fdf5f9;
      border-radius: 8px;
      padding: 14px;
      border: 1px dashed var(--primary-subtle);
    }

    .dash-flow-header {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
      display: flex;
      justify-content: space-between;
    }

    .dash-flow-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .dash-flow-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.76rem;
      background: #ffffff;
      padding: 8px 12px;
      border-radius: 6px;
      border: 1px solid #f6e2ec;
    }

    .flow-tag {
      font-weight: 600;
      color: var(--primary);
    }

    /* 平台核心优势指标条 */
    .metrics-bar {
      margin-top: -30px;
      position: relative;
      z-index: 20;
    }

    .metrics-inner {
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding: 30px 20px;
      gap: 20px;
    }

    .metric-item {
      text-align: center;
      border-right: 1px solid #f9e2ed;
      padding: 0 16px;
    }

    .metric-item:last-child {
      border-right: none;
    }

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

    .metric-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
    }

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

    /* 关于我们 & 平台介绍 */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .about-card-banner {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-color);
      background: #ffffff;
    }

    .about-features-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 24px;
    }

    .about-feature-item {
      display: flex;
      gap: 16px;
      background: #ffffff;
      padding: 18px 20px;
      border-radius: 10px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .about-feature-item:hover {
      border-color: var(--primary);
      transform: translateX(4px);
    }

    .feature-icon-badge {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .feature-item-content h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
    }

    .feature-item-content p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 模型矩阵 */
    .model-matrix-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 36px;
    }

    .model-badge {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-main);
      box-shadow: var(--shadow-sm);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .model-badge:hover {
      background: var(--primary-light);
      color: var(--primary);
      border-color: var(--primary-subtle);
    }

    /* 业务卡片网格 - 一站式制作场景 */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-subtle);
    }

    .service-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .service-category {
      font-size: 0.76rem;
      font-weight: 700;
      color: var(--primary);
      background: var(--primary-light);
      padding: 3px 10px;
      border-radius: 4px;
    }

    .service-card h3 {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 18px;
      flex-grow: 1;
    }

    .service-highlights {
      list-style: none;
      border-top: 1px dashed #fae3ee;
      padding-top: 14px;
      margin-top: auto;
    }

    .service-highlights li {
      font-size: 0.82rem;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 6px;
    }

    .service-highlights li:last-child {
      margin-bottom: 0;
    }

    .highlight-icon {
      color: var(--primary);
      font-weight: bold;
    }

    /* 案例中心 */
    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .case-card {
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

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

    .case-img-wrap {
      width: 100%;
      height: 220px;
      overflow: hidden;
      background: #f5eaef;
    }

    .case-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .case-card:hover .case-img-wrap img {
      transform: scale(1.04);
    }

    .case-body {
      padding: 22px;
    }

    .case-tags {
      display: flex;
      gap: 6px;
      margin-bottom: 10px;
    }

    .case-tag {
      font-size: 0.72rem;
      background: var(--primary-light);
      color: var(--primary);
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
    }

    .case-body h3 {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .case-body p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 标准制作流程 */
    .process-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }

    .process-step {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .step-number {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #ffffff;
      font-weight: 800;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      box-shadow: 0 4px 12px rgba(230, 0, 103, 0.25);
    }

    .process-step h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .process-step p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 对比评测表格板块 */
    .review-score-hero {
      background: linear-gradient(135deg, #ffffff 0%, #fff4f8 100%);
      border: 2px solid #ffd1e3;
      border-radius: var(--radius);
      padding: 36px;
      margin-bottom: 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      box-shadow: var(--shadow-md);
    }

    .score-left h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .score-stars {
      color: #ff9800;
      font-size: 1.4rem;
      margin-bottom: 6px;
      letter-spacing: 2px;
    }

    .score-badge {
      display: inline-block;
      background: var(--primary);
      color: #ffffff;
      font-size: 0.85rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 4px;
    }

    .score-right {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .big-score {
      font-size: 4.5rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1;
    }

    .score-denom {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-muted);
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 680px;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #f6e3ec;
      font-size: 0.92rem;
    }

    .comparison-table th {
      background: #fff5f8;
      font-weight: 700;
      color: var(--text-main);
    }

    .comparison-table td:nth-child(2) {
      background: #fffbfd;
      font-weight: 600;
      color: var(--primary);
    }

    .comparison-table tr:hover td {
      background-color: #fff2f7;
    }

    /* Token 比价板块 */
    .token-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .token-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: var(--transition);
      position: relative;
    }

    .token-card.featured {
      border: 2px solid var(--primary);
      box-shadow: var(--shadow-md);
      transform: scale(1.03);
    }

    .token-tag-featured {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 14px;
      border-radius: 20px;
    }

    .token-plan-name {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 12px;
    }

    .token-price {
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .token-price small {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-muted);
    }

    .token-features {
      list-style: none;
      margin: 24px 0;
      text-align: left;
    }

    .token-features li {
      font-size: 0.88rem;
      color: var(--text-muted);
      padding: 8px 0;
      border-bottom: 1px dashed #fae6f0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .token-features li:last-child {
      border-bottom: none;
    }

    /* 用户评论卡片 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .review-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-card:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--primary-subtle);
    }

    .review-stars {
      color: #ff9800;
      margin-bottom: 12px;
      font-size: 0.95rem;
    }

    .review-text {
      font-size: 0.92rem;
      color: var(--text-main);
      line-height: 1.6;
      margin-bottom: 20px;
      font-style: normal;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #f9e2ed;
      padding-top: 14px;
    }

    .author-avatar-badge {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.9rem;
    }

    .author-info h5 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .author-info span {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* FAQ 折叠面板 */
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 18px 22px;
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text-main);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .faq-question:hover {
      color: var(--primary);
    }

    .faq-icon {
      font-size: 1.2rem;
      color: var(--primary);
      font-weight: bold;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: #fffcfd;
      padding: 0 22px;
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .faq-item.active {
      border-color: var(--primary);
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 0 22px 20px 22px;
    }

    /* 需求匹配与联系我们表单 */
    .contact-wrapper-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .contact-info-panel {
      background: linear-gradient(145deg, #fff0f6 0%, #ffe3ee 100%);
      padding: 44px 36px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .contact-info-panel h3 {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
    }

    .contact-methods {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin: 24px 0;
    }

    .contact-item-row {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--text-main);
    }

    .contact-item-row strong {
      color: var(--primary);
      min-width: 80px;
    }

    .qr-box-inner {
      background: #ffffff;
      padding: 16px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
      border: 1px solid #ffd4e5;
      width: fit-content;
      margin-top: 10px;
    }

    .qr-box-inner img {
      width: 90px;
      height: 90px;
      object-fit: contain;
      border-radius: 4px;
    }

    .qr-box-text {
      font-size: 0.85rem;
      color: var(--text-main);
      font-weight: 600;
      line-height: 1.4;
    }

    .contact-form-panel {
      padding: 44px 36px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border-color);
      border-radius: 6px;
      font-size: 0.92rem;
      background: #ffffff;
      color: var(--text-main);
      transition: var(--transition);
      outline: none;
      font-family: inherit;
    }

    .form-control:focus {
      border-color: var(--border-focus);
      box-shadow: 0 0 0 3px rgba(230, 0, 103, 0.15);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 100px;
    }

    .btn-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--primary) 0%, #d81b60 100%);
      color: #ffffff;
      border: none;
      padding: 14px;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 16px rgba(230, 0, 103, 0.3);
    }

    .btn-submit:hover {
      opacity: 0.92;
      transform: translateY(-2px);
    }

    /* 资讯与动态 */
    .news-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 30px;
    }

    .news-card-featured {
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }

    .news-featured-img {
      height: 240px;
      overflow: hidden;
      background: #faedf3;
    }

    .news-featured-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .news-featured-content {
      padding: 24px;
      flex-grow: 1;
    }

    .news-list-side {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .news-side-item {
      background: #ffffff;
      padding: 18px 20px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: block;
    }

    .news-side-item:hover {
      border-color: var(--primary);
      transform: translateX(4px);
    }

    .news-side-meta {
      font-size: 0.78rem;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 4px;
    }

    .news-side-title {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.4;
    }

    /* 加盟代理与被动收益专区 */
    .agency-box {
      background: linear-gradient(135deg, #2b0b1a 0%, #4a0f2b 100%);
      color: #ffffff;
      border-radius: var(--radius);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
    }

    .agency-content {
      max-width: 800px;
      position: relative;
      z-index: 2;
    }

    .agency-content h3 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 14px;
      color: #ffffff;
    }

    .agency-content p {
      font-size: 1.05rem;
      color: #f7d2e4;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .agency-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 30px;
    }

    .agency-point-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      padding: 16px;
      backdrop-filter: blur(4px);
    }

    .agency-point-card h5 {
      font-size: 1rem;
      font-weight: 700;
      color: #ff80ab;
      margin-bottom: 6px;
    }

    .agency-point-card p {
      font-size: 0.82rem;
      color: #e0d0d8;
      margin-bottom: 0;
      line-height: 1.5;
    }

    /* 友情链接与站点底部 */
    .footer-links-bar {
      background: #ffffff;
      border-top: 1px solid var(--border-color);
      padding: 30px 0;
    }

    .footer-links-title {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 12px;
    }

    .footer-links-group {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-links-group a {
      font-size: 0.88rem;
      color: var(--text-muted);
      background: var(--bg-alt);
      padding: 6px 14px;
      border-radius: 4px;
      border: 1px solid var(--border-color);
    }

    .footer-links-group a:hover {
      color: var(--primary);
      border-color: var(--primary);
      background: var(--primary-light);
    }

    .site-footer {
      background: #1a1618;
      color: #cfc6cc;
      padding: 50px 0 24px;
      border-top: 1px solid #362930;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-about h4 {
      color: #ffffff;
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .footer-about p {
      font-size: 0.88rem;
      line-height: 1.65;
      color: #a89ba3;
      margin-bottom: 16px;
    }

    .footer-col h5 {
      color: #ffffff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .footer-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-menu li a {
      color: #b0a4ac;
      font-size: 0.88rem;
    }

    .footer-menu li a:hover {
      color: #ff6699;
    }

    .footer-bottom {
      border-top: 1px solid #2d2429;
      padding-top: 24px;
      text-align: center;
      font-size: 0.85rem;
      color: #8c8087;
    }

    /* 浮动客服入口 */
    .float-widget {
      position: fixed;
      right: 20px;
      bottom: 40px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(230, 0, 103, 0.35);
      cursor: pointer;
      border: none;
      transition: var(--transition);
      position: relative;
    }

    .float-btn:hover {
      transform: scale(1.08);
    }

    .float-qr-pop {
      position: absolute;
      right: 60px;
      bottom: 0;
      background: #ffffff;
      padding: 14px;
      border-radius: 8px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-color);
      width: 170px;
      text-align: center;
      display: none;
    }

    .float-btn:hover .float-qr-pop {
      display: block;
    }

    .float-qr-pop img {
      width: 140px;
      height: 140px;
      margin: 0 auto 6px;
      border-radius: 4px;
    }

    .float-qr-pop span {
      font-size: 0.78rem;
      color: var(--text-main);
      font-weight: 700;
      display: block;
    }

    /* 响应式调整 */
    @media (max-width: 992px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .metrics-inner {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-grid {
        grid-template-columns: 1fr;
      }
      .services-grid,
      .case-grid,
      .token-grid,
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .process-timeline {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .contact-wrapper-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .mobile-menu-toggle {
        display: block;
      }
      .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        display: none;
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links li a {
        width: 100%;
        padding: 12px 16px;
      }
      .hero-title {
        font-size: 2.2rem;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .metrics-inner {
        grid-template-columns: 1fr;
      }
      .metric-item {
        border-right: none;
        border-bottom: 1px solid #f9e2ed;
        padding-bottom: 14px;
      }
      .metric-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .services-grid,
      .case-grid,
      .token-grid,
      .reviews-grid,
      .process-timeline,
      .agency-points {
        grid-template-columns: 1fr;
      }
      .news-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .review-score-hero {
        flex-direction: column;
        align-items: flex-start;
      }
    }