/* =====================================================================
   ENTRAX — HOME PAGE
   home.css
   ===================================================================== */


/* =====================================================================
   GLOBAL / HOME FOUNDATION
   ===================================================================== */


/* ---------------------------------------------------------------------
   HOME — GLOBAL
   --------------------------------------------------------------------- */

.home-page {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #092943;
}

.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

.home-main {
    width: 100%;
    overflow-x: hidden;
}

.home-section__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}


/* ---------------------------------------------------------------------
   HOME — SHARED SECTION ELEMENTS
   --------------------------------------------------------------------- */

.section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-heading__eyebrow {
    color: #f15a29;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-heading__line {
    width: 28px;
    height: 1px;
    background: #f15a29;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    min-width: 205px;
    padding: 15px 18px;

    background: #f15a29;
    color: #ffffff;

    text-decoration: none;

    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.home-button:hover {
    background: #d94e22;
    transform: translateY(-2px);
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    color: #092943;
    text-decoration: none;

    font-family: var(--font-body);
    font-weight: 700;
}


/* =====================================================================
   ███████████████████████████████████████████████████████████████████
   
                         DESKTOP STYLES
   
   ███████████████████████████████████████████████████████████████████
   ===================================================================== */


/* =====================================================================
   DESKTOP — 01 HERO
   ===================================================================== */

.home-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #092943;
}


/* ---------------------------------------------------------------------
   DESKTOP — HERO SLIDER
   --------------------------------------------------------------------- */

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1.8s ease-in-out,
        visibility 1.8s ease-in-out;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* ---------------------------------------------------------------------
   DESKTOP — HERO DARK OVERLAY
   --------------------------------------------------------------------- */

.hero-slider::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 26, 45, 0.62) 0%,
            rgba(4, 26, 45, 0.30) 38%,
            rgba(4, 26, 45, 0.05) 70%,
            rgba(4, 26, 45, 0.15) 100%
        );

    pointer-events: none;
}


/* ---------------------------------------------------------------------
   DESKTOP — HERO CONTENT
   --------------------------------------------------------------------- */

.hero-content {
    position: relative;
    z-index: 5;

    width: 100%;
    height: 100%;

    padding: 55px 68px;

    display: flex;
    justify-content: space-between;
}

.hero-content__left {
    max-width: 520px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 12px;
}

.hero-eyebrow__text {
    color: #ffffff;

    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.3px;
}

.hero-eyebrow__line {
    width: 30px;
    height: 1px;
    background: #ffffff;
}


.hero-title {
    margin: 0;

    display: flex;
    flex-direction: column;

    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;

    line-height: 0.96;
    letter-spacing: -1px;
}

.hero-title__white {
    color: #ffffff;
}

.hero-title__orange {
    color: #f15a29;
}


.hero-description {
    max-width: 370px;

    margin-top: 20px;
    margin-bottom: 0;

    color: #ffffff;

    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.35;
}


/* ---------------------------------------------------------------------
   DESKTOP — HERO RIGHT TEXT
   --------------------------------------------------------------------- */

.hero-content__right {
    align-self: flex-start;

    margin-top: 5px;
    margin-right: 10px;

    min-width: 120px;
}

.hero-slide-copy {
    display: none;

    flex-direction: column;

    color: #ffffff;

    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.45;
}

.hero-slide-copy.is-active {
    display: flex;
}

.hero-slide-copy::before {
    content: "";

    width: 30px;
    height: 2px;

    margin-bottom: 12px;

    background: #f15a29;
}


/* ---------------------------------------------------------------------
   DESKTOP — HERO CONTROLS
   --------------------------------------------------------------------- */

