/*  11. HOME PAGE - HERO SECTION */
.hero-home {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 80px) 0 80px;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
    background: url("../images/work/home-image.webp") center center / cover no-repeat;
}

.hero-home__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg,
            rgba(4, 17, 24, .58) 0%,
            rgba(4, 17, 24, .38) 50%,
            rgba(4, 17, 24, .58) 100%);
}

.hero-home::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg,
            rgba(5, 20, 27, .15) 0%,
            rgba(5, 20, 27, .05) 50%,
            rgba(5, 20, 27, .85) 100%);
    pointer-events: none;
}

.hero-home__inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-home__copy {
    width: min(1050px, 100%);
    margin: 0 auto;
}

.hero-home__kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hero-home__kicker span {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--green);
    flex-shrink: 0;
}

.hero-home h1 {
    max-width: 1050px;
    margin: 0 auto 30px;
    font-family: var(--font-display);
    font-size: 100px;
    font-weight: 700;
    line-height: .88;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 15px 45px rgba(0, 0, 0, .25);
}

.hero-home h1 em {
    display: inline-block;
    margin: 0 .08em;
    color: var(--green);
    font-family: var(--font-script);
    font-size: .82em;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    text-transform: none;
    transform: rotate(-3deg);
}

.hero-home__copy>p {
    width: min(660px, 100%);
    margin: 0 auto;
    color: rgba(255, 255, 255, .70);
    font-size: 15px;
    line-height: 1.8;
}

.hero-home__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 38px;
}

.hero-home .btn--green {
    min-height: 54px;
    padding: 0 26px;
    background: var(--green);
    color: var(--ink);
    border: 1px solid var(--green);
}

.hero-home .btn--green:hover {
    background: #ffffff;
    border-color: #ffffff;
}

.hero-outline-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 26px;
    border: 1px solid rgba(255, 255, 255, .40);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .04);
    transition: background .3s, color .3s, border-color .3s, transform .3s;
}

.hero-outline-btn span {
    color: var(--green);
    font-size: 20px;
}

.hero-outline-btn:hover {
    background: #ffffff;
    color: var(--ink);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.hero-home__bottom {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: rgba(255, 255, 255, .55);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-home__bottom a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.hero-home__bottom a i {
    color: var(--green);
    font-style: normal;
}

@media (max-width:980px) {
    .hero-home {
        min-height: 850px;
        padding: calc(var(--header-h) + 70px) 0 100px;
    }

    .hero-home h1 {
        font-size: 70px;
        line-height: .9;
    }

    .hero-home__copy {
        width: min(760px, 100%);
    }
}

@media (max-width:720px) {
    .hero-home {
        min-height: 720px;
        padding: calc(var(--header-h) + 55px) 0 90px;
        background-position: center;
    }

    .hero-home__overlay {
        background: rgba(5, 20, 27, .80);
    }

    .hero-home__kicker {
        font-size: 9px;
        line-height: 1.5;
        margin-bottom: 22px;
    }

    .hero-home__kicker span {
        width: 22px;
    }

    .hero-home h1 {
        font-size: 50px;
        line-height: .9;
        margin-bottom: 25px;
    }

    .hero-home__copy>p {
        max-width: 520px;
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-home__actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    .hero-home .btn--green,
    .hero-outline-btn {
        width: min(290px, 100%);
    }

    .hero-home__bottom {
        justify-content: center;
        bottom: 22px;
        font-size: 9px;
    }

    .hero-home__bottom>span {
        display: none;
    }
}

@media (max-width:480px) {
    .hero-home {
        min-height: 680px;
    }


    .hero-home h1 em {
        display: block;
        margin: 4px auto 8px;
    }
}
/* =========================================================
   HOME PAGE - CREATIVE KINETIC / MARQUEE STRIP
========================================================= */

.kinetic-strip {
    position: relative;
    width: 100%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(143, 189, 47, .10),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 50%,
            rgba(0, 149, 199, .10),
            transparent 28%
        ),
        var(--ink);

    border-top: 1px solid rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .10);

    isolation: isolate;
}


/* subtle grid background */

.kinetic-strip::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px
        );

    background-size: 38px 38px;

    pointer-events: none;
}


/* glow line */

.kinetic-strip::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--green),
            var(--blue),
            transparent
        );

    opacity: .55;

    pointer-events: none;
}


/* track */

.kinetic-strip__track {
    position: relative;
    z-index: 2;

    display: flex;

    width: max-content;

    animation:
        marquee-scroll 28s linear infinite;

    will-change: transform;
}


/* group */

.kinetic-strip__group {
    display: flex;

    align-items: center;

    flex-shrink: 0;

    gap: 26px;

    padding: 20px 14px;
}


/* service text */

.kinetic-strip span {
    position: relative;

    flex-shrink: 0;

    white-space: nowrap;

    color: rgba(255, 255, 255, .92);

    font-family: var(--font-display);

    font-size: 20px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    transition:
        color .3s,
        transform .3s var(--ease);
}


/* hover text */

.kinetic-strip span:hover {
    color: var(--green);

    transform: translateY(-2px);
}


/* separator */

.kinetic-strip i {
    position: relative;

    flex-shrink: 0;

    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(143, 189, 47, .30);

    border-radius: 50%;

    color: var(--green);

    font-style: normal;

    font-size: 11px;

    background:
        rgba(143, 189, 47, .06);

    box-shadow:
        0 0 20px rgba(143, 189, 47, .06);
}


/* marquee */

@keyframes marquee-scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* pause hover */

.kinetic-strip:hover
.kinetic-strip__track {
    animation-play-state: paused;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:980px) {

    .kinetic-strip__group {
        gap: 22px;

        padding: 17px 12px;
    }

    .kinetic-strip span {
        font-size: 17px;
    }

    .kinetic-strip i {
        width: 23px;
        height: 23px;

        font-size: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:720px) {

    .kinetic-strip__track {
        animation-duration: 22s;
    }

    .kinetic-strip__group {
        gap: 17px;

        padding: 14px 9px;
    }

    .kinetic-strip span {
        font-size: 14px;

        letter-spacing: .055em;
    }

    .kinetic-strip i {
        width: 20px;
        height: 20px;

        font-size: 8px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .kinetic-strip__track {
        animation: none;
    }

}

/*   14. HOME PAGE - INTRO / WELCOME SECTION */
.intro-section {
    padding: 100px 0;
}

.intro-section__grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 6vw;
}

.intro-section__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.intro-section__bottom p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
}

