/* =============================================
   MENO MIND — SUB-BRAND STYLES
   Scoped under .menomind so it does not bleed
   into the rest of the site.
   ============================================= */

.menomind {
    /* ---- Sub-brand tokens ---- */
    --mm-maroon: #5a1f3d;
    --mm-maroon-dark: #461630;
    --mm-maroon-soft: rgba(90, 31, 61, 0.85);
    --mm-pink: #f3d9e0;
    --mm-pink-light: #fbeef2;
    --mm-pink-icon-bg: #fbe5ec;
    --mm-pink-icon-bg-strong: #f6c8d5;
    --mm-pink-bright: #D66A9C;
    --mm-pink-bright-soft: #e8669e;
    --mm-pink-dark: #b02a6a;
    --mm-deep-purple: #4E0948;
    --mm-font-montserrat: 'Montserrat', var(--font-sans);
    --mm-font-script: 'Dancing Script', cursive;
    --mm-text: #2a1a23;
    --mm-text-muted: #6b5566;
    --mm-card-shadow: 0 24px 60px rgba(90, 31, 61, 0.10);
    --mm-card-shadow-sm: 0 12px 32px rgba(90, 31, 61, 0.08);
}

.menomind,
.menomind p,
.menomind span {
    color: var(--mm-text);
}

.menomind h1,
.menomind h2,
.menomind h3 {
    color: #4E0948;
}

/* =============================================
   HERO SECTION
   ============================================= */
.mm-hero {
    position: relative;
    overflow: hidden;
    min-height: 900px;
    padding: 80px 0 200px;
    background-color: var(--mm-pink-light);
    background-size: cover;
    background-position: 100% center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
/* Desktop uses the full-bleed background photo; the framed photo is mobile-only. */
.mm-hero-photo-mobile { display: none; }

/* Soft pink/white overlay — heavier on the left for text readability,
   transparent on the right so the woman in the bg image still reads. */
.mm-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(100deg,
            rgba(251, 238, 242, 0.95) 0%,
            rgba(251, 238, 242, 0.85) 20%,
            rgba(251, 238, 242, 0.4) 36%,
            rgba(251, 238, 242, 0.08) 48%,
            rgba(251, 238, 242, 0) 58%,
            rgba(251, 238, 242, 0) 100%);
}

.mm-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.mm-hero-content {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mm-wordmark {
    width: 250px;
    max-width: 70%;
    height: auto;
    margin: 0 0 26px;
    user-select: none;
}

.mm-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.3vw, 2.1rem);
    font-weight: 600;
    line-height: 1.18;
    color: #4E0948;
    margin: 0 0 18px;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.mm-hero-description {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--mm-text);
    opacity: 0.85;
    max-width: 440px;
    margin: 0 0 30px;
}

.mm-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.mm-hero-cta .btn {
    padding: 12px 26px;
    font-size: 14px;
}

/* ---- Sub-brand buttons ---- */
.btn-mm-solid {
    background-color: var(--mm-maroon);
    color: #fff;
    border-color: var(--mm-maroon);
    box-shadow: 0 10px 22px rgba(90, 31, 61, 0.25);
}

.btn-mm-solid:hover {
    background-color: var(--mm-maroon-dark);
    border-color: var(--mm-maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(90, 31, 61, 0.32);
    color: #fff;
}

.btn-mm-outline {
    background-color: transparent;
    color: var(--mm-maroon);
    border-color: var(--mm-maroon);
}

.btn-mm-outline:hover {
    background-color: var(--mm-maroon);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(90, 31, 61, 0.22);
}

/* ---- Hero stats ---- */
.mm-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.mm-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mm-stat-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--mm-pink-icon-bg);
    color: var(--mm-maroon);
    font-size: 16px;
}

.mm-stat-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.mm-stat-number {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    color: var(--mm-maroon);
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: flex-start;
}

.mm-stat-number .mm-plus {
    font-size: 19px;
    font-weight: 600;
    margin-left: 2px;
    line-height: 1.2;
}

.mm-stat-label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--mm-text-muted);
    margin-top: 4px;
}

