/* ============================================================
   STICK NOTE
   SERVICES PAGE
============================================================ */


/* ============================================================
   BASE
============================================================ */

.services-hero,
.services-intro,
.services-list-section,
.services-process,
.services-cta {
    position: relative;
    overflow: hidden;
}

.services-hero *,
.services-intro *,
.services-list-section *,
.services-process *,
.services-cta * {
    box-sizing: border-box;
}


/* ============================================================
   HERO
============================================================ */

.services-hero {

    min-height: 100vh;

    display: flex;
    align-items: flex-end;

    padding: 180px 0 90px;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(22, 104, 220, 0.40),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #002b70 0%,
            #004aa2 50%,
            #00265f 100%
        );

    color: #ffffff;

}


/* BACKGROUND WORD */

.services-hero-bg {

    position: absolute;

    right: -3vw;
    bottom: -5vw;

    font-size: clamp(
        160px,
        24vw,
        390px
    );

    line-height: 0.75;

    font-weight: 900;

    letter-spacing: -0.08em;

    color: rgba(255, 255, 255, 0.035);

    pointer-events: none;

    user-select: none;

}


/* HERO CONTAINER */

.services-hero-container {

    width: min(
        1400px,
        calc(100% - 60px)
    );

    margin: 0 auto;

    position: relative;

    z-index: 2;

}


/* LABEL */

.services-hero-label {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;

    color: #ffd400;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.22em;

}


.services-line {

    width: 45px;

    height: 2px;

    background: #ffd400;

}


/* HERO TITLE */

.services-hero-title {

    max-width: 1050px;

    margin: 0;

    font-size: clamp(
        62px,
        9vw,
        145px
    );

    line-height: 0.88;

    font-weight: 900;

    letter-spacing: -0.065em;

}


.services-hero-title span {

    display: block;

    color: #ffd400;

}


/* HERO BOTTOM */

.services-hero-bottom {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 40px;

    margin-top: 65px;

}


.services-hero-bottom p {

    max-width: 500px;

    margin: 0;

    color: rgba(
        255,
        255,
        255,
        0.76
    );

    font-size: 16px;

    line-height: 1.75;

}


/* SCROLL LINK */

.services-scroll {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;

}


.services-scroll-arrow {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffd400;

    color: #062a50;

    font-size: 18px;

    transition:
        transform 0.3s ease;

}


.services-scroll:hover
.services-scroll-arrow {

    transform: translateY(5px);

}


/* ============================================================
   INTRO
============================================================ */

.services-intro {

    padding: 130px 0;

    background: #ffffff;

    color: #062a50;

}


.services-intro-container {

    width: min(
        1200px,
        calc(100% - 60px)
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        100px 1fr;

    gap: 60px;

}


.services-section-number {

    font-size: 14px;

    font-weight: 800;

    color: #004da8;

}


.services-intro-content {

    max-width: 900px;

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.services-intro-content.is-visible {

    opacity: 1;

    transform: translateY(0);

}


.services-small-title {

    margin-bottom: 22px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.22em;

    color: #004da8;

}


.services-intro-content h2 {

    max-width: 900px;

    margin: 0 0 35px;

    font-size: clamp(
        48px,
        6vw,
        90px
    );

    line-height: 0.95;

    letter-spacing: -0.055em;

}


.services-intro-content h2 span {

    display: block;

    color: #004da8;

}


.services-intro-content p {

    max-width: 680px;

    margin: 0;

    color: #53657b;

    font-size: 18px;

    line-height: 1.8;

}


/* ============================================================
   SERVICES LIST
============================================================ */

.services-list-section {

    padding: 130px 0 150px;

    background:
        linear-gradient(
            145deg,
            #00285f,
            #004aa0 50%,
            #00285f
        );

    color: #ffffff;

}


.services-list-container {

    width: min(
        1400px,
        calc(100% - 60px)
    );

    margin: auto;

}


.services-list-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

}


.services-list-heading span {

    color: #ffd400;

    font-size: 13px;

    font-weight: 800;

}


.services-list-heading p {

    margin: 0;

    color: rgba(
        255,
        255,
        255,
        0.62
    );

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.22em;

}


.services-list-title {

    max-width: 900px;

    margin: 0 0 85px;

    font-size: clamp(
        52px,
        7vw,
        105px
    );

    line-height: 0.9;

    letter-spacing: -0.06em;

}


.services-list-title span {

    color: #ffd400;

}


/* ============================================================
   SERVICE ITEM
============================================================ */

.service-item {

    position: relative;

    display: grid;

    grid-template-columns:
        80px minmax(300px, 1.4fr) 1fr 65px;

    align-items: center;

    gap: 35px;

    min-height: 190px;

    padding: 35px 0;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.17
        );

    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        padding 0.4s ease;

}


.service-item:last-child {

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.17
        );

}


.service-item.is-visible {

    opacity: 1;

    transform: translateY(0);

}


/* NUMBER */

.service-number {

    color: #ffd400;

    font-size: 13px;

    font-weight: 800;

}


/* MAIN */

.service-main h3 {

    margin: 0 0 15px;

    font-size: clamp(
        30px,
        3vw,
        48px
    );

    line-height: 1;

    letter-spacing: -0.04em;

}


.service-main p {

    max-width: 500px;

    margin: 0;

    color: rgba(
        255,
        255,
        255,
        0.62
    );

    font-size: 14px;

    line-height: 1.65;

}


