/* Mendify — Therapist Matchmaker */

.public-body--matchmaker .public-main {
    padding: 0;
}

.mm-page {
    --mm-max: 1240px;
    --mm-radius-lg: calc(var(--md-radius) + 10px);
    --mm-shadow-soft: 0 16px 48px rgba(61, 47, 82, 0.07);
    --mm-shadow-lift: 0 20px 56px rgba(61, 47, 82, 0.11);
    position: relative;
    overflow: hidden;
    color: var(--md-charcoal);
    background:
        radial-gradient(ellipse 70% 50% at 92% 8%, rgba(132, 161, 141, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 80% 45% at 8% 0%, rgba(228, 165, 198, 0.14) 0%, transparent 55%),
        linear-gradient(180deg, #f8f5fc 0%, #fff 38%, #fff 100%);
}

.mm-page__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.55;
}

.mm-page__glow--lav {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    top: -8rem;
    left: -6rem;
    background: rgba(226, 217, 240, 0.65);
}

.mm-page__glow--sage {
    width: min(360px, 45vw);
    height: min(360px, 45vw);
    bottom: 10%;
    right: -4rem;
    background: rgba(132, 161, 141, 0.22);
}

.mm-shell {
    position: relative;
    z-index: 1;
    width: min(var(--mm-max), 94vw);
    margin: 0 auto;
    padding: clamp(1.25rem, 2.5vw, 2rem) 0 clamp(2.5rem, 5vw, 3.75rem);
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
}

/* ── Aside ── */

.mm-aside {
    position: sticky;
    top: 5.5rem;
}

.mm-aside__panel {
    padding: clamp(1.1rem, 2vw, 1.45rem);
    border-radius: var(--mm-radius-lg);
    border: 1px solid rgba(226, 217, 240, 0.9);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--mm-shadow-soft);
}

.mm-aside__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mm-aside__title {
    margin: 0 0 0.75rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--lav900);
}

.mm-aside__title span {
    display: block;
    font-style: italic;
    color: var(--lav800);
}

.mm-aside__lead {
    margin: 0 0 1.35rem;
    font-size: 0.94rem;
    line-height: 1.62;
    color: rgba(58, 58, 58, 0.76);
}

.mm-progress {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0 0 0 0.15rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.mm-progress::before {
    content: "";
    position: absolute;
    left: 0.95rem;
    top: 0.85rem;
    bottom: 0.85rem;
    width: 2px;
    background: linear-gradient(180deg, var(--lav200), rgba(226, 217, 240, 0.35));
    border-radius: 2px;
}

.mm-progress__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0;
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(58, 58, 58, 0.42);
    position: relative;
    z-index: 1;
}

.mm-progress__item.is-active {
    color: var(--lav900);
}

.mm-progress__item.is-done {
    color: var(--lav800);
}

.mm-progress__marker {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--lav200);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(58, 58, 58, 0.45);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mm-progress__item.is-active .mm-progress__marker {
    background: var(--lav700);
    border-color: var(--lav700);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(226, 217, 240, 0.7);
}

.mm-progress__item.is-done .mm-progress__marker {
    background: #4d6b54;
    border-color: #4d6b54;
    color: #fff;
}

.mm-progress__marker svg {
    width: 0.85rem;
    height: 0.85rem;
}

.mm-aside__features {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0.85rem 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    border-radius: calc(var(--md-radius) + 2px);
    background: linear-gradient(135deg, var(--lav100) 0%, rgba(245, 250, 244, 0.85) 100%);
    border: 1px solid rgba(226, 217, 240, 0.75);
}

.mm-aside__features li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(58, 58, 58, 0.72);
}

.mm-aside__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: rgba(77, 107, 84, 0.14);
    color: #4d6b54;
    font-size: 0.62rem;
    font-weight: 800;
    flex-shrink: 0;
}

.mm-aside__figure {
    margin: 0 0 1rem;
    border-radius: calc(var(--md-radius) + 6px);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(61, 47, 82, 0.1);
    display: none;
}

.mm-aside__figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 6 / 7;
    object-fit: cover;
}

.mm-aside__note {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(58, 58, 58, 0.58);
}

/* ── Main wizard ── */

.mm-main {
    min-width: 0;
}

.mm-wizard {
    position: relative;
    background: #fff;
    border: 1px solid rgba(226, 217, 240, 0.85);
    border-radius: var(--mm-radius-lg);
    box-shadow: var(--mm-shadow-soft);
    padding: clamp(1.35rem, 2.5vw, 2.15rem);
    min-height: 26rem;
    overflow: hidden;
}

