/* #region hero */
/* =========================================================
   MEDICAL CODING HERO
   Restructured: Split hero + narrative child band
   ========================================================= */

:root {
    --v2-mch-purple-dark: #32145f;
    --v2-mch-purple: #54249a;
    --v2-mch-coral: #ff5757;
    --v2-mch-teal: #06D6A0;
    --v2-mch-gold: #e6a817;
    --v2-mch-ink: #181321;
    --v2-mch-muted: #686172;
    --v2-mch-white: #ffffff;
}


.v2-mch {
    position: relative;
    background: #fbfafc;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

/* Background grid */
.v2-mch-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(84, 36, 154, 0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(84, 36, 154, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 85% 65% at 50% 40%, black 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 40%, black 35%, transparent 100%);
    pointer-events: none;
}

.v2-mch-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.v2-mch-glow--one {
    width: 560px;
    height: 560px;
    background: rgba(84, 36, 154, 0.14);
    top: -180px;
    right: -120px;
}

.v2-mch-glow--two {
    width: 420px;
    height: 420px;
    background: rgba(255, 87, 87, 0.07);
    bottom: -160px;
    left: -100px;
}

.v2-mch-container {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
    gap: 50px 60px;
    align-items: center;
}


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

.v2-mch-content {
    max-width: 620px;
}

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

.v2-mch-eyebrow-line {
    width: 30px;
    height: 2px;
    background: var(--v2-mch-coral);
}

.v2-mch-headline {
    margin: 0 0 22px;
    font-size: clamp(38px, 4.2vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: var(--v2-mch-purple);
}
.v2-mch-headline-accent {
    color: #ff5757;
}

.v2-mch-headline-highlight {
    color: var(--v2-mch-purple);
    position: relative;
    white-space: nowrap;
}

.v2-mch-headline-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 8px;
    background: rgba(255, 87, 87, 0.18);
    z-index: -1;
    border-radius: 3px;
}

.v2-mch-subheading {
    margin: 0 0 32px;
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 600;
      color: var(--v2-mch-ink);
    line-height: 1.45;
    letter-spacing: -0.01em;
    max-width: 560px;
}


/* =========================================================
   CTAs
========================================================= */

.v2-mch-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.v2-mch-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 9px;
    background: var(--v2-mch-purple-dark);
    color: var(--v2-mch-white);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 14px 30px rgba(50, 20, 95, 0.22);
}

.v2-mch-cta-primary:hover {
    background: var(--v2-mch-purple);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(50, 20, 95, 0.28);
}

.v2-mch-cta-primary svg {
    transition: transform 0.25s ease;
}

.v2-mch-cta-primary:hover svg {
    transform: translateX(4px);
}


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

.v2-mch-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-top: 26px;
    border-top: 1px solid rgba(84, 36, 154, 0.10);
    flex-wrap: wrap;
}

.v2-mch-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 650;
    color: #5f5569;
}

.v2-mch-trust-item svg {
    color: var(--v2-mch-purple);
    flex-shrink: 0;
}


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

