/* #region hero */
/* {{--v2-medical-billing-hero--}} */

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

    --v2-mb-coral: #ff5757;

    --v2-mb-ink: #181321;
    --v2-mb-muted: #686172;

    --v2-mb-white: #ffffff;

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

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

.v2-mb-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;
}

/* Fine enterprise grid */

.v2-mb-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(50, 20, 95, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(50, 20, 95, 0.035) 1px,
            transparent 1px
        );

    background-size: 64px 64px;

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            black 42%,
            black 100%
        );
}

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

.v2-mb-hero-container {
    position: relative;
    z-index: 2;

    width: min(1360px, calc(100% - 64px));

    margin: 0 auto;

    display: grid;

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

    align-items: center;

    gap: clamp(2rem, 4vw, 5rem);
}

/* =========================================================
   LEFT SIDE
========================================================= */

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

    max-width: 650px;
}

.v2-mb-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;

    margin-bottom: 1.45rem;

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

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

    width: 34px;
    height: 2px;

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

    border-radius: 999px;
}

.v2-mb-hero-headline {
    max-width: 650px;

    margin: 0 0 1.4rem;

    color: var(--v2-mb-ink);

    font-size: clamp(3rem, 5vw, 5.15rem);

    font-weight: 800;

    line-height: 0.99;

    letter-spacing: -0.055em;
}

.v2-mb-hero-highlight {
    color: var(--v2-mb-purple);

    position: relative;
}

/* Small accent underneath the important phrase */

.v2-mb-hero-highlight::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 38%;
    height: 3px;

    border-radius: 99px;

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

    opacity: 0.8;
}

.v2-mb-hero-subheading {
    max-width: 600px;

    margin: 0 0 1rem;

    color: var(--v2-mb-purple-dark);

    font-size: clamp(1.08rem, 1.7vw, 1.35rem);

    font-weight: 700;

    line-height: 1.45;
}

.v2-mb-hero-body {
    max-width: 600px;

    margin: 0 0 2rem;

    color: var(--v2-mb-muted);

    font-size: 1rem;

    line-height: 1.75;
}

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

.v2-mb-hero-ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0.8rem;

    margin-bottom: 1.8rem;
}

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

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

    gap: 0.65rem;

    padding: 0.8rem 1.35rem;

    border-radius: 9px;

    font-size: 0.91rem;
    font-weight: 750;

    text-decoration: none;

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

.v2-mb-hero-cta-primary {
    color: #fff;

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

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

.v2-mb-hero-cta-primary:hover {
    color: #fff;

    transform: translateY(-2px);

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

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

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

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

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

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

    border: 1px solid var(--v2-mb-border);
}

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

    transform: translateY(-2px);

    background: #fff;

    box-shadow:
        0 10px 25px rgba(50, 20, 95, 0.08);
}

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

.v2-mb-hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 0.75rem 1.5rem;

    color: #77717f;

    font-size: 0.75rem;
    font-weight: 650;
}

.v2-mb-hero-trust-item {
    display: inline-flex;
    align-items: center;

    gap: 0.4rem;
}

.v2-mb-hero-trust-item svg {
    color: var(--v2-mb-purple);
}

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

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

    min-height: 650px;

    width: 100%;
}

/* Main purple atmospheric shape */

.v2-mb-hero-art::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    top: 50%;
    left: 50%;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(117, 74, 193, 0.20) 0%,
            rgba(117, 74, 193, 0.09) 40%,
            transparent 70%
        );
}

/* =========================================================
   GEOMETRY
========================================================= */

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

    width: 530px;
    height: 530px;

    top: 50%;
    left: 50%;

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

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

    border-radius: 50%;
}

.v2-mb-hero-orbit::before {
    content: "";

    position: absolute;

    inset: 42px;

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

    border-radius: 50%;
}

.v2-mb-hero-orbit::after {
    content: "";

    position: absolute;

    inset: 105px;

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

    border-radius: 50%;
}

/* Decorative cross */

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

    right: 8%;
    top: 8%;

    width: 48px;
    height: 48px;

    opacity: 0.45;
}

.v2-mb-hero-cross::before,
.v2-mb-hero-cross::after {
    content: "";

    position: absolute;

    background: var(--v2-mb-purple-light);

    border-radius: 2px;
}

