/* #region hero */
:root {
    --v2-rcm-navy: #17152b;
    --v2-rcm-purple-dark: #32145f;
    --v2-rcm-purple: #54249a;
    --v2-rcm-purple-light: #8662c6;

    --v2-rcm-lavender: #eee9f8;

    --v2-rcm-coral: #ff5757;

    --v2-rcm-ink: #181521;
    --v2-rcm-muted: #696272;

    --v2-rcm-white: #ffffff;
}

/* =========================================================
   HERO
========================================================= */

.v2-rcm-hero {
    position: relative;

    min-height: min(860px, 94svh);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 76% 48%,
            rgba(84, 36, 154, 0.13),
            transparent 31%
        ),
        radial-gradient(
            circle at 95% 100%,
            rgba(255, 87, 87, 0.045),
            transparent 25%
        ),
        #fbfafc;

    padding: 3rem 0 4rem;
}

/* =========================================================
   CONTAINER
========================================================= */

.v2-rcm-hero-container {
    width: min(1380px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(570px, 1.12fr);

    align-items: center;

    gap: 30px;
}

/* =========================================================
   CONTENT
========================================================= */

.v2-rcm-hero-content {
    position: relative;
    z-index: 10;

    max-width: 660px;
}

.v2-rcm-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 21px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--v2-rcm-purple);
}

.v2-rcm-hero-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--v2-rcm-coral);
}

.v2-rcm-hero-headline {
    margin: 0;

    font-size: clamp(45px, 4.35vw, 72px);

    line-height: 0.98;

    letter-spacing: -0.047em;

    font-weight: 800;

    color: var(--v2-rcm-ink);
}

.v2-rcm-hero-headline span {
    display: block;

    margin-top: 9px;

    color: var(--v2-rcm-purple);
}

.v2-rcm-hero-subheading {
    max-width: 610px;

    margin: 27px 0 17px;

    font-size: clamp(19px, 1.4vw, 22px);

    line-height: 1.43;

    font-weight: 600;

    color: #40394a;
}

.v2-rcm-hero-body {
    max-width: 625px;

    margin: 0;

    font-size: 16px;

    line-height: 1.7;

    color: var(--v2-rcm-muted);
}

.v2-rcm-hero-body--secondary {
    margin-top: 10px;
}

/* =========================================================
   CTA
========================================================= */

.v2-rcm-hero-cta-wrap {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 31px;
}

.v2-rcm-hero-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 53px;

    padding: 0 23px;

    border-radius: 8px;

    color: var(--v2-rcm-white);

    background: var(--v2-rcm-purple-dark);

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;

    box-shadow: 0 13px 30px rgba(50, 20, 95, 0.18);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.v2-rcm-hero-cta:hover {
    transform: translateY(-2px);

    box-shadow: 0 18px 36px rgba(50, 20, 95, 0.23);
}

.v2-rcm-hero-cta-note {
    font-size: 11px;

    color: #807888;
}

/* =========================================================
   VISUAL
========================================================= */

.v2-rcm-hero-visual {
    position: relative;

    height: 680px;

    min-width: 0;
}

/* =========================================================
   ATMOSPHERE
========================================================= */

.v2-rcm-hero-atmosphere {
    position: absolute;

    width: 570px;
    height: 570px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(83, 44, 151, 0.17) 0%,
        rgba(83, 44, 151, 0.07) 42%,
        transparent 72%
    );
}

/* =========================================================
   GRID
========================================================= */

.v2-rcm-hero-grid {
    position: absolute;

    width: 510px;
    height: 510px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    opacity: 0.23;

    background-image:
        linear-gradient(rgba(84, 36, 154, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 36, 154, 0.12) 1px, transparent 1px);

    background-size: 42px 42px;

    mask-image: radial-gradient(circle, black 20%, transparent 73%);
}

/* =========================================================
   ORBITAL SYSTEM
========================================================= */

.v2-rcm-hero-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    border: 1px solid rgba(84, 36, 154, 0.13);

    transform: translate(-50%, -50%) rotate(-18deg);
}

.v2-rcm-hero-ring--one {
    width: 575px;
    height: 410px;
}

.v2-rcm-hero-ring--two {
    width: 465px;
    height: 540px;

    transform: translate(-50%, -50%) rotate(38deg);

    border-color: rgba(84, 36, 154, 0.1);
}