.mm-wizard__bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(226, 217, 240, 0.55);
}

.mm-wizard__bar-fill {
    display: block;
    height: 100%;
    width: var(--mm-progress, 0%);
    background: linear-gradient(90deg, var(--lav700), #4d6b54);
    border-radius: 0 2px 2px 0;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-wizard__stage {
    position: relative;
    z-index: 1;
}

.mm-step {
    animation: mm-rise 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes mm-rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mm-step__kicker {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mm-step__title {
    margin: 0 0 0.65rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.4vw, 1.95rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--lav900);
}

.mm-step__subtitle,
.mm-step__body {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(58, 58, 58, 0.78);
    max-width: 40rem;
}

.mm-step__note {
    margin: 0 0 1.25rem;
    padding: 0.75rem 0.95rem;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--lav800);
    border-radius: calc(var(--md-radius) + 2px);
    background: var(--lav100);
    border-left: 3px solid var(--lav700);
    max-width: 40rem;
}

.mm-step--intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
    gap: 1.5rem;
    align-items: center;
}

.mm-step__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1.15rem;
}

.mm-step__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lav800);
    background: var(--lav100);
    border: 1px solid rgba(226, 217, 240, 0.9);
}

.mm-step__figure {
    margin: 0;
    border-radius: calc(var(--md-radius) + 6px);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(61, 47, 82, 0.1);
}

.mm-step__figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.mm-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.65rem;
}

.mm-option {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    width: 100%;
    padding: 1.05rem 1.05rem 1.05rem 1rem;
    border: 1.5px solid rgba(226, 217, 240, 0.95);
    border-radius: calc(var(--md-radius) + 4px);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.mm-option:hover {
    border-color: rgba(138, 111, 168, 0.5);
    box-shadow: 0 10px 28px rgba(61, 47, 82, 0.07);
    transform: translateY(-2px);
}

.mm-option.is-selected {
    border-color: var(--lav700);
    background: linear-gradient(165deg, #fff 0%, var(--lav100) 100%);
    box-shadow: 0 0 0 1px rgba(91, 66, 117, 0.12), 0 12px 32px rgba(61, 47, 82, 0.08);
}

.mm-option__check {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: var(--lav700);
    color: #fff;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.mm-option.is-selected .mm-option__check {
    opacity: 1;
    transform: scale(1);
}

.mm-option__check svg {
    width: 0.75rem;
    height: 0.75rem;
}

.mm-option__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--lav100), #fff);
    color: var(--lav800);
    border: 1px solid rgba(226, 217, 240, 0.8);
}

.mm-option.is-selected .mm-option__icon {
    background: linear-gradient(145deg, var(--lav200), var(--lav100));
    border-color: rgba(138, 111, 168, 0.35);
}

.mm-option__icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.mm-option__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
    padding-right: 1.25rem;
}

.mm-option__text strong {
    font-size: 0.97rem;
    color: var(--lav900);
    line-height: 1.35;
}

.mm-option__text span {
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(58, 58, 58, 0.68);
}

.mm-step__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(226, 217, 240, 0.65);
}

.mm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.85rem;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.mm-btn--primary {
    background: #4d6b54;
    color: #fff;
    border-color: #4d6b54;
    box-shadow: 0 8px 22px rgba(77, 107, 84, 0.22);
}

.mm-btn--primary:hover:not(:disabled) {
    background: #3f5846;
    border-color: #3f5846;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(77, 107, 84, 0.28);
}

.mm-btn--primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.mm-btn--ghost {
    background: transparent;
    color: var(--lav900);
    border-color: rgba(91, 66, 117, 0.22);
}

.mm-btn--ghost:hover {
    background: rgba(226, 217, 240, 0.35);
    color: var(--lav900);
    text-decoration: none;
}

.mm-btn--sm {
    min-height: 2.4rem;
    padding: 0.5rem 0.95rem;
    font-size: 0.86rem;
    box-shadow: none;
}

.mm-step--loading,
.mm-step--error {
    text-align: center;
    padding: 3rem 1rem 2.5rem;
}

.mm-loading__visual {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.25rem;
}

.mm-spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(226, 217, 240, 0.8);
    border-top-color: var(--lav700);
    animation: mm-spin 0.85s linear infinite;
}

