/**
 * Product Page — Phase A.13 premium redesign.
 *
 * Tokens mirror campaign-landing.css so the landing → product → cart
 * flow reads as one continuous aesthetic.
 *
 *   Teal:   #0a3a2c (deep), #1a6b52 (mid)
 *   Gold:   #c9a84c (primary), #b69540 (hover)
 *   Cream:  #fdfaf0 (section bg)
 *   Ink:    #2a2a2a (body), #0a3a2c (H/accent)
 */

/* ──────────────────────────────────────────────────────────────────── */
/* Reset container defaults so the hero can go full-bleed.              */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp { background: #fff; color: #2a2a2a; }
.mmc-pp * { box-sizing: border-box; }
.mmc-pp h2, .mmc-pp h3 { font-family: Georgia, serif; color: #0a3a2c; }

/* Shared button ─────────────────────────────────────────────────────── */
.mmc-pp-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; border-radius: 8px;
    font-family: Georgia, serif; font-weight: 600; font-size: 16px;
    text-decoration: none; border: 0; cursor: pointer;
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
    min-height: 48px;
}
.mmc-pp-btn--gold {
    background: #c9a84c; color: #fff;
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.3);
}
.mmc-pp-btn--gold:hover, .mmc-pp-btn--gold:focus {
    background: #b69540; transform: translateY(-1px); color: #fff;
    box-shadow: 0 8px 22px rgba(201, 168, 76, 0.42);
}
.mmc-pp-btn--large { padding: 18px 40px; font-size: 18px; }
.mmc-pp-btn--ghost {
    background: transparent; color: #0a3a2c;
    border: 2px solid #0a3a2c;
}
.mmc-pp-btn--ghost:hover { background: #0a3a2c; color: #fff; }

.mmc-pp-h2 {
    font-size: 34px; text-align: center; margin: 0 0 40px;
    letter-spacing: 0.01em;
}
.mmc-pp-h2::after {
    content: ""; display: block; width: 56px; height: 2px;
    background: #c9a84c; margin: 16px auto 0;
}

/* ──────────────────────────────────────────────────────────────────── */
/* 1. Hero                                                              */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp-hero {
    position: relative;
    min-height: 560px;
    background: linear-gradient(135deg, #0a3a2c 0%, #1a6b52 60%, #0a3a2c 100%);
    color: #fff;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    padding: 80px 20px;
}
.mmc-pp-hero__bg {
    position: absolute; inset: 0; z-index: 0;
}
.mmc-pp-hero__bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.35;
    display: block;
}
.mmc-pp-hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(circle at 50% 110%, rgba(201,168,76,0.28) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10,58,44,0.5) 0%, rgba(10,58,44,0.7) 100%);
}
.mmc-pp-hero__inner {
    position: relative; z-index: 2;
    max-width: 760px; text-align: center;
}
.mmc-pp-hero__kicker {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    font-family: Georgia, serif;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}
.mmc-pp-hero__title {
    font-family: Georgia, serif;
    font-size: 56px; line-height: 1.1; font-weight: 400;
    color: #fff; margin: 0 0 18px;
    letter-spacing: 0.005em;
}
.mmc-pp-hero__sub {
    font-size: 20px; line-height: 1.55; color: rgba(255, 255, 255, 0.92);
    max-width: 620px; margin: 0 auto 32px;
}
.mmc-pp-hero__pricing {
    display: inline-flex; align-items: baseline; gap: 16px;
    background: rgba(0, 0, 0, 0.25);
    padding: 16px 32px;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    margin-bottom: 16px;
}
.mmc-pp-hero__price-was {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}
.mmc-pp-hero__price-was .woocommerce-Price-amount { color: inherit; }
.mmc-pp-hero__price-now {
    font-family: Georgia, serif;
    font-size: 38px; font-weight: 700;
    color: #fff;
}
.mmc-pp-hero__price-now .woocommerce-Price-amount { color: inherit; }
.mmc-pp-hero__discount-note {
    font-size: 14px; color: #e8d48a;
    margin: 0 0 36px;
    letter-spacing: 0.02em;
}
.mmc-pp-hero__cta { margin-top: 12px; }
.mmc-pp-hero__reassure {
    margin-top: 14px;
    font-size: 13px; color: rgba(255, 255, 255, 0.72);
    font-style: italic;
}

