/* =========================================================
   LUCENT SOFT
   HOME - WHY US
   REVERSE STICKY SCROLL
   LEFT  = SCROLLING PRINCIPLES
   RIGHT = STICKY MINDSET
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.home-why-us {
    position: relative;

    /*
       Sticky mate vertical overflow block na thavu joiye.
    */
    overflow: visible;

    padding: 82px 0 68px;

    color: #14213d;

    background:
        radial-gradient(
            circle at 88% 38%,
            rgba(30, 90, 168, 0.055),
            transparent 28%
        ),
        radial-gradient(
            circle at 8% 78%,
            rgba(155, 24, 52, 0.025),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f8fc 100%
        );

    isolation: isolate;
}


/* =========================================================
   BACKGROUND
========================================================= */

.home-why-us-bg {
    position: absolute;
    inset: 0;

    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}


.home-why-us-grid {
    position: absolute;
    inset: 0;

    opacity: 0.48;

    background-image:
        linear-gradient(
            rgba(16, 40, 70, 0.021) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(16, 40, 70, 0.021) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}


.home-why-us-glow {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}


.home-why-us-glow-one {
    width: 560px;
    height: 560px;

    left: -300px;
    top: 250px;

    background:
        radial-gradient(
            circle,
            rgba(30, 90, 168, 0.07),
            transparent 70%
        );
}


.home-why-us-glow-two {
    width: 500px;
    height: 500px;

    right: -300px;
    bottom: 120px;

    background:
        radial-gradient(
            circle,
            rgba(30, 90, 168, 0.05),
            transparent 70%
        );
}


.home-why-us-word {
    position: absolute;

    right: -30px;
    top: 84px;

    color:
        rgba(16, 40, 70, 0.022);

    font-size: 138px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -7px;

    white-space: nowrap;

    user-select: none;
}


/* =========================================================
   TOP
========================================================= */

.home-why-us-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-bottom: 18px;

    border-bottom:
        1px solid
        #d9e1eb;
}


.home-why-us-kicker {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #1e5aa8;

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.home-why-us-kicker > span {
    width: 22px;
    height: 2px;

    background: #9b1834;
}


.home-why-us-meta {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #8390a0;

    font-size: 8px;

    font-weight: 750;

    letter-spacing: 0.85px;
}


.home-why-us-meta i {
    display: block;

    width: 17px;
    height: 1px;

    background: #cad4df;
}


/* =========================================================
   INTRO
========================================================= */

.home-why-us-intro {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(380px, 0.96fr);

    gap: clamp(55px, 7vw, 105px);

    align-items: start;

    padding: 39px 0 42px;
}


.home-why-us-heading {
    max-width: 690px;
}


.home-why-us-heading h2 {
    margin: 0;

    color: #14213d;

    font-size:
        clamp(35px, 3.1vw, 45px);

    line-height: 1.1;

    font-weight: 730;

    letter-spacing: -1.25px;
}


.home-why-us-heading h2 span {
    display: block;

    margin-top: 4px;

    color: #1e5aa8;
}


.home-why-us-intro-copy {
    padding-left: 25px;

    border-left:
        1px solid
        #d2dce7;
}


.home-why-us-intro-copy p {
    margin: 0;

    color: #6b7889;

    font-size: 12.6px;
    line-height: 1.72;
}


.home-why-us-intro-copy p:first-child {
    margin-bottom: 10px;

    color: #30435a;

    font-size: 13.5px;

    font-weight: 520;
}


/* =========================================================
   MAIN REVERSE STICKY LAYOUT

   LEFT  = SCROLL
   RIGHT = STICKY
========================================================= */

.home-why-us-scroll-layout {
    position: relative;
    z-index: 2;

    display: grid;

    /*
       LEFT side slightly wider because
       detailed points scroll there.
    */
    grid-template-columns:
        minmax(0, 1.48fr)
        minmax(315px, 0.82fr);

    gap: clamp(58px, 6.5vw, 95px);

    /*
       CRITICAL:
       Right sticky column gets complete
       height of left scrolling content.
    */
    align-items: stretch;

    border-top:
        1px solid
        #d8e1eb;
}


/* =========================================================
   LEFT SCROLLING LIST
========================================================= */

.home-why-us-points {
    position: relative;

    min-width: 0;

    border-right:
        1px solid
        #d8e1eb;
}


.home-why-us-points::after {
    content: "";

    position: absolute;

    right: -1px;
    top: 0;
    bottom: 0;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(30, 90, 168, 0.18),
            rgba(30, 90, 168, 0.025)
        );

    pointer-events: none;
}