.mm-loading__pulse {
    position: absolute;
    inset: 0.65rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--lav100), var(--sage50));
    animation: mm-pulse 1.6s ease-in-out infinite;
}

@keyframes mm-spin {
    to { transform: rotate(360deg); }
}

@keyframes mm-pulse {
    0%, 100% { transform: scale(0.92); opacity: 0.75; }
    50% { transform: scale(1); opacity: 1; }
}

.mm-loading__dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
}

.mm-loading__dots span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--lav700);
    animation: mm-dot 1.2s ease-in-out infinite;
}

.mm-loading__dots span:nth-child(2) { animation-delay: 0.15s; }
.mm-loading__dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes mm-dot {
    0%, 80%, 100% { opacity: 0.25; transform: scale(0.85); }
    40% { opacity: 1; transform: scale(1); }
}

/* ── Results ── */

.mm-results {
    background: #fff;
    border: 1px solid rgba(226, 217, 240, 0.85);
    border-radius: var(--mm-radius-lg);
    box-shadow: var(--mm-shadow-soft);
    padding: clamp(1.35rem, 2.5vw, 2.15rem);
    animation: mm-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mm-results__hero {
    margin-bottom: 2rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: calc(var(--md-radius) + 6px);
    background:
        radial-gradient(circle at 100% 0%, rgba(132, 161, 141, 0.16) 0%, transparent 42%),
        linear-gradient(135deg, var(--lav100) 0%, #fff 55%, var(--sage50) 100%);
    border: 1px solid rgba(226, 217, 240, 0.85);
    text-align: center;
}

.mm-results__hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 0.75rem;
    border-radius: 50%;
    background: #fff;
    color: #4d6b54;
    box-shadow: 0 8px 20px rgba(77, 107, 84, 0.18);
}

.mm-results__hero-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.mm-results__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mm-results__title {
    margin: 0 0 0.65rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--lav900);
    max-width: 28ch;
    margin-left: auto;
    margin-right: auto;
}

.mm-results__insight {
    margin: 0 auto;
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(58, 58, 58, 0.78);
}

.mm-results__block {
    margin-bottom: 2rem;
    padding-top: 0.25rem;
}

.mm-results__block--therapists {
    margin-bottom: 2.25rem;
}

.mm-results__block-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.mm-results__block-head h3 {
    margin: 0 0 0.25rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--lav900);
}

.mm-results__block-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--lav100), #fff);
    color: var(--lav800);
    border: 1px solid rgba(226, 217, 240, 0.85);
}

.mm-results__block-icon--soft {
    background: linear-gradient(145deg, var(--sage50), #fff);
    color: #4d6b54;
}

.mm-results__block-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.mm-results__sub {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(58, 58, 58, 0.62);
}

.mm-card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.mm-card-row--conditions {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.mm-resource-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(226, 217, 240, 0.85);
    border-radius: calc(var(--md-radius) + 4px);
    overflow: hidden;
    background: #fff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    animation: mm-rise 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mm-resource-card:hover {
    border-color: rgba(138, 111, 168, 0.45);
    box-shadow: var(--mm-shadow-lift);
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}

.mm-resource-card__media {
    aspect-ratio: 16 / 9;
    background: var(--lav100);
    overflow: hidden;
}

.mm-resource-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.mm-resource-card:hover .mm-resource-card__media img {
    transform: scale(1.04);
}

.mm-resource-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    color: var(--lav700);
    background: linear-gradient(135deg, var(--lav100), var(--sage50));
}

.mm-resource-card__body {
    padding: 1.05rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mm-resource-card__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mm-resource-card__body h4 {
    margin: 0 0 0.45rem;
    font-size: 1.02rem;
    color: var(--lav900);
}

.mm-resource-card__body p {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(58, 58, 58, 0.72);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.mm-resource-card__link {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--lav800);
}

.mm-resource-card--condition {
    background: linear-gradient(180deg, #fff 0%, var(--sage50) 100%);
}

.mm-therapist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .mm-therapist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.mm-therapist-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 217, 240, 0.85);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(61, 47, 82, 0.05);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    animation: mm-rise 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
    min-width: 0;
}

.mm-therapist-card:hover {
    border-color: rgba(138, 111, 168, 0.4);
    box-shadow: var(--mm-shadow-lift);
    transform: translateY(-2px);
}

.mm-therapist-card__top {
    position: relative;
    flex-shrink: 0;
}

