
    :root {
        --bg: #ffffff;
        --ink: #0B0B0B;
        --muted: #6B6B6B;
        --badge-how: #141414;
        --mint: #EAF7F2;
        --divider: #E6E6E6;
        --container: 1180px;
    }

    /* Reset (minimal) */
    *,
    *::before,
    *::after {
        box-sizing: border-box
    }

    html,
    body {
        height: 100%
    }

    body {
        margin: 0;
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
        color: var(--ink);
        background: var(--bg);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    img {
        display: block;
        max-width: 100%;
        height: auto
    }

    .section-how {
        background-color: #fff;
        padding: 72px 104px;
    }

    .container {
        max-width: 1240px;
        margin: 0 auto;
    }

    /* Header row */
    .hiw-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 40px;
    }

    .hiw-title {
        margin: 0;
        font-weight: 400;
        font-size: 40px;
        line-height: 120%;
        font-family: "Replica-LL", sans-serif;
    }

    .cta {
        appearance: none;
        border: 0;
        background: #111;
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        line-height: 160%;
        padding: 12px 40px;
        border-radius: 3px;
        cursor: pointer;
        white-space: nowrap;
        font-family: "Roboto", sans-serif;
    }

    .cta:hover {
        opacity: .9
    }

    .cta:active {
        opacity: .85
    }

    /* Steps */
    .steps {
        list-style: none;
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        padding: 0;
        margin: 0;
        position: relative;
    }

    /* dotted connector */
    .steps::before {
        content: "";
        position: absolute;
        left: 107px;
        right: 107px;
        top: 128px;
        /* aligns with badge-hows under art */
        border-top: 2px dotted #111;
        z-index: 0;
    }

    .step {
        text-align: center;
        position: relative;
        padding: 0 8px;
        display: block;
    }

    .art {
        width: 96px;
        height: 96px;
        margin: 0 auto 18px;
        position: relative;
        z-index: 1;
    }

    .art .bg {
        position: absolute;
        inset: 0;
        background: var(--mint);
        border-radius: 50%;
        transform: translate(6px, 6px);
        /* subtle offset like the reference */
    }

    .art img {
        position: relative;
        width: 96px;
        height: 96px;
        border-radius: 50%;
        object-fit: cover;
        z-index: 1;
        box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
    }

    .badge-how {
        display: inline-block;
        padding: 2px 16px;
        background: var(--badge-how);
        color: #fff;
        font-size: 14px;
        line-height: 160%;
        letter-spacing: .08em;
        border-radius: 999px;
        margin-bottom: 0px;
        position: relative;
        z-index: 2;
        font-weight: 500;
        font-family: "Roboto", sans-serif;
    }

    .step-title {
        margin: 12px;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 0%;
        line-height: 120%;
        font-family: "Replica-Regular", sans-serif;
    }

    .step-desc {
        margin: 0 auto;
        font-size: 14px;
        line-height: 160%;
        font-weight: 400;
        color: #111111;
    }

    @media (min-width: 325px) and (max-width: 767px) {
        #how-slider-social .splide__pagination li button.is-active {
            background: #111 !important;
            width: 85px;
            height: 5px;
            opacity: 1;
        }
        #how-slider-social .splide__pagination li button {
            width: 85px;
            height: 5px;
            opacity: 0.2;
        }
        #how-slider-social .splide__pagination {
            flex-wrap: nowrap;
            left: 40%;
            gap:50px;
            opacity: 1;
        }
        #how-slider-social .splide__pagination li {
            margin: 0px 20px;
        }

        .mobile-view-steps {
            display: flex !important;
            margin-bottom: 10px;
        }
        .mobile-view-steps .step {
            margin-bottom: 15px;
        }
        .cta {
            display: none;
        }

        .hiw-head {
            align-items: center !important;
            display: block;
        }
    }

    /* Responsive */
    @media (max-width:1080px) {
        .steps {
            gap: 24px
        }
    }

    @media (max-width:900px) {
        .mobile-view-step {
            grid-template-columns: unset !important;
            padding-bottom: 25px;
        }

        .steps::before {
            display: none
        }

        .hiw-head {
            align-items: start;
            flex-direction: row;
            gap: 12px
        }
    }

    @media (max-width:520px) {
        .section-how {
            padding: 32px 16px 56px
        }

        .hiw-title {
            font-size: 24px
        }

        .art {
            width: 88px;
            height: 88px
        }

        .art img {
            width: 88px;
            height: 88px
        }
    }
    @media (min-width: 768px) and (max-width: 1024px) { 
        .hiw-head {
            align-items: start;
            flex-direction: row;
            gap: 12px
        }
        .section-how {
            padding: 32px 16px;
        }
    }