.services-hero {
    background: var(--soft-blue);
    border-bottom: 1px solid #d5e2f0;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(450px, 0.95fr);
    align-items: center;
    gap: 76px;
    min-height: 620px;
    padding-block: 72px;
}

.services-hero-copy {
    max-width: 670px;
}

.services-hero h1 {
    max-width: 650px;
    margin-top: 28px;
    font-size: 52px;
}

.services-hero h1 > span {
    display: block;
}

.services-hero h1 em span {
    display: inline;
}

.services-hero h1 em {
    display: block;
    margin-top: 6px;
    color: var(--blue);
    font-style: normal;
}

.services-hero-copy > p:not(.hero-label) {
    max-width: 610px;
    margin-top: 22px;
    color: #526478;
    font-size: 17px;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.project-path {
    padding: 26px;
    color: #dce8f2;
    background: var(--navy);
    border: 1px solid #29435b;
    border-top: 3px solid var(--teal);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.project-path-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #2a4156;
}

.project-path-head span {
    color: #70d3c6;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.project-path-head strong {
    color: #fff;
    font-size: 14px;
}

.project-path ol {
    display: grid;
    margin-top: 4px;
    list-style: none;
}

.project-path li {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 13px;
    min-height: 70px;
    border-bottom: 1px solid #263e53;
}

.project-path li:last-child {
    border-bottom: 0;
}

.project-path li > span {
    color: #69a9fb;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.project-path li strong {
    color: #e9f1f7;
    font-size: 15px;
}

.project-path li small {
    color: #7890a5;
    font-size: 12px;
}

.project-path-outcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 8px;
    padding-top: 18px;
    color: #9db0c1;
    border-top: 1px solid #2a4156;
    font-size: 12px;
}

.project-path-outcome strong {
    color: #70d3c6;
    font-size: 12px;
}

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

.partner-card {
    display: grid;
    grid-template-columns: minmax(150px, 0.62fr) minmax(0, 1fr);
    gap: 28px;
    min-height: 198px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-card:hover {
    border-color: #afc1d3;
    box-shadow: 0 15px 32px rgba(20, 52, 86, 0.07);
    transform: translateY(-3px);
}

.partner-card-head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.partner-scope {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.partner-card:nth-child(2) .partner-scope,
.partner-card:nth-child(3) .partner-scope {
    color: var(--teal);
}

.partner-card:nth-child(4) .partner-scope {
    color: var(--orange);
}

.partner-card h3 {
    margin-top: 14px;
    font-size: 21px;
}

.partner-card-head p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 13px;
}

.partner-card ul {
    display: grid;
    align-content: center;
    gap: 11px;
    list-style: none;
}

.partner-card li {
    position: relative;
    padding-left: 17px;
    color: #3f5265;
    font-size: 14px;
}

.partner-card li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    content: "";
    background: var(--teal);
}

.delivery-band {
    background: var(--canvas);
}

.delivery-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
}

.delivery-flow::before {
    position: absolute;
    top: 25px;
    right: 12.5%;
    left: 12.5%;
    height: 1px;
    content: "";
    background: #b8c7d5;
}

.delivery-stage {
    position: relative;
    padding: 0 24px;
    border-right: 1px solid var(--line);
}

.delivery-stage:first-child {
    padding-left: 0;
}

.delivery-stage:last-child {
    padding-right: 0;
    border-right: 0;
}