.v2-rcm-hero-ring--three {
    width: 365px;
    height: 365px;

    border-color: rgba(255, 87, 87, 0.13);
}

/* =========================================================
   CONNECTIONS
========================================================= */

.v2-rcm-hero-connections {
    position: absolute;

    inset: 30px;

    z-index: 2;
}

.v2-rcm-hero-connections svg {
    width: 100%;
    height: 100%;
}

.v2-rcm-hero-connections path {
    stroke: rgba(84, 36, 154, 0.18);

    stroke-width: 1;

    stroke-dasharray: 5 7;
}

.v2-rcm-hero-connections circle {
    fill: var(--v2-rcm-purple);
}

/* =========================================================
   CORE
========================================================= */

.v2-rcm-hero-core {
    position: absolute;

    z-index: 5;

    left: 50%;
    top: 50%;

    width: 190px;
    height: 190px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: radial-gradient(circle at 35% 30%, #7851b9, #32145f 70%);

    box-shadow: 0 35px 70px rgba(50, 20, 95, 0.23);
}

.v2-rcm-hero-core::before {
    content: "";

    position: absolute;

    inset: -15px;

    border-radius: 50%;

    border: 1px solid rgba(84, 36, 154, 0.25);
}

.v2-rcm-hero-core-orbit {
    position: absolute;

    inset: -30px;

    border-radius: 50%;

    border: 1px dashed rgba(84, 36, 154, 0.24);

    transform: rotate(25deg);
}

.v2-rcm-hero-core-inner {
    position: relative;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.16);

    background: rgba(23, 21, 43, 0.24);

    color: white;
}

.v2-rcm-hero-core-label {
    margin-bottom: 5px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.18em;
}

.v2-rcm-hero-core-inner strong {
    font-size: 37px;

    line-height: 1;

    letter-spacing: -0.05em;
}

.v2-rcm-hero-core-inner small {
    margin-top: 7px;

    font-size: 9px;

    opacity: 0.68;
}

/* =========================================================
   NODES
========================================================= */

.v2-rcm-node {
    position: absolute;

    z-index: 7;

    width: 125px;

    padding: 13px 14px;

    border-radius: 12px;

    border: 1px solid rgba(84, 36, 154, 0.1);

    background: rgba(255, 255, 255, 0.82);

    box-shadow: 0 17px 40px rgba(42, 21, 79, 0.09);

    backdrop-filter: blur(14px);
}

.v2-rcm-node-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    margin-bottom: 8px;

    border-radius: 7px;

    font-size: 8px;

    font-weight: 800;

    color: var(--v2-rcm-purple);

    background: var(--v2-rcm-lavender);
}

.v2-rcm-node strong {
    display: block;

    font-size: 12px;

    line-height: 1.25;

    color: var(--v2-rcm-ink);
}

.v2-rcm-node small {
    display: block;

    margin-top: 3px;

    font-size: 9px;

    color: #8a8291;
}

/* =========================================================
   NODE POSITIONS
========================================================= */

.v2-rcm-node--eligibility {
    left: 22%;
    top: 8%;
}

.v2-rcm-node--coding {
    right: 5%;
    top: 22%;
}

.v2-rcm-node--claims {
    right: 2%;
    bottom: 27%;
}

.v2-rcm-node--payments {
    left: 39%;
    bottom: 4%;
}

.v2-rcm-node--patients {
    left: 4%;
    bottom: 27%;
}

.v2-rcm-node--denials {
    left: 5%;
    top: 22%;
}

/* =========================================================
   DATA DOTS
========================================================= */

.v2-rcm-data-dot {
    position: absolute;

    z-index: 8;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--v2-rcm-coral);

    box-shadow: 0 0 0 7px rgba(255, 87, 87, 0.07);
}

.v2-rcm-data-dot--one {
    left: 31%;
    top: 23%;
}

.v2-rcm-data-dot--two {
    right: 28%;
    top: 34%;
}

.v2-rcm-data-dot--three {
    right: 28%;
    bottom: 23%;
}

.v2-rcm-data-dot--four {
    left: 25%;
    bottom: 32%;
}

/* =========================================================
   STATUS
========================================================= */

