/* ========================================
   StudyMRCEM - Home Page Styles
   ========================================
   This file contains all styles for the home page landing sections.
   Follows best practices with organized sections and BEM-like naming.
   ======================================== */

/* ─────────────────────────────────────────────
   Design Tokens (CSS Variables)
   ───────────────────────────────────────────── */
:root {
    /* Primary MRCEM colors */
    --mrcem-navy:        #0B1E3D;
    --mrcem-navy-mid:    #112444;
    --mrcem-navy-lt:     #1A3260;
    --mrcem-blue:        #1447A6;
    --mrcem-teal:        #427fe1;
    --mrcem-teal-lt:     #a3c6ff;
    --mrcem-teal-ltt:     #8db7f6;
    --mrcem-teal-glow:   rgba(46, 124, 246, 0.18);

    /* Light surface tokens */
    --mrcem-frost:       #F0F7FF;
    --mrcem-white:       #FFFFFF;
    --mrcem-slate:       #6B7FA3;
    --mrcem-slate-lt:    #94A6C4;
    --mrcem-gold:        #F5A623;
    --mrcem-green:       #2E7CF6;
    --mrcem-red:         #EF4444;
    --mrcem-amber:       #F59E0B;

    /* Surface colors */
    --mrcem-surface:     #FFFFFF;
    --mrcem-surface-2:   #FFFFFF;
    --mrcem-surface-3:   #EEF4FF;
    --mrcem-border:      #E2EAF6;
    --mrcem-border-dark: #CBD5E8;
    --mrcem-text:        #0F172A;
    --mrcem-text-2:      #475569;
    --mrcem-text-3:      #94A3B8;

    /* Spacing & effects */
    --mrcem-radius:      14px;
    --mrcem-radius-lg:   20px;
    --mrcem-shadow-sm:   0 2px 8px rgba(11, 30, 61, 0.07);
    --mrcem-shadow:      0 8px 32px rgba(11, 30, 61, 0.10);
    --mrcem-shadow-lg:   0 20px 60px rgba(11, 30, 61, 0.14);
}

/* ─────────────────────────────────────────────
   Global Reset & Base Styles
   ───────────────────────────────────────────── */
.mrcem-section {
    font-family: 'DM Sans', system-ui, sans-serif;
}

.mrcem-section *,
.mrcem-section *::before,
.mrcem-section *::after {
    box-sizing: border-box;
}

/* ─────────────────────────────────────────────
   Utility Classes
   ───────────────────────────────────────────── */
.mrcem-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.mrcem-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 108, 175, 0.1);
    border: 1px solid rgba(29, 128, 203, 0.379);
    color: var(--mrcem-teal);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.mrcem-section-label svg {
    width: 13px;
    height: 13px;
}

/* Dot marker (replaces icon in pill badges — matches hero trust-dot feel) */
.mrcem-section-label__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    opacity: 0.95;
}

/* Pill label on dark sections (Reviews) — pairs with section 2 structure */
.mrcem-section-label--on-dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--mrcem-teal-lt);
}

.mrcem-section-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--mrcem-text);
    margin: 0 0 0.75rem;
}

.mrcem-section-heading .teal {
    color: var(--mrcem-teal);
}

.mrcem-section-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--mrcem-text-2);
    max-width: 560px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────
   Button Components
   ───────────────────────────────────────────── */
.mrcem-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 52px;
    padding: 0 1.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.mrcem-btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.mrcem-btn--primary {
    background: linear-gradient(135deg, var(--mrcem-teal) 0%, var(--mrcem-teal-lt) 100%);
    color: var(--mrcem-navy);
}

.mrcem-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14, 175, 160, 0.38);
}

.mrcem-btn--navy {
    background: var(--mrcem-navy);
    color: var(--mrcem-white);
}

.mrcem-btn--navy:hover {
    background: var(--mrcem-navy-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(11, 30, 61, 0.3);
}

.mrcem-btn--outline {
    background: transparent;
    color: var(--mrcem-teal);
    border: 2px solid var(--mrcem-teal);
}

.mrcem-btn--outline:hover {
    background: var(--mrcem-teal);
    color: var(--mrcem-navy);
    transform: translateY(-2px);
}

.mrcem-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.mrcem-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.mrcem-btn--ghost-light {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mrcem-btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

/* Hero-specific button size */
.mrcem-hero .mrcem-btn {
    height: 54px;
    padding: 0 2rem;
}

.mrcem-hero .mrcem-btn svg {
    width: 18px;
    height: 18px;
}

/* ─────────────────────────────────────────────
   Animations & Transitions
   ───────────────────────────────────────────── */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-left {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.4);
    }
}

@keyframes orb-drift {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(30px, 20px) scale(1.08);
    }
}

.mrcem-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.mrcem-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mrcem-reveal-delay-1 { transition-delay: 0.1s; }
.mrcem-reveal-delay-2 { transition-delay: 0.2s; }
.mrcem-reveal-delay-3 { transition-delay: 0.3s; }
.mrcem-reveal-delay-4 { transition-delay: 0.4s; }
.mrcem-reveal-delay-5 { transition-delay: 0.5s; }
.mrcem-reveal-delay-6 { transition-delay: 0.6s; }

/* ─────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────── */
.mrcem-hero {
    position: relative;
    min-height: 100vh;
    background: var(--mrcem-navy);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero Background Layers */
.mrcem-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.mrcem-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(20, 71, 166, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(14, 175, 160, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 90% 10%, rgba(14, 175, 160, 0.15) 0%, transparent 55%);
}

.mrcem-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 100%);
}

/* Floating Orbs */
.mrcem-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-drift 12s ease-in-out infinite alternate;
}

.mrcem-orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(20, 71, 166, 0.35);
    top: -120px;
    right: -80px;
    animation-duration: 14s;
}

.mrcem-orb--2 {
    width: 320px;
    height: 320px;
    background: rgba(14, 175, 160, 0.2);
    bottom: -60px;
    right: 25%;
    animation-duration: 10s;
    animation-delay: -5s;
}

.mrcem-orb--3 {
    width: 200px;
    height: 200px;
    background: rgba(14, 175, 160, 0.15);
    top: 20%;
    left: -40px;
    animation-duration: 18s;
    animation-delay: -8s;
}

/* Hero Content */
.mrcem-hero__inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5.3rem 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .mrcem-hero__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 6rem 1.5rem 4rem;
    }
}

/* Hero Left Column */
.mrcem-hero__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Trust Badge */
.mrcem-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #498bf634;
    border: 1px solid #2e7bf644;
    color: var(--mrcem-teal-lt);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    width: fit-content;
    animation: fade-up 0.6s ease both;
}

.mrcem-badge__dot {
    width: 7px;
    height: 7px;
    background: var(--mrcem-teal-lt);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

/* Hero Headline — readable spacing (avoid cramped words / letters) */
.mrcem-hero__headline {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--mrcem-white);
    /* Slight negative tracking for display type; word-spacing adds air between words */
    letter-spacing: -0.015em;
    word-spacing: 0.08em;
    animation: fade-up 0.6s 0.15s ease both;
}

.mrcem-hero__headline-main {
    display: block;
    letter-spacing: -0.01em;
    word-spacing: 0.1em;
}

.mrcem-hero__headline .accent {
    display: block;
    margin-top: 0.2em;
    letter-spacing: -0.01em;
    word-spacing: 0.12em;
    line-height: 1.15;
    background: linear-gradient(95deg, var(--mrcem-teal-ltt) 0%, #3875d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mrcem-hero__headline .sub {
    display: block;
    font-size: 0.48em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.4em;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.55);
}

/* Hero Description */
.mrcem-hero__desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    max-width: 480px;
    animation: fade-up 0.6s 0.3s ease both;
}

/* CTA Group */
.mrcem-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    animation: fade-up 0.6s 0.45s ease both;
}

/* Social Proof */
.mrcem-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fade-up 0.6s 0.6s ease both;
}

.mrcem-avatars {
    display: flex;
    flex-direction: row;
}

