﻿/* =========================================================
   WILLSMARG DELIVERY MODELS — LEVEL 5 PREMIUM PAGE
   File: wwwroot/css/DeliveryModels.css
========================================================= */

:root {
    --wsm-delivery-bg: #f7f9fc;
    --wsm-delivery-surface: #ffffff;
    --wsm-delivery-ink: #0b1f3a;
    --wsm-delivery-ink-2: #20324d;
    --wsm-delivery-muted: #64748b;
    --wsm-delivery-line: #dfe7ef;
    --wsm-delivery-teal: #00a8c8;
    --wsm-delivery-teal-2: #e5fbff;
    --wsm-delivery-teal-dark: #007d95;
    --wsm-delivery-blue: #1d4ed8;
    --wsm-delivery-shadow: 0 16px 42px rgba(11,31,58,.075);
    --wsm-delivery-shadow-lg: 0 28px 72px rgba(11,31,58,.13);
    --wsm-delivery-radius: 24px;
}

.wsm-delivery-page {
    color: var(--wsm-delivery-ink);
    background: var(--wsm-delivery-bg);
    overflow-x: hidden;
}

.wsm-delivery-shell {
    width: 100%;
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
    margin: 0 auto;
}

.wsm-delivery-section {
    position: relative;
    padding: clamp(64px, 5vw, 96px) 0;
    border-bottom: 1px solid var(--wsm-delivery-line);
}

.wsm-delivery-head h2,
.wsm-delivery-split-head h2,
.wsm-delivery-global-card h2,
.wsm-delivery-cta-card h2 {
    margin: 22px 0 14px;
    color: var(--wsm-delivery-ink);
    font-size: clamp(2.25rem, 3.15vw, 4.25rem);
    line-height: 1.05;
    letter-spacing: -.055em;
    font-weight: 950;
}

.wsm-delivery-head p,
.wsm-delivery-split-head p,
.wsm-delivery-model-card p,
.wsm-delivery-flow-card p,
.wsm-delivery-fit-card p,
.wsm-delivery-governance-grid p,
.wsm-delivery-global-card p,
.wsm-delivery-cta-card p {
    color: var(--wsm-delivery-muted);
    font-size: clamp(.95rem, .9vw, 1.04rem);
    line-height: 1.72;
    font-weight: 620;
}

.wsm-delivery-head-center {
    max-width: 1120px;
    margin: 0 auto clamp(34px, 4vw, 54px);
    text-align: center;
}

    .wsm-delivery-head-center p {
        max-width: 880px;
        margin-left: auto;
        margin-right: auto;
    }

.wsm-delivery-split-head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
    gap: clamp(28px, 5vw, 86px);
    align-items: end;
    margin-bottom: 34px;
}

    .wsm-delivery-split-head p {
        margin: 0 0 8px;
        max-width: 760px;
    }

/* HERO */
.wsm-delivery-hero {
    position: relative;
    padding: clamp(58px, 5vw, 92px) 0 clamp(60px, 5vw, 96px);
    background: linear-gradient(rgba(11,31,58,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.035) 1px, transparent 1px), radial-gradient(circle at 8% 12%, rgba(0,168,200,.11), transparent 30%), radial-gradient(circle at 90% 18%, rgba(29,78,216,.07), transparent 28%), linear-gradient(135deg, #fbfdff 0%, #f4f8fb 52%, #eef5f8 100%);
    background-size: 46px 46px, 46px 46px, auto, auto, auto;
    border-bottom: 1px solid var(--wsm-delivery-line);
    overflow: hidden;
}

    .wsm-delivery-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, transparent 0 48%, rgba(0,168,200,.075) 48% 49%, transparent 49% 100%);
        pointer-events: none;
    }

.wsm-delivery-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(560px, .88fr);
    gap: clamp(42px, 5vw, 92px);
    align-items: center;
}

.wsm-delivery-hero-copy h1 {
    max-width: 1120px;
    margin: 26px 0 22px;
    color: var(--wsm-delivery-ink);
    font-size: clamp(3rem, 5vw, 6.15rem);
    line-height: .99;
    letter-spacing: -.072em;
    font-weight: 950;
}

.wsm-delivery-hero-copy p {
    max-width: 1040px;
    color: var(--wsm-delivery-muted);
    font-size: clamp(1rem, 1.05vw, 1.15rem);
    line-height: 1.82;
    font-weight: 620;
}