.hero-controls {
    position: absolute;

    z-index: 10;

    right: 65px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-counter {
    color: #ffffff;

    font-family: var(--font-body);
    font-size: 14px;
}

.hero-counter__current {
    font-weight: 700;
}

.hero-counter__separator {
    margin: 0 3px;
}

.hero-progress {
    width: 90px;
    height: 1px;

    background: rgba(255, 255, 255, 0.5);
}

.hero-progress__line {
    display: block;

    width: 33.333%;
    height: 2px;

    background: #f15a29;

    transition: width 0.5s ease;
}

.hero-navigation {
    display: flex;
    gap: 8px;
}

.hero-navigation__button {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.8);

    background: rgba(0, 0, 0, 0.08);

    color: #ffffff;

    cursor: pointer;

    font-size: 20px;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.hero-navigation__button:hover {
    background: rgba(241, 90, 41, 0.9);
    border-color: #f15a29;
}


/* =====================================================================
   DESKTOP — 02 BUILT ON EXPERTISE
   ===================================================================== */
        .built-expertise {
            width: 100%;
            background: #ffffff;
            border-top: 1px solid #e3e8ec;
            border-bottom: 1px solid #e3e8ec;
        }

        .built-expertise__container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;

            display: grid;
            grid-template-columns: 34% 66%;

            min-height: 150px;
        }


        /* LEFT INTRO */

        .built-expertise__intro {
            padding: 24px 42px 24px 50px;

            display: flex;
            flex-direction: column;
            justify-content: center;

            border-right: 1px solid #e1e6ea;
        }

        .built-expertise__title-row {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .built-expertise__title-row h2 {
            margin: 0;

            font-family: var(--font-heading);
            font-size: 30px;
            font-weight: 700;
            line-height: 1;

            color: #092b46;
            white-space: nowrap;
        }



        .built-expertise__orange-line {
            display: block;

            width: 42px;
            height: 3px;

            margin-top: 13px;
            margin-bottom: 12px;

            background: #f15a29;
        }

        .built-expertise__intro p {
            max-width: 470px;

            margin: 0;

            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.4;

            color: #173753;
        }


        /* RIGHT CAPABILITIES */

        .built-expertise__capabilities {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }


        .expertise-card {
            min-width: 0;

            display: flex;
            align-items: flex-start;

            padding: 24px 28px;

            gap: 20px;
        }

        .expertise-card + .expertise-card {
            border-left: 1px solid #e1e6ea;
        }


        /* ICON */

        .expertise-card__icon {
            width: 54px;
            min-width: 54px;
            height: 54px;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        .expertise-card__icon svg {
            width: 54px;
            height: 54px;

            fill: none;
            stroke: #f15a29;

            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }


        /* CARD CONTENT */

        .expertise-card__content {
            min-width: 0;
        }

        .expertise-card__content h3 {
            margin: 2px 0 10px;

            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            line-height: 1.05;

            color: #092b46;
        }

        .expertise-card__content p {
            margin: 0;

            font-family: var(--font-body);
            font-size: 14px;
            line-height: 1.35;

            color: #173753;
        }


/* =====================================================================
   DESKTOP — 03 OUR SERVICES
   ===================================================================== */
        .home-services {
            width: 100%;
            background: #ffffff;
            border-top: 1px solid #d9e0e5;
            border-bottom: 1px solid #d9e0e5;
        }

            /* Update container max-width and grid definition */
            .home-services__container {
                width: 100%;
                max-width: 1800px; /* Increased to give ultrawide screens proper breathing room */
                margin: 0 auto;
                display: grid;
                /* Changed fixed % columns to a minmax-constrained layout */
                grid-template-columns: minmax(320px, 30%) minmax(0, 1fr);
                padding: 0 50px;
            }


        /* ================================================================
        OUR SERVICES — DESKTOP — INTRO
        ================================================================ */

        .home-services__intro {
            padding: 55px 45px 55px 0;
            border-right: 1px solid #d9e0e5;

            display: flex;
            flex-direction: column;

            min-width: 0;
        }


        /* Eyebrow */

        .home-services__eyebrow {
            display: flex;
            align-items: center;
            gap: 20px;

            margin-bottom: 25px;

            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.5px;

            color: #f4511e;
        }

        .home-services__eyebrow-line {
            width: 35px;
            height: 2px;
            background: #f4511e;
        }


            /* Main title */
            .home-services__title {
                margin: 0;
                font-family: var(--font-heading);
                font-size: clamp(34px, 2.8vw, 52px);
                /* Increased line-height prevents descending letters (g, p, y) from getting clipped */
                line-height: 1.15; 
                font-weight: 700;
                letter-spacing: -0.5px;
                width: 100%;
                word-break: break-word;
                color: #092b46;
                padding-bottom: 4px; /* Gives room for descenders */
            }

        .home-services__title span {
            color: #f4511e;
        }


        /* Orange separator */

        .home-services__title-line {
            width: 38px;
            height: 2px;

            background: #f4511e;

            margin: 28px 0 18px;
        }


        /* Description */

        .home-services__description {
            max-width: 360px;

            margin: 0;

            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.45;

            color: #153957;
        }


        


        /* ================================================================
        OUR SERVICES — DESKTOP — BUTTON
        ================================================================ */

        .home-services__button {
            margin-top: 40px;

            width: 100%;
            max-width: 280px;
            min-height: 54px;

            padding: 0 22px;

            display: flex;
            align-items: center;
            justify-content: space-between;

            background: #092b46;
            color: #ffffff;

            text-decoration: none;

            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 600;

            transition:
                background 0.3s ease,
                transform 0.3s ease;
        }

        .home-services__button:hover {
            background: #f4511e;
        }

        .home-services__button-arrow {
            color: #f4511e;
            font-size: 28px;
            line-height: 1;

            transition: transform 0.3s ease;
        }

        .home-services__button:hover .home-services__button-arrow {
            color: #ffffff;
            transform: translateX(5px);
        }


        /* ================================================================
        OUR SERVICES — DESKTOP — GRID
        ================================================================ */

            /* Allow grid rows to expand automatically if text content scales up */
            .home-services__grid {
                padding: 35px 0 35px 35px;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                /* Replaced fixed pixel row heights with minmax dynamic heights */
                grid-template-rows: 
                    minmax(330px, auto) 
                    minmax(300px, auto) 
                    minmax(330px, auto);
                gap: 16px;
                min-width: 0;
            }


        /* ================================================================
        OUR SERVICES — DESKTOP — CARD
        ================================================================ */

        .service-card {
            position: relative;

            min-width: 0;
            min-height: 0;

            overflow: hidden;

            background: #e9eef2;
        }


            .service-card__image {
                position: absolute;
                inset: 0;

                display: block;

                width: 100%;
                height: 100%;

                object-fit: cover;
                object-position: center;

                z-index: 0;

                transition: transform 0.7s ease;
            }

            .service-card:hover .service-card__image {
                transform: scale(1.03);
            }


        /* Card overlay */

        .service-card__overlay {
            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    90deg,
                    rgba(3, 31, 52, 0.88) 0%,
                    rgba(3, 31, 52, 0.55) 42%,
                    rgba(3, 31, 52, 0.08) 100%
                );

            z-index: 1;
        }


        /* Card content */

        .service-card__content {
            position: relative;

            z-index: 2;

            height: 100%;
            box-sizing: border-box;
            padding: 26px 34px;

            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .service-card__number {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 600;

            color: #ffffff;
        }

        .service-card__line,
        .service-card__small-line {
            width: 32px;
            height: 2px;

            background: #f4511e;
        }

        .service-card__line {
            margin: 12px 0 18px;
        }

        .service-card__small-line {
            margin: 12px 0;
        }

        .service-card__title {
            margin: 0 0 10px;

            font-family: var(--font-heading);
            font-size: 29px;
            line-height: 0.98;
            font-weight: 600;

            color: #ffffff;
        }

        .service-card__description {
            max-width: 320px;

            margin: 0;

            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.35;
            color: #ffffff;
        }

                    /* small fix for CARD 03 DESCRIPTION SPACING  */
                    .service-card--03 .service-card__description {
                        margin-top: 10px;
                    }

                /* ================================================================
                OUR SERVICES — DESKTOP — CARD 03 NUMBER LINE
                ================================================================ */

                .service-card--03 .service-card__line {
                    display: block;
                    width: 32px;
                    height: 2px;
                    flex: 0 0 2px;
                    margin: 12px 0 18px;
                    background: #f15a29;
                }


        .service-card__link {
            margin-top: auto;

            display: flex;
            align-items: center;
            gap: 20px;

            color: #ffffff;

            text-decoration: none;

            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
        }

        .service-card__link span:last-child {
            color: #f4511e;
            font-size: 27px;

            transition: transform 0.3s ease;
        }

        .service-card__link:hover span:last-child {
            transform: translateX(5px);
        }



        /* ================================================================
        OUR SERVICES — DESKTOP — CARD POSITIONS
        ================================================================ */

        .service-card--01 {
            grid-column: 1;
            grid-row: 1;
        }

        .service-card--02 {
            grid-column: 2;
            grid-row: 1;
        }

        .service-card--03 {
            grid-column: 1 / 3;
            grid-row: 2;
        }

        .service-card--04 {
            grid-column: 1;
            grid-row: 3;
        }

        .service-card--05 {
            grid-column: 2;
            grid-row: 3;
        }


        /* ================================================================
        OUR SERVICES — DESKTOP — LIGHT CARD VARIATIONS
        ================================================================ */

        /*
        Cards 02 and 03 in the mockup have a much lighter visual area.
        We keep the image visible and use a softer overlay.
        */

        .service-card--02 .service-card__overlay,
        .service-card--03 .service-card__overlay {
            background:
                linear-gradient(
                    90deg,
                    rgba(242, 246, 248, 0.96) 0%,
                    rgba(242, 246, 248, 0.60) 52%,
                    rgba(242, 246, 248, 0.08) 100%
                );
        }

        .service-card--02 .service-card__number,
        .service-card--02 .service-card__title,
        .service-card--02 .service-card__description,
        .service-card--02 .service-card__link,
        .service-card--03 .service-card__number,
        .service-card--03 .service-card__title,
        .service-card--03 .service-card__description,
        .service-card--03 .service-card__link {
            color: #092b46;
        }





/* =====================================================================
   DESKTOP — 04 OUR APPROACH
   ===================================================================== */

/* ------------------------------------------------------------------------
   OUR APPROACH — DESKTOP — SECTION
   ------------------------------------------------------------------------ */

.home-approach {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #d9e0e5;
    border-bottom: 1px solid #d9e0e5;
}


/* ------------------------------------------------------------------------
   OUR APPROACH — DESKTOP — CONTAINER
   ------------------------------------------------------------------------ */

.home-approach__container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;

    padding: 0 2.5%;

    display: grid;
    grid-template-columns: 26% 74%;
}


/* ------------------------------------------------------------------------
   OUR APPROACH — DESKTOP — INTRO
   ------------------------------------------------------------------------ */

.home-approach__intro {
    padding: 40px 45px 40px 0;

    border-right: 1px solid #d9e0e5;
}


.home-approach__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 12px;

    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;

    color: #f4511e;
}


