.service_process {
    background: #fff;
    color: var(--ink, #0D1821);
    padding: clamp(48px, 8vw, 96px) clamp(16px, 6vw, 80px);
    border-top: 1px solid rgba(13, 24, 33, .06);
}

.service_process_inner {
    max-width: 1200px;
    margin: 0 auto;
}

.service_process_title {
    text-align: center;
    margin: 0 0 26px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--ink, #0D1821);
}

.service_steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(12px, 1.6vw, 18px);
}

@media (max-width:1100px) {
    .service_steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .service_steps {
        grid-template-columns: 1fr;
    }
}

.service_step {
    position: relative;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(13, 24, 33, .08);
    padding: 16px 14px;
    transition: transform .25s ease, box-shadow .25s ease;
    transform-style: preserve-3d;
    font-size: 16px;
}

.service_step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(13, 24, 33, .12);
}

.service_step_kicker {
    color: var(--accent, #0471A6);
    font-weight: 800;
    letter-spacing: .08em;
    font-size: .9rem;
}

.service_step_title {
    margin: 4px 0 6px;
    font-weight: 800;
    font-size: 1.17rem;
}

.service_step p {
    margin: 0;
    color: #2a3540;
}

.service_step ul {
    margin: 8px 0 0;
    padding-left: 1.1em;
    display: grid;
    gap: 6px;
}

.service_step .iconchip {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--accent, #0471A6);
    background: rgba(4, 113, 166, .1);
    box-shadow: inset 0 0 0 1px rgba(4, 113, 166, .2);
}

/* connector arrows on wide screens */
@media (min-width:1101px) {
    .service_step:after {
        content: "";
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 2px;
        background: rgba(4, 113, 166, .25);
    }

    .service_step:last-child:after {
        display: none;
    }
}

/* Reveal helper */
.reveal {
    opacity: 0;
    transform: translateY(16px)
}

.reveal.is-in {
    opacity: 1;
    transform: none;
    transition: opacity .7s ease, transform .7s ease
}