/* Page-specific styles */
    .journey-step {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 2rem;
      align-items: flex-start;
      padding: 2rem 0;
      border-bottom: 1px solid var(--color-border);
    }
    .journey-step:last-child { border-bottom: none; }
    .journey-step-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--gradient-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.5rem;
      color: white;
      flex-shrink: 0;
      box-shadow: 0 0 30px rgba(31,91,153,0.4);
    }
    .journey-step-body h4 {
      font-size: var(--text-2xl);
      margin-bottom: 0.5rem;
    }
    .journey-step-body p { margin-bottom: 0.75rem; }
    .context-box {
      background: var(--color-surface-2);
      border: 1px solid rgba(82,147,207,0.15);
      border-left: 3px solid var(--color-accent);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 1rem 1.25rem;
      font-size: var(--text-sm);
      color: var(--color-muted);
      margin-top: 0.75rem;
    }
    .context-box strong { color: var(--color-accent); }
    .step-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.75rem;
      border-radius: var(--radius-full);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .step-badge.shopper { background: rgba(82,147,207,0.12); color: var(--color-accent); border: 1px solid rgba(82,147,207,0.2); }
    .step-badge.merchant { background: rgba(31,91,153,0.12); color: var(--color-primary); border: 1px solid rgba(31,91,153,0.2); }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 2rem;
    }
    .comparison-table th,
    .comparison-table td {
      padding: 1rem 1.25rem;
      text-align: center;
      border-bottom: 1px solid var(--color-border);
    }
    .comparison-table thead th {
      font-family: var(--font-display);
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--color-text);
      background: var(--color-surface);
      padding: 1.25rem;
    }
    .comparison-table thead th:first-child {
      text-align: left;
      border-radius: var(--radius-md) 0 0 0;
    }
    .comparison-table thead th:last-child {
      border-radius: 0 var(--radius-md) 0 0;
      background: rgba(31,91,153,0.15);
      color: var(--color-accent);
      border: 1px solid rgba(31,91,153,0.2);
    }
    .comparison-table td:first-child {
      text-align: left;
      font-weight: 500;
      color: var(--color-muted);
      font-size: var(--text-sm);
    }
    .comparison-table td:nth-child(2) {
      color: var(--color-muted);
      font-size: var(--text-sm);
    }
    .comparison-table td:last-child {
      background: rgba(31,91,153,0.05);
      color: var(--color-accent);
      font-weight: 600;
      font-size: var(--text-sm);
      border-left: 1px solid rgba(31,91,153,0.15);
      border-right: 1px solid rgba(31,91,153,0.15);
    }
    .comparison-table tbody tr:hover { background: rgba(255,255,255,0.02); }
    .comparison-table tbody tr:last-child td { border-bottom: none; }
    .comparison-table tbody tr:last-child td:last-child {
      border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .tab-anchors {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
      flex-wrap: wrap;
    }
    .tab-anchor {
      padding: 0.75rem 2rem;
      border-radius: var(--radius-full);
      font-weight: 600;
      font-size: var(--text-sm);
      border: 1px solid var(--color-border);
      background: var(--color-surface);
      color: var(--color-muted);
      transition: all var(--transition-base);
    }
    .tab-anchor:hover, .tab-anchor.active {
      background: var(--color-primary);
      color: white;
      border-color: var(--color-primary);
    }
