.svc-grid {
    margin-block: 2rem;
    padding: 1.75rem 1rem 2rem;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.06), transparent 40%),
        linear-gradient(180deg, #f1f5f9 0%, #eef2f7 100%);
}

.svc-grid__inner {
    width: min(100%, 68rem);
    margin-inline: auto;
}

.svc-grid__head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.svc-grid__title {
    margin: 0;
    font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.svc-grid__subtitle {
    margin: 0.75rem auto 0;
    max-width: 40rem;
    font-size: 0.9rem;
    line-height: 1.9;
    color: #64748b;
}

.svc-grid__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.95rem;
}

.svc-grid__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    width: min(100%, 15.5rem);
    flex: 0 1 15.5rem;
    padding: 1.35rem 1rem 1.15rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: #fff;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 12px 28px -18px rgba(15, 23, 42, 0.35);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.svc-grid__card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 18px 36px -16px rgba(15, 23, 42, 0.4);
}

.svc-grid__icon-wrap {
    display: grid;
    place-items: center;
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 1.25rem;
    background: linear-gradient(160deg, #fff 0%, #f8fafc 100%);
    box-shadow: inset 0 0 0 1px #e2e8f0;
}

.svc-grid__icon {
    width: 3.1rem;
    height: 3.1rem;
    object-fit: contain;
}

.svc-grid__card-title {
    margin: 0;
    min-height: 2.6em;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.55;
    color: #0f172a;
}

.svc-grid__btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px -10px rgba(15, 23, 42, 0.65);
}

.svc-grid__btn:hover {
    background: #ea580c;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 420px) {
    .svc-grid__card {
        flex-basis: 100%;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .svc-grid__card,
    .svc-grid__btn {
        transition: none;
    }

    .svc-grid__card:hover {
        transform: none;
    }
}