.mrcem-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--mrcem-navy);
    margin-left: -10px;
    object-fit: cover;
}

.mrcem-avatars img:first-child {
    margin-left: 0;
}

.mrcem-proof-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mrcem-stars {
    display: flex;
    gap: 2px;
}

.mrcem-stars svg {
    width: 14px;
    height: 14px;
    color: var(--mrcem-gold);
    fill: var(--mrcem-gold);
}

.mrcem-proof-text span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.mrcem-proof-text strong {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.mrcem-divider-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 0.25rem;
}

/* Hero Right Column */
.mrcem-hero__right {
    animation: fade-left 0.7s 0.2s ease both;
}

.mrcem-card-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Feature Card */
.mrcem-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.mrcem-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 175, 160, 0.6), transparent);
}

.mrcem-feature-card__title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mrcem-feature-card__title svg {
    width: 18px;
    height: 18px;
    color: var(--mrcem-teal-lt);
}

/* Stats Row */
.mrcem-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mrcem-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
}

.mrcem-stat__number {
    font-family: 'Sora', sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--mrcem-white);
    line-height: 1.1;
    display: block;
}

.mrcem-stat__number.teal {
    color: var(--mrcem-teal-lt);
}

.mrcem-stat__label {
    font-size: 0.725rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.25rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Feature List */
.mrcem-feature-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mrcem-feature-list__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.mrcem-feature-list__item svg {
    width: 16px;
    height: 16px;
    color: var(--mrcem-teal-lt);
    flex-shrink: 0;
}

/* Mini Cards */
.mrcem-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mrcem-mini-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 1.25rem;
    backdrop-filter: blur(12px);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.mrcem-mini-card:hover {
    border-color: rgba(14, 175, 160, 0.3);
    transform: translateY(-2px);
}

.mrcem-mini-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.mrcem-mini-card__icon--teal {
    background: rgba(14, 175, 160, 0.15);
}

.mrcem-mini-card__icon--blue {
    background: rgba(20, 71, 166, 0.25);
}

.mrcem-mini-card__icon svg {
    width: 19px;
    height: 19px;
    color: var(--mrcem-teal-lt);
}

.mrcem-mini-card__icon--blue svg {
    color: #7AB3FF;
}

.mrcem-mini-card__title {
    font-family: 'Sora', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.25rem;
}

.mrcem-mini-card__desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* Hero Bottom Separator */
.mrcem-hero__sep {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(14, 175, 160, 0.4) 30%, rgba(14, 175, 160, 0.4) 70%, transparent 100%);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .mrcem-hero__inner {
        padding: 6rem 2rem 4rem;
    }

    .mrcem-hero__headline {
        font-size: clamp(2.25rem, 5vw, 2.75rem);
    }

    .mrcem-hero__desc {
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .mrcem-hero {
        min-height: auto;
        padding-bottom: 3rem;
    }

    .mrcem-hero__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 5rem 1.5rem 3rem;
    }

    .mrcem-hero__left {
        gap: 1.25rem;
    }

    .mrcem-hero__headline {
        font-size: clamp(1.875rem, 4.5vw, 2.25rem);
        word-spacing: 0.05em;
    }

    .mrcem-hero__headline .sub {
        font-size: 0.55em;
        letter-spacing: 0.1em;
    }

    .mrcem-hero__desc {
        font-size: 0.9375rem;
        line-height: 1.65;
    }

    .mrcem-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .mrcem-cta-group .mrcem-btn {
        width: 100%;
        justify-content: center;
    }

    .mrcem-social-proof {
        gap: 0.75rem;
    }

    .mrcem-avatars img {
        width: 32px;
        height: 32px;
        margin-left: -8px;
    }

    .mrcem-proof-text strong {
        font-size: 0.8125rem;
    }

    .mrcem-proof-text span {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .mrcem-hero__inner {
        padding: 4.5rem 1.25rem 2.5rem;
    }

    .mrcem-hero__headline {
        font-size: clamp(1.625rem, 4vw, 2rem);
    }

    .mrcem-hero__headline .sub {
        font-size: 0.6em;
    }

    .mrcem-hero__desc {
        font-size: 0.875rem;
    }

    .mrcem-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }

    .mrcem-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .mrcem-stat {
        padding: 0.75rem 0.5rem;
    }

    .mrcem-stat__number {
        font-size: 1.25rem;
    }

    .mrcem-stat__label {
        font-size: 0.65rem;
    }

    .mrcem-mini-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .mrcem-mini-card {
        padding: 1rem;
    }

    .mrcem-feature-card {
        padding: 1.5rem;
    }

    .mrcem-feature-list__item {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .mrcem-hero__inner {
        padding: 4rem 1rem 2rem;
    }

    .mrcem-stats-row {
        grid-template-columns: 1fr;
    }

    .mrcem-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.875rem 1rem;
    }

    .mrcem-stat__number {
        font-size: 1.375rem;
    }

    .mrcem-stat__label {
        margin-top: 0;
    }
}

/* ─────────────────────────────────────────────
   FEATURES SECTION (Legacy, kept for reference)
   ───────────────────────────────────────────── */
.mrcem-features {
    padding: 6rem 0;
    background: var(--mrcem-surface-2);
    position: relative;
    overflow: hidden;
}

.mrcem-features::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 175, 160, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.mrcem-features__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.mrcem-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .mrcem-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mrcem-features__grid {
        grid-template-columns: 1fr;
    }
}

.mrcem-feat-card {
    background: var(--mrcem-surface);
    border: 1px solid var(--mrcem-border);
    border-radius: var(--mrcem-radius-lg);
    padding: 1.75rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.mrcem-feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mrcem-teal), var(--mrcem-teal-lt));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 0 0 3px 3px;
}

.mrcem-feat-card:hover {
    border-color: rgba(14, 97, 175, 0.3);
    box-shadow: var(--mrcem-shadow);
    transform: translateY(-4px);
}

.mrcem-feat-card:hover::after {
    transform: scaleX(1);
}

.mrcem-feat-card--highlight {
    background: linear-gradient(145deg, var(--mrcem-navy) 0%, var(--mrcem-navy-lt) 100%);
    border-color: rgba(14, 89, 175, 0.2);
}

.mrcem-feat-card--highlight .mrcem-feat-card__title {
    color: var(--mrcem-white);
}

.mrcem-feat-card--highlight .mrcem-feat-card__desc {
    color: rgba(255, 255, 255, 0.55);
}

.mrcem-feat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: rgba(14, 105, 175, 0.1);
    transition: background 0.2s ease;
}

.mrcem-feat-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--mrcem-teal);
}

.mrcem-feat-card--highlight .mrcem-feat-card__icon {
    background: rgba(31, 113, 176, 0.15);
}

.mrcem-feat-card:not(.mrcem-feat-card--highlight):hover .mrcem-feat-card__icon {
    background: rgba(38, 130, 206, 0.18);
}

.mrcem-feat-card__title {
    font-family: 'Sora', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--mrcem-text);
    margin-bottom: 0.5rem;
}

.mrcem-feat-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--mrcem-text-2);
}

/* ─────────────────────────────────────────────
   HOW IT WORKS SECTION
   ───────────────────────────────────────────── */
.mrcem-how {
    padding: 8rem 0;
    background: var(--mrcem-navy);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
}

.mrcem-how::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

.mrcem-how__glow {
    position: absolute;
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(14, 103, 175, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.mrcem-how__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.mrcem-how__header .mrcem-section-heading {
    color: var(--mrcem-white);
}

.mrcem-how__header .mrcem-section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.mrcem-how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .mrcem-how__steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.mrcem-how__connector {
    display: flex;
    align-items: flex-start;
    padding-top: 2.25rem;
}

@media (max-width: 768px) {
    .mrcem-how__connector {
        display: none;
    }
}

.mrcem-how__connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(46, 124, 246, 0.4), rgba(46, 124, 246, 0.1));
    margin-top: 2.125rem; /* Centered with 68px wide number bubble */
    position: relative;
}