/* ---- Floating quote card on the right side of the hero ---- */
.mm-quote-card {
    position: absolute;
    right: 4%;
    top: 58%;
    transform: translateY(-50%);
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(90, 31, 61, 0.08);
    border-radius: 14px;
    padding: 24px 30px;
    max-width: 240px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(90, 31, 61, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mm-quote-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 10px;
    opacity: 0.95;
}

.mm-quote-divider {
    display: block;
    width: 64%;
    height: 1px;
    margin: 0 auto 14px;
    background-color: rgba(90, 31, 61, 0.18);
}

.mm-quote-text {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--mm-maroon);
    margin: 0;
}

/* =============================================
   "THE WHY" SECTION
   ============================================= */
.mm-why {
    position: relative;
    background-color: transparent;
    padding: 0 0 40px;
    margin-top: -120px;
    z-index: 4;
}

.mm-why-card {
    position: relative;
    z-index: 3;
    margin-top: 0;
    background-color: #fff;
    border-radius: 20px;
    padding: 48px 56px;
    box-shadow: 0 30px 70px rgba(90, 31, 61, 0.18),
                0 12px 28px rgba(90, 31, 61, 0.10);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.mm-why-left {
    max-width: 460px;
}

.mm-why-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 2.6vw, 2.4rem);
    font-weight: 600;
    color: #4d065c;
    margin: 0 0 18px;
    line-height: 1.15;
}

.mm-why-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--mm-text-muted);
    margin: 0;
}

.mm-why-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-left: 56px;
    border-left: 1px solid rgba(90, 31, 61, 0.12);
}

.mm-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.mm-why-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--mm-pink-icon-bg);
    color: var(--mm-maroon);
    font-size: 22px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.mm-why-item:hover .mm-why-icon {
    transform: translateY(-3px) scale(1.05);
    background-color: var(--mm-pink-icon-bg-strong);
}

.mm-why-line-muted {
    font-size: 14.5px;
    color: var(--mm-text-muted);
    margin: 0;
}

.mm-why-line-bold {
    font-size: 16px;
    font-weight: 700;
    color: var(--mm-maroon);
    margin: 0;
}

/* =============================================
   SHARED — SECTION HEADER (eyebrow + title)
   ============================================= */
.mm-section-head {
    text-align: center;
    margin-bottom: 44px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.mm-eyebrow {
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--mm-deep-purple);
    text-transform: uppercase;
    margin: 0 0 14px;
}

.mm-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--mm-deep-purple);
    margin: 0;
    letter-spacing: -0.3px;
}

/* =============================================
   HOLISTIC ECOSYSTEM
   ============================================= */
.mm-ecosystem {
    background-color: #fff;
    padding: 64px 0 88px;
}

.mm-ecosystem .mm-eyebrow,
.mm-ecosystem .mm-section-title {
    color: var(--mm-deep-purple);
}

.mm-journey .mm-section-head {
    max-width: none;
}

.mm-journey .mm-section-title {
    white-space: nowrap;
}

.mm-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.mm-eco-card {
    position: relative;
    background: linear-gradient(to bottom,
        var(--mm-pink-icon-bg) 0%,
        var(--mm-pink-icon-bg) 55%,
        rgba(251, 229, 236, 0) 100%);
    border-radius: 18px 18px 0 0;
    padding: 0 0 90px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mm-eco-card:hover {
    transform: translateY(-6px);
}

.mm-eco-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: var(--mm-pink-light);
    border-radius: 18px 18px 0 0;
}

.mm-eco-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mm-eco-card:hover .mm-eco-media img {
    transform: scale(1.05);
}

.mm-eco-icon {
    position: absolute;
    top: -28px;
    left: -8px;
    z-index: 3;
    width: 73px;
    height: 73px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--mm-pink-bright);
    color: #fff;
    font-size: 25px;
    box-shadow: 0 6px 16px rgba(214, 106, 156, 0.4);
}

.mm-eco-icon i {
    color: #fff;
}

.mm-eco-body {
    padding: 22px 20px 0;
}

