/* ================================================================
   MySimpleReport – site.css
   Design tokens & all custom styles matching Figma website view
   ================================================================ */

/* ── CSS Custom Properties ── */
:root {
    --msr-navy: #183E64;
    --msr-navy-deep: #0f2940;
    --msr-dark-bg: #0B1120;
    --msr-mauve: #CD9BBF;
    --msr-sky: #6CA3D8;
    --msr-green: #A8E6CF;
    --msr-white: #ffffff;
    --msr-gray-bg: #f5f7fa;
    --msr-radius-pill: 9999px;
    --msr-radius-lg: 1.5rem;
    --msr-radius-xl: 2rem;
    --msr-shadow-soft: 0 4px 24px rgba(24, 62, 100, .10);
    --msr-shadow-card: 0 8px 40px rgba(24, 62, 100, .12);
    --msr-font: 'Poppins', sans-serif;
    --msr-transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* ── Base ── */
*,
::before,
::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--msr-font);
    color: #1a2b3c;
    background: #fff;
    overflow-x: hidden;
}

/* ================================================================
   NAVBAR
   ================================================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: .75rem 1rem;
}

.msr-navbar {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--msr-radius-pill);
    box-shadow: 0 2px 24px rgba(24, 62, 100, .12);
    border: 1px solid rgba(255, 255, 255, .7);
    padding: .5rem 1.5rem;
    transition: var(--msr-transition);
}

.msr-navbar.scrolled {
    box-shadow: 0 4px 32px rgba(24, 62, 100, .18);
}

.msr-navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Brand */
.msr-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.msr-brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--msr-navy), var(--msr-sky));
    border-radius: .625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.msr-brand-text {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--msr-navy);
}

/* Nav links */
.msr-nav-link {
    font-size: .875rem;
    font-weight: 500;
    color: #4a5568 !important;
    padding: .4rem .6rem !important;
    border-radius: .5rem;
    transition: var(--msr-transition);
}

.msr-nav-link:hover {
    color: var(--msr-navy) !important;
}

/* Dropdown toggle caret */
.msr-dropdown .dropdown-toggle::after {
    margin-left: .35em;
}

/* Mega dropdown */
.msr-dropdown-menu {
    border: 1px solid #e8ecf0;
    border-radius: 1rem;
    padding: .75rem;
    box-shadow: var(--msr-shadow-card);
    min-width: 220px;
}

.msr-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .65rem .75rem !important;
    border-radius: .75rem;
    transition: var(--msr-transition);
}

.msr-dropdown-item:hover {
    background: var(--msr-gray-bg) !important;
    color: inherit !important;
}

.msr-dropdown-item strong {
    display: block;
    font-size: .82rem;
    color: var(--msr-navy);
}

.msr-dropdown-item small {
    display: block;
    font-size: .72rem;
    color: #718096;
    line-height: 1.3;
}

.msr-dd-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--msr-navy), var(--msr-sky));
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8rem;
}

/* Auth buttons */
.msr-btn-login {
    font-size: .85rem;
    font-weight: 500;
    color: var(--msr-navy);
    padding: .45rem 1.1rem;
    border-radius: var(--msr-radius-pill);
    transition: var(--msr-transition);
}

.msr-btn-login:hover {
    background: var(--msr-gray-bg);
}

.msr-btn-primary {
    font-size: .85rem;
    font-weight: 600;
    background: var(--msr-navy);
    color: #fff !important;
    padding: .45rem 1.3rem;
    border-radius: var(--msr-radius-pill);
    transition: var(--msr-transition);
}

.msr-btn-primary:hover {
    background: #1e4f80;
    box-shadow: 0 4px 16px rgba(24, 62, 100, .35);
    transform: translateY(-1px);
}


/* Mobile toggler */
.msr-toggler {
    border: 1.5px solid rgba(24, 62, 100, 0.3) !important;
    border-radius: .5rem;
    padding: .3rem .5rem;
    background-color: transparent;
}

.msr-toggler:focus {
    box-shadow: none;
}

.msr-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2824%2C 62%2C 100%2C 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Page body offset for fixed navbar */
/*main { padding-top: 88px; }*/

/* ================================================================
   HERO SECTION
   ================================================================ */
.msr-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 6rem;
    background: linear-gradient(135deg, var(--msr-navy) 0%, #2d527f 35%, #7b5e8c 65%, var(--msr-mauve) 100%);
    overflow: hidden;
}

/* Wave pattern overlay */
.msr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q10 10 20 20 T 40 20' fill='none' stroke='white' stroke-width='.4' opacity='.2'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

/* Bottom wave */
.msr-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.msr-hero-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
   /* max-width: 650px;*/
   width:100%;
    margin: 3rem auto 0;
}

.msr-hero-trust .d-flex {
    justify-content: center;
}

.msr-trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.58rem;
    font-weight: 500;
}

.msr-trust-item i {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.95;
}

.msr-hero-wave svg {
    display: block;
    width: 100%;
}

.msr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .45rem 1rem;
    border-radius: var(--msr-radius-pill);
    margin-bottom: 1.5rem;
}

.msr-hero h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.msr-hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .88);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.msr-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.msr-hero-btns .btn-white {
    background: #fff;
    color: var(--msr-navy);
    font-weight: 600;
    font-size: .9rem;
    padding: .8rem 2rem;
    border-radius: var(--msr-radius-pill);
    transition: var(--msr-transition);
    border: none;
}

.msr-hero-btns .btn-white:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, .2);
}

.msr-hero-btns .btn-outline-hero {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    padding: .8rem 2rem;
    border-radius: var(--msr-radius-pill);
    border: 2px solid rgba(255, 255, 255, .6);
    transition: var(--msr-transition);
}

.msr-hero-btns .btn-outline-hero:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .9);
}

.msr-hero-btns .btn-mauve {
    background: var(--msr-mauve);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    padding: .8rem 2rem;
    border-radius: var(--msr-radius-pill);
    transition: var(--msr-transition);
    border: none;
}

.msr-hero-btns .btn-mauve:hover {
    background: #b88aad;
    transform: translateY(-2px);
}