.v2-mch-visual {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-mch-glow-inner {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(105, 62, 174, 0.16) 0%,
        rgba(105, 62, 174, 0.05) 45%,
        transparent 72%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.v2-mch-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(84, 36, 154, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.v2-mch-orbit--outer {
    width: 500px;
    height: 370px;
    transform: translate(-50%, -50%) rotate(-16deg);
}

.v2-mch-orbit--inner {
    width: 370px;
    height: 280px;
    border-color: rgba(84, 36, 154, 0.18);
    transform: translate(-50%, -50%) rotate(24deg);
}


/* =========================================================
   TERMINAL
========================================================= */

.v2-mch-terminal {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 460px;
    background: #1a0f2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(26, 15, 46, 0.35),
        0 0 0 1px rgba(84, 36, 154, 0.15);
    transform: rotate(-1deg);
    transition: transform 0.4s ease;
}

.v2-mch-terminal:hover {
    transform: rotate(0deg) translateY(-4px);
}

.v2-mch-terminal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v2-mch-terminal-dots {
    display: flex;
    gap: 6px;
}

.v2-mch-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.v2-mch-dot--red { background: #ff5f57; }
.v2-mch-dot--yellow { background: #ffbd2e; }
.v2-mch-dot--green { background: #28c840; }

.v2-mch-terminal-title {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.v2-mch-terminal-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(6, 214, 160, 0.15);
    color: var(--v2-mch-teal);
    font-family: 'Courier New', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
}

.v2-mch-terminal-live::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--v2-mch-teal);
    animation: v2MchPulse 1.6s ease-in-out infinite;
}

@keyframes v2MchPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(6, 214, 160, 0); }
}

.v2-mch-terminal-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.v2-mch-code-line {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: v2MchCodeIn 0.6s ease both;
}

.v2-mch-code-line:nth-child(1) { animation-delay: 0.2s; }
.v2-mch-code-line:nth-child(2) { animation-delay: 0.4s; }
.v2-mch-code-line:nth-child(3) { animation-delay: 0.6s; }
.v2-mch-code-line:nth-child(4) { animation-delay: 0.8s; }

@keyframes v2MchCodeIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

.v2-mch-code-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.v2-mch-code-tag--icd { background: rgba(84, 36, 154, 0.4); color: #c4a9ff; }
.v2-mch-code-tag--cpt { background: rgba(255, 87, 87, 0.2); color: #ff9090; }
.v2-mch-code-tag--mod { background: rgba(230, 168, 23, 0.2); color: #ffd166; }

.v2-mch-code-value {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.v2-mch-code-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-mch-code-status {
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.v2-mch-code-status--ok { color: var(--v2-mch-teal); }

.v2-mch-accuracy {
    margin-top: 6px;
    padding: 16px 14px;
    background: rgba(6, 214, 160, 0.05);
    border: 1px solid rgba(6, 214, 160, 0.15);
    border-radius: 10px;
    animation: v2MchCodeIn 0.6s ease 1s both;
}

.v2-mch-accuracy-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.v2-mch-accuracy-head strong {
    color: var(--v2-mch-teal);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
}

.v2-mch-accuracy-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.v2-mch-accuracy-fill {
    height: 100%;
    width: 98.6%;
    background: linear-gradient(90deg, var(--v2-mch-teal) 0%, #00b4d8 100%);
    border-radius: 999px;
    transform-origin: left;
    animation: v2MchFill 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}

@keyframes v2MchFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}


/* =========================================================
   FLOATING BADGES
========================================================= */

.v2-mch-float {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(50, 20, 95, 0.14);
    animation: v2MchFloat 6s ease-in-out infinite;
}

.v2-mch-float--audit {
    top: 6%;
    left: -3%;
}

.v2-mch-float--denial {
    bottom: 10%;
    right: -3%;
    animation-delay: -3s;
}

@keyframes v2MchFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.v2-mch-float-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(84, 36, 154, 0.10);
    color: var(--v2-mch-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-mch-float-icon--green {
    background: rgba(6, 214, 160, 0.12);
    color: #048a67;
}

.v2-mch-float-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
}

.v2-mch-float-text strong {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--v2-mch-ink);
    white-space: nowrap;
}

.v2-mch-float-text em {
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    color: #8b8393;
    white-space: nowrap;
}


/* =========================================================
   DECORATIVE
========================================================= */

.v2-mch-cross {
    position: absolute;
    right: 8%;
    top: 8%;
    width: 42px;
    height: 42px;
    opacity: 0.14;
    pointer-events: none;
}

.v2-mch-cross span {
    position: absolute;
    background: var(--v2-mch-purple);
    border-radius: 3px;
}

.v2-mch-cross span:first-child {
    width: 42px;
    height: 9px;
    top: 16px;
    left: 0;
}

.v2-mch-cross span:last-child {
    width: 9px;
    height: 42px;
    left: 16px;
    top: 0;
}

.v2-mch-accent {
    position: absolute;
    left: 6%;
    bottom: 14%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--v2-mch-coral);
    box-shadow: 0 0 0 8px rgba(255, 87, 87, 0.08);
    pointer-events: none;
}


/* =========================================================
   NARRATIVE CHILD BAND
   Spans both columns below the split hero
   ========================================================= */

.v2-mch-narrative {
    grid-column: 1 / -1;
    margin-top: 20px;
    background: #ffffff;
    border: 1px solid rgba(84, 36, 154, 0.08);
    border-radius: 18px;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 44px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(50, 20, 95, 0.06);
}

/* Top gradient accent line */
.v2-mch-narrative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        var(--v2-mch-purple) 0%,
        var(--v2-mch-coral) 50%,
        var(--v2-mch-teal) 100%
    );
    opacity: 0.9;
}

/* Column */
.v2-mch-narrative-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

/* Small decorative marker (no text) */
.v2-mch-narrative-marker {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 2px;
}

.v2-mch-narrative-marker--coral {
    background: var(--v2-mch-coral);
}

.v2-mch-narrative-marker--teal {
    background: var(--v2-mch-teal);
}

/* Paragraph */
.v2-mch-narrative-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.78;
    color: var(--v2-mch-muted);
    font-weight: 500;
    letter-spacing: 0.002em;
}

/* Vertical divider */
.v2-mch-narrative-divider {
    width: 1px;
    height: 100%;
    min-height: 110px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(84, 36, 154, 0.14) 50%,
        transparent 100%
    );
}


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

@media (max-width: 1200px) {
    .v2-mch-container {
        width: min(1180px, calc(100% - 50px));
        gap: 40px 40px;
        grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
    }

    .v2-mch-visual {
        height: 520px;
    }

    .v2-mch-orbit--outer { width: 440px; height: 340px; }
    .v2-mch-orbit--inner { width: 330px; height: 250px; }

    .v2-mch-float--audit { left: 0; }
    .v2-mch-float--denial { right: 0; }

    .v2-mch-narrative {
        padding: 32px 34px;
        gap: 32px;
    }
}

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

    .v2-mch-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .v2-mch-content {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .v2-mch-eyebrow,
    .v2-mch-ctas,
    .v2-mch-trust {
        justify-content: center;
    }

    .v2-mch-subheading {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-mch-visual {
        height: 540px;
        max-width: 600px;
        margin: 0 auto;
    }

    .v2-mch-float--audit { left: 2%; }
    .v2-mch-float--denial { right: 2%; }

    /* Narrative stacks into a single column on tablet */
    .v2-mch-narrative {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 30px;
        margin-top: 0;
    }

    .v2-mch-narrative-divider {
        width: 100%;
        height: 1px;
        min-height: 0;
        background: linear-gradient(90deg,
            transparent 0%,
            rgba(84, 36, 154, 0.14) 50%,
            transparent 100%
        );
    }
}

@media (max-width: 600px) {
    .v2-mch {
        padding: 3rem 0 2rem;
    }

    .v2-mch-container {
        width: min(100% - 32px, 540px);
        gap: 40px;
    }

    .v2-mch-headline {
        font-size: clamp(32px, 9vw, 44px);
    }

    .v2-mch-headline-highlight {
        white-space: normal;
    }

    .v2-mch-subheading {
        font-size: 16px;
    }

    .v2-mch-cta-primary {
        width: 100%;
        justify-content: center;
    }

    .v2-mch-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .v2-mch-visual {
        height: 470px;
    }

    .v2-mch-terminal {
        transform: none;
        max-width: 100%;
    }

    .v2-mch-terminal:hover {
        transform: none;
    }

    .v2-mch-orbit--outer { width: 360px; height: 290px; }
    .v2-mch-orbit--inner { width: 270px; height: 210px; }

    .v2-mch-glow-inner {
        width: 360px;
        height: 360px;
    }

    .v2-mch-code-label {
        display: none;
    }

    .v2-mch-code-line {
        grid-template-columns: auto auto 1fr auto;
        gap: 8px;
    }

    .v2-mch-float {
        padding: 9px 12px;
    }

    .v2-mch-float-text strong { font-size: 11px; }
    .v2-mch-float-text em { font-size: 9px; }

    .v2-mch-float--audit { top: 2%; }
    .v2-mch-float--denial { bottom: 4%; }

    /* Narrative on mobile */
    .v2-mch-narrative {
        padding: 24px 22px;
        border-radius: 14px;
        gap: 20px;
    }

    .v2-mch-narrative-text {
        font-size: 14.5px;
        line-height: 1.72;
    }
}

@media (max-width: 390px) {
    .v2-mch-visual { height: 430px; }
    .v2-mch-orbit--outer { width: 300px; height: 240px; }
    .v2-mch-orbit--inner { width: 220px; height: 175px; }
    .v2-mch-terminal-body { padding: 18px 14px; }
}


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

@media (prefers-reduced-motion: reduce) {
    .v2-mch-float,
    .v2-mch-terminal-live::before,
    .v2-mch-code-line,
    .v2-mch-accuracy,
    .v2-mch-accuracy-fill {
        animation: none;
    }

    .v2-mch-terminal,
    .v2-mch-cta-primary,
    .v2-mch-cta-primary svg {
        transition: none;
    }
}
/* #endregion hero */

/* #region medical coding help section */
/* =========================================================
   MEDICAL CODING HELP SECTION
   Connected Process Flow
   ========================================================= */

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


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

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


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

.v2-mchelp-header {
    max-width: 720px;
    margin-bottom: 70px;
}

.v2-mchelp-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-mchelp-purple);
}

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