.mm-eco-title {
    font-family: var(--mm-font-montserrat);
    font-size: 18px;
    font-weight: 700;
    color: var(--mm-deep-purple);
    margin: 0 0 12px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.mm-eco-desc {
    font-family: var(--font-sans);
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--mm-text-muted);
    margin: 0;
}

.mm-eco-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 18px;
    padding: 9px 22px;
    background-color: var(--mm-pink-bright);
    color: #fff;
    font-family: var(--mm-font-montserrat);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(214, 106, 156, 0.38);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.25s ease;
    pointer-events: none;
}

.mm-eco-readmore i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.mm-eco-card:hover .mm-eco-readmore {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mm-eco-readmore:hover {
    background-color: var(--mm-deep-purple);
    color: #fff;
}

.mm-eco-readmore:hover i {
    transform: translateX(3px);
}

/* =============================================
   BESPOKE 4-STEP PROCESS
   ============================================= */
.mm-journey {
    background: linear-gradient(to bottom, #fff 0%, var(--mm-pink-light) 140px);
    background-color: var(--mm-pink-light);
    padding: 110px 0 130px;
}

.mm-journey-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--mm-card-shadow);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.mm-step {
    flex: 1 1 0;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
}

.mm-step-icon {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 28%,
        #ffffff 0%,
        #fce3ed 55%,
        #f5c4d8 100%);
    box-shadow: 0 12px 28px rgba(214, 106, 156, 0.30),
                inset 0 -2px 6px rgba(214, 106, 156, 0.12),
                0 0 0 1px rgba(214, 106, 156, 0.12);
    overflow: hidden;
}

.mm-step-icon img {
    width: 86%;
    height: 86%;
    object-fit: contain;
}

.mm-step-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mm-step-num {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--mm-maroon);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.mm-step-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--mm-maroon);
    margin: 0 0 8px;
    line-height: 1.25;
}

.mm-step-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--mm-text-muted);
    margin: 0;
}

.mm-step-arrow {
    flex-shrink: 0;
    align-self: center;
    color: var(--mm-pink-bright-soft);
    font-size: 22px;
    opacity: 0.85;
    padding: 0 4px;
}

/* =============================================
   MEET OUR EXPERT TEAM
   ============================================= */
.mm-team {
    background-color: var(--mm-pink-light);
    padding: 80px 0 100px;
}

.mm-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* ---- Doctor card ---- */
.mm-doctor-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--mm-card-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mm-doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(90, 31, 61, 0.12);
}

.mm-doctor-photo {
    aspect-ratio: 1 / 1;
    background-color: var(--mm-pink-light);
    overflow: hidden;
}

.mm-doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.mm-doctor-info {
    padding: 22px 22px 26px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mm-doctor-name {
    font-family: var(--mm-font-montserrat);
    font-size: 17px;
    font-weight: 700;
    color: #4E0948;
    margin: 0 0 6px;
    line-height: 1.25;
}

.mm-doctor-role {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--mm-text-muted);
    margin: 0 0 14px;
    line-height: 1.5;
    min-height: 42px;
}

.mm-doctor-tagline {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--mm-pink-bright);
    margin: 0 0 18px;
    line-height: 1.4;
    min-height: 40px;
}

.mm-doctor-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--mm-pink-bright);
    font-family: var(--mm-font-montserrat);
    font-size: 13.5px;
    font-weight: 600;
    margin-top: auto;
    text-decoration: none;
    transition: color 0.25s ease;
}

.mm-doctor-link i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.mm-doctor-link:hover {
    color: #4E0948;
}

.mm-doctor-link:hover i {
    transform: translateX(3px);
}

/* ---- Testimonial card ---- */
.mm-testimonial-card {
    position: relative;
    overflow: hidden;
    background-color: #fbe5ec;
    border-radius: 20px;
    padding: 36px 30px 32px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--mm-card-shadow-sm);
}

.mm-testimonial-mark {
    font-size: 30px;
    color: var(--mm-pink-bright);
    margin-bottom: 18px;
}