/* =========================================================
   PRINCIPLE ITEM
   NO MIN HEIGHT
   NO FIXED HEIGHT
========================================================= */

.home-why-us-point {
    position: relative;

    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr)
        18px;

    gap: 22px;

    align-items: center;

    /*
       IMPORTANT:
       Content driven height.
       No 190px / 215px min-height.
    */
    padding:
        25px 30px
        25px 0;

    border-bottom:
        1px solid
        #dce4ed;

    opacity: 0.43;

    transition:
        opacity 0.4s ease,
        background 0.4s ease,
        transform 0.4s
        cubic-bezier(0.22, 1, 0.36, 1);
}


.home-why-us-point::before {
    content: "";

    position: absolute;

    right: -2px;
    top: 17%;

    width: 3px;
    height: 66%;

    border-radius: 10px;

    background:
        linear-gradient(
            to bottom,
            #1e5aa8,
            #75afea
        );

    transform: scaleY(0);

    transform-origin: center;

    transition:
        transform 0.4s
        cubic-bezier(0.22, 1, 0.36, 1);
}


.home-why-us-point::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    opacity: 0;

    background:
        linear-gradient(
            270deg,
            rgba(30, 90, 168, 0.055),
            rgba(30, 90, 168, 0.018) 65%,
            transparent
        );

    transition:
        opacity 0.4s ease;
}


/* =========================================================
   ACTIVE POINT
========================================================= */

.home-why-us-point.is-active {
    opacity: 1;

    transform:
        translateX(-7px);
}


.home-why-us-point.is-active::before {
    transform:
        scaleY(1);
}


.home-why-us-point.is-active::after {
    opacity: 1;
}


/* =========================================================
   POINT NUMBER
========================================================= */

