/* Process ("How It Works") widget styles */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    top: 14%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: color-mix(in srgb, var(--light-gray) 15%, transparent);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--blue);
    transition: var(--transition);
}

.step:hover .step-number {
    background: var(--accent);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: scale(1.1);
}

.step-icon {
    margin-bottom: 0.75rem;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--blue-sky);
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.step p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 240px;
    margin: 0 auto;
}

.steps-cta {
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}