/* Hero trust badges */
.msr-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.msr-hero-trust li {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: rgba(255, 255, 255, .9);
    font-size: .83rem;
}

.msr-hero-trust li i {
    font-size: .85rem;
}

/* Hero right – Glassmorphism card */
.msr-glass-card {
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: var(--msr-radius-xl);
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
    position: relative;
    z-index: 2;
}

.msr-glass-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.msr-glass-card .report-title {
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
}

.msr-glass-card .report-sub {
    color: rgba(255, 255, 255, .75);
    font-size: .78rem;
}

.msr-glass-inner {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 1.25rem;
    padding: 1.25rem;
    margin-top: 1rem;
}

.msr-glass-inner p {
    color: rgba(255, 255, 255, .92);
    font-size: .83rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.msr-status-badge {
    background: var(--msr-green);
    color: var(--msr-navy);
    font-weight: 700;
    font-size: .8rem;
    border-radius: .75rem;
    padding: .55rem .9rem;
}

.msr-status-badge small {
    display: block;
    font-weight: 400;
    opacity: .8;
    font-size: .7rem;
}

.msr-glass-powered {
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
    margin-top: 1rem;
}

.msr-glass-powered i {
    color: rgba(255, 255, 255, .9);
}

/* Glow orbs */
.msr-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.msr-orb-1 {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, .15);
    top: 15%;
    right: 10%;
    animation: pulse-soft 4s ease-in-out infinite;
}

.msr-orb-2 {
    width: 340px;
    height: 340px;
    background: rgba(108, 163, 216, .25);
    bottom: 15%;
    right: 30%;
    animation: pulse-soft 5s ease-in-out infinite 1s;
}

@keyframes pulse-soft {

    0%,
    100% {
        opacity: .6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* ================================================================
   TRUSTED BY – Infinite Marquee
   ================================================================ */
.msr-trusted {
    background: #fff;
    padding: 4rem 0;
    overflow: hidden;
}

.msr-trusted-label {
    text-align: center;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #718096;
    margin-bottom: 2.5rem;
}

.msr-marquee-wrapper {
    position: relative;
    overflow: hidden;
}

.msr-marquee-wrapper::before,
.msr-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8rem;
    z-index: 2;
    pointer-events: none;
}

.msr-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.msr-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.msr-marquee-track {
    display: flex;
    gap: 3.5rem;
    animation: marquee 28s linear infinite;
    width: max-content;
}

.msr-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.msr-partner {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #9aabbd;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s;
}

.msr-partner i {
    font-size: 1.2rem;
}

.msr-partner:hover {
    color: var(--msr-navy);
}

/* ================================================================
   PROBLEM SECTION (Dark)
   ================================================================ */
.msr-problem {
    background: radial-gradient(circle at 50% 10%, #162642 0%, #0a1120 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    align-items: center;
    display: flex;
}

.msr-problem * {
    position: relative;
    z-index: 2;
}

.msr-particle-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #a8c1f0;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.msr-particle-dot.dot-lg {
    width: 10px;
    height: 10px;
    opacity: 0.3;
}

.msr-particle-dot.dot-sm {
    width: 4px;
    height: 4px;
    opacity: 0.5;
}


.msr-problem-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Speech bubbles grid */
.msr-bubbles {
    /*  position: relative;*/
    height: 200px;
    width: 100%;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.msr-bubble {
    position: absolute;
    background: rgba(24, 62, 100, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    white-space: nowrap;
    font-size: .88rem;
    font-weight: 700;
    padding: .75rem 1.4rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.msr-bubble:hover {
    transform: translateY(-3px);
    background: rgba(24, 62, 100, 0.5);
}


.msr-solves-pill {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: linear-gradient(135deg, rgba(82, 121, 141, 0.6) 0%, rgba(155, 116, 134, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    padding: .8rem 2rem;
    border-radius: var(--msr-radius-pill);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: default;
    letter-spacing: -0.01em;
}

.msr-solves-pill i {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.95;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}



/* Feature panels inside dark section */
.msr-feature-panel {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--msr-radius-xl);
    padding: 2rem;
    margin-top: 3rem;
}

/* Feature panels – light/white variant (used in problem section) */
.msr-feature-panel-light {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: var(--msr-radius-xl);
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(24, 62, 100, .07);
}

.msr-feature-panel-header-light {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem;
}

.msr-feature-panel-header-light .fp-icon-light {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: #f0f4f8;
    border-radius: .625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--msr-navy);
    font-size: .9rem;
}

.msr-feature-panel-header-light h4 {
    margin: 0;
    color: var(--msr-navy);
    font-weight: 700;
    font-size: 1rem;
}

.msr-feature-panel-header-light p {
    margin: 0;
    color: #718096;
    font-size: .75rem;
}

/* Blood test card – light */
.msr-bt-card-light {
    background: #f7f9fc;
    border: 1px solid #e8ecf0;
    border-radius: 1rem;
    padding: 1.1rem;
    margin-bottom: .75rem;
}

/* Doctor sharing card – light */
.msr-doc-card-light {
    background: #f7f9fc;
    border: 1px solid #e8ecf0;
    border-radius: 1rem;
    padding: 1.25rem;
}

.msr-doc-avatar-light {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--msr-navy), var(--msr-sky));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}

/* Footer label – light */
.msr-panel-footer-light {
    color: #718096;
    font-size: .8rem;
    margin-top: 1rem;
}

.msr-panel-footer-light i {
    color: var(--msr-navy);
}

.msr-feature-panel-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem;
}

.msr-feature-panel-header .fp-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .12);
    border-radius: .625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--msr-mauve);
    font-size: .9rem;
}

.msr-feature-panel-header h4 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.msr-feature-panel-header p {
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: .75rem;
}

/* Blood test card inside panel */
.msr-bt-card {
    background: rgba(255, 255, 255, .08);
    border-radius: 1rem;
    padding: 1.1rem;
    margin-bottom: .75rem;
}

.msr-bt-card p {
    color: rgba(255, 255, 255, .88);
    font-size: .78rem;
    font-weight: 600;
    margin: 0 0 .6rem;
}