.wsm-delivery-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.wsm-delivery-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

    .wsm-delivery-proof-strip span {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0 14px;
        border-radius: 999px;
        color: var(--wsm-delivery-ink);
        background: rgba(255,255,255,.88);
        border: 1px solid var(--wsm-delivery-line);
        box-shadow: 0 8px 22px rgba(11,31,58,.045);
        font-size: .86rem;
        font-weight: 900;
    }

    .wsm-delivery-proof-strip i {
        color: var(--wsm-delivery-teal-dark);
    }

/* HERO BOARD */
.wsm-delivery-system-card {
    width: 100%;
    max-width: 850px;
    margin-left: auto;
    border: 1px solid var(--wsm-delivery-line);
    border-radius: 30px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--wsm-delivery-shadow);
    overflow: hidden;
    transform: translateZ(0);
    animation: wsmDeliveryBoardIn .85s cubic-bezier(.22,1,.36,1) both;
}

@keyframes wsmDeliveryBoardIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.975);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.wsm-delivery-system-card::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
    animation: wsmDeliveryBoardSweep 1.1s ease .45s both;
    pointer-events: none;
}

@keyframes wsmDeliveryBoardSweep {
    to {
        transform: translateX(120%);
    }
}

.wsm-delivery-system-head {
    min-height: 60px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--wsm-delivery-line);
    background: #fbfdff;
}

    .wsm-delivery-system-head span,
    .wsm-delivery-system-head strong {
        text-transform: uppercase;
        letter-spacing: .11em;
        font-size: .74rem;
        font-weight: 950;
        color: #8a98aa;
    }

    .wsm-delivery-system-head strong {
        color: var(--wsm-delivery-teal-dark);
    }

.wsm-delivery-system-body {
    position: relative;
    min-height: 485px;
    background: linear-gradient(rgba(11,31,58,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.045) 1px, transparent 1px), #fff;
    background-size: 34px 34px;
    isolation: isolate;
}

    .wsm-delivery-system-body::before {
        content: "";
        position: absolute;
        inset: 12%;
        border: 1px dashed rgba(0,168,200,.30);
        border-radius: 34px;
        z-index: 0;
    }

.wsm-delivery-line-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wsm-delivery-line {
    fill: none;
    stroke: rgba(0,168,200,.45);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 640;
    stroke-dashoffset: 640;
    animation: wsmDeliveryLineDraw 1.25s cubic-bezier(.22,1,.36,1) forwards;
}

.line-a {
    animation-delay: .55s;
}

.line-b {
    animation-delay: .72s;
}

.line-c {
    animation-delay: .88s;
}

.line-d {
    animation-delay: 1.04s;
}

@keyframes wsmDeliveryLineDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.wsm-delivery-core {
    position: absolute;
    width: 245px;
    min-height: 152px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 24px;
    border-radius: 20px;
    color: #fff;
    background: var(--wsm-delivery-ink);
    box-shadow: 0 22px 56px rgba(11,31,58,.24);
    display: grid;
    place-items: center;
    text-align: center;
    z-index: 5;
    animation: wsmDeliveryCoreIn .82s cubic-bezier(.22,1,.36,1) .35s both, wsmDeliveryCoreFloat 6s ease-in-out 1.4s infinite;
}

@keyframes wsmDeliveryCoreIn {
    from {
        opacity: 0;
        transform: translate(-50%, -44%) scale(.92);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(0);
    }
}

@keyframes wsmDeliveryCoreFloat {
    0%,100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, calc(-50% - 6px));
    }
}

.wsm-delivery-core small {
    color: #9ceeff;
    font-weight: 850;
    letter-spacing: .12em;
}

.wsm-delivery-core strong {
    font-size: 1.24rem;
    line-height: 1.22;
    font-weight: 950;
}

.wsm-delivery-core span {
    color: rgba(255,255,255,.74);
    font-size: .76rem;
    font-weight: 800;
}