.mrcem-how__connector-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid rgba(46, 124, 246, 0.4);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.mrcem-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.mrcem-step__number-wrap {
    position: relative;
    margin-bottom: 1.5rem;
}

.mrcem-step__number {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--mrcem-white);
    transition: all 0.3s ease;
}

.mrcem-step:hover .mrcem-step__number {
    background: rgba(46, 124, 246, 0.2);
    border-color: rgba(46, 124, 246, 0.4);
    transform: translateY(-2px);
    color: var(--mrcem-teal-lt);
}

.mrcem-step__number-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 22px;
    border: 1px dashed rgba(14, 113, 175, 0.15);
}

.mrcem-step__icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    background: var(--mrcem-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--mrcem-navy);
}

.mrcem-step__icon svg {
    width: 13px;
    height: 13px;
    color: var(--mrcem-navy);
    transition: transform 0.3s ease;
}

.mrcem-step:hover .mrcem-step__icon svg {
    transform: scale(1.15);
}

.mrcem-step__title {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--mrcem-white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.mrcem-step__desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.925rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* How It Works - Enhanced Responsive */
@media (max-width: 1024px) {
    .mrcem-how {
        padding: 5rem 0;
    }

    .mrcem-step {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .mrcem-how {
        padding: 4rem 0;
    }

    .mrcem-how__header {
        margin-bottom: 3rem;
    }

    .mrcem-how__header .mrcem-section-heading {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }

    .mrcem-how__header .mrcem-section-sub {
        font-size: 0.9375rem;
    }

    .mrcem-step {
        padding: 0 1rem;
        align-items: center;
    }

    .mrcem-step__number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .mrcem-step__icon {
        width: 24px;
        height: 24px;
        bottom: -6px;
        right: -6px;
    }

    .mrcem-step__icon svg {
        width: 12px;
        height: 12px;
    }

    .mrcem-step__title {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    .mrcem-step__desc {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .mrcem-step__number-wrap::before {
        inset: -6px;
        border-radius: 18px;
    }
}

@media (max-width: 640px) {
    .mrcem-how {
        padding: 3.5rem 0;
    }

    .mrcem-how__header {
        margin-bottom: 2.5rem;
    }

    .mrcem-how__header .mrcem-section-heading {
        font-size: clamp(1.5rem, 4vw, 1.875rem);
    }

    .mrcem-how__header .mrcem-section-sub {
        font-size: 0.875rem;
    }

    .mrcem-step {
        padding: 0 0.75rem;
    }

    .mrcem-step__number {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
        border-radius: 16px;
    }

    .mrcem-step__icon {
        width: 22px;
        height: 22px;
    }

    .mrcem-step__icon svg {
        width: 11px;
        height: 11px;
    }

    .mrcem-step__title {
        font-size: 0.9375rem;
    }

    .mrcem-step__desc {
        font-size: 0.8125rem;
        line-height: 1.55;
    }

    .mrcem-step__number-wrap::before {
        inset: -5px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .mrcem-how {
        padding: 3rem 0;
    }

    .mrcem-step__number {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    .mrcem-step__title {
        font-size: 0.875rem;
    }

    .mrcem-step__desc {
        font-size: 0.75rem;
    }
}

/* ─────────────────────────────────────────────
   DASHBOARD PREVIEW SECTION
   ───────────────────────────────────────────── */
.mrcem-dashboard {
    padding: 6rem 0;
    background: var(--mrcem-surface-2);
    position: relative;
}

.mrcem-dashboard__header {
    text-align: center;
    margin-bottom: 3rem;
}

.mrcem-db-shell {
    background: var(--mrcem-surface);
    border: 1px solid var(--mrcem-border);
    border-radius: var(--mrcem-radius-lg);
    box-shadow: var(--mrcem-shadow-lg);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.mrcem-db-titlebar {
    background: var(--mrcem-navy);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mrcem-db-dots {
    display: flex;
    gap: 0.45rem;
}

.mrcem-db-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mrcem-db-dot--red {
    background: #FF5F57;
}

.mrcem-db-dot--amber {
    background: #FEBC2E;
}

.mrcem-db-dot--green {
    background: #28C840;
}

.mrcem-db-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
}

.mrcem-db-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--mrcem-teal-lt);
}

.mrcem-db-status__dot {
    width: 6px;
    height: 6px;
    background: var(--mrcem-teal-lt);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

.mrcem-db-body {
    padding: 1.75rem;
}

.mrcem-db-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .mrcem-db-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mrcem-db-stat {
    background: var(--mrcem-surface-2);
    border: 1px solid var(--mrcem-border);
    border-radius: var(--mrcem-radius);
    padding: 1.125rem 1rem;
    transition: all 0.2s ease;
}

.mrcem-db-stat:hover {
    border-color: var(--mrcem-border-dark);
    box-shadow: var(--mrcem-shadow-sm);
    transform: translateY(-2px);
}

.mrcem-db-stat__icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
}

.mrcem-db-stat__icon svg {
    width: 17px;
    height: 17px;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.1);
}

.icon-blue svg {
    color: #3B82F6;
}

.icon-teal {
    background: rgba(14, 175, 160, 0.1);
}

.icon-teal svg {
    color: var(--mrcem-teal);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
}

.icon-green svg {
    color: var(--mrcem-green);
}

.icon-amber {
    background: rgba(245, 158, 11, 0.1);
}

.icon-amber svg {
    color: var(--mrcem-amber);
}

.mrcem-db-stat__value {
    font-family: 'Sora', sans-serif;
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--mrcem-text);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.mrcem-db-stat__label {
    font-size: 0.75rem;
    color: var(--mrcem-text-3);
    margin-bottom: 0.4rem;
}

.mrcem-db-stat__badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--mrcem-green);
}

.mrcem-db-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .mrcem-db-charts {
        grid-template-columns: 1fr;
    }
}

.mrcem-db-chart-card {
    background: var(--mrcem-surface-2);
    border: 1px solid var(--mrcem-border);
    border-radius: var(--mrcem-radius);
    padding: 1.25rem;
}

.mrcem-db-chart-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mrcem-text);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mrcem-db-chart-title svg {
    width: 15px;
    height: 15px;
    color: var(--mrcem-teal);
}

.mrcem-db-chart-sub {
    font-size: 0.75rem;
    color: var(--mrcem-text-3);
    margin-bottom: 1rem;
}

/* Chart SVG */
.mrcem-chart-svg {
    width: 100%;
    height: 130px;
}

.mrcem-chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.mrcem-chart-labels span {
    font-size: 0.7rem;
    color: var(--mrcem-text-3);
    font-weight: 500;
}

/* Topic Bars */
.mrcem-topic-bars {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.mrcem-topic-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mrcem-topic-row__head {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
}

.mrcem-topic-row__name {
    color: var(--mrcem-text);
    font-weight: 500;
}

.mrcem-topic-row__pct {
    color: var(--mrcem-text-2);
    font-weight: 600;
}

.mrcem-topic-track {
    height: 8px;
    background: var(--mrcem-border);
    border-radius: 100px;
    overflow: hidden;
}

.mrcem-topic-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1s ease;
}

