.svc-tiles {
    padding: 48px 0;
}

.svc-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.svc-tile {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.svc-tile-figure {
    position: relative;
    margin: 0;
}

.svc-tile-figure img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 220ms ease;
}

.svc-tile-figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
}

.svc-tile-title {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    margin: 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 16px;
    z-index: 1;
}

.svc-tile:hover .svc-tile-figure img {
    transform: scale(1.03);
}

.svc-copy {
    max-width: 720px;
}

.svc-copy h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    color: #2f3a2f;
}

.svc-copy h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #5a6a5a;
}

.svc-copy p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

.svc-copy p:last-child {
    margin-bottom: 0;
}

.svc-copy h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #8aa65a;
    margin-top: 16px;
}

.svc-intro {
    margin: 48px 0;
}

.svc-bottom {
    padding: 80px 0;
    text-align: center;
    background: #f4f6f2;
}

.svc-bottom h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #2f3a2f;
}

.svc-bottom p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #5a6a5a;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.svc-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    background: #8aa65a;
    color: white;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .05em;
    transition: all 180ms ease;
}

.svc-btn:hover {
    background: #76934c;
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .svc-tiles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .svc-tile-figure img {
        height: 280px;
    }
}

@media (max-width: 620px) {
    .svc-tiles-grid {
        grid-template-columns: 1fr;
    }

    .svc-tile-figure img {
        height: 240px;
    }

    .svc-tile-title {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 15px;
    }
}