/* #region hero */

:root {
    --v2-dm-purple-dark: #32145f;
    --v2-dm-purple: #54249a;
    --v2-dm-purple-light: #8156c8;
    --v2-dm-purple-soft: #eee8f8;

    --v2-dm-coral: #ff5757;

    --v2-dm-ink: #181321;
    --v2-dm-muted: #686172;
    --v2-dm-white: #ffffff;

    --v2-dm-border: rgba(50, 20, 95, 0.10);
}


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

.v2-dm-hero {
    position: relative;
    min-height: min(860px, 94svh);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(117, 74, 193, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 4% 92%,
            rgba(255, 87, 87, 0.045),
            transparent 25%
        ),
        #fbfafc;

    padding: 3rem 0 4rem;
}


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

.v2-dm-hero-container {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(520px, 1.08fr);

    align-items: center;

    gap: 30px;
}


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

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

    max-width: 690px;
}


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

    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

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

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

    width: 28px;
    height: 2px;

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


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

    font-size: clamp(43px, 4.15vw, 69px);
    line-height: 0.99;
    letter-spacing: -0.045em;
    font-weight: 800;

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


.v2-dm-hero-highlight {
    display: block;

    margin-top: 8px;

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


.v2-dm-hero-subheading {
    max-width: 620px;

    margin: 27px 0 15px;

    font-size: clamp(19px, 1.45vw, 23px);
    line-height: 1.42;
    font-weight: 600;

    color: #40384b;
}


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

    margin: 0;

    font-size: 16px;
    line-height: 1.72;

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


.v2-dm-hero-body--secondary {
    margin-top: 9px;
}


/* =========================================================
   CTAS
========================================================= */

.v2-dm-hero-ctas {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-top: 30px;
}


.v2-dm-hero-cta-primary,
.v2-dm-hero-cta-secondary {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border-radius: 8px;

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

    text-decoration: none;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}


.v2-dm-hero-cta-primary {
    gap: 11px;

    color: var(--v2-dm-white);
    background: var(--v2-dm-purple-dark);

    box-shadow:
        0 12px 28px rgba(50, 20, 95, 0.18);
}


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

    box-shadow:
        0 17px 34px rgba(50, 20, 95, 0.24);
}


.v2-dm-hero-cta-secondary {
    color: var(--v2-dm-purple-dark);

    border: 1px solid rgba(50, 20, 95, 0.16);

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


.v2-dm-hero-cta-secondary:hover {
    background: var(--v2-dm-white);
}


/* =========================================================
   TRUST
========================================================= */

.v2-dm-hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;

    margin-top: 25px;
}


.v2-dm-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

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

    color: #756d7e;
}


.v2-dm-hero-trust svg {
    width: 17px;
    height: 17px;

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


/* =========================================================
   ARTWORK
========================================================= */

.v2-dm-hero-art {
    position: relative;

    height: 680px;
    min-width: 0;
}


/* =========================================================
   GLOW
========================================================= */

.v2-dm-hero-glow {
    position: absolute;

    width: 570px;
    height: 570px;

    left: 50%;
    top: 50%;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(105, 62, 174, 0.17) 0%,
            rgba(105, 62, 174, 0.07) 40%,
            rgba(105, 62, 174, 0) 72%
        );
}


/* =========================================================
   ORBITS
========================================================= */

.v2-dm-hero-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

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

    border-radius: 50%;

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


.v2-dm-hero-orbit--outer {
    width: 560px;
    height: 410px;
}