.v2-rcm-status {
    position: absolute;

    z-index: 8;

    right: 4%;
    bottom: 7%;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 13px;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid rgba(84, 36, 154, 0.09);

    box-shadow: 0 12px 30px rgba(42, 21, 79, 0.07);

    backdrop-filter: blur(12px);
}

.v2-rcm-status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #5dba78;

    box-shadow: 0 0 0 5px rgba(93, 186, 120, 0.09);
}

.v2-rcm-status strong {
    display: block;

    font-size: 10px;

    color: var(--v2-rcm-ink);
}

.v2-rcm-status small {
    display: block;

    margin-top: 2px;

    font-size: 8px;

    color: #89818f;
}

/* =========================================================
   PERSON
========================================================= */

.v2-rcm-hero-person {
    position: absolute;

    z-index: 4;

    right: 7%;

    bottom: 0;

    width: min(300px, 28vw);

    height: auto;

    opacity: 0.92;

    object-fit: contain;

    filter: drop-shadow(0 25px 35px rgba(36, 18, 70, 0.12));
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .v2-rcm-hero-container {
        width: min(1180px, calc(100% - 50px));

        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(500px, 1.1fr);
    }

    .v2-rcm-hero-visual {
        height: 620px;
    }

    .v2-rcm-node {
        transform: scale(0.92);
    }

    .v2-rcm-hero-person {
        width: 270px;
    }
}

@media (max-width: 960px) {
    .v2-rcm-hero {
        padding: 4rem 0 3rem;
    }

    .v2-rcm-hero-container {
        grid-template-columns: 1fr;
    }

    .v2-rcm-hero-content {
        max-width: 760px;
    }

    .v2-rcm-hero-visual {
        height: 610px;

        margin-top: 15px;
    }
}

@media (max-width: 600px) {
    .v2-rcm-hero {
        min-height: auto;

        padding: 3rem 0 0;
    }

    .v2-rcm-hero-container {
        width: min(100% - 32px, 540px);
    }

    .v2-rcm-hero-headline {
        font-size: clamp(38px, 11vw, 52px);
    }

    .v2-rcm-hero-subheading {
        font-size: 18px;
    }

    .v2-rcm-hero-body {
        font-size: 15px;
    }

    .v2-rcm-hero-cta-wrap {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .v2-rcm-hero-visual {
        height: 500px;

        margin-top: 10px;
    }

    .v2-rcm-hero-atmosphere {
        width: 420px;
        height: 420px;
    }

    .v2-rcm-hero-grid {
        width: 390px;
        height: 390px;

        background-size: 32px 32px;
    }

    .v2-rcm-hero-ring--one {
        width: 420px;
        height: 310px;
    }

    .v2-rcm-hero-ring--two {
        width: 350px;
        height: 420px;
    }

    .v2-rcm-hero-ring--three {
        width: 280px;
        height: 280px;
    }

    .v2-rcm-hero-core {
        width: 145px;
        height: 145px;
    }

    .v2-rcm-hero-core-inner {
        width: 108px;
        height: 108px;
    }

    .v2-rcm-hero-core-inner strong {
        font-size: 30px;
    }

    .v2-rcm-node {
        width: 100px;

        padding: 10px;

        transform: scale(0.82);
    }

    .v2-rcm-node--eligibility {
        left: 14%;
        top: 5%;
    }

    .v2-rcm-node--coding {
        right: -2%;
        top: 19%;
    }

    .v2-rcm-node--claims {
        right: -4%;
        bottom: 25%;
    }

    .v2-rcm-node--payments {
        left: 35%;
        bottom: 2%;
    }

    .v2-rcm-node--patients {
        left: -4%;
        bottom: 25%;
    }

    .v2-rcm-node--denials {
        left: -2%;
        top: 19%;
    }

    .v2-rcm-hero-person {
        width: 210px;

        right: 50%;

        transform: translateX(50%);

        opacity: 0.88;
    }

    .v2-rcm-status {
        right: 0;
        bottom: 8%;

        transform: scale(0.85);
        transform-origin: bottom right;
    }
}

@media (max-width: 390px) {
    .v2-rcm-hero-visual {
        height: 450px;
    }

    .v2-rcm-hero-core {
        width: 125px;
        height: 125px;
    }

    .v2-rcm-hero-core-inner {
        width: 94px;
        height: 94px;
    }

    .v2-rcm-node {
        transform: scale(0.72);
    }

    .v2-rcm-hero-person {
        width: 190px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-rcm-hero-cta {
        transition: none;
    }
}

/* #endregion hero */

/* #region rcm-services */
/* =========================================================
   RCM SERVICES SECTION
   Three-Column Card Grid with Distinct Accents
   ========================================================= */

:root {
    --v2-rcm-coral: #ff5757;
    --v2-rcm-purple: #54249a;
    --v2-rcm-teal: #06a88a;
    --v2-rcm-blue: #0064d9;
    --v2-rcm-gold: #e6a817;
    --v2-rcm-rose: #e64a7a;
    --v2-rcm-ink: #181321;
    --v2-rcm-muted: #686172;
    --v2-rcm-border: rgba(84, 36, 154, 0.08);
}

.v2-rcm-services {
    position: relative;
    background: #f8f6fa;
    padding: 100px 0;
    overflow: hidden;
}

.v2-rcm-services-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.v2-rcm-services-header {
    max-width: 800px;
    margin-bottom: 55px;
}

.v2-rcm-services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-rcm-purple);
}