/* Dashboard Preview - Enhanced Responsive */
@media (max-width: 1024px) {
    .mrcem-dashboard {
        padding: 5rem 0;
    }

    .mrcem-db-shell {
        max-width: 900px;
    }

    .mrcem-db-stats {
        gap: 0.875rem;
    }

    .mrcem-db-stat {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .mrcem-dashboard {
        padding: 4rem 0;
    }

    .mrcem-dashboard__header {
        margin-bottom: 2.5rem;
    }

    .mrcem-dashboard__header .mrcem-section-heading {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }

    .mrcem-dashboard__header .mrcem-section-sub {
        font-size: 0.9375rem;
    }

    .mrcem-db-shell {
        border-radius: 16px;
    }

    .mrcem-db-titlebar {
        padding: 0.75rem 1rem;
    }

    .mrcem-db-body {
        padding: 1.25rem;
    }

    .mrcem-db-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .mrcem-db-stat {
        padding: 0.875rem;
        border-radius: 12px;
    }

    .mrcem-db-stat__icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.75rem;
    }

    .mrcem-db-stat__icon svg {
        width: 15px;
        height: 15px;
    }

    .mrcem-db-stat__value {
        font-size: 1.375rem;
    }

    .mrcem-db-stat__label {
        font-size: 0.6875rem;
    }

    .mrcem-db-charts {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .mrcem-db-chart-card {
        padding: 1rem;
    }

    .mrcem-db-chart-title {
        font-size: 0.8125rem;
    }

    .mrcem-db-chart-sub {
        font-size: 0.6875rem;
    }

    .mrcem-chart-svg {
        height: 110px;
    }

    .mrcem-topic-bars {
        gap: 0.75rem;
    }

    .mrcem-topic-row__head {
        font-size: 0.75rem;
    }

    .mrcem-topic-track {
        height: 7px;
    }
}

@media (max-width: 640px) {
    .mrcem-dashboard {
        padding: 3.5rem 0;
    }

    .mrcem-dashboard__header {
        margin-bottom: 2rem;
    }

    .mrcem-dashboard__header .mrcem-section-heading {
        font-size: clamp(1.5rem, 4vw, 1.875rem);
    }

    .mrcem-dashboard__header .mrcem-section-sub {
        font-size: 0.875rem;
    }

    .mrcem-db-shell {
        border-radius: 14px;
    }

    .mrcem-db-titlebar {
        padding: 0.625rem 0.875rem;
    }

    .mrcem-db-label {
        font-size: 0.7rem;
    }

    .mrcem-db-body {
        padding: 1rem;
    }

    .mrcem-db-stats {
        gap: 0.625rem;
    }

    .mrcem-db-stat {
        padding: 0.75rem;
        border-radius: 10px;
    }

    .mrcem-db-stat__icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        margin-bottom: 0.625rem;
    }

    .mrcem-db-stat__icon svg {
        width: 14px;
        height: 14px;
    }

    .mrcem-db-stat__value {
        font-size: 1.25rem;
    }

    .mrcem-db-stat__label {
        font-size: 0.625rem;
    }

    .mrcem-db-stat__badge {
        font-size: 0.625rem;
    }

    .mrcem-db-chart-card {
        padding: 0.875rem;
    }

    .mrcem-db-chart-title {
        font-size: 0.75rem;
    }

    .mrcem-db-chart-sub {
        font-size: 0.625rem;
        margin-bottom: 0.75rem;
    }

    .mrcem-chart-svg {
        height: 100px;
    }

    .mrcem-chart-labels span {
        font-size: 0.625rem;
    }

    .mrcem-topic-bars {
        gap: 0.625rem;
    }

    .mrcem-topic-row {
        gap: 0.25rem;
    }

    .mrcem-topic-row__head {
        font-size: 0.6875rem;
    }

    .mrcem-topic-row__name {
        font-size: 0.6875rem;
    }

    .mrcem-topic-row__pct {
        font-size: 0.6875rem;
    }

    .mrcem-topic-track {
        height: 6px;
    }
}

@media (max-width: 480px) {
    .mrcem-dashboard {
        padding: 3rem 0;
    }

    .mrcem-db-titlebar {
        padding: 0.5rem 0.75rem;
    }

    .mrcem-db-body {
        padding: 0.875rem;
    }

    .mrcem-db-stat {
        padding: 0.625rem;
    }

    .mrcem-db-stat__value {
        font-size: 1.125rem;
    }

    .mrcem-db-chart-card {
        padding: 0.75rem;
    }
}

/* ─────────────────────────────────────────────
   WHY CHOOSE US SECTION
   ───────────────────────────────────────────── */
.mrcem-why {
    padding: 6rem 0;
    background: var(--mrcem-navy);
    position: relative;
    overflow: hidden;
}

.mrcem-why::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 175, 160, 0.3), transparent);
}

.mrcem-why__bg-orb {
    position: absolute;
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(20, 71, 166, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -200px;
    pointer-events: none;
}

.mrcem-why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .mrcem-why__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.mrcem-why__header .mrcem-section-heading {
    color: var(--mrcem-white);
    text-align: left;
}

.mrcem-why__header .mrcem-section-sub {
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    margin: 0 0 2rem;
}

.mrcem-why__reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .mrcem-why__reasons {
        grid-template-columns: 1fr;
    }
}

.mrcem-reason {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
}

.mrcem-reason:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(14, 175, 160, 0.2);
}

.mrcem-reason__icon {
    width: 34px;
    height: 34px;
    background: rgba(14, 175, 160, 0.12);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mrcem-reason__icon svg {
    width: 16px;
    height: 16px;
    color: var(--mrcem-teal-lt);
}

.mrcem-reason__title {
    font-family: 'Sora', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.2rem;
}

.mrcem-reason__desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.mrcem-why__proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.mrcem-why__avatars {
    display: flex;
    flex-direction: row;
}

.mrcem-why__avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--mrcem-navy);
    margin-left: -9px;
    object-fit: cover;
}

.mrcem-why__avatars img:first-child {
    margin-left: 0;
}

.mrcem-why__proof-text {
    font-size: 0.8375rem;
}

.mrcem-why__proof-text strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.mrcem-why__proof-text span {
    color: rgba(255, 255, 255, 0.4);
}

/* Why Section Visual */
.mrcem-why__visual {
    position: relative;
}

.mrcem-why__img-wrap {
    border-radius: var(--mrcem-radius-lg);
    overflow: hidden;
    position: relative;
}

.mrcem-why__img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
}

.mrcem-why__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 30, 61, 0.6) 100%);
}

.mrcem-why__img-border {
    position: absolute;
    inset: 0;
    border-radius: var(--mrcem-radius-lg);
    border: 1px solid rgba(14, 175, 160, 0.2);
    pointer-events: none;
}

.mrcem-why__badge {
    position: absolute;
    bottom: -1.25rem;
    left: 1.5rem;
    background: var(--mrcem-surface);
    border: 1px solid var(--mrcem-border);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: var(--mrcem-shadow);
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.mrcem-why__badge-icon {
    width: 42px;
    height: 42px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mrcem-why__badge-icon svg {
    width: 20px;
    height: 20px;
    color: var(--mrcem-green);
}

.mrcem-why__badge-value {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mrcem-text);
    line-height: 1;
}

.mrcem-why__badge-label {
    font-size: 0.75rem;
    color: var(--mrcem-text-3);
}

.mrcem-why__badge-2 {
    position: absolute;
    top: 1.25rem;
    right: -1rem;
    background: var(--mrcem-navy-mid);
    border: 1px solid rgba(14, 175, 160, 0.25);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mrcem-why__badge-2 svg {
    width: 16px;
    height: 16px;
    color: var(--mrcem-teal-lt);
}

.mrcem-why__badge-2 span {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--mrcem-white);
}

/* ─────────────────────────────────────────────
   TESTIMONIALS SECTION
   ───────────────────────────────────────────── */
.mrcem-testimonials {
    padding: 6rem 0;
    background: var(--mrcem-surface-2);
}

.mrcem-testimonials__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.mrcem-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--mrcem-surface);
    border: 1px solid var(--mrcem-border);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    margin-top: 1rem;
    box-shadow: var(--mrcem-shadow-sm);
}

.mrcem-stars {
    display: flex;
    gap: 2px;
}

.mrcem-stars svg {
    width: 15px;
    height: 15px;
    fill: var(--mrcem-gold);
    color: var(--mrcem-gold);
}

.mrcem-rating-text {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mrcem-text);
}

.mrcem-rating-sub {
    font-size: 0.8125rem;
    color: var(--mrcem-text-3);
}

.mrcem-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .mrcem-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mrcem-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

