.faq-answer a {
    color: var(--contrast-color);
    text-decoration: underline;
    cursor: cell;
}

/* Stack badge + B2B note vertically and center them */
.security-section {
    margin-top: 24px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Small grey B2B note shown only on Stripe-routed flow */
.b2b-note {
    background: transparent;
    border: none;
    padding: 16px 12px;
    max-width: 520px;
    text-align: center;
    color: var(--text-color3-t);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    line-height: 1.4;
    cursor: cell;
    transition: color 0.2s ease;
}
.b2b-note * { cursor: cell; }
.b2b-note .b2b-note-title { display: block; font-weight: 600; }
.b2b-note .b2b-note-desc  { display: block; font-size: 0.72rem; opacity: 0.8; margin-top: 2px; }
.b2b-note:hover { color: var(--contrast-color); background: transparent; }
.b2b-note:disabled { cursor: progress; opacity: 0.7; }