.v2-rcm-services-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-rcm-coral);
}

.v2-rcm-services-headline {
    margin: 0 0 18px;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--v2-rcm-ink);
}

.v2-rcm-services-body {
    max-width: 700px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--v2-rcm-muted);
}

/* =========================================================
   SERVICE GRID
========================================================= */

.v2-rcm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================================================
   CARD BASE
========================================================= */

.v2-rcm-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 28px 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--v2-rcm-border);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.v2-rcm-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0.6;
}

.v2-rcm-card--coral .v2-rcm-card-accent {
    background: var(--v2-rcm-coral);
}
.v2-rcm-card--purple .v2-rcm-card-accent {
    background: var(--v2-rcm-purple);
}
.v2-rcm-card--teal .v2-rcm-card-accent {
    background: var(--v2-rcm-teal);
}
.v2-rcm-card--blue .v2-rcm-card-accent {
    background: var(--v2-rcm-blue);
}
.v2-rcm-card--gold .v2-rcm-card-accent {
    background: var(--v2-rcm-gold);
}
.v2-rcm-card--rose .v2-rcm-card-accent {
    background: var(--v2-rcm-rose);
}

.v2-rcm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(50, 20, 95, 0.1);
    border-color: rgba(84, 36, 154, 0.15);
}

/* =========================================================
   CARD ICON
========================================================= */

.v2-rcm-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.v2-rcm-card--coral .v2-rcm-card-icon {
    background: rgba(255, 87, 87, 0.1);
    color: #e64a4a;
}

.v2-rcm-card--purple .v2-rcm-card-icon {
    background: rgba(84, 36, 154, 0.1);
    color: var(--v2-rcm-purple);
}

.v2-rcm-card--teal .v2-rcm-card-icon {
    background: rgba(6, 168, 138, 0.1);
    color: var(--v2-rcm-teal);
}

.v2-rcm-card--blue .v2-rcm-card-icon {
    background: rgba(0, 100, 217, 0.1);
    color: var(--v2-rcm-blue);
}

.v2-rcm-card--gold .v2-rcm-card-icon {
    background: rgba(230, 168, 23, 0.12);
    color: #d4a017;
}

.v2-rcm-card--rose .v2-rcm-card-icon {
    background: rgba(230, 74, 122, 0.1);
    color: var(--v2-rcm-rose);
}

/* =========================================================
   CARD CONTENT
========================================================= */

