/* Protezione da scroll orizzontale */
  html, body { overflow-x: hidden; max-width: 100vw; }

  .bg-light {
    background-color: var(--surface-02) !important;
    color: var(--text-primary) !important;
  }

  .bg-dark {
    background-color: var(--surface-card) !important;
    color: var(--text-primary) !important;
  }

  .table {
    color: var(--text-primary);
    border-color: var(--border-subtle);
  }

  .table thead {
    background: var(--surface-03);
    border-bottom: 2px solid var(--border-glow);
    color: var(--text-accent);
  }

  .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: var(--surface-01);
    color: var(--text-primary);
  }

  .table > :not(caption) > * > * {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-subtle);
  }

  .payment-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .highlight-card {
    background: var(--surface-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition-base);
  }

  .highlight-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-accent);
    background: var(--surface-card-hover);
  }

  .badge-method {
    background: var(--surface-03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: inline-block;
    margin: 0.2rem;
  }

  .section-divider {
    border: none;
    height: 2px;
    background: var(--gradient-accent);
    margin: 2.5rem 0;
    border-radius: 2px;
  }

  .info-box {
    background: var(--surface-glass);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
  }

  .step-number {
    background: var(--gradient-accent);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
  }

  .step-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .security-badge {
    background: var(--surface-03);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
  }

  .security-badge i {
    color: var(--accent);
    font-size: 1.5rem;
  }