.v2-mb-hero-cross::before {
    width: 100%;
    height: 3px;

    top: 50%;
    left: 0;

    transform: translateY(-50%);
}

.v2-mb-hero-cross::after {
    width: 3px;
    height: 100%;

    top: 0;
    left: 50%;

    transform: translateX(-50%);
}

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

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

    width: 280px;
    height: 150px;

    right: 1%;
    top: 24%;

    opacity: 0.7;
}

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

    overflow: visible;
}

.v2-mb-hero-flow path {
    fill: none;

    stroke: rgba(84, 36, 154, 0.22);

    stroke-width: 1.5;

    stroke-dasharray: 5 7;
}

/* =========================================================
   DOCTOR PNG
========================================================= */

.v2-mb-hero-doctor {
    position: absolute;

    z-index: 6;

    left: 50%;
    bottom: 0;

    transform: translateX(-42%);

    width: min(470px, 43vw);

    max-width: none;

    height: auto;

    display: block;

    object-fit: contain;

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

/* =========================================================
   FLOATING DATA PANEL
========================================================= */

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

    z-index: 8;

    padding: 1rem 1.05rem;

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

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

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 45px rgba(50, 20, 95, 0.13);

    border-radius: 13px;
}

.v2-mb-hero-panel-label {
    display: block;

    margin-bottom: 0.35rem;

    color: #77717f;

    font-size: 0.62rem;
    font-weight: 750;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.v2-mb-hero-panel-value {
    display: block;

    color: var(--v2-mb-purple-dark);

    font-size: 1.15rem;
    font-weight: 800;

    line-height: 1.1;
}

.v2-mb-hero-panel-meta {
    display: flex;
    align-items: center;

    gap: 0.4rem;

    margin-top: 0.45rem;

    color: #548267;

    font-size: 0.64rem;
    font-weight: 700;
}

.v2-mb-hero-panel-meta::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: currentColor;
}

/* Top right */

.v2-mb-hero-panel--claims {
    top: 15%;
    right: 0;
}

/* Bottom left */

.v2-mb-hero-panel--revenue {
    left: 2%;
    bottom: 12%;
}

/* =========================================================
   CLAIM FLOW PANEL
========================================================= */

.v2-mb-hero-claim {
    position: absolute;

    z-index: 4;

    top: 13%;
    left: 5%;

    width: 180px;

    padding: 0.9rem;

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

    border-radius: 12px;

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

    backdrop-filter: blur(14px);
}

.v2-mb-hero-claim-title {
    margin-bottom: 0.7rem;

    color: var(--v2-mb-purple-dark);

    font-size: 0.67rem;
    font-weight: 800;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.v2-mb-hero-claim-line {
    display: flex;
    align-items: center;

    gap: 0.55rem;

    margin-bottom: 0.5rem;

    color: #77717f;

    font-size: 0.62rem;
    font-weight: 650;
}

.v2-mb-hero-claim-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--v2-mb-purple-light);
}

.v2-mb-hero-claim-line:last-child .v2-mb-hero-claim-dot {
    background: var(--v2-mb-coral);
}

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

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

    z-index: 7;

    right: 10%;
    bottom: 13%;

    width: 10px;
    height: 10px;

    border-radius: 50%;

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

    box-shadow:
        0 0 0 7px rgba(255, 87, 87, 0.09),
        0 0 0 15px rgba(255, 87, 87, 0.045);
}

/* =========================================================
   SMALL DATA NODES
========================================================= */

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

    z-index: 3;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--v2-mb-purple-light);

    box-shadow:
        0 0 0 6px rgba(129, 86, 200, 0.08);
}

.v2-mb-hero-node--one {
    left: 18%;
    top: 39%;
}

.v2-mb-hero-node--two {
    right: 13%;
    top: 54%;
}

.v2-mb-hero-node--three {
    left: 24%;
    bottom: 22%;
}