.msr-bt-card small {
    color: rgba(255, 255, 255, .6);
    font-size: .7rem;
    display: block;
    margin-bottom: .8rem;
}

/* Doctor sharing card */
.msr-doc-card {
    background: rgba(255, 255, 255, .08);
    border-radius: 1rem;
    padding: 1.1rem;
}

.msr-doc-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--msr-navy), var(--msr-sky));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}

.msr-doc-card h6 {
    color: #fff;
    font-size: .83rem;
    font-weight: 600;
    margin: 0;
}

.msr-doc-card small {
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
}

.msr-doc-check {
    color: #7ee8b4;
    font-size: 1rem;
}

.msr-doc-qs {
    color: rgba(255, 255, 255, .75);
    font-size: .77rem;
    margin: .75rem 0 0;
}

.msr-doc-qs li {
    margin-bottom: .25rem;
}

/* ================================================================
   REPORT TYPES SECTION
   ================================================================ */
.msr-reports {
    background: var(--msr-gray-bg);
    padding: 6rem 0;
    overflow: hidden
}

.msr-section-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid #dde3ea;
    color: #4a5568;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: var(--msr-radius-pill);
    margin-bottom: 1.25rem;
    background: #fff;
}

.msr-section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--msr-navy);
    margin-bottom: .75rem;
}

.msr-section-lead {
    font-size: 1rem;
    color: #718096;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Report type row */
.msr-report-row {
    padding: 3rem 0;
}

.msr-report-row+.msr-report-row {
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
}

.msr-report-img {
    border-radius: var(--msr-radius-xl);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--msr-shadow-card);
}

.msr-report-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.msr-report-img:hover img {
    transform: scale(1.04);
}

.msr-report-img-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .9);
    border-radius: .75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--msr-navy);
    font-size: 1rem;
}

.msr-report-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--msr-navy);
    margin-bottom: 1rem;
}

.msr-report-content p {
    color: #4a5568;
    font-size: .93rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.msr-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.msr-check-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    color: #2d3748;
    margin-bottom: .5rem;
}

.msr-check-list li i {
    width: 22px;
    height: 22px;
    background: var(--msr-navy);
    border-radius: 50%;
    color: #fff;
    font-size: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ================================================================
   KEY FEATURES CARDS
   ================================================================ */
.msr-features {
    background: #fff;
    padding: 100px 0;
}

.msr-feature-card {
    background: #fcfcfd;
    border: 1px solid #f1f4f9;
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.msr-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: #e2e8f0;
}

.fc-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.fc-icon-wrap img {
    width: 32px;
    height: 32px;
}

/* Custom background for each icon wrapper */
.fc-icon-ai {
    background-color: #ebf1f9;
}

.fc-icon-upload {
    background-color: #faedf4;
}

.fc-icon-insights {
    background-color: #f0f7fb;
}

.fc-icon-share {
    background-color: #f2f4f7;
}

.msr-feature-card h4 {
    color: #1a2b3c;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.msr-feature-card p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


/* ================================================================
   SECTION 6: UPLOAD & UNDERSTAND (Sticky Scroll)
   ================================================================ */
.msr-upload-section {
    position: relative;
    background: var(--msr-navy);
    padding: 100px 0;
    overflow: visible;
}

/* Sticky Section Specific Styles matching image */
.msr-sticky-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--msr-mauve);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.msr-sticky-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.msr-sticky-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.5;
}

.msr-bullet-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(108, 163, 216, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.msr-bullet-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6CA3D8;
}

.msr-sticky-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.msr-phone-sticky-col {
    position: sticky;
    top: 100px;
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42%;
    z-index: 10;
}

.msr-scroll-content-col {
    flex: 1;
    padding-bottom: 20vh;
}

.msr-scroll-segment {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.3;
    transform: translateY(30px);
    transition: all 0.6s ease;
    padding: 2rem 0;
}

.msr-scroll-segment.active {
    opacity: 1;
    transform: translateY(0);
}

/* Phone Mockup Overwrites for Sticky */
.msr-phone-mockup {
    width: 100%;
    max-width: 320px;
    height: 600px;
    background: #111e35;
    border: 12px solid #1a2642;
    border-radius: 40px;
    padding: 24px 16px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Screen Transitions */
.msr-mockup-screen {
    position: absolute;
    top: 24px;
    left: 16px;
    right: 16px;
    bottom: 24px;
    opacity: 0;
    transform: scale(0.95);
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1;
}

.msr-mockup-screen.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    z-index: 2;
}

/* Shared Phone UI Components */
.msr-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.msr-phone-header h5 {
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    margin: 0;
}

.msr-phone-header small {
    color: rgba(255, 255, 255, .5);
    font-size: .7rem;
}

.msr-phone-header-icons {
    display: flex;
    gap: .8rem;
    color: rgba(255, 255, 255, .6);
}

/* Specific Screen Styles */
.msr-screen-family .msr-family-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.msr-family-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.8rem;
}

