/* Page-specific: commission card + numbered steps */
.commission-card { background: var(--white); border: 2px solid var(--orange);
    border-radius: 12px; overflow: hidden; max-width: 380px; margin: 0 auto; }
.commission-card .cc-head { background: var(--orange); color: #fff;
    text-align: center; padding: 16px; font-family: "Space Grotesk", sans-serif;
    font-weight: 700; font-size: 18px; }
.commission-card .cc-body { padding: 26px; }
.commission-card .cc-headline { text-align: center; margin-bottom: 18px; }
.commission-card .cc-headline .amount { font-family: "Space Grotesk", sans-serif;
    font-weight: 700; font-size: 44px; color: var(--orange); line-height: 1; }
.commission-card .cc-headline p { font-size: 14px; color: var(--text-2);
    margin: 6px 0 0; }
.commission-tier { display: flex; justify-content: space-between;
    align-items: center; padding: 12px 14px; border-radius: 8px;
    margin-bottom: 10px; }
.commission-tier:last-of-type { margin-bottom: 0; }
.commission-tier.tier-pro { background: rgba(232,93,31,0.1); }
.commission-tier.tier-team { background: rgba(63,127,88,0.14); }
.commission-tier .ct-name { font-weight: 600; }
.commission-tier .ct-sub { font-size: 13px; color: var(--text-2); }
.commission-tier .ct-amount { font-family: "Space Grotesk", sans-serif;
    font-weight: 700; font-size: 20px; }
.commission-tier.tier-pro .ct-amount { color: var(--orange); }
.commission-tier.tier-team .ct-amount { color: var(--green-paid); }
.commission-card .cc-foot { text-align: center; margin-top: 16px;
    font-size: 13px; color: var(--text-2); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; }
.step { text-align: center; }
.step .step-num { width: 56px; height: 56px; border-radius: 50%;
    background: var(--orange); color: #fff; display: inline-flex;
    align-items: center; justify-content: center;
    font-family: "Space Grotesk", sans-serif; font-weight: 700;
    font-size: 22px; margin-bottom: 14px; }
.step.step-paid .step-num { background: var(--green-paid); }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--text-2); margin: 0; }
.persona-pot { display: inline-block; margin-top: 4px;
    font-family: "IBM Plex Mono", monospace; font-size: 12px;
    font-weight: 600; color: var(--orange-deep); }
@media (max-width: 880px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
}