/* ──────────────────────────────────────────────────────────────────── */
/* 2. Value-prop strip                                                   */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp-valueprop {
    background: #fdfaf0;
    padding: 60px 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.mmc-pp-valueprop__row {
    max-width: 1040px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.mmc-pp-valueprop__cell { text-align: center; }
.mmc-pp-valueprop__icon {
    color: #c9a84c;
    margin-bottom: 16px;
}
.mmc-pp-valueprop__cell h3 {
    font-size: 20px; font-weight: 600;
    margin: 0 0 8px;
}
.mmc-pp-valueprop__cell p {
    margin: 0; color: #555; font-size: 15px; line-height: 1.55;
}

/* ──────────────────────────────────────────────────────────────────── */
/* 2b. Credibility band                                                  */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp-cred {
    padding: 64px 20px 56px;
    background: #0a3a2c;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mmc-pp-cred::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.mmc-pp-cred__inner {
    max-width: 880px; margin: 0 auto;
    position: relative; z-index: 1;
}
.mmc-pp-cred__kicker {
    font-family: Georgia, serif;
    font-size: 12px; letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.85);
    margin: 0 0 18px;
}
.mmc-pp-cred__line {
    font-family: Georgia, serif;
    font-size: 19px; line-height: 1.5;
    color: #fff;
    margin: 0 0 22px;
    letter-spacing: 0.01em;
}
.mmc-pp-cred__line strong { font-weight: 500; color: #f6e4a8; }
.mmc-pp-cred__sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
    font-weight: 400;
}
.mmc-pp-cred__experience {
    font-family: Georgia, serif;
    font-size: 16px; line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px; margin: 0 auto 40px;
}
.mmc-pp-cred__featured-label {
    font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 18px;
    font-family: Georgia, serif;
}
.mmc-pp-cred__logos {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 14px 4px;
    font-family: Georgia, serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.04em;
}
.mmc-pp-cred__logo {
    padding: 4px 4px;
    opacity: 0.9;
    transition: opacity .2s ease;
}
.mmc-pp-cred__logo:hover { opacity: 1; color: #fff; }
.mmc-pp-cred__logo-sep {
    display: inline-block;
    width: 4px; height: 4px;
    background: rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    margin: 0 6px;
}

/* ──────────────────────────────────────────────────────────────────── */
/* 3. Social proof — live Google reviews                                 */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp-social { padding: 80px 20px; background: #fff; }
.mmc-pp-social__inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.mmc-pp-social__agg {
    display: inline-flex; align-items: center; gap: 20px;
    padding: 20px 30px 20px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e4e4e6;
    box-shadow: 0 10px 28px rgba(10, 58, 44, 0.08);
    margin-bottom: 48px;
    text-align: left;
}
.mmc-pp-social__google {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}
.mmc-pp-social__google-g { display: block; }
.mmc-pp-social__agg-body {
    display: flex; flex-direction: column;
    gap: 4px;
}
.mmc-pp-social__agg-title {
    display: flex; align-items: baseline; gap: 6px;
    line-height: 1;
}
.mmc-pp-social__agg-wordmark {
    font-family: 'Product Sans', 'Google Sans', Roboto, Arial, sans-serif;
    font-size: 22px; font-weight: 500; letter-spacing: -0.005em;
    line-height: 1;
}
.mmc-pp-social__agg-sub {
    font-family: 'Product Sans', 'Google Sans', Roboto, Arial, sans-serif;
    font-size: 14px; color: #5f6368;
    font-weight: 400;
}
.mmc-pp-social__agg-row {
    display: flex; align-items: center; gap: 10px;
    margin-top: 4px;
}
.mmc-pp-social__rating {
    font-family: Roboto, Arial, sans-serif;
    font-size: 22px; font-weight: 700;
    color: #202124;
    line-height: 1;
}
.mmc-pp-social__stars {
    display: inline-flex; align-items: center; gap: 1px;
    line-height: 1;
}
.mmc-pp-social__label {
    font-family: Roboto, Arial, sans-serif;
    color: #5f6368;
    font-size: 13px;
    letter-spacing: 0.01em;
}

/* Curated fallback quote cards (only shown when live shortcode empty) */
.mmc-pp-social__quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 0;
}
.mmc-pp-social__quote {
    margin: 0;
    background: #fdfaf0;
    padding: 28px 30px;
    border-radius: 12px;
    border-left: 3px solid #c9a84c;
    text-align: left;
}
.mmc-pp-social__quote blockquote {
    margin: 0 0 12px; font-family: Georgia, serif;
    color: #2a2a2a; font-size: 17px; line-height: 1.55;
    font-style: italic;
}
.mmc-pp-social__quote figcaption {
    color: #6b6b6b; font-size: 13px; letter-spacing: 0.02em;
}

/* Live Google-reviews shortcode styling — the shortcode renders its own
 * cards but we soften the surround + constrain width so it sits nicely
 * inside our premium frame. */
.mmc-pp-social__live {
    text-align: left;
    margin-top: 0;
}
.mmc-pp-social__live .sg-reviews-grid,
.mmc-pp-social__live .sg-reviews-cards,
.mmc-pp-social__live .sg-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}
.mmc-pp-social__live .sg-review,
.mmc-pp-social__live .sg-reviews__card {
    background: #fdfaf0 !important;
    padding: 26px 28px !important;
    border-radius: 12px !important;
    border-left: 3px solid #c9a84c !important;
    box-shadow: 0 4px 14px rgba(10, 58, 44, 0.05);
}

.mmc-pp-social__cta {
    margin-top: 32px;
}
.mmc-pp-social__google-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    font-family: Georgia, serif;
    font-size: 14px;
    color: #0a3a2c;
    background: #fff;
    border: 1px solid rgba(10, 58, 44, 0.15);
    border-radius: 999px;
    text-decoration: none;
    transition: border-color .15s ease, transform .15s ease;
}
.mmc-pp-social__google-link:hover {
    border-color: #c9a84c;
    transform: translateY(-1px);
    color: #0a3a2c;
}