.home-approach__eyebrow-line {
    display: block;

    width: 30px;
    height: 2px;

    background: #f4511e;
}


.home-approach__title {
    margin: 0;

    max-width: 330px;

    font-family: var(--font-heading);
    font-size: clamp(32px, 2.3vw, 46px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.5px;

    color: #092b46;
}


.home-approach__description {
    max-width: 300px;

    margin: 20px 0 0;

    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.45;

    color: #092b46;
}


.home-approach__link {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 20px;

    text-decoration: none;

    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;

    color: #092b46;
}


.home-approach__link-arrow {
    font-size: 22px;
    line-height: 1;

    color: #f4511e;

    transition: transform 0.3s ease;
}


.home-approach__link:hover
.home-approach__link-arrow {
    transform: translateX(5px);
}


/* ------------------------------------------------------------------------
   OUR APPROACH — DESKTOP — PROCESS
   ------------------------------------------------------------------------ */

.home-approach__process {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    /*
       IMPORTANT:
       Vertically center every step and every arrow
       within the available process area.
    */
    align-items: center;

    min-width: 0;

    padding: 25px 0 25px 35px;
}


/* ------------------------------------------------------------------------
   OUR APPROACH — DESKTOP — STEP
   ------------------------------------------------------------------------ */

.home-approach__step {
    min-width: 0;

    /*
       No artificial top offset.
       The grid itself handles vertical centering.
    */
    padding: 0 18px;
}


.home-approach__step:first-child {
    padding-left: 0;
}


.home-approach__step:last-child {
    padding-right: 0;
}


/* ------------------------------------------------------------------------
   OUR APPROACH — DESKTOP — STEP TOP
   ------------------------------------------------------------------------ */

.home-approach__step-top {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 12px;
}


.home-approach__icon {
    width: 48px;
    min-width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f4511e;
}


.home-approach__icon svg {
    width: 48px;
    height: 48px;

    display: block;
}


.home-approach__step-number {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1;
    font-weight: 600;

    color: #092b46;
}


/* ------------------------------------------------------------------------
   OUR APPROACH — DESKTOP — STEP CONTENT
   ------------------------------------------------------------------------ */

.home-approach__step-content h3 {
    margin: 0 0 9px;

    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1;
    font-weight: 600;

    color: #092b46;
}


.home-approach__step-content p {
    margin: 0;

    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.4;

    color: #092b46;
}


/* ------------------------------------------------------------------------
   OUR APPROACH — DESKTOP — ARROWS
   ------------------------------------------------------------------------ */

.home-approach__arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    align-self: center;

    padding: 0 4px;

    font-family: var(--font-primary);
    font-size: 25px;
    line-height: 1;

    color: #6b879e;
}