@media (max-width:980px) {
    .intro-section__grid {
        grid-template-columns: 1fr;
    }

    .section-index {
        margin-bottom: 20px;
    }
}

@media (max-width:720px) {
    .intro-section {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .intro-section__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* 15. HOME PAGE - SERVICES SECTION */
.services-home {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.services-home::after {
    content: "SERVICES";
    position: absolute;
    right: -3vw;
    top: 7%;
    color: rgba(255, 255, 255, .025);
    font-family: var(--font-display);
    font-size: 18vw;
    font-weight: 900;
    line-height: 1;
    transform: rotate(90deg) translateX(55%);
    transform-origin: right top;
}

.service-stack {
    position: relative;
    width: 72%;
}

.service-row {
    position: relative;
    z-index: 2;
    min-height: 92px;
    display: grid;
    grid-template-columns: 72px 1fr 50px;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    transition: padding .35s var(--ease), color .35s;
}

.service-row:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.service-row:hover {
    padding-left: 20px;
    color: var(--green);
}

.service-row__no {
    color: rgba(255, 255, 255, .38);
    font-size: 12px;
}

.service-row h3 {
    margin: 0;
    font-size: 35px;
    font-weight: 600;
    line-height: 1;
}

.service-row__arrow {
    justify-self: end;
    font-size: 24px;
}

.service-preview {
    position: absolute;
    left: calc(100% + 7vw);
    top: 4%;
    width: 38vw;
    max-width: 480px;
    height: 560px;
    overflow: hidden;
    transform: rotate(3deg);
    border: 6px solid var(--white);
}

.service-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .25s, transform .6s var(--ease);
}

.services-home__foot {
    margin-top: 56px;
}

@media (max-width:1180px) {
    .service-stack {
        width: 66%;
    }
}

@media (max-width:980px) {
    .service-stack {
        width: 100%;
        padding-right: 0;
    }

    .service-preview {
        display: none;
    }

    .service-row h3 {
        font-size: 28px;
    }
}

@media (max-width:720px) {
    .services-home {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .service-row {
        grid-template-columns: 42px 1fr 30px;
        min-height: 82px;
    }

    .service-row h3 {
        font-size: 20px;
    }
}

/*    16. HOME PAGE - BRANDING PROCESS SECTION */
.process-section {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.process-section__line {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border: 1px solid rgba(0, 149, 199, .14);
    border-radius: 50%;
    left: -38vw;
    top: 10%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--line);
}

.process-card {
    min-height: 170px;
    padding: 28px 24px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: background .35s, color .35s, transform .35s var(--ease);
}

.process-card:last-child {
    border-right: 0;
}

.process-card>span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.process-card h3 {
    margin: auto 0 0;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}

.process-card h3 strong {
    color: var(--green-dark);
    font-weight: 600;
}

.process-card i {
    align-self: flex-end;
    font-style: normal;
    font-size: 24px;
}

.process-card:hover {
    position: relative;
    z-index: 2;
    background: var(--ink);
    color: var(--white);
    transform: translateY(-14px);
}

.process-card:hover h3 strong {
    color: var(--green);
}

@media (max-width:1180px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-card:nth-child(3) {
        border-right: 0;
    }

    .process-card:nth-child(n+4) {
        border-top: 1px solid var(--line);
    }
}

@media (max-width:980px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card:nth-child(1) {
        border-bottom: 1px solid var(--line);
    }

    .process-card:nth-child(2n) {
        border-right: 0;
    }

    .process-card:nth-child(3) {
        border-right: 1px solid var(--line);
    }

    .process-card:nth-child(4) {
        border-bottom: 1px solid var(--line);
    }

    .process-card:nth-child(5) {
        border-right: 1px solid var(--line);
    }

    .process-card h3 {
        font-size: 28px;
    }
}

@media (max-width:720px) {
    .process-section {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card,
    .process-card:nth-child(n) {
        min-height: 200px;
        border-right: 0;
        border-top: 1px solid var(--line);
    }

    .process-card:first-child {
        border-top: 0;
    }

    .process-card h3 {
        font-size: 20px;
    }
}


/*  17. HOME PAGE - FEATURED / SELECTED WORK */
.featured-work--compact {
    position: relative;
    padding: 100px 0;
    background: #f4f7f8;
    color: var(--ink);
    overflow: hidden;
}

.featured-work--compact::before {
    content: "WORK";
    position: absolute;
    right: -20px;
    top: 15px;
    font-family: var(--font-display);
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.06em;
    color: rgba(11, 39, 52, .025);
    pointer-events: none;
}

.featured-work__top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.featured-work__top h2 {
    margin: 12px 0 0;
    max-width: 680px;
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.featured-work__top h2 em {
    display: block;
    margin-top: 4px;
    color: var(--green);
    font-family: var(--font-script);
    font-size: .78em;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.featured-work__intro {
    max-width: 420px;
    justify-self: end;
}

.featured-work__intro p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.selected-work-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.selected-work-item {
    min-height: 120px;
    display: grid;
    grid-template-columns: 48px 1fr 38px;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .55);
    transition: background .3s,
        color .3s,
        padding .3s var(--ease);
}

.selected-work-item:hover {
    padding-left: 32px;
    background: var(--ink);
    color: var(--white);
}

.selected-work-item__number {
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.selected-work-item:hover .selected-work-item__number {
    color: var(--green);
}

.selected-work-item__category {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.selected-work-item:hover .selected-work-item__category {
    color: rgba(255, 255, 255, .55);
}

.selected-work-item h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.selected-work-item__arrow {
    justify-self: end;
    color: var(--green);
    font-size: 22px;
    transition: transform .3s var(--ease);
}

.selected-work-item:hover .selected-work-item__arrow {
    transform: translate(4px, -4px);
}

.featured-work__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 24px;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width:980px) {
    .featured-work--compact {
        padding: 85px 0 70px;
    }

    .featured-work__top {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 42px;
    }

    .featured-work__intro {
        max-width: 550px;
        justify-self: start;
    }

    .featured-work__top h2 {
        font-size: 48px;
    }

    .selected-work-item h3 {
        font-size: 27px;
    }
}

@media (max-width:720px) {
    .featured-work--compact {
        padding: 70px 0 60px;
    }

    .featured-work--compact::before {
        font-size: 110px;
        top: 25px;
    }

    .featured-work__top {
        margin-bottom: 34px;
    }

    .featured-work__top h2 {
        font-size: 38px;
    }

    .selected-work-list {
        grid-template-columns: 1fr;
    }

    .selected-work-item {
        min-height: 95px;
        grid-template-columns: 38px 1fr 26px;
        padding: 16px 18px;
    }

    .selected-work-item:hover {
        padding-left: 22px;
    }

    .selected-work-item h3 {
        font-size: 23px;
    }

    .featured-work__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/*   18. HOME PAGE - VISION & MISSION BAND */
.vision-band {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.vision-band__type {
    position: absolute;
    left: 0;
    bottom: -5vw;
    color: rgba(255, 255, 255, .055);
    font-family: var(--font-display);
    font-size: 20vw;
    font-weight: 900;
    line-height: .8;
    white-space: nowrap;
    letter-spacing: -.06em;
}

.vision-band__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
}

.vision-band article {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .25);
}

.vision-band .eyebrow {
    color: var(--green);
}

.vision-band h2 {
    margin: 30px 0 18px;
    font-size: 60px;
    line-height: .95;
}

.vision-band p {
    color: rgba(255, 255, 255, .7);
    max-width: 560px;
}

@media (max-width:980px) {
    .vision-band__grid {
        grid-template-columns: 1fr;
    }

    .vision-band h2 {
        font-size: 50px;
    }
}

@media (max-width:720px) {
    .vision-band {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .vision-band__grid {
        gap: 70px;
    }

    .vision-band h2 {
        font-size: 45px;
    }
}

/* ================= GOOGLE REVIEWS ================= */
/* GOOGLE REVIEWS SECTION */

.rg-google-reviews {
    padding: 105px 0 115px;
    background: radial-gradient(circle at 50% 0%, rgba(143, 189, 47, .05), transparent 34%), #071c27;
    color: #fff;
    overflow: hidden;
}

.rg-google-reviews__head {
    text-align: center;
    margin-bottom: 55px;
}

.rg-google-reviews__head .eyebrow {
    display: inline-flex;
    justify-content: center;
    color: var(--green);
}

.rg-google-reviews__head h2 {
    margin: 13px 0 12px;
    font-family: var(--font-display);
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 700;
    line-height: 1;
}

.rg-google-reviews__head p {
    max-width: 580px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .56);
    font-size: 14px;
    line-height: 1.7;
}


/* SLIDER */

.rg-review-slider-wrap {
    position: relative;
}

.rg-review-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 12px 9px 18px;
}

.rg-review-slider::-webkit-scrollbar {
    display: none;
}

.rg-review-card {
    flex: 0 0 calc((100% - 72px) / 5);
    min-width: 220px;
    min-height: 315px;
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 26px;
    background: rgba(255, 255, 255, .05);
    transition:
        transform .35s var(--ease),
        background .35s,
        border-color .35s,
        box-shadow .35s;
}

.rg-review-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(143, 189, 47, .25);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.rg-review-card__user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rg-review-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #1b5f95;
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
}

.rg-review-card__user h3 {
    margin: 0 0 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.rg-review-card__user h3 span {
    display: inline-grid;
    place-items: center;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    font-size: 8px;
}

.rg-review-card__user small {
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
}

.rg-review-stars {
    margin: 18px 0 10px;
    color: #fbbc04;
    font-size: 20px;
    line-height: 1;
}

.rg-review-card>p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    line-height: 1.58;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rg-review-card.is-expanded>p {
    display: block;
}



/* READ MORE */

.rg-review-more {
    width: max-content;
    margin-top: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
    cursor: pointer;
}

.rg-review-more:hover {
    color: var(--green);
}


/* GOOGLE WORD */

.rg-google-word {
    margin-top: auto;
    padding-top: 18px;
    font-family: Arial, sans-serif;
    font-size: 22px;
}

.rg-google-word span:nth-child(1),
.rg-google-word span:nth-child(4) {
    color: #4285f4;
}

.rg-google-word span:nth-child(2),
.rg-google-word span:nth-child(6) {
    color: #ea4335;
}

.rg-google-word span:nth-child(3) {
    color: #fbbc05;
}

.rg-google-word span:nth-child(5) {
    color: #34a853;
}


/* ARROWS */

.rg-review-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: #9a9da2;
    color: #111;
    font-size: 19px;
    cursor: pointer;
    transition:
        background .25s,
        transform .25s;
}

.rg-review-arrow:hover {
    background: var(--green);
    transform: translateY(-50%) scale(1.07);
}

.rg-review-prev {
    left: -18px;
}

.rg-review-next {
    right: -18px;
}


/* RESPONSIVE */

@media (max-width: 1180px) {
    .rg-review-card {
        flex-basis: calc((100% - 54px) / 4);
    }
}

@media (max-width: 980px) {
    .rg-review-card {
        flex-basis: calc((100% - 36px) / 3);
    }
}

@media (max-width: 720px) {

    .rg-google-reviews {
        padding: 80px 0 86px;
    }

    .rg-google-reviews__head {
        text-align: left;
        margin-bottom: 38px;
    }

    .rg-google-reviews__head h2 {
        font-size: 40px;
    }

    .rg-google-reviews__head p {
        margin: 0;
    }

    .rg-review-slider {
        gap: 12px;
        padding-right: 30px;
    }

    .rg-review-card {
        flex: 0 0 84%;
        min-width: 0;
        min-height: 290px;
        border-radius: 22px;
    }

    .rg-review-slider-wrap {
        margin: 0 -14px;
    }

    .rg-review-arrow {
        bottom: -62px;
        top: auto;
    }

    .rg-review-prev {
        left: 110px;
    }

    .rg-review-next {
        right: 110px;
    }
}

/* =========================================================
   HOME - WHY CHOOSE US
   PREMIUM EDITORIAL VERSION
========================================================= */

.why-premium {
    position: relative;
    padding: 105px 0 110px;
    background: #f2f5f5;
    color: var(--ink);
    overflow: hidden;
}


/* =========================================================
   BACKGROUND TYPOGRAPHY
========================================================= */

.why-premium__bg-word {
    position: absolute;
    left: -25px;
    bottom: -2.5vw;
    color: transparent;
    -webkit-text-stroke:
        1px rgba(11, 39, 52, .045);

    font-family: var(--font-display);
    font-size: clamp(130px, 18vw, 300px);
    font-weight: 900;
    line-height: .72;
    letter-spacing: -.06em;
    white-space: nowrap;
    pointer-events: none;
}

.why-premium__head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr)340px;
    gap: 55px;
    align-items: end;
    margin-bottom: 65px;
}


/* LARGE 04 */

.why-premium__index {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 130px;
    border-right: 1px solid var(--line);
    padding-right: 25px;
}


.why-premium__index>span {
    color: var(--green);
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    line-height: .75;
    letter-spacing: -.04em;
}


.why-premium__index small {
    margin-top: 15px;
    color: var(--muted);

    font-family: var(--font-display);

    font-size: 9px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: .15em;

    text-transform: uppercase;
}


/* TITLE */

.why-premium__title h2 {
    max-width: 750px;

    margin: 13px 0 0;

    font-family: var(--font-display);

    font-size: clamp(48px, 5.2vw, 70px);
    font-weight: 800;

    line-height: .87;

    letter-spacing: -.025em;

    text-transform: uppercase;
}


.why-premium__title h2 em {
    display: inline-block;

    color: var(--green);

    font-family: var(--font-script);

    font-size: .85em;
    font-weight: 400;

    text-transform: none;

    letter-spacing: 0;

    transform: rotate(-2deg);
}


/* INTRO */

.why-premium__intro {
    padding-left: 22px;

    border-left: 1px solid var(--line);
}


.why-premium__intro p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}


.why-premium__intro>span {
    display: block;

    margin-top: 22px;

    color: var(--blue);

    font-family: var(--font-display);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;

    line-height: 1.5;
}


/* =========================================================
   LIST
========================================================= */

.why-premium__list {
    position: relative;
    z-index: 2;

    border-top: 1px solid var(--line);
}


/* =========================================================
   ITEM
========================================================= */

.why-premium__item {
    position: relative;

    min-height: 145px;

    display: grid;

    grid-template-columns:
        70px minmax(0, 1fr) 90px;

    align-items: center;

    gap: 25px;

    padding: 25px 10px 25px 0;

    border-bottom: 1px solid var(--line);

    overflow: hidden;

    transition:
        padding .4s var(--ease),
        background .4s,
        color .4s;
}


/* GREEN HOVER LAYER */

.why-premium__item::before {
    content: "";

    position: absolute;

    inset: 0;

    background: var(--ink);

    transform: scaleY(0);

    transform-origin: bottom;

    transition:
        transform .45s var(--ease);

    z-index: -1;
}


/* LEFT GREEN LINE */

.why-premium__item::after {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 3px;
    height: 0;

    background: var(--green);

    transform: translateY(-50%);

    transition:
        height .4s var(--ease);
}


.why-premium__item:hover {
    padding-left: 24px;

    color: var(--white);
}


.why-premium__item:hover::before {
    transform: scaleY(1);
}


.why-premium__item:hover::after {
    height: 100%;
}


/* =========================================================
   NUMBER
========================================================= */

.why-premium__number {
    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;

    transition: color .3s;
}


.why-premium__item:hover .why-premium__number {
    color: var(--green);
}


/* =========================================================
   CONTENT
========================================================= */

.why-premium__content {
    display: grid;

    grid-template-columns:
        85px minmax(220px, .8fr) minmax(250px, 1fr);

    align-items: center;

    gap: 30px;
}


.why-premium__tag {
    color: var(--green-dark);

    font-family: var(--font-display);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.why-premium__content h3 {
    margin: 0;

    font-family: var(--font-display);

    font-size: clamp(27px, 2.4vw, 35px);
    font-weight: 700;

    line-height: .95;

    letter-spacing: -.015em;

    text-transform: uppercase;
}


.why-premium__content p {
    max-width: 470px;

    margin: 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.65;

    transition: color .35s;
}


.why-premium__item:hover .why-premium__content p {
    color: rgba(255, 255, 255, .58);
}


.why-premium__item:hover .why-premium__tag {
    color: var(--green);
}


/* =========================================================
   SYMBOL
========================================================= */

.why-premium__symbol {
    display: grid;

    place-items: center;

    justify-self: center;

    width: 56px;
    height: 56px;

    border: 1px solid var(--line);

    border-radius: 50%;

    transition:
        background .35s,
        border-color .35s,
        transform .45s var(--ease);
}


.why-premium__symbol span {
    color: var(--green-dark);

    font-size: 20px;

    transition: color .3s;
}


.why-premium__item:hover .why-premium__symbol {
    background: var(--green);

    border-color: var(--green);

    transform: rotate(12deg);
}


.why-premium__item:hover .why-premium__symbol span {
    color: var(--ink);
}

/* =========================================================
   FOOT
========================================================= */

.why-premium__foot {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    margin-top: 42px;
}


/* STATEMENT */

.why-premium__statement {
    display: flex;

    align-items: center;

    gap: 18px;
}


.why-premium__statement>span {
    width: 45px;
    height: 2px;

    background: var(--green);
}


.why-premium__statement p {
    margin: 0;

    color: var(--muted);

    font-family: var(--font-display);

    font-size: 13px;

    letter-spacing: .03em;

    text-transform: uppercase;
}


.why-premium__statement strong {
    color: var(--ink);
}


/* =========================================================
   CTA
========================================================= */

.why-premium__cta {
    min-width: 225px;

    min-height: 55px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 0 20px;

    border: 1px solid var(--ink);

    font-family: var(--font-display);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .06em;

    text-transform: uppercase;

    transition:
        background .35s,
        color .35s,
        border-color .35s,
        transform .35s var(--ease);
}


.why-premium__cta i {
    color: var(--green-dark);

    font-style: normal;

    font-size: 19px;

    transition:
        transform .35s var(--ease);
}


.why-premium__cta:hover {
    background: var(--ink);

    border-color: var(--ink);

    color: var(--white);

    transform: translateY(-3px);
}


.why-premium__cta:hover i {
    color: var(--green);

    transform:
        translate(4px, -4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .why-premium__head {
        gap: 35px;
    }


    .why-premium__intro {
        grid-column: 2;

        max-width: 600px;

        padding:
            18px 0 0;

        border-left: 0;

        border-top: 1px solid var(--line);
    }


    .why-premium__content {
        grid-template-columns:
            65px 1fr;

        gap: 15px 25px;
    }


    .why-premium__content p {
        grid-column: 2;
    }


    .why-premium__item {
        grid-template-columns:
            45px 1fr 60px 35px;

        min-height: 160px;
    }
    .why-premium__title h2 {
        font-size: 50px;
    }


}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .why-premium {
        padding:
            75px 0 80px;
    }


    .why-premium__head {
        display: block;

        margin-bottom: 42px;
    }


    .why-premium__index {
        min-height: auto;

        flex-direction: row;

        align-items: flex-end;

        gap: 15px;

        margin-bottom: 28px;

        padding:
            0 0 18px;

        border-right: 0;

        border-bottom: 1px solid var(--line);
    }


    .why-premium__index>span {
        font-size: 52px;
    }


    .why-premium__index small {
        margin: 0 0 2px;
    }


    .why-premium__title h2 {
        font-size: 40px;
    }


    .why-premium__intro {
        margin-top: 25px;

        padding:
            18px 0 0;

        border-top: 1px solid var(--line);
    }


    .why-premium__item {
        min-height: auto;

        grid-template-columns:
            35px 1fr 30px;

        gap: 14px;

        padding:
            22px 0;
    }


    .why-premium__item:hover {
        padding:
            22px 14px;
    }


    .why-premium__content {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .why-premium__tag {
        margin-bottom: 3px;
    }


    .why-premium__content h3 {
        font-size: 25px;
    }


    .why-premium__content p {
        grid-column: auto;

        font-size: 12px;
    }


    .why-premium__symbol {
        display: none;
    }


    .why-premium__arrow {
        font-size: 18px;
    }


    .why-premium__foot {
        align-items: flex-start;

        flex-direction: column;

        margin-top: 32px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .why-premium__content h3 {
        font-size: 22px;
    }

    .why-premium__statement p {
        font-size: 11px;
    }

    .why-premium__cta {
        width: 100%;
    }

}

/* =========================================================
   HOME PAGE - ALTERNATING BLOG / INSIGHTS
========================================================= */

.rg-blog-alternate {
    position: relative;
    padding: 100px 0 110px;
    background: #f4f7f8;
    overflow: hidden;
}


/* BACKGROUND WORD */

.rg-blog-alternate::before {
    content: "INSIGHTS";
    position: absolute;
    right: -25px;
    top: 20px;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(11, 39, 52, .04);

    font-family: var(--font-display);

    font-size: 14vw;
    font-weight: 900;

    line-height: .8;

    letter-spacing: -.06em;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.rg-blog-alternate__head {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 360px;

    gap: 70px;

    align-items: end;

    margin-bottom: 55px;
}


.rg-blog-alternate__head h2 {
    margin: 12px 0 0;

    font-family: var(--font-display);

    font-size: clamp(46px, 5vw, 62px);

    font-weight: 800;

    line-height: .9;

    letter-spacing: -.025em;

    text-transform: uppercase;
}


.rg-blog-alternate__head h2 em {
    color: var(--green);

    font-family: var(--font-script);

    font-size: .84em;

    font-style: normal;
    font-weight: 400;

    letter-spacing: 0;

    text-transform: none;
}


.rg-blog-alternate__intro {
    padding-left: 22px;

    border-left: 1px solid var(--line);
}


.rg-blog-alternate__intro p {
    margin: 0 0 20px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


.rg-blog-alternate__intro>a {
    display: inline-flex;

    align-items: center;

    gap: 24px;

    padding-bottom: 6px;

    border-bottom: 1px solid var(--ink);

    font-family: var(--font-display);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .05em;

    text-transform: uppercase;
}


.rg-blog-alternate__intro>a span {
    color: var(--green-dark);

    font-size: 18px;
}


/* =========================================================
   BLOG LIST
========================================================= */

.rg-blog-alternate__list {
    position: relative;
    z-index: 2;

    display: grid;

    gap: 28px;
}


/* =========================================================
   BLOG ITEM
========================================================= */

.rg-blog-alternate__item {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr) minmax(350px, .85fr);

    min-height: 390px;

    background: var(--white);

    border: 1px solid var(--line);

    overflow: hidden;
}


/* SECOND BLOG REVERSE */

.rg-blog-alternate__item.is-reverse {
    grid-template-columns:
        minmax(350px, .85fr) minmax(0, 1.15fr);
}


.rg-blog-alternate__item.is-reverse .rg-blog-alternate__media {
    order: 2;
}


.rg-blog-alternate__item.is-reverse .rg-blog-alternate__content {
    order: 1;
}


/* =========================================================
   IMAGE
========================================================= */

.rg-blog-alternate__media {
    position: relative;

    min-height: 390px;

    overflow: hidden;

    background: #dce5e8;
}


.rg-blog-alternate__media::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(11, 39, 52, .24),
            transparent 48%);

    opacity: .75;

    transition: opacity .3s;
}


.rg-blog-alternate__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .75s var(--ease);
}


.rg-blog-alternate__item:hover .rg-blog-alternate__media img {
    transform: scale(1.04);
}


.rg-blog-alternate__item:hover .rg-blog-alternate__media::after {
    opacity: 1;
}


/* READ BADGE */

.rg-blog-alternate__read {
    position: absolute;

    z-index: 3;

    right: 18px;
    bottom: 18px;

    display: inline-flex;

    align-items: center;

    gap: 13px;

    padding: 10px 14px;

    background: var(--green);

    color: var(--ink);

    font-family: var(--font-display);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;

    transition:
        background .3s,
        transform .35s var(--ease);
}


.rg-blog-alternate__read i {
    font-style: normal;

    font-size: 15px;
}


.rg-blog-alternate__item:hover .rg-blog-alternate__read {
    background: var(--white);

    transform: translate(-4px, -4px);
}


/* =========================================================
   CONTENT
========================================================= */

.rg-blog-alternate__content {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;
    background-color: var(--ink);
    padding: 40px 38px;
}


/* green side line */

.rg-blog-alternate__content::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: var(--green);

    transform: scaleY(.25);

    transform-origin: top;

    transition:
        transform .45s var(--ease);
}


/* reverse green line on right */

.rg-blog-alternate__item.is-reverse .rg-blog-alternate__content::before {
    left: auto;
    right: 0;
}


.rg-blog-alternate__item:hover .rg-blog-alternate__content::before {
    transform: scaleY(1);
}


/* META */

.rg-blog-alternate__meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .11em;

    text-transform: uppercase;
}