.v2-mchelp-headline {
    margin: 0 0 18px;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--v2-mchelp-ink);
}

.v2-mchelp-headline-highlight {
    color: var(--v2-mchelp-purple);
}

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


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

.v2-mchelp-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* Connector Line */
.v2-mchelp-connector {
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(84, 36, 154, 0.10);
    border-radius: 2px;
    overflow: hidden;
    z-index: 0;
}

.v2-mchelp-connector-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,
        var(--v2-mchelp-purple) 0%,
        var(--v2-mchelp-coral) 33%,
        var(--v2-mchelp-teal) 66%,
        var(--v2-mchelp-gold) 100%
    );
    border-radius: 2px;
    transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-mchelp-flow.is-visible .v2-mchelp-connector-fill {
    width: 100%;
}


/* =========================================================
   STEP
========================================================= */

.v2-mchelp-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Marker (numbered circle on the connector) */
.v2-mchelp-marker {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(84, 36, 154, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(50, 20, 95, 0.06);
}

.v2-mchelp-step:hover .v2-mchelp-marker {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(50, 20, 95, 0.12);
}

.v2-mchelp-marker-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.v2-mchelp-step--one .v2-mchelp-marker-dot { background: var(--v2-mchelp-purple); }
.v2-mchelp-step--two .v2-mchelp-marker-dot { background: var(--v2-mchelp-coral); }
.v2-mchelp-step--three .v2-mchelp-marker-dot { background: var(--v2-mchelp-teal); }
.v2-mchelp-step--four .v2-mchelp-marker-dot { background: var(--v2-mchelp-gold); }

.v2-mchelp-step--one .v2-mchelp-marker { border-color: rgba(84, 36, 154, 0.25); }
.v2-mchelp-step--two .v2-mchelp-marker { border-color: rgba(255, 87, 87, 0.25); }
.v2-mchelp-step--three .v2-mchelp-marker { border-color: rgba(6, 168, 138, 0.25); }
.v2-mchelp-step--four .v2-mchelp-marker { border-color: rgba(230, 168, 23, 0.25); }

.v2-mchelp-step:hover .v2-mchelp-marker-dot {
    transform: scale(0.65);
}


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

.v2-mchelp-card {
    position: relative;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--v2-mchelp-border);
    border-radius: 16px;
    padding: 32px 26px 26px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.v2-mchelp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0.7;
}

.v2-mchelp-step--one .v2-mchelp-card::before { background: var(--v2-mchelp-purple); }
.v2-mchelp-step--two .v2-mchelp-card::before { background: var(--v2-mchelp-coral); }
.v2-mchelp-step--three .v2-mchelp-card::before { background: var(--v2-mchelp-teal); }
.v2-mchelp-step--four .v2-mchelp-card::before { background: var(--v2-mchelp-gold); }

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


/* Ghost number */
.v2-mchelp-ghost {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(84, 36, 154, 0.05);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}


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

.v2-mchelp-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.v2-mchelp-icon--purple {
    background: rgba(84, 36, 154, 0.10);
    color: var(--v2-mchelp-purple);
}

.v2-mchelp-icon--coral {
    background: rgba(255, 87, 87, 0.10);
    color: #e64a4a;
}

.v2-mchelp-icon--teal {
    background: rgba(6, 168, 138, 0.10);
    color: var(--v2-mchelp-teal);
}

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


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

.v2-mchelp-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--v2-mchelp-ink);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.v2-mchelp-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-mchelp-muted);
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}


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

@media (max-width: 1024px) {
    .v2-mchelp {
        padding: 80px 0;
    }

    .v2-mchelp-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    /* Hide connector on 2-col layout for clarity */
    .v2-mchelp-connector {
        display: none;
    }
}

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

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

    .v2-mchelp-header {
        margin-bottom: 40px;
    }

    .v2-mchelp-headline {
        font-size: clamp(26px, 7vw, 34px);
    }

    .v2-mchelp-flow {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .v2-mchelp-step {
        align-items: stretch;
    }

    .v2-mchelp-marker {
        display: none;
    }

    .v2-mchelp-card {
        padding: 26px 20px 22px;
    }

    .v2-mchelp-ghost {
        font-size: 3rem;
        top: 18px;
        right: 18px;
    }
}


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