.v2-dm-hero-orbit--inner {
    width: 405px;
    height: 300px;

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

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


/* =========================================================
   FLOW
========================================================= */

.v2-dm-hero-flow {
    position: absolute;

    left: 7%;
    top: 23%;

    width: 86%;
    height: 260px;

    opacity: 0.75;
}


.v2-dm-hero-flow svg {
    width: 100%;
    height: 100%;
}


.v2-dm-hero-flow path {
    stroke: rgba(84, 36, 154, 0.25);
    stroke-width: 1.2;
    stroke-dasharray: 5 8;
}


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

.v2-dm-hero-node {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

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

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


.v2-dm-hero-node--one {
    left: 15%;
    top: 43%;
}

.v2-dm-hero-node--two {
    right: 17%;
    top: 27%;
}

.v2-dm-hero-node--three {
    right: 11%;
    bottom: 30%;
}

.v2-dm-hero-node--four {
    left: 28%;
    bottom: 21%;
}


/* =========================================================
   DENIAL ANALYSIS PANEL
========================================================= */

.v2-dm-hero-analysis {
    position: absolute;

    z-index: 3;

    top: 18%;
    right: 6%;

    width: 235px;

    padding: 20px;

    border: 1px solid rgba(84, 36, 154, 0.12);
    border-radius: 15px;

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

    box-shadow:
        0 25px 55px rgba(43, 21, 80, 0.10);

    backdrop-filter: blur(16px);
}


.v2-dm-hero-analysis-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #81798b;
}


.v2-dm-hero-analysis-header i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

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


.v2-dm-hero-analysis-title {
    margin: 17px 0 15px;

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

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


.v2-dm-hero-analysis-line {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 8px 0;

    border-top: 1px solid rgba(50, 20, 95, 0.07);

    font-size: 10.5px;

    color: #746c7d;
}


.v2-dm-hero-analysis-line b {
    font-size: 10px;
    font-weight: 800;

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


/* =========================================================
   FLOATING PANELS
========================================================= */

.v2-dm-hero-panel {
    position: absolute;

    z-index: 7;

    display: flex;
    flex-direction: column;

    padding: 15px 17px;

    min-width: 210px;

    border: 1px solid rgba(84, 36, 154, 0.10);
    border-radius: 12px;

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

    box-shadow:
        0 20px 45px rgba(42, 21, 79, 0.11);

    backdrop-filter: blur(15px);
}


.v2-dm-hero-panel--top {
    left: 2%;
    top: 29%;
}


.v2-dm-hero-panel--bottom {
    right: 2%;
    bottom: 18%;
}


.v2-dm-hero-panel-label {
    margin-bottom: 6px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    color: #837b8d;
}


.v2-dm-hero-panel strong {
    font-size: 18px;
    line-height: 1.2;

    color: var(--v2-dm-purple-dark);
}


.v2-dm-hero-panel-meta {
    margin-top: 4px;

    font-size: 10px;

    color: #8b8393;
}


/* =========================================================
   APPEAL DOCUMENT
========================================================= */

.v2-dm-hero-document {
    position: absolute;

    z-index: 2;

    left: 17%;
    bottom: 22%;

    width: 120px;
    height: 145px;

    padding: 16px;

    border: 1px solid rgba(84, 36, 154, 0.10);
    border-radius: 10px;

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

    box-shadow:
        0 18px 35px rgba(42, 21, 79, 0.08);

    transform: rotate(-7deg);

    backdrop-filter: blur(10px);
}


.v2-dm-hero-document-top {
    display: flex;
    gap: 4px;

    margin-bottom: 18px;
}


.v2-dm-hero-document-top span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: rgba(84, 36, 154, 0.28);
}


.v2-dm-hero-document-line {
    height: 5px;

    width: 72%;

    margin-top: 9px;

    border-radius: 4px;

    background: rgba(84, 36, 154, 0.10);
}


.v2-dm-hero-document-line--long {
    width: 90%;
}

.v2-dm-hero-document-line--short {
    width: 50%;
}


.v2-dm-hero-document-check {
    position: absolute;

    right: 13px;
    bottom: 13px;

    width: 27px;
    height: 27px;

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

    border-radius: 50%;

    color: var(--v2-dm-white);
    background: var(--v2-dm-purple);
}


.v2-dm-hero-document-check svg {
    width: 15px;
    height: 15px;
}


/* =========================================================
   MEDICAL CROSS
========================================================= */

.v2-dm-hero-cross {
    position: absolute;

    right: 14%;
    bottom: 18%;

    width: 42px;
    height: 42px;

    opacity: 0.12;
}


.v2-dm-hero-cross span {
    position: absolute;

    background: var(--v2-dm-purple);

    border-radius: 3px;
}


.v2-dm-hero-cross span:first-child {
    width: 42px;
    height: 9px;

    top: 16px;
    left: 0;
}


.v2-dm-hero-cross span:last-child {
    width: 9px;
    height: 42px;

    left: 16px;
    top: 0;
}


/* =========================================================
   ACCENT
========================================================= */

.v2-dm-hero-accent {
    position: absolute;

    z-index: 2;

    width: 14px;
    height: 14px;

    left: 25%;
    top: 20%;

    border-radius: 50%;

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

    box-shadow:
        0 0 0 9px rgba(255, 87, 87, 0.08);
}


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

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

    z-index: 6;

    left: 50%;
    bottom: 0;

    transform: translateX(-42%);

    width: min(470px, 43vw);
     max-height: 80vh;

    height: auto;

    display: block;

    object-fit: contain;

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


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

@media (max-width: 1200px) {

    .v2-dm-hero-container {
        width: min(1180px, calc(100% - 50px));

        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(450px, 1.05fr);
    }

    .v2-dm-hero-art {
        height: 620px;
    }

    .v2-dm-hero-analysis {
        right: 1%;
    }

    .v2-dm-hero-panel--top {
        left: 0;
    }

    .v2-dm-hero-panel--bottom {
        right: 0;
    }
}


@media (max-width: 960px) {

    .v2-dm-hero {
        padding: 4rem 0 3rem;
    }

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

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

    .v2-dm-hero-art {
        height: 590px;
        margin-top: 10px;
    }
}


@media (max-width: 600px) {

    .v2-dm-hero {
        min-height: auto;
        padding: 3rem 0 0;
    }

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

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

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

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

    .v2-dm-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .v2-dm-hero-cta-primary,
    .v2-dm-hero-cta-secondary {
        width: 100%;
    }

    .v2-dm-hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .v2-dm-hero-art {
        height: 500px;
        margin-top: 15px;
    }

    .v2-dm-hero-glow {
        width: 420px;
        height: 420px;
    }

    .v2-dm-hero-orbit--outer {
        width: 420px;
        height: 320px;
    }

    .v2-dm-hero-orbit--inner {
        width: 310px;
        height: 240px;
    }

    .v2-dm-hero-person {
        left: 50%;
        width: min(360px, 88vw);
        transform: translateX(-50%);
    }

    .v2-dm-hero-analysis {
        top: 9%;
        right: 0;

        width: 185px;
        padding: 14px;
    }

    .v2-dm-hero-panel {
        min-width: 170px;
        padding: 12px 14px;
    }

    .v2-dm-hero-panel--top {
        left: 0;
        top: 30%;
    }

    .v2-dm-hero-panel--bottom {
        right: 0;
        bottom: 17%;
    }

    .v2-dm-hero-document {
        left: 8%;
        bottom: 20%;

        transform: scale(0.85) rotate(-7deg);
    }

    .v2-dm-hero-flow {
        opacity: 0.5;
    }
}


@media (max-width: 390px) {

    .v2-dm-hero-art {
        height: 450px;
    }

    .v2-dm-hero-person {
        width: 330px;
    }

    .v2-dm-hero-analysis {
        transform: scale(0.9);
        transform-origin: top right;
    }

    .v2-dm-hero-panel {
        transform: scale(0.88);
    }
}


@media (prefers-reduced-motion: reduce) {

    .v2-dm-hero-cta-primary,
    .v2-dm-hero-cta-secondary {
        transition: none;
    }
}

/* #endregion hero */

/* #region dm-pain-point */
/* =========================================================
   Denial Management Pain Point Section Styles
   Diagnostic Analysis Layout
   ========================================================= */
.dm-pain-point {
    background: var(--v2-white);
    padding: 80px 24px 0;
    position: relative;
    overflow: hidden;
}

.dm-pain-point__container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header Styles */
.dm-pain-point__header {
    max-width: 720px;
    margin-bottom: 56px;
}

.dm-pain-point__eyebrow {
    display: inline-block;
    background: var(--v2-highlight-soft);
    color: var(--v2-highlight);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dm-pain-point__headline {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--v2-heading);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 20px 0;
}

.dm-pain-point__headline-highlight {
    color: var(--v2-highlight);
    position: relative;
    white-space: nowrap;
}

.dm-pain-point__headline-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--v2-highlight);
    border-radius: 2px;
    opacity: 0.3;
}

