  /* 价格页私有变量（仅本页使用；与 layout.css 的同名变量隔离，避免互相覆盖） */
  .price-page {
    --primary: #1a56c4;
    --primary-dark: #0f3d99;
    --accent: #ff8a00;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --border-light: #e5e7eb;
    --bg-light: #f5f7fa;
  }

  /* Hero */
  .hero {
    background: linear-gradient(135deg, #1a56c4 0%, #2d6fe0 60%, #4a8dff 100%);
    color: #fff;
    text-align: center;
    padding: 56px 20px 68px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -40px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .hero h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
  }
  .hero h1 .light { font-weight: 300; opacity: 0.92; margin-right: 6px; }

  /* Main content wrapper */
  .price-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .section-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 56px 0 6px;
  }
  .section-title .bar {
    width: 4px;
    height: 20px;
    background: var(--primary);
    display: inline-block;
    border-radius: 2px;
  }
  .section-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
  }
  .section-sub {
    font-size: 13.5px;
    color: var(--text-gray);
    margin: 8px 0 28px;
    padding-left: 14px;
  }

  /* Pricing cards */
  .plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .plan-card {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 28px 26px 26px;
    position: relative;
    background: #fff;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
  }
  .plan-card:hover {
    box-shadow: 0 12px 32px rgba(26, 86, 196, 0.14);
    transform: translateY(-4px);
  }
  .plan-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(26, 86, 196, 0.12);
  }

  .badge {
    position: absolute;
    top: -1px; left: -1px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 12px 0 12px 0;
    font-weight: 600;
  }

  .plan-name {
    font-size: 17px;
    font-weight: 700;
    margin: 14px 0 8px;
  }
  .plan-desc {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 18px;
    min-height: 20px;
  }
  .plan-price {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
  }
  .plan-price .unit {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
  }
  .plan-note {
    font-size: 12.5px;
    color: var(--primary);
    margin-bottom: 20px;
  }

  .plan-features {
    flex: 1;
    margin-bottom: 24px;
  }
  .plan-features li {
    font-size: 13.5px;
    color: #374151;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .plan-features li::before {
    content: "\2713";
    color: #16a34a;
    font-weight: 700;
    flex-shrink: 0;
  }

  .plan-btn {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: 24px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--primary);
    transition: all 0.2s;
  }
  .plan-btn.solid {
    background: var(--primary);
    color: #fff;
  }
  .plan-btn.solid:hover { background: var(--primary-dark); }
  .plan-btn.outline {
    background: #fff;
    color: var(--primary);
  }
  .plan-btn.outline:hover { background: #eef3fd; }

  /* Pricing table sections */
  .pricing-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
  }

  .table-block h3 {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
  }
  .table-block h3::before {
    content: "";
    width: 4px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
  }
  .table-block .table-sub {
    font-size: 12.5px;
    color: var(--text-gray);
    margin: 4px 0 16px 12px;
  }

  .price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    overflow: hidden;
    border-radius: 8px;
  }
  .price-table thead tr {
    background: var(--primary);
    color: #fff;
  }
  .price-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
  }
  .price-table tbody td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border-light);
    color: #374151;
  }
  .price-table tbody tr:nth-child(even) { background: var(--bg-light); }
  .price-table tbody tr:last-child td { color: var(--text-gray); font-style: italic; }

  /* Feature comparison table */
  .compare-wrap {
    overflow-x: auto;
    margin-top: 20px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(26,86,196,0.06);
  }
  .compare-table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
  }
  .compare-table thead th {
    background: var(--primary);
    color: #fff;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    padding: 12px 16px;
    border-bottom: 2px solid var(--primary-dark);
  }
  .compare-table thead th:first-child {
    text-align: left;
    border-top-left-radius: 9px;
  }
  .compare-table thead th:last-child { border-top-right-radius: 9px; }
  .compare-table tbody td {
    text-align: center;
    padding: 11px 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 13.5px;
    color: #374151;
    vertical-align: middle;
  }
  .compare-table tbody tr:last-child td { border-bottom: none; }
  .compare-table tbody tr:nth-child(even) td { background: var(--bg-light); }
  .compare-table tbody tr:hover td { background: #edf2ff; }
  .compare-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    background: #f0f3f9;
    border-left: 3px solid var(--primary);
    padding-left: 14px;
  }
  .compare-table tbody tr:nth-child(even) td:first-child { background: #e8ecf7; }
  .compare-table tbody tr:hover td:first-child { background: #dce5f9; }
  .check { color: #16a34a; font-weight: 700; font-size: 16px; }
  .dash { color: #c4c9d2; font-size: 14px; }

  /* Process flow */
  .process {
    margin: 60px 0 20px;
    text-align: center;
  }
  .process h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
  }
  .process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  .process-steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 60px; right: 60px;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border-light) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex: 1;
  }
  .step-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(26,86,196,0.25);
  }
  .step-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
  }
  .step-desc {
    font-size: 12px;
    color: var(--text-gray);
  }

  /* CTA banner */
  .cta-banner {
    background: linear-gradient(120deg, #12245e 0%, #1a56c4 55%, #2d6fe0 100%);
    color: #fff;
    margin-top: 70px;
    padding: 48px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .cta-banner .cta-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .cta-banner .cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
  }
  .cta-contact {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .cta-contact .item {
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .cta-btn {
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14.5px;
    white-space: nowrap;
    transition: filter 0.2s;
  }
  .cta-btn:hover { filter: brightness(1.08); }


  /* Responsive */
  @media (max-width: 900px) {
    .plans { grid-template-columns: 1fr; }
    .pricing-tables { grid-template-columns: 1fr; gap: 32px; }
    .hero h1 { font-size: 28px; }
    .process-steps { flex-wrap: wrap; gap: 24px; }
    .process-steps::before { display: none; }
    .cta-banner { flex-direction: column; text-align: center; }
    .cta-contact { justify-content: center; }
  }

  @media (max-width: 480px) {
    .hero { padding: 40px 16px 50px; }
    .hero h1 { font-size: 22px; letter-spacing: 1px; }
    .price-container { padding: 0 16px; }
    .section-title h2 { font-size: 17px; }
  }
