/* --------------------------------------------------------------------------
   Health Claim Experts — site layout & components
   -------------------------------------------------------------------------- */
:root {
    --navy: #0a2540;
    --navy-deep: #071821;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #22c55e;
    --accent-hover: #16a34a;
    --soft: #f1f5f9;
    --soft-2: #e2e8f0;
    --text: #0f172a;
    --muted: #64748b;
    --animate-duration: 0.85s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

/* Utilities */
.bg-navy { background-color: var(--navy) !important; }
.text-navy { color: var(--navy) !important; }
.text-accent { color: var(--accent) !important; }
.py-100 { padding: clamp(3.5rem, 8vw, 6.25rem) 0; }
.section-soft { background: linear-gradient(180deg, var(--soft) 0%, #fff 100%); }
.letter-spacing { letter-spacing: 0.08em; }

.section-eyebrow {
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 999px;
}

/* Scroll + Animate.css handoff */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal.active.animate__animated {
    opacity: 1;
}

/* ---------- Nav ---------- */
.navbar-modern .navbar-brand-logo {
    max-height: 80px;
    width: auto;
    display: block;
}
@media (min-width: 992px) {
    .navbar-modern .navbar-brand-logo {
        max-height: 80px;
    }
}
.navbar-modern {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.navbar-modern .nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--muted) !important;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}
.navbar-modern .nav-link:hover,
.navbar-modern .nav-link.active {
    color: var(--navy) !important;
    background: rgba(37, 99, 235, 0.08);
}
.navbar-modern .nav-link.dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.12em;
}
.navbar-modern .nav-item.dropdown .nav-link {
    display: inline-flex;
    align-items: center;
}
.navbar-modern .navbar-nav {
    flex-wrap: nowrap;
}
.navbar-modern .nav-actions .btn {
    white-space: nowrap;
}
@media (min-width: 992px) {
    .navbar-modern .dropdown-hover .dropdown-menu {
        margin-top: 0;
    }
}
@media (max-width: 1399.98px) {
    .navbar-modern .navbar-brand-logo {
        max-height: 68px;
    }
    .navbar-modern .nav-link {
        font-size: 0.88rem;
        padding-left: 0.6rem !important;
        padding-right: 0.6rem !important;
    }
    .navbar-modern .nav-actions .btn {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 0.9rem;
    }
}
@media (max-width: 1199.98px) {
    .navbar-modern .navbar-brand-logo {
        max-height: 60px;
    }
    .navbar-modern .nav-link {
        font-size: 0.84rem;
        padding-left: 0.45rem !important;
        padding-right: 0.45rem !important;
    }
    .navbar-modern .nav-actions .btn {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
        font-size: 0.84rem;
    }
}
@media (max-width: 991.98px) {
    .navbar-modern .navbar-nav {
        flex-wrap: wrap;
        gap: 0.35rem 0;
        align-items: flex-start !important;
    }
    .navbar-modern .nav-link {
        display: inline-flex;
        width: 100%;
        border-radius: 0.6rem;
        font-size: 0.95rem;
        padding: 0.55rem 0.75rem !important;
    }
    .navbar-modern .dropdown-menu-modern {
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: none !important;
    }
    .navbar-modern .nav-actions {
        width: 100%;
        padding-left: 0 !important;
    }
    .navbar-modern .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
.dropdown-menu-modern {
    border-radius: 0.75rem;
    padding: 0.5rem;
    min-width: 12rem;
}
.dropdown-menu-modern .dropdown-item {
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0.5rem 0.75rem;
}
.dropdown-menu-modern .dropdown-item:hover,
.dropdown-menu-modern .dropdown-item:focus {
    color: var(--navy);
    background: var(--soft);
}
.dropdown-menu-modern .dropdown-item.active,
.dropdown-menu-modern .dropdown-item:active {
    color: var(--navy) !important;
    background: rgba(37, 99, 235, 0.14) !important;
    font-weight: 700;
}
.dropdown-menu-services .dropdown-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0;
    white-space: normal;
}
.dropdown-menu-services .dropdown-item:last-child {
    border-bottom: none;
}
.brand-mark {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.brand-tagline {
    font-size: 0.65rem;
    display: block;
    margin-top: -2px;
}
.topbar-social {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    opacity: 0.9;
    transition: opacity 0.2s, background 0.2s, color 0.2s;
}
.topbar-social:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
}

/* ---------- Buttons ---------- */
.btn-accent {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--accent);
    --bs-btn-border-color: var(--accent);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--accent-hover);
    --bs-btn-hover-border-color: var(--accent-hover);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--accent-hover);
    --bs-btn-active-border-color: var(--accent-hover);
    border: none;
    box-shadow: 0 10px 28px rgba(34, 197, 94, 0.28);
}