.dm-pain-point__body {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--v2-subheading);
    line-height: 1.7;
    margin: 0;
}

/* Grid Styles - 3 columns, 2 rows */
.dm-pain-point__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card Styles */
.dm-pain-point__card {
    background: var(--v2-bg);
    border-radius: 16px;
    padding: 32px 28px 24px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(92, 27, 179, 0.08);
    overflow: hidden;
}

.dm-pain-point__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-accent, var(--v2-logo));
    opacity: 0.7;
}

.dm-pain-point__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(92, 27, 179, 0.12);
    background: var(--v2-white);
    border-color: rgba(92, 27, 179, 0.15);
}

.dm-pain-point__card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.dm-pain-point__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Icon Color Variants */
.dm-pain-point__card-icon--red {
    background: rgba(255, 87, 87, 0.12);
    color: #e64a4a;
}

.dm-pain-point__card-icon--orange {
    background: rgba(255, 150, 50, 0.12);
    color: #e67e22;
}

.dm-pain-point__card-icon--purple {
    background: rgba(92, 27, 179, 0.12);
    color: var(--v2-logo);
}

.dm-pain-point__card-icon--teal {
    background: rgba(6, 214, 160, 0.12);
    color: #06D6A0;
}

.dm-pain-point__card-icon--blue {
    background: rgba(0, 100, 217, 0.12);
    color: #0064D9;
}

