  .compare-section {
    padding: 38px 0 18px;
  }
  .compare-shell {
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(14,34,66,.08);
    padding: 28px;
  }
  .compare-intro {
    max-width: 920px;
    margin: 0 auto 24px;
    text-align: center;
  }
  .compare-intro h2 {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.03em;
  }
  .compare-intro p {
    margin: 0;
    color: var(--muted);
  }
  .compare-table-wrap {
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid rgba(15,23,42,.08);
    background: #fff;
  }
  .compare-table {
    width: 100%;
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
  }
  .compare-table th,
  .compare-table td {
    padding: 15px 14px;
    vertical-align: top;
    border-bottom: 1px solid rgba(15,23,42,.08);
    font-size: .98rem;
  }
  .compare-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #eff6fb;
    text-align: center;
    font-size: 1rem;
  }
  .compare-table thead th:first-child {
    text-align: left;
    min-width: 250px;
  }
  .compare-table .vendor-paw {
    background: linear-gradient(135deg, #1780c2, #0d5f92);
    color: #fff;
  }
  .compare-table tbody td:first-child {
    font-weight: 700;
    color: #0f172a;
    background: #fbfdff;
    position: sticky;
    left: 0;
    z-index: 1;
  }
  .compare-table tbody tr:hover td {
    background: #f8fbfe;
  }
  .compare-table tbody tr:hover td:first-child {
    background: #f3f8fd;
  }
  .compare-yes {
    font-weight: 800;
    color: #15803d;
  }
  .compare-no {
    font-weight: 800;
    color: #b91c1c;
  }
  .compare-price-row td {
    background: #f8fbff;
  }
  .compare-price-row td:first-child {
    background: #edf6ff !important;
  }
  .compare-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: .93rem;
  }
  .compare-mobile-cards {
    display: none;
    gap: 16px;
    margin-top: 18px;
  }
  .compare-vendor-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(14,34,66,.06);
    padding: 20px;
  }
  .compare-vendor-card.featured {
    border-color: rgba(23,128,194,.28);
    box-shadow: 0 18px 36px rgba(23,128,194,.12);
  }
  .compare-vendor-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
  }
  .compare-vendor-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
  }
  .compare-vendor-card .vendor-price {
    margin: 14px 0 10px;
    font-weight: 800;
    color: #0d5f92;
  }

  @media (max-width: 860px) {
    .compare-shell { padding: 20px; }
    .compare-table-wrap { display: none; }
    .compare-mobile-cards {
      display: grid;
      grid-template-columns: 1fr;
    }
  }