.rg-blog-alternate__meta>span {
    color: var(--blue);
}


/* TITLE */

.rg-blog-alternate__content h3 {
    max-width: 570px;

    margin: 0 0 16px;

    font-family: var(--font-display);

    font-size: clamp(31px, 3vw, 43px);

    font-weight: 700;

    line-height: .94;

    letter-spacing: -.018em;
    color: #ffffff;
    text-transform: uppercase;
}


.rg-blog-alternate__content h3 a {
    transition: color .3s;
}


.rg-blog-alternate__item:hover .rg-blog-alternate__content h3 a {
    color: var(--green-dark);
}


/* EXCERPT */

.rg-blog-alternate__content>p {
    max-width: 520px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* READ LINK */

.rg-blog-alternate__link {
    display: inline-flex;

    align-items: center;
    color: #ffffff;
    gap: 24px;

    width: max-content;

    margin-top: 27px;

    padding-bottom: 6px;

    border-bottom: 1px solid #ffffff;

    font-family: var(--font-display);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .06em;

    text-transform: uppercase;
}


.rg-blog-alternate__link i {
    color: var(--green-dark);

    font-style: normal;

    font-size: 17px;

    transition:
        transform .3s var(--ease);
}


.rg-blog-alternate__link:hover i {
    transform: translate(4px, -4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .rg-blog-alternate__head {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .rg-blog-alternate__intro {
        max-width: 600px;

        padding: 18px 0 0;

        border-left: 0;

        border-top: 1px solid var(--line);
    }


    .rg-blog-alternate__item,
    .rg-blog-alternate__item.is-reverse {
        grid-template-columns:
            1fr 1fr;
    }


    .rg-blog-alternate__content {
        padding: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .rg-blog-alternate {
        padding: 75px 0 80px;
    }


    .rg-blog-alternate__head {
        margin-bottom: 36px;
    }


    .rg-blog-alternate__head h2 {
        font-size: 40px;
    }


    .rg-blog-alternate__list {
        gap: 20px;
    }


    .rg-blog-alternate__item,
    .rg-blog-alternate__item.is-reverse {
        display: flex;

        flex-direction: column;

        min-height: 0;
    }


    /* mobile ma image always top */

    .rg-blog-alternate__item.is-reverse .rg-blog-alternate__media {
        order: 1;
    }


    .rg-blog-alternate__item.is-reverse .rg-blog-alternate__content {
        order: 2;
    }


    .rg-blog-alternate__media {
        min-height: 270px;
    }


    .rg-blog-alternate__content {
        padding: 24px 20px;
    }


    .rg-blog-alternate__content h3 {
        font-size: 29px;
    }


    .rg-blog-alternate__content::before,
    .rg-blog-alternate__item.is-reverse .rg-blog-alternate__content::before {
        left: 0;
        right: auto;

        width: 100%;
        height: 3px;

        transform: scaleX(.25);

        transform-origin: left;
    }


    .rg-blog-alternate__item:hover .rg-blog-alternate__content::before {
        transform: scaleX(1);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .rg-blog-alternate__media {
        min-height: 230px;
    }


    .rg-blog-alternate__content h3 {
        font-size: 26px;
    }

}

/* =========================================================
   HOME PAGE - TRUST / PROJECT STATS
========================================================= */
.home-stats {
    position: relative;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--line);
}

.home-stat {
    min-height: 145px;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.home-stat::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--green);
    transition: width .35s var(--ease);
}

.home-stat:hover::after {
    width: 100%;
}

.home-stat > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.home-stat strong {
    margin-top: auto;
    font-family: var(--font-display);
    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 800;
    line-height: .85;
    color: var(--ink);
}

.home-stat p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .05em;
}
/* =========================================================
   HOME PAGE - PROCESS FLOW SECTION
========================================================= */

.process-section--flow {
    position: relative;
    padding: 105px 0 115px;
    background: linear-gradient(180deg, #f4f9fc 0%, #edf5f8 100%);
    overflow: hidden;
}

.process-section--flow::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 149, 199, .06), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(143, 189, 47, .07), transparent 22%);
    pointer-events: none;
}