/* ──────────────────────────────────────────────────────────────────── */
/* 4. What you get — structured sections                                 */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp-what { padding: 80px 20px; background: #fdfaf0; }
.mmc-pp-what__inner { max-width: 1040px; margin: 0 auto; }
.mmc-pp-what__h2 { margin-top: 64px; }
.mmc-pp-what__h2:first-child { margin-top: 0; }

/* Intro — narrative prose, centred, calm. */
.mmc-pp-what__intro {
    max-width: 760px; margin: 0 auto 56px;
    font-family: Georgia, serif; font-size: 18px; line-height: 1.75;
    color: #333;
    text-align: center;
}
.mmc-pp-what__intro p { margin: 0 0 18px; }
.mmc-pp-what__intro p:last-child { margin-bottom: 0; }
.mmc-pp-what__intro strong { color: #0a3a2c; }

/* Generic prose (fallback) */
.mmc-pp-what__prose {
    max-width: 760px; margin: 0 auto 48px;
    font-family: Georgia, serif; font-size: 17px; line-height: 1.7;
    color: #2a2a2a;
}
.mmc-pp-what__prose p { margin: 0 0 16px; }
.mmc-pp-what__prose strong { color: #0a3a2c; }
.mmc-pp-what__prose ul { padding-left: 24px; }
.mmc-pp-what__prose li { margin-bottom: 10px; }

/* Course Features — spec card with structured layout */
.mmc-pp-what__spec {
    max-width: 760px; margin: 0 auto 48px;
    background: #fff;
    padding: 36px 40px;
    border-radius: 14px;
    border: 1px solid rgba(201, 168, 76, 0.22);
    box-shadow: 0 10px 26px rgba(10, 58, 44, 0.05);
    font-family: Georgia, serif; font-size: 16px; line-height: 1.65;
}
.mmc-pp-what__spec p { margin: 0 0 12px; }
.mmc-pp-what__spec p strong {
    color: #0a3a2c;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-top: 16px;
}
.mmc-pp-what__spec p:first-child strong { margin-top: 0; }
.mmc-pp-what__spec ul {
    margin: 6px 0 12px; padding-left: 22px;
    list-style: none;
}
.mmc-pp-what__spec li {
    position: relative;
    padding-left: 4px;
    margin-bottom: 8px;
}
.mmc-pp-what__spec li::before {
    content: "◆";
    color: #c9a84c;
    position: absolute; left: -22px; top: 0;
    font-size: 10px;
    line-height: 1.65;
}
.mmc-pp-what__spec li p { margin: 0; }

/* Support Materials — 2-col mini cards */
.mmc-pp-what__support {
    max-width: 880px; margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    font-family: Georgia, serif; font-size: 16px; line-height: 1.6;
}
.mmc-pp-what__support p {
    background: #fff;
    padding: 26px 28px;
    border-radius: 12px;
    border-left: 3px solid #c9a84c;
    margin: 0;
    box-shadow: 0 6px 18px rgba(10, 58, 44, 0.04);
}
.mmc-pp-what__support strong {
    display: block;
    color: #0a3a2c;
    font-size: 17px;
    margin-bottom: 8px;
}

/* Seven Workbooks — premium tile grid */
.mmc-pp-workbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto 48px;
}
.mmc-pp-wb-tile {
    position: relative;
    background: #fff;
    padding: 32px 28px 28px;
    border-radius: 14px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 8px 22px rgba(10, 58, 44, 0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    overflow: hidden;
}
.mmc-pp-wb-tile::before {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #c9a84c 0%, #b69540 100%);
    opacity: 0.85;
}
.mmc-pp-wb-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(10, 58, 44, 0.1);
    border-color: rgba(201, 168, 76, 0.4);
}
.mmc-pp-wb-tile__num {
    font-family: Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}
.mmc-pp-wb-tile__num::before {
    content: "Workbook ";
    color: #999;
    font-weight: 400;
    letter-spacing: 0.04em;
}
.mmc-pp-wb-tile__title {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #0a3a2c;
    margin: 0 0 12px;
    line-height: 1.3;
}
.mmc-pp-wb-tile__desc {
    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    margin: 0;
}

/* ──────────────────────────────────────────────────────────────────── */
/* 5. Fit — for / not-for                                                */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp-fit { padding: 80px 20px; background: #fff; }
.mmc-pp-fit__inner { max-width: 1040px; margin: 0 auto; }
.mmc-pp-fit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.mmc-pp-fit__col {
    padding: 32px;
    border-radius: 14px;
    background: #fdfaf0;
}
.mmc-pp-fit__col h3 {
    font-size: 22px; margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(10, 58, 44, 0.15);
}
.mmc-pp-fit__col ul {
    list-style: none; padding: 0; margin: 0;
}
.mmc-pp-fit__col li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 16px; line-height: 1.55;
}
.mmc-pp-fit__col--yes li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.18);
    color: #c9a84c;
    font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px;
    top: 2px;
}
.mmc-pp-fit__col--no li::before {
    content: "×";
    position: absolute; left: 0; top: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(155, 46, 46, 0.12);
    color: #9b2e2e;
    font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    top: 2px;
}