/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (min-width: 1500px) {

    .v2-mb-hero-container {
        width: min(1420px, calc(100% - 80px));
    }

    .v2-mb-hero-doctor {
        width: 500px;
    }

    .v2-mb-hero-art {
        min-height: 690px;
    }
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .v2-mb-hero-container {
        width: min(1200px, calc(100% - 48px));

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

        gap: 2rem;
    }

    .v2-mb-hero-headline {
        font-size: clamp(2.8rem, 5vw, 4.25rem);
    }

    .v2-mb-hero-art {
        min-height: 590px;
    }

    .v2-mb-hero-orbit {
        width: 470px;
        height: 470px;
    }

    .v2-mb-hero-doctor {
        width: 430px;
    }

    .v2-mb-hero-panel--claims {
        right: -2%;
    }

    .v2-mb-hero-claim {
        left: 0;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 960px) {

    .v2-mb-hero {
        min-height: auto;

        padding: 6rem 0 3.5rem;
    }

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

        gap: 2.5rem;
    }

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

    .v2-mb-hero-headline {
        max-width: 720px;
    }

    .v2-mb-hero-body {
        max-width: 680px;
    }

    .v2-mb-hero-art {
        width: min(700px, 100%);
        min-height: 600px;

        margin: 0 auto;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .v2-mb-hero {
        padding: 5.5rem 0 2.5rem;
    }

    .v2-mb-hero-container {
        width: calc(100% - 32px);

        gap: 2rem;
    }

    .v2-mb-hero-eyebrow {
        margin-bottom: 1rem;

        font-size: 0.64rem;

        letter-spacing: 0.12em;
    }

    .v2-mb-hero-eyebrow::before {
        width: 24px;
    }

    .v2-mb-hero-headline {
        margin-bottom: 1.2rem;

        font-size: clamp(2.45rem, 12vw, 3.5rem);

        line-height: 1.01;
        letter-spacing: -0.05em;
    }

    .v2-mb-hero-highlight::after {
        bottom: -4px;
    }

    .v2-mb-hero-subheading {
        font-size: 1rem;
        line-height: 1.5;
    }

    .v2-mb-hero-body {
        margin-bottom: 1.5rem;

        font-size: 0.91rem;
        line-height: 1.7;
    }

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

        margin-bottom: 1.35rem;
    }

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

    .v2-mb-hero-trust {
        gap: 0.7rem 1rem;

        font-size: 0.68rem;
    }

    /* artwork */

    .v2-mb-hero-art {
        min-height: 470px;

        margin-top: 0.5rem;
    }

    .v2-mb-hero-art::before {
        width: 390px;
        height: 390px;

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

    .v2-mb-hero-orbit {
        width: 390px;
        height: 390px;

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

    .v2-mb-hero-orbit::before {
        inset: 30px;
    }

    .v2-mb-hero-orbit::after {
        inset: 75px;
    }

    .v2-mb-hero-doctor {
        left: 50%;
        bottom: 0;

        width: min(360px, 88vw);

        transform: translateX(-50%);
    }

    .v2-mb-hero-panel {
        padding: 0.75rem 0.8rem;
    }

    .v2-mb-hero-panel--claims {
        top: 7%;
        right: 0;
    }

    .v2-mb-hero-panel--revenue {
        left: 0;
        bottom: 7%;
    }

    .v2-mb-hero-panel-value {
        font-size: 0.95rem;
    }

    .v2-mb-hero-panel-label {
        font-size: 0.55rem;
    }

    .v2-mb-hero-panel-meta {
        font-size: 0.56rem;
    }

    .v2-mb-hero-claim {
        top: 12%;
        left: 0;

        width: 135px;

        padding: 0.7rem;
    }

    .v2-mb-hero-claim-title {
        font-size: 0.57rem;
    }

    .v2-mb-hero-claim-line {
        font-size: 0.52rem;
    }

    .v2-mb-hero-flow {
        display: none;
    }

    .v2-mb-hero-cross {
        right: 3%;
        top: 5%;

        width: 30px;
        height: 30px;
    }

    .v2-mb-hero-accent {
        right: 8%;
        bottom: 17%;
    }
}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .v2-mb-hero-headline {
        font-size: 2.3rem;
    }

    .v2-mb-hero-art {
        min-height: 420px;
    }

    .v2-mb-hero-orbit {
        width: 340px;
        height: 340px;
    }

    .v2-mb-hero-art::before {
        width: 340px;
        height: 340px;
    }

    .v2-mb-hero-doctor {
        width: 330px;
    }

    .v2-mb-hero-claim {
        width: 122px;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

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

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

/* #endregion hero */

/* #region costs */
/* {{-- v2-medical-billing-costs --}} */
/* public/front/css/v2/v2-medical-billing-costs.css */

:root {
    --v2-mbc-purple-dark: #391D77;
    --v2-mbc-purple-mid: #5C1BB3;
    --v2-mbc-purple-light: rgba(92, 27, 179, 0.08);
    --v2-mbc-coral: #ff5757;
    --v2-mbc-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-mbc-section {
    background: var(--v2-bg); /* Light lavender background */
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.v2-mbc-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(92, 27, 179, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-mbc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.v2-mbc-header {
    max-width: 750px;
    margin: 0 auto 3rem;
    text-align: center;
}

.v2-mbc-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-mbc-coral);
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--v2-mbc-coral);
}

.v2-mbc-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-mbc-purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.v2-mbc-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--v2-subheading);
    font-weight: 400;
}

/* Cards Grid */
.v2-mbc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Card */
.v2-mbc-card {
    background: var(--v2-white);
    border: 1px solid rgba(92, 27, 179, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.v2-mbc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--v2-mbc-purple-mid), var(--v2-mbc-coral));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.v2-mbc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(92, 27, 179, 0.1);
    border-color: rgba(92, 27, 179, 0.3);
}