.msr-screen-analysis .msr-status-badge {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.msr-screen-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.qr-placeholder {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 20px;
}

.msr-screen-connected .provider-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Original Dashboard items */
.msr-stat-card {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.msr-stat-card .stat-num {
    color: #183E64;
    font-size: 1.2rem;
    font-weight: 700;
}

.msr-stat-card .stat-lbl {
    color: #718096;
    font-size: .65rem;
    font-weight: 600;
}

.msr-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}

.msr-qa-btn {
    border: none;
    border-radius: 12px;
    padding: 18px 10px;
    font-size: .78rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.msr-qa-btn.primary {
    background: var(--msr-mauve);
    color: #fff;
}

.msr-qa-btn.secondary {
    background: #f7fafc;
    color: #183E64;
}

.msr-recent-item {
    background: rgba(255, 255, 255, .05);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: .8rem;
    border: 1px solid rgba(255, 255, 255, .05);
}

.msr-recent-item h6 {
    color: #fff;
    font-size: .78rem;
    margin: 0 0 2px 0;
}

.msr-recent-item span {
    color: rgba(255, 255, 255, .4);
    font-size: .65rem;
}

@media (max-width: 991px) {
    .msr-sticky-wrapper {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .msr-phone-sticky-col {
        position: relative;
        top: 0;
        height: auto;
        flex: none;
        width: 100%;
        margin-bottom: 3rem;
    }

    .msr-scroll-segment {
        min-height: auto;
        opacity: 1;
        transform: none;
        margin-bottom: 4rem;
    }
}

.msr-upload-content .msr-check-list li {
    color: rgba(255, 255, 255, .88);
}

.msr-upload-content .msr-check-list li i {
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .2);
}

/* ================================================================
   SECTION 6.5: BEFORE & AFTER COMPARISON
   ================================================================ */
.msr-comparison {
    padding: 100px 0;
    background-color: var(--msr-gray-bg);
    overflow: hidden;
}

.comparison-label {
    font-size: 2.25rem;
    font-weight: 800;
    color: #183E64;
}

.comparison-sub {
    font-size: 0.95rem;
    font-weight: 600;
    color: #a0aec0;
}

.comparison-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card img {
    width: 100%;
    height: auto;
    display: block;
}

.comparison-card.before {
    background-color: #fff;
    border: 1px solid #edf2f7;
}

.comparison-card.after {
    box-shadow: 0 20px 50px rgba(24, 62, 100, 0.15);
}

.comparison-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .comparison-label {
        font-size: 1.75rem;
    }

    .msr-comparison {
        padding: 60px 0;
    }
}

/* ================================================================
   SECURITY & PRIVACY (Blue Gradient)
   ================================================================ */
.msr-security {
    background: linear-gradient(135deg, var(--msr-navy) 0%, #1e6fa8 50%, var(--msr-sky) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.msr-security::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 30px 30px;
}

.msr-security .msr-section-title,
.msr-security .msr-section-lead {
    color: #fff;
}

.msr-security .msr-section-lead {
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
    margin: 0 auto;
}

.msr-shield-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, .15);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.msr-security-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--msr-radius-lg);
    padding: 2rem;
    transition: var(--msr-transition);
    height: 100%;
}

.msr-security-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-4px);
}

.msr-security-card .sc-icon {
    width: 52px;
    height: 52px;
    background: var(--msr-mauve);
    border-radius: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.msr-security-card h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .5rem;
}

.msr-security-card p {
    color: rgba(255, 255, 255, .75);
    font-size: .83rem;
    line-height: 1.65;
    margin: 0;
}

.msr-compliance-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-weight: 600;
    font-size: .83rem;
    padding: .65rem 1.5rem;
    border-radius: var(--msr-radius-pill);
    margin-top: 2rem;
}

.msr-compliance-pill i {
    color: var(--msr-mauve);
}

/* ================================================================
   SECTION 5.5: MEDICAL RECORD HUB (Coming Soon)
   ================================================================ */
.msr-hub-section {
    background-color: var(--msr-gray-bg);
    padding: 100px 0;
}

.msr-coming-soon-pill {
    display: inline-block;
    background: #faedf4;
    color: var(--msr-mauve);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.msr-hub-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #f1f4f9;
}

.msr-hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(24, 62, 100, 0.08);
}

.hub-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hub-icon-wrap img {
    width: 24px;
    height: 24px;
}