.process-section--flow .section-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

/* =========================
   TIMELINE
========================= */

.process-flow {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
    margin-bottom: 60px;
}

.process-flow__line {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 58px;
    height: 2px;
    background: linear-gradient(90deg, #2c80bd 0%, #56a6d8 50%, #2c80bd 100%);
    opacity: .9;
}

.process-flow__item {
    position: relative;
    text-align: center;
    padding-top: 0;
}

.process-flow__number {
    display: block;
    margin-bottom: 10px;
    color: var(--blue-dark);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .04em;
}

.process-flow__icon {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border: 2px solid #3c95cf;
    border-radius: 50%;
    background: #f7fcff;
    box-shadow: 0 10px 24px rgba(30, 95, 138, .10);
}

.process-flow__icon span {
    font-size: 28px;
    line-height: 1;
}

.process-flow__item h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: var(--blue-dark);
    text-transform: none;
}

.process-flow__item p {
    max-width: 150px;
    margin: 0 auto;
    color: #667983;
    font-size: 13px;
    line-height: 1.55;
}

/* =========================
   BOTTOM SHOWCASE
========================= */

.process-showcase {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1fr .8fr;
    gap: 28px;
    align-items: end;
}

.process-showcase__card {
    margin: 0;
    overflow: hidden;
    background: transparent;
}