.home-why-us-point-number {
    align-self: start;

    padding-top: 2px;

    color: #9aa7b7;

    font-size: 9px;

    font-weight: 800;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


.home-why-us-point.is-active
.home-why-us-point-number {
    color: #1e5aa8;

    transform:
        translateY(-2px);
}


/* =========================================================
   POINT CONTENT
========================================================= */

.home-why-us-point-content {
    min-width: 0;
}


.home-why-us-point-label {
    display: block;

    margin-bottom: 6px;

    color:
        rgba(30, 90, 168, 0.60);

    font-size: 7.5px;

    font-weight: 800;

    letter-spacing: 0.9px;

    transition:
        color 0.35s ease;
}


.home-why-us-point.is-active
.home-why-us-point-label {
    color: #1e5aa8;
}


.home-why-us-point-content h3 {
    max-width: 600px;

    margin: 0;

    color: #526074;

    font-size: 17px;
    line-height: 1.34;

    font-weight: 660;

    letter-spacing: -0.25px;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


.home-why-us-point.is-active
.home-why-us-point-content h3 {
    color: #17263d;

    transform:
        translateX(-2px);
}


.home-why-us-point-content p {
    max-width: 670px;

    margin: 8px 0 0;

    color: #8a95a3;

    font-size: 11px;
    line-height: 1.64;

    transition:
        color 0.35s ease;
}


.home-why-us-point.is-active
.home-why-us-point-content p {
    color: #637185;
}


/* =========================================================
   POINT MARKER
========================================================= */

.home-why-us-point-marker {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;
}


.home-why-us-point-marker > span {
    display: block;

    width: 5px;
    height: 5px;

    border:
        1px solid
        rgba(30, 90, 168, 0.34);

    border-radius: 50%;

    background: transparent;

    transition:
        width 0.35s ease,
        height 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.home-why-us-point.is-active
.home-why-us-point-marker > span {
    width: 8px;
    height: 8px;

    border-color: #1e5aa8;

    background: #1e5aa8;

    box-shadow:
        0 0 0 4px
        rgba(30, 90, 168, 0.08),
        0 0 18px
        rgba(30, 90, 168, 0.16);
}


/* =========================================================
   POINT HOVER
========================================================= */

@media (hover: hover) {

    .home-why-us-point:hover {
        opacity: 0.78;

        background:
            linear-gradient(
                270deg,
                rgba(30, 90, 168, 0.035),
                transparent 75%
            );
    }


    .home-why-us-point.is-active:hover {
        opacity: 1;
    }

}


/* =========================================================
   RIGHT FULL HEIGHT COLUMN
========================================================= */

.home-why-us-sticky {
    position: relative;

    min-width: 0;

    align-self: stretch;
}


/* =========================================================
   RIGHT ACTUAL STICKY PANEL
========================================================= */

.home-why-us-sticky-inner {
    position: sticky;

    top: 105px;

    width: 100%;

    padding:
        31px 0
        27px;

    align-self: start;
}


/* =========================================================
   STICKY LABEL
========================================================= */

.home-why-us-sticky-label {
    display: block;

    margin-bottom: 11px;

    color: #9b1834;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.05px;
}


/* =========================================================
   STICKY HEADING
========================================================= */

.home-why-us-sticky h3 {
    max-width: 385px;

    margin: 0;

    color: #17263d;

    font-size:
        clamp(23px, 2vw, 29px);

    line-height: 1.24;

    font-weight: 680;

    letter-spacing: -0.6px;
}


.home-why-us-sticky h3 span {
    display: block;

    margin-top: 3px;

    color: #1e5aa8;
}


/* =========================================================
   STICKY DESCRIPTION
========================================================= */

.home-why-us-sticky-description {
    max-width: 370px;

    margin: 14px 0 0;

    color: #6c798a;

    font-size: 11.5px;
    line-height: 1.68;
}


/* =========================================================
   PROGRESS
========================================================= */

.home-why-us-progress {
    max-width: 370px;

    margin-top: 25px;
}


.home-why-us-progress-head {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 9px;
}


.home-why-us-progress-head > span {
    color: #8190a2;

    font-size: 7.5px;

    font-weight: 800;

    letter-spacing: 1px;
}


.home-why-us-progress-head strong {
    display: flex;

    align-items: baseline;

    color: #a3adba;

    font-size: 9px;

    font-weight: 650;
}


.home-why-us-progress-head strong b {
    color: #17263d;

    font-size: 19px;
    line-height: 1;

    font-weight: 680;
}


.home-why-us-progress-head strong i {
    margin: 0 5px;

    color: #c3ccd6;

    font-style: normal;
}


/* =========================================================
   PROGRESS TRACK
========================================================= */

.home-why-us-progress-track {
    position: relative;

    width: 100%;
    height: 2px;

    overflow: hidden;

    background: #dce4ed;
}


.home-why-us-progress-track > span {
    position: absolute;

    left: 0;
    top: 0;

    width: 16.6667%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #9b1834,
            #1e5aa8,
            #72acec
        );

    box-shadow:
        0 0 14px
        rgba(30, 90, 168, 0.18);

    transition:
        width 0.45s
        cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   ACTIVE PRINCIPLE
========================================================= */

.home-why-us-active {
    position: relative;

    max-width: 370px;

    margin-top: 17px;

    padding:
        13px 17px
        13px 18px;

    border-left:
        2px solid
        #1e5aa8;

    background:
        linear-gradient(
            90deg,
            rgba(30, 90, 168, 0.065),
            transparent
        );
}


.home-why-us-active-label {
    display: block;

    margin-bottom: 5px;

    color: #8494a7;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.95px;
}


#homeWhyActiveTitle {
    display: block;

    color: #253a55;

    font-size: 12px;
    line-height: 1.4;

    font-weight: 650;

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}


/* =========================================================
   STICKY NOTE
========================================================= */

.home-why-us-sticky-note {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    max-width: 365px;

    margin-top: 19px;
}


.home-why-us-sticky-note > span {
    flex: 0 0 auto;

    width: 24px;
    height: 1px;

    margin-top: 8px;

    background:
        linear-gradient(
            90deg,
            #9b1834,
            #1e5aa8
        );
}


.home-why-us-sticky-note p {
    margin: 0;

    color: #8591a0;

    font-size: 9.8px;
    line-height: 1.6;

    font-weight: 550;
}


/* =========================================================
   STICKY CTA
========================================================= */

.home-why-us-sticky-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    padding-bottom: 5px;

    color: #263b55;

    font-size: 10.8px;

    font-weight: 700;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}


.home-why-us-sticky-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;
    height: 1px;

    background: #1e5aa8;

    transition:
        width 0.25s ease;
}


.home-why-us-sticky-link svg {
    width: 14px;
    height: 14px;

    fill: none;

    stroke: #1e5aa8;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 0.25s ease;
}