.v2-mbc-card:hover::before {
    opacity: 1;
}

.v2-mbc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--v2-mbc-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-mbc-purple-mid);
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.v2-mbc-card:hover .v2-mbc-icon {
    background: var(--v2-mbc-purple-mid);
    color: var(--v2-white);
}

.v2-mbc-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--v2-mbc-purple-dark);
    margin-bottom: 0.75rem;
}

.v2-mbc-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--v2-subheading);
    margin: 0;
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1023px) {
    .v2-mbc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .v2-mbc-section {
        padding: 3rem 0;
    }

    .v2-mbc-heading {
        font-size: 1.8rem;
    }

    .v2-mbc-body {
        font-size: 1rem;
    }

    .v2-mbc-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .v2-mbc-card {
        padding: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-mbc-card,
    .v2-mbc-icon,
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* #endregion costs */

/* #region solutions */
/* {{-- v2-medical-billing-solutions --}} */

:root {
    --v2-mbs-purple-dark: #391D77;
    --v2-mbs-purple-mid: #5C1BB3;
    --v2-mbs-purple-light: rgba(92, 27, 179, 0.08);
    --v2-mbs-coral: #ff5757;
    --v2-mbs-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-mbs-section {
    background: var(--v2-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.v2-mbs-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(92, 27, 179, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-mbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.v2-mbs-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.v2-mbs-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v2-mbs-coral);
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--v2-mbs-coral);
}

.v2-mbs-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-mbs-purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.v2-mbs-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--v2-subheading);
    font-weight: 400;
}

/* Grid */
.v2-mbs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Card Base */
.v2-mbs-card {
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-mbs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(92, 27, 179, 0.15);
}

/* Dark Card */
.v2-mbs-card-dark {
    background: linear-gradient(135deg, var(--v2-mbs-purple-dark) 0%, var(--v2-mbs-purple-mid) 100%);
    color: var(--v2-white);
}

.v2-mbs-card-dark .v2-mbs-card-title {
    color: var(--v2-white);
}

.v2-mbs-card-dark .v2-mbs-list li {
    color: rgba(255, 255, 255, 0.9);
}

.v2-mbs-card-dark .v2-mbs-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--v2-mbs-coral);
}

/* Light Card */
.v2-mbs-card-light {
    background: var(--v2-white);
    border: 1px solid rgba(92, 27, 179, 0.1);
}

.v2-mbs-card-light .v2-mbs-card-title {
    color: var(--v2-mbs-purple-dark);
}

.v2-mbs-card-light .v2-mbs-list li {
    color: var(--v2-subheading);
}

.v2-mbs-card-light .v2-mbs-icon {
    background: var(--v2-mbs-purple-light);
    color: var(--v2-mbs-purple-mid);
}

