.sa-featured-services,
.sa-featured-services * {
    box-sizing: border-box;
}

.sa-featured-services {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: clip;
    background: #fff;
    color: #05070b;
}

.sa-featured-services--style-4 {
    --sa-featured-shell-max: var(--start-container-max, 1440px);
    --sa-featured-shell-gutter: var(--start-container-gutter, clamp(32px, 6vw, 96px));
    --sa-featured-shell-width: min(var(--sa-featured-shell-max), calc(100vw - var(--sa-featured-shell-gutter)));
    padding: clamp(76px, 8vw, 132px) 0 clamp(70px, 7vw, 118px);
    isolation: isolate;
}

.sa-featured-services--style-4::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 52% 5%, rgba(20, 123, 246, 0.055), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f9fafc 52%, #fff 100%);
    pointer-events: none;
}

.sa-featured-services__container {
    width: var(--sa-featured-shell-width, min(1440px, calc(100vw - clamp(32px, 6vw, 96px))));
    max-width: var(--sa-featured-shell-max, 1440px);
    margin: 0 auto;
    min-width: 0;
}

.sa-featured-services__header {
    max-width: min(920px, 100%);
    margin: 0 auto clamp(54px, 5.8vw, 90px);
    text-align: center;
}

.sa-featured-services__title {
    margin: 0;
    color: #05070b;
    font-size: clamp(44px, 4.9vw, 76px);
    font-weight: 500;
    letter-spacing: -0.066em;
    line-height: 0.98;
}

.sa-featured-services__title strong,
.sa-featured-services__title b,
.sa-featured-services__title span {
    color: #147bf6;
    font-weight: inherit;
}

.sa-featured-services__subtitle {
    width: min(760px, 100%);
    margin: 18px auto 0;
    color: #4b5563;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.55;
}

.sa-featured-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(42px, 5vw, 96px);
    row-gap: clamp(30px, 3.6vw, 52px);
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.sa-featured-services__item {
    display: grid;
    gap: clamp(13px, 1.1vw, 18px);
    align-content: start;
    min-width: 0;
    max-width: 100%;
}

.sa-featured-services__head {
    display: grid;
    grid-template-columns: clamp(60px, 4.4vw, 72px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(13px, 1.35vw, 20px);
    min-width: 0;
}

.sa-featured-services__visual {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(60px, 4.4vw, 72px);
    height: clamp(60px, 4.4vw, 72px);
    min-width: clamp(60px, 4.4vw, 72px);
    border-radius: clamp(16px, 1.1vw, 20px);
    overflow: visible;
    isolation: isolate;
    background: transparent;
    box-shadow: none;
}

.sa-featured-services__visual::before,
.sa-featured-services__visual::after {
    content: none;
    display: none;
}

.sa-featured-services__lottie,
.sa-featured-services__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
}

.sa-featured-services__lottie svg,
.sa-featured-services__lottie canvas,
.sa-featured-services__lottie img,
.sa-featured-services__image {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
}

.sa-featured-services__item-title {
    display: grid;
    gap: 0;
    width: max-content;
    max-width: min(245px, 100%);
    margin: 0;
    color: #05070b;
    font-size: clamp(17px, 1.05vw, 19px);
    font-weight: 680;
    letter-spacing: -0.034em;
    line-height: 1.05;
}

.sa-featured-services__item-title span {
    display: block;
    max-width: 100%;
    white-space: nowrap;
}

.sa-featured-services__item-title-main,
.sa-featured-services__item-title-line {
    overflow: visible;
    text-overflow: clip;
}

.sa-featured-services__description {
    max-width: 300px;
    margin: 0;
    color: #303844;
    font-size: clamp(15px, 0.96vw, 17px);
    font-weight: 400;
    line-height: 1.36;
    letter-spacing: -0.012em;
}

.sa-featured-services__link {
    display: none !important;
}

@media (max-width: 1199px) {
    .sa-featured-services--style-4 {
        --sa-featured-shell-gutter: clamp(28px, 5vw, 64px);
    }

    .sa-featured-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: clamp(42px, 7vw, 84px);
    }
}

@media (max-width: 767px) {
    .sa-featured-services--style-4 {
        --sa-featured-shell-gutter: 30px;
        padding: 58px 0 54px;
    }

    .sa-featured-services__header {
        margin-bottom: 36px;
        text-align: center;
    }

    .sa-featured-services__title {
        font-size: clamp(38px, 11.5vw, 56px);
        letter-spacing: -0.072em;
    }

    .sa-featured-services__subtitle {
        margin-top: 14px;
    }

    .sa-featured-services__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sa-featured-services__item {
        gap: 15px;
    }

    .sa-featured-services__head {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 14px;
    }

    .sa-featured-services__visual {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .sa-featured-services__item-title {
        max-width: min(260px, 100%);
        font-size: 19px;
    }

    .sa-featured-services__description {
        max-width: 100%;
        font-size: 15.5px;
    }
}

@media (max-width: 420px) {
    .sa-featured-services--style-4 {
        --sa-featured-shell-gutter: 24px;
    }

    .sa-featured-services__head {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 13px;
    }

    .sa-featured-services__visual {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
}