.dm-pain-point__card-icon--rose {
    background: rgba(255, 87, 150, 0.12);
    color: #e64a7a;
}

.dm-pain-point__card-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--v2-subheading);
    letter-spacing: 0.08em;
    opacity: 0.6;
    position: relative;
    top: 4px;
}

.dm-pain-point__card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--v2-heading);
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.dm-pain-point__card-description {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-subheading);
    line-height: 1.65;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.dm-pain-point__card-bottom {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(92, 27, 179, 0.08);
}

.dm-pain-point__card-stat {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--v2-logo);
    letter-spacing: -0.02em;
}

.dm-pain-point__card-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--v2-subheading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Decorative Bottom Accent */
.dm-pain-point__accent-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--v2-highlight) 0%, var(--v2-logo) 50%, transparent 100%);
    margin-top: 64px;
    opacity: 0.4;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .dm-pain-point {
        padding: 60px 24px 0;
    }

    .dm-pain-point__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .dm-pain-point {
        padding: 40px 16px 0;
    }

    .dm-pain-point__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dm-pain-point__header {
        margin-bottom: 32px;
    }

    .dm-pain-point__headline {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .dm-pain-point__headline-highlight {
        white-space: normal;
    }

    .dm-pain-point__card {
        padding: 24px 20px 20px;
    }

    .dm-pain-point__card-stat {
        font-size: 1.2rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .dm-pain-point__card {
        transition: none;
    }

    .dm-pain-point__card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* #endregion dm-pain-point */

/* #region dm-solution */
/* =========================================================
   Denial Management Solution Section Styles
   Bento Grid Layout with Three Service Pillars
   ========================================================= */
.dm-solution {
    background: var(--v2-bg);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.dm-solution::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(92, 27, 179, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.dm-solution__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.dm-solution__header {
    max-width: 720px;
    margin-bottom: 56px;
}

.dm-solution__eyebrow {
    display: inline-block;
    background: var(--v2-cta-soft);
    color: var(--v2-logo);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dm-solution__headline {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--v2-heading);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 20px 0;
}

.dm-solution__headline-highlight {
    color: var(--v2-logo);
    position: relative;
    white-space: nowrap;
}

.dm-solution__headline-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--v2-cta-soft);
    border-radius: 2px;
}

.dm-solution__body {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--v2-subheading);
    line-height: 1.7;
    margin: 0;
}

/* Grid Styles - Three equal columns */
.dm-solution__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* Card Base Styles */
.dm-solution__card {
    background: var(--v2-white);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(92, 27, 179, 0.06);
    overflow: hidden;
}

.dm-solution__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

/* Card Color Variants */
.dm-solution__card--analysis::before {
    background: linear-gradient(90deg, #ff5757, #ff8a5c);
}

.dm-solution__card--appeal::before {
    background: linear-gradient(90deg, #5c1bb3, #8b5cf6);
}

.dm-solution__card--prevention::before {
    background: linear-gradient(90deg, #06d6a0, #00b4d8);
}

.dm-solution__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(92, 27, 179, 0.12);
}

/* Card Header */
.dm-solution__card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(92, 27, 179, 0.08);
}

.dm-solution__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dm-solution__card-icon--analysis {
    background: rgba(255, 87, 87, 0.1);
    color: #e64a4a;
}

.dm-solution__card-icon--appeal {
    background: rgba(92, 27, 179, 0.1);
    color: var(--v2-logo);
}

.dm-solution__card-icon--prevention {
    background: rgba(6, 214, 160, 0.1);
    color: #06D6A0;
}

.dm-solution__card-heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dm-solution__card-step {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.6;
}

.dm-solution__card--analysis .dm-solution__card-step {
    color: #e64a4a;
}

.dm-solution__card--appeal .dm-solution__card-step {
    color: var(--v2-logo);
}

.dm-solution__card--prevention .dm-solution__card-step {
    color: #06A88A;
}

.dm-solution__card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--v2-heading);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* Card Description */
.dm-solution__card-description {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-subheading);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* Feature List */
.dm-solution__feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.dm-solution__feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-ink);
    line-height: 1.5;
    transition: transform 0.2s ease;
}