.wsm-delivery-node {
    position: absolute;
    width: 250px;
    min-height: 124px;
    padding: 24px 22px 20px;
    border-radius: 18px;
    border: 1px solid var(--wsm-delivery-line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 14px 36px rgba(11,31,58,.09);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    overflow: hidden;
    z-index: 4;
    opacity: 0;
    animation: wsmDeliveryNodeIn .75s cubic-bezier(.22,1,.36,1) forwards;
}

    .wsm-delivery-node:hover {
        transform: translateY(-5px);
        border-color: rgba(0,168,200,.32);
        box-shadow: 0 22px 50px rgba(11,31,58,.12);
    }

    .wsm-delivery-node i {
        position: absolute;
        left: 15px;
        top: 10px;
        color: rgba(0,168,200,.22);
        font-size: 2.9rem;
        line-height: 1;
        pointer-events: none;
    }

    .wsm-delivery-node strong {
        position: relative;
        z-index: 1;
        display: block;
        padding-top: 28px;
        margin-bottom: 6px;
        color: var(--wsm-delivery-ink);
        line-height: 1.22;
        font-weight: 950;
    }

    .wsm-delivery-node span {
        position: relative;
        z-index: 1;
        display: block;
        color: var(--wsm-delivery-muted);
        line-height: 1.45;
        font-size: .86rem;
        font-weight: 650;
    }

@keyframes wsmDeliveryNodeIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.97);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.wsm-delivery-node.node-a {
    left: 32px;
    top: 42px;
    animation-delay: .72s;
}

.wsm-delivery-node.node-b {
    right: 32px;
    top: 70px;
    animation-delay: .88s;
}

.wsm-delivery-node.node-c {
    left: 42px;
    bottom: 54px;
    animation-delay: 1.04s;
}

.wsm-delivery-node.node-d {
    right: 42px;
    bottom: 44px;
    animation-delay: 1.2s;
}

.wsm-delivery-system-foot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--wsm-delivery-line);
}

    .wsm-delivery-system-foot span {
        padding: 18px;
        border-right: 1px solid var(--wsm-delivery-line);
        color: var(--wsm-delivery-ink);
        font-size: .84rem;
        font-weight: 950;
    }

        .wsm-delivery-system-foot span:last-child {
            border-right: 0;
        }

