.services-shell {
    padding-bottom: 56px;
}

.services-heading {
    margin-bottom: 30px;
}

.services-heading .profile-label {
    display: inline-block;
    margin-bottom: 10px;
}

.services-heading h1 {
    margin: 0 0 10px;
    color: #17211c;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.services-heading p {
    max-width: 720px;
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.65;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.services-card {
    position: relative;
    min-height: 290px;
    padding: 28px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;
    border: 1px solid #e3e9e5;
    border-radius: 22px;
    box-shadow: 0 10px 32px rgba(23, 33, 28, 0.045);
}

.services-card::after {
    content: "";
    position: absolute;
    top: -76px;
    right: -64px;

    width: 190px;
    height: 190px;

    border-radius: 50%;
    background: rgba(22, 166, 106, 0.07);
    pointer-events: none;
}

.services-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #15965f;
    background: #edf9f3;
    border-radius: 15px;
}

.services-card-icon svg {
    width: 25px;
    height: 25px;
}

.services-card-label {
    margin-bottom: 8px;

    color: #15965f;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.services-card h2 {
    max-width: 430px;
    margin: 0 0 12px;

    color: #17211c;

    font-size: 23px;
    line-height: 1.25;
    letter-spacing: -.45px;
}

.services-card p {
    max-width: 470px;
    margin: 0 0 26px;

    color: #6b7280;

    font-size: 15px;
    line-height: 1.65;
}

.services-card-footer {
    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.services-card-link {
    min-height: 44px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: #16a66a;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background .18s ease,
        transform .18s ease;
}

.services-card-link:hover {
    background: #128c59;
    transform: translateY(-1px);
}

.services-card-meta {
    color: #98a29c;

    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 820px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-card {
        min-height: 260px;
    }
}

@media (max-width: 560px) {
    .services-heading {
        margin-bottom: 22px;
    }

    .services-heading h1 {
        font-size: 32px;
    }

    .services-card {
        min-height: 0;
        padding: 22px;
        border-radius: 18px;
    }

    .services-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-card-link {
        width: 100%;
    }
}