.mm-testimonial-text {
    font-family: var(--font-serif);
    font-size: 19px;
    line-height: 1.45;
    color: #4E0948;
    margin: 0 0 20px;
    position: relative;
    z-index: 2;
}

.mm-testimonial-author {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--mm-text-muted);
    margin: 0;
    position: relative;
    z-index: 2;
}

.mm-testimonial-flower {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 200px;
    height: auto;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
}

/* =============================================
   THIS IS NOT THE END — NEW BEGINNING
   ============================================= */
.mm-newbegin {
    position: relative;
    background-color: var(--mm-pink-light);
    overflow: hidden;
}

.mm-newbegin-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 560px;
    align-items: stretch;
}

.mm-newbegin-image {
    overflow: hidden;
    background-color: var(--mm-pink-light);
}

.mm-newbegin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    -webkit-mask-image:
        linear-gradient(to bottom, transparent 0%, black 22%),
        linear-gradient(to right, black 68%, transparent 100%);
    mask-image:
        linear-gradient(to bottom, transparent 0%, black 22%),
        linear-gradient(to right, black 68%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

.mm-newbegin-content {
    align-self: center;
    padding: 60px 56px 60px 56px;
    max-width: 580px;
}

.mm-newbegin-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    font-weight: 600;
    color: #4E0948;
    line-height: 1.15;
    margin: 0 0 22px;
    letter-spacing: -0.3px;
}

.mm-newbegin-text {
    font-family: var(--font-sans);
    font-size: 15.5px;
    line-height: 1.65;
    color: #4E0948;
    margin: 0 0 18px;
}

.mm-newbegin-emphasis {
    font-weight: 700;
    margin-top: 24px;
}

.mm-newbegin-script {
    font-family: var(--mm-font-script);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 600;
    color: var(--mm-pink-bright);
    margin: 18px 0 0;
    line-height: 1.2;
}

/* Specificity overrides — beat the global .menomind p/h2 color rules */
.mm-newbegin .mm-newbegin-text {
    color: #4E0948;
}

.mm-newbegin .mm-newbegin-script {
    color: var(--mm-pink-bright);
}

/* =============================================
   MENO MIND CTA BANNER (page-specific)
   ============================================= */
.mm-cta {
    background-color: #451441;
    padding: 60px 0;
    color: #fff;
}

.mm-cta-grid {
    display: grid;
    grid-template-columns: 1.4fr 1px 1.6fr;
    gap: 40px;
    align-items: center;
}

.mm-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 1.9vw, 1.8rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
    white-space: nowrap;
}

.mm-cta-sub {
    font-family: var(--font-sans);
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px;
}

.mm-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e8669e 0%, var(--mm-pink-bright) 100%);
    color: #fff;
    font-family: var(--mm-font-montserrat);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(214, 106, 156, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mm-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(214, 106, 156, 0.5);
    color: #fff;
}

.mm-cta-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.18);
    justify-self: center;
}

.mm-cta-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mm-cta-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mm-cta-badge-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F1679A;
    color: #fff;
    font-size: 18px;
}

.mm-cta .mm-cta-badge-icon,
.mm-cta .mm-cta-badge-icon i {
    color: #fff;
}

.mm-cta-badge-label {
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.45;
}

/* Specificity overrides — CTA banner sits on dark bg, must show white text */
.mm-cta .mm-cta-title,
.menomind .mm-cta .mm-cta-title {
    color: #fff;
}

.mm-cta .mm-cta-sub {
    color: rgba(255, 255, 255, 0.85);
}