.home-why-us-sticky-link:hover {
    gap: 11px;

    color: #1e5aa8;
}


.home-why-us-sticky-link:hover::after {
    width: 100%;
}


.home-why-us-sticky-link:hover svg {
    transform:
        translateX(3px);
}


/* =========================================================
   BOTTOM RAIL
========================================================= */

.home-why-us-bottom {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr))
        auto;

    gap: 0;

    align-items: stretch;

    margin-top: 24px;

    border-top:
        1px solid
        #d8e1eb;

    border-bottom:
        1px solid
        #d8e1eb;
}


/* =========================================================
   BOTTOM ITEM
========================================================= */

.home-why-us-bottom-item {
    display: flex;

    flex-direction: column;
    justify-content: center;

    min-height: 74px;

    padding:
        14px 18px;

    border-right:
        1px solid
        #d8e1eb;
}


.home-why-us-bottom-item span {
    display: block;

    margin-bottom: 5px;

    color: #9b1834;

    font-size: 7.5px;

    font-weight: 800;
}


.home-why-us-bottom-item strong {
    color: #4c5c70;

    font-size: 10.5px;
    line-height: 1.4;

    font-weight: 650;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.home-why-us-bottom-link {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 190px;

    padding:
        17px 22px;

    color: #ffffff;

    background: #172a45;

    font-size: 11px;

    font-weight: 700;

    transition:
        background 0.25s ease,
        gap 0.25s ease;
}


.home-why-us-bottom-link svg {
    width: 15px;
    height: 15px;

    fill: none;

    stroke: #8bbcf0;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 0.25s ease;
}


.home-why-us-bottom-link:hover {
    gap: 12px;

    background: #1e5aa8;
}


.home-why-us-bottom-link:hover svg {
    transform:
        translateX(3px);
}


/* =========================================================
   SMALL DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1120px) {

    .home-why-us-scroll-layout {
        grid-template-columns:
            minmax(0, 1.42fr)
            minmax(285px, 0.78fr);

        gap: 48px;
    }


    .home-why-us-point {
        grid-template-columns:
            38px
            minmax(0, 1fr)
            18px;

        gap: 19px;

        padding:
            23px 25px
            23px 0;
    }


    .home-why-us-sticky h3 {
        font-size: 24px;
    }


    .home-why-us-bottom-item {
        padding:
            14px 14px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .home-why-us {
        overflow: hidden;

        padding:
            68px 0
            54px;
    }


    /* INTRO */

    .home-why-us-intro {
        grid-template-columns: 1fr;

        gap: 24px;

        padding:
            35px 0
            37px;
    }


    .home-why-us-intro-copy {
        max-width: 720px;
    }


    /* =============================================
       TABLET:
       sticky off
       mindset first
       points after
    ============================================== */

    .home-why-us-scroll-layout {
        display: flex;

        flex-direction: column;

        gap: 0;
    }


    .home-why-us-sticky {
        order: 1;

        height: auto;
    }


    .home-why-us-points {
        order: 2;

        border-right: 0;

        border-top:
            1px solid
            #d8e1eb;
    }


    .home-why-us-points::after {
        display: none;
    }


    .home-why-us-sticky-inner {
        position: relative;

        top: auto;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(250px, 0.82fr);

        gap:
            14px 38px;

        padding:
            28px 0;
    }


    .home-why-us-sticky-label {
        grid-column: 1;

        margin-bottom: 0;
    }


    .home-why-us-sticky h3 {
        grid-column: 1;

        max-width: 440px;
    }


    .home-why-us-sticky-description {
        grid-column: 2;

        grid-row:
            1 / span 2;

        align-self: center;

        margin: 0;

        padding-left: 20px;

        border-left:
            1px solid
            #d7e0ea;
    }


    .home-why-us-progress,
    .home-why-us-active,
    .home-why-us-sticky-note {
        display: none;
    }


    .home-why-us-sticky-link {
        grid-column: 1;

        margin-top: 3px;
    }


    /* POINTS */

    .home-why-us-point {
        grid-template-columns:
            40px
            minmax(0, 1fr)
            18px;

        gap: 20px;

        padding:
            22px 0;

        opacity: 1;

        transform: none;
    }


    .home-why-us-point::before {
        left: 0;
        right: auto;

        top: -1px;

        width: 100%;
        height: 2px;

        transform:
            scaleX(0);

        transform-origin: left;
    }


    .home-why-us-point.is-active {
        transform: none;
    }


    .home-why-us-point.is-active::before {
        transform:
            scaleX(1);
    }


    /* BOTTOM */

    .home-why-us-bottom {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        margin-top: 24px;
    }


    .home-why-us-bottom-item:nth-child(2) {
        border-right: 0;
    }


    .home-why-us-bottom-item:nth-child(1),
    .home-why-us-bottom-item:nth-child(2) {
        border-bottom:
            1px solid
            #d8e1eb;
    }


    .home-why-us-bottom-link {
        grid-column:
            1 / -1;

        min-height: 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-why-us {
        padding:
            50px 0
            42px;
    }


    /* BACKGROUND */

    .home-why-us-word {
        top: 100px;

        right: -18px;

        font-size: 74px;

        letter-spacing: -4px;
    }


    /* TOP */

    .home-why-us-top {
        display: block;

        padding-bottom: 15px;
    }


    .home-why-us-kicker {
        font-size: 8.8px;
    }


    .home-why-us-meta {
        margin-top: 10px;

        flex-wrap: wrap;

        font-size: 7px;
    }


    .home-why-us-meta i {
        width: 9px;
    }


    /* INTRO */

    .home-why-us-intro {
        padding:
            29px 0
            31px;
    }


    .home-why-us-heading h2 {
        font-size: 28px;
        line-height: 1.15;

        letter-spacing: -0.7px;
    }


    .home-why-us-intro-copy {
        padding-left: 15px;
    }


    .home-why-us-intro-copy p:first-child {
        font-size: 12.8px;
        line-height: 1.68;
    }


    .home-why-us-intro-copy p {
        font-size: 11.8px;
        line-height: 1.68;
    }


    /* STICKY CONTENT BECOMES NORMAL */

    .home-why-us-sticky-inner {
        display: block;

        padding:
            22px 0;
    }


    .home-why-us-sticky-label {
        margin-bottom: 9px;
    }


    .home-why-us-sticky h3 {
        max-width: 330px;

        font-size: 20px;
        line-height: 1.3;
    }


    .home-why-us-sticky-description {
        max-width: none;

        margin-top: 12px;

        padding-left: 14px;

        border-left:
            1px solid
            #d5dfe9;

        font-size: 11px;
    }


    .home-why-us-sticky-link {
        margin-top: 15px;
    }


    /* POINTS */

    .home-why-us-point {
        display: block;

        padding:
            20px 0;

        opacity: 1;

        transform: none;
    }


    .home-why-us-point-number {
        margin-bottom: 8px;
    }


    .home-why-us-point-label {
        margin-bottom: 5px;
    }


    .home-why-us-point-content h3 {
        max-width: none;

        font-size: 15.5px;
    }


    .home-why-us-point-content p {
        max-width: none;

        margin-top: 8px;

        font-size: 11px;
        line-height: 1.62;
    }


    .home-why-us-point.is-active
    .home-why-us-point-content h3 {
        transform: none;
    }


    .home-why-us-point-marker {
        display: none;
    }


    /* BOTTOM */

    .home-why-us-bottom {
        grid-template-columns: 1fr;

        margin-top: 20px;
    }


    .home-why-us-bottom-item {
        min-height: 60px;

        padding:
            12px 0;

        border-right: 0;

        border-bottom:
            1px solid
            #d8e1eb;
    }


    .home-why-us-bottom-item:nth-child(1),
    .home-why-us-bottom-item:nth-child(2) {
        border-bottom:
            1px solid
            #d8e1eb;
    }


    .home-why-us-bottom-link {
        grid-column: auto;

        min-height: 56px;

        margin-top: 0;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .home-why-us-heading h2 {
        font-size: 26px;
    }


    .home-why-us-sticky h3 {
        font-size: 19px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-why-us-point,
    .home-why-us-point::before,
    .home-why-us-point::after,
    .home-why-us-point-number,
    .home-why-us-point-content h3,
    .home-why-us-point-content p,
    .home-why-us-point-marker > span,
    .home-why-us-progress-track > span,
    #homeWhyActiveTitle,
    .home-why-us-sticky-link,
    .home-why-us-sticky-link::after,
    .home-why-us-sticky-link svg,
    .home-why-us-bottom-link,
    .home-why-us-bottom-link svg {
        transition: none !important;
    }

}