.v2-rcm-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--v2-rcm-ink);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.v2-rcm-card-description {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-rcm-muted);
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .v2-rcm-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .v2-rcm-services {
        padding: 50px 0;
    }

    .v2-rcm-services-container {
        width: min(100% - 32px, 540px);
    }

    .v2-rcm-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .v2-rcm-card {
        padding: 24px 20px 20px;
    }

    .v2-rcm-services-headline {
        font-size: clamp(28px, 7vw, 38px);
    }

    .v2-rcm-card-title {
        font-size: 1.05rem;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-rcm-card {
        transition: none;
    }

    .v2-rcm-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* #endregion rcm-services */

/* #region rcm-why-outsource */
/* =========================================================
   RCM WHY OUTSOURCE SECTION
   Dark Split Layout with Benefit Grid
   ========================================================= */

:root {
    --v2-rcmw-bg: #32145f;
    --v2-rcmw-bg-gradient: linear-gradient(135deg, #32145f 0%, #54249a 100%);
    --v2-rcmw-coral: #ff5757;
    --v2-rcmw-teal: #06a88a;
    --v2-rcmw-gold: #e6a817;
    --v2-rcmw-blue: #0064d9;
    --v2-rcmw-rose: #e64a7a;
    --v2-rcmw-indigo: #4f46e5;
    --v2-rcmw-white: #ffffff;
    --v2-rcmw-muted: rgba(255, 255, 255, 0.7);
    --v2-rcmw-border: rgba(255, 255, 255, 0.08);
}

.v2-rcm-why {
    position: relative;
    background: var(--v2-rcmw-bg);
    padding: 100px 0;
    overflow: hidden;
}

/* Atmospheric glow */
.v2-rcm-why::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 87, 87, 0.12);
    filter: blur(100px);
    pointer-events: none;
}

.v2-rcm-why-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* =========================================================
   LEFT HEADER
========================================================= */

.v2-rcm-why-header {
    position: sticky;
    top: 40px;
}

.v2-rcm-why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-rcmw-coral);
}

.v2-rcm-why-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-rcmw-coral);
}

.v2-rcm-why-headline {
    margin: 0 0 18px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--v2-rcmw-white);
}

.v2-rcm-why-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--v2-rcmw-muted);
    margin: 0;
    max-width: 420px;
}

/* =========================================================
   BENEFIT GRID
========================================================= */

.v2-rcm-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Benefit Item */
.v2-rcm-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--v2-rcmw-border);
    border-radius: 12px;
    padding: 18px 20px;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.v2-rcm-why-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.v2-rcm-why-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-rcm-why-icon--cost {
    background: rgba(255, 87, 87, 0.15);
    color: var(--v2-rcmw-coral);
}

.v2-rcm-why-icon--approval {
    background: rgba(6, 168, 138, 0.15);
    color: var(--v2-rcmw-teal);
}

.v2-rcm-why-icon--cash {
    background: rgba(230, 168, 23, 0.15);
    color: var(--v2-rcmw-gold);
}

.v2-rcm-why-icon--compliance {
    background: rgba(84, 36, 154, 0.3);
    color: #a78bfa;
}

.v2-rcm-why-icon--scale {
    background: rgba(0, 100, 217, 0.15);
    color: var(--v2-rcmw-blue);
}

.v2-rcm-why-icon--security {
    background: rgba(230, 74, 122, 0.15);
    color: var(--v2-rcmw-rose);
}

.v2-rcm-why-icon--focus {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.v2-rcm-why-icon--report {
    background: rgba(79, 70, 229, 0.2);
    color: #a5b4fc;
}

.v2-rcm-why-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.v2-rcm-why-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--v2-rcmw-white);
    margin: 0;
    letter-spacing: -0.01em;
}

.v2-rcm-why-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-rcmw-muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .v2-rcm-why-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v2-rcm-why-header {
        position: static;
    }

    .v2-rcm-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .v2-rcm-why {
        padding: 50px 0;
    }

    .v2-rcm-why-container {
        width: min(100% - 32px, 540px);
        gap: 30px;
    }

    .v2-rcm-why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .v2-rcm-why-headline {
        font-size: clamp(26px, 6vw, 34px);
    }

    .v2-rcm-why-item {
        padding: 14px 16px;
        gap: 10px;
    }

    .v2-rcm-why-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-rcm-why-item {
        transition: none;
    }

    .v2-rcm-why-item:hover {
        transform: none;
    }
}

/* #endregion rcm-why-outsource */

/* #region rcm-why-avorcms */
/* =========================================================
   RCM WHY AVORCMS SECTION
   Split Layout with Dark Metrics Banner
   ========================================================= */

:root {
    --v2-rcmwa-coral: #ff5757;
    --v2-rcmwa-purple: #54249a;
    --v2-rcmwa-purple-dark: #32145f;
    --v2-rcmwa-teal: #06a88a;
    --v2-rcmwa-ink: #181321;
    --v2-rcmwa-muted: #686172;
    --v2-rcmwa-border: rgba(84, 36, 154, 0.08);
}

.v2-rcm-why-avorcms {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.v2-rcm-why-avorcms-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: start;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.v2-rcm-why-avorcms-header {
    position: sticky;
    top: 40px;
}

.v2-rcm-why-avorcms-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-rcmwa-purple);
}