.process-showcase__card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.process-showcase__card--left {
    max-width: 260px;
    justify-self: start;
}

.process-showcase__card--center {
    max-width: 420px;
    justify-self: center;
}

.process-showcase__card--right {
    max-width: 280px;
    justify-self: end;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1180px) {
    .process-flow {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 34px;
    }

    .process-flow__line {
        display: none;
    }
}

@media (max-width: 980px) {
    .process-section--flow {
        padding: 90px 0;
    }

    .process-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }

    .process-showcase__card--left,
    .process-showcase__card--center,
    .process-showcase__card--right {
        max-width: 320px;
        justify-self: center;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 720px) {
    .process-section--flow {
        padding: 75px 0 82px;
    }

    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        margin-bottom: 42px;
    }

    .process-flow__number {
        font-size: 16px;
    }

    .process-flow__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 14px;
    }

    .process-flow__icon span {
        font-size: 24px;
    }

    .process-flow__item h3 {
        font-size: 22px;
    }

    .process-flow__item p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .process-flow {
        grid-template-columns: 1fr;
    }

    .process-showcase__card--left,
    .process-showcase__card--center,
    .process-showcase__card--right {
        max-width: 100%;
    }
}

/* =========================================================
   HOME PAGE - CREATIVE STATS / COUNTER
========================================================= */