/* Icon box variants */
.hub-icon-blue {
    background: linear-gradient(135deg, #183E64, #2a6ba8);
}

.hub-icon-pink {
    background: linear-gradient(135deg, #CD9BBF, #e2abc1);
}

.hub-icon-sky {
    background: linear-gradient(135deg, #6CA3D8, #8ec1ef);
}

.hub-icon-purple {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

.msr-hub-card h4 {
    color: #183E64;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.msr-hub-card p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hub-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.hub-list li i {
    color: #CD9BBF;
    font-size: 0.9rem;
}

/* Dark card variant for Hub */
.msr-hub-card.card-dark {
    background: linear-gradient(180deg, #183E64 0%, #2A6BA8 100%);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.msr-hub-card.card-dark::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 200px;
    height: 200px;
    background: url('~/img/share-icon.svg') no-repeat center/contain;
    opacity: 0.1;
    pointer-events: none;
}

.msr-hub-card.card-dark h4 {
    color: #fff;
}

.msr-hub-card.card-dark p {
    color: rgba(255, 255, 255, 0.7);
}

.hub-mini-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: auto;
}

.hub-mini-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
}

.hub-mini-box h6 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fff;
}

.hub-mini-box span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Light card with QR Layout */
.hub-qr-layout {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hub-qr-content {
    flex: 1;
}

.hub-qr-mockup {
    flex: 0 0 160px;
    text-align: center;
}

.hub-qr-img {
    background: #fcfcfd;
    border: 1px solid #f1f4f9;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.hub-qr-img img {
    width: 100%;
    height: auto;
}

.hub-qr-mockup span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--msr-navy);
}

.hub-qr-mockup small {
    display: block;
    font-size: 0.65rem;
    color: #a0aec0;
}

.hub-list.green-checks li i {
    color: #4caf50;
}

.msr-testimonial-box {
    background: linear-gradient(135deg, var(--msr-gray-bg), #fff);
    border: 1px solid #e2e8f0;
    border-radius: var(--msr-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--msr-shadow-card);
}

.msr-tcard {
    border-radius: var(--msr-radius-lg);
    padding: 1.5rem;
}

.msr-tcard.light {
    background: #fff;
    border: 1px solid rgba(108, 163, 216, .2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.msr-tcard.dark {
    background: linear-gradient(135deg, var(--msr-navy), #2a6ba8);
    border: 1px solid rgba(24, 62, 100, .2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.msr-tcard-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
}

.msr-tcard.light .msr-tcard-avatar {
    background: linear-gradient(135deg, var(--msr-navy), var(--msr-sky));
    color: #fff;
}

.msr-tcard.dark .msr-tcard-avatar {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.msr-tcard.light .msr-tcard-name {
    color: var(--msr-navy);
    font-weight: 600;
    font-size: .88rem;
}

.msr-tcard.dark .msr-tcard-name {
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
}

.msr-tcard.light .msr-tcard-role {
    color: #718096;
    font-size: .73rem;
}

.msr-tcard.dark .msr-tcard-role {
    color: rgba(255, 255, 255, .65);
    font-size: .73rem;
}

.msr-tcard.light .msr-tcard-text {
    color: #4a5568;
    font-size: .83rem;
    font-style: italic;
    margin: 0;
}

.msr-tcard.dark .msr-tcard-text {
    color: rgba(255, 255, 255, .88);
    font-size: .83rem;
    font-style: italic;
    margin: 0;
}

.msr-stars {
    display: flex;
    gap: 2px;
}

.msr-stars i {
    color: var(--msr-mauve);
    font-size: .8rem;
}

/* Trust badges grid */
.msr-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .msr-trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
}

.msr-trust-badge {
    text-align: center;
}

.msr-trust-badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--msr-navy), var(--msr-sky));
    border-radius: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin: 0 auto .75rem;
}

.msr-trust-badge strong {
    display: block;
    font-size: .8rem;
    color: var(--msr-navy);
    font-weight: 700;
}

.msr-trust-badge small {
    font-size: .72rem;
    color: #718096;
}

.msr-trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.msr-trust-stats li {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: #718096;
}

.msr-trust-stats li i {
    color: var(--msr-sky);
}

.msr-trust-stats li {
    padding-top: 1.5rem;
}

/* ================================================================
   PRICING
   ================================================================ */
.msr-pricing {
    background: linear-gradient(135deg, var(--msr-gray-bg), #fff);
    padding: 6rem 0;
}

.msr-pricing-card {
    border-radius: var(--msr-radius-xl);
    border: 2px solid #e2e8f0;
    padding: 2.5rem;
    background: #fff;
    transition: var(--msr-transition);
    height: 100%;
    position: relative;
}

.msr-pricing-card:hover {
    box-shadow: var(--msr-shadow-card);
    transform: translateY(-4px);
}

.msr-pricing-card.popular {
    background: linear-gradient(135deg, var(--msr-navy), #2a6ba8);
    border-color: var(--msr-navy);
    box-shadow: 0 12px 48px rgba(24, 62, 100, .25);
}

.msr-pricing-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    transform: translateY(-50%);
    background: var(--msr-mauve);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .9rem;
    border-radius: var(--msr-radius-pill);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.msr-pricing-card .plan-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--msr-navy);
    margin-bottom: 1rem;
}

.msr-pricing-card.popular .plan-name {
    color: #fff;
}

.msr-pricing-card .plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--msr-navy);
    line-height: 1;
}

.msr-pricing-card.popular .plan-price {
    color: #fff;
}

.msr-pricing-card .plan-period {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.msr-pricing-card.popular .plan-period {
    color: rgba(255, 255, 255, .7);
}

.msr-pricing-card .plan-desc {
    color: #718096;
    font-size: .85rem;
    margin-top: .5rem;
}

.msr-pricing-card.popular .plan-desc {
    color: rgba(255, 255, 255, .8);
}

.msr-pricing-card .plan-note {
    color: rgba(255, 255, 255, .6);
    font-size: .75rem;
}

.msr-plan-feature {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    color: #4a5568;
    margin-bottom: .65rem;
}

.msr-plan-feature .pf-icon {
    color: var(--msr-sky);
    font-size: .8rem;
    margin-top: .15rem;
    flex-shrink: 0;
}

.msr-pricing-card.popular .msr-plan-feature {
    color: rgba(255, 255, 255, .9);
}

.msr-pricing-card.popular .pf-icon {
    color: var(--msr-mauve);
}

.btn-plan-free {
    background: var(--msr-gray-bg);
    color: var(--msr-navy);
    border: none;
    border-radius: var(--msr-radius-pill);
    padding: .8rem;
    font-weight: 600;
    font-size: .9rem;
    width: 100%;
    transition: var(--msr-transition);
}

.btn-plan-free:hover {
    background: #dde3ea;
}

.btn-plan-pro {
    background: var(--msr-mauve);
    color: #fff;
    border: none;
    border-radius: var(--msr-radius-pill);
    padding: .8rem;
    font-weight: 600;
    font-size: .9rem;
    width: 100%;
    transition: var(--msr-transition);
}

.btn-plan-pro:hover {
    background: #b88aad;
    transform: translateY(-1px);
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.msr-faq {
    background: #fff;
    padding: 6rem 0;
}

.msr-accordion-item {
    background: #fff;
    border: 1px solid #e8ecf0 !important;
    border-radius: var(--msr-radius-lg) !important;
    margin-bottom: .75rem;
    overflow: hidden;
}

.msr-accordion-btn {
    font-weight: 600;
    color: var(--msr-navy) !important;
    font-size: .95rem;
    padding: 1.25rem 1.5rem;
    background: #fff !important;
    box-shadow: none !important;
}

.msr-accordion-btn:not(.collapsed) {
    color: var(--msr-mauve) !important;
}

.msr-accordion-btn::after {
    filter: none;
}

.msr-accordion-body {
    color: #4a5568;
    font-size: .88rem;
    line-height: 1.75;
    padding: 0 1.5rem 1.25rem;
}

/* ================================================================
   SECTION 7: CTA BANNER
   ================================================================ */
.msr-cta-section {
    padding: 60px 0;
    background: #fff;
}

/* Rounded Card Version */
.msr-cta-banner {
    background: linear-gradient(90deg, #183E64 0%, #5d9adc 100%);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(24, 62, 100, 0.2);
    position: relative;
    overflow: hidden;
}

/* Full Width Version (for bottom CTA) */
.msr-cta-full {
    background: linear-gradient(90deg, #183E64 0%, #5d9adc 100%);
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.msr-cta-full::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.msr-cta-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.msr-cta-content {
    z-index: 2;
}

.msr-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.msr-cta-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin: 0;
    max-width: 500px;
}

.msr-cta-btn {
    background: #CD9BBF;
    color: #fff;
    border: none;
    padding: 1.1rem 2.8rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(205, 155, 191, 0.3);
}

.msr-cta-btn:hover {
    background: #bc82ab;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(205, 155, 191, 0.4);
    color: #fff;
}

@media (max-width: 991px) {
    .msr-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 3.5rem 2rem;
    }

    .msr-cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ================================================================
   BLOG PREVIEW
   ================================================================ */
.msr-blog {
    background: var(--msr-gray-bg);
    padding: 6rem 0;
}

.msr-blog-card {
    background: #fff;
    border-radius: var(--msr-radius-xl);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    transition: var(--msr-transition);
    height: 100%;
}

.msr-blog-card:hover {
    box-shadow: var(--msr-shadow-card);
    transform: translateY(-6px);
}

.msr-blog-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.msr-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.msr-blog-card:hover .msr-blog-img img {
    transform: scale(1.06);
}

.msr-blog-cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--msr-navy);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: var(--msr-radius-pill);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.msr-blog-body {
    padding: 1.5rem;
}

.msr-blog-meta {
    display: flex;
    gap: 1rem;
    font-size: .75rem;
    color: #718096;
    margin-bottom: .75rem;
}

.msr-blog-meta i {
    margin-right: .2rem;
}

.msr-blog-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--msr-navy);
    margin-bottom: .75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

.msr-blog-card:hover h4 {
    color: var(--msr-mauve);
}

.msr-blog-body p {
    font-size: .83rem;
    color: #718096;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.msr-blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f4f8;
}

.msr-blog-author {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.msr-blog-author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(108, 163, 216, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--msr-navy);
    font-size: .65rem;
}

.msr-blog-author span {
    font-size: .78rem;
    font-weight: 600;
    color: var(--msr-navy);
}

.msr-blog-arrow {
    color: var(--msr-mauve);
    transition: transform .2s;
    font-size: .9rem;
}

.msr-blog-card:hover .msr-blog-arrow {
    transform: translateX(4px);
}

/* OWL Carousel customisation */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--msr-mauve);
}

/* Ensure side arrows are visible and container has space */
.owl-blog.owl-carousel {
    overflow: visible !important;
}

.owl-theme .owl-nav {
    margin: 0 !important;
}

.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #fff !important;
    color: var(--msr-navy) !important;
    border: 1px solid rgba(24, 62, 100, 0.1) !important;
    border-radius: 12px !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    z-index: 100;
}