.mrcem-tcard {
    background: var(--mrcem-surface);
    border: 1px solid var(--mrcem-border);
    border-radius: var(--mrcem-radius-lg);
    padding: 1.75rem;
    position: relative;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.mrcem-tcard:hover {
    border-color: rgba(14, 175, 160, 0.3);
    box-shadow: var(--mrcem-shadow);
    transform: translateY(-4px);
}

.mrcem-tcard--featured {
    background: var(--mrcem-navy);
    border-color: rgba(14, 175, 160, 0.2);
}

.mrcem-tcard--featured .mrcem-tcard__quote {
    color: rgba(255, 255, 255, 0.7);
}

.mrcem-tcard--featured .mrcem-tcard__name {
    color: rgba(255, 255, 255, 0.9);
}

.mrcem-tcard--featured .mrcem-tcard__role {
    color: rgba(255, 255, 255, 0.4);
}

.mrcem-tcard--featured .mrcem-tcard__divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.mrcem-tcard__quote-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.mrcem-tcard__quote-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(14, 175, 160, 0.15);
}

.mrcem-tcard--featured .mrcem-tcard__quote-icon svg {
    color: rgba(14, 175, 160, 0.25);
}

.mrcem-tcard__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.mrcem-tcard__stars svg {
    width: 14px;
    height: 14px;
    fill: var(--mrcem-gold);
    color: var(--mrcem-gold);
}

.mrcem-tcard__quote {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--mrcem-text);
    flex: 1;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.mrcem-tcard__divider {
    border: none;
    border-top: 1px solid var(--mrcem-border);
    margin-bottom: 1.125rem;
}

.mrcem-tcard__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mrcem-tcard__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--mrcem-border);
}

.mrcem-tcard__avatar-fallback {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(14, 175, 160, 0.12);
    border: 2px solid rgba(14, 175, 160, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--mrcem-teal);
}

.mrcem-tcard__name {
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--mrcem-text);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mrcem-tcard__name svg {
    width: 14px;
    height: 14px;
    color: var(--mrcem-teal);
}

.mrcem-tcard__role {
    font-size: 0.775rem;
    color: var(--mrcem-text-3);
}

.mrcem-testimonials__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--mrcem-border);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mrcem-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--mrcem-text-2);
    font-weight: 500;
}

.mrcem-trust-item svg {
    width: 18px;
    height: 18px;
}

.mrcem-trust-item--green svg {
    color: var(--mrcem-green);
}

.mrcem-trust-item--amber svg {
    color: var(--mrcem-amber);
}

.mrcem-trust-item--teal svg {
    color: var(--mrcem-teal);
}

.mrcem-trust-item--red svg {
    color: #F43F5E;
}

/* ─────────────────────────────────────────────
   CTA BANNER SECTION
   ───────────────────────────────────────────── */
.mrcem-cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--mrcem-navy) 0%, var(--mrcem-navy-lt) 50%, var(--mrcem-navy) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mrcem-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(14, 175, 160, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(20, 71, 166, 0.2) 0%, transparent 60%);
}

.mrcem-cta-banner__inner {
    position: relative;
    z-index: 1;
}

.mrcem-cta-banner__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(14, 175, 160, 0.15);
    border: 1px solid rgba(14, 175, 160, 0.3);
    color: var(--mrcem-teal-lt);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.mrcem-cta-banner__heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--mrcem-white);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.mrcem-cta-banner__heading .teal {
    background: linear-gradient(95deg, var(--mrcem-teal-lt), #5DECDF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mrcem-cta-banner__sub {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.mrcem-cta-banner__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.mrcem-cta-banner__note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

.mrcem-cta-banner__note svg {
    display: inline;
    width: 13px;
    height: 13px;
    vertical-align: middle;
    margin-right: 0.25rem;
    color: var(--mrcem-teal);
}

/* CTA Banner - Enhanced Responsive */
@media (max-width: 1024px) {
    .mrcem-cta-banner {
        padding: 4.5rem 0;
    }

    .mrcem-cta-banner__heading {
        font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .mrcem-cta-banner {
        padding: 4rem 0;
    }

    .mrcem-cta-banner__tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        margin-bottom: 1.25rem;
    }

    .mrcem-cta-banner__heading {
        font-size: clamp(1.625rem, 4vw, 2.125rem);
        margin-bottom: 0.875rem;
    }

    .mrcem-cta-banner__sub {
        font-size: 0.9375rem;
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .mrcem-cta-banner__btns {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .mrcem-cta-banner__btns .mrcem-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .mrcem-cta-banner__note {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .mrcem-cta-banner {
        padding: 3.5rem 0;
    }

    .mrcem-cta-banner__tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.65rem;
    }

    .mrcem-cta-banner__heading {
        font-size: clamp(1.375rem, 4vw, 1.75rem);
    }

    .mrcem-cta-banner__sub {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .mrcem-cta-banner__btns {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .mrcem-cta-banner__btns .mrcem-btn {
        max-width: 100%;
        height: 48px;
        font-size: 0.875rem;
    }

    .mrcem-cta-banner__note {
        font-size: 0.6875rem;
    }

    .mrcem-cta-banner__note svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .mrcem-cta-banner {
        padding: 3rem 0;
    }

    .mrcem-cta-banner__heading {
        font-size: 1.375rem;
    }

    .mrcem-cta-banner__sub {
        font-size: 0.8125rem;
    }
}
/* ══════════════════════════════════════════════
   REVIEWS SECTION
   ══════════════════════════════════════════════ */
.mrcem-reviews {
    /* Vertical rhythm matches .mrcem-why-choose */
    padding: 5.3rem 2rem 5rem;
    background: #0B1E3D;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', system-ui, sans-serif;
}

/* Hero-matching radial gradient atmosphere */
.mrcem-reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 75% 30%, rgba(20,71,166,0.45) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(46,124,246,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(46,124,246,0.12) 0%, transparent 55%);
    pointer-events: none;
}

/* Dot grid — same as hero */
.mrcem-reviews::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
}

/* Floating orbs — same as hero */
.mrcem-reviews__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: rev-orb 14s ease-in-out infinite alternate;
}
.mrcem-reviews__orb--1 {
    width: 500px; height: 500px;
    background: rgba(20,71,166,0.28);
    top: -120px; right: -80px;
}
.mrcem-reviews__orb--2 {
    width: 300px; height: 300px;
    background: rgba(46,124,246,0.15);
    bottom: -60px; left: 10%;
    animation-delay: -7s;
}
@keyframes rev-orb {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(20px, 15px) scale(1.06); }
}

.mrcem-reviews__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* ── Header — aligned with .mrcem-why-choose__header ── */
.mrcem-reviews__header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mrcem-reviews__header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 48rem;
}

/* Title: same scale as .mrcem-why-choose__title, inverted for dark bg */
.mrcem-reviews__title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -0.015em;
    word-spacing: 0.08em;
    margin: 0;
}

.mrcem-reviews__title .accent {
    background: linear-gradient(95deg, var(--mrcem-teal-ltt) 0%, #7eb3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Intro: same rhythm as .mrcem-why-choose__intro */
.mrcem-reviews__sub {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
    max-width: 42rem;
    margin: 0.75rem auto 0;
    text-align: center;
    letter-spacing: 0.01em;
}

/* Rating — inline pill below subtitle, centred */
.mrcem-reviews__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    margin-top: 1.25rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 0.45rem 1.25rem;
}
.mrcem-reviews__stars {
    display: flex;
    gap: 2px;
}
.mrcem-reviews__stars svg {
    width: 15px; height: 15px;
    fill: #F5A623; color: #F5A623;
}
.mrcem-reviews__rating-value {
    font-family: 'Sora', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}
.mrcem-reviews__rating-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ── Carousel viewport ── */
.mrcem-reviews__carousel {
    position: relative;
}

.mrcem-reviews__viewport {
    overflow: hidden;
    border-radius: 20px;
}

.mrcem-reviews__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Review card — glassmorphism on dark bg ── */
.mrcem-review-card {
    flex: 0 0 calc(33.333% - 14px);
    margin-right: 21px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: border-color 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
}
.mrcem-review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90,155,255,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mrcem-review-card:hover {
    border-color: rgba(90,155,255,0.25);
    background: rgba(255,255,255,0.09);
}
.mrcem-review-card:hover::before { opacity: 1; }

/* Responsive card sizing */
@media (max-width: 1024px) {
    .mrcem-review-card {
        flex: 0 0 calc(50% - 10.5px);
    }
}
@media (max-width: 640px) {
    .mrcem-review-card {
        flex: 0 0 100%;
        margin-right: 21px;
    }
}

/* Quote icon */
.mrcem-review-card__quote-icon {
    position: absolute;
    top: 1.375rem; right: 1.375rem;
    width: 34px; height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border-radius: 9px;
}
.mrcem-review-card__quote-icon svg {
    width: 17px; height: 17px;
    color: rgba(90,155,255,0.45);
    fill: rgba(90,155,255,0.45);
}

/* Stars */
.mrcem-review-card__stars {
    display: flex;
    gap: 2px;
}
.mrcem-review-card__stars svg {
    width: 14px; height: 14px;
    fill: #F5A623; color: #F5A623;
}

/* Quote text */
.mrcem-review-card__quote {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.68);
    flex: 1;
    font-style: italic;
}