/* ──────────────────────────────────────────────────────────────────── */
/* 6. Pricing + guarantee                                                */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp-pricing {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fdfaf0 0%, #fff 100%);
}
.mmc-pp-pricing__inner {
    max-width: 680px; margin: 0 auto; text-align: center;
    background: #fff;
    padding: 48px 40px;
    border-radius: 18px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 18px 48px rgba(10, 58, 44, 0.08);
}
.mmc-pp-pricing__price {
    display: flex; align-items: baseline; justify-content: center; gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.mmc-pp-pricing__was {
    font-size: 22px; color: #999;
    text-decoration: line-through;
}
.mmc-pp-pricing__now {
    font-family: Georgia, serif;
    font-size: 46px; font-weight: 700; color: #0a3a2c;
}
.mmc-pp-pricing__pct {
    background: #c9a84c; color: #fff;
    padding: 6px 16px; border-radius: 999px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase;
}
.mmc-pp-guarantee {
    margin-top: 36px;
    padding: 20px 24px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    display: flex; gap: 16px; align-items: flex-start;
    text-align: left;
}
.mmc-pp-guarantee svg { flex-shrink: 0; color: #c9a84c; margin-top: 2px; }
.mmc-pp-guarantee p {
    margin: 0; font-size: 14px; line-height: 1.55; color: #333;
}
.mmc-pp-pricing__trust {
    margin-top: 22px; font-size: 13px; color: #6b6b6b;
    letter-spacing: 0.02em;
}

/* ──────────────────────────────────────────────────────────────────── */
/* 7. FAQ                                                                */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp-faq { padding: 80px 20px; background: #fff; }
.mmc-pp-faq__inner { max-width: 720px; margin: 0 auto; }
.mmc-pp-faq__item {
    background: #fdfaf0;
    border-radius: 12px;
    margin-bottom: 14px;
    padding: 0;
    border: 1px solid rgba(201, 168, 76, 0.15);
    overflow: hidden;
}
.mmc-pp-faq__item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    color: #0a3a2c;
    list-style: none;
    position: relative;
    padding-right: 56px;
    transition: background .15s ease;
}
.mmc-pp-faq__item summary::-webkit-details-marker { display: none; }
.mmc-pp-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 22px; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.2);
    color: #c9a84c;
    font-size: 22px;
    font-weight: 400;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .2s ease, background .2s ease;
}
.mmc-pp-faq__item[open] summary::after {
    content: "−"; background: #c9a84c; color: #fff;
}
.mmc-pp-faq__item summary:hover { background: rgba(201, 168, 76, 0.08); }
.mmc-pp-faq__item p {
    padding: 0 24px 22px;
    margin: 0;
    font-size: 16px; line-height: 1.65; color: #444;
    font-family: Georgia, serif;
}