.owl-theme .owl-nav .owl-prev {
    left: -20px !important;
}

.owl-theme .owl-nav .owl-next {
    right: -20px !important;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--msr-mauve) !important;
    color: #fff !important;
    border-color: var(--msr-mauve) !important;
}

/* Ensure section container has enough side gutter for the absolute arrows */
.msr-blog .container-xl {
    position: relative;
    padding-left: 50px !important;
    padding-right: 50px !important;
}

@media (min-width: 1400px) {
    .owl-theme .owl-nav .owl-prev {
        left: -40px !important;
    }

    .owl-theme .owl-nav .owl-next {
        right: -40px !important;
    }
}

@media (max-width: 991px) {
    .owl-theme .owl-nav {
        display: none !important;
    }

    .msr-blog .container-xl {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ================================================================
   FOOTER
   ================================================================ */
.msr-footer {
    background: var(--msr-navy);
    color: #fff;
}

.msr-footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: .75rem;
    background: linear-gradient(90deg, #6dd5ed, #7ee8b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.msr-footer-tagline {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.msr-footer-contact {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.msr-footer-contact li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
}

.msr-footer-contact li a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s;
}

.msr-footer-contact li a:hover {
    color: #fff;
}

.msr-footer-contact li i {
    width: 14px;
    text-align: center;
}

.msr-footer-heading {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.msr-footer-heading-sm {
    font-weight: 700;
    font-size: .83rem;
    margin-bottom: .6rem;
}

.msr-footer-links {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.msr-footer-links li a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: .83rem;
    transition: color .2s;
}

.msr-footer-links li a:hover {
    color: #fff;
}

.msr-newsletter {
    display: flex;
    gap: .5rem;
}

.msr-newsletter .form-control {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: .83rem;
    border-radius: .5rem;
    flex: 1;
    padding: .55rem .875rem;
}

.msr-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, .45);
}

.msr-newsletter .form-control:focus {
    outline: none;
    border-color: var(--msr-mauve);
    box-shadow: none;
    background: rgba(255, 255, 255, .12);
}

.msr-newsletter .btn {
    background: var(--msr-mauve);
    color: #fff;
    border: none;
    border-radius: .5rem;
    font-size: .83rem;
    font-weight: 600;
    padding: .55rem 1rem;
    white-space: nowrap;
    transition: var(--msr-transition);
}

.msr-newsletter .btn:hover {
    background: #b88aad;
}

.msr-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.msr-social-icons {
    display: flex;
    gap: .75rem;
}

.msr-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    text-decoration: none;
    transition: var(--msr-transition);
}

.msr-social-icons a:hover {
    background: var(--msr-mauve);
    transform: translateY(-2px);
}

.msr-footer-copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
    text-align: right;
}

.msr-footer-copy p {
    margin: 0;
}

.msr-trust-bar {
    background: var(--msr-navy-deep);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.msr-trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.msr-trust-bar-inner span {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
}

.msr-trust-bar-inner span i {
    font-size: .8rem;
}

/* ================================================================
   UTILITY / HELPERS
   ================================================================ */
.text-msr-navy {
    color: var(--msr-navy) !important;
}

.text-msr-mauve {
    color: var(--msr-mauve) !important;
}

.text-msr-sky {
    color: var(--msr-sky) !important;
}

.bg-msr-navy {
    background: var(--msr-navy) !important;
}

.bg-msr-dark {
    background: var(--msr-dark-bg) !important;
}

/* Divider */
.msr-divider {
    width: 60px;
    height: 4px;
    background: var(--msr-mauve);
    border-radius: var(--msr-radius-pill);
    margin: .75rem auto 0;
}

/* Responsive fixes */
@media (max-width: 991.98px) {
    #site-header {
        padding: .5rem .75rem;
    }

    .msr-navbar {
        border-radius: 1.25rem;
        padding: .75rem 1rem;
    }

    /*main { padding-top: 76px; }*/
    .msr-hero {
        min-height: unset;
        padding: 7rem 0 5rem;
    }

    .msr-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }

    .msr-cta-banner h2 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 767.98px) {
    .msr-hero h1 {
        font-size: 2.2rem;
    }

    .msr-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .msr-footer-copy {
        text-align: center;
    }
}