/* ---------- Hero ---------- */
.hero-main {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100%);
    padding-bottom: 0.5rem;
}
.hero-rehab__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.12), transparent 45%);
    background-size: 48px 48px, 48px 48px, 100% 100%;
    pointer-events: none;
}
.hero-main__visual {
    background: #fff;
    padding: 0.5rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.hero-main__img {
    border-radius: 0.75rem;
    object-fit: cover;
    max-height: 420px;
}
.hero-main .btn-outline-primary:hover,
.hero-main .btn-outline-primary:focus {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: #fff !important;
}

/* ---------- Icon strip ---------- */
.icon-strip {
    background: var(--navy);
    color: #fff;
}
.icon-strip__item {
    padding: 0.5rem;
}
.icon-strip__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.35rem;
}
.icon-strip__label {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

/* ---------- About ---------- */
.about-photo {
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.about-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

/* ---------- Services ---------- */
.service-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.12);
}
.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.service-card__link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    z-index: 2;
}
.service-card__link:hover {
    color: var(--primary-dark);
}

/* ---------- CTA banner ---------- */
.cta-banner {
    background:
        radial-gradient(120% 120% at 10% 10%, rgba(37, 99, 235, 0.35), transparent),
        radial-gradient(100% 100% at 90% 0%, rgba(34, 197, 94, 0.2), transparent),
        var(--navy);
}
.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.9;
    pointer-events: none;
}

/* ---------- Split banners ---------- */
.split-banner {
    min-height: 280px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}
.split-banner--blue {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
}
.split-banner--green {
    background: linear-gradient(135deg, #16a34a, #0f766e);
}

/* ---------- Feature / gallery cards ---------- */
.feature-card {
    border-radius: 1.25rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-3px);
}
.feature-card__media {
    position: relative;
}
.feature-card__media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.feature-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}
.feature-card__body {
    padding: 1.5rem 1.5rem 1.75rem;
}

/* ---------- Contact strip ---------- */
.contact-strip {
    background: linear-gradient(90deg, #0f172a, #1e3a5f);
    border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-strip__list a:hover {
    text-decoration: underline !important;
}

/* ---------- Impact ---------- */
.impact-visual {
    background: #0f172a;
}
.impact-stat {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
    max-width: 160px;
}
.impact-stat--one {
    left: 1.25rem;
    bottom: 1.25rem;
}
.impact-stat--two {
    right: 1.25rem;
    top: 1.25rem;
}
@media (max-width: 575.98px) {
    .impact-stat {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        max-width: none;
        margin-top: 0.75rem;
    }
    .impact-visual {
        display: flex;
        flex-direction: column;
    }
}

/* ---------- Testimonials ---------- */
.testimonials {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 120%);
}
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 50%);
    pointer-events: none;
}
.testimonial-bubble {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
.testimonial-bubble blockquote {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--navy);
}

/* ---------- Team ---------- */
.team-card__photo {
    max-width: 220px;
    border: 4px solid #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.team-card__photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1;
}

/* ---------- Social CTA ---------- */
.social-cta {
    background-color: var(--navy);
}
.social-cta--pattern {
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 18px 18px;
}
.social-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s, border-color 0.2s;
}
.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.social-cta .social-link-inline {
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
}
.social-cta .social-link-inline:hover {
    border-bottom-color: rgba(255, 255, 255, 0.55);
    color: #fff !important;
    opacity: 1;
}