.v2-rcm-why-avorcms-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--v2-rcmwa-coral);
}

.v2-rcm-why-avorcms-headline {
    margin: 0 0 30px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--v2-rcmwa-ink);
}

/* Expertise Card */
.v2-rcm-why-avorcms-expertise {
    background: #f8f6fa;
    border: 1px solid var(--v2-rcmwa-border);
    border-radius: 14px;
    padding: 24px 22px;
}

.v2-rcm-why-avorcms-expertise-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(84, 36, 154, 0.1);
    color: var(--v2-rcmwa-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.v2-rcm-why-avorcms-expertise-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--v2-rcmwa-ink);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.v2-rcm-why-avorcms-expertise-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-rcmwa-muted);
    line-height: 1.65;
    margin: 0;
}

/* =========================================================
   RIGHT CONTENT
========================================================= */

.v2-rcm-why-avorcms-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* =========================================================
   METRICS BANNER
========================================================= */

.v2-rcm-why-avorcms-metrics {
    background: linear-gradient(135deg, #32145f 0%, #54249a 100%);
    border-radius: 16px;
    padding: 28px 30px;
    position: relative;
    overflow: hidden;
}

.v2-rcm-why-avorcms-metrics::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 87, 87, 0.12);
    pointer-events: none;
}

.v2-rcm-why-avorcms-metrics-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.v2-rcm-why-avorcms-metrics-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 87, 87, 0.15);
    color: var(--v2-rcmwa-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-rcm-why-avorcms-metrics-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.v2-rcm-why-avorcms-metrics-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}

.v2-rcm-why-avorcms-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.v2-rcm-why-avorcms-metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.v2-rcm-why-avorcms-metric-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.v2-rcm-why-avorcms-metric-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

/* =========================================================
   BENEFIT CARDS
========================================================= */

.v2-rcm-why-avorcms-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.v2-rcm-why-avorcms-card {
    background: #f8f6fa;
    border-radius: 14px;
    padding: 22px 24px 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--v2-rcmwa-border);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.v2-rcm-why-avorcms-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.v2-rcm-why-avorcms-card-accent--coral {
    background: var(--v2-rcmwa-coral);
}

.v2-rcm-why-avorcms-card-accent--teal {
    background: var(--v2-rcmwa-teal);
}

.v2-rcm-why-avorcms-card-accent--purple {
    background: var(--v2-rcmwa-purple);
}

.v2-rcm-why-avorcms-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(50, 20, 95, 0.08);
    border-color: rgba(84, 36, 154, 0.15);
    background: #ffffff;
}

.v2-rcm-why-avorcms-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-rcm-why-avorcms-card-icon--coral {
    background: rgba(255, 87, 87, 0.1);
    color: #e64a4a;
}

.v2-rcm-why-avorcms-card-icon--teal {
    background: rgba(6, 168, 138, 0.1);
    color: var(--v2-rcmwa-teal);
}

.v2-rcm-why-avorcms-card-icon--purple {
    background: rgba(84, 36, 154, 0.1);
    color: var(--v2-rcmwa-purple);
}

.v2-rcm-why-avorcms-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v2-rcm-why-avorcms-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--v2-rcmwa-ink);
    margin: 0;
    letter-spacing: -0.01em;
}

.v2-rcm-why-avorcms-card-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-rcmwa-muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .v2-rcm-why-avorcms-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v2-rcm-why-avorcms-header {
        position: static;
    }

    .v2-rcm-why-avorcms-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .v2-rcm-why-avorcms {
        padding: 50px 0;
    }

    .v2-rcm-why-avorcms-container {
        width: min(100% - 32px, 540px);
        gap: 30px;
    }

    .v2-rcm-why-avorcms-headline {
        font-size: clamp(26px, 6vw, 34px);
    }

    .v2-rcm-why-avorcms-metrics {
        padding: 22px 18px;
    }

    .v2-rcm-why-avorcms-metrics-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .v2-rcm-why-avorcms-metric-value {
        font-size: 1.4rem;
    }

    .v2-rcm-why-avorcms-card {
        padding: 18px 16px 18px 14px;
        gap: 12px;
    }

    .v2-rcm-why-avorcms-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-rcm-why-avorcms-card {
        transition: none;
    }

    .v2-rcm-why-avorcms-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* #endregion rcm-why-avorcms */