/* ================================================================
   CONTACT PAGE STYLES
   ================================================================ */
.msr-contact-hero {
    background: linear-gradient(135deg, var(--msr-navy) 0%, var(--msr-sky) 100%);
    padding: 120px 0 60px;
    color: #fff;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.msr-contact-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.msr-contact-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

.msr-contact-page-bg {
    background-color: #f7f9fc;
}

.msr-contact-heading {
    font-weight: 700;
    color: var(--msr-navy);
    font-size: 1.5rem;
}

/* Info List */
.msr-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.msr-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.msr-info-icon {
    width: 44px;
    height: 44px;
    background-color: var(--msr-navy);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.msr-info-content {
    display: flex;
    flex-direction: column;
}

.msr-info-content strong {
    color: var(--msr-navy);
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.msr-info-content a,
.msr-info-content p {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.msr-info-content small {
    color: #a0aec0;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

/* Emergency Box */
.msr-emergency-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
}

.msr-emergency-box strong {
    display: block;
    color: var(--msr-navy);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.msr-emergency-box p {
    color: #718096;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.msr-emergency-link {
    color: var(--msr-mauve);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.msr-emergency-link:hover {
    color: #b382a5;
    text-decoration: underline;
}

/* Form Card */
.msr-contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(24, 62, 100, 0.06);
    border: 1px solid rgba(24, 62, 100, 0.05);
}

.msr-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--msr-navy);
}

.msr-form-control {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #4a5568;
}

.msr-form-control:focus {
    border-color: var(--msr-sky);
    box-shadow: 0 0 0 3px rgba(108, 163, 216, 0.15);
    background-color: #fff;
}

.msr-btn-submit {
    background-color: var(--msr-mauve);
    color: #fff;
    border-radius: 999px;
    padding: 0.85rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
}

.msr-btn-submit:hover {
    background-color: #b382a5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 155, 191, 0.3);
}

/* FAQ Accordion */
.msr-contact-acc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.msr-acc-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    background: #fff;
    text-align: left;
    transition: all 0.2s;
    cursor: pointer;
}

.msr-acc-item:hover {
    border-color: var(--msr-sky);
    box-shadow: 0 4px 12px rgba(108, 163, 216, 0.08);
}

.msr-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--msr-navy);
    font-weight: 700;
    font-size: 1rem;
}

.msr-acc-header i {
    color: var(--msr-sky);
}

/* Location Box */
.msr-location-box {
    background-color: #e2e8f0;
    max-width: 900px;
    border-radius: 20px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ================================================================
   SCHEDULE DEMO PAGE STYLES
   ================================================================ */
.msr-demo-hero {
    background: linear-gradient(135deg, var(--msr-navy) 0%, var(--msr-sky) 100%);
    padding: 120px 0 60px;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.msr-demo-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.msr-demo-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

.msr-demo-bg {
    background-color: #f7f9fc;
}

.msr-demo-heading {
    font-weight: 800;
    color: var(--msr-navy);
    font-size: 1.6rem;
}

/* Learn List */
.msr-demo-learn-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding-top: 1rem;
}

.msr-learn-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.msr-learn-icon {
    width: 48px;
    height: 48px;
    background-color: var(--msr-navy);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.msr-learn-content {
    display: flex;
    flex-direction: column;
}

.msr-learn-content strong {
    color: var(--msr-navy);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.msr-learn-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Demo Details Box */
.msr-demo-details-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
}

.msr-demo-details-box strong {
    display: block;
    color: var(--msr-navy);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.msr-demo-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.msr-demo-details-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.msr-demo-details-list li i {
    color: var(--msr-sky);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Form Card */
.msr-demo-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(24, 62, 100, 0.06);
    border: 2px solid rgba(24, 62, 100, 0.05);
}

/* ================================================================
   ABOUT PAGE STYLES
   ================================================================ */

/* Hero */
.msr-about-hero {
    background: linear-gradient(135deg, var(--msr-navy) 0%, var(--msr-sky) 100%);
    padding: 130px 0 70px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.msr-about-hero-title {
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.msr-about-hero-lead {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Shared section title + lead (used across About, etc.) */
.msr-section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--msr-navy);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.msr-section-lead {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 0;
}

/* Our Story */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.msr-about-story-text {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

/* Mission / Vision / Values */
.msr-mvv-card {
    background: #fff;
    border: 2px solid #e8ecf0;
    border-radius: 20px;
    padding: 2.2rem 2rem;
    height: 100%;
    text-align: left;
    transition: var(--msr-transition);
    box-shadow: 0 2px 12px rgba(24, 62, 100, 0.06);
}

.msr-mvv-card:hover {
    transform: translateY(-6px);
    border-color: var(--msr-navy);
    box-shadow: var(--msr-shadow-card);
}

.msr-mvv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 1.5rem 0;
}

.msr-mvv-card h4 {
    font-weight: 700;
    color: var(--msr-navy);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.msr-mvv-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.msr-about-mvv {
    background: #f7f9fc;
}

/* Team */
.msr-about-team {
    background: #f7f9fc;
}

.msr-team-card {
    padding: 1.5rem 1rem;
}

.msr-team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1rem;
}

.msr-team-avatar-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #e8ecf0;
    box-shadow: 0 4px 16px rgba(24, 62, 100, 0.10);
}

.msr-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.msr-team-name {
    font-weight: 700;
    color: var(--msr-navy);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.msr-team-role {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--msr-sky);
    margin-bottom: 0.75rem;
}

.msr-team-bio {
    color: #2d3748;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* Stats strip */
.msr-about-stats {
    background: var(--msr-navy);
    padding: 3.5rem 0;
}

.msr-stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.msr-stat-item:last-child {
    border-right: none;
}

.msr-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.msr-stat-lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* Awards */
.msr-award-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--msr-transition);
    box-shadow: var(--msr-shadow-soft);
}

.msr-award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--msr-shadow-card);
}

.msr-award-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 auto 1rem;
}

