/* Page-specific: trade card with circular icon + numbered workflow steps */
.trade-card .trade-head { display: flex; align-items: center; gap: 14px;
    margin-bottom: 14px; }
.trade-card .trade-ico { width: 52px; height: 52px; border-radius: 50%;
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(232,93,31,0.1); color: var(--orange); font-size: 1.5rem; }
.trade-card h3 { font-size: 19px; }
.trade-card p { font-size: 15px; color: var(--text-2); margin: 0 0 14px; }
.trade-points { list-style: none; padding: 0; margin: 0; font-size: 14px;
    color: var(--text-2); }
.trade-points li { padding: 3px 0; }
.trade-points i { color: var(--green-paid); margin-right: 8px; }
.step-list { max-width: 720px; margin: 0 auto; display: grid; gap: 16px; }
.step-row { display: flex; align-items: flex-start; gap: 18px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 24px; }
.step-num { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--orange); color: #fff; font-family: "Space Grotesk", sans-serif;
    font-weight: 700; font-size: 20px; }
.step-row h3 { font-size: 18px; margin-bottom: 6px; }
.step-row p { font-size: 15px; color: var(--text-2); margin: 0; }
.more-card { text-align: center; }
.more-card .more-list { list-style: none; padding: 0; margin: 0;
    font-size: 14px; color: var(--text-2); }
.more-card .more-list li { padding: 3px 0; }