.mm-cta .mm-cta-badge-label {
    color: #fff;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    .mm-hero {
        min-height: 780px;
        padding: 60px 0 200px;
        background-position: 75% center;
    }

    .mm-why {
        margin-top: -100px;
    }

    .mm-why-card {
        margin-top: 0;
    }

    .mm-quote-card {
        right: 3%;
        max-width: 200px;
        padding: 18px 22px;
    }

    .mm-quote-text {
        font-size: 15px;
    }

    .mm-why-card {
        padding: 40px 36px;
        gap: 36px;
        grid-template-columns: 1fr 1.2fr;
    }

    .mm-why-right {
        padding-left: 36px;
        gap: 18px;
    }

    .mm-hero-stats {
        gap: 28px;
    }

    /* Ecosystem: 3 columns on tablet, with last 2 wrapping */
    .mm-ecosystem-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    /* Long journey title wraps below tablet width */
    .mm-journey .mm-section-title {
        white-space: normal;
    }

    /* Journey: vertical stack on tablet */
    .mm-journey-card {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 32px 28px;
    }

    .mm-step {
        align-items: center;
    }

    .mm-step-arrow {
        align-self: center;
        transform: rotate(90deg);
        padding: 4px 0;
    }

    /* Team: 2 cols on tablet; testimonial spans the full row */
    .mm-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mm-testimonial-card {
        grid-column: 1 / -1;
    }

    /* New-beginning: keep 2-col on tablet, just tighter */
    .mm-newbegin-grid {
        min-height: 480px;
    }

    .mm-newbegin-content {
        padding: 40px 36px;
        max-width: 480px;
    }

    /* CTA banner: stack on tablet */
    .mm-cta-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }

    .mm-cta-title {
        white-space: normal;
    }

    .mm-cta-divider {
        width: 100%;
        height: 1px;
    }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
    .mm-hero {
        min-height: auto;
        padding: 44px 0 8px;
        background-image: none !important; /* stacked layout on mobile — photo shown below */
        background-color: var(--mm-pink-light);
    }
    .mm-hero-photo-mobile {
        display: block;
        width: 100%;
        height: auto;
        max-height: 360px;
        object-fit: cover;
        object-position: center top;
        border-radius: 16px;
        margin-top: 28px;
        box-shadow: 0 18px 40px rgba(107, 44, 92, 0.18);
    }

    .mm-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(251, 238, 242, 0.97) 0%,
                rgba(251, 238, 242, 0.92) 35%,
                rgba(251, 238, 242, 0.5) 60%,
                rgba(251, 238, 242, 0.05) 80%,
                rgba(251, 238, 242, 0) 100%);
    }

    .mm-hero-content {
        max-width: 100%;
        text-align: left;
    }

    .mm-wordmark {
        width: 220px;
        margin-bottom: 22px;
    }

    .mm-hero-title {
        font-size: clamp(1.7rem, 6vw, 2.1rem);
        white-space: normal;
    }

    .mm-hero-description {
        margin-bottom: 28px;
    }

    .mm-hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 32px;
    }

    .mm-hero-cta .btn {
        width: 100%;
        padding: 14px 20px;
    }

    .mm-hero-stats {
        gap: 18px 24px;
        justify-content: flex-start;
    }

    .mm-stat-item {
        gap: 10px;
    }

    .mm-stat-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .mm-stat-number {
        font-size: 22px;
    }

    .mm-stat-label {
        font-size: 12.5px;
    }

    /* Hide floating card on phones — too cramped */
    .mm-quote-card {
        display: none;
    }

    /* "Why" card collapses to single column */
    .mm-why {
        margin-top: -40px;
        padding: 0 0 32px;
    }

    .mm-why-card {
        margin-top: 0;
        padding: 32px 24px;
        grid-template-columns: 1fr;
        gap: 28px;
        border-radius: 16px;
    }

    .mm-why-right {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-left: 0;
        padding-top: 28px;
        border-left: none;
        border-top: 1px solid rgba(90, 31, 61, 0.12);
    }

    .mm-why-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
    }

    .mm-why-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .mm-why-text-group {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    /* Section heading sizes tighten on phones */
    .mm-section-head {
        margin-bottom: 32px;
    }

    .mm-eyebrow {
        font-size: 11.5px;
        letter-spacing: 2px;
    }

    /* Ecosystem: 2 columns on phones */
    .mm-ecosystem {
        padding: 48px 0 64px;
    }

    .mm-ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .mm-eco-card {
        padding: 0 0 18px;
        border-radius: 14px;
    }

    .mm-eco-icon {
        width: 62px;
        height: 62px;
        font-size: 21px;
        top: -22px;
        left: -6px;
    }

    .mm-eco-body {
        padding: 16px 14px 0;
    }

    .mm-eco-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .mm-eco-desc {
        font-size: 13.5px;
        line-height: 1.55;
    }

    /* Journey: stays stacked, tighter */
    .mm-journey {
        background: linear-gradient(to bottom, #fff 0%, var(--mm-pink-light) 80px);
        background-color: var(--mm-pink-light);
        padding: 72px 0 88px;
    }

    .mm-journey-card {
        padding: 28px 22px;
        border-radius: 16px;
        gap: 18px;
    }

    .mm-step {
        gap: 14px;
        align-items: flex-start;
    }

    .mm-step-icon {
        width: 72px;
        height: 72px;
    }

    .mm-step-arrow {
        font-size: 18px;
    }

    /* Team: single column on phones */
    .mm-team {
        padding: 56px 0 64px;
    }

    .mm-team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mm-doctor-info {
        padding: 18px 18px 22px;
    }

    .mm-doctor-role,
    .mm-doctor-tagline {
        min-height: 0;
    }

    .mm-testimonial-card {
        padding: 28px 22px 26px;
    }

    .mm-testimonial-text {
        font-size: 17px;
    }

    .mm-testimonial-flower {
        width: 160px;
        right: -25px;
        bottom: -25px;
    }

    /* New-beginning: stack image on top, text below */
    .mm-newbegin-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mm-newbegin-image {
        aspect-ratio: 4 / 3;
    }

    .mm-newbegin-content {
        padding: 36px 24px 48px;
        max-width: 100%;
    }

    .mm-newbegin-title br,
    .mm-newbegin-text br,
    .mm-newbegin-emphasis br {
        display: none;
    }

    /* CTA banner: stacked, full-width button */
    .mm-cta {
        padding: 48px 0;
    }

    .mm-cta-badges {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mm-cta-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .mm-hero {
        padding-bottom: 8px; /* stacked layout: no room reserved for a background photo */
    }

    .mm-wordmark {
        width: 200px;
    }

    .mm-hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    /* Ecosystem: single column on very small phones */
    .mm-ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .mm-eco-media {
        aspect-ratio: 16 / 11;
    }
}


/* =============================================
   BOOKING MODAL (side panel desktop / full-screen mobile)
   ============================================= */
.mm-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

/* Make sure hidden attribute always wins (avoids both Continue + Submit showing) */
.mm-modal [hidden] {
    display: none !important;
}

.mm-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.mm-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(74, 18, 72, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Side panel container */
.mm-modal-panel {
    position: relative;
    width: min(540px, 100%);
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #FDF5F8 0%, #ffffff 26%);
    box-shadow: -24px 0 60px rgba(74, 18, 72, 0.20);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(40px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.mm-modal.open .mm-modal-panel {
    transform: translateX(0);
}

/* Close button */
.mm-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #4E0948;
    font-size: 16px;
    border: 1px solid rgba(74, 18, 72, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mm-modal-close:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Header with Unsplash hero + progress */
.mm-modal-header {
    position: relative;
    flex-shrink: 0;
}

.mm-modal-hero {
    width: 100%;
    min-height: 140px;
    background: linear-gradient(135deg, #FDF5F8 0%, #fbeef2 45%, #f8dde7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    box-sizing: border-box;
}

.mm-modal-logo {
    display: block;
    width: 180px;
    max-width: 60%;
    height: auto;
    user-select: none;
}

.mm-modal-progress {
    position: relative;
    padding: 22px 32px 14px;
    background: #fff;
}

.mm-modal-progress-track,
.mm-modal-progress-fill {
    position: absolute;
    top: 36px;
    left: 56px;
    right: 56px;
    height: 3px;
    border-radius: 999px;
}

.mm-modal-progress-track {
    background: #f3d9e0;
}

.mm-modal-progress-fill {
    background: linear-gradient(90deg, #A5166B 0%, #E84595 100%);
    width: 0%;
    transition: width 0.35s ease;
}

.mm-modal-progress-steps {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.mm-progress-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f3d9e0;
    color: #b8889f;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mm-progress-dot.active {
    border-color: var(--mm-pink-bright);
    color: var(--mm-pink-bright);
    box-shadow: 0 4px 12px rgba(214, 106, 156, 0.30);
}

.mm-progress-dot.done {
    background: var(--mm-pink-bright);
    border-color: var(--mm-pink-bright);
    color: #fff;
}

/* Step body */
.mm-modal-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mm-modal-step {
    display: none;
    padding: 24px 32px 12px;
    animation: mmStepIn 0.35s ease;
    box-sizing: border-box;
    width: 100%;
}

.mm-modal-step.active {
    display: block;
}

.mm-modal-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 600;
    color: #4E0948;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.mm-modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: #6b5566;
    margin: 0 0 22px;
    line-height: 1.55;
}

/* Form groups */
.mm-form-group {
    margin-bottom: 20px;
}

.mm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.mm-form-row .mm-form-group {
    margin-bottom: 0;
}

.mm-form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #4E0948;
    margin: 0 0 10px;
    letter-spacing: 0.2px;
}

.mm-form-hint {
    font-weight: 400;
    color: #b8889f;
    font-size: 12px;
    margin-left: 4px;
}

/* Radio cards */
.mm-radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mm-radio-grid-row {
    grid-template-columns: repeat(3, 1fr);
}

.mm-radio-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 14px;
    border: 1.5px solid #f3d9e0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 56px;
}

.mm-radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mm-radio-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #4E0948;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mm-radio-card-label i {
    color: var(--mm-pink-bright);
}

.mm-radio-card:hover {
    border-color: #E8A6C4;
}

.mm-radio-card:has(input:checked) {
    border-color: var(--mm-pink-bright);
    background: #fde9f0;
    box-shadow: 0 6px 16px rgba(214, 106, 156, 0.18);
}

/* Chip group (checkboxes) */
.mm-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mm-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1.5px solid #f3d9e0;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4E0948;
}

.mm-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mm-chip:hover {
    border-color: #E8A6C4;
}

.mm-chip:has(input:checked) {
    border-color: var(--mm-pink-bright);
    background: var(--mm-pink-bright);
    color: #fff;
}

/* Text inputs / select / textarea */
.mm-modal-input,
.mm-modal-select,
.mm-modal-textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #efd6df;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: #2a1a23;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.mm-modal-input:focus,
.mm-modal-select:focus,
.mm-modal-textarea:focus {
    outline: none;
    border-color: var(--mm-pink-bright);
    box-shadow: 0 0 0 3px rgba(214, 106, 156, 0.18);
}

.mm-modal-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Consent checkbox */
.mm-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6b5566;
    line-height: 1.5;
    cursor: pointer;
}

.mm-checkbox-row input {
    margin-top: 3px;
    accent-color: var(--mm-pink-bright);
    flex-shrink: 0;
}

/* Footer actions (sticky) */
.mm-modal-actions {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding: 18px 32px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 30%, #fff 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.mm-modal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #4E0948;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mm-modal-back:hover {
    background: rgba(214, 106, 156, 0.08);
}

.mm-modal-next,
.mm-modal-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #A5166B 0%, #E84595 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(165, 22, 107, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-left: auto;
}

.mm-modal-next:hover,
.mm-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(165, 22, 107, 0.38);
    color: #fff;
}