/* ──────────────────────────────────────────────────────────────────── */
/* 8. Sticky enrol bar                                                   */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp-sticky {
    position: fixed; left: 0; right: 0; bottom: 0;
    background: #fff;
    border-top: 1px solid rgba(10, 58, 44, 0.12);
    box-shadow: 0 -6px 22px rgba(10, 58, 44, 0.08);
    padding: 14px 20px;
    z-index: 9000;
    transform: translateY(110%);
    transition: transform .28s ease;
}
.mmc-pp-sticky.is-visible {
    transform: translateY(0);
}
.mmc-pp-sticky__inner {
    max-width: 1040px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}
.mmc-pp-sticky__info {
    display: flex; flex-direction: column; gap: 2px;
    min-width: 0;
}
.mmc-pp-sticky__title {
    font-family: Georgia, serif;
    font-size: 15px; font-weight: 600;
    color: #0a3a2c;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mmc-pp-sticky__price {
    font-family: Georgia, serif;
    font-size: 18px; color: #0a3a2c; font-weight: 700;
}
.mmc-pp-sticky__price-was {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 400;
}
.mmc-pp-btn--sticky {
    padding: 12px 22px;
    font-size: 15px;
    min-height: 44px;
}

/* ──────────────────────────────────────────────────────────────────── */
/* 9. Not-sure fallback                                                  */
/* ──────────────────────────────────────────────────────────────────── */
.mmc-pp-notsure {
    padding: 72px 20px 120px;
    background: #fdfaf0;
    text-align: center;
}
.mmc-pp-notsure__inner { max-width: 680px; margin: 0 auto; }
.mmc-pp-notsure h2 {
    font-family: Georgia, serif;
    font-size: 26px; color: #0a3a2c;
    margin: 0 0 16px;
}
.mmc-pp-notsure p {
    font-size: 16px; line-height: 1.6; color: #444;
    margin: 0 0 28px;
}
.mmc-pp-notsure__cta {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────────────── */
/* Mobile                                                                */
/* ──────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .mmc-pp-hero { min-height: 480px; padding: 60px 18px; }
    .mmc-pp-hero__title { font-size: 38px; }
    .mmc-pp-hero__sub { font-size: 17px; }
    .mmc-pp-hero__price-now { font-size: 32px; }
    .mmc-pp-hero__price-was { font-size: 18px; }
    .mmc-pp-h2 { font-size: 26px; margin-bottom: 28px; }
    .mmc-pp-valueprop__row { grid-template-columns: 1fr; gap: 28px; }
    .mmc-pp-fit__grid { grid-template-columns: 1fr; gap: 20px; }
    .mmc-pp-fit__col { padding: 24px 22px; }
    .mmc-pp-pricing__inner { padding: 36px 24px; }
    .mmc-pp-pricing__now { font-size: 36px; }
    .mmc-pp-social__quotes { gap: 18px; }
    .mmc-pp-cred { padding: 48px 18px 44px; }
    .mmc-pp-cred__line { font-size: 16px; line-height: 1.6; }
    .mmc-pp-cred__line strong { display: inline-block; }
    .mmc-pp-cred__sep { display: none; }
    .mmc-pp-cred__line strong { display: block; margin-bottom: 4px; }
    .mmc-pp-cred__experience { font-size: 15px; }
    .mmc-pp-cred__logos { font-size: 13px; gap: 10px 2px; }
    .mmc-pp-social { padding: 56px 18px; }
    .mmc-pp-social__agg { padding: 16px 20px; gap: 14px; }
    .mmc-pp-social__google { width: 44px; height: 44px; }
    .mmc-pp-social__google-g { width: 28px; height: 28px; }
    .mmc-pp-social__agg-wordmark { font-size: 18px; }
    .mmc-pp-social__agg-sub { font-size: 12px; }
    .mmc-pp-social__rating { font-size: 18px; }
    .mmc-pp-social__agg-row { gap: 6px; flex-wrap: wrap; }
    .mmc-pp-social__label { font-size: 12px; width: 100%; }
    .mmc-pp-what__spec { padding: 28px 22px; }
    .mmc-pp-what__support { grid-template-columns: 1fr; gap: 16px; }
    .mmc-pp-workbook-grid { grid-template-columns: 1fr; gap: 14px; }
    .mmc-pp-wb-tile { padding: 26px 22px 22px; }
    .mmc-pp-sticky__inner { gap: 12px; }
    .mmc-pp-sticky__title { font-size: 13px; }
    .mmc-pp-sticky__price { font-size: 15px; }
    .mmc-pp-btn--sticky { padding: 10px 16px; font-size: 13px; }
    .mmc-pp-notsure { padding-bottom: 140px; } /* leave room for sticky bar */
}

@media (prefers-reduced-motion: reduce) {
    .mmc-pp-btn, .mmc-pp-sticky, .mmc-pp-faq__item summary::after {
        transition: none !important;
    }
}