/* Card Header */
.v2-mbs-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.v2-mbs-card-light .v2-mbs-card-header {
    border-bottom-color: rgba(92, 27, 179, 0.1);
}

.v2-mbs-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-mbs-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

/* List */
.v2-mbs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.v2-mbs-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.v2-mbs-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5757' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
}

.v2-mbs-card-light .v2-mbs-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C1BB3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1023px) {
    .v2-mbs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .v2-mbs-section {
        padding: 3rem 0;
    }

    .v2-mbs-heading {
        font-size: 1.8rem;
    }

    .v2-mbs-body {
        font-size: 1rem;
    }

    .v2-mbs-card {
        padding: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-mbs-card,
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* #endregion solutions */

/* #region BENEFITS */
/* =========================================================
   AVORCMS — MEDICAL BILLING BENEFITS
   ========================================================= */
:root {
    --v2-bene-purple-dark: #391D77;
    --v2-bene-purple-mid: #5C1BB3;
    --v2-bene-purple-light: rgba(92, 27, 179, 0.08);
    --v2-bene-coral: #ff5757;
}

.v2-bene-section {
    background: var(--v2-bg); /* Light lavender */
    padding: 3rem 0; /* reduced padding to fit viewport */
    min-height: auto;
}

.v2-bene-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.v2-bene-header {
    text-align: center;
    margin-bottom: 2rem;
}

.v2-bene-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--v2-bene-purple-dark);
    letter-spacing: -0.02em;
    margin: 0;
}

.v2-bene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    gap: 1.5rem;
}

.v2-bene-card {
    background: var(--v2-white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(92, 27, 179, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.v2-bene-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(92, 27, 179, 0.1);
}

.v2-bene-icon {
    width: 48px;
    height: 48px;
    background: var(--v2-bene-purple-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-bene-purple-mid);
    margin-bottom: 1rem;
}

.v2-bene-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--v2-bene-coral);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.v2-bene-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--v2-bene-purple-dark);
    margin-bottom: 0.75rem;
}

.v2-bene-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--v2-subheading);
    margin: 0;
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1023px) {
    .v2-bene-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .v2-bene-section {
        padding: 2rem 0;
    }

    .v2-bene-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .v2-bene-card {
        padding: 1.25rem;
    }

    .v2-bene-number {
        font-size: 1.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-bene-card,
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
/* #endregion BENEFITS */

/* #region PROCESS */

:root {
    --v2-mbproc-purple-dark: #391D77;
    --v2-mbproc-purple-mid: #5C1BB3;
    --v2-mbproc-purple-light: rgba(92, 27, 179, 0.08);
    --v2-mbproc-coral: #ff5757;
}

.v2-mbproc-section {
    background: var(--v2-white);
    padding: 4rem 0;
}

.v2-mbproc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.v2-mbproc-header {
    text-align: center;
    margin-bottom: 3rem;
}

.v2-mbproc-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-mbproc-purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.v2-mbproc-subheading {
    font-size: 1.1rem;
    color: var(--v2-subheading);
    max-width: 600px;
    margin: 0 auto;
}

.v2-mbproc-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Navigation */
.v2-mbproc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.v2-mbproc-step-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.v2-mbproc-step-btn:hover {
    background: var(--v2-mbproc-purple-light);
}

.v2-mbproc-step-btn.v2-active {
    background: var(--v2-mbproc-purple-light);
    box-shadow: 0 4px 12px rgba(92, 27, 179, 0.1);
}

.v2-mbproc-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--v2-white);
    border: 2px solid var(--v2-mbproc-purple-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--v2-mbproc-purple-mid);
    transition: background 0.3s, color 0.3s;
}

.v2-mbproc-step-btn.v2-active .v2-mbproc-step-number {
    background: var(--v2-mbproc-purple-mid);
    color: var(--v2-white);
}

.v2-mbproc-step-label {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
    color: var(--v2-mbproc-purple-dark);
}

.v2-mbproc-step-duration {
    font-size: 0.85rem;
    color: var(--v2-subheading);
}

/* Details Panel */
.v2-mbproc-details {
    background: var(--v2-bg);
    border-radius: 20px;
    padding: 2rem;
    min-height: 300px;
    position: relative;
}