.mm-modal-next:disabled,
.mm-modal-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.mm-modal-next i,
.mm-modal-submit i {
    transition: transform 0.25s ease;
    font-size: 11px;
}

.mm-modal-next:hover i,
.mm-modal-submit:hover i {
    transform: translateX(3px);
}

/* Success panel */
.mm-modal-success {
    text-align: center;
    padding-top: 56px;
    padding-bottom: 32px;
}

.mm-modal-success.active {
    display: block;
}

.mm-success-flower {
    width: 110px;
    height: auto;
    margin: 0 auto 18px;
    display: block;
    opacity: 0.9;
}

.mm-modal-success-btn {
    margin: 24px auto 0;
    display: inline-flex;
}

/* Body scroll lock */
body.mm-modal-open {
    overflow: hidden;
}

/* Validation shake */
@keyframes mmShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.mm-shake {
    animation: mmShake 0.32s ease;
}

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

/* Mobile: full-screen overlay */
@media (max-width: 768px) {
    .mm-modal {
        justify-content: stretch;
    }

    .mm-modal-panel {
        width: 100%;
        transform: translateY(40px);
    }

    .mm-modal.open .mm-modal-panel {
        transform: translateY(0);
    }

    .mm-modal-hero {
        height: 140px;
    }

    .mm-modal-progress {
        padding: 18px 22px 12px;
    }

    .mm-modal-progress-track,
    .mm-modal-progress-fill {
        left: 38px;
        right: 38px;
        top: 32px;
    }

    .mm-modal-step {
        padding: 22px 22px 12px;
    }

    .mm-form-row {
        grid-template-columns: 1fr;
    }

    .mm-radio-grid {
        grid-template-columns: 1fr;
    }

    .mm-radio-grid-row {
        grid-template-columns: 1fr;
    }

    .mm-modal-actions {
        padding: 14px 22px 22px;
    }

    .mm-modal-next,
    .mm-modal-submit {
        padding: 12px 22px;
        font-size: 13.5px;
    }
}