.mm-therapist-card__photo {
    display: block;
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, var(--lav100) 0%, #fff 100%);
    overflow: hidden;
}

.mm-therapist-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.mm-therapist-card:hover .mm-therapist-card__photo img {
    transform: scale(1.03);
}

.mm-therapist-card__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 10rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.25rem;
    color: var(--lav800);
    background: linear-gradient(145deg, var(--lav200) 0%, var(--lav100) 100%);
}

.mm-therapist-card__avail-badge {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #3d5a45;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(132, 161, 141, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: calc(100% - 1.5rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mm-therapist-card__avail-badge::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #4d6b54;
    flex-shrink: 0;
}

.mm-therapist-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.05rem 1.1rem;
    min-width: 0;
}

.mm-therapist-card__body h4 {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.mm-therapist-card__body h4 a {
    color: var(--lav900);
    text-decoration: none;
}

.mm-therapist-card__body h4 a:hover {
    color: var(--lav800);
}

.mm-therapist-card__designation {
    margin: 0 0 0.55rem;
    font-size: 0.84rem;
    line-height: 1.4;
    color: rgba(58, 58, 58, 0.68);
}

.mm-therapist-card__meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    margin-bottom: 0.55rem;
}

.mm-therapist-card__meta {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(58, 58, 58, 0.62);
}

.mm-therapist-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 0.65rem;
}

.mm-tag {
    display: inline-block;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: var(--lav100);
    color: var(--lav800);
    font-size: 0.72rem;
    font-weight: 600;
}

.mm-therapist-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(226, 217, 240, 0.65);
}

.mm-therapist-card__price {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lav900);
    white-space: nowrap;
}

.mm-therapist-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}

.mm-results__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    padding: clamp(1.15rem, 2vw, 1.45rem);
    border-radius: calc(var(--md-radius) + 6px);
    background: linear-gradient(135deg, rgba(77, 107, 84, 0.08) 0%, var(--lav100) 50%, #fff 100%);
    border: 1px solid rgba(226, 217, 240, 0.85);
}

.mm-results__cta-eyebrow {
    margin: 0 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4d6b54;
}

.mm-results__cta-lead {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.5;
    color: rgba(58, 58, 58, 0.75);
    max-width: 28rem;
}

.mm-results__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.mm-results__disclaimer {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(58, 58, 58, 0.58);
}

/* Staggered card entrance */
.mm-therapist-card:nth-child(2) { animation-delay: 0.06s; }
.mm-therapist-card:nth-child(3) { animation-delay: 0.12s; }
.mm-therapist-card:nth-child(4) { animation-delay: 0.18s; }
.mm-resource-card:nth-child(2) { animation-delay: 0.05s; }
.mm-resource-card:nth-child(3) { animation-delay: 0.1s; }

/* ── Responsive ── */

@media (min-width: 900px) {
    .mm-aside__figure {
        display: block;
    }
}

@media (max-width: 900px) {
    .mm-shell {
        grid-template-columns: 1fr;
    }

    .mm-aside {
        position: static;
    }

    .mm-progress {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding-left: 0;
    }

    .mm-progress::before {
        display: none;
    }

    .mm-progress__item {
        padding: 0;
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        min-width: 3.5rem;
        text-align: center;
        font-size: 0.72rem;
    }

    .mm-aside__features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mm-aside__features li {
        flex: 1 1 auto;
    }

    .mm-step--intro {
        grid-template-columns: 1fr;
    }

    .mm-step__figure {
        order: -1;
        max-width: 280px;
    }

    .mm-results__cta {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .mm-options {
        grid-template-columns: 1fr;
    }

    .mm-results__actions,
    .mm-step__nav {
        flex-direction: column;
        align-items: stretch;
    }

    .mm-results__actions .mm-btn,
    .mm-step__nav .mm-btn {
        width: 100%;
        text-align: center;
    }

    .mm-therapist-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .mm-therapist-card__actions {
        justify-content: stretch;
    }

    .mm-therapist-card__actions .mm-btn {
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mm-step,
    .mm-results,
    .mm-therapist-card,
    .mm-resource-card,
    .mm-wizard__bar-fill,
    .mm-spinner,
    .mm-loading__pulse,
    .mm-loading__dots span {
        animation: none !important;
        transition: none !important;
    }

    .mm-option:hover,
    .mm-resource-card:hover,
    .mm-therapist-card:hover {
        transform: none;
    }
}