.dm-solution__feature-item:hover {
    transform: translateX(4px);
}

.dm-solution__check-icon {
    margin-top: 2px;
    flex-shrink: 0;
}

.dm-solution__card--analysis .dm-solution__check-icon {
    color: #e64a4a;
}

.dm-solution__card--appeal .dm-solution__check-icon {
    color: var(--v2-logo);
}

.dm-solution__card--prevention .dm-solution__check-icon {
    color: #06A88A;
}

/* Card Footer */
.dm-solution__card-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(92, 27, 179, 0.08);
    display: flex;
    align-items: center;
}

.dm-solution__card-footer-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.6;
}

.dm-solution__card--analysis .dm-solution__card-footer-text {
    color: #e64a4a;
}

.dm-solution__card--appeal .dm-solution__card-footer-text {
    color: var(--v2-logo);
}

.dm-solution__card--prevention .dm-solution__card-footer-text {
    color: #06A88A;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .dm-solution__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dm-solution__card--prevention {
        grid-column: 1 / -1;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dm-solution {
        padding: 60px 16px;
    }

    .dm-solution__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dm-solution__card--prevention {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .dm-solution__card {
        padding: 24px 20px;
    }

    .dm-solution__card-title {
        font-size: 1.15rem;
    }

    .dm-solution__headline-highlight {
        white-space: normal;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .dm-solution__card,
    .dm-solution__feature-item {
        transition: none;
    }

    .dm-solution__card:hover {
        transform: none;
        box-shadow: none;
    }

    .dm-solution__feature-item:hover {
        transform: none;
    }
}

/* #endregion dm-solution */


/* #region dm-deliverables */

/* =========================================================
   Denial Management Deliverables Section Styles
   Dark Metrics Dashboard Layout
   ========================================================= */
.dm-deliverables {
    background: var(--v2-footer);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.dm-deliverables__bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.dm-deliverables__bg-glow--one {
    width: 500px;
    height: 500px;
    background: rgba(92, 27, 179, 0.4);
    top: -150px;
    right: -100px;
}

.dm-deliverables__bg-glow--two {
    width: 400px;
    height: 400px;
    background: rgba(255, 87, 87, 0.2);
    bottom: -100px;
    left: -50px;
}

.dm-deliverables__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
}

.dm-deliverables__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.dm-deliverables__header {
    max-width: 720px;
    margin-bottom: 60px;
}

.dm-deliverables__eyebrow {
    display: inline-block;
    background: rgba(255, 87, 87, 0.15);
    color: var(--v2-highlight);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dm-deliverables__headline {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--v2-white);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 20px 0;
}

.dm-deliverables__headline-highlight {
    color: var(--v2-highlight);
}

.dm-deliverables__body {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Grid Styles - 3 columns, 2 rows */
.dm-deliverables__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card Styles */
.dm-deliverables__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dm-deliverables__card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Card Icons */
.dm-deliverables__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dm-deliverables__card-icon--coral {
    background: rgba(255, 87, 87, 0.15);
    color: var(--v2-highlight);
}

.dm-deliverables__card-icon--purple {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.dm-deliverables__card-icon--teal {
    background: rgba(6, 214, 160, 0.15);
    color: #06D6A0;
}

.dm-deliverables__card-icon--gold {
    background: rgba(255, 209, 102, 0.15);
    color: #FFD166;
}

.dm-deliverables__card-icon--blue {
    background: rgba(0, 100, 217, 0.15);
    color: #60a5fa;
}

.dm-deliverables__card-icon--rose {
    background: rgba(255, 87, 150, 0.15);
    color: #f472b6;
}

/* Card Content */
.dm-deliverables__card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dm-deliverables__metric-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.dm-deliverables__metric-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--v2-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.dm-deliverables__metric-range {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.dm-deliverables__metric-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--v2-white);
    margin: 0;
    letter-spacing: -0.01em;
}

.dm-deliverables__metric-description {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .dm-deliverables {
        padding: 80px 24px;
    }

    .dm-deliverables__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .dm-deliverables {
        padding: 48px 16px;
    }

    .dm-deliverables__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dm-deliverables__card {
        padding: 20px;
    }

    .dm-deliverables__metric-value {
        font-size: 2.2rem;
    }

    .dm-deliverables__headline {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .dm-deliverables__card {
        transition: none;
    }

    .dm-deliverables__card:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* #endregion dm-deliverables */



/* #region dm-process */
/* =========================================================
   Denial Management Process Section Styles
   Interactive Stepper Layout
   ========================================================= */
.dm-process {
    background: var(--v2-white);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.dm-process__container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header Styles */
.dm-process__header {
    max-width: 720px;
    margin-bottom: 56px;
}

.dm-process__eyebrow {
    display: inline-block;
    background: var(--v2-cta-soft);
    color: var(--v2-logo);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dm-process__headline {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--v2-heading);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 20px 0;
}

.dm-process__headline-highlight {
    color: var(--v2-highlight);
}

.dm-process__body {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--v2-subheading);
    line-height: 1.7;
    margin: 0;
}

/* Stepper Container */
.dm-process__stepper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Navigation Styles */
.dm-process__nav {
    display: flex;
    gap: 0;
    position: relative;
    border-bottom: 2px solid rgba(92, 27, 179, 0.1);
}

.dm-process__nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--v2-subheading);
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}

.dm-process__nav-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--v2-highlight);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.dm-process__nav-btn:hover {
    color: var(--v2-heading);
}

.dm-process__nav-btn--active {
    color: var(--v2-highlight);
}

.dm-process__nav-btn--active::after {
    transform: scaleX(1);
}

.dm-process__nav-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(92, 27, 179, 0.1);
    color: var(--v2-subheading);
    font-size: 0.8rem;
    font-weight: 800;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dm-process__nav-btn--active .dm-process__nav-number {
    background: var(--v2-highlight);
    color: var(--v2-white);
    box-shadow: 0 4px 12px rgba(255, 87, 87, 0.3);
}

.dm-process__nav-label {
    font-size: 0.85rem;
    font-weight: 700;
}

/* Content Panel Styles */
.dm-process__content {
    position: relative;
    min-height: 200px;
}

.dm-process__panel {
    background: var(--v2-bg);
    border-radius: 16px;
    padding: 32px;
    animation: dmProcessFadeIn 0.4s ease;
}

@keyframes dmProcessFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dm-process__panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(92, 27, 179, 0.08);
}

.dm-process__panel-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dm-process__panel-icon--step1 {
    background: rgba(255, 87, 87, 0.12);
    color: #e64a4a;
}

.dm-process__panel-icon--step2 {
    background: rgba(255, 150, 50, 0.12);
    color: #e67e22;
}

.dm-process__panel-icon--step3 {
    background: rgba(0, 100, 217, 0.12);
    color: #0064D9;
}

.dm-process__panel-icon--step4 {
    background: rgba(92, 27, 179, 0.12);
    color: var(--v2-logo);
}

.dm-process__panel-icon--step5 {
    background: rgba(6, 214, 160, 0.12);
    color: #06A88A;
}

.dm-process__panel-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--v2-heading);
    margin: 0;
    letter-spacing: -0.01em;
}

