.process-section {
    background-color: var(--col-primary);
    color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step-num {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--col-accent);
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
}

.step h3 {
    color: white;
    margin-bottom: 1rem;
}

.step p {
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    div[style*="column-count"] { column-count: 1 !important; }
}