.delivery-index {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    color: #fff;
    background: var(--blue);
    border: 7px solid var(--canvas);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.delivery-stage:nth-child(2) .delivery-index,
.delivery-stage:nth-child(3) .delivery-index {
    background: var(--teal);
}

.delivery-stage:nth-child(4) .delivery-index {
    background: var(--orange);
}

.delivery-stage h3 {
    margin-top: 22px;
    font-size: 19px;
}

.delivery-stage > p {
    min-height: 72px;
    margin-top: 11px;
    color: var(--muted);
    font-size: 13px;
}

.delivery-stage dl {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.delivery-stage dt {
    color: #7890a5;
    font-size: 12px;
    font-weight: 700;
}

.delivery-stage dd {
    margin-top: 5px;
    color: #31475c;
    font-size: 13px;
    font-weight: 600;
}

.proof-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: stretch;
    gap: 46px;
}

.proof-visuals {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 10px;
    min-height: 430px;
}

.proof-visuals figure {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.proof-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-visuals figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 12px;
    color: #fff;
    background: rgba(6, 20, 33, 0.86);
    font-size: 12px;
    font-weight: 600;
}

.proof-copy {
    align-self: center;
}

.proof-copy .eyebrow {
    margin-bottom: 16px;
}

.proof-copy h2 {
    max-width: 480px;
    font-size: 34px;
}

.proof-copy > p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 15px;
}

.proof-facts {
    display: grid;
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--line);
}

.proof-fact {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 20px;
    min-height: 76px;
    border-bottom: 1px solid var(--line);
}

.proof-fact strong {
    color: var(--blue);
    font-family: Arial, sans-serif;
    font-size: 24px;
}

.proof-fact span {
    color: #43566a;
    font-size: 13px;
}

.proof-source {
    margin-top: 14px;
    color: #8593a0;
    font-size: 12px;
}

@media (max-width: 1080px) {
    .services-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
        gap: 42px;
    }

    .services-hero h1 {
        font-size: 46px;
    }

    .partner-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .delivery-stage {
        padding-inline: 18px;
    }

    .proof-layout {
        gap: 34px;
    }
}

@media (max-width: 900px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        min-height: 0;
        padding-block: 64px 70px;
    }

    .services-hero-copy {
        max-width: 720px;
    }

    .project-path {
        max-width: 720px;
    }

    .delivery-flow {
        grid-template-columns: 1fr 1fr;
        gap: 34px 0;
    }

    .delivery-flow::before {
        display: none;
    }

    .delivery-stage:nth-child(2) {
        border-right: 0;
    }

    .delivery-stage:nth-child(3) {
        padding-left: 0;
    }

    .proof-layout {
        grid-template-columns: 1fr;
    }

    .proof-visuals {
        min-height: 380px;
    }

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

@media (max-width: 680px) {
    .services-hero-grid {
        gap: 34px;
        padding-block: 54px 62px;
    }

    .services-hero h1 {
        margin-top: 22px;
        font-size: 39px;
    }

    .services-hero-copy > p:not(.hero-label) {
        margin-top: 18px;
        font-size: 15px;
    }

    .services-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 25px;
    }

    .project-path {
        padding: 20px;
    }

    .project-path li {
        grid-template-columns: 30px 1fr;
        min-height: 64px;
    }

    .project-path li small {
        display: none;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        min-height: 0;
        padding: 24px;
    }

    .delivery-flow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .delivery-stage,
    .delivery-stage:first-child,
    .delivery-stage:nth-child(3),
    .delivery-stage:last-child {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 0 18px;
        padding: 0 0 28px;
        border-right: 0;
    }

    .delivery-stage:not(:last-child)::after {
        position: absolute;
        top: 48px;
        bottom: 0;
        left: 24px;
        width: 1px;
        content: "";
        background: #b8c7d5;
    }

    .delivery-index {
        grid-row: 1 / 5;
    }

    .delivery-stage h3 {
        margin-top: 6px;
    }

    .delivery-stage > p {
        min-height: 0;
        margin-top: 7px;
    }

    .delivery-stage dl {
        margin-top: 13px;
        padding-top: 12px;
    }

    .proof-visuals {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .proof-visuals figure {
        aspect-ratio: 16 / 10;
    }

    .proof-copy h2 {
        font-size: 29px;
    }
}

@media (max-width: 420px) {
    .services-hero h1 {
        font-size: 36px;
    }

    .services-hero h1 em .service-result {
        display: block;
    }

    .project-path-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .project-path-outcome {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .partner-card {
        padding: 22px 20px;
    }

    .proof-fact {
        grid-template-columns: 90px 1fr;
        gap: 14px;
    }

    .proof-fact strong {
        font-size: 21px;
    }
}
