/* =====================================================================
   Revenue Cycle Management in Dubai — page.css
   Theme: Black / Blue / White only · Alternating Dark & Light sections
   All rules are section-scoped. No global selectors.
   ===================================================================== */

/* ---------- Page shell (overflow guard, no global CSS) ---------- */
.rcmpage-shell {
    overflow-x: hidden;
    max-width: 100vw;
    background: #ffffff;
    color: #04070f;
}
.rcmpage-shell img { max-width: 100%; height: auto; }

/* Shared reveal-on-scroll (scoped to shell) */
.rcmpage-shell .rcm-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}
.rcmpage-shell .rcm-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .rcmpage-shell .rcm-reveal { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   1. HERO (DARK)
   ===================================================================== */
.rcmhero-section {
    position: relative;
    padding: 30px 0;
    background: #04070f;
    color: #ffffff;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}
.rcmhero-bgwrap { position: absolute; inset: 0; z-index: 0; }
.rcmhero-bgimg {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .5;
}
.rcmhero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(4,7,15,.97) 0%, rgba(4,7,15,.86) 42%, rgba(6,20,48,.72) 100%);
}
.rcmhero-gridlines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(43,127,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43,127,255,.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 70% 40%, rgba(0,0,0,.9), transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 40%, rgba(0,0,0,.9), transparent 70%);
}
.rcmhero-container { position: relative; z-index: 1; }

.rcmhero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    border: 1px solid rgba(43,127,255,.45);
    border-radius: 999px;
    background: rgba(43,127,255,.12);
    color: #8db8ff;
    font-size: 13px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 22px;
    animation: rcmheroPulse 3.2s ease-in-out infinite;
}
.rcmhero-eyebrow-icon { color: #2b7fff; }
@keyframes rcmheroPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(43,127,255,.28); }
    50% { box-shadow: 0 0 0 9px rgba(43,127,255,0); }
}

.rcmhero-title {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-top: 30px;
}
.rcmhero-title-accent {
    background: linear-gradient(92deg, #2b7fff, #7fb2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #2b7fff;
}
.rcmhero-lead { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.86); margin-bottom: 14px; }
.rcmhero-sub { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.66); margin-bottom: 28px; }

.rcmhero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.rcmhero-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(120deg, #2b7fff, #1a5fd6);
    color: #ffffff;
    font-weight: 700; font-size: 15px;
    border: 0; border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(43,127,255,.35);
    transition: transform .3s ease, box-shadow .3s ease;
}
.rcmhero-btn-primary svg { transition: transform .3s ease; }
.rcmhero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(43,127,255,.5);
    color: #ffffff; text-decoration: none;
}
.rcmhero-btn-primary:hover svg { transform: translateX(5px); }
.rcmhero-btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 28px;
    background: rgba(255,255,255,.05);
    color: #ffffff;
    font-weight: 600; font-size: 15px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.rcmhero-btn-ghost:hover {
    background: rgba(43,127,255,.16);
    border-color: #2b7fff;
    transform: translateY(-3px);
    color: #ffffff; text-decoration: none;
}
.rcmhero-btn-ghost svg { color: #7fb2ff; transition: transform .3s ease; }
.rcmhero-btn-ghost:hover svg { transform: rotate(-12deg) scale(1.1); }

.rcmhero-badges {
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 0; margin: 0;
}
.rcmhero-badges li {
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,.82);
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.rcmhero-badges li:hover {
    border-color: rgba(43,127,255,.7);
    background: rgba(43,127,255,.12);
    transform: translateY(-2px);
}

/* Hero right visual — glass dashboard + floating cards */
.rcmhero-visual-col { position: relative; }
.rcmhero-visual { position: relative; padding: 40px 10px; display: flex; justify-content: center; }
.rcmhero-dash {
    width: 100%; max-width: 480px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
    animation: rcmheroFloat 7s ease-in-out infinite;
}
@keyframes rcmheroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.rcmhero-dash-head {
    display: flex; align-items: center; gap: 7px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.rcmhero-dash-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.22); }
