/* Section 4 (image + numbered steps) */
#service-section-4 {
    padding: var(--section-pad-y) var(--section-pad-x);
}

#service-section-4 .s4__head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 16px;
    margin-bottom: 28px;
}

#service-section-4 .s4__heading {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.18;
    margin: 0;
}

#service-section-4 .s4__cta {
    background: #E53935;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 4px;
    font-weight: 700;
    white-space: nowrap;
    align-self: end;
}

#service-section-4 .s4__cta:hover {
    filter: brightness(0.95);
}

#service-section-4 .s4__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

#service-section-4 .s4__media {
    height: 535px;
    overflow: hidden;
    border-radius: 6px;
}

#service-section-4 .s4__img {
    width: 100%;
    height: auto;
    display: block;
}

#service-section-4 .s4__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#service-section-4 .s4__item {
    display: grid;
    align-items: center;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

#service-section-4 .s4__item:first-child {
    border-top: 1px solid #eee;
}

#service-section-4 .s4__num {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #fde7e6;
    color: #E53935;
    display: grid;
    place-items: center;
    font-weight: 800;
}

#service-section-4 .s4__title {
    font-size: 18px;
    margin: 2px 0 6px;
}

#service-section-4 .s4__text {
    margin: 0;
    color: #555;
}

@media (max-width: 1024px) {
    #service-section-4 .s4__grid {
        grid-template-columns: 1fr;
    }

    #service-section-4 .s4__head {
        display: flex;
        grid-template-columns: 1fr;
    }

    #service-section-4 .s4__cta {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    #service-section-4 .s4__head {
        flex-wrap: wrap;
    }
    #service-section-4 .s4__media {
        height: auto;
    }
}