/* #region rcm-faq */
/* =========================================================
   RCM FAQ SECTION
   Split Layout with Support Card and Accordion
   ========================================================= */

:root {
    --v2-rcmf-coral: #ff5757;
    --v2-rcmf-purple: #54249a;
    --v2-rcmf-purple-dark: #32145f;
    --v2-rcmf-ink: #181321;
    --v2-rcmf-muted: #686172;
    --v2-rcmf-border: rgba(84, 36, 154, 0.08);
}

.v2-rcm-faq {
    position: relative;
    background: #f8f6fa;
    padding: 100px 0;
    overflow: hidden;
}

.v2-rcm-faq-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
    align-items: start;
}

/* =========================================================
   LEFT SUPPORT CARD
========================================================= */

.v2-rcm-faq-support {
    position: sticky;
    top: 40px;
    background: linear-gradient(135deg, #32145f 0%, #54249a 100%);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.v2-rcm-faq-support::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 87, 87, 0.15);
    pointer-events: none;
}

.v2-rcm-faq-support-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 87, 87, 0.15);
    color: var(--v2-rcmf-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.v2-rcm-faq-support-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.v2-rcm-faq-support-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}

.v2-rcm-faq-support-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    background: var(--v2-rcmf-coral);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: 0 8px 16px rgba(255, 87, 87, 0.25);
    position: relative;
    z-index: 1;
}

.v2-rcm-faq-support-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 87, 87, 0.35);
}

.v2-rcm-faq-support-cta svg {
    transition: transform 0.2s ease;
}

.v2-rcm-faq-support-cta:hover svg {
    transform: translateX(3px);
}

.v2-rcm-faq-support-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.v2-rcm-faq-support-phone svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   ACCORDION
========================================================= */

.v2-rcm-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.v2-rcm-faq-item {
    background: #ffffff;
    border: 1px solid var(--v2-rcmf-border);
    border-radius: 12px;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.v2-rcm-faq-item:hover {
    border-color: rgba(84, 36, 154, 0.15);
}

.v2-rcm-faq-item--active {
    border-color: rgba(84, 36, 154, 0.2);
    box-shadow: 0 8px 20px rgba(50, 20, 95, 0.06);
}

.v2-rcm-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    text-align: left;
    transition: background 0.2s ease;
}

.v2-rcm-faq-question:hover {
    background: rgba(84, 36, 154, 0.03);
}

.v2-rcm-faq-question-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--v2-rcmf-ink);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.v2-rcm-faq-item--active .v2-rcm-faq-question-text {
    color: var(--v2-rcmf-purple);
}

.v2-rcm-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(84, 36, 154, 0.08);
    color: var(--v2-rcmf-muted);
    flex-shrink: 0;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.v2-rcm-faq-item--active .v2-rcm-faq-icon {
    transform: rotate(180deg);
    background: var(--v2-rcmf-coral);
    color: #ffffff;
}

.v2-rcm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.v2-rcm-faq-item--active .v2-rcm-faq-answer {
    max-height: 600px;
}

.v2-rcm-faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--v2-rcmf-muted);
}

.v2-rcm-faq-answer-inner p {
    margin: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .v2-rcm-faq-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .v2-rcm-faq-support {
        position: static;
    }
}

@media (max-width: 640px) {
    .v2-rcm-faq {
        padding: 50px 0;
    }

    .v2-rcm-faq-container {
        width: min(100% - 32px, 540px);
    }

    .v2-rcm-faq-support {
        padding: 24px 20px;
    }

    .v2-rcm-faq-support-title {
        font-size: 1.2rem;
    }

    .v2-rcm-faq-question {
        padding: 16px 18px;
    }

    .v2-rcm-faq-question-text {
        font-size: 0.95rem;
    }

    .v2-rcm-faq-answer-inner {
        padding: 0 18px 16px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .v2-rcm-faq-answer {
        transition: none;
    }

    .v2-rcm-faq-icon,
    .v2-rcm-faq-support-cta,
    .v2-rcm-faq-support-cta svg {
        transition: none;
    }
}

/* #endregion rcm-faq */
/* #endregion rcm-why-avorcms */
/* #endregion rcm-why-avorcms */