/* Divider */
.mrcem-review-card__divider {
    height: 1px;
    background: rgba(255,255,255,0.10);
}

/* Author — clean 2-row layout, no badge in this row */
.mrcem-review-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mrcem-review-card__initials {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0B1E3D, #1A3260);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
}

.mrcem-review-card__initials[data-color="blue"]  { background: linear-gradient(135deg, #1558C0, #2E7CF6); }
.mrcem-review-card__initials[data-color="slate"] { background: linear-gradient(135deg, #334155, #475569); }
.mrcem-review-card__initials[data-color="navy"]  { background: linear-gradient(135deg, #0B1E3D, #1A3260); }
.mrcem-review-card__initials[data-color="deep"]  { background: linear-gradient(135deg, #112444, #1A3260); }
.mrcem-review-card__initials[data-color="mid"]   { background: linear-gradient(135deg, #1A3260, #2E7CF6); }

.mrcem-review-card__meta { flex: 1; min-width: 0; }

.mrcem-review-card__name {
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mrcem-review-card__name svg {
    width: 13px; height: 13px;
    color: #5A9BFF;
    flex-shrink: 0;
}
.mrcem-review-card__role {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mrcem-review-card__hospital {
    font-size: 0.7rem;
    color: #5A9BFF;
    font-weight: 500;
    margin-top: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Exam passed badge — sits above divider, standalone */
.mrcem-review-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.65rem;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 100px;
    font-size: 0.67rem;
    font-weight: 600;
    color: #34D399;
    white-space: nowrap;
    width: fit-content;
}

/* ── Navigation ── */
.mrcem-reviews__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
}

/* Dots */
.mrcem-reviews__dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.mrcem-reviews__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}
.mrcem-reviews__dot.active {
    width: 24px;
    border-radius: 100px;
    background: #2E7CF6;
}

/* Arrows */
.mrcem-reviews__arrows {
    display: flex;
    gap: 0.625rem;
}

.mrcem-reviews__arrow {
    width: 46px; height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255,255,255,0.7);
}
.mrcem-reviews__arrow:hover:not(:disabled) {
    border-color: rgba(90,155,255,0.45);
    color: #5A9BFF;
    background: rgba(46,124,246,0.12);
    transform: translateY(-1px);
}
.mrcem-reviews__arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    transform: none;
}
.mrcem-reviews__arrow svg { width: 18px; height: 18px; }

/* Progress label */
.mrcem-reviews__progress {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
}
.mrcem-reviews__progress span { color: rgba(255,255,255,0.75); }

/* ── Responsive (horizontal padding on section, like Why Choose) ── */
@media (max-width: 1024px) {
    .mrcem-reviews {
        padding: 5rem 1.5rem;
    }

    .mrcem-reviews__title {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
    }

    .mrcem-review-card {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .mrcem-reviews {
        padding: 4rem 1.25rem;
    }

    .mrcem-reviews__inner {
        padding: 0;
    }

    .mrcem-reviews__header {
        margin-bottom: 2.5rem;
    }

    .mrcem-reviews__title {
        font-size: clamp(1.5rem, 4vw, 1.875rem);
    }

    .mrcem-reviews__sub {
        font-size: 0.9375rem;
    }

    .mrcem-reviews__rating {
        gap: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .mrcem-reviews__stars svg {
        width: 13px;
        height: 13px;
    }

    .mrcem-reviews__rating-value {
        font-size: 0.875rem;
    }

    .mrcem-reviews__rating-label {
        font-size: 0.75rem;
    }

    .mrcem-review-card {
        padding: 1.5rem;
    }

    .mrcem-review-card__quote {
        font-size: 0.875rem;
        line-height: 1.65;
    }

    .mrcem-review-card__quote-icon {
        width: 30px;
        height: 30px;
        top: 1.25rem;
        right: 1.25rem;
    }

    .mrcem-review-card__quote-icon svg {
        width: 15px;
        height: 15px;
    }

    .mrcem-review-card__initials {
        width: 36px;
        height: 36px;
        font-size: 0.7rem;
    }

    .mrcem-review-card__name {
        font-size: 0.8125rem;
    }

    .mrcem-review-card__role {
        font-size: 0.7rem;
    }

    .mrcem-review-card__hospital {
        font-size: 0.65rem;
    }

    .mrcem-reviews__nav {
        margin-top: 2rem;
    }

    .mrcem-reviews__arrow {
        width: 42px;
        height: 42px;
    }

    .mrcem-reviews__arrow svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 640px) {
    .mrcem-reviews {
        padding: 3.5rem 1rem;
    }

    .mrcem-reviews__header {
        margin-bottom: 2rem;
    }

    .mrcem-reviews__title {
        font-size: clamp(1.375rem, 4vw, 1.625rem);
    }

    .mrcem-reviews__sub {
        font-size: 0.875rem;
    }

    .mrcem-reviews__rating {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.35rem 0.875rem;
    }

    .mrcem-reviews__stars svg {
        width: 12px;
        height: 12px;
    }

    .mrcem-reviews__rating-value {
        font-size: 0.8125rem;
    }

    .mrcem-reviews__rating-label {
        font-size: 0.7rem;
    }

    .mrcem-review-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .mrcem-review-card__quote {
        font-size: 0.8125rem;
        line-height: 1.6;
    }

    .mrcem-review-card__quote-icon {
        width: 28px;
        height: 28px;
    }

    .mrcem-review-card__quote-icon svg {
        width: 14px;
        height: 14px;
    }

    .mrcem-review-card__stars svg {
        width: 13px;
        height: 13px;
    }

    .mrcem-review-card__badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.55rem;
    }

    .mrcem-review-card__divider {
        margin: 0.75rem 0;
    }

    .mrcem-review-card__author {
        gap: 0.625rem;
    }

    .mrcem-review-card__initials {
        width: 34px;
        height: 34px;
        font-size: 0.65rem;
    }

    .mrcem-review-card__name {
        font-size: 0.75rem;
        gap: 0.25rem;
    }

    .mrcem-review-card__name svg {
        width: 12px;
        height: 12px;
    }

    .mrcem-review-card__role {
        font-size: 0.65rem;
    }

    .mrcem-review-card__hospital {
        font-size: 0.6rem;
    }

    .mrcem-reviews__nav {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .mrcem-reviews__dots {
        order: 2;
        justify-content: center;
        width: 100%;
    }

    .mrcem-reviews__arrows {
        order: 1;
        justify-content: center;
        width: 100%;
    }

    .mrcem-reviews__progress {
        order: 0;
        text-align: center;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .mrcem-reviews__arrow {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .mrcem-reviews__arrow svg {
        width: 15px;
        height: 15px;
    }

    .mrcem-reviews__dot {
        width: 7px;
        height: 7px;
    }

    .mrcem-reviews__dot.active {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .mrcem-reviews {
        padding: 3rem 0.75rem;
    }

    .mrcem-reviews__title {
        font-size: 1.375rem;
    }

    .mrcem-reviews__sub {
        font-size: 0.8125rem;
    }

    .mrcem-review-card {
        padding: 1.125rem;
    }

    .mrcem-review-card__quote {
        font-size: 0.75rem;
    }

    .mrcem-reviews__nav {
        gap: 0.75rem;
    }

    .mrcem-reviews__arrow {
        width: 38px;
        height: 38px;
    }
}

/* ══════════════════════════════════════════════
   FAQ SECTION — simple 2-column grid (aligned w/ Why Choose)
   ══════════════════════════════════════════════ */
.mrcem-faq {
    padding: 5.3rem 0 5rem;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', system-ui, sans-serif;
}

.mrcem-faq::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(46,124,246,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.mrcem-faq::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(11,30,61,0.04) 0%, transparent 65%);
    pointer-events: none;
}

.mrcem-faq__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header — same rhythm as .mrcem-why-choose__header */
.mrcem-faq__header {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mrcem-faq__title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.15;
    letter-spacing: -0.015em;
    word-spacing: 0.08em;
    margin: 0;
}

.mrcem-faq__sub {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    font-weight: 400;
    color: #64748B;
    line-height: 1.6;
    max-width: 42rem;
    margin: 0.75rem auto 0;
    text-align: center;
    letter-spacing: 0.01em;
}

.mrcem-faq__sub a {
    color: #2E7CF6;
    font-weight: 600;
    text-decoration: none;
}
.mrcem-faq__sub a:hover { text-decoration: underline; }

/* Two-column accordion grid */
.mrcem-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
}

@media (max-width: 900px) {
    .mrcem-faq__grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ card */
.mrcem-faq__item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.mrcem-faq__item:hover {
    border-color: rgba(46,124,246,0.22);
}
.mrcem-faq__item.open {
    border-color: rgba(46,124,246,0.28);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

/* Question row: lead icon + label + chevron */
.mrcem-faq__q {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.125rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.4;
    transition: color 0.18s ease;
}

.mrcem-faq__q-lead {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(46, 124, 246, 0.12);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.mrcem-faq__q-lead svg {
    width: 16px;
    height: 16px;
}
.mrcem-faq__item.open .mrcem-faq__q-lead {
    background: rgba(46, 124, 246, 0.18);
    color: #1D4ED8;
}

.mrcem-faq__q-label {
    flex: 1;
    min-width: 0;
}

.mrcem-faq__chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: transform 0.28s ease, color 0.2s ease;
}
.mrcem-faq__chevron svg {
    width: 18px;
    height: 18px;
}
.mrcem-faq__item.open .mrcem-faq__chevron {
    transform: rotate(180deg);
    color: #2E7CF6;
}

/* Answer */
.mrcem-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mrcem-faq__item.open .mrcem-faq__a {
    max-height: 2000px;
}

.mrcem-faq__a-inner {
    padding: 0 1.125rem 1.125rem;
    padding-left: calc(1.125rem + 36px + 0.75rem);
    font-size: 0.9rem;
    line-height: 1.75;
    color: #475569;
    border-top: 1px solid #EEF2F7;
    padding-top: 0.875rem;
}
.mrcem-faq__a-inner a {
    color: #2E7CF6;
    font-weight: 500;
    text-decoration: none;
}
.mrcem-faq__a-inner a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .mrcem-faq__a-inner {
        padding-left: 1.125rem;
    }
}

/* Support CTA — light card (reference layout) */
.mrcem-faq__cta {
    margin-top: 3rem;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mrcem-faq__cta-title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.35rem;
}

.mrcem-faq__cta-text p {
    font-size: 0.9375rem;
    color: #64748B;
    margin: 0;
    line-height: 1.55;
    max-width: 36rem;
}

.mrcem-faq__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 46px;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #2E7CF6, #5A9BFF);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(46,124,246,0.3);
}
.mrcem-faq__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(46,124,246,0.4);
}
.mrcem-faq__cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 1024px) {
    .mrcem-faq {
        padding: 5rem 0;
    }

    .mrcem-faq__title {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
    }

    .mrcem-faq__grid {
        gap: 0.875rem;
    }

    .mrcem-faq__q {
        font-size: 0.9rem;
        padding: 1rem 1.125rem;
    }
}

@media (max-width: 768px) {
    .mrcem-faq {
        padding: 4.5rem 0;
    }

    .mrcem-faq__header {
        margin-bottom: 2.75rem;
    }

    .mrcem-faq__title {
        font-size: clamp(1.5rem, 4vw, 1.875rem);
    }

    .mrcem-faq__sub {
        font-size: 0.9375rem;
    }

    .mrcem-faq__grid {
        gap: 0.75rem;
    }

    .mrcem-faq__item {
        border-radius: 12px;
    }

    .mrcem-faq__q {
        font-size: 0.875rem;
        padding: 0.9375rem 1.0625rem;
        gap: 0.625rem;
    }

    .mrcem-faq__q-lead {
        width: 32px;
        height: 32px;
    }

    .mrcem-faq__q-lead svg {
        width: 14px;
        height: 14px;
    }

    .mrcem-faq__chevron svg {
        width: 16px;
        height: 16px;
    }

    .mrcem-faq__a-inner {
        font-size: 0.875rem;
        padding: 0 1rem 1rem;
        padding-left: calc(1rem + 32px + 0.625rem);
        padding-top: 0.75rem;
        line-height: 1.65;
    }

    .mrcem-faq__cta {
        margin-top: 2.5rem;
        padding: 1.75rem;
        gap: 1.25rem;
    }

    .mrcem-faq__cta-title {
        font-size: 1.125rem;
    }

    .mrcem-faq__cta-text p {
        font-size: 0.875rem;
    }

    .mrcem-faq__cta-btn {
        min-height: 44px;
        padding: 0 1.25rem;
        font-size: 0.875rem;
    }

    .mrcem-faq__cta-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 640px) {
    .mrcem-faq {
        padding: 4rem 0;
    }

    .mrcem-faq__inner {
        padding: 0 1.25rem;
    }

    .mrcem-faq__header {
        margin-bottom: 2.25rem;
    }

    .mrcem-faq__title {
        font-size: clamp(1.375rem, 4vw, 1.625rem);
    }

    .mrcem-faq__sub {
        font-size: 0.875rem;
    }

    .mrcem-faq__grid {
        gap: 0.625rem;
    }

    .mrcem-faq__q {
        font-size: 0.8125rem;
        padding: 0.875rem 1rem;
        gap: 0.5rem;
    }

    .mrcem-faq__q-lead {
        width: 30px;
        height: 30px;
    }

    .mrcem-faq__q-lead svg {
        width: 13px;
        height: 13px;
    }

    .mrcem-faq__chevron svg {
        width: 15px;
        height: 15px;
    }

    .mrcem-faq__a-inner {
        padding: 0 1rem 1rem;
        padding-left: 1rem;
        padding-top: 0.6875rem;
        font-size: 0.8125rem;
        line-height: 1.6;
    }

    .mrcem-faq__cta {
        margin-top: 2rem;
        padding: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        text-align: center;
    }

    .mrcem-faq__cta-title {
        font-size: 1.0625rem;
    }

    .mrcem-faq__cta-text p {
        font-size: 0.8125rem;
    }

    .mrcem-faq__cta-btn {
        min-height: 44px;
        padding: 0 1.25rem;
        font-size: 0.8125rem;
        justify-content: center;
    }

    .mrcem-faq__cta-btn svg {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .mrcem-faq {
        padding: 3.5rem 0;
    }

    .mrcem-faq__inner {
        padding: 0 1rem;
    }

    .mrcem-faq__header {
        margin-bottom: 1.75rem;
    }

    .mrcem-faq__title {
        font-size: 1.375rem;
    }

    .mrcem-faq__sub {
        font-size: 0.8125rem;
    }

    .mrcem-faq__q {
        font-size: 0.75rem;
        padding: 0.8125rem 0.875rem;
    }

    .mrcem-faq__q-lead {
        width: 28px;
        height: 28px;
    }

    .mrcem-faq__q-lead svg {
        width: 12px;
        height: 12px;
    }

    .mrcem-faq__chevron svg {
        width: 14px;
        height: 14px;
    }

    .mrcem-faq__a-inner {
        padding: 0 0.875rem 0.875rem;
        padding-left: 0.875rem;
        padding-top: 0.625rem;
        font-size: 0.75rem;
        line-height: 1.55;
    }

    .mrcem-faq__cta {
        padding: 1.25rem;
    }

    .mrcem-faq__cta-title {
        font-size: 1rem;
    }

    .mrcem-faq__cta-text p {
        font-size: 0.75rem;
    }

    .mrcem-faq__cta-btn {
        min-height: 42px;
        font-size: 0.75rem;
    }
}



/* ══════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════ */
.mrcem-why-choose {
    padding: 5.3rem 2rem 5rem;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', system-ui, sans-serif;
}

.mrcem-why-choose__header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mrcem-why-choose__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mrcem-why-choose__content {
    max-width: 100%;
}

.mrcem-why-choose__title {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.15;
    letter-spacing: -0.015em;
    word-spacing: 0.08em;
    margin: 0;
}

.mrcem-why-choose__intro {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    font-weight: 400;
    color: #64748B;
    line-height: 1.6;
    max-width: 42rem;
    margin: 0.75rem auto 0;
    text-align: center;
    letter-spacing: 0.01em;
}

.mrcem-why-choose__sub {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

.mrcem-why-choose__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mrcem-why-choose__list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.mrcem-why-choose__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(46,124,246,0.1);
    color: #2E7CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.mrcem-why-choose__icon svg {
    width: 16px;
    height: 16px;
}

.mrcem-why-choose__list strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    color: #0F172A;
    margin-bottom: 0.35rem;
}

.mrcem-why-choose__list p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ── Visual Side ── */
.mrcem-why-choose__visual {
    position: relative;
}

.mrcem-why-choose__img-wrapper {
    position: relative;
    border-radius: 24px;
    z-index: 1;
}

.mrcem-why-choose__img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 24px 48px -12px rgba(11,30,61,0.15);
    position: relative;
    z-index: 2;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.mrcem-why-choose__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(46,124,246,0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Floating badge — clean stat card (mint check + metric + label) */
.mrcem-badge-float {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: #FFFFFF;
    padding: 1rem 1.25rem;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(11, 30, 61, 0.08);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    z-index: 3;
    animation: float-y 6s ease-in-out infinite;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mrcem-badge-float__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--mrcem-badge-float-icon-bg, #ecfdf5);
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mrcem-badge-float__icon svg {
    width: 22px;
    height: 22px;
}

.mrcem-badge-float__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.2;
    min-width: 0;
}

.mrcem-badge-float__value {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0F172A;
}

.mrcem-badge-float__label {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748B;
    letter-spacing: 0.01em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .mrcem-why-choose__grid {
        gap: 3rem;
    }
    .mrcem-why-choose__list {
        gap: 1.25rem;
    }
    .mrcem-why-choose__title {
        font-size: 2.25rem;
    }
}

@media (max-width: 900px) {
    .mrcem-why-choose__header {
        margin-bottom: 3rem;
    }
    .mrcem-why-choose__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .mrcem-why-choose__content {
        max-width: 100%;
    }
    .mrcem-why-choose__visual {
        padding-right: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    .mrcem-badge-float {
        left: -1rem;
        bottom: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .mrcem-why-choose {
        padding: 5rem 0;
    }

    .mrcem-why-choose__header {
        margin-bottom: 2.5rem;
    }

    .mrcem-why-choose__title {
        font-size: clamp(1.75rem, 4vw, 2rem);
    }

    .mrcem-why-choose__intro {
        font-size: 1rem;
    }

    .mrcem-why-choose__grid {
        gap: 3rem;
    }

    .mrcem-why-choose__visual {
        max-width: 400px;
    }

    .mrcem-why-choose__img-wrapper img {
        height: auto;
        aspect-ratio: auto;
    }

    .mrcem-why-choose__list li {
        gap: 1rem;
    }

    .mrcem-why-choose__icon {
        width: 28px;
        height: 28px;
        margin-top: 2px;
    }

    .mrcem-why-choose__icon svg {
        width: 14px;
        height: 14px;
    }

    .mrcem-why-choose__list strong {
        font-size: 1rem;
    }

    .mrcem-why-choose__list p {
        font-size: 0.875rem;
    }

    .mrcem-badge-float {
        left: 50%;
        bottom: -1.5rem;
        transform: translateX(-50%);
        width: calc(100% - 2rem);
        max-width: 340px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .mrcem-why-choose {
        padding: 4rem 0;
    }

    .mrcem-why-choose__inner {
        padding: 0 1.25rem;
    }

    .mrcem-why-choose__header {
        margin-bottom: 2rem;
    }

    .mrcem-why-choose__title {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
    }

    .mrcem-why-choose__intro {
        font-size: 0.9375rem;
    }

    .mrcem-why-choose__grid {
        gap: 2.5rem;
    }

    .mrcem-why-choose__visual {
        max-width: 100%;
    }

    .mrcem-why-choose__img-wrapper {
        border-radius: 16px;
    }

    .mrcem-why-choose__img-wrapper img {
        border-radius: 16px;
    }

    .mrcem-badge-float {
        display: none;
    }

    .mrcem-why-choose__list {
        gap: 1.25rem;
    }

    .mrcem-why-choose__list li {
        gap: 0.875rem;
    }

    .mrcem-why-choose__icon {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }

    .mrcem-why-choose__icon svg {
        width: 13px;
        height: 13px;
    }

    .mrcem-why-choose__list strong {
        font-size: 0.9375rem;
    }

    .mrcem-why-choose__list p {
        font-size: 0.8125rem;
        line-height: 1.55;
    }
}

@media (max-width: 480px) {
    .mrcem-why-choose__inner {
        padding: 0 1rem;
    }

    .mrcem-why-choose__list {
        gap: 1rem;
    }

    .mrcem-why-choose__list li {
        gap: 0.75rem;
    }

    .mrcem-why-choose__icon {
        width: 24px;
        height: 24px;
    }

    .mrcem-why-choose__icon svg {
        width: 12px;
        height: 12px;
    }
}

/* ══════════════════════════════════════════════
   ADDITIONAL RESPONSIVE UTILITIES
   ══════════════════════════════════════════════ */

/* Ensure all sections have proper horizontal padding on mobile */
@media (max-width: 768px) {
    .mrcem-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 640px) {
    .mrcem-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Ensure images are responsive */
.mrcem-section img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
.mrcem-section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Ensure text doesn't overflow */
.mrcem-section {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    .mrcem-btn {
        min-height: 48px;
    }

    .mrcem-btn svg {
        min-width: 18px;
        min-height: 18px;
    }
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Prevent zoom on input focus on iOS */
@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* Improve readability on small screens */
@media (max-width: 480px) {
    p {
        line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
    }
}

/* Ensure proper spacing for stacked elements on mobile */
@media (max-width: 640px) {
    .mrcem-section > * + * {
        margin-top: 0;
    }
}

/* Optimize animations for reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .mrcem-reveal,
    .mrcem-reveal-delay-1,
    .mrcem-reveal-delay-2,
    .mrcem-reveal-delay-3,
    .mrcem-reveal-delay-4,
    .mrcem-reveal-delay-5,
    .mrcem-reveal-delay-6,
    .mrcem-orb,
    .mrcem-badge-float,
    .mrcem-step__number,
    .mrcem-review-card,
    .mrcem-pricing-card {
        transition: none;
        animation: none;
    }

    .mrcem-reveal {
        opacity: 1;
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mrcem-btn--primary,
    .mrcem-btn--navy {
        border: 2px solid currentColor;
    }

    .mrcem-card,
    .mrcem-feature-card,
    .mrcem-review-card {
        border-width: 2px;
    }
}

/* Print styles */
@media print {
    .mrcem-hero,
    .mrcem-reviews,
    .mrcem-how,
    .mrcem-cta-banner {
        background: white !important;
        color: black !important;
    }

    .mrcem-btn,
    .mrcem-orb,
    .mrcem-hero__bg {
        display: none !important;
    }
}