.rcmhero-dash-dot:first-child { background: #2b7fff; }
.rcmhero-dash-title { margin-left: auto; font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: .06em; }
.rcmhero-dash-body { padding: 18px; }
.rcmhero-kpi-row { display: flex; gap: 12px; margin-bottom: 18px; }
.rcmhero-kpi {
    flex: 1;
    background: rgba(4,7,15,.5);
    border: 1px solid rgba(43,127,255,.2);
    border-radius: 12px;
    padding: 12px;
    display: flex; flex-direction: column; gap: 6px;
}
.rcmhero-kpi-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.rcmhero-kpi-value { font-size: 22px; font-weight: 800; color: #ffffff; }
.rcmhero-kpi-bar { display: block; height: 4px; border-radius: 4px; background: rgba(255,255,255,.1); overflow: hidden; }
.rcmhero-kpi-bar span { display: block; height: 100%; width: var(--kpi, 50%); background: linear-gradient(90deg, #2b7fff, #7fb2ff); border-radius: 4px; animation: rcmheroBar 1.6s ease both; }
@keyframes rcmheroBar { from { width: 0; } }
.rcmhero-chart svg { width: 100%; height: auto; display: block; }
.rcmhero-chart-line { stroke-dasharray: 520; stroke-dashoffset: 520; animation: rcmheroLine 2.4s ease-out .4s forwards; }
@keyframes rcmheroLine { to { stroke-dashoffset: 0; } }
.rcmhero-chart-cap { display: block; margin-top: 8px; font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .05em; }

.rcmhero-float {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: rgba(4,7,15,.82);
    border: 1px solid rgba(43,127,255,.35);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    color: #7fb2ff;
    z-index: 2;
}
.rcmhero-float strong { display: block; font-size: 12.5px; color: #ffffff; }
.rcmhero-float span { display: block; font-size: 11px; color: rgba(255,255,255,.55); }
.rcmhero-float-a { top: 6%; right: 2%; animation: rcmheroFloat 6s ease-in-out .8s infinite; }
.rcmhero-float-b { bottom: 4%; left: 0; animation: rcmheroFloat 8s ease-in-out .3s infinite; }
.rcmhero-float-c { top: 42%; left: -4%; animation: rcmheroFloat 7s ease-in-out 1.4s infinite; }
.rcmhero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(60px); pointer-events: none;
}
.rcmhero-orb-1 { width: 220px; height: 220px; background: rgba(43,127,255,.28); top: -8%; right: -6%; }
.rcmhero-orb-2 { width: 180px; height: 180px; background: rgba(43,127,255,.16); bottom: -6%; left: 6%; }
@media (max-width:991.98px){.rcmhero-section{min-height:auto;padding:50px 0 35px}.rcmhero-content{text-align:center;margin-bottom:35px}.rcmhero-title{font-size:38px;line-height:1.2}.rcmhero-lead{font-size:16px}.rcmhero-sub{font-size:15px;margin-bottom:22px}.rcmhero-cta-row{display:flex;flex-direction:column;align-items:center;gap:12px;margin:25px auto;width:100%}.rcmhero-btn-primary,.rcmhero-btn-ghost{width:100%;max-width:420px;justify-content:center;padding:15px 20px}.rcmhero-badges{justify-content:center;gap:10px}.rcmhero-visual{padding:20px 0 0}.rcmhero-dash{max-width:100%}.rcmhero-float{transform:scale(.92)}.rcmhero-float-a{top:-12px;right:0}.rcmhero-float-b{left:0;bottom:-12px}.rcmhero-float-c{left:0}}@media (max-width:767.98px){.rcmhero-section{padding:40px 0 30px}.rcmhero-title{font-size:32px}.rcmhero-eyebrow{font-size:11px;padding:6px 14px}.rcmhero-lead,.rcmhero-sub{font-size:15px;line-height:1.7}.rcmhero-kpi-row{gap:10px}.rcmhero-kpi{padding:10px}.rcmhero-kpi-value{font-size:20px}.rcmhero-chart{margin-top:8px}.rcmhero-float,.rcmhero-orb{display:none}.rcmhero-badges li{font-size:11px;padding:7px 12px}}@media (max-width:575.98px){.rcmhero-title{font-size:28px}.rcmhero-lead,.rcmhero-sub{font-size:14px}.rcmhero-btn-primary,.rcmhero-btn-ghost{width:100%;max-width:none;font-size:14px;padding:14px 16px}.rcmhero-btn-primary svg,.rcmhero-btn-ghost svg{width:16px;height:16px}.rcmhero-kpi-row{flex-direction:column}.rcmhero-kpi{width:100%}.rcmhero-dash-head{padding:12px 14px}.rcmhero-dash-body{padding:14px}.rcmhero-chart-cap{text-align:center}.rcmhero-badges{gap:8px}.rcmhero-badges li{width:100%;text-align:center}}
/* =====================================================================
   2. WHAT IS RCM (LIGHT)
   ===================================================================== */
.rcmwhat-section { padding: 30px 0; background: #ffffff; color: #04070f; }
.rcmwhat-head { max-width: 820px; margin: 0 auto 34px; text-align: center; }
.rcmwhat-eyebrow,
.rcmserv-eyebrow, .rcmfeat-eyebrow, .rcmbill-eyebrow, .rcmint-eyebrow, .rcmtech-eyebrow, .rcmimpl-eyebrow, .rcmfaq-eyebrow {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 999px;
    background: rgba(43,127,255,.09);
    border: 1px solid rgba(43,127,255,.28);
    color: #1a5fd6;
    font-size: 12px; font-weight: 700;
    letter-spacing: .13em; text-transform: uppercase;
    margin-bottom: 16px;
}
.rcmwhat-title { font-size: 36px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.rcmwhat-intro { font-size: 16.5px; line-height: 1.75; color: rgba(4,7,15,.72); margin: 0; }
.rcmwhat-row { margin-bottom: 8px; }
.rcmwhat-block { margin-bottom: 24px; }
.rcmwhat-subtitle {
    font-size: 21px; font-weight: 750; font-weight: 700;
    margin: 22px 0 10px;
    padding-left: 14px;
    border-left: 3px solid #2b7fff;
}
.rcmwhat-block p, .rcmwhat-panel p { font-size: 15px; line-height: 1.75; color: rgba(4,7,15,.74); }
.rcmwhat-list { list-style: none; padding: 0; margin: 0 0 14px; }
.rcmwhat-list li {
    position: relative;
    padding: 9px 0 9px 26px;
    font-size: 15px; line-height: 1.65;
    color: rgba(4,7,15,.78);
    border-bottom: 1px dashed rgba(4,7,15,.1);
}
.rcmwhat-list li::before {
    content: '';
    position: absolute; left: 4px; top: 17px;
    width: 8px; height: 8px; border-radius: 2px;
    background: #2b7fff;
    transform: rotate(45deg);
}
.rcmwhat-checklist { list-style: none; padding: 0; margin: 0; }
.rcmwhat-checklist li {
    position: relative;
    padding: 9px 0 9px 32px;
    font-size: 15px; line-height: 1.65;
    color: rgba(4,7,15,.78);
}
.rcmwhat-checklist li::before {
    content: '';
    position: absolute; left: 2px; top: 13px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(43,127,255,.12);
    border: 1.6px solid #2b7fff;
}
.rcmwhat-checklist li::after {
    content: '';
    position: absolute; left: 7px; top: 17.5px;
    width: 8px; height: 5px;
    border-left: 2px solid #1a5fd6;
    border-bottom: 2px solid #1a5fd6;
    transform: rotate(-45deg);
}
.rcmwhat-figure { position: relative; margin: 0 0 26px; }
.rcmwhat-img { width: 100%; border-radius: 18px; box-shadow: 0 24px 56px rgba(4,7,15,.16); display: block; }
.rcmwhat-img-frame {
    position: absolute; inset: 14px -14px -14px 14px;
    border: 2px solid rgba(43,127,255,.3);
    border-radius: 18px;
    z-index: -1;
}
.rcmwhat-panel {
    height: 100%;
    padding: 26px 26px 18px;
    border-radius: 18px;
    background: #f4f8ff;
    background: linear-gradient(160deg, rgba(43,127,255,.06), rgba(43,127,255,.02));
    border: 1px solid rgba(43,127,255,.16);
    transition: transform .35s ease, box-shadow .35s ease;
    margin-bottom: 24px;
}
.rcmwhat-panel:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(43,127,255,.14); }
.rcmwhat-panel .rcmwhat-subtitle { margin-top: 0; }
.rcmwhat-panel-blue { background: linear-gradient(160deg, rgba(43,127,255,.12), rgba(43,127,255,.04)); }
.rcmwhat-xlist { list-style: none; padding: 0; margin: 0; }
.rcmwhat-xlist li {
    position: relative;
    padding: 9px 0 9px 26px;
    font-size: 15px; line-height: 1.65;
    color: rgba(4,7,15,.78);
}
.rcmwhat-xlist li::before {
    content: '\2715';
    position: absolute; left: 0; top: 9px;
    color: #1a5fd6; font-size: 13px; font-weight: 700;
}

/* Visual timeline */
.rcmwhat-timeline {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 6px;
    margin-top: 30px;
    padding: 26px 18px;
    border-radius: 20px;
    background: #04070f;
}
.rcmwhat-step {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    gap: 8px;
    padding: 14px 10px;
    min-width: 128px; flex: 1;
    text-align: center;
}
.rcmwhat-step-num { font-size: 11px; font-weight: 700; letter-spacing: .18em; color: rgba(255,255,255,.4); }
.rcmwhat-step-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: rgba(43,127,255,.12);
    border: 1px solid rgba(43,127,255,.4);
    color: #7fb2ff;
    transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}
.rcmwhat-step:hover .rcmwhat-step-icon {
    transform: translateY(-6px) scale(1.06);
    background: #2b7fff;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(43,127,255,.45);
}
.rcmwhat-step-label { font-size: 12.5px; font-weight: 600; color: #ffffff; line-height: 1.35; }
.rcmwhat-step-arrow {
    position: absolute; right: -12px; top: 46px;
    color: rgba(43,127,255,.6);
}
/* ===== Technology Stack - brand logos (NEW) ===== */
.rcmtech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 26px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed rgba(43,127,255,.25);
}
.rcmtech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100px;
}
.rcmtech-logo-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(4,7,15,.08));
    transition: transform .3s ease;
}
.rcmtech-logo-item:hover img { transform: translateY(-4px) scale(1.05); }
.rcmtech-logo-item span {
    font-size: 12.5px;
    font-weight: 650;
    color: rgba(4,7,15,.68);
    text-align: center;
}

/* fallback box if a logo URL 404s */
.rcmtech-logo-item.rcmtech-logo-error img { display: none; }
.rcmtech-logo-item.rcmtech-logo-error::before {
    content: '';
    width: 100px; height: 100px;
    border-radius: 16px;
    background: rgba(43,127,255,.08);
    border: 1px dashed rgba(43,127,255,.35);
    display: block;
}

@media (max-width: 575.98px) {
    .rcmtech-logo-item, .rcmtech-logo-item img { width: 76px; height: 76px; }
    .rcmtech-logos { gap: 18px; }
}
/* =====================================================================
   3. WHY DUBAI PROVIDERS NEED RCM (DARK)
   ===================================================================== */
.rcmwhy-section { padding: 30px 0; background: #060b16; color: #ffffff; }
.rcmwhy-head { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.rcmwhy-eyebrow,
.rcmflow-eyebrow, .rcmai-eyebrow, .rcmcomp-eyebrow, .rcmind-eyebrow, .rcmchoose-eyebrow, .rcmcase-eyebrow {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 999px;
    background: rgba(43,127,255,.14);
    border: 1px solid rgba(43,127,255,.4);
    color: #8db8ff;
    font-size: 12px; font-weight: 700;
    letter-spacing: .13em; text-transform: uppercase;
    margin-bottom: 16px;
}
.rcmwhy-title { font-size: 34px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.rcmwhy-col { margin-bottom: 24px; display: flex; }
.rcmwhy-card {
    position: relative;
    width: 100%;
    padding: 26px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.09);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.rcmwhy-card::before {
    content: '';
    position: absolute; left: 0; top: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #2b7fff, transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .45s ease;
}
.rcmwhy-card:hover { transform: translateY(-7px); border-color: rgba(43,127,255,.5); background: rgba(43,127,255,.07); }
.rcmwhy-card:hover::before { transform: scaleX(1); }
.rcmwhy-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(43,127,255,.14);
    color: #7fb2ff;
    margin-bottom: 16px;
    transition: transform .4s ease, background .4s ease, color .4s ease;
}
.rcmwhy-card:hover .rcmwhy-card-icon { transform: rotate(-8deg) scale(1.08); background: #2b7fff; color: #ffffff; }
.rcmwhy-card-title { font-size: 17.5px; font-weight: 700; margin-bottom: 10px; color: #ffffff; }
.rcmwhy-card-text { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.62); margin: 0; }

/* =====================================================================
   4. SERVICES SLIDER (LIGHT)
   ===================================================================== */
.rcmserv-section { padding: 30px 0; background: #ffffff; color: #04070f; overflow: hidden; }
.rcmserv-head { max-width: 820px; margin: 0 auto 30px; text-align: center; }
.rcmserv-title { font-size: 36px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.rcmserv-intro { font-size: 16px; line-height: 1.7; color: rgba(4,7,15,.7); margin: 0; }
.rcmserv-slider-wrap { position: relative; }
.rcmserv-slider, .rcmfeat-slider, .rcmint-slider, .rcmind-slider, .rcmchoose-slider {
    overflow: hidden;
    cursor: grab;
    padding: 10px 0 22px;
}
.rcmserv-slider.is-dragging, .rcmfeat-slider.is-dragging, .rcmint-slider.is-dragging,
.rcmind-slider.is-dragging, .rcmchoose-slider.is-dragging { cursor: grabbing; }
.rcmserv-track, .rcmfeat-track, .rcmint-track, .rcmind-track, .rcmchoose-track {
    display: flex;
    gap: 22px;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}
.rcmserv-card {
    flex: 0 0 360px;
    max-width: 360px;
    background: #ffffff;
    border: 1px solid rgba(4,7,15,.09);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4,7,15,.07);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.rcmserv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 54px rgba(43,127,255,.18);
    border-color: rgba(43,127,255,.4);
}
.rcmserv-card-media { position: relative; height: 170px; overflow: hidden; }
.rcmserv-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
    pointer-events: none;
}
.rcmserv-card:hover .rcmserv-card-media img { transform: scale(1.07); }
.rcmserv-card-num {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(4,7,15,.78);
    color: #7fb2ff;
    font-size: 12px; font-weight: 700; letter-spacing: .1em;
}
.rcmserv-card-body { padding: 20px 20px 22px; }
.rcmserv-card-title { font-size: 18px; font-weight: 750; font-weight: 700; margin-bottom: 10px; color: #04070f; }
.rcmserv-card-overview, .rcmserv-card-line { font-size: 13px; line-height: 1.65; color: rgba(4,7,15,.7); margin-bottom: 8px; }
.rcmserv-card-line strong, .rcmserv-card-overview strong { color: #1a5fd6; }
.rcmserv-card-outcome {
    margin-top: 10px; margin-bottom: 0;
    padding: 10px 12px;
    background: rgba(43,127,255,.07);
    border-left: 3px solid #2b7fff;
    border-radius: 0 10px 10px 0;
}
.rcmserv-controls, .rcmfeat-controls, .rcmint-controls, .rcmind-controls, .rcmchoose-controls {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    margin-top: 4px;
}
.rcmserv-arrow, .rcmfeat-arrow, .rcmint-arrow {
    width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(4,7,15,.16);
    background: #ffffff;
    color: #04070f;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.rcmserv-arrow:hover, .rcmfeat-arrow:hover, .rcmint-arrow:hover {
    background: #2b7fff; color: #ffffff; border-color: #2b7fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(43,127,255,.35);
}
.rcmserv-drag-hint, .rcmfeat-drag-hint, .rcmint-drag-hint {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(4,7,15,.5); letter-spacing: .03em;
}
.rcmserv-drag-hint svg { color: #2b7fff; animation: rcmservWave 2.4s ease-in-out infinite; }
@keyframes rcmservWave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(7px); }
}

/* =====================================================================
   5. WORKFLOW STEPPER (DARK)
   ===================================================================== */
.rcmflow-section { padding: 30px 0; background: #04070f; color: #ffffff; }
.rcmflow-head { max-width: 780px; margin: 0 auto 30px; text-align: center; }
.rcmflow-title { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.rcmflow-intro { font-size: 16px; color: rgba(255,255,255,.66); margin: 0; }
.rcmflow-stepper {
    display: flex; gap: 26px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    padding: 24px;
}
.rcmflow-rail {
    flex: 0 0 320px;
    max-height: 520px;
    overflow-y: auto;
    display: flex; flex-direction: column; gap: 6px;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(43,127,255,.5) transparent;
}
.rcmflow-node {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 13px;
    color: rgba(255,255,255,.62);
    text-align: left;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.rcmflow-node:hover { background: rgba(43,127,255,.1); color: #ffffff; transform: translateX(4px); }
.rcmflow-node.is-active {
    background: rgba(43,127,255,.16);
    border-color: rgba(43,127,255,.55);
    color: #ffffff;
}
.rcmflow-node-num {
    flex: 0 0 34px;
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1.6px solid rgba(43,127,255,.5);
    color: #7fb2ff;
    font-size: 13.5px; font-weight: 700;
    transition: background .3s ease, color .3s ease;
}
.rcmflow-node.is-active .rcmflow-node-num { background: #2b7fff; color: #ffffff; border-color: #2b7fff; }
.rcmflow-node-label { font-size: 14px; font-weight: 600; line-height: 1.35; }
.rcmflow-panels { flex: 1; position: relative; display: flex; flex-direction: column; }
.rcmflow-panel { display: none; animation: rcmflowFade .45s ease; flex: 1; }
.rcmflow-panel.is-active { display: block; }
@keyframes rcmflowFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.rcmflow-panel-stage {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    color: #7fb2ff;
    margin: 8px 0 14px;
}
.rcmflow-panel-title { font-size: 26px; font-weight: 800; margin-bottom: 14px; color: #ffffff; }
.rcmflow-panel-text { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.72); max-width: 620px; }
.rcmflow-panel-nav { display: flex; gap: 10px; margin-top: auto; padding-top: 18px; }
.rcmflow-nav-btn, .rcmimpl-nav-btn {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(43,127,255,.5);
    background: transparent;
    color: #7fb2ff;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.rcmflow-nav-btn:hover, .rcmimpl-nav-btn:hover { background: #2b7fff; color: #ffffff; transform: translateY(-3px); }
.rcmflow-outro {
    margin: 26px auto 0; max-width: 720px;
    text-align: center;
    font-size: 16px; font-weight: 600;
    color: #8db8ff;
    padding: 16px 22px;
    border: 1px dashed rgba(43,127,255,.45);
    border-radius: 14px;
}

/* =====================================================================
   6. FEATURES SLIDER (LIGHT)
   ===================================================================== */
.rcmfeat-section { padding: 30px 0; background: #ffffff; color: #04070f; overflow: hidden; }
.rcmfeat-head { max-width: 820px; margin: 0 auto 30px; text-align: center; }
.rcmfeat-title { font-size: 36px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.rcmfeat-intro { font-size: 16px; line-height: 1.7; color: rgba(4,7,15,.7); margin: 0; }
.rcmfeat-card {
    flex: 0 0 320px;
    max-width: 320px;
    padding: 28px 24px;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(43,127,255,.05), rgba(43,127,255,.01));
    border: 1px solid rgba(43,127,255,.16);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex; flex-direction: column;
}
.rcmfeat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43,127,255,.5);
    box-shadow: 0 24px 50px rgba(43,127,255,.16);
}
.rcmfeat-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 58px; height: 58px;
    border-radius: 16px;
    background: rgba(43,127,255,.1);
    color: #1a5fd6;
    margin-bottom: 18px;
    transition: transform .4s ease, background .4s ease, color .4s ease;
}
.rcmfeat-card:hover .rcmfeat-card-icon { transform: rotate(8deg) scale(1.1); background: #2b7fff; color: #ffffff; }
.rcmfeat-card-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #04070f; }
.rcmfeat-card-text { font-size: 13.5px; line-height: 1.7; color: rgba(4,7,15,.68); margin-bottom: 12px; }
.rcmfeat-card-benefit {
    margin-top: auto; margin-bottom: 0;
    font-size: 13px; line-height: 1.6;
    color: rgba(4,7,15,.75);
    padding: 10px 12px;
    background: rgba(43,127,255,.07);
    border-radius: 10px;
}
.rcmfeat-card-benefit strong { color: #1a5fd6; }

/* =====================================================================
   7. AI OPTIMIZATION (DARK)
   ===================================================================== */
.rcmai-section { padding: 30px 0; background: #060b16; color: #ffffff; }
.rcmai-toprow { margin-bottom: 30px; }
.rcmai-title { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.rcmai-intro { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.rcmai-para { font-size: 14.5px; line-height: 1.75; color: rgba(255,255,255,.62); margin: 0; }
.rcmai-para strong { color: #8db8ff; }
.rcmai-figure { position: relative; margin: 0; }
.rcmai-img { width: 100%; border-radius: 20px; display: block; border: 1px solid rgba(43,127,255,.3); }
.rcmai-img-glow {
    position: absolute; inset: -18px;
    background: radial-gradient(ellipse at center, rgba(43,127,255,.22), transparent 68%);
    z-index: -1;
    animation: rcmaiGlow 5s ease-in-out infinite;
}
@keyframes rcmaiGlow { 0%, 100% { opacity: .6; } 50% { opacity: 1; } }
.rcmai-col { margin-bottom: 24px; display: flex; }
.rcmai-card {
    width: 100%;
    padding: 26px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.09);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.rcmai-card:hover {
    transform: translateY(-7px);
    border-color: rgba(43,127,255,.55);
    box-shadow: 0 22px 46px rgba(43,127,255,.16);
}
.rcmai-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(43,127,255,.14);
    color: #7fb2ff;
    margin-bottom: 16px;
    transition: transform .4s ease, background .4s ease, color .4s ease;
}
.rcmai-card:hover .rcmai-card-icon { transform: scale(1.12) rotate(-6deg); background: #2b7fff; color: #ffffff; }
.rcmai-card-title { font-size: 17.5px; font-weight: 700; margin-bottom: 10px; color: #ffffff; }
.rcmai-card-text { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.62); margin: 0; }
.rcmai-usecases {
    margin-top: 8px;
    padding: 28px;
    border-radius: 20px;
    background: rgba(43,127,255,.08);
    border: 1px solid rgba(43,127,255,.3);
}
.rcmai-usecases-title { font-size: 19px; font-weight: 700; margin-bottom: 18px; color: #ffffff; }
.rcmai-usecase-col { margin-bottom: 14px; }
.rcmai-usecase { display: flex; gap: 14px; height: 100%; }
.rcmai-usecase-marker {
    flex: 0 0 4px; width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #2b7fff, rgba(43,127,255,.15));
}
.rcmai-usecase p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.74); margin: 0; }

/* =====================================================================
   8. BILLING + VIDEO (LIGHT)
   ===================================================================== */
.rcmbill-section { padding: 30px 0; background: #ffffff; color: #04070f; }
.rcmbill-head { max-width: 820px; margin: 0 auto 28px; text-align: center; }
.rcmbill-title { font-size: 36px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.rcmbill-intro { font-size: 16px; line-height: 1.7; color: rgba(4,7,15,.7); margin: 0; }
.rcmbill-video {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 34px;
    box-shadow: 0 26px 60px rgba(4,7,15,.22);
    aspect-ratio: 21 / 9;
    background: #04070f;
}
.rcmbill-video-poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.rcmbill-video-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(4,7,15,.25), rgba(4,7,15,.66));
    transition: background .4s ease;
}
.rcmbill-video:hover .rcmbill-video-shade { background: linear-gradient(180deg, rgba(4,7,15,.15), rgba(4,7,15,.55)); }
.rcmbill-video-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 86px; height: 86px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 0;
    background: #2b7fff;
    color: #ffffff;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 0 0 0 rgba(43,127,255,.5);
    animation: rcmbillRing 2.6s ease-out infinite;
}
@keyframes rcmbillRing {
    0% { box-shadow: 0 0 0 0 rgba(43,127,255,.5); }
    70% { box-shadow: 0 0 0 26px rgba(43,127,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(43,127,255,0); }
}
.rcmbill-video-play:hover { transform: translate(-50%, -50%) scale(1.12); }
.rcmbill-video-caption {
    position: absolute; left: 24px; bottom: 20px;
    color: #ffffff;
    font-size: 15px; font-weight: 600;
    letter-spacing: .02em;
}
.rcmbill-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.rcmbill-col { margin-bottom: 24px; display: flex; }
.rcmbill-card {
    width: 100%;
    padding: 24px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(4,7,15,.09);
    box-shadow: 0 8px 24px rgba(4,7,15,.05);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.rcmbill-card:hover {
    transform: translateY(-7px);
    border-color: rgba(43,127,255,.45);
    box-shadow: 0 22px 46px rgba(43,127,255,.15);
}
.rcmbill-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 13px;
    background: rgba(43,127,255,.1);
    color: #1a5fd6;
    margin-bottom: 14px;
    transition: transform .4s ease, background .4s ease, color .4s ease;
}
.rcmbill-card:hover .rcmbill-card-icon { transform: rotate(-9deg) scale(1.1); background: #2b7fff; color: #ffffff; }
.rcmbill-card-title { font-size: 16.5px; font-weight: 700; margin-bottom: 9px; color: #04070f; }
.rcmbill-card-text { font-size: 13px; line-height: 1.68; color: rgba(4,7,15,.66); margin: 0; }

/* =====================================================================
   9. COMPLIANCE TABS (DARK)
   ===================================================================== */
.rcmcomp-section { padding: 30px 0; background: #04070f; color: #ffffff; }
.rcmcomp-head { max-width: 840px; margin: 0 auto 30px; text-align: center; }
.rcmcomp-title { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; line-height: 1.2; }
.rcmcomp-intro { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.66); margin: 0; }
.rcmcomp-tablist {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}
.rcmcomp-tab {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.7);
    font-size: 13.5px; font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.rcmcomp-tab svg { transition: transform .3s ease; }
.rcmcomp-tab:hover { border-color: rgba(43,127,255,.6); color: #ffffff; transform: translateY(-2px); }
.rcmcomp-tab:hover svg { transform: scale(1.15); }
.rcmcomp-tab.is-active {
    background: #2b7fff;
    border-color: #2b7fff;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(43,127,255,.35);
}
.rcmcomp-panel { display: none; animation: rcmflowFade .45s ease; }
.rcmcomp-panel.is-active { display: block; }
.rcmcomp-item { margin-bottom: 22px; }
.rcmcomp-item h3 {
    font-size: 18px; font-weight: 700;
    color: #8db8ff;
    margin-bottom: 8px;
    padding-left: 13px;
    border-left: 3px solid #2b7fff;
}
.rcmcomp-item p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.68); margin: 0; }
.rcmcomp-item-wide p { max-width: 900px; }

/* =====================================================================
   10. INTEGRATIONS SLIDER (LIGHT)
   ===================================================================== */
.rcmint-section { padding: 30px 0; background: #ffffff; color: #04070f; overflow: hidden; }
.rcmint-head { max-width: 800px; margin: 0 auto 28px; text-align: center; }
.rcmint-title { font-size: 36px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.rcmint-intro { font-size: 16px; line-height: 1.7; color: rgba(4,7,15,.7); margin: 0; }
.rcmint-card {
    flex: 0 0 310px;
    max-width: 310px;
    padding: 26px 22px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(4,7,15,.1);
    box-shadow: 0 10px 26px rgba(4,7,15,.06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.rcmint-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43,127,255,.45);
    box-shadow: 0 24px 50px rgba(43,127,255,.16);
}
.rcmint-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px;
    border-radius: 15px;
    background: rgba(43,127,255,.1);
    color: #1a5fd6;
    margin-bottom: 16px;
    transition: transform .4s ease, background .4s ease, color .4s ease;
}
.rcmint-card:hover .rcmint-card-icon { transform: rotate(8deg) scale(1.1); background: #2b7fff; color: #ffffff; }
.rcmint-card-title { font-size: 16.5px; font-weight: 700; margin-bottom: 9px; color: #04070f; }
.rcmint-card-text { font-size: 13.5px; line-height: 1.68; color: rgba(4,7,15,.66); margin: 0; }
.rcmint-benefits {
    margin: 24px auto 0; max-width: 900px;
    text-align: center;
    font-size: 15px; line-height: 1.75;
    color: rgba(4,7,15,.75);
    padding: 18px 24px;
    background: rgba(43,127,255,.06);
    border: 1px dashed rgba(43,127,255,.4);
    border-radius: 16px;
}
.rcmint-benefits strong { color: #1a5fd6; }

/* =====================================================================
   11. INDUSTRIES SLIDER (DARK)
   ===================================================================== */
.rcmind-section { padding: 30px 0; background: #060b16; color: #ffffff; overflow: hidden; }
.rcmind-head { max-width: 700px; margin: 0 auto 28px; text-align: center; }
.rcmind-title { font-size: 34px; font-weight: 800; letter-spacing: -.02em; }
.rcmind-card {
    flex: 0 0 340px;
    max-width: 340px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.1);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.rcmind-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43,127,255,.55);
    box-shadow: 0 26px 54px rgba(43,127,255,.2);
}
.rcmind-card-media { position: relative; height: 200px; overflow: hidden; }
.rcmind-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
    pointer-events: none;
}
.rcmind-card:hover .rcmind-card-media img { transform: scale(1.08); }
.rcmind-card-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,11,22,.05) 35%, rgba(6,11,22,.92));
}
.rcmind-card-title {
    position: absolute; left: 18px; bottom: 14px; right: 18px;
    font-size: 20px; font-weight: 800;
    color: #ffffff;
    margin: 0;
}
.rcmind-card-text { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.66); padding: 18px 20px 22px; margin: 0; }
.rcmind-arrow, .rcmchoose-arrow {
    width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.24);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.rcmind-arrow:hover, .rcmchoose-arrow:hover {
    background: #2b7fff; border-color: #2b7fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(43,127,255,.4);
}
.rcmind-drag-hint, .rcmchoose-drag-hint { font-size: 13px; color: rgba(255,255,255,.5); letter-spacing: .03em; }

/* =====================================================================
   12. TECH STACK TABS (LIGHT)
   ===================================================================== */
.rcmtech-section { padding: 30px 0; background: #ffffff; color: #04070f; }
.rcmtech-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.rcmtech-title { font-size: 36px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.rcmtech-intro { font-size: 16px; color: rgba(4,7,15,.7); margin: 0; }
.rcmtech-tabs {
    background: linear-gradient(165deg, rgba(43,127,255,.05), rgba(43,127,255,.01));
    border: 1px solid rgba(43,127,255,.18);
    border-radius: 22px;
    padding: 26px;
}
.rcmtech-tablist { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.rcmtech-tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(4,7,15,.14);
    background: #ffffff;
    color: rgba(4,7,15,.68);
    font-size: 13.5px; font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.rcmtech-tab svg { transition: transform .3s ease; }
.rcmtech-tab:hover { border-color: #2b7fff; color: #1a5fd6; transform: translateY(-2px); }
.rcmtech-tab:hover svg { transform: rotate(-10deg) scale(1.12); }
.rcmtech-tab.is-active {
    background: #2b7fff; border-color: #2b7fff; color: #ffffff;
    box-shadow: 0 10px 26px rgba(43,127,255,.32);
}
.rcmtech-panel { display: none; animation: rcmflowFade .45s ease; }
.rcmtech-panel.is-active { display: block; }
.rcmtech-panel-title {
    font-size: 22px; font-weight: 800;
    color: #04070f;
    margin-bottom: 10px;
    padding-left: 13px;
    border-left: 3px solid #2b7fff;
}
.rcmtech-panel-text { font-size: 15.5px; line-height: 1.8; color: rgba(4,7,15,.72); margin: 0; max-width: 860px; }

/* =====================================================================
   13. WHY CHOOSE SISGAIN SLIDER (DARK)
   ===================================================================== */
.rcmchoose-section { padding: 30px 0; background: #04070f; color: #ffffff; overflow: hidden; }
.rcmchoose-head { max-width: 700px; margin: 0 auto 28px; text-align: center; }
.rcmchoose-title { font-size: 34px; font-weight: 800; letter-spacing: -.02em; }
.rcmchoose-card {
    position: relative;
    flex: 0 0 330px;
    max-width: 330px;
    padding: 28px 24px;
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.rcmchoose-card::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 85% 12%, rgba(43,127,255,.2), transparent 55%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}
.rcmchoose-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43,127,255,.55);
    box-shadow: 0 26px 52px rgba(43,127,255,.18);
}
.rcmchoose-card:hover::after { opacity: 1; }
.rcmchoose-card-index {
    position: absolute; top: 18px; right: 20px;
    font-size: 34px; font-weight: 900;
    color: rgba(43,127,255,.22);
    letter-spacing: -.02em;
}
.rcmchoose-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(43,127,255,.14);
    color: #7fb2ff;
    margin-bottom: 16px;
    transition: transform .4s ease, background .4s ease, color .4s ease;
}
.rcmchoose-card:hover .rcmchoose-card-icon { transform: scale(1.12) rotate(-7deg); background: #2b7fff; color: #ffffff; }
.rcmchoose-card-title { font-size: 17.5px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; color: #ffffff; }
.rcmchoose-card-text { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.64); margin: 0; }

/* =====================================================================
   14. IMPLEMENTATION STEPPER (LIGHT)
   ===================================================================== */
.rcmimpl-section { padding: 30px 0; background: #ffffff; color: #04070f; }
.rcmimpl-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.rcmimpl-title { font-size: 36px; font-weight: 800; letter-spacing: -.02em; }
.rcmimpl-stepper {
    display: flex; gap: 26px;
    border: 1px solid rgba(43,127,255,.2);
    background: linear-gradient(165deg, rgba(43,127,255,.05), rgba(43,127,255,.01));
    border-radius: 22px;
    padding: 24px;
}
.rcmimpl-rail {
    flex: 0 0 300px;
    max-height: 500px;
    overflow-y: auto;
    display: flex; flex-direction: column; gap: 6px;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(43,127,255,.5) transparent;
}
.rcmimpl-node {
    display: flex; align-items: center; gap: 14px;
    padding: 11px 14px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 13px;
    color: rgba(4,7,15,.62);
    text-align: left;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.rcmimpl-node:hover { background: rgba(43,127,255,.08); color: #04070f; transform: translateX(4px); }
.rcmimpl-node.is-active {
    background: rgba(43,127,255,.12);
    border-color: rgba(43,127,255,.5);
    color: #04070f;
}
.rcmimpl-node-num {
    flex: 0 0 34px;
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1.6px solid rgba(43,127,255,.55);
    color: #1a5fd6;
    font-size: 13.5px; font-weight: 700;
    transition: background .3s ease, color .3s ease;
}
.rcmimpl-node.is-active .rcmimpl-node-num { background: #2b7fff; color: #ffffff; border-color: #2b7fff; }
.rcmimpl-node-label { font-size: 14px; font-weight: 600; }
.rcmimpl-panels { flex: 1; display: flex; flex-direction: column; }
.rcmimpl-panel { display: none; animation: rcmflowFade .45s ease; flex: 1; }
.rcmimpl-panel.is-active { display: block; }
.rcmimpl-panel-stage {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    color: #1a5fd6;
    margin: 8px 0 12px;
}
.rcmimpl-panel-title { font-size: 26px; font-weight: 800; color: #04070f; margin-bottom: 12px; }
.rcmimpl-panel-text { font-size: 16px; line-height: 1.8; color: rgba(4,7,15,.72); max-width: 620px; }
.rcmimpl-panel-nav { display: flex; gap: 10px; margin-top: auto; padding-top: 18px; }
.rcmimpl-nav-btn { border-color: rgba(43,127,255,.55); color: #1a5fd6; }
/* ===== Implementation Process - Animated Timeline (NEW) ===== */
.rcmimpl-timeline { padding: 8px 4px 0; }

.rcmimpl-line {
    position: relative;
    height: 4px;
    border-radius: 4px;
    background: rgba(4,7,15,.08);
    margin: 0 26px 34px;
}
.rcmimpl-line-fill {
    position: absolute;
    left: 0; top: 0; height: 100%;
    width: 0%;
    border-radius: 4px;
    background: linear-gradient(90deg, #2b7fff, #7fb2ff);
    transition: width .6s cubic-bezier(.4,0,.2,1);
}

.rcmimpl-nodes {
    display: flex;
    gap: 4px;
    overflow-x: auto;}
/* =====================================================================
   15. SUCCESS STORIES (DARK)
   ===================================================================== */
.rcmcase-section { padding: 30px 0; background: #060b16; color: #ffffff; }
.rcmcase-head { max-width: 760px; margin: 0 auto 30px; text-align: center; }
.rcmcase-title { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.rcmcase-intro { font-size: 15px; color: rgba(255,255,255,.6); margin: 0; }
.rcmcase-col { margin-bottom: 24px; display: flex; }
.rcmcase-card {
    width: 100%;
    display: flex; flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.1);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.rcmcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43,127,255,.55);
    box-shadow: 0 28px 56px rgba(43,127,255,.18);
}
.rcmcase-card-media { position: relative; height: 180px; overflow: hidden; }
.rcmcase-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.rcmcase-card:hover .rcmcase-card-media img { transform: scale(1.07); }
.rcmcase-card-tag {
    position: absolute; top: 14px; left: 14px;
    padding: 6px 13px;
    border-radius: 999px;
    background: #2b7fff;
    color: #ffffff;
    font-size: 12px; font-weight: 700; letter-spacing: .08em;
}
.rcmcase-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; }
.rcmcase-card-title { font-size: 18px; font-weight: 750; font-weight: 700; line-height: 1.4; margin-bottom: 14px; color: #ffffff; }
.rcmcase-card-block { font-size: 13px; line-height: 1.68; color: rgba(255,255,255,.64); margin-bottom: 10px; }
.rcmcase-card-block strong { color: #8db8ff; }
.rcmcase-card-results {
    padding: 10px 13px;
    background: rgba(43,127,255,.12);
    border-left: 3px solid #2b7fff;
    border-radius: 0 10px 10px 0;
    color: rgba(255,255,255,.82);
}

/* =====================================================================
   16. FAQ ACCORDION (LIGHT)
   ===================================================================== */
.rcmfaq-section { padding: 30px 0; background: #ffffff; color: #04070f; }
.rcmfaq-head { max-width: 700px; margin: 0 auto 28px; text-align: center; }
.rcmfaq-title { font-size: 36px; font-weight: 800; letter-spacing: -.02em; }
.rcmfaq-list { max-width: 880px; margin: 0 auto; }
.rcmfaq-item {
    border: 1px solid rgba(4,7,15,.1);
    border-radius: 16px;
    margin-bottom: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.rcmfaq-item:hover { border-color: rgba(43,127,255,.4); }
.rcmfaq-item.is-open {
    border-color: rgba(43,127,255,.55);
    box-shadow: 0 16px 38px rgba(43,127,255,.12);
}
.rcmfaq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 19px 22px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    transition: background .3s ease;
}
.rcmfaq-question:hover { background: rgba(43,127,255,.05); }
.rcmfaq-question-text { font-size: 16.5px; font-weight: 700; color: #04070f; margin: 0; line-height: 1.45; }
.rcmfaq-question-icon {
    flex: 0 0 36px;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(43,127,255,.1);
    color: #1a5fd6;
    transition: transform .35s ease, background .35s ease, color .35s ease;
}
.rcmfaq-item.is-open .rcmfaq-question-icon {
    transform: rotate(45deg);
    background: #2b7fff;
    color: #ffffff;
}
.rcmfaq-answer { padding: 0 22px; }
.rcmfaq-answer p {
    font-size: 14.5px; line-height: 1.78;
    color: rgba(4,7,15,.7);
    padding-bottom: 20px;
    margin: 0;
    border-top: 1px dashed rgba(43,127,255,.3);
    padding-top: 16px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1199.98px) {
    .rcmhero-title { font-size: 42px; }
    .rcmhero-float-c { left: 0; }
    .rcmserv-card { flex-basis: 340px; max-width: 340px; }
}

@media (max-width: 991.98px) {
    .rcmhero-section { min-height: 0; }
    .rcmhero-title { font-size: 36px; }
    .rcmhero-visual { padding: 56px 0 20px; }
    .rcmhero-float-a { right: 0; }
    .rcmwhat-title, .rcmserv-title, .rcmfeat-title, .rcmbill-title,
    .rcmint-title, .rcmtech-title, .rcmimpl-title, .rcmfaq-title { font-size: 30px; }
    .rcmwhy-title, .rcmflow-title, .rcmai-title, .rcmcomp-title,
    .rcmind-title, .rcmchoose-title, .rcmcase-title { font-size: 29px; }
    .rcmwhat-img-frame { display: none; }
    .rcmwhat-step { min-width: 46%; }
    .rcmwhat-step-arrow { display: none; }
    .rcmflow-stepper, .rcmimpl-stepper { flex-direction: column; }
    .rcmflow-rail, .rcmimpl-rail {
        flex: 0 0 auto;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .rcmflow-node, .rcmimpl-node { flex: 0 0 auto; }
    .rcmflow-node-label, .rcmimpl-node-label { white-space: nowrap; }
    .rcmai-figure { margin-top: 22px; margin-bottom: 8px; }
    .rcmbill-video { aspect-ratio: 16 / 9; }
}

@media (max-width: 767.98px) {
    .rcmhero-title { font-size: 30px; }
    .rcmhero-lead { font-size: 15.5px; }
    .rcmhero-cta-row { flex-direction: column; align-items: stretch; }
    .rcmhero-btn-primary, .rcmhero-btn-ghost { justify-content: center; }
    .rcmhero-float { position: static; margin: 10px auto 0; width: fit-content; }
    .rcmhero-visual { flex-direction: column; padding-top: 30px; }
    .rcmhero-kpi-row { flex-wrap: wrap; }
    .rcmhero-kpi { flex: 1 1 45%; }
    .rcmwhat-step { min-width: 100%; }
    .rcmserv-card, .rcmind-card, .rcmchoose-card { flex-basis: 82vw; max-width: 82vw; }
    .rcmfeat-card, .rcmint-card { flex-basis: 80vw; max-width: 80vw; }
    .rcmserv-drag-hint, .rcmfeat-drag-hint, .rcmint-drag-hint,
    .rcmind-drag-hint, .rcmchoose-drag-hint { display: none; }
    .rcmflow-panel-title, .rcmimpl-panel-title { font-size: 21px; }
    .rcmbill-video-play { width: 66px; height: 66px; }
    .rcmbill-video-caption { font-size: 13px; left: 16px; bottom: 14px; }
    .rcmcomp-tab { padding: 10px 15px; font-size: 12.5px; }
    .rcmfaq-question { padding: 16px 16px; }
    .rcmfaq-question-text { font-size: 15px; }
    .rcmfaq-answer { padding: 0 16px; }
}

@media (max-width: 575.98px) {
    .rcmhero-title { font-size: 26px; }
    .rcmhero-badges li { font-size: 11px; }
    .rcmwhat-title, .rcmserv-title, .rcmfeat-title, .rcmbill-title,
    .rcmint-title, .rcmtech-title, .rcmimpl-title, .rcmfaq-title,
    .rcmwhy-title, .rcmflow-title, .rcmai-title, .rcmcomp-title,
    .rcmind-title, .rcmchoose-title, .rcmcase-title { font-size: 24px; }
    .rcmserv-card, .rcmind-card, .rcmchoose-card,
    .rcmfeat-card, .rcmint-card { flex-basis: 88vw; max-width: 88vw; }
    .rcmtech-tabs, .rcmflow-stepper, .rcmimpl-stepper { padding: 16px; }
    .rcmai-usecases { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .rcmhero-dash, .rcmhero-float, .rcmhero-eyebrow, .rcmhero-chart-line,
    .rcmhero-kpi-bar span, .rcmai-img-glow, .rcmbill-video-play,
    .rcmserv-drag-hint svg { animation: none; }
    .rcmhero-chart-line { stroke-dashoffset: 0; }
}
/* =====================================================================
   RCM PAGE — FIX PACK
   Load this file AFTER page.css (it overrides/extends it).
   Covers:
   1) All 5 sliders (Services, Features, Integrations, Industries, Why Choose)
      — equal left/right spacing matching the rest of the page
      — exactly 3 cards visible at a time on desktop
      — real mouse-drag + touch-drag (not just the arrow buttons)
   2) "Complete Revenue Cycle Workflow" — vertical rail -> horizontal tabs
   3) "Implementation Process" — new animated horizontal timeline
   4) "Medical Billing & Insurance Management" — video block -> image block
   ===================================================================== */

:root {
    --rcm-container-max: 1140px;
    --rcm-container-pad: 15px;
}

/* ---------------------------------------------------------------------
   1. SLIDERS — shared fix for services / features / integrations /
      industries / why-choose sections
   --------------------------------------------------------------------- */

/* Give every slider wrap the SAME left/right breathing room as the
   rest of the page (same max-width + padding as .container) so cards
   never touch the edge of the screen. */
.rcmserv-slider-wrap,
.rcmfeat-slider-wrap,
.rcmint-slider-wrap,
.rcmind-slider-wrap,
.rcmchoose-slider-wrap {
    max-width: var(--rcm-container-max);
    margin: 0 auto;
    padding: 0 var(--rcm-container-pad);
    box-sizing: border-box;
}

/* The visible "window" — this is what clips the track. Width is 100%
   of the padded wrap above, so left/right gaps line up with headings. */
.rcmserv-slider,
.rcmfeat-slider,
.rcmint-slider,
.rcmind-slider,
.rcmchoose-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 22px;
    cursor: grab;
    touch-action: pan-y;
}
.rcmserv-slider.is-dragging,
.rcmfeat-slider.is-dragging,
.rcmint-slider.is-dragging,
.rcmind-slider.is-dragging,
.rcmchoose-slider.is-dragging {
    cursor: grabbing;
}

/* Track — width/position is now fully controlled by JS (translateX),
   card widths are also set by JS so exactly 3 fit inside the window. */
.rcmserv-track,
.rcmfeat-track,
.rcmint-track,
.rcmind-track,
.rcmchoose-track {
    display: flex;
    gap: 22px;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

/* Cards: remove the old fixed flex-basis so JS-assigned inline widths
   (which give exactly 3-per-view) take over cleanly. Keep everything
   else (visuals, hover states) exactly as designed. */
.rcmserv-card,
.rcmfeat-card,
.rcmint-card,
.rcmind-card,
.rcmchoose-card {
    flex: 0 0 auto;
}
.rcmserv-card img,
.rcmind-card img {
    pointer-events: none; /* stops the browser's native image-drag ghost */
    -webkit-user-drag: none;
    user-drag: none;
}

/* Controls: re-center under the same padded width as the slider */
.rcmserv-controls,
.rcmfeat-controls,
.rcmint-controls,
.rcmind-controls,
.rcmchoose-controls {
    max-width: var(--rcm-container-max);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--rcm-container-pad);
    box-sizing: border-box;
}

/* Disabled-state styling for prev/next buttons at either end */
.rcmserv-arrow[disabled],
.rcmfeat-arrow[disabled],
.rcmint-arrow[disabled],
.rcmind-arrow[disabled],
.rcmchoose-arrow[disabled] {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    :root { --rcm-container-max: 720px; }
}
@media (max-width: 767.98px) {
    :root { --rcm-container-max: 100%; --rcm-container-pad: 18px; }
}

/* ---------------------------------------------------------------------
   2. "COMPLETE REVENUE CYCLE WORKFLOW" — horizontal tabs
      (was a tall vertical rail + a mostly-empty right panel)
   --------------------------------------------------------------------- */
.rcmflow-stepper {
    flex-direction: column;
    gap: 22px;
}
.rcmflow-rail {
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    justify-content: center;
}
.rcmflow-node {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 10px 16px 10px 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
}
.rcmflow-node:hover { transform: translateY(-2px); }
.rcmflow-node.is-active { background: #2b7fff; border-color: #2b7fff; }
.rcmflow-node.is-active .rcmflow-node-num { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); color: #fff; }
.rcmflow-node-num { width: 28px; height: 28px; flex: 0 0 28px; font-size: 12px; }
.rcmflow-node-label { font-size: 13px; white-space: nowrap; }

.rcmflow-panels {
    flex: 1 1 auto;
    min-height: 0;
}
.rcmflow-panel {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.rcmflow-panel-title { font-size: 24px; }
.rcmflow-panel-text { max-width: 100%; margin: 0 auto; }
.rcmflow-panel-nav { justify-content: center; padding-top: 22px; }

/* ---------------------------------------------------------------------
   3. "IMPLEMENTATION PROCESS" — new animated horizontal timeline
   --------------------------------------------------------------------- */
.rcmimpl-timeline {
    padding: 8px 4px 0;
}

.rcmimpl-line {
    position: relative;
    height: 4px;
    border-radius: 4px;
    background: rgba(4,7,15,.08);
    margin: 0 26px 34px;
}
.rcmimpl-line-fill {
    position: absolute;
    left: 0; top: 0; height: 100%;
    width: 0%;
    border-radius: 4px;
    background: linear-gradient(90deg, #2b7fff, #7fb2ff);
    transition: width .6s cubic-bezier(.4,0,.2,1);
}

.rcmimpl-nodes {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 0 4px 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(43,127,255,.5) transparent;
    scroll-behavior: smooth;
}
.rcmimpl-tnode {
    flex: 1 1 0;
    min-width: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0 4px 8px;
}
.rcmimpl-tnode-dot {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(4,7,15,.16);
    background: #ffffff;
    color: rgba(4,7,15,.5);
    font-weight: 800; font-size: 14px;
    transition: transform .35s ease, background .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease;
    position: relative;
    z-index: 1;
}
.rcmimpl-tnode-label {
    font-size: 12px; font-weight: 650;
    color: rgba(4,7,15,.55);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    transition: color .3s ease;
}
.rcmimpl-tnode:hover .rcmimpl-tnode-dot { transform: translateY(-3px); border-color: rgba(43,127,255,.5); }
.rcmimpl-tnode.is-done .rcmimpl-tnode-dot {
    background: #2b7fff; border-color: #2b7fff; color: #fff;
}
.rcmimpl-tnode.is-done .rcmimpl-tnode-label { color: #04070f; }
.rcmimpl-tnode.is-active .rcmimpl-tnode-dot {
    box-shadow: 0 0 0 6px rgba(43,127,255,.18);
    transform: translateY(-3px) scale(1.08);
}
.rcmimpl-tnode.is-active .rcmimpl-tnode-label { color: #1a5fd6; }

.rcmimpl-tdetail {
    position: relative;
    margin-top: 18px;
    padding: 30px 32px;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(43,127,255,.06), rgba(43,127,255,.01));
    border: 1px solid rgba(43,127,255,.18);
    min-height: 168px;
}
.rcmimpl-tdetail-panel {
    display: none;
    animation: rcmimplFade .45s ease;
}
.rcmimpl-tdetail-panel.is-active { display: block; }
@keyframes rcmimplFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.rcmimpl-tdetail-stage {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    color: #1a5fd6;
    margin-bottom: 10px;
}
.rcmimpl-tdetail-title { font-size: 24px; font-weight: 800; color: #04070f; margin-bottom: 12px; }
.rcmimpl-tdetail-text { font-size: 15.5px; line-height: 1.8; color: rgba(4,7,15,.72); max-width: 760px; margin: 0; }

@media (max-width: 767.98px) {
    .rcmimpl-line { margin: 0 10px 26px; }
    .rcmimpl-tnode { min-width: 76px; }
    .rcmimpl-tnode-dot { width: 34px; height: 34px; font-size: 12.5px; }
    .rcmimpl-tnode-label { font-size: 11px; }
    .rcmimpl-tdetail { padding: 22px; }
    .rcmimpl-tdetail-title { font-size: 20px; }
}

/* ---------------------------------------------------------------------
   4. "MEDICAL BILLING & INSURANCE MANAGEMENT" — image instead of video
   --------------------------------------------------------------------- */
.rcmbill-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    margin: 0 0 34px;
    box-shadow: 0 26px 60px rgba(4,7,15,.22);
}
.rcmbill-media-img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
}
.rcmbill-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(4,7,15,0) 55%, rgba(4,7,15,.72) 100%);
}
.rcmbill-media-caption {
    position: absolute; left: 24px; bottom: 20px; right: 24px;
    color: #ffffff;
    font-size: 15px; font-weight: 600;
    letter-spacing: .02em;
    margin: 0;
    z-index: 1;
}
@media (max-width: 991.98px) { .rcmbill-media-img { aspect-ratio: 16/9; } }
@media (max-width: 767.98px) { .rcmbill-media-caption { font-size: 13px; left: 16px; bottom: 14px; right: 16px; } }