/* CARDS */
.wsm-delivery-model-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.wsm-delivery-model-card {
    position: relative;
    min-height: 390px;
    padding: 30px 28px;
    border-radius: var(--wsm-delivery-radius);
    background: #fff;
    border: 1px solid var(--wsm-delivery-line);
    box-shadow: 0 14px 36px rgba(11,31,58,.06);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

    .wsm-delivery-model-card::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 3px;
        background: var(--wsm-delivery-teal);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .wsm-delivery-model-card:hover {
        transform: translateY(-7px);
        border-color: rgba(0,168,200,.34);
        box-shadow: 0 24px 58px rgba(11,31,58,.11);
    }

        .wsm-delivery-model-card:hover::after {
            transform: scaleX(1);
        }

    .wsm-delivery-model-card.is-featured {
        border-color: rgba(0,168,200,.42);
        background: linear-gradient(180deg, #fff, rgba(229,251,255,.35));
        box-shadow: 0 24px 62px rgba(0,168,200,.12);
    }

.wsm-delivery-icon-title {
    position: relative;
    isolation: isolate;
    min-height: 92px;
    margin-bottom: 12px;
}

    .wsm-delivery-icon-title i {
        position: absolute;
        left: -2px;
        top: -10px;
        z-index: 0;
        color: rgba(0,168,200,.18);
        font-size: clamp(3.35rem, 4.2vw, 4.7rem);
        line-height: 1;
        pointer-events: none;
    }

    .wsm-delivery-icon-title h3 {
        position: relative;
        z-index: 1;
        padding-top: 42px;
        margin: 0;
        color: var(--wsm-delivery-ink);
        font-size: clamp(1.08rem, 1vw, 1.28rem);
        line-height: 1.25;
        letter-spacing: -.025em;
        font-weight: 950;
    }

.wsm-delivery-model-card ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.wsm-delivery-model-card li {
    position: relative;
    padding-left: 24px;
    color: var(--wsm-delivery-ink-2);
    font-size: .92rem;
    line-height: 1.45;
    font-weight: 750;
}

    .wsm-delivery-model-card li::before {
        content: "\F26A";
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        top: 0;
        color: var(--wsm-delivery-teal-dark);
    }

/* FLOW */
.wsm-delivery-flow-section {
    background: linear-gradient(rgba(11,31,58,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.035) 1px, transparent 1px), radial-gradient(circle at 88% 12%, rgba(0,168,200,.075), transparent 28%), #f7f9fc;
    background-size: 46px 46px, 46px 46px, auto, auto;
}

.wsm-delivery-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

    .wsm-delivery-flow::before {
        content: "";
        position: absolute;
        left: 5%;
        right: 5%;
        top: 50%;
        height: 2px;
        background: linear-gradient(90deg, rgba(0,168,200,.08), rgba(0,168,200,.50), rgba(0,168,200,.08));
        transform: translateY(-50%);
        z-index: 0;
    }

.wsm-delivery-flow-card {
    position: relative;
    z-index: 1;
    min-height: 260px;
    padding: 30px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--wsm-delivery-line);
    box-shadow: 0 14px 36px rgba(11,31,58,.06);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .wsm-delivery-flow-card:hover {
        transform: translateY(-6px);
        border-color: rgba(0,168,200,.34);
        box-shadow: 0 24px 58px rgba(11,31,58,.11);
    }

    .wsm-delivery-flow-card i, .wsm-delivery-governance-grid i {
        width: 58px;
        height: 58px;
        display: grid;
        place-items: center;
        border-radius: 18px;
        color: var(--wsm-delivery-teal-dark);
        background: var(--wsm-delivery-teal-2);
        border: 1px solid rgba(0,168,200,.22);
        font-size: 1.35rem;
        margin-bottom: 24px;
        box-shadow: 0 14px 32px rgba(0,168,200,.12);
    }

    .wsm-delivery-flow-card h3, .wsm-delivery-governance-grid h3 {
        margin: 0 0 12px;
        color: var(--wsm-delivery-ink);
        font-size: clamp(1.18rem, 1.18vw, 1.45rem);
        font-weight: 950;
        letter-spacing: -.025em;
    }

/* FIT + GOVERNANCE */
.wsm-delivery-fit-grid, .wsm-delivery-governance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

    .wsm-delivery-fit-card, .wsm-delivery-governance-grid article {
        min-height: 220px;
        padding: 28px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid var(--wsm-delivery-line);
        box-shadow: 0 14px 36px rgba(11,31,58,.06);
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .wsm-delivery-governance-grid article {
        min-height: 240px;
    }

        .wsm-delivery-fit-card:hover, .wsm-delivery-governance-grid article:hover {
            transform: translateY(-6px);
            border-color: rgba(0,168,200,.34);
            box-shadow: 0 24px 58px rgba(11,31,58,.11);
        }

.wsm-delivery-fit-card span {
    color: var(--wsm-delivery-teal-dark);
    letter-spacing: .16em;
    font-size: .78rem;
    font-weight: 950;
}

.wsm-delivery-fit-card strong {
    display: block;
    margin: 18px 0 10px;
    color: var(--wsm-delivery-ink);
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 950;
}

.wsm-delivery-governance {
    background: #fff;
}

/* GLOBAL + CTA */
.wsm-delivery-global-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr) auto;
    gap: 28px;
    align-items: center;
    padding: clamp(30px, 4vw, 54px);
    border-radius: 30px;
    background: linear-gradient(rgba(11,31,58,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.035) 1px, transparent 1px), #fff;
    background-size: 34px 34px;
    border: 1px solid var(--wsm-delivery-line);
    box-shadow: var(--wsm-delivery-shadow);
}

    .wsm-delivery-global-card h2 {
        margin-bottom: 0;
    }

    .wsm-delivery-global-card p {
        margin: 0;
    }

.wsm-delivery-cta-section {
    background: #f7f9fc;
}

.wsm-delivery-cta-card {
    max-width: 1500px;
    margin: 0 auto;
    padding: clamp(34px, 5vw, 74px);
    text-align: center;
    border-radius: 30px;
    background: linear-gradient(rgba(11,31,58,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.035) 1px, transparent 1px), #fff;
    background-size: 34px 34px;
    border: 1px solid var(--wsm-delivery-line);
    box-shadow: var(--wsm-delivery-shadow-lg);
}

    .wsm-delivery-cta-card p {
        max-width: 860px;
        margin: 0 auto 24px;
    }

/* RESPONSIVE */
@media (min-width: 1200px) and (max-width: 1599.98px) {
    .wsm-delivery-hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(500px, .78fr);
        gap: clamp(44px, 4vw, 72px);
    }

    .wsm-delivery-system-card {
        max-width: 760px;
        margin-right: 18px;
    }

    .wsm-delivery-system-body {
        min-height: 430px;
    }

    .wsm-delivery-node {
        width: 220px;
        min-height: 118px;
        padding: 20px 18px 18px;
    }

        .wsm-delivery-node i {
            font-size: 2.45rem;
            left: 14px;
            top: 9px;
        }

        .wsm-delivery-node strong {
            padding-top: 24px;
            font-size: .98rem;
        }

        .wsm-delivery-node span {
            font-size: .80rem;
            line-height: 1.42;
        }

    .wsm-delivery-core {
        width: 205px;
        min-height: 132px;
        padding: 20px;
        border-radius: 18px;
    }

        .wsm-delivery-core strong {
            font-size: 1.06rem;
        }

        .wsm-delivery-core span {
            font-size: .70rem;
        }

    .wsm-delivery-node.node-a {
        left: 28px;
        top: 38px;
    }

    .wsm-delivery-node.node-b {
        right: 28px;
        top: 58px;
    }

    .wsm-delivery-node.node-c {
        left: 34px;
        bottom: 48px;
    }

    .wsm-delivery-node.node-d {
        right: 34px;
        bottom: 42px;
    }

    .wsm-delivery-model-grid, .wsm-delivery-fit-grid, .wsm-delivery-governance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wsm-delivery-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .wsm-delivery-hero-grid, .wsm-delivery-split-head {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .wsm-delivery-system-card {
        width: 100%;
        max-width: 820px;
        margin: 30px auto 0;
        border-radius: 24px;
        overflow: hidden;
    }

    .wsm-delivery-system-body {
        position: relative;
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        padding: 24px;
        align-items: stretch;
    }

        .wsm-delivery-system-body::before, .wsm-delivery-line-svg {
            display: none;
        }

    .wsm-delivery-core {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        inset: auto;
        transform: none;
        width: 100%;
        max-width: 440px;
        min-height: 145px;
        margin: 0 auto 10px;
        grid-column: 1 / -1;
        order: 1;
        z-index: 2;
        animation: none;
    }

    .wsm-delivery-node, .wsm-delivery-node.node-a, .wsm-delivery-node.node-b, .wsm-delivery-node.node-c, .wsm-delivery-node.node-d {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        inset: auto;
        transform: none;
        width: 100%;
        min-height: 128px;
        z-index: 1;
        opacity: 1;
        animation: none;
    }

        .wsm-delivery-node.node-a {
            order: 2;
        }

        .wsm-delivery-node.node-b {
            order: 3;
        }

        .wsm-delivery-node.node-c {
            order: 4;
        }

        .wsm-delivery-node.node-d {
            order: 5;
        }

    .wsm-delivery-model-grid, .wsm-delivery-flow, .wsm-delivery-fit-grid, .wsm-delivery-governance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .wsm-delivery-flow::before {
            display: none;
        }

    .wsm-delivery-global-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .wsm-delivery-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .wsm-delivery-hero {
        padding-top: 48px;
        padding-bottom: 60px;
    }

    .wsm-delivery-hero-copy h1 {
        font-size: clamp(2.35rem, 10vw, 3.45rem);
        line-height: 1.02;
        letter-spacing: -.055em;
    }

    .wsm-delivery-hero-copy p {
        font-size: 1rem;
        line-height: 1.72;
    }

    .wsm-delivery-hero-actions .wsm-btn {
        width: 100%;
    }

    .wsm-delivery-proof-strip span {
        width: 100%;
        justify-content: center;
    }

    .wsm-delivery-system-card {
        max-width: 100%;
        margin-top: 26px;
        border-radius: 22px;
    }

    .wsm-delivery-system-head {
        min-height: auto;
        padding: 16px 18px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        align-items: start;
    }

        .wsm-delivery-system-head span, .wsm-delivery-system-head strong {
            white-space: normal;
            line-height: 1.35;
        }

    .wsm-delivery-system-body {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .wsm-delivery-core {
        max-width: 100%;
        min-height: 132px;
        margin: 0;
    }

    .wsm-delivery-node {
        min-height: 120px;
    }

    .wsm-delivery-system-foot {
        grid-template-columns: 1fr;
    }

        .wsm-delivery-system-foot span {
            border-right: 0;
            border-bottom: 1px solid var(--wsm-delivery-line);
        }

            .wsm-delivery-system-foot span:last-child {
                border-bottom: 0;
            }

    .wsm-delivery-model-grid, .wsm-delivery-flow, .wsm-delivery-fit-grid, .wsm-delivery-governance-grid {
        grid-template-columns: 1fr;
    }

        .wsm-delivery-model-card, .wsm-delivery-flow-card, .wsm-delivery-fit-card, .wsm-delivery-governance-grid article {
            min-height: auto;
            padding: 24px 22px;
        }

    .wsm-delivery-global-card, .wsm-delivery-cta-card {
        border-radius: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wsm-delivery-system-card, .wsm-delivery-system-card::after, .wsm-delivery-core, .wsm-delivery-node, .wsm-delivery-line {
        animation: none !important;
        transition-duration: .001ms !important;
    }

    .wsm-delivery-node, .wsm-delivery-system-card, .wsm-delivery-core {
        opacity: 1 !important;
        filter: none !important;
    }
}