.v2-mbproc-detail {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.v2-mbproc-detail.v2-active {
    display: block;
}

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

.v2-mbproc-detail-icon {
    color: var(--v2-mbproc-coral);
    margin-bottom: 1rem;
}

.v2-mbproc-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--v2-mbproc-purple-dark);
    margin-bottom: 1.5rem;
}

.v2-mbproc-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2-mbproc-detail-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: var(--v2-subheading);
    line-height: 1.6;
}

.v2-mbproc-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5757' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1023px) {
    .v2-mbproc-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .v2-mbproc-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .v2-mbproc-step-btn {
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .v2-mbproc-step-duration {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .v2-mbproc-section {
        padding: 3rem 0;
    }

    .v2-mbproc-heading {
        font-size: 1.8rem;
    }

    .v2-mbproc-nav {
        flex-direction: column;
    }

    .v2-mbproc-step-btn {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0.75rem 1rem;
    }

    .v2-mbproc-details {
        padding: 1.5rem;
    }

    .v2-mbproc-detail-title {
        font-size: 1.3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-mbproc-detail,
    [data-reveal] {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* #endregion PROCESS */   

/* #region pricing */
:root {
    --v2-mbp-purple-dark: #391D77;
    --v2-mbp-purple-mid: #5C1BB3;
    --v2-mbp-purple-light: rgba(92, 27, 179, 0.08);
    --v2-mbp-coral: #ff5757;
}

.v2-mbp-section {
    background: var(--v2-bg);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.v2-mbp-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(92, 27, 179, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v2-mbp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.v2-mbp-header {
    text-align: center;
    margin-bottom: 3rem;
}

.v2-mbp-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--v2-mbp-purple-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.v2-mbp-subheading {
    font-size: 1.1rem;
    color: var(--v2-subheading);
    max-width: 650px;
    margin: 0 auto;
}

/* Grid */
.v2-mbp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Cards */
.v2-mbp-card {
    background: var(--v2-white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(92, 27, 179, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.v2-mbp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(92, 27, 179, 0.1);
}

/* Standard Card */
.v2-mbp-card-standard .v2-mbp-card-icon {
    color: var(--v2-mbp-purple-mid);
}

/* Featured Card */
.v2-mbp-card-featured {
    background: linear-gradient(135deg, var(--v2-mbp-purple-dark) 0%, var(--v2-mbp-purple-mid) 100%);
    border: none;
    color: var(--v2-white);
}

.v2-mbp-card-featured .v2-mbp-card-title,
.v2-mbp-card-featured .v2-mbp-card-sub,
.v2-mbp-card-featured .v2-mbp-includes-label {
    color: var(--v2-white);
}

.v2-mbp-card-featured .v2-mbp-includes-list li {
    color: rgba(255, 255, 255, 0.9);
}

.v2-mbp-card-featured .v2-mbp-card-icon {
    color: var(--v2-mbp-coral);
}

.v2-mbp-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--v2-mbp-coral);
    color: var(--v2-white);
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.v2-mbp-card-icon {
    margin-bottom: 1rem;
}

.v2-mbp-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--v2-mbp-purple-dark);
    margin-bottom: 1.5rem;
}

.v2-mbp-card-sub {
    font-size: 1rem;
    color: var(--v2-subheading);
    margin-bottom: 1rem;
}

/* Features List */
.v2-mbp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.v2-mbp-features li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--v2-subheading);
}

.v2-mbp-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C1BB3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
}

.v2-mbp-card-featured .v2-mbp-features li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5757' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* Includes List */
.v2-mbp-includes {
    margin-bottom: 2rem;
}

.v2-mbp-includes-label {
    display: block;
    font-weight: 700;
    color: var(--v2-mbp-purple-dark);
    margin-bottom: 0.75rem;
}

.v2-mbp-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2-mbp-includes-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--v2-subheading);
}

.v2-mbp-includes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5757' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
}

/* CTA Buttons */
.v2-mbp-cta {
    display: block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--v2-mbp-purple-light);
    color: var(--v2-mbp-purple-mid);
    transition: background 0.3s, color 0.3s;
}

.v2-mbp-cta:hover {
    background: var(--v2-mbp-purple-mid);
    color: var(--v2-white);
}

