/* --- "What we offer" services strip -------------------------------------
   Compact module grid: 6 columns desktop -> 3 tablet -> 2 mobile. Each card
   is an icon tile + label + one-line tagline linking to a product home.
   Uses the zr tokens exposed on `.zr-sec`; matches the .zr-mgc card language
   (16px radius, soft icon tile, lift on hover). */
.zr-svc {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.zr-svc-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 14px 15px;
    border: 1px solid var(--zr-line);
    border-radius: 16px;
    background: #fff;
    color: var(--zr-ink);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.16s, box-shadow 0.16s, transform 0.16s;
}
.zr-svc-card:hover {
    border-color: #e0c6c3;
    box-shadow: 0 10px 26px rgba(20, 20, 30, 0.08);
    transform: translateY(-2px);
    color: var(--zr-ink);
    text-decoration: none;
}
.zr-svc-ic {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--zr-soft);
}
.zr-svc-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.zr-svc-t {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--zr-ink);
}
.zr-svc-s {
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--zr-muted-2);
}

@media (max-width: 991px) {
    .zr-svc {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 575px) {
    .zr-svc {
        grid-template-columns: repeat(2, 1fr);
    }
}