.dm-process__panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.dm-process__panel-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-ink);
    line-height: 1.5;
    background: var(--v2-white);
    padding: 16px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dm-process__panel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(92, 27, 179, 0.1);
}

.dm-process__panel-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(6, 214, 160, 0.15);
    color: #06A88A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .dm-process {
        padding: 80px 24px;
    }

    .dm-process__nav-btn {
        padding: 12px 14px;
        font-size: 0.8rem;
    }

    .dm-process__nav-label {
        font-size: 0.75rem;
    }

    .dm-process__panel-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dm-process {
        padding: 60px 16px;
    }

    .dm-process__nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--v2-cta-soft) transparent;
    }

    .dm-process__nav::-webkit-scrollbar {
        height: 4px;
    }

    .dm-process__nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .dm-process__nav::-webkit-scrollbar-thumb {
        background-color: var(--v2-cta-soft);
        border-radius: 4px;
    }

    .dm-process__nav-btn {
        flex: 0 0 auto;
        min-width: 120px;
        padding: 12px 16px;
        font-size: 0.75rem;
        flex-direction: column;
        gap: 6px;
    }

    .dm-process__nav-number {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .dm-process__nav-label {
        font-size: 0.7rem;
        text-align: center;
        white-space: normal;
    }

    .dm-process__panel {
        padding: 20px;
    }

    .dm-process__panel-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dm-process__panel-title {
        font-size: 1.2rem;
    }

    .dm-process__headline-highlight {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .dm-process__panel-item {
        padding: 12px;
        font-size: 0.85rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .dm-process__panel {
        animation: none;
    }

    .dm-process__nav-btn,
    .dm-process__nav-number,
    .dm-process__panel-item {
        transition: none;
    }

    .dm-process__panel-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* #endregion dm-process */









