.r2f-services-page {
    background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.r2f-page-hero {
    position: relative;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(135deg,
            #061124 0%,
            #0b2447 58%,
            #123f73 100%);
}

.r2f-page-hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -160px;
    top: -260px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 0 0 80px rgba(255, 255, 255, .025),
        0 0 0 160px rgba(255, 255, 255, .018);
}

.r2f-page-hero__inner {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(300px, .62fr);

    gap: 70px;

    align-items: center;

    padding:
        92px 0 105px;
}

.r2f-page-hero__content {
    max-width: 780px;
}

.r2f-page-hero .r2f-kicker {
    color: var(--r2f-gold-400);
}

.r2f-page-hero h1 {
    margin:
        0 0 22px;

    color: #fff;

    font-family:
        var(--r2f-font-display);

    font-size:
        clamp(3rem, 5.4vw, 5.4rem);

    font-weight: 850;

    letter-spacing: -.06em;

    line-height: .96;
}

.r2f-page-hero__copy {
    max-width: 710px;

    color: #cad7e7;

    font-size:
        clamp(1rem, 1.4vw, 1.13rem);

    line-height: 1.75;
}

.r2f-page-hero__actions {
    display: flex;

    flex-wrap: wrap;

    gap: 11px;

    margin-top: 29px;
}


/* =========================================================
   HERO MINI CARD
========================================================= */

.r2f-page-hero__card {
    padding: 24px;

    border:
        1px solid rgba(255, 255, 255, .14);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);
}

.r2f-page-hero__card strong {
    display: block;

    margin-bottom: 16px;

    color: #fff;

    font-family:
        var(--r2f-font-display);

    font-size: 1.15rem;
}

.r2f-page-hero__list {
    display: grid;

    gap: 10px;
}

.r2f-page-hero__list span {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #d6e1ef;

    font-size: .85rem;
}

.r2f-page-hero__list i {
    color: var(--r2f-gold-400);
}


/* =========================================================
   QUICK NAV
========================================================= */

.r2f-service-nav {
    position: sticky;

    top: 82px;

    z-index: 900;

    border-bottom:
        1px solid #e4eaf2;

    background:
        rgba(255, 255, 255, .95);

    backdrop-filter: blur(15px);
}

.r2f-service-nav__inner {
    display: flex;

    gap: 7px;

    padding:
        11px 0;

    overflow-x: auto;

    scrollbar-width: none;
}

.r2f-service-nav__inner::-webkit-scrollbar {
    display: none;
}

.r2f-service-nav a {
    flex: 0 0 auto;

    padding:
        9px 13px;

    border:
        1px solid #dfe7f0;

    border-radius: 999px;

    color: #425670;

    background: #fff;

    font-size: .77rem;

    font-weight: 750;

    text-decoration: none;

    transition:
        color var(--r2f-transition),
        border-color var(--r2f-transition),
        background var(--r2f-transition);
}

.r2f-service-nav a:hover,
.r2f-service-nav a.is-active {
    color: #fff;

    border-color:
        var(--r2f-blue-700);

    background:
        var(--r2f-blue-700);
}


/* =========================================================
   SERVICES INTRO
========================================================= */

.r2f-services-intro {
    padding:
        90px 0 45px;
}

.r2f-services-intro__grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 60px;

    align-items: end;
}

.r2f-services-intro__grid p {
    margin: 0;
}


/* =========================================================
   SERVICE SECTIONS
========================================================= */

.r2f-service-stack {
    padding:
        30px 0 105px;
}

.r2f-service-detail {
    display: grid;

    grid-template-columns:
        .78fr 1.22fr;

    gap: 32px;

    margin-bottom: 24px;

    scroll-margin-top: 160px;
}

.r2f-service-detail:nth-child(even) {
    grid-template-columns:
        1.22fr .78fr;
}

.r2f-service-detail:nth-child(even) .r2f-service-detail__summary {
    order: 2;
}

.r2f-service-detail:nth-child(even) .r2f-service-detail__body {
    order: 1;
}

.r2f-service-detail__summary,
.r2f-service-detail__body {
    border:
        1px solid #e0e7f0;

    border-radius: 26px;

    background: #fff;
}

.r2f-service-detail__summary {
    position: relative;

    overflow: hidden;

    padding: 32px;

    background:
        linear-gradient(145deg,
            #f9fbfe,
            #eef5fd);
}

.r2f-service-detail__summary::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -80px;
    bottom: -95px;

    border-radius: 50%;

    background:
        rgba(30, 99, 183, .07);
}