.v2-mbp-cta-primary {
    background: var(--v2-mbp-coral);
    color: var(--v2-white);
}

.v2-mbp-cta-primary:hover {
    background: #e74c3c;
}

/* Special Offer */
.v2-mbp-offer {
    background: var(--v2-white);
    border-radius: 20px;
    border: 2px dashed var(--v2-mbp-purple-mid);
    padding: 2rem;
    margin-top: 2rem;
}

.v2-mbp-offer-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.v2-mbp-offer-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--v2-mbp-purple-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-mbp-purple-mid);
}

.v2-mbp-offer-text {
    flex: 1;
    min-width: 200px;
}

.v2-mbp-offer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--v2-mbp-purple-dark);
    margin-bottom: 0.5rem;
}

.v2-mbp-offer-desc {
    font-size: 0.95rem;
    color: var(--v2-subheading);
    margin: 0;
}

.v2-mbp-offer-btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--v2-mbp-purple-mid);
    color: var(--v2-white);
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.v2-mbp-offer-btn:hover {
    background: var(--v2-mbp-purple-dark);
    transform: translateY(-2px);
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1023px) {
    .v2-mbp-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .v2-mbp-section {
        padding: 3rem 0;
    }

    .v2-mbp-heading {
        font-size: 1.8rem;
    }

    .v2-mbp-card {
        padding: 1.5rem;
    }

    .v2-mbp-offer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .v2-mbp-offer-btn {
        width: 100%;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-mbp-card,
    .v2-mbp-cta,
    .v2-mbp-offer-btn,
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* #endregion pricing */

/* #region closing */
:root {
    --v2-mbclosing-purple-dark: #391D77;
    --v2-mbclosing-purple-mid: #5C1BB3;
    --v2-mbclosing-purple-light: rgba(92, 27, 179, 0.08);
    --v2-mbclosing-coral: #ff5757;
}

.v2-mbclosing-section {
    background: var(--v2-bg); /* Light lavender */
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.v2-mbclosing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.v2-mbclosing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.v2-mbclosing-card {
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-mbclosing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(92, 27, 179, 0.1);
}

/* Light Card */
.v2-mbclosing-card-light {
    background: var(--v2-white);
    border: 1px solid rgba(92, 27, 179, 0.1);
}

.v2-mbclosing-card-light .v2-mbclosing-icon {
    color: var(--v2-mbclosing-purple-mid);
}

.v2-mbclosing-card-light .v2-mbclosing-heading {
    color: var(--v2-mbclosing-purple-dark);
}

.v2-mbclosing-card-light .v2-mbclosing-body {
    color: var(--v2-subheading);
}

/* Dark Card */
.v2-mbclosing-card-dark {
    background: linear-gradient(135deg, var(--v2-mbclosing-purple-dark) 0%, var(--v2-mbclosing-purple-mid) 100%);
    color: var(--v2-white);
}

.v2-mbclosing-card-dark .v2-mbclosing-icon {
    color: var(--v2-mbclosing-coral);
}

.v2-mbclosing-card-dark .v2-mbclosing-heading {
    color: var(--v2-white);
}

.v2-mbclosing-card-dark .v2-mbclosing-body {
    color: rgba(255, 255, 255, 0.9);
}

/* Icon */
.v2-mbclosing-icon {
    margin-bottom: 1.5rem;
}

/* Heading */
.v2-mbclosing-heading {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Body */
.v2-mbclosing-body {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* CTA */
.v2-mbclosing-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    background: var(--v2-mbclosing-purple-mid);
    color: var(--v2-white);
    margin-top: auto;
    transition: background 0.3s, transform 0.3s;
}

.v2-mbclosing-cta:hover {
    background: var(--v2-mbclosing-purple-dark);
    transform: translateY(-2px);
}

.v2-mbclosing-cta-coral {
    background: var(--v2-mbclosing-coral);
}

.v2-mbclosing-cta-coral:hover {
    background: #e74c3c;
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1023px) {
    .v2-mbclosing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .v2-mbclosing-section {
        padding: 3rem 0;
    }

    .v2-mbclosing-card {
        padding: 1.5rem;
    }

    .v2-mbclosing-heading {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-mbclosing-card,
    .v2-mbclosing-cta,
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* #endregion closing */





