/* =========================
   How it Works
========================= */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.steps li {
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.step-number {
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #111827;
}

.step p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.icon-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.icon-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;

}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }
}