.trackex-services-showcase {
    background: #f7fbf8;
    padding: 110px 0;
    position: relative;
}

.trackex-services-showcase[data-background] {
    background-position: center;
    background-size: cover;
}

.trackex-services-showcase-light {
    background: #ffffff;
}

.trackex-services-heading {
    align-items: end;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 42px;
}

.trackex-services-heading-centered {
    justify-content: center;
    text-align: center;
}

.trackex-services-heading h2 {
    color: #12282c;
    font-size: 42px;
    line-height: 1.12;
    margin: 8px 0 0;
    max-width: 760px;
    text-transform: none;
}

.trackex-services-heading p {
    color: #58686b;
    margin: 14px auto 0;
    max-width: 680px;
}

.trackex-eyebrow {
    align-items: center;
    color: #0f8f73;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.trackex-eyebrow:before {
    background: #ff6b35;
    content: "";
    display: inline-block;
    height: 3px;
    margin-inline-end: 10px;
    width: 34px;
}

.trackex-services-link {
    align-items: center;
    background: #12282c;
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    padding: 16px 22px;
}

.trackex-services-link:hover {
    background: #ff6b35;
    color: #ffffff;
}

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

.trackex-service-card {
    background: #ffffff;
    border: 1px solid #dbe7e2;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(18, 40, 44, 0.08);
    min-width: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trackex-service-card:hover {
    border-color: #8fd4bf;
    box-shadow: 0 24px 58px rgba(18, 40, 44, 0.14);
    transform: translateY(-4px);
}

.trackex-service-media {
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
}

.trackex-service-media img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    width: 100%;
}

.trackex-service-card:hover .trackex-service-media img {
    transform: scale(1.04);
}

.trackex-service-body {
    padding: 24px;
    position: relative;
}

.trackex-service-icon {
    align-items: center;
    background: #e9f7f1;
    border: 1px solid #cfe9df;
    border-radius: 8px;
    color: #0f8f73;
    display: flex;
    font-size: 26px;
    height: 58px;
    justify-content: center;
    margin-top: -54px;
    position: relative;
    width: 58px;
}

.trackex-service-icon img {
    height: 34px;
    object-fit: contain;
    width: 34px;
}

.trackex-service-body h3 {
    color: #12282c;
    font-size: 22px;
    line-height: 1.24;
    margin: 18px 0 10px;
    text-transform: none;
}

.trackex-service-body h3 a:hover {
    color: #0f8f73;
}

.trackex-service-body p {
    color: #58686b;
    display: -webkit-box;
    min-height: 78px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.trackex-service-cta {
    align-items: center;
    color: #12282c;
    display: inline-flex;
    font-weight: 800;
    gap: 9px;
    line-height: 1;
    margin-top: 7px;
}

.trackex-service-cta i {
    color: #ff6b35;
    font-size: 13px;
    transition: transform 0.25s ease;
}

.trackex-service-cta:hover {
    color: #0f8f73;
}

.trackex-service-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 1199.98px) {
    .trackex-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .trackex-services-showcase {
        padding: 76px 0;
    }

    .trackex-services-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .trackex-services-heading-centered {
        align-items: center;
    }

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

    .trackex-services-grid {
        grid-template-columns: 1fr;
    }

    .trackex-service-body {
        padding: 22px;
    }
}