.home-stats--modern {
    position: relative;
    z-index: 5;

    padding: 0;

    background: var(--white);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    overflow: hidden;
}


/* =========================================================
   GRID
========================================================= */

.home-stats-modern__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-left:
        1px solid var(--line);
}


/* =========================================================
   CARD
========================================================= */

.home-stat-modern {
    position: relative;

    min-height: 220px;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    padding: 28px 26px;

    background:
        var(--white);

    border-right:
        1px solid var(--line);

    overflow: hidden;

    isolation: isolate;

    transition:
        background .4s,
        color .4s,
        transform .4s var(--ease);
}


/* =========================================================
   BACKGROUND GRID PATTERN
========================================================= */

.home-stat-modern::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -3;

    background-image:
        linear-gradient(
            rgba(11, 39, 52, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 39, 52, .035) 1px,
            transparent 1px
        );

    background-size:
        32px 32px;

    opacity: .55;

    transition:
        opacity .35s;
}


/* =========================================================
   LARGE DECORATIVE CIRCLE
========================================================= */

.home-stat-modern::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -75px;
    top: -78px;

    z-index: -2;

    border-radius: 50%;

    border:
        1px solid rgba(143, 189, 47, .52);

    box-shadow:
        inset 0 0 0 28px
        rgba(143, 189, 47, .025);

    transition:
        transform .5s var(--ease),
        border-color .35s;
}


