.home-page.home-polished .delivery-services {
    padding: var(--site-section-space) 0;
    background: var(--site-surface);
    scroll-margin-top: 80px;
}

.delivery-services__inner {
    width: var(--site-width);
    max-width: 1280px;
    margin: 0 auto;
}

.home-page.home-polished .delivery-services__tabs {
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.home-page.home-polished .delivery-services__tab {
    padding: 8px 0 16px;
    color: var(--site-muted);
    font-size: 28px;
    font-weight: 600;
    border-bottom-width: 3px;
}

.home-page.home-polished .delivery-services__tab[aria-selected="true"] {
    color: var(--site-heading);
    border-color: var(--site-brand);
}

.home-page.home-polished .delivery-services__tab:hover {
    color: var(--site-link);
}

.home-page.home-polished .delivery-services .delivery-services__panel {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
}

.delivery-services__panel[hidden] {
    display: none !important;
}

.delivery-services__panel:focus-visible {
    outline: 2px solid var(--site-brand);
    outline-offset: 8px;
    border-radius: 8px;
}

.home-page.home-polished .delivery-services .implementation-steps__description {
    width: 100%;
    margin: 0 auto 48px;
}

.delivery-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 0;
    padding: 0 0 24px;
    list-style: none;
}

.delivery-steps li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--site-heading);
    font-size: 18px;
    font-weight: 500;
    list-style: none;
}

.delivery-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 1px;
    background: #cce3f2;
}

.delivery-steps__number {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e1f1fb;
    color: var(--site-link);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 760px) {
    .home-page.home-polished .delivery-services__tabs {
        gap: 28px;
        margin-bottom: 32px;
    }

    .home-page.home-polished .delivery-services__tab {
        padding-bottom: 12px;
        font-size: 22px;
    }

    .home-page.home-polished .delivery-services .implementation-steps__description {
        margin-bottom: 32px;
    }

    .delivery-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 0;
        padding-bottom: 0;
    }

    .delivery-steps li {
        gap: 12px;
        font-size: 16px;
    }

    .delivery-steps li:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 380px) {
    .home-page.home-polished .delivery-services__tabs {
        gap: 24px;
    }

    .home-page.home-polished .delivery-services__tab {
        font-size: 20px;
    }
}