/* ---------- Specialities page ---------- */
.page-hero-specialities {
    min-height: clamp(220px, 32vh, 360px);
    background: var(--navy-deep);
}
.page-hero-specialities__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1920&q=75');
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    filter: blur(5px);
}
.page-hero-specialities__overlay {
    background: linear-gradient(120deg, rgba(10, 37, 64, 0.88) 0%, rgba(37, 99, 235, 0.45) 50%, rgba(10, 37, 64, 0.82) 100%);
}
.page-hero-specialities__title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.breadcrumb-strip {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}
.breadcrumb-strip__text {
    letter-spacing: 0.06em;
}
.speciality-page__heading {
    color: #15803d;
}
.specialities-intro-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    box-shadow: 0 10px 28px rgba(34, 197, 94, 0.3);
}
.speciality-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    border: 2px solid transparent;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.speciality-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(37, 99, 235, 0.1);
}
.row > .col:nth-child(odd) .speciality-card {
    border-color: rgba(37, 99, 235, 0.35);
}
.row > .col:nth-child(even) .speciality-card {
    border-color: rgba(34, 197, 94, 0.4);
}
.speciality-card__icon {
    font-size: 1.85rem;
    line-height: 1;
}

/* ---------- Medical Billing page ---------- */
.mb-hero {
    position: relative;
    min-height: clamp(420px, 70vh, 720px);
    display: flex;
    align-items: center;
    background: var(--navy-deep);
}
.mb-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.mb-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.75) 45%, rgba(37, 99, 235, 0.35) 100%);
}
.mb-hero__title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
}
.mb-hero .letter-spacing {
    letter-spacing: 0.08em;
}

.process-wheel-wrap {
    min-height: 560px;
    padding: 1rem 0 2rem;
}
.process-wheel {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 560px;
    margin: 0 auto;
}
.process-wheel__core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    font-size: 0.8rem;
    line-height: 1.25;
    z-index: 3;
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.45);
}
.process-wheel__step {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: rotate(var(--angle)) translateY(calc(-1 * var(--r)));
    transform-origin: center center;
    z-index: 2;
}
.process-wheel__bubble {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle)));
    width: 118px;
    min-height: 52px;
    padding: 0.45rem 0.4rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    border: 2px solid rgba(37, 99, 235, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    line-height: 1.25;
}
.process-wheel__num {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
@media (max-width: 1199.98px) {
    .process-wheel__step {
        --r: 165px !important;
    }
}

.mb-service-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mb-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.12);
}
.mb-service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.mb-trusted {
    position: relative;
}
.mb-trusted__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #0a2540 100%);
    opacity: 1;
    z-index: 0;
}
.mb-trusted-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    height: 100%;
}
.mb-trusted-card__list li {
    margin-bottom: 0.35rem;
}

.mb-sidebar-sticky {
    position: sticky;
    top: 5.5rem;
}
.mb-sidebar-acc .accordion-button {
    font-size: 0.85rem;
}
.mb-sidebar-acc__highlight {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.04)) !important;
    color: var(--navy) !important;
}
.mb-sidebar-acc__highlight:not(.collapsed) {
    box-shadow: inset 3px 0 0 0 var(--accent);
}
.mb-promo--blue {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.3);
}
.mb-promo--green {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 16px 40px rgba(22, 163, 74, 0.28);
}

.mb-why {
    min-height: 480px;
}
.mb-why__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.mb-why__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.55) 55%, rgba(10, 37, 64, 0.2) 100%);
}
.mb-why__list li::marker {
    color: var(--accent);
}