/* =========================================================
   EXTRA DECORATIVE SHAPE
========================================================= */

.home-stat-modern > strong::before {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    right: 10px;
    bottom: -15px;

    z-index: -1;

    border-radius: 50%;

    background:
        rgba(0, 149, 199, .06);

    transform:
        scale(.8);

    transition:
        transform .4s var(--ease),
        background .35s;
}


/* =========================================================
   COUNTER
========================================================= */

.home-stat-modern > strong {
    position: relative;
    z-index: 2;

    display: block;

    margin: 0;

    color: var(--ink);

    font-family:
        var(--font-display);

    font-size:
        clamp(48px, 4vw, 64px);

    font-weight: 800;

    line-height: .82;

    letter-spacing: -.035em;

    transition:
        color .35s,
        transform .4s var(--ease);
}


/* =========================================================
   LABEL
========================================================= */

.home-stat-modern > p {
    position: relative;
    z-index: 2;

    margin: 18px 0 0;

    color: var(--muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .10em;

    text-transform: uppercase;

    transition:
        color .35s;
}


/* =========================================================
   SMALL GREEN ACCENT LINE
========================================================= */

.home-stat-modern > p::before {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-bottom: 11px;

    background: var(--green);

    transition:
        width .4s var(--ease);
}


/* =========================================================
   DIFFERENT BACKGROUND POSITION PER CARD
========================================================= */

.home-stat-modern:nth-child(2)::after {
    right: auto;
    left: -85px;
    top: 110px;
}


.home-stat-modern:nth-child(3)::after {
    top: auto;
    bottom: -90px;
    right: -65px;
}


.home-stat-modern:nth-child(4)::after {
    top: -65px;
    bottom: -80px;
    left: -75px;
    right: auto;
}


/* =========================================================
   HOVER
========================================================= */

.home-stat-modern:hover {
    z-index: 3;

    background: var(--ink);

    color: var(--white);

    transform: translateY(-5px);
}


.home-stat-modern:hover::before {
    opacity: .12;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .05) 1px,
            transparent 1px
        );
}


.home-stat-modern:hover::after {
    border-color:
        rgba(143, 189, 47, .42);

    transform:
        scale(1.12);
}


.home-stat-modern:hover > strong {
    color: var(--white);

    transform:
        translateY(-4px);
}


.home-stat-modern:hover > strong::before {
    background:
        rgba(143, 189, 47, .10);

    transform:
        scale(1.15);
}


.home-stat-modern:hover > p {
    color:
        rgba(255, 255, 255, .62);
}


.home-stat-modern:hover > p::before {
    width: 50px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .home-stats-modern__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .home-stat-modern {
        min-height: 185px;

        border-bottom:
            1px solid var(--line);
    }

    .home-stat-modern > strong {
        font-size: 48px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .home-stats-modern__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .home-stat-modern {
        min-height: 160px;

        padding: 20px;

        border-right:
            1px solid var(--line);
    }

    .home-stat-modern > strong {
        font-size: 40px;
    }

    .home-stat-modern > p {
        font-size: 8px;

        letter-spacing: .08em;
    }

    .home-stat-modern::after {
        width: 130px;
        height: 130px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-stats-modern__grid {
        grid-template-columns: 1fr;
    }

    .home-stat-modern {
        min-height: 135px;

        border-right: 0;
    }

    .home-stat-modern > strong {
        font-size: 38px;
    }

}

/* =========================================================
   HOME PAGE - WORK PROCESS
========================================================= */

.rg-process {
    position: relative;
    padding: 95px 0 110px;

    background:
        linear-gradient(
            180deg,
            #edf8ff 0%,
            #eaf6fc 72%,
            #dceffa 100%
        );

    overflow: hidden;
}


/* subtle background graphics */

.rg-process::before {
    content: "";

    position: absolute;

    width: 470px;
    height: 470px;

    left: -230px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid rgba(0,149,199,.09);
}


.rg-process::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -350px;
    bottom: -330px;

    border-radius: 50%;

    border:
        1px solid rgba(0,149,199,.08);
}


/* =========================================================
   HEADING
========================================================= */

.rg-process__head {
    position: relative;

    z-index: 5;

    max-width: 640px;

    margin-bottom: 60px;

}


.rg-process__head h2 {
    margin: 10px 0 0;

    font-family: var(--font-display);

    font-size: 52px;
    font-weight: 800;

    line-height: .9;

    color: var(--ink);

    text-transform: uppercase;
}


.rg-process__head h2 em {
    color: var(--green);

    font-family: var(--font-script);

    font-size: .82em;

    font-style: normal;
    font-weight: 400;

    text-transform: none;
}


.rg-process__intro {
    max-width: 460px;

    margin-top: 18px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.7;
}


.rg-process__head .eyebrow {
    justify-content: center;
}


/* =========================================================
   TRANSFORMATION BANNER (before / after)
========================================================= */

.rg-process__transform {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 30px;

    margin-bottom: 26px;
}


.rg-process__transform-card {
    position: relative;

    padding: 28px 26px 32px;

    text-align: center;

    background: rgba(255,255,255,.92);

    border: 1px solid rgba(11,57,82,.06);
    border-radius: 26px;

    box-shadow: 0 20px 50px rgba(11,57,82,.10);

    transition:
        transform .4s var(--ease),
        box-shadow .4s var(--ease);
}


.rg-process__transform-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 28px 60px rgba(11,57,82,.16);
}


