    /* ── Hero ── */
    .compare-hero {
      padding: 8rem 0 5rem;
    }
    .vs-pill {
      display: inline-flex;
      align-items: center;
      background: var(--salmon-dim);
      border: 1px solid var(--salmon-bdr);
      border-radius: var(--r-pill);
      padding: 0.375rem 1rem;
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--salmon);
      margin-bottom: 2rem;
    }
    .compare-hero h1 {
      font-size: clamp(2.5rem, 5vw, 4.25rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 1.75rem;
      max-width: 34rem;
    }
    .compare-hero h1 em { font-style: normal; color: var(--salmon); }
    .hero-sub {
      font-size: 1.25rem;
      font-weight: 300;
      color: var(--grey);
      max-width: 32rem;
      line-height: 1.6;
    }

    /* ── Argument ── */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .argument-left h2 {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 1.25rem;
    }
    .argument-left p {
      color: var(--grey);
      font-weight: 300;
      line-height: 1.65;
      margin-bottom: 1rem;
    }
    .argument-left p strong { color: var(--white); font-weight: 500; }

    .stats-row {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }
    .stat-num {
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--salmon);
      line-height: 1;
      margin-bottom: 0.375rem;
      letter-spacing: -0.02em;
    }
    .stat-label {
      font-size: 0.8125rem;
      color: var(--grey);
      line-height: 1.45;
      max-width: 7rem;
    }

    /* Problem card */
    .problem-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-card);
      padding: 2.25rem;
    }
    .problem-card h3 {
      font-size: 0.75rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      color: var(--grey);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .problem-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
    .problem-list li {
      display: flex;
      gap: 0.875rem;
      align-items: flex-start;
      font-size: 0.9375rem;
      color: var(--grey);
      line-height: 1.5;
    }
    .x-icon {
      width: 1.125rem;
      height: 1.125rem;
      border-radius: 50%;
      background: var(--red-dim);
      border: 1px solid rgba(217,80,64,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.125rem;
      font-size: 0.5625rem;
      font-weight: 700;
      color: var(--red);
    }

    /* ── Comparison table ── */
    .table-title {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 300;
      letter-spacing: -0.01em;
      line-height: 1.15;
      margin-bottom: 3rem;
      max-width: 24rem;
    }
    .table-wrap {
      border: 1px solid var(--border);
      border-radius: var(--r-card);
      overflow: hidden;
    }
    .table-head {
      display: grid;
      grid-template-columns: 2fr 1.4fr 1.5fr;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
    }
    .th {
      padding: 1rem 1.75rem;
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--grey);
    }
    .th.s { background: var(--salmon-dim); color: var(--salmon); border-left: 2px solid var(--salmon); }
    .table-row {
      display: grid;
      grid-template-columns: 2fr 1.4fr 1.5fr;
      border-bottom: 1px solid var(--border);
      transition: background 0.15s;
    }
    .table-row:last-child { border-bottom: none; }
    .table-row:hover { background: rgba(255,255,255,0.02); }
    .td {
      padding: 1.125rem 1.75rem;
      font-size: 0.9375rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      line-height: 1.45;
    }
    .td.lbl { font-weight: 500; color: var(--white); }
    .td.zi  { color: var(--grey); }
    .td.s   { border-left: 2px solid var(--salmon); background: rgba(252,120,105,0.04); color: var(--white); font-weight: 500; }
    .ck { color: var(--green); flex-shrink: 0; }
    .cx { color: var(--red); font-weight: 700; flex-shrink: 0; }

    /* ── Verdict ── */
    .verdict-left h2 {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }
    .verdict-left p { color: var(--grey); font-weight: 300; line-height: 1.65; margin-bottom: 1rem; }
    .verdict-left p strong { color: var(--white); font-weight: 500; }
    .verdict-cards { display: flex; flex-direction: column; gap: 1rem; }
    .vcard {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-card);
      padding: 1.75rem 2rem;
    }
    .vcard.is-salmon { background: var(--salmon-dim); border-color: var(--salmon-bdr); }
    .vcard-tag {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 0.5rem;
    }
    .vcard.is-salmon .vcard-tag { color: var(--salmon); }
    .vcard h4 {
      font-size: 1.0625rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }
    .vcard p { font-size: 0.875rem; color: var(--grey); font-weight: 300; line-height: 1.6; }

    /* ── Testimonial ── */
    .testimonial {
      max-width: 40rem;
      margin: 0 auto;
      text-align: center;
    }
    .testimonial blockquote {
      font-size: 1.375rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1.5;
      margin-bottom: 1.5rem;
      font-style: italic;
    }
    .testimonial cite {
      font-style: normal;
      font-size: 0.875rem;
      color: var(--grey);
    }
    .testimonial cite strong { color: var(--white); font-weight: 500; }

    /* ── CTA ── */
    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 4rem;
    }
    .cta-left h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 300;
      letter-spacing: -0.015em;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .cta-left p { color: var(--grey); font-weight: 300; max-width: 28rem; }
    .cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; flex-shrink: 0; }

    /* ── Responsive ── */
    @media (max-width: 991px) {
      .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
      .cta-inner { flex-direction: column; gap: 2.5rem; text-align: center; }
      .cta-left p { margin: 0 auto; }
      .cta-buttons { align-items: center; }
    }
    @media (max-width: 767px) {
      .table-head, .table-row { grid-template-columns: 1.5fr 1fr 1.1fr; }
      .td, .th { padding: 0.875rem 1rem; font-size: 0.8125rem; }
      .stats-row { flex-wrap: wrap; gap: 1.5rem; }
    }