/* ---------- AR Management page ---------- */
.ar-hero {
    position: relative;
    min-height: clamp(380px, 58vh, 640px);
    background: var(--navy-deep);
}
.ar-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.ar-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.45) 0%, rgba(10, 37, 64, 0.82) 100%);
}
.ar-hero__title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.65rem, 3.8vw, 2.75rem);
    line-height: 1.2;
    color: var(--accent);
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}
.ar-section-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}
.ar-service-card {
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.28);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ar-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(37, 99, 235, 0.1);
}
.ar-service-card__icon {
    font-size: 2rem;
    line-height: 1;
    opacity: 0.92;
}
.ar-steps-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0a2540 0%, #0f2744 40%, #1e3a5f 100%);
    z-index: 0;
}
.ar-step-tile {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}
.ar-step-tile__icon {
    font-size: 1.65rem;
    color: rgba(255, 255, 255, 0.95);
}
.ar-sidebar-sticky {
    position: sticky;
    top: 5.5rem;
}
.ar-side-link {
    border: 2px solid rgba(34, 197, 94, 0.55) !important;
    color: var(--navy) !important;
    background: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.15rem !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ar-side-link:hover {
    border-color: var(--accent) !important;
    background: rgba(34, 197, 94, 0.08) !important;
}
.ar-side-link--active {
    background: linear-gradient(135deg, #16a34a, #15803d) !important;
    color: #fff !important;
    border-color: transparent !important;
}
.ar-workflow__step {
    min-width: 120px;
    font-size: 0.8rem;
}

/* ---------- Credentialing page ---------- */
.cred-hero {
    position: relative;
    min-height: clamp(380px, 62vh, 620px);
    display: flex;
    align-items: center;
    background: var(--navy-deep);
}
.cred-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.cred-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.8) 50%, rgba(15, 118, 110, 0.28) 100%);
}
.cred-hero__title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.65rem, 3.6vw, 2.65rem);
    line-height: 1.25;
}
.cred-check-list .bi {
    font-size: 1.1rem;
}
.cred-payer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cred-process-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cred-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.12);
}
.cred-process-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.cred-why-trust {
    position: relative;
}
.cred-why-trust__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 50%, #0a2540 100%);
    z-index: 0;
}
.cred-feature-tile {
    background: #fff;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.cred-feature-tile__icon {
    font-size: 2rem;
    color: var(--primary);
}
.cred-step-tile {
    min-height: 100%;
    border: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.cred-step-tile__num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}