.rg-process__transform-tag {
    display: inline-block;

    margin-bottom: 18px;
    padding: 6px 16px;

    background: rgba(12,111,166,.08);

    border-radius: 30px;

    color: var(--blue-dark);

    font-family: var(--font-display);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.rg-process__transform-tag--done {
    background: rgba(143,189,47,.14);

    color: var(--green-dark);
}


.rg-process__transform-media {
    display: flex;

    align-items: center;
    justify-content: center;

    height: 190px;

    margin-bottom: 20px;
}


.rg-process__transform-media img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    filter: drop-shadow(0 18px 18px rgba(11,57,82,.18));
}


.rg-process__transform-card h3 {
    margin: 0 0 8px;

    color: var(--ink);

    font-family: var(--font-display);

    font-size: 24px;
    font-weight: 800;

    text-transform: uppercase;
}


.rg-process__transform-card p {
    max-width: 230px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 13.5px;
    line-height: 1.6;
}


/* connector between the two cards */

.rg-process__transform-link {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: row;

    gap: 10px;
}


.rg-process__transform-line {
    width: 46px;
    height: 2px;

    background:
        repeating-linear-gradient(
            90deg,
            #0c6fa6 0 6px,
            transparent 6px 11px
        );
}


.rg-process__transform-badge {
    width: 92px;
    height: 92px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--green) 0%,
            var(--blue) 100%
        );

    color: var(--white);

    font-family: var(--font-display);

    font-size: 13px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: .02em;
    text-align: center;
    text-transform: uppercase;

    box-shadow:
        0 0 0 7px rgba(255,255,255,.65),
        0 14px 30px rgba(12,111,166,.28);
}


/* bridge label into the timeline */

.rg-process__steps-label {
    position: relative;

    z-index: 5;

    margin: 0 0 40px;

    color: var(--blue-dark);

    font-family: var(--font-display);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}


/* =========================================================
   TIMELINE
========================================================= */

.rg-process__timeline {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(7, minmax(0,1fr));

    gap: 10px;

    padding-top: 15px;
}


/* connecting progress rail */

.rg-process__line {
    position: absolute;

    left: 7%;
    right: 7%;

    top: 42px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--green) 0%,
            var(--blue) 55%,
            var(--blue-dark) 100%
        );

    opacity: .35;
}


.rg-process__line::after {
    content: "";

    position: absolute;

    right: -3px;
    top: -3px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--blue-dark);
}


/* =========================================================
   STEP
========================================================= */

.rg-process__step {
    position: relative;

    text-align: center;

    z-index: 5;

    transition: transform .35s var(--ease);
}


.rg-process__step:hover {
    transform: translateY(-6px);
}


/* =========================================================
   ICON
========================================================= */

.rg-process__icon {
    position: relative;

    width: 84px;
    height: 84px;

    margin: 0 auto 18px;
}


.rg-process__icon img {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    box-shadow: 0 10px 22px rgba(12,111,166,.22);

    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}


.rg-process__step:hover .rg-process__icon img {
    transform: scale(1.08);

    box-shadow: 0 16px 30px rgba(12,111,166,.32);
}


.rg-process__number {
    position: absolute;

    top: -6px;
    right: -6px;

    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border: 2px solid var(--white);
    border-radius: 50%;

    background: var(--white);

    color: var(--blue-dark);

    font-family: var(--font-display);

    font-size: 12px;
    font-weight: 800;

    box-shadow: 0 4px 10px rgba(11,57,82,.2);
}


/* =========================================================
   TEXT
========================================================= */

.rg-process__step h3 {
    margin: 0 0 7px;

    color: #0b4267;

    font-family: var(--font-display);

    font-size: 20px;
    font-weight: 700;

    line-height: 1;

    text-transform: none;
}


.rg-process__step p {
    max-width: 130px;

    margin: 0 auto;

    color: #617783;

    font-size: 11px;

    line-height: 1.45;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:980px) {

    .rg-process {
        padding-top: 80px;
    }


    .rg-process__transform-media {
        height: 150px;
    }


    .rg-process__timeline {
        grid-template-columns:
            repeat(4,1fr);

        gap:
            35px 15px;
    }


    .rg-process__line {
        display: none;
    }


    .rg-process__head h2 {
        font-size: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:720px) {

    .rg-process {
        padding:
            70px 0 60px;
    }


    .rg-process__head {
        margin-bottom: 42px;
    }


    .rg-process__head h2 {
        font-size: 32px;
    }


    .rg-process__intro {
        font-size: 14px;
    }


    /* transform cards stack */

    .rg-process__transform {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .rg-process__transform-card {
        padding: 24px 22px 26px;
    }


    .rg-process__transform-media {
        height: 130px;
    }


    .rg-process__transform-link {
        flex-direction: column;

        padding: 4px 0;
    }


    .rg-process__transform-line {
        width: 2px;
        height: 26px;

        background:
            repeating-linear-gradient(
                180deg,
                #0c6fa6 0 6px,
                transparent 6px 11px
            );
    }


    .rg-process__transform-badge {
        width: 78px;
        height: 78px;

        font-size: 11.5px;
    }


    .rg-process__steps-label {
        margin-bottom: 34px;

        font-size: 12.5px;
    }


    /* vertical step timeline */

    .rg-process__timeline {
        grid-template-columns: 1fr;

        gap: 0;

        padding-top: 4px;
    }


    .rg-process__line {
        left: 32px;
        right: auto;
        top: 6px;
        bottom: 36px;

        width: 2px;
        height: auto;

        background:
            linear-gradient(
                180deg,
                var(--green) 0%,
                var(--blue) 55%,
                var(--blue-dark) 100%
            );
    }


    .rg-process__line::after {
        display: none;
    }


    .rg-process__step {
        display: flex;

        align-items: flex-start;
        text-align: left;

        gap: 18px;

        padding-bottom: 30px;
    }


    .rg-process__step:last-child {
        padding-bottom: 0;
    }


    .rg-process__step:hover {
        transform: none;
    }


    .rg-process__icon {
        flex: 0 0 auto;

        width: 64px;
        height: 64px;

        margin: 0;
    }


    .rg-process__step-body {
        flex: 1 1 auto;

        min-width: 0;
    }


    .rg-process__step h3 {
        font-size: 19px;
    }


    .rg-process__step p {
        max-width: none;

        margin: 0;

        overflow: hidden;

        font-size: 12px;

        white-space: nowrap;
        text-overflow: ellipsis;
    }

}