@media (prefers-reduced-motion: reduce) {
    .v2-mchelp-connector-fill {
        transition: none;
        width: 100%;
    }

    .v2-mchelp-card,
    .v2-mchelp-marker,
    .v2-mchelp-marker-dot {
        transition: none;
    }

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

    .v2-mchelp-step:hover .v2-mchelp-marker {
        transform: none;
    }

    .v2-mchelp-step:hover .v2-mchelp-marker-dot {
        transform: none;
    }
}

/* #endregion medical coding help section */

/* #region medical coding benefits section */
/* =========================================================
   MEDICAL CODING BENEFITS SECTION
   Impact Report Layout
   ========================================================= */

:root {
    --v2-mcb-purple: #54249a;
    --v2-mcb-purple-dark: #32145f;
    --v2-mcb-coral: #ff5757;
    --v2-mcb-teal: #06A88A;
    --v2-mcb-blue: #0064D9;
    --v2-mcb-gold: #e6a817;
    --v2-mcb-rose: #e64a7a;
    --v2-mcb-ink: #181321;
    --v2-mcb-muted: #686172;
    --v2-mcb-border: rgba(84, 36, 154, 0.08);
}


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

.v2-mcb-bg-glow {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(84, 36, 154, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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


/* =========================================================
   LEFT: STICKY INTRO
========================================================= */

.v2-mcb-intro {
    position: sticky;
    top: 40px;
}

.v2-mcb-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-mcb-purple);
}

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

.v2-mcb-headline {
    margin: 0 0 20px;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--v2-mcb-ink);
}

.v2-mcb-headline-highlight {
    display: block;
    color: var(--v2-mcb-purple);
    margin-top: 6px;
}

.v2-mcb-body {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.72;
    color: var(--v2-mcb-muted);
    max-width: 460px;
}


/* Summary Card */
.v2-mcb-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #32145f 0%, #54249a 100%);
    border-radius: 14px;
    padding: 18px 20px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.v2-mcb-summary::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 87, 87, 0.18);
    pointer-events: none;
}

.v2-mcb-summary-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(255, 87, 87, 0.2);
    color: #ff8a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.v2-mcb-summary-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
    position: relative;
    z-index: 1;
}

.v2-mcb-summary-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.v2-mcb-summary-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.v2-mcb-summary-meta {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}


/* =========================================================
   RIGHT: IMPACT REPORT PANEL
========================================================= */

.v2-mcb-report {
    background: #ffffff;
    border: 1px solid var(--v2-mcb-border);
    border-radius: 18px;
    box-shadow: 0 24px 56px rgba(50, 20, 95, 0.08);
    overflow: hidden;
    position: relative;
}

/* Decorative left accent stripe */
.v2-mcb-report::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,
        var(--v2-mcb-purple) 0%,
        var(--v2-mcb-coral) 30%,
        var(--v2-mcb-teal) 60%,
        var(--v2-mcb-gold) 100%
    );
    z-index: 2;
}


/* Panel Header */
.v2-mcb-report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 26px 18px 30px;
    background: #faf9fc;
    border-bottom: 1px solid var(--v2-mcb-border);
}

.v2-mcb-report-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v2-mcb-report-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--v2-mcb-coral);
    box-shadow: 0 0 0 4px rgba(255, 87, 87, 0.14);
}

.v2-mcb-report-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--v2-mcb-ink);
}

.v2-mcb-report-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(6, 168, 138, 0.1);
    color: #048a67;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.v2-mcb-report-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--v2-mcb-teal);
    animation: v2McbPulse 1.8s ease-in-out infinite;
}

@keyframes v2McbPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 168, 138, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(6, 168, 138, 0); }
}


/* Panel Body */
.v2-mcb-report-body {
    display: flex;
    flex-direction: column;
}


/* =========================================================
   ROW
========================================================= */

.v2-mcb-row {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 30px;
    border-bottom: 1px solid rgba(84, 36, 154, 0.06);
    position: relative;
    transition: background 0.25s ease;
}

.v2-mcb-row:last-child {
    border-bottom: none;
}

.v2-mcb-row:hover {
    background: #faf9fc;
}

/* Index number */
.v2-mcb-row-index {
    flex-shrink: 0;
    padding-top: 3px;
}

.v2-mcb-row-num {
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #b7aec4;
}

/* Icon */
.v2-mcb-row-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.v2-mcb-row:hover .v2-mcb-row-icon {
    transform: scale(1.06);
}

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

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

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

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

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

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


/* Row Content */
.v2-mcb-row-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.v2-mcb-row-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.v2-mcb-row-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--v2-mcb-ink);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.v2-mcb-row-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.v2-mcb-row-tag--teal {
    background: rgba(6, 168, 138, 0.1);
    color: #048a67;
}

.v2-mcb-row-tag--purple {
    background: rgba(84, 36, 154, 0.1);
    color: var(--v2-mcb-purple);
}

.v2-mcb-row-tag--coral {
    background: rgba(255, 87, 87, 0.1);
    color: #c73a3a;
}

.v2-mcb-row-tag--blue {
    background: rgba(0, 100, 217, 0.1);
    color: var(--v2-mcb-blue);
}

.v2-mcb-row-tag--gold {
    background: rgba(230, 168, 23, 0.12);
    color: #a87911;
}

.v2-mcb-row-tag--rose {
    background: rgba(230, 74, 122, 0.1);
    color: var(--v2-mcb-rose);
}

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


/* Panel Footer */
.v2-mcb-report-footer {
    padding: 14px 30px;
    background: #faf9fc;
    border-top: 1px solid var(--v2-mcb-border);
    text-align: center;
}

.v2-mcb-report-footer-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #8b8393;
}


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