/* =====================================================================
   DESKTOP — 05 WHY ENTRAX
   ===================================================================== */

        .home-why {
            width: 100%;

            padding: 0;

            border-bottom: 1px solid #dce2e7;
        }


        .home-why__container {
            width: 100%;

            display: grid;

            grid-template-columns: 24% 76%;

            min-height: 245px;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — DESKTOP — INTRO
        ------------------------------------------------------------------------ */

        .home-why__intro {
            position: relative;

            overflow: hidden;

            min-height: 245px;

            padding: 20px 35px;

            border-right: 1px solid #dce2e7;

            background: #ffffff;
        }


        .home-why__intro-content {
            position: relative;

            z-index: 2;
        }


        .home-why__eyebrow {
            display: flex;

            align-items: center;

            gap: 14px;

            margin-bottom: 12px;

            color: #f4511e;

            font-family: var(--font-heading);

            font-size: 15px;

            font-weight: 600;

            letter-spacing: 0.5px;
        }


        .home-why__eyebrow-line {
            width: 28px;

            height: 2px;

            background: #f4511e;
        }


        .home-why__intro h2 {
            max-width: 235px;

            margin: 0;

            color: #092b46;

            font-family: var(--font-heading);

            font-size: clamp(38px, 3vw, 52px);

            font-weight: 700;

            line-height: 0.92;

            letter-spacing: -0.5px;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — DESKTOP — BLUEPRINT
        ------------------------------------------------------------------------ */

        .home-why__blueprint {
            position: absolute;

            right: -15px;
            bottom: 0;

            width: 70%;

            height: 100%;

            z-index: 1;

            pointer-events: none;
        }


        .home-why__blueprint img {
            width: 100%;
            height: 100%;

            object-fit: cover;

            object-position: center bottom;

            opacity: 0.55;

            -webkit-mask-image:
                linear-gradient(
                    to right,
                    transparent 0%,
                    rgba(0, 0, 0, 0.35) 20%,
                    #000000 55%
                );

            mask-image:
                linear-gradient(
                    to right,
                    transparent 0%,
                    rgba(0, 0, 0, 0.35) 20%,
                    #000000 55%
                );
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — DESKTOP — VALUES CONTAINER
        ------------------------------------------------------------------------ */

        .home-why__values {
            display: grid;

            grid-template-columns: repeat(4, 1fr);

            min-width: 0;
            height: 100%;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — DESKTOP — VALUE ITEM
        ------------------------------------------------------------------------ */

        .home-why__item {
            min-width: 0;

            padding: 20px 28px;

            display: flex;
            flex-direction: column;
            justify-content: center;

            border-right: 1px solid #dce2e7;
        }


        .home-why__item:last-child {
            border-right: 0;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — DESKTOP — ICON
        ------------------------------------------------------------------------ */

        .home-why__icon {
            width: 48px;
            height: 48px;

            margin-bottom: 8px;

            color: #f4511e;
        }


        .home-why__icon svg {
            width: 100%;
            height: 100%;

            fill: none;

            stroke: currentColor;

            stroke-width: 2;

            stroke-linecap: round;

            stroke-linejoin: round;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — DESKTOP — VALUE TITLE
        ------------------------------------------------------------------------ */

        .home-why__item h3 {
            margin: 0 0 10px;

            color: #092b46;

            font-family: var(--font-heading);

            font-size: 17px;

            font-weight: 600;

            line-height: 1.05;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — DESKTOP — VALUE DESCRIPTION
        ------------------------------------------------------------------------ */

        .home-why__item p {
            max-width: 210px;

            margin: 0;

            color: #153957;

            font-family: var(--font-body);

            font-size: 14px;

            line-height: 1.35;
        }


/* =====================================================================
   ███████████████████████████████████████████████████████████████████
   
                         TABLET STYLES
   
   ███████████████████████████████████████████████████████████████████
   ===================================================================== */


/* =====================================================================
   TABLET — 01 HERO
   ===================================================================== */

@media (min-width: 601px) and (max-width: 1024px) {

    .home-section__container {
        padding-left: 32px;
        padding-right: 32px;
    }


    /* ---------------------------------------------------------------
       TABLET — HERO
       --------------------------------------------------------------- */

    .home-hero {
        height: 480px;
    }

    .hero-content {
        padding: 48px 45px;
    }

    .hero-content__left {
        max-width: 460px;
    }

    .hero-title {
        font-size: clamp(45px, 6vw, 62px);
    }

    .hero-description {
        max-width: 330px;
        font-size: 17px;
    }

    .hero-content__right {
        margin-right: 0;
    }

    .hero-controls {
        right: 45px;
    }


    /* ---------------------------------------------------------------
       TABLET — BUILT ON EXPERTISE
       --------------------------------------------------------------- */

                        /* ---------------------------------------------------------------
                TABLET — BUILT ON EXPERTISE — CONTAINER
                --------------------------------------------------------------- */

                .built-expertise__container {
                    width: 100%;
                    max-width: none;

                    display: block;

                    min-height: auto;
                }


                /* ---------------------------------------------------------------
                TABLET — BUILT ON EXPERTISE — INTRO
                --------------------------------------------------------------- */

                .built-expertise__intro {
                    padding: 28px 32px 26px;

                    border-right: none;
                    border-bottom: 1px solid #e1e6ea;
                }

                .built-expertise__title-row {
                    gap: 14px;
                }

                .built-expertise__title-row h2 {
                    font-size: 28px;
                    line-height: 1;
                    white-space: nowrap;
                }



                .built-expertise__orange-line {
                    width: 40px;

                    margin-top: 12px;
                    margin-bottom: 14px;
                }

                .built-expertise__intro p {
                    max-width: 720px;

                    font-size: 15px;
                    line-height: 1.4;
                }


                /* ---------------------------------------------------------------
                TABLET — BUILT ON EXPERTISE — CAPABILITIES
                --------------------------------------------------------------- */

                .built-expertise__capabilities {
                    display: grid;

                    grid-template-columns: repeat(3, minmax(0, 1fr));

                    width: 100%;
                }


                /* ---------------------------------------------------------------
                TABLET — BUILT ON EXPERTISE — CARD
                --------------------------------------------------------------- */

                .expertise-card {
                    min-width: 0;

                    padding: 24px 20px;

                    display: flex;
                    align-items: flex-start;

                    gap: 14px;
                }


                /* Vertical separators */

                .expertise-card + .expertise-card {
                    border-left: 1px solid #e1e6ea;
                }


                /* Remove unwanted top borders */

                .expertise-card:nth-child(n) {
                    border-top: none;
                }


                /* ---------------------------------------------------------------
                TABLET — BUILT ON EXPERTISE — ICON
                --------------------------------------------------------------- */

                .expertise-card__icon {
                    width: 46px;
                    min-width: 46px;
                    height: 46px;
                }

                .expertise-card__icon svg {
                    width: 46px;
                    height: 46px;
                }


                /* ---------------------------------------------------------------
                TABLET — BUILT ON EXPERTISE — TEXT
                --------------------------------------------------------------- */

                .expertise-card__content {
                    min-width: 0;
                }

                .expertise-card__content h3 {
                    margin: 1px 0 8px;

                    font-size: 16px;
                    line-height: 1.05;
                }

                .expertise-card__content p {
                    margin: 0;

                    font-size: 13px;
                    line-height: 1.35;
                }

    /* ---------------------------------------------------------------
       TABLET — OUR SERVICES
       --------------------------------------------------------------- */

                .home-services {
                    width: 100%;
                }

                .home-services__container {
                    grid-template-columns: 100%;
                    padding: 0 30px;
                }


                /* ============================================================
                OUR SERVICES — TABLET — INTRO
                ============================================================ */

                .home-services__intro {
                    padding: 45px 0 40px;

                    border-right: none;
                    border-bottom: 1px solid #d9e0e5;
                }

                .home-services__description {
                    width: 100%;
                    max-width: 900px;
                }


                /* ============================================================
                OUR SERVICES — TABLET — VALUES
                ============================================================ */

                .home-services__values {
                    display: grid;

                    grid-template-columns: repeat(3, 1fr);

                    gap: 20px;

                    margin-top: 35px;
                }

                .home-services__value {
                    align-items: flex-start;
                }

                .home-services__value-content h3 {
                    font-size: 16px;
                }

                .home-services__value-content p {
                    font-size: 14px;
                }


                /* ============================================================
                OUR SERVICES — TABLET — BUTTON
                ============================================================ */

                .home-services__button {
                    max-width: 260px;
                    margin-top: 35px;
                }


                /* ============================================================
                OUR SERVICES — TABLET — GRID
                ============================================================ */
                .home-services__grid {
                    padding: 30px 0;

                    display: grid;

                    grid-template-columns:
                        repeat(2, minmax(0, 1fr));

                    grid-template-rows:
                        280px
                        270px
                        280px;

                    gap: 12px;

                    min-width: 0;
                }


                /* ============================================================
                OUR SERVICES — TABLET — CARD
                ============================================================ */

                .service-card__content {
                    padding: 22px 22px;
                    height: 100%;
                    box-sizing: border-box;
                }

                .service-card__number {
                    font-size: 25px;
                }

                .service-card__title {
                    font-size: 24px;
                    line-height: 1;
                }

                .service-card__description {
                    max-width: 260px;
                    font-size: 14px;
                    line-height: 1.35;

                }

                        /* small fix for CARD 03 DESCRIPTION SPACING */
                        .service-card--03 .service-card__description {
                            margin-top: 8px;
                        }


                .service-card--03 .service-card__line {
                    display: block;
                    width: 32px;
                    height: 2px;
                    flex: 0 0 2px;
                    margin: 12px 0 18px;
                    background: #f4511e;
                }




                /* ============================================================
                OUR SERVICES — TABLET — CARD POSITIONS
                ============================================================ */

                .service-card--01 {
                    grid-column: 1;
                    grid-row: 1;
                }

                .service-card--02 {
                    grid-column: 2;
                    grid-row: 1;
                }

                .service-card--03 {
                    grid-column: 1 / 3;
                    grid-row: 2;
                }

                .service-card--04 {
                    grid-column: 1;
                    grid-row: 3;
                }

                .service-card--05 {
                    grid-column: 2;
                    grid-row: 3;
                }


    /* ---------------------------------------------------------------
       TABLET — OUR APPROACH
       --------------------------------------------------------------- */

            /* ------------------------------------------------------------------------
            OUR APPROACH — TABLET — SECTION
            ------------------------------------------------------------------------ */

            .home-approach {
                width: 100%;
            }


            /* ------------------------------------------------------------------------
            OUR APPROACH — TABLET — CONTAINER
            ------------------------------------------------------------------------ */

            .home-approach__container {
                grid-template-columns: 100%;

                padding: 0 30px;
            }


            /* ------------------------------------------------------------------------
            OUR APPROACH — TABLET — INTRO
            ------------------------------------------------------------------------ */

            .home-approach__intro {
                padding: 40px 0 30px;

                border-right: none;
                border-bottom: 1px solid #d9e0e5;
            }


            .home-approach__title {
                max-width: 500px;

                font-size: clamp(34px, 4vw, 44px);
            }


            .home-approach__description {
                max-width: 600px;
            }


            /* ------------------------------------------------------------------------
            OUR APPROACH — TABLET — PROCESS
            ------------------------------------------------------------------------ */

            .home-approach__process {
                grid-template-columns:
                    minmax(0, 1fr)
                    auto
                    minmax(0, 1fr)
                    auto
                    minmax(0, 1fr)
                    auto
                    minmax(0, 1fr);

                align-items: center;

                padding: 30px 0 35px;
            }


            /* ------------------------------------------------------------------------
            OUR APPROACH — TABLET — STEP
            ------------------------------------------------------------------------ */

            .home-approach__step {
                padding: 0 12px;
            }


            .home-approach__step:first-child {
                padding-left: 0;
            }


            .home-approach__step:last-child {
                padding-right: 0;
            }


            .home-approach__step-top {
                gap: 9px;
            }


            .home-approach__icon {
                width: 42px;
                min-width: 42px;
                height: 42px;
            }


            .home-approach__icon svg {
                width: 42px;
                height: 42px;
            }


            .home-approach__step-number {
                font-size: 25px;
            }


            .home-approach__step-content h3 {
                font-size: 15px;
            }


            .home-approach__step-content p {
                font-size: 11px;
                line-height: 1.4;
            }


            .home-approach__arrow {
                font-size: 21px;
                padding: 0 2px;
            }


            /* =====================================================================
            TABLET — 05 WHY ENTRAX
            ===================================================================== */

            .home-why {
                width: 100%;

                padding: 0;
            }


            /* ------------------------------------------------------------------------
            WHY ENTRAX — TABLET — CONTAINER
            ------------------------------------------------------------------------ */

            .home-why__container {
                grid-template-columns: 34% 66%;

                min-height: 220px;
            }


            /* ------------------------------------------------------------------------
            WHY ENTRAX — TABLET — INTRO
            ------------------------------------------------------------------------ */

            .home-why__intro {
                min-height: 220px;

                padding: 22px 25px;
            }


            .home-why__eyebrow {
                font-size: 14px;

                gap: 12px;

                margin-bottom: 12px;
            }


            .home-why__eyebrow-line {
                width: 25px;
            }


            .home-why__intro h2 {
                max-width: 230px;

                font-size: clamp(34px, 4vw, 44px);

                line-height: 0.93;
            }


            /* ------------------------------------------------------------------------
            WHY ENTRAX — TABLET — BLUEPRINT
            ------------------------------------------------------------------------ */

            .home-why__blueprint {
                width: 75%;

                right: -20px;
            }


            .home-why__blueprint img {
                opacity: 0.48;
            }


            /* ------------------------------------------------------------------------
            WHY ENTRAX — TABLET — VALUES
            ------------------------------------------------------------------------ */

            .home-why__values {
                grid-template-columns: repeat(2, 1fr);
                height: 100%;
            }


            /* ------------------------------------------------------------------------
            WHY ENTRAX — TABLET — VALUE ITEM
            ------------------------------------------------------------------------ */

            .home-why__item {
                padding: 20px 18px;

                min-height: 110px;

                display: flex;
                flex-direction: column;
                justify-content: center;

                border-bottom: 1px solid #dce2e7;
            }


            .home-why__item:nth-child(2) {
                border-right: 0;
            }


            .home-why__item:nth-child(3),
            .home-why__item:nth-child(4) {
                border-bottom: 0;
            }


            .home-why__item:nth-child(4) {
                border-right: 0;
            }


            /* ------------------------------------------------------------------------
            WHY ENTRAX — TABLET — ICON
            ------------------------------------------------------------------------ */

            .home-why__icon {
                width: 40px;
                height: 40px;

                margin-bottom: 6px;
            }


            /* ------------------------------------------------------------------------
            WHY ENTRAX — TABLET — TITLE
            ------------------------------------------------------------------------ */

            .home-why__item h3 {
                font-size: 15px;

                margin-bottom: 7px;
            }


            /* ------------------------------------------------------------------------
            WHY ENTRAX — TABLET — DESCRIPTION
            ------------------------------------------------------------------------ */

            .home-why__item p {
                max-width: 220px;

                font-size: 12px;

                line-height: 1.35;
            }


}


/* =====================================================================
   TABLET — SMALL
   ===================================================================== */

@media (max-width: 768px) {

    .home-section__container {
        padding-left: 24px;
        padding-right: 24px;
    }


    /* ---------------------------------------------------------------
       TABLET — HERO SMALL
       --------------------------------------------------------------- */

    .home-hero {
        height: 450px;
    }

    .hero-content {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-content__right {
        display: none;
    }

    .hero-controls {
        right: 30px;
        bottom: 20px;
    }


    /* ---------------------------------------------------------------
       TABLET — EXPERTISE
       --------------------------------------------------------------- */
        .built-expertise {
            width: 100%;
        }

        .built-expertise__container {
            width: 100%;
            max-width: none;

            display: block;

            min-height: auto;
        }


        /* ---------------------------------------------------------------
        TABLET — BUILT ON EXPERTISE — INTRO
        --------------------------------------------------------------- */

        .built-expertise__intro {
            padding: 32px 30px 28px;

            border-right: none;
            border-bottom: 1px solid #e1e6ea;
        }

        .built-expertise__title-row {
            gap: 14px;
        }

        .built-expertise__title-row h2 {
            font-size: 32px;
            line-height: 1;

            white-space: normal;
        }



        .built-expertise__orange-line {
            width: 40px;

            margin-top: 12px;
            margin-bottom: 14px;
        }

        .built-expertise__intro p {
            max-width: 720px;

            font-size: 16px;
            line-height: 1.45;
        }


        /* ---------------------------------------------------------------
        TABLET — SMALL — BUILT ON EXPERTISE — CAPABILITIES
        --------------------------------------------------------------- */

        .built-expertise__capabilities {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));

            width: 100%;
        }


            /* ---------------------------------------------------------------
            TABLET — SMALL — BUILT ON EXPERTISE — CARD
            --------------------------------------------------------------- */

            .expertise-card {
                min-width: 0;

                padding: 24px 20px 26px;

                display: flex;
                flex-direction: column;
                align-items: flex-start;

                gap: 12px;

                border-top: none;
                border-left: none;
            }


            /* Vertical separator */

            .expertise-card + .expertise-card {
                border-left: 1px solid #e1e6ea;
            }







            /* Fourth card, if added later */

            .expertise-card:nth-child(4) {
                border-top: 1px solid #e1e6ea;
            }





        /* ---------------------------------------------------------------
        TABLET — BUILT ON EXPERTISE — ICON
        --------------------------------------------------------------- */

        .expertise-card__icon {
            width: 46px;
            min-width: 46px;
            height: 46px;

            margin-bottom: 2px;
        }

        .expertise-card__icon svg {
            width: 46px;
            height: 46px;
        }


        /* ---------------------------------------------------------------
        TABLET — BUILT ON EXPERTISE — TEXT
        --------------------------------------------------------------- */

        .expertise-card__content {
            min-width: 0;
            width: 100%;
        }

        .expertise-card__content h3 {
            margin: 0 0 8px;

            font-size: 16px;
            line-height: 1.05;
        }

        .expertise-card__content p {
            margin: 0;

            font-size: 13px;
            line-height: 1.35;
        }



    /* ---------------------------------------------------------------
       TABLET — SERVICES
       --------------------------------------------------------------- */

    .home-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* ---------------------------------------------------------------
       TABLET — APPROACH
       --------------------------------------------------------------- */

    .approach-steps {
        grid-template-columns: 1fr 1fr;
    }

}


/* =====================================================================
   ███████████████████████████████████████████████████████████████████
   
                      SMARTPHONE STYLES
   
   ███████████████████████████████████████████████████████████████████
   ===================================================================== */


/* =====================================================================
   SMARTPHONE — 01 HERO
   ===================================================================== */

@media (max-width: 600px) {


    /* ---------------------------------------------------------------
       SMARTPHONE — GLOBAL
       --------------------------------------------------------------- */

    .home-section__container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* ---------------------------------------------------------------
       SMARTPHONE — HERO
       --------------------------------------------------------------- */

    .home-hero {
        height: 560px;
    }


    .hero-content {
        padding: 35px 20px;
    }


    .hero-content__left {
        max-width: 100%;
    }


    .hero-eyebrow {
        gap: 12px;
    }


    .hero-eyebrow__text {
        font-size: 13px;
    }


    .hero-title {
        font-size: clamp(42px, 13vw, 56px);
        line-height: 0.94;
    }


    .hero-description {
        max-width: 310px;

        margin-top: 22px;

        font-size: 17px;
        line-height: 1.4;
    }


    /* ---------------------------------------------------------------
       SMARTPHONE — HERO IMAGE
       --------------------------------------------------------------- */

    .hero-slide__image {
        object-position: 62% center;
    }


    /* ---------------------------------------------------------------
       SMARTPHONE — HERO CONTROLS
       --------------------------------------------------------------- */

    .hero-controls {
        right: 20px;
        bottom: 18px;

        gap: 10px;
    }

    .hero-progress {
        width: 55px;
    }

    .hero-navigation__button {
        width: 34px;
        height: 34px;
    }


    /* ---------------------------------------------------------------
       SMARTPHONE — BUILT ON EXPERTISE
       --------------------------------------------------------------- */

        .built-expertise {
            width: 100%;
        }

        .built-expertise__container {
            display: block;

            min-height: auto;
        }


        /* INTRO */

        .built-expertise__intro {
            padding: 35px 22px 28px;

            border-right: none;
            border-bottom: 1px solid #e1e6ea;
        }

        .built-expertise__title-row {
            gap: 12px;
        }

        .built-expertise__title-row h2 {
            font-size: 28px;
            white-space: normal;
        }



        .built-expertise__orange-line {
            width: 38px;

            margin-top: 12px;
            margin-bottom: 14px;
        }

        .built-expertise__intro p {
            max-width: 100%;

            font-size: 16px;
            line-height: 1.45;
        }


        /* CAPABILITIES */

        .built-expertise__capabilities {
            display: block;
        }


        .expertise-card {
            width: 100%;

            padding: 24px 22px;

            display: flex;
            flex-direction: row;
            align-items: flex-start;

            gap: 18px;
        }

        .expertise-card + .expertise-card {
            border-left: none;
            border-top: 1px solid #e1e6ea;
        }


        /* ICON */

        .expertise-card__icon {
            width: 48px;
            min-width: 48px;
            height: 48px;
        }

        .expertise-card__icon svg {
            width: 48px;
            height: 48px;
        }


        /* TEXT */

        .expertise-card__content {
            flex: 1;
            min-width: 0;
            width: auto;
        }

        .expertise-card__content h3 {
            margin-top: 0;
            margin-bottom: 8px;

            font-size: 17px;
            line-height: 1.05;
        }

        .expertise-card__content p {
            font-size: 14px;
            line-height: 1.4;
        }

    /* ---------------------------------------------------------------
       SMARTPHONE — OUR SERVICES
       --------------------------------------------------------------- */

            .home-services {
                width: 100%;
            }

            .home-services__container {
                width: 100%;

                display: block;

                padding: 0 20px;
            }


            /* ============================================================
            OUR SERVICES — SMARTPHONE — INTRO
            ============================================================ */

            .home-services__intro {
                padding: 40px 0 35px;

                border-right: none;
                border-bottom: 1px solid #d9e0e5;
            }


            /* Eyebrow */

            .home-services__eyebrow {
                font-size: 16px;

                gap: 15px;

                margin-bottom: 20px;
            }

            .home-services__eyebrow-line {
                width: 28px;
            }


            /* Title */

            .home-services__title {
                /* font-size: clamp(43px, 13vw, 58px);
                line-height: 0.92;
                letter-spacing: -0.5px; */

                font-size: clamp(28px, 7.5vw, 36px);
                line-height: 1.15;
                letter-spacing: -0.3px;
            }


            /* Description */
            .home-services__description {
                max-width: none;

                font-size: 17px;
                line-height: 1.5;
            }

                /* Hide hard breaks on mobile so text reflows naturally
                .home-services__title .title-br {
                    display: none;
                } */

                
                /* Keep the orange phrase together on smartphones */
                .home-services__title > span {
                    display: block;
                    white-space: nowrap;
                }
                


            /* ============================================================
            OUR SERVICES — SMARTPHONE — VALUES
            ============================================================ */

            .home-services__values {
                margin-top: 35px;

                display: flex;

                gap: 22px;
            }

            .home-services__value {
                gap: 15px;

                align-items: center;
            }

            .home-services__value-icon {
                width: 40px;
                height: 40px;

                flex-basis: 40px;
            }

            .home-services__value-content h3 {
                font-size: 16px;
            }

            .home-services__value-content p {
                font-size: 14px;
            }


            /* ============================================================
            OUR SERVICES — SMARTPHONE — BUTTON
            ============================================================ */

            .home-services__button {
                width: 100%;
                max-width: none;

                margin-top: 35px;
            }


            /* ============================================================
            OUR SERVICES — SMARTPHONE — GRID
            ============================================================ */

            .home-services__grid {
                padding: 25px 0 35px;

                display: flex;
                flex-direction: column;

                gap: 12px;

                width: 100%;
            }


            /* ============================================================
            OUR SERVICES — SMARTPHONE — CARD
            ============================================================ */


            .service-card {
                width: 100%;

                height: 330px;
                min-height: 330px;

                position: relative;

                overflow: hidden;
            }

            .service-card__content {
                padding: 24px 20px;
            }

            .service-card__number {
                font-size: 23px;
            }

            .service-card__title {
                font-size: 25px;
                line-height: 1;
            }

            .service-card__description {
                max-width: 75%;

                font-size: 14px;
                line-height: 1.4;
            }

                    /* small fix for CARD 03 DESCRIPTION SPACING */
                    .service-card--03 .service-card__description {
                        margin-top: 8px;
                    }




            /* ============================================================
            OUR SERVICES — SMARTPHONE — CARD IMAGE
            ============================================================ */

            .service-card__image {
                object-position: center;
            }





            /* ============================================================
            OUR SERVICES — SMARTPHONE — LIGHT CARDS
            ============================================================ */

            .service-card--02 .service-card__overlay,
            .service-card--03 .service-card__overlay {
                background:
                    linear-gradient(
                        90deg,
                        rgba(242, 246, 248, 0.96) 0%,
                        rgba(242, 246, 248, 0.60) 60%,
                        rgba(242, 246, 248, 0.10) 100%
                    );
            }

        


    /* ---------------------------------------------------------------
       SMARTPHONE — OUR APPROACH
       --------------------------------------------------------------- */


                /* ------------------------------------------------------------------------
                OUR APPROACH — SMARTPHONE — SECTION
                ------------------------------------------------------------------------ */

                .home-approach {
                    width: 100%;
                }


                /* ------------------------------------------------------------------------
                OUR APPROACH — SMARTPHONE — CONTAINER
                ------------------------------------------------------------------------ */

                .home-approach__container {
                    grid-template-columns: 100%;

                    padding: 0 22px;
                }


                /* ------------------------------------------------------------------------
                OUR APPROACH — SMARTPHONE — INTRO
                ------------------------------------------------------------------------ */

                .home-approach__intro {
                    padding: 35px 0 30px;

                    border-right: none;
                    border-bottom: 1px solid #d9e0e5;
                }


                .home-approach__eyebrow {
                    font-size: 14px;

                    margin-bottom: 13px;
                }


                .home-approach__eyebrow-line {
                    width: 26px;
                }


                .home-approach__title {
                    max-width: 100%;

                    font-size: clamp(34px, 10vw, 46px);
                    line-height: 0.95;
                }


                .home-approach__description {
                    max-width: 100%;

                    margin-top: 18px;

                    font-size: 14px;
                    line-height: 1.5;
                }


                .home-approach__link {
                    margin-top: 18px;
                }


                /* ------------------------------------------------------------------------
                OUR APPROACH — SMARTPHONE — PROCESS
                ------------------------------------------------------------------------ */

                .home-approach__process {
                    display: flex;
                    flex-direction: column;

                    padding: 30px 0 35px;
                }


                /* ------------------------------------------------------------------------
                OUR APPROACH — SMARTPHONE — STEP
                ------------------------------------------------------------------------ */

                .home-approach__step {
                    width: 100%;

                    padding: 0 0 24px;

                    display: grid;
                    grid-template-columns: 52px 1fr;
                    column-gap: 15px;
                }


                .home-approach__step:first-child,
                .home-approach__step:last-child {
                    padding-left: 0;
                    padding-right: 0;
                }


                /* ------------------------------------------------------------------------
                OUR APPROACH — SMARTPHONE — STEP TOP
                ------------------------------------------------------------------------ */

                .home-approach__step-top {
                    grid-row: 1 / span 2;

                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 6px;

                    margin: 0;
                }


                .home-approach__icon {
                    width: 44px;
                    min-width: 44px;
                    height: 44px;
                }


                .home-approach__icon svg {
                    width: 44px;
                    height: 44px;
                }


                .home-approach__step-number {
                    font-size: 24px;
                }


                /* ------------------------------------------------------------------------
                OUR APPROACH — SMARTPHONE — STEP CONTENT
                ------------------------------------------------------------------------ */

                .home-approach__step-content {
                    padding-top: 2px;
                }


                .home-approach__step-content h3 {
                    margin-bottom: 8px;

                    font-size: 18px;
                }


                .home-approach__step-content p {
                    font-size: 13px;
                    line-height: 1.45;
                }


                /* ------------------------------------------------------------------------
                OUR APPROACH — SMARTPHONE — ARROWS
                ------------------------------------------------------------------------ */

                .home-approach__arrow {
                    display: none;
                }


    /* ------------------------------------------------------------------------
    WHY ENTRAX — SMARTPHONE
    ------------------------------------------------------------------------ */

        .home-why {
            width: 100%;

            padding: 0;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — SMARTPHONE — CONTAINER
        ------------------------------------------------------------------------ */

        .home-why__container {
            display: flex;

            flex-direction: column;

            width: 100%;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — SMARTPHONE — INTRO
        ------------------------------------------------------------------------ */

        .home-why__intro {
            min-height: 300px;

            padding: 30px 20px;

            border-right: 0;

            border-bottom: 1px solid #dce2e7;
        }


        .home-why__intro h2 {
            max-width: 100%;

            font-size: clamp(38px, 11vw, 50px);

            line-height: 0.92;
        }

        .home-why__intro h2 .why-title-line {
    display: block;
}


        /* ------------------------------------------------------------------------
        WHY ENTRAX — SMARTPHONE — BLUEPRINT
        ------------------------------------------------------------------------ */

        .home-why__blueprint {
            right: -25px;

            width: 75%;

            height: 100%;
        }


        .home-why__blueprint img {
            opacity: 0.45;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — SMARTPHONE — VALUES
        ------------------------------------------------------------------------ */

        .home-why__values {
            display: flex;

            flex-direction: column;

            width: 100%;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — SMARTPHONE — VALUE ITEM
        ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------
WHY ENTRAX — SMARTPHONE — VALUE ITEM
------------------------------------------------------------------------ */

        .home-why__item {
            width: 100%;

            min-height: auto;

            padding: 24px 20px;

            display: flex;
            flex-direction: row;
            align-items: center;

            gap: 18px;

            border-right: 0;
            border-bottom: 1px solid #dce2e7;
        }


        .home-why__item:last-child {
            border-bottom: 0;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — SMARTPHONE — ICON
        ------------------------------------------------------------------------ */

        .home-why__icon {
            width: 42px;
            min-width: 42px;
            height: 42px;
            flex: 0 0 42px;
            margin-bottom: 0;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — SMARTPHONE — TITLE
        ------------------------------------------------------------------------ */

        .home-why__item h3 {
            margin: 0 0 7px;

            font-size: 18px;
            line-height: 1.1;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — SMARTPHONE — DESCRIPTION
        ------------------------------------------------------------------------ */

        .home-why__item p {
            max-width: none;
            margin: 0;
            font-size: 14px;
            line-height: 1.45;
        }


        /* ------------------------------------------------------------------------
        WHY ENTRAX — SMARTPHONE — CONTENT
        ------------------------------------------------------------------------ */

        .home-why__content {
            flex: 1;
            min-width: 0;
        }



}


/* =====================================================================
   SMARTPHONE — VERY SMALL
   ===================================================================== */

@media (max-width: 380px) {


    /* ---------------------------------------------------------------
       SMARTPHONE SMALL — HERO
       --------------------------------------------------------------- */

    .home-hero {
        height: 540px;
    }

    .hero-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        max-width: 270px;
        font-size: 16px;
    }

    .hero-controls {
        right: 18px;
    }


    /* ---------------------------------------------------------------
       SMARTPHONE SMALL — GENERAL
       --------------------------------------------------------------- */

    .home-section__container {
        padding-left: 18px;
        padding-right: 18px;
    }



    /* ------------------------------------------------------------------------
    SMARTPHONE SMALL — WHY ENTRAX
    ------------------------------------------------------------------------ */

        .home-why__intro {
            min-height: 275px;

            padding-left: 18px;
            padding-right: 18px;
        }


        .home-why__intro h2 {
            font-size: 38px;
        }
        
        .home-why__intro h2 .why-title-line {
            display: inline;
        }


        .home-why__blueprint {
            right: -35px;

            width: 78%;
        }


        .home-why__item {
            padding-left: 18px;
            padding-right: 18px;
        }

}


/* Fix for Ultrawide & 4K Displays */
@media (min-width: 1601px) {
    .home-services__container {
        padding: 0 80px;
    }

    .home-services__intro {
        padding-right: 60px;
    }

    .home-services__title {
        font-size: clamp(48px, 2.8vw, 64px);
        line-height: 1.08;
    }

    .service-card {
        min-height: 340px;
    }

    .service-card__content {
        padding: 32px 40px;
    }
}


@media (min-width: 1440px) {
    .home-services__title br {
        display: inline;
        content: ' ';
    }
}