.cred-step--g {
    background: linear-gradient(145deg, #22c55e, #15803d);
    color: #fff;
}
.cred-step--o {
    background: linear-gradient(145deg, #fb923c, #ea580c);
    color: #fff;
}
.cred-step--y {
    background: linear-gradient(145deg, #facc15, #ca8a04);
    color: #1e293b;
}
.cred-step--y .cred-step-tile__num {
    background: rgba(255, 255, 255, 0.35);
    color: #0f172a;
}
.cred-step--y .text-white-50 {
    color: rgba(15, 23, 42, 0.75) !important;
}
.cred-step--y h4,
.cred-step--y h6 {
    color: #0f172a;
}
.cred-step--b {
    background: linear-gradient(145deg, #38bdf8, #0284c7);
    color: #fff;
}
.cred-step--p {
    background: linear-gradient(145deg, #a78bfa, #6d28d9);
    color: #fff;
}
.cred-sidebar-sticky {
    position: sticky;
    top: 5.5rem;
}
.cred-quote-form .form-control:focus,
.cred-quote-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

/* ---------- Contact page ---------- */
.contact-hero {
    position: relative;
    min-height: clamp(300px, 38vh, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-deep);
}
.contact-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center top;
    filter: blur(3px);
    transform: scale(1.03);
}
.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(29, 78, 216, 0.88) 0%, rgba(10, 37, 64, 0.82) 45%, rgba(15, 118, 110, 0.35) 100%);
}
.contact-hero__title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    letter-spacing: 0.02em;
}
.contact-hero__crumb {
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    backdrop-filter: blur(6px);
}
.contact-hero__kit {
    width: min(220px, 100%);
    aspect-ratio: 1;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(147, 197, 253, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 60px rgba(96, 165, 250, 0.45), inset 0 0 40px rgba(255, 255, 255, 0.08);
}
.contact-page__serif {
    font-family: 'Merriweather', Georgia, serif;
}
.contact-page__icon-badge {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 8px 22px rgba(34, 197, 94, 0.3);
}
.contact-page__detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-form-card {
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
    border-color: rgba(15, 23, 42, 0.12);
    padding: 0.65rem 0.9rem;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.12);
}
.btn-contact-submit {
    background: linear-gradient(180deg, #f7e08a, #e6b422);
    color: #0f172a !important;
    border: none;
    box-shadow: 0 10px 28px rgba(230, 180, 34, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(230, 180, 34, 0.45);
    color: #0f172a !important;
}
.contact-follow {
    background: var(--navy);
}
.contact-follow__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background: repeating-linear-gradient(
        -18deg,
        transparent,
        transparent 12px,
        rgba(255, 255, 255, 0.04) 12px,
        rgba(255, 255, 255, 0.04) 13px
    );
    pointer-events: none;
}
.contact-follow__title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1.15rem;
}
.contact-follow__link {
    color: #93c5fd;
    font-weight: 600;
    transition: color 0.2s;
}
.contact-follow__link:hover {
    color: #fff;
}
.footer-contact-list a:hover {
    color: #fff !important;
}

/* ---------- About page ---------- */
.about-hero {
    position: relative;
    min-height: clamp(260px, 38vh, 400px);
    display: flex;
    align-items: center;
    background: var(--navy-deep);
}
.about-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 50%, #0a2540 100%);
}
.about-hero__title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.85rem, 4.5vw, 3rem);
}
.about-hero__crumb {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    letter-spacing: 0.08em;
}
.about-serif {
    font-family: 'Merriweather', Georgia, serif;
}
.about-section-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25);
}
.about-section-icon--light {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}
.about-overlap-images {
    min-height: 320px;
}
.about-overlap__main {
    position: relative;
    z-index: 1;
}
.about-overlap__secondary {
    position: absolute;
    z-index: 2;
    bottom: -1.5rem;
    right: -0.5rem;
    max-width: 58%;
    border: 4px solid #fff;
}
@media (max-width: 575.98px) {
    .about-overlap__secondary {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 88%;
        margin: -2rem auto 0 1rem;
        display: block;
    }
}
.about-mv-wrap {
    position: relative;
    overflow: hidden;
}
.about-mv-wrap__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e40af 45%, #0f172a 100%);
    opacity: 1;
}
.about-mv-card--mission {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.28);
}
.about-mv-card--vision {
    background: linear-gradient(145deg, #22c55e, #15803d);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.28);
}
.about-callout {
    position: relative;
    background: linear-gradient(90deg, #0f172a, #1e3a5f);
}
.about-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    pointer-events: none;
}
.about-value-box {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
}
.row > .col-md-6:nth-child(4n + 1) .about-value-box,
.row > .col-md-6:nth-child(4n + 4) .about-value-box {
    border-top: 3px solid rgba(34, 197, 94, 0.65);
}
.row > .col-md-6:nth-child(4n + 2) .about-value-box,
.row > .col-md-6:nth-child(4n + 3) .about-value-box {
    border-top: 3px solid rgba(37, 99, 235, 0.65);
}
.about-team-card__photo {
    max-width: 220px;
    border-radius: 1rem;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
}

/* ---------- FAQs page (revamped) ---------- */
.faq-hero-v2 {
    position: relative;
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
    background: var(--navy-deep);
}
.faq-hero-v2__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, #050f18 0%, #0a2540 42%, #0f2744 100%);
}
.faq-hero-v2__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
}
.faq-hero-v2__orb--a {
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    top: -12%;
    left: -8%;
    background: rgba(37, 99, 235, 0.55);
}
.faq-hero-v2__orb--b {
    width: min(360px, 55vw);
    height: min(360px, 55vw);
    bottom: -18%;
    right: -6%;
    background: rgba(34, 197, 94, 0.35);
}
.faq-hero-v2__eyebrow {
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
}
.faq-hero-v2__title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.85rem, 4.2vw, 2.85rem);
    line-height: 1.15;
    color: #fff;
}
.faq-hero-v2__lead {
    font-size: 1rem;
    line-height: 1.65;
}
.faq-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.faq-chip--dim {
    opacity: 0.45;
    border: none;
    background: transparent;
    padding: 0.35rem 0.2rem;
}
.faq-chip--active {
    background: rgba(34, 197, 94, 0.22);
    border-color: rgba(34, 197, 94, 0.45);
    color: #fff;
}
.faq-hero-v2__panel {
    border-radius: 1.25rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(34, 197, 94, 0.35));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.faq-hero-v2__panel-inner {
    border-radius: calc(1.25rem - 1px);
    background: rgba(7, 24, 33, 0.92);
    padding: 1.35rem 1.5rem;
    backdrop-filter: blur(8px);
}
.faq-hero-v2__panel-label {
    letter-spacing: 0.12em;
}
.faq-content-shell {
    position: relative;
    z-index: 2;
    margin-top: -2.25rem;
    border-radius: 1.5rem 1.5rem 0 0;
    box-shadow: 0 -16px 48px rgba(15, 23, 42, 0.08);
}
.faq-section-tag {
    letter-spacing: 0.16em;
    color: var(--accent-hover);
}
.faq-spotlight-visual__frame {
    position: relative;
    z-index: 1;
}
.faq-spotlight-visual__img {
    height: min(320px, 55vw);
    object-fit: cover;
}
.faq-spotlight-visual__deco {
    position: absolute;
    inset: -10% -6% auto auto;
    width: 55%;
    height: 55%;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(34, 197, 94, 0.15));
    z-index: 0;
}
.faq-spotlight-quote {
    position: relative;
    margin-top: -2.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    z-index: 2;
}
@media (min-width: 992px) {
    .faq-spotlight-quote {
        margin-left: 1.5rem;
        margin-right: 2rem;
    }
}
.faq-library {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 60%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}
.faq-accordion--revamp {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-accordion--revamp .accordion-item {
    background: transparent;
}
.faq-accordion--revamp .accordion-button {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04) !important;
    padding: 1rem 1.1rem;
}
.faq-accordion--revamp .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.07), #fff);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--navy);
}
.faq-accordion--revamp .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2) !important;
    border-color: rgba(37, 99, 235, 0.35);
}
.faq-accordion--revamp .accordion-button::after {
    display: none !important;
}
.faq-ac-num {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}
.faq-accordion--revamp .accordion-button:not(.collapsed) .faq-ac-num {
    background: var(--primary);
    color: #fff;
}
.faq-ac-toggle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent-hover);
    font-size: 1.1rem;
}
.faq-accordion--revamp .accordion-button:not(.collapsed) .faq-ac-toggle {
    background: rgba(34, 197, 94, 0.22);
}
.faq-ac-toggle .bi-dash-lg {
    display: none;
}
.faq-accordion--revamp .accordion-button:not(.collapsed) .faq-ac-toggle .bi-plus-lg {
    display: none;
}
.faq-accordion--revamp .accordion-button:not(.collapsed) .faq-ac-toggle .bi-dash-lg {
    display: block;
}
.faq-ac-body {
    padding: 0 1rem 1.15rem 3.5rem;
}
@media (max-width: 575.98px) {
    .faq-ac-body {
        padding-left: 1rem;
    }
}
.faq-cta-band {
    background: linear-gradient(90deg, #0a2540 0%, #1e3a5f 50%, #0f2744 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- Blog page (revamped) ---------- */
.blog-hero-v2 {
    position: relative;
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
    background: var(--navy-deep);
}
.blog-hero-v2__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 0% 0%, rgba(37, 99, 235, 0.35), transparent 55%),
        radial-gradient(ellipse 70% 60% at 100% 20%, rgba(34, 197, 94, 0.2), transparent 50%),
        linear-gradient(165deg, #071821 0%, #0a2540 45%, #0c2742 100%);
}
.blog-hero-v2__grid {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.blog-hero-v2__eyebrow {
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.5);
}
.blog-hero-v2__title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 4.3vw, 3rem);
    line-height: 1.12;
    color: #fff;
}
.blog-hero-v2__lead {
    font-size: 1.02rem;
    line-height: 1.65;
}
.blog-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.blog-chip--muted {
    opacity: 0.4;
    border: none;
    background: transparent;
}
.blog-chip--solid {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.45);
}
.blog-hero-v2__badge {
    display: inline-block;
    text-align: left;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 320px;
    margin-left: auto;
}
.blog-feed {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 40%, #fff 100%);
}
.blog-feature {
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
}
.blog-feature__media {
    min-height: 220px;
}
.blog-feature__img {
    object-fit: cover;
    min-height: 220px;
}
.blog-feature__body {
    background: #fff;
}
.blog-pill {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}
.blog-pill--sm {
    font-size: 0.62rem;
    padding: 0.28rem 0.6rem;
}
.blog-card-v2 {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    border-color: rgba(15, 23, 42, 0.06) !important;
}
.blog-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1) !important;
}
.blog-card-v2__media {
    min-height: 200px;
}
.blog-card-v2__img {
    height: 200px;
    object-fit: cover;
    display: block;
}
.blog-card-v2__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 37, 64, 0.45) 100%);
    pointer-events: none;
}
.blog-card-v2 .stretched-link::after {
    z-index: 1;
}
.blog-card-v2__link {
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.blog-cta-band {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #0a2540 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-cta-band a.text-white {
    text-underline-offset: 3px;
}

/* ---------- Billing Audit page ---------- */
.ba-hero {
    min-height: clamp(420px, 68vh, 700px);
    background: var(--navy-deep);
    display: flex;
    align-items: center;
}
.ba-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1584982751601-97dcc096659c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.ba-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.72) 45%, rgba(37, 99, 235, 0.35) 100%);
}
.ba-hero__title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    line-height: 1.2;
}
.ba-checklist {
    list-style: none;
    padding-left: 0;
}
.ba-checklist li {
    position: relative;
    padding-left: 1.45rem;
    margin-bottom: 0.6rem;
}
.ba-checklist li::before {
    content: '\F26E';
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 0.04rem;
    color: var(--accent);
    font-size: 0.95rem;
}
.ba-cta-strip {
    background: #f8fafc;
}
.ba-cta-strip__inner {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 0.8rem;
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.ba-insights__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #0a2540 100%);
}
.ba-list-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.85rem;
    padding: 1rem;
}
.ba-insights__media img {
    min-height: 340px;
    object-fit: cover;
}