/* DETAILS */

.service-details {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}


.service-details span {

    padding: 8px 11px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.17
        );

    border-radius: 999px;

    color: rgba(
        255,
        255,
        255,
        0.62
    );

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.08em;

}


/* ARROW */

.service-arrow {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffd400;

    color: #062a50;

    font-size: 20px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;

}


.service-item:hover {

    padding-left: 15px;

    padding-right: 15px;

}


.service-item:hover
.service-arrow {

    transform:
        rotate(45deg)
        scale(1.08);

    background: #58e79a;

}


/* ============================================================
   PROCESS
============================================================ */





/* ============================================================
   CTA
============================================================ */

.services-cta {

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(
                30,
                117,
                230,
                0.50
            ),
            transparent 50%
        ),
        #00377b;

    color: #ffffff;

}


.services-cta-bg {

    position: absolute;

    left: 50%;

    bottom: -90px;

    transform:
        translateX(-50%);

    font-size: clamp(
        160px,
        25vw,
        380px
    );

    font-weight: 900;

    line-height: 0.7;

    letter-spacing: -0.08em;

    color:
        rgba(
            255,
            255,
            255,
            0.035
        );

    pointer-events: none;

}


.services-cta-container {

    position: relative;

    z-index: 2;

}


.services-cta-container
.services-small-title {

    color: #ffd400;

}


.services-cta h2 {

    max-width: 1000px;

    margin: 0 auto 55px;

    font-size: clamp(
        60px,
        9vw,
        135px
    );

    line-height: 0.84;

    letter-spacing: -0.065em;

}


.services-cta h2 span {

    display: block;

    color: #ffd400;

}


/* CTA BUTTON */

.services-cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    min-width: 185px;

    min-height: 62px;

    padding: 8px 9px 8px 24px;

    border-radius: 999px;

    background: #ffd400;

    color: #062a50;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

}


.services-cta-button span:last-child {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #062a50;

    color: #ffd400;

    font-size: 18px;

}


.services-cta-button:hover {

    background: #58e79a;

    transform:
        translateY(-5px);

    box-shadow:
        0 18px 45px
        rgba(
            88,
            231,
            154,
            0.25
        );

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .services-hero {

        padding-top: 160px;

    }


    .service-item {

        grid-template-columns:
            60px 1fr 55px;

        gap: 25px;

    }


    .service-details {

        grid-column: 2;

    }


    .service-arrow {

        grid-column: 3;

        grid-row: 1 / span 2;

    }


  
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {

    .services-hero {

        min-height: 760px;

        padding:
            150px 0 70px;

    }


    .services-hero-container,
    .services-intro-container,
    .services-list-container,
    .services-process-container {

        width:
            calc(100% - 32px);

    }


    .services-hero-title {

        font-size:
            clamp(
                55px,
                15vw,
                85px
            );

    }


    .services-hero-bottom {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 45px;

    }


    .services-hero-bottom p {

        font-size: 14px;

    }


    .services-intro {

        padding: 90px 0;

    }


    .services-intro-container {

        display: block;

    }


    .services-section-number {

        margin-bottom: 30px;

    }


    .services-intro-content h2 {

        font-size:
            clamp(
                45px,
                12vw,
                70px
            );

    }


    .services-intro-content p {

        font-size: 16px;

    }


    .services-list-section {

        padding: 90px 0 100px;

    }


    .services-list-title {

        margin-bottom: 55px;

        font-size:
            clamp(
                46px,
                12vw,
                70px
            );

    }


    .service-item {

        display: grid;

        grid-template-columns:
            45px 1fr 48px;

        gap: 18px;

        min-height: auto;

        padding: 30px 0;

    }


    .service-number {

        grid-column: 1;

        grid-row: 1;

    }


    .service-main {

        grid-column: 2;

        grid-row: 1;

    }


    .service-main h3 {

        font-size: 30px;

    }


    .service-main p {

        font-size: 13px;

    }


    .service-details {

        grid-column: 2 / 4;

        grid-row: 2;

        margin-top: 8px;

    }


    .service-arrow {

        grid-column: 3;

        grid-row: 1;

        width: 44px;

        height: 44px;

        font-size: 17px;

    }


    .service-item:hover {

        padding-left: 0;

        padding-right: 0;

    }


    .services-process {

        padding: 90px 0;

    }


    .services-process h2 {

        margin-bottom: 50px;

        font-size:
            clamp(
                48px,
                12vw,
                70px
            );

    }



    


    .process-card {

        min-height: 240px;

    }


    .process-card span {

        margin-bottom: 55px;

    }


    .services-cta {

        min-height: 560px;

    }


    .services-cta h2 {

        font-size:
            clamp(
                55px,
                14vw,
                85px
            );

        margin-bottom: 40px;

    }

}


/* ============================================================
   SMALL PHONES
============================================================ */

@media (max-width: 430px) {

    .services-hero {

        min-height: 700px;

    }


    .services-hero-label {

        font-size: 10px;

    }


    .services-hero-title {

        font-size: 53px;

    }


    .services-hero-bg {

        font-size: 130px;

    }


    .services-list-heading {

        gap: 12px;

    }


    .service-item {

        grid-template-columns:
            35px 1fr 44px;

    }


    .service-main h3 {

        font-size: 27px;

    }


    .service-details span {

        font-size: 8px;

        padding:
            7px 9px;

    }


    .services-cta {

        min-height: 500px;

    }

}