.r2f-service-detail__icon {
    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    margin-bottom: 27px;

    border-radius: 16px;

    color:
        var(--r2f-blue-700);

    background: #fff;

    box-shadow:
        0 10px 25px rgba(15, 53, 95, .08);

    font-size: 1.15rem;
}

.r2f-service-detail__eyebrow {
    display: block;

    margin-bottom: 8px;

    color:
        var(--r2f-blue-700);

    font-size: .72rem;

    font-weight: 850;

    letter-spacing: .1em;

    text-transform: uppercase;
}

.r2f-service-detail__summary h2 {
    margin:
        0 0 13px;

    color:
        var(--r2f-navy-950);

    font-family:
        var(--r2f-font-display);

    font-size:
        clamp(1.8rem, 3vw, 2.55rem);

    font-weight: 830;

    letter-spacing: -.045em;
}

.r2f-service-detail__summary p {
    margin: 0;

    color: #67778d;

    font-size: .91rem;

    line-height: 1.72;
}

.r2f-service-detail__summary .r2f-btn {
    position: relative;

    z-index: 2;

    margin-top: 25px;
}

.r2f-service-detail__body {
    padding: 33px;
}

.r2f-service-detail__body>p {
    margin:
        0 0 25px;

    color: #5d6e84;

    font-size: .96rem;

    line-height: 1.8;
}

.r2f-service-detail__columns {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 28px;
}

.r2f-service-detail__columns h3 {
    margin:
        0 0 14px;

    color:
        var(--r2f-navy-950);

    font-size: .82rem;

    font-weight: 850;

    letter-spacing: .07em;

    text-transform: uppercase;
}

.r2f-check-list {
    display: grid;

    gap: 10px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.r2f-check-list li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #52647c;

    font-size: .84rem;

    line-height: 1.5;
}

.r2f-check-list i {
    margin-top: 4px;

    color:
        var(--r2f-success);

    font-size: .74rem;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.r2f-service-note {
    margin-top: 18px;

    padding: 17px 19px;

    border-left:
        3px solid var(--r2f-gold-500);

    border-radius:
        0 12px 12px 0;

    color: #68798f;

    background: #fffaf0;

    font-size: .78rem;

    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.r2f-services-cta {
    padding:
        0 0 115px;
}

.r2f-services-cta__card {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;

    padding: 38px;

    border-radius: 30px;

    color: #fff;

    background:
        linear-gradient(135deg,
            #0b2342,
            #12487d);

    box-shadow:
        var(--r2f-shadow-md);
}

.r2f-services-cta__card h2 {
    margin:
        0 0 8px;

    color: #fff;

    font-family:
        var(--r2f-font-display);

    font-size:
        clamp(1.8rem, 3.3vw, 3rem);

    font-weight: 820;

    letter-spacing: -.045em;
}

.r2f-services-cta__card p {
    max-width: 670px;

    margin: 0;

    color: #c8d5e5;

    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .r2f-page-hero__inner {
        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            70px 0 85px;
    }

    .r2f-service-nav {
        top: 70px;
    }

    .r2f-services-intro__grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }

    .r2f-service-detail,
    .r2f-service-detail:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .r2f-service-detail:nth-child(even) .r2f-service-detail__summary,
    .r2f-service-detail:nth-child(even) .r2f-service-detail__body {
        order: initial;
    }

    .r2f-services-cta__card {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 767.98px) {

    .r2f-page-hero__inner {
        padding:
            55px 0 70px;
    }

    .r2f-page-hero h1 {
        font-size:
            clamp(2.7rem, 13vw, 4rem);
    }

    .r2f-page-hero__actions {
        display: grid;
    }

    .r2f-page-hero__actions .r2f-btn {
        width: 100%;
    }

    .r2f-services-intro {
        padding:
            65px 0 25px;
    }

    .r2f-service-stack {
        padding-bottom: 75px;
    }

    .r2f-service-detail {
        gap: 13px;

        margin-bottom: 26px;
    }

    .r2f-service-detail__summary,
    .r2f-service-detail__body {
        border-radius: 20px;
    }

    .r2f-service-detail__summary,
    .r2f-service-detail__body {
        padding: 23px;
    }

    .r2f-service-detail__columns {
        grid-template-columns: 1fr;

        gap: 23px;
    }

    .r2f-services-cta {
        padding-bottom: 85px;
    }

    .r2f-services-cta__card {
        padding: 25px;

        border-radius: 22px;
    }

    .r2f-services-cta__card .r2f-btn {
        width: 100%;
    }
}