/* ---------- Medical Virtual Assistants page ---------- */
.mva-hero {
    min-height: clamp(420px, 66vh, 700px);
    background: var(--navy-deep);
    display: flex;
    align-items: center;
}
.mva-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.mva-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 37, 64, 0.94) 0%, rgba(10, 37, 64, 0.74) 45%, rgba(37, 99, 235, 0.34) 100%);
}
.mva-hero__title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
}

.mva-service-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.mva-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(37, 99, 235, 0.12);
}
.mva-service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 1.25rem;
}

.mva-key-list li::marker {
    color: var(--accent);
}
.mva-sidebar-sticky {
    position: sticky;
    top: 5.5rem;
}

.mva-trust-strip__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #0a2540 100%);
}

@media (max-width: 991.98px) {
    .mva-sidebar-sticky {
        position: static;
    }
}

/* ---------- Insurance Verification page ---------- */
.iv-hero {
    min-height: clamp(420px, 66vh, 700px);
    background: var(--navy-deep);
    display: flex;
    align-items: center;
}
.iv-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.iv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 37, 64, 0.93) 0%, rgba(10, 37, 64, 0.78) 48%, rgba(37, 99, 235, 0.35) 100%);
}
.iv-hero__title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.85rem);
    line-height: 1.2;
}
.iv-hero__card {
    background: linear-gradient(150deg, rgba(37, 99, 235, 0.24), rgba(15, 23, 42, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(6px);
}
.iv-hero__points li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}
.iv-hero__points li:last-child {
    margin-bottom: 0;
}
.iv-hero__points .bi {
    color: var(--accent);
}
.iv-info-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1rem;
    padding: 1.4rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}
.iv-sidebar {
    background: linear-gradient(150deg, #0a2540 0%, #1d4ed8 100%);
    box-shadow: 0 18px 44px rgba(10, 37, 64, 0.28);
}
.iv-sidebar__acc .accordion-button {
    box-shadow: none !important;
}
.iv-sidebar__acc .accordion-button::after {
    filter: brightness(0) invert(1);
}
.iv-step-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.iv-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.12);
}
.iv-step-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    font-size: 1.45rem;
}
.iv-band__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 55%, #0a2540 100%);
}

/* ---------- Footer ---------- */
.footer-brand-logo {
    max-height: 72px;
    width: auto;
    display: block;
}
@media (min-width: 768px) {
    .footer-brand-logo {
        max-height: 92px;
    }
}
.footer-brand-link:focus-visible .footer-brand-logo {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 4px;
    border-radius: 4px;
}
.footer-modern {
    background: var(--navy-deep);
}
.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    display: inline-block;
    padding: 0.2rem 0;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom-bar {
    background: #bfdbfe;
}

/* Legacy cleanup: older reference-only helpers (kept minimal) */
.text-primary { color: var(--primary) !important; }
.btn-outline-primary {
    border-color: rgba(37, 99, 235, 0.45);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