/* =============================================
   PRICING PLANS (above bottom CTA)
   ============================================= */
.mm-pricing {
    background-color: var(--mm-pink-light);
    padding: 72px 0 88px;
}
.mm-pricing-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.mm-pricing-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mm-deep-purple);
    margin-bottom: 14px;
}
.mm-pricing-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--mm-deep-purple);
    margin: 0 0 14px;
    letter-spacing: -0.3px;
}
.mm-pricing-sub {
    font-family: var(--font-sans);
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--mm-text-muted);
    margin: 0;
}
.mm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    max-width: 1040px;
    margin: 0 auto;
}
.mm-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--mm-pink);
    border-radius: 18px;
    padding: 36px 30px;
    box-shadow: var(--mm-card-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mm-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mm-card-shadow);
}
.mm-price-card.is-featured {
    border: 2px solid var(--mm-pink-bright);
    box-shadow: 0 28px 60px rgba(176, 42, 106, 0.18);
    transform: translateY(-12px);
}
.mm-price-card.is-featured:hover {
    transform: translateY(-16px);
}
.mm-price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e8669e 0%, var(--mm-pink-bright) 100%);
    color: #fff;
    font-family: var(--mm-font-montserrat);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(214, 106, 156, 0.4);
    white-space: nowrap;
}
.mm-price-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--mm-deep-purple);
    margin: 0 0 14px;
}
.mm-price-amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--mm-pink);
}
.mm-price-value {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--mm-maroon);
    line-height: 1;
}
.mm-price-note {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--mm-text-muted);
}
.mm-price-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex: 1;
}
.mm-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-family: var(--font-sans);
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--mm-text);
}
.mm-price-features li i {
    flex-shrink: 0;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mm-pink-icon-bg);
    color: var(--mm-pink-dark);
    font-size: 10px;
}
.mm-price-btn {
    display: block;
    text-align: center;
    margin-top: auto;
    background: transparent;
    color: var(--mm-maroon);
    border: 1.5px solid var(--mm-maroon);
    font-family: var(--mm-font-montserrat);
    font-size: 14px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.mm-price-btn:hover {
    background: var(--mm-maroon);
    color: #fff;
    transform: translateY(-2px);
}
.mm-price-card.is-featured .mm-price-btn {
    background: linear-gradient(135deg, #e8669e 0%, var(--mm-pink-bright) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(214, 106, 156, 0.4);
}
.mm-price-card.is-featured .mm-price-btn:hover {
    box-shadow: 0 12px 26px rgba(214, 106, 156, 0.5);
}

@media (max-width: 900px) {
    .mm-pricing-grid { grid-template-columns: 1fr; max-width: 460px; gap: 32px; }
    .mm-price-card.is-featured { transform: none; }
    .mm-price-card.is-featured:hover { transform: translateY(-4px); }
}