.msr-award-card h5 {
    font-weight: 700;
    color: var(--msr-navy);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.msr-award-card p {
    color: #718096;
    font-size: 0.82rem;
    margin: 0;
}

/* Partners */
.msr-about-partners {
    background: #f7f9fc;
}

.msr-partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.msr-partner-logo-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 1.5rem;
    color: #718096;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--msr-transition);
}

.msr-partner-logo-item i {
    color: var(--msr-sky);
}

.msr-partner-logo-item:hover {
    border-color: var(--msr-sky);
    color: var(--msr-navy);
    box-shadow: 0 4px 12px rgba(108, 163, 216, 0.1);
}

/* CTA Section */
.msr-about-cta {
    background: linear-gradient(135deg, var(--msr-navy) 0%, #2d527f 50%, var(--msr-mauve) 100%);
    padding: 6rem 0;
    color: #fff;
}

.msr-about-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.msr-about-cta-lead {
    font-size: 1.05rem;
    opacity: 0.88;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.msr-about-btn-primary {
    background: #fff;
    color: var(--msr-navy);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: var(--msr-radius-pill);
    border: none;
    transition: var(--msr-transition);
}

.msr-about-btn-primary:hover {
    background: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.msr-about-btn-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: var(--msr-radius-pill);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: var(--msr-transition);
}

.msr-about-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

/* ================================================================
   FINAL RESPONSIVENESS OVERRIDES
   ================================================================ */
@media (max-width: 991.98px) {
    .msr-hero {
        text-align: center;
    }

    .msr-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .msr-hero-btns {
        justify-content: center;
    }

    .msr-hero-trust {
        margin-left: auto;
        margin-right: auto;
    }

    .msr-hero-trust .d-flex {
        justify-content: center;
    }

    .msr-cta-full h2 {
        font-size: 2.75rem !important;
    }
}

@media (max-width: 767.98px) {
    .msr-hero {
        padding: 8rem 0 4rem;
        min-height: auto !important;
    }

    .msr-hero h1 {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.85rem !important;
    }

    .msr-hero-lead {
        font-size: 0.9rem !important;
        line-height: 1.55 !important;
        margin-bottom: 1.5rem !important;
    }

    .msr-hero-btns {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 0.5rem !important;
    }

    .msr-hero-btns .btn {
        width: auto;
        flex: 1;
        padding: 0.75rem 0.5rem !important;
        font-size: 0.78rem !important;
        min-width: 140px;
    }

    .msr-hero-trust {
        margin-top: 2.5rem !important;
        padding-top: 1.5rem !important;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .msr-hero-trust .d-flex {
        flex-direction: column;
        align-items: flex-start;
        display: inline-flex !important;
        gap: 0.65rem !important;
    }

    .msr-trust-item {
        font-size: 0.8rem !important;
        justify-content: flex-start;
        width: auto;
    }

    /* Section spacing mobile overrides */
    .msr-reports,
    .msr-problem,
    .msr-cta-section,
    .msr-hub-section,
    .msr-comparison,
    .msr-security,
    .msr-testimonials,
    .msr-pricing,
    .msr-faq,
    .msr-blog {
        padding: 40px 0 !important;
    }

    .msr-report-row {
        margin-bottom: 30px !important;
    }

    .msr-section-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
    }

    .msr-section-lead {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Sticky scroll mobile scaling */
    .msr-scroll-content-col {
        padding-bottom: 0 !important;
    }

    .msr-scroll-segment {
        margin-bottom: 2.5rem !important;
        padding: 0 !important;
        min-height: auto !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .msr-scroll-segment h2 {
        font-size: 1.45rem !important;
        line-height: 1.25 !important;
        margin-bottom: 1rem !important;
    }

    .msr-scroll-segment p {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }

    .msr-sticky-subtitle {
        font-size: 0.68rem !important;
        margin-bottom: 0.4rem !important;
    }

    .msr-sticky-list li {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Top CTA Banner mobile scaling */
    .msr-cta-banner {
        padding: 2.5rem 1.5rem !important;
    }

    .msr-cta-banner h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .msr-cta-banner p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    .msr-cta-btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.85rem !important;
    }

    /* CTA & Hub mobile fixes */
    .msr-cta-full h2 {
        font-size: 1.65rem !important;
        margin-bottom: 0.75rem !important;
    }

    .msr-cta-full p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    .msr-cta-full {
        padding: 45px 0 !important;
    }

    .msr-cta-btns {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 0.6rem !important;
        margin-top: 1.5rem !important;
    }

    .msr-cta-btns .btn {
        flex: 1;
        padding: 0.75rem 0.5rem !important;
        font-size: 0.75rem !important;
        min-width: unset !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    .msr-hub-section {
        padding: 60px 0;
    }

    .msr-hub-card {
        padding: 1.75rem;
    }

    .hub-qr-layout {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .hub-qr-mockup {
        flex: none;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    /* Hub card scaling */
    .msr-hub-card h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .msr-hub-card p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }

    .hub-list li {
        font-size: 0.825rem !important;
    }

    /* Pricing mobile scaling */
    .msr-pricing-card {
        padding: 1.25rem !important;
    }

    .msr-pricing-card .plan-name {
        font-size: 1.15rem !important;
        margin-bottom: 0.4rem !important;
    }

    .msr-pricing-card .plan-price {
        font-size: 1.85rem !important;
    }

    .msr-pricing-card .plan-period {
        font-size: 0.8rem !important;
    }

    .msr-pricing-card .plan-desc {
        font-size: 0.8rem !important;
    }

    .msr-pricing-card .plan-note {
        font-size: 0.65rem !important;
    }

    .msr-plan-feature {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
        gap: 0.5rem !important;
    }

    .btn-plan-pro,
    .btn-plan-free {
        padding: 0.65rem !important;
        font-size: 0.8rem !important;
    }

    /* Comparison section scaling */
    .comparison-label {
        font-size: 0.95rem !important;
    }

    .comparison-sub {
        font-size: 0.75rem !important;
    }

    /* Disable AOS animations on mobile to prevent invisible content during scroll gap */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition-duration: 0s !important;
        animation-duration: 0s !important;
    }
}