@media (max-width: 1024px) {
    .v2-mcb {
        padding: 80px 0;
    }

    .v2-mcb-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v2-mcb-intro {
        position: static;
    }

    .v2-mcb-body {
        max-width: 100%;
    }

    .v2-mcb-summary {
        max-width: 100%;
    }
}

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

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

    .v2-mcb-headline {
        font-size: clamp(26px, 7vw, 34px);
    }

    .v2-mcb-report {
        border-radius: 14px;
    }

    .v2-mcb-report-header {
        padding: 14px 18px 14px 22px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .v2-mcb-row {
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 18px 20px;
    }

    .v2-mcb-row-index {
        display: none;
    }

    .v2-mcb-row-icon {
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }

    .v2-mcb-row-title {
        font-size: 0.95rem;
    }

    .v2-mcb-row-text {
        font-size: 0.85rem;
    }

    .v2-mcb-row-tag {
        font-size: 0.6rem;
        padding: 2px 8px;
    }

    .v2-mcb-report-footer {
        padding: 12px 20px;
    }

    .v2-mcb-report-footer-text {
        font-size: 0.68rem;
    }
}


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

@media (prefers-reduced-motion: reduce) {
    .v2-mcb-report-status-dot {
        animation: none;
    }

    .v2-mcb-row,
    .v2-mcb-row-icon {
        transition: none;
    }

    .v2-mcb-row:hover .v2-mcb-row-icon {
        transform: none;
    }
}
/* #endregion medical coding benefits section */

/* #region medical-coding-quality */
/* =========================================================
   MEDICAL CODING QUALITY STANDARDS
   4 + 3 Bento Protocol Grid
   ========================================================= */

:root {
    --v2-mcqs-purple: #54249a;
    --v2-mcqs-coral: #ff5757;
    --v2-mcqs-teal: #06A88A;
    --v2-mcqs-blue: #0064D9;
    --v2-mcqs-gold: #e6a817;
    --v2-mcqs-rose: #e64a7a;
    --v2-mcqs-indigo: #4f46e5;
    --v2-mcqs-ink: #181321;
    --v2-mcqs-muted: #686172;
    --v2-mcqs-border: rgba(84, 36, 154, 0.08);
}


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

.v2-mcqs-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(84, 36, 154, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(84, 36, 154, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 30%, transparent 100%);
    pointer-events: none;
}

.v2-mcqs-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* HEADER */
.v2-mcqs-header {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.v2-mcqs-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-mcqs-purple);
}

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

.v2-mcqs-headline {
    margin: 0 0 18px;
    font-size: clamp(32px, 3.4vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--v2-mcqs-ink);
}

.v2-mcqs-headline-highlight {
    color: var(--v2-mcqs-purple);
    position: relative;
}

.v2-mcqs-headline-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 7px;
    background: rgba(255, 87, 87, 0.18);
    z-index: -1;
    border-radius: 3px;
}

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


/* BENTO GRID */
.v2-mcqs-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.v2-mcqs-card {
    grid-column: span 3;
    background: #ffffff;
    border-radius: 14px;
    padding: 26px 22px 22px;
    border: 1px solid var(--v2-mcqs-border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Row 2 (cards 5, 6, 7) — wider */
.v2-mcqs-card:nth-child(n+5) {
    grid-column: span 4;
    padding: 30px 26px 26px;
}

/* Left accent stripe */
.v2-mcqs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    opacity: 0.85;
}

.v2-mcqs-card--purple::before { background: var(--v2-mcqs-purple); }
.v2-mcqs-card--coral::before { background: var(--v2-mcqs-coral); }
.v2-mcqs-card--teal::before { background: var(--v2-mcqs-teal); }
.v2-mcqs-card--blue::before { background: var(--v2-mcqs-blue); }
.v2-mcqs-card--gold::before { background: var(--v2-mcqs-gold); }
.v2-mcqs-card--rose::before { background: var(--v2-mcqs-rose); }
.v2-mcqs-card--indigo::before { background: var(--v2-mcqs-indigo); }

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


/* Index badge */
.v2-mcqs-index {
    position: absolute;
    top: 22px;
    right: 22px;
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #c4bcd0;
}

.v2-mcqs-card:nth-child(n+5) .v2-mcqs-index {
    top: 26px;
    right: 26px;
}


/* Icon */
.v2-mcqs-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.v2-mcqs-card--purple .v2-mcqs-icon { background: rgba(84, 36, 154, 0.10); color: var(--v2-mcqs-purple); }
.v2-mcqs-card--coral .v2-mcqs-icon { background: rgba(255, 87, 87, 0.10); color: #e64a4a; }
.v2-mcqs-card--teal .v2-mcqs-icon { background: rgba(6, 168, 138, 0.10); color: var(--v2-mcqs-teal); }
.v2-mcqs-card--blue .v2-mcqs-icon { background: rgba(0, 100, 217, 0.10); color: var(--v2-mcqs-blue); }
.v2-mcqs-card--gold .v2-mcqs-icon { background: rgba(230, 168, 23, 0.12); color: #d4a017; }
.v2-mcqs-card--rose .v2-mcqs-icon { background: rgba(230, 74, 122, 0.10); color: var(--v2-mcqs-rose); }
.v2-mcqs-card--indigo .v2-mcqs-icon { background: rgba(79, 70, 229, 0.10); color: var(--v2-mcqs-indigo); }


/* Content */
.v2-mcqs-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--v2-mcqs-ink);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.v2-mcqs-card:nth-child(n+5) .v2-mcqs-title {
    font-size: 1.12rem;
}

.v2-mcqs-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--v2-mcqs-muted);
    line-height: 1.6;
    margin: 0;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .v2-mcqs { padding: 80px 0; }

    .v2-mcqs-card,
    .v2-mcqs-card:nth-child(n+5) {
        grid-column: span 6;
        padding: 24px 22px 22px;
    }
}

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

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

    .v2-mcqs-header { margin-bottom: 40px; }

    .v2-mcqs-headline { font-size: clamp(26px, 7vw, 34px); }

    .v2-mcqs-grid { gap: 14px; }

    .v2-mcqs-card,
    .v2-mcqs-card:nth-child(n+5) {
        grid-column: span 12;
        padding: 20px 18px 18px;
    }

    .v2-mcqs-title,
    .v2-mcqs-card:nth-child(n+5) .v2-mcqs-title { font-size: 1rem; }

    .v2-mcqs-text { font-size: 0.85rem; }

    .v2-mcqs-index { top: 18px; right: 18px; }
}


/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    .v2-mcqs-card { transition: none; }
    .v2-mcqs-card:hover { transform: none; box-shadow: none; }
}

/* #endregion medical-coding-quality */


/* #region medical-coding-process */
/* =========================================================
   MEDICAL CODING PROCESS STANDARDS
   Vertical Timeline with Gradient Spine
   ========================================================= */

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


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

.v2-mcpst-bg-glow {
    position: absolute;
    bottom: -160px;
    right: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(84, 36, 154, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.v2-mcpst-container {
    width: min(1280px, calc(100% - 60px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* HEADER */
.v2-mcpst-header {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}

.v2-mcpst-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-mcpst-purple);
}

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

.v2-mcpst-headline {
    margin: 0 0 18px;
    font-size: clamp(32px, 3.4vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--v2-mcpst-ink);
}

.v2-mcpst-headline-highlight {
    color: var(--v2-mcpst-purple);
    position: relative;
}

.v2-mcpst-headline-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 7px;
    background: rgba(255, 87, 87, 0.18);
    z-index: -1;
    border-radius: 3px;
}

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


/* =========================================================
   TIMELINE
========================================================= */

.v2-mcpst-timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding-left: 90px;
}


/* Spine */
.v2-mcpst-spine {
    position: absolute;
    left: 32px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: rgba(84, 36, 154, 0.10);
    border-radius: 2px;
    overflow: hidden;
}

.v2-mcpst-spine-fill {
    display: block;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg,
        var(--v2-mcpst-purple) 0%,
        var(--v2-mcpst-coral) 40%,
        var(--v2-mcpst-teal) 75%,
        var(--v2-mcpst-gold) 100%
    );
    transition: height 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-mcpst-timeline.is-visible .v2-mcpst-spine-fill {
    height: 100%;
}


/* Step */
.v2-mcpst-step {
    position: relative;
    padding-bottom: 24px;
}

.v2-mcpst-step:last-child {
    padding-bottom: 0;
}


/* Marker */
.v2-mcpst-marker {
    position: absolute;
    left: -90px;
    top: 20px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-mcpst-marker::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(84, 36, 154, 0.14);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 14px rgba(50, 20, 95, 0.06);
}

.v2-mcpst-step:hover .v2-mcpst-marker::before {
    border-color: var(--v2-mcpst-coral);
    box-shadow: 0 8px 22px rgba(255, 87, 87, 0.18);
    transform: scale(1.05);
}

.v2-mcpst-marker-num {
    position: relative;
    z-index: 1;
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--v2-mcpst-purple);
    transition: color 0.3s ease;
}

.v2-mcpst-step:hover .v2-mcpst-marker-num {
    color: var(--v2-mcpst-coral);
}


/* Card */
.v2-mcpst-card {
    background: #f8f6fa;
    border: 1px solid var(--v2-mcpst-border);
    border-radius: 14px;
    padding: 24px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.v2-mcpst-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: rgba(84, 36, 154, 0.15);
    transition: background 0.3s ease, width 0.3s ease;
}

.v2-mcpst-step:hover .v2-mcpst-card {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(50, 20, 95, 0.09);
    border-color: rgba(84, 36, 154, 0.15);
}

.v2-mcpst-step:hover .v2-mcpst-card::before {
    background: var(--v2-mcpst-coral);
    width: 4px;
}


.v2-mcpst-card-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.v2-mcpst-step-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-mcpst-coral);
    padding: 3px 9px;
    background: rgba(255, 87, 87, 0.08);
    border-radius: 4px;
}

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

.v2-mcpst-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-mcpst-muted);
    line-height: 1.65;
    margin: 0;
    max-width: 640px;
}


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

@media (max-width: 900px) {
    .v2-mcpst {
        padding: 80px 0;
    }

    .v2-mcpst-timeline {
        padding-left: 76px;
    }

    .v2-mcpst-spine {
        left: 26px;
    }

    .v2-mcpst-marker {
        left: -76px;
        width: 54px;
        height: 54px;
    }

    .v2-mcpst-marker-num {
        font-size: 0.95rem;
    }
}

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

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

    .v2-mcpst-header { margin-bottom: 40px; }

    .v2-mcpst-headline { font-size: clamp(26px, 7vw, 34px); }

    .v2-mcpst-timeline {
        padding-left: 0;
    }

    .v2-mcpst-spine {
        display: none;
    }

    .v2-mcpst-marker {
        position: relative;
        left: 0;
        top: 0;
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .v2-mcpst-marker-num {
        font-size: 0.85rem;
    }

    .v2-mcpst-step {
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    .v2-mcpst-card {
        padding: 20px 20px;
        border-radius: 12px;
    }

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

    .v2-mcpst-text { font-size: 0.9rem; }
}


/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    .v2-mcpst-spine-fill {
        transition: none;
        height: 100%;
    }

    .v2-mcpst-card,
    .v2-mcpst-marker::before,
    .v2-mcpst-marker-num,
    .v2-mcpst-card::before {
        transition: none;
    }

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

    .v2-mcpst-step:hover .v2-mcpst-marker::before {
        transform: none;
    }
}
/* #endregion medical-coding-process */


/* #region medical-coding-revenue */
/* =====================================================================
   AVORCMS V2 — CODING REVENUE BANNER
   Premium healthcare / revenue-cycle conversion section
   ===================================================================== */

.v2-coding-banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    margin: 20px 0;

    background: var(--v2-heading);
    color: var(--v2-white);
}


/* ---------------------------------------------------------------------
   Inner composition
   --------------------------------------------------------------------- */

.v2-coding-banner__inner {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    min-height: 390px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
}


/* ---------------------------------------------------------------------
   Background atmosphere
   --------------------------------------------------------------------- */

.v2-coding-banner__ambient {
    position: absolute;
    inset: 0;

    pointer-events: none;
    z-index: 0;
}

.v2-coding-banner__orb {
    position: absolute;
    display: block;

    border-radius: 50%;
    pointer-events: none;
}

.v2-coding-banner__orb--one {
    width: 360px;
    height: 360px;

    left: -130px;
    top: 50%;
    transform: translateY(-50%);

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

.v2-coding-banner__orb--two {
    width: 220px;
    height: 220px;

    right: -100px;
    top: -120px;

    border: 1px solid rgba(255, 255, 255, 0.08);
}


/* ---------------------------------------------------------------------
   Person visual
   --------------------------------------------------------------------- */

.v2-coding-banner__visual {
    position: relative;

    align-self: stretch;

    min-height: 390px;

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

    z-index: 3;
}

.v2-coding-banner__visual-glow {
    position: absolute;

    width: 250px;
    height: 250px;

    left: 50%;
    top: 50%;

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

    border-radius: 50%;

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

.v2-coding-banner__ring {
    position: absolute;

    left: 50%;
    top: 50%;

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

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
}

.v2-coding-banner__ring--one {
    width: 315px;
    height: 315px;
}

.v2-coding-banner__ring--two {
    width: 370px;
    height: 370px;

    border-style: dashed;
    opacity: 0.55;
}

.v2-coding-banner__person {
    position: relative;
    z-index: 4;

    width: auto;
    height: 440px;

    max-width: 100%;

    object-fit: contain;
    object-position: center bottom;

    align-self: flex-end;

    filter: drop-shadow(
        0 20px 28px rgba(23, 12, 55, 0.22)
    );

    transform: translateY(26px);
}

.v2-coding-banner__dot {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--v2-secondary);

    z-index: 5;
}

.v2-coding-banner__dot--one {
    left: 12%;
    top: 28%;
}

.v2-coding-banner__dot--two {
    right: 9%;
    top: 20%;

    width: 5px;
    height: 5px;

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


/* ---------------------------------------------------------------------
   Content
   --------------------------------------------------------------------- */

.v2-coding-banner__content {
    position: relative;
    z-index: 5;

    max-width: 690px;

    padding: 62px 0 62px 24px;
}

.v2-coding-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

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

    font-size: 10px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.v2-coding-banner__eyebrow-line {
    width: 27px;
    height: 2px;

    border-radius: 999px;

    background: var(--v2-secondary);
}

.v2-coding-banner__title {
    max-width: 650px;

    margin: 0 0 18px;

    color: var(--v2-white);

    font-size: clamp(27px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.12;

    letter-spacing: -1.2px;
}

.v2-coding-banner__title span {
    color: #ffffff;
}

.v2-coding-banner__text {
    max-width: 650px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
    font-weight: 500;
    line-height: 1.72;
}

.v2-coding-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 42px;

    padding: 0 17px;

    color: var(--v2-white);
    background: var(--v2-secondary);

    border: 1px solid var(--v2-secondary);
    border-radius: 8px;

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

    text-decoration: none;

    box-shadow: 0 10px 24px rgba(255, 87, 87, 0.18);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.v2-coding-banner__cta svg {
    transition: transform 0.25s ease;
}

.v2-coding-banner__cta:hover {
    color: var(--v2-white);
    background: #f76c6c;
    border-color: #f76c6c;

    transform: translateY(-2px);

    box-shadow: 0 14px 28px rgba(255, 87, 87, 0.24);
}

.v2-coding-banner__cta:hover svg {
    transform: translateX(3px);
}


/* ---------------------------------------------------------------------
   Reveal
   --------------------------------------------------------------------- */

.v2-coding-banner [data-v2-reveal] {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-coding-banner .v2-coding-banner__content[data-v2-reveal] {
    transition-delay: 0.08s;
}

.v2-coding-banner [data-v2-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------------------------------------------------
   Tablet
   --------------------------------------------------------------------- */

@media (max-width: 991.98px) {

    .v2-coding-banner__inner {
        grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
        min-height: 360px;
    }

    .v2-coding-banner__visual {
        min-height: 360px;
    }

    .v2-coding-banner__person {
        height: 400px;
    }

    .v2-coding-banner__ring--one {
        width: 275px;
        height: 275px;
    }

    .v2-coding-banner__ring--two {
        width: 320px;
        height: 320px;
    }

    .v2-coding-banner__content {
        padding: 52px 0 52px 10px;
    }

    .v2-coding-banner__title {
        font-size: clamp(25px, 3.5vw, 35px);
    }

    .v2-coding-banner__text {
        font-size: 12.5px;
    }
}


/* ---------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------- */

@media (max-width: 767.98px) {

    .v2-coding-banner {
        margin: 0;
    }

    .v2-coding-banner__inner {
        width: min(100% - 36px, 600px);

        display: flex;
        flex-direction: column;

        min-height: 0;
    }

    .v2-coding-banner__visual {
        width: 100%;
        min-height: 310px;

        order: 1;
    }

    .v2-coding-banner__person {
        height: 355px;
        transform: translateY(22px);
    }

    .v2-coding-banner__visual-glow {
        width: 215px;
        height: 215px;
    }

    .v2-coding-banner__ring--one {
        width: 250px;
        height: 250px;
    }

    .v2-coding-banner__ring--two {
        width: 295px;
        height: 295px;
    }

    .v2-coding-banner__content {
        order: 2;

        width: 100%;
        max-width: none;

        padding: 25px 0 48px;
    }

    .v2-coding-banner__title {
        font-size: clamp(26px, 7.5vw, 34px);
        letter-spacing: -0.8px;
    }

    .v2-coding-banner__text {
        font-size: 13px;
    }

    .v2-coding-banner__cta {
        width: 100%;
    }

    .v2-coding-banner__dot--one {
        left: 18%;
    }

    .v2-coding-banner__dot--two {
        right: 15%;
    }
}


/* ---------------------------------------------------------------------
   Small mobile
   --------------------------------------------------------------------- */

@media (max-width: 420px) {

    .v2-coding-banner__inner {
        width: min(100% - 28px, 600px);
    }

    .v2-coding-banner__visual {
        min-height: 285px;
    }

    .v2-coding-banner__person {
        height: 325px;
    }

    .v2-coding-banner__content {
        padding-top: 20px;
    }

    .v2-coding-banner__eyebrow {
        font-size: 9px;
    }

    .v2-coding-banner__title {
        font-size: 27px;
    }
}


/* ---------------------------------------------------------------------
   Reduced motion
   --------------------------------------------------------------------- */

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

    .v2-coding-banner [data-v2-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .v2-coding-banner__cta,
    .v2-coding-banner__cta svg {
        transition: none;
    }
}
/* #endregion medical-coding-revenue */


/* #region medical-coding-precision */
/* =====================================================================
   AVORCMS V2 — CODING PRECISION STRIPE
   Compact enterprise conversion stripe
   ===================================================================== */

.v2-coding-stripe {
    position: relative;
    overflow: hidden;

    padding: 0 0 28px;

    background: var(--v2-bg);
}

.v2-coding-stripe__inner {
    position: relative;
    overflow: hidden;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 30px 40px 24px;

    background: var(--v2-heading);

    border-radius: 8px;

    box-shadow:
        0 18px 45px rgba(57, 29, 119, 0.12);
}


/* ---------------------------------------------------------------------
   Subtle background detailing
   --------------------------------------------------------------------- */

.v2-coding-stripe__inner::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -105px;
    top: -155px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.v2-coding-stripe__inner::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -55px;
    top: -105px;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;

    pointer-events: none;
}


/* ---------------------------------------------------------------------
   Top row
   --------------------------------------------------------------------- */

.v2-coding-stripe__top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}

.v2-coding-stripe__copy {
    min-width: 0;
    max-width: 850px;
}

.v2-coding-stripe__eyebrow {
    margin-bottom: 7px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 9px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.v2-coding-stripe__title {
    margin: 0 0 8px;

    color: var(--v2-white);

    font-size: clamp(22px, 2.25vw, 30px);
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.75px;
}

.v2-coding-stripe__title span {
    color: var(--v2-white);
}

.v2-coding-stripe__text {
    max-width: 820px;

    margin: 0;

    color: rgba(255, 255, 255, 0.67);

    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.6;
}


/* ---------------------------------------------------------------------
   CTA
   --------------------------------------------------------------------- */

.v2-coding-stripe__cta {
    position: relative;
    z-index: 3;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 37px;

    padding: 0 17px;

    color: var(--v2-white);

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;

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

    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.v2-coding-stripe__cta:hover {
    color: var(--v2-heading);

    background: var(--v2-white);
    border-color: var(--v2-white);

    transform: translateY(-1px);
}

.v2-coding-stripe__cta svg {
    transition: transform 0.25s ease;
}

.v2-coding-stripe__cta:hover svg {
    transform: translateX(3px);
}


/* ---------------------------------------------------------------------
   Divider
   --------------------------------------------------------------------- */

.v2-coding-stripe__divider {
    position: relative;
    z-index: 2;

    height: 1px;

    margin: 22px 0 17px;

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


/* ---------------------------------------------------------------------
   Outcomes
   --------------------------------------------------------------------- */

.v2-coding-stripe__outcomes {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;

    gap: 20px;
}

.v2-coding-stripe__outcome {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-width: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.35;

    white-space: nowrap;
}

.v2-coding-stripe__check {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

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

    color: #58c8f5;

    background: rgba(88, 200, 245, 0.12);

    border-radius: 50%;
}


/* ---------------------------------------------------------------------
   Reveal
   --------------------------------------------------------------------- */

.v2-coding-stripe [data-v2-reveal] {
    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-coding-stripe [data-v2-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.v2-coding-stripe__outcomes[data-v2-reveal] {
    transition-delay: 0.08s;
}


/* ---------------------------------------------------------------------
   Tablet
   --------------------------------------------------------------------- */

@media (max-width: 900px) {

    .v2-coding-stripe__inner {
        padding: 28px 30px 23px;
    }

    .v2-coding-stripe__top {
        align-items: flex-start;
        gap: 25px;
    }

    .v2-coding-stripe__outcomes {
        gap: 12px;
    }

    .v2-coding-stripe__outcome {
        font-size: 9.5px;
    }
}


/* ---------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------- */

@media (max-width: 700px) {

    .v2-coding-stripe {
        padding-bottom: 20px;
    }

    .v2-coding-stripe__inner {
        width: min(100% - 28px, 600px);

        padding: 27px 23px 22px;

        border-radius: 8px;
    }

    .v2-coding-stripe__top {
        display: block;
    }

    .v2-coding-stripe__title {
        font-size: 24px;
    }

    .v2-coding-stripe__text {
        font-size: 11.5px;
    }

    .v2-coding-stripe__cta {
        margin-top: 17px;
    }

    .v2-coding-stripe__divider {
        margin: 20px 0 16px;
    }

    .v2-coding-stripe__outcomes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 13px 10px;
    }

    .v2-coding-stripe__outcome {
        justify-content: flex-start;
        font-size: 9.5px;
        white-space: normal;
    }
}


/* ---------------------------------------------------------------------
   Small mobile
   --------------------------------------------------------------------- */

@media (max-width: 400px) {

    .v2-coding-stripe__inner {
        width: calc(100% - 20px);
        padding: 24px 18px 20px;
    }

    .v2-coding-stripe__title {
        font-size: 22px;
    }

    .v2-coding-stripe__outcomes {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* ---------------------------------------------------------------------
   Reduced motion
   --------------------------------------------------------------------- */

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

    .v2-coding-stripe [data-v2-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .v2-coding-stripe__cta,
    .v2-coding-stripe__cta svg {
        transition: none;
    }
}

/* #endregion medical-coding-precision */




