/* Homepage offer strip + smart hero — homepage only */

.mendify-offer-strip {
    background: #4B3564;
    color: #fff;
    padding: 14px 20px;
    position: relative;
    z-index: 5;
}

.mendify-offer-strip[hidden],
.mendify-offer-strip.is-dismissed {
    display: none !important;
}

.mendify-offer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.mendify-offer-text {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #F7F3FB;
}

.mendify-offer-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    margin-left: 0.35rem;
    white-space: nowrap;
    transition: border-color 0.15s ease;
}

.mendify-offer-link:hover {
    border-bottom-color: #fff;
}

.mendify-offer-close {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #E9DDF8;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.mendify-offer-close__icon {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 400;
    pointer-events: none;
}

.mendify-offer-close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.mendify-offer-close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .mendify-offer-strip {
        padding: 12px 16px;
    }

    .mendify-offer-inner {
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .mendify-offer-text {
        text-align: left;
        font-size: 14px;
    }

    .mendify-offer-link {
        white-space: normal;
        margin-left: 0.2rem;
    }
}

/* Trust strip + category marquee — homepage only */

.mendify-trust-marquee-section {
    background: #fff;
    border-top: 1px solid var(--lav200);
    border-bottom: 1px solid var(--lav200);
    max-width: 100vw;
    overflow: hidden;
}

.mendify-trust-marquee-section *,
.mendify-trust-marquee-section *::before,
.mendify-trust-marquee-section *::after {
    box-sizing: border-box;
}

.trust-strip {
    border-bottom: 1px solid var(--lav200);
    background: #fff;
}

.trust-strip-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(1rem, 2.5vw, 2.25rem);
    padding: 0.85rem 1.25rem;
}

.tsi {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    flex: 0 0 auto;
}

.tsi-emoji {
    font-size: 1.05rem;
    line-height: 1;
}

.tsd {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--lav900);
    letter-spacing: 0.01em;
}

.marquee-wrap {
    background: var(--sage50);
    overflow: hidden;
    max-width: 100%;
    padding: 0.65rem 0;
}

.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0.65rem;
    padding: 0 0.5rem;
    animation: mendifyMarquee 34s linear infinite;
    will-change: transform;
}

.mt-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    flex: 0 0 auto;
    border: 1px solid transparent;
}

.mt-item.sage {
    background: var(--sage100);
    color: var(--sage900);
    border-color: rgba(196, 217, 192, 0.65);
}

.mt-item.lav {
    background: var(--lav100);
    color: var(--lav800);
    border-color: rgba(226, 217, 240, 0.85);
}

.mt-item__icon {
    font-size: 1rem;
    line-height: 1;
}

.mt-item__label {
    line-height: 1.2;
}

@keyframes mendifyMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 991px) {
    .trust-strip-inner {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.75rem 1rem;
        gap: 1.25rem;
    }

    .trust-strip-inner::-webkit-scrollbar {
        display: none;
    }

    .tsd {
        font-size: 0.85rem;
    }

    .mt-item {
        padding: 0.4rem 0.75rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 767px) {
    .trust-strip-inner {
        padding: 0.65rem 0.85rem;
        gap: 1rem;
    }

    .tsd {
        font-size: 0.8rem;
    }

    .tsi-emoji {
        font-size: 0.95rem;
    }

    .marquee-wrap {
        padding: 0.55rem 0;
    }

    .mt-item {
        font-size: 0.78rem;
        padding: 0.35rem 0.65rem;
    }

    .marquee-track {
        gap: 0.5rem;
    }
}

@media (max-width: 540px) {
    .tsd {
        font-size: 14px;
    }

    .mt-item {
        font-size: 14px;
    }
}

/* Mendify Smart Hero — scoped under .mendify-smart-hero / .mh- */

.mendify-smart-hero {
    --mh-purple: #61467D;
    --mh-sage: #84A18D;
    --mh-pink: #E4A5C6;
    --mh-off-white: #F8F5F2;
    --mh-lavender: #CAC4D2;
    --mh-charcoal: #3A3A3A;
    --mh-yellow: #FCD789;
    box-sizing: border-box;
    background: linear-gradient(165deg, #faf7f4 0%, #f3eef8 42%, #eef4f0 100%);
    padding: 1.75rem 0 2.5rem;
    overflow: hidden;
}

.mendify-smart-hero *,
.mendify-smart-hero *::before,
.mendify-smart-hero *::after {
    box-sizing: border-box;
}

.mh-wrap {
    width: min(1180px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: center;
}

.mh-left {
    min-width: 0;
}

.mh-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(97, 70, 125, 0.12);
    color: var(--mh-purple);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 18px rgba(97, 70, 125, 0.06);
}

.mh-pill__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: var(--mh-sage);
}

.mh-pill__icon svg {
    width: 100%;
    height: 100%;
}

.mh-headline {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4.8vw, 3.35rem);
    line-height: 1.08;
    color: var(--mh-purple);
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mh-headline-em {
    font-style: italic;
    color: var(--mh-sage);
    font-weight: 700;
}

.mh-subtext {
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.65;
    color: rgba(58, 58, 58, 0.82);
    max-width: 540px;
    margin: 0 0 1.5rem;
}

.mh-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.mh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.72rem 1.35rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.mh-btn:hover {
    transform: translateY(-1px);
}

.mh-btn__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.mh-btn__icon svg {
    width: 100%;
    height: 100%;
}

.mh-btn__icon--play svg {
    width: 14px;
    height: 14px;
}

.mh-btn--primary {
    background: var(--mh-sage);
    color: #fff;
    box-shadow: 0 8px 24px rgba(132, 161, 141, 0.35);
}

.mh-btn--ghost {
    background: rgba(255, 255, 255, 0.75);
    color: var(--mh-purple);
    border: 1.5px solid rgba(97, 70, 125, 0.18);
}

.mh-btn--store {
    background: #fff;
    color: var(--mh-purple);
    border: 1.5px solid rgba(97, 70, 125, 0.16);
    box-shadow: 0 6px 20px rgba(97, 70, 125, 0.08);
}

.mh-btn--store:hover {
    background: #fff;
    border-color: rgba(97, 70, 125, 0.28);
    color: var(--mh-purple);
}

.mh-btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.mh-btn--block {
    width: 100%;
}

.mh-btn--compact {
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    margin-top: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
}

/* Dashboard card */
.mh-right {
    min-width: 0;
}

.mh-dashboard {
    background: linear-gradient(160deg, #6b4f88 0%, var(--mh-purple) 55%, #543d6e 100%);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(97, 70, 125, 0.28);
    overflow: hidden;
    color: #fff;
}

.mh-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: rgba(0, 0, 0, 0.12);
    font-size: 0.82rem;
}

.mh-card-top__badge {
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mh-card-top__label {
    opacity: 0.75;
}

.mh-card-body {
    padding: 1.35rem 1.25rem 1.25rem;
}

.mh-greeting {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.mh-guest-intro {
    margin-bottom: 1.15rem;
}

.mh-guest-title {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.mh-guest-sub {
    margin: 0;
    opacity: 0.88;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mh-session {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 1.15rem;
}

.mh-session--empty {
    text-align: center;
}

.mh-session--empty .mh-session__icon {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 0.5rem;
    opacity: 0.85;
}

.mh-session--empty .mh-btn--compact {
    margin-top: 0.5rem;
}

.mh-session--empty p {
    margin: 0.25rem 0;
}

.mh-session__hint {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.75rem !important;
}

.mh-session__head {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.mh-session__head strong {
    display: block;
    font-size: 0.95rem;
}

.mh-session__head span {
    display: block;
    font-size: 0.82rem;
    opacity: 0.85;
}

.mh-session__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.mh-session__icon svg {
    width: 100%;
    height: 100%;
}

.mh-session__meta {
    font-size: 0.86rem;
    opacity: 0.88;
    margin: 0 0 0.65rem;
    line-height: 1.45;
}

.mh-session__link,
.mh-session__details {
    display: inline-block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--mh-yellow);
    text-decoration: none;
    margin-right: 0.85rem;
}

.mh-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.mh-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 7.25rem;
    padding: 1rem 0.65rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.mh-quick-item:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.mh-quick-item__icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    flex-shrink: 0;
}

.mh-quick-item__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh-quick-item__label {
    display: block;
    max-width: 100%;
}

.mh-quick-item svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 960px) {
    .mh-wrap {
        grid-template-columns: 1fr;
    }

    .mh-headline {
        font-size: clamp(1.85rem, 6vw, 2.5rem);
    }
}

@media (max-width: 540px) {
    .mendify-smart-hero {
        padding: 1.25rem 0 2rem;
    }

    .mh-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mh-actions .mh-btn {
        width: 100%;
    }

    .mh-quick-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Our Story / Regional tabs — homepage only */

.mendify-story-tabs {
    background: #3D2F52;
    color: #fff;
    padding: clamp(3.5rem, 8vw, 6.25rem) 0;
    overflow: hidden;
    max-width: 100vw;
}

.mendify-story-tabs *,
.mendify-story-tabs *::before,
.mendify-story-tabs *::after {
    box-sizing: border-box;
}

.mstory-wrap {
    width: min(1320px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.mstory-left {
    min-width: 0;
}

.mstory-kicker {
    margin: 0 0 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lav300);
}

.mstory-left h2 {
    margin: 0 0 1.35rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.2vw, 3.15rem);
    font-weight: 400;
    line-height: 1.12;
    color: #fff;
}

.mstory-left h2 span {
    font-style: italic;
    color: var(--lav300);
}

.mstory-left p {
    margin: 0;
    max-width: 34rem;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--lav200);
}

.mstory-right {
    min-width: 0;
}

.mstory-image-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    width: 100%;
    min-height: clamp(220px, 42vw, 420px);
    aspect-ratio: 16 / 11;
    background: #3D2F52;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.mstory-media-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.mstory-media-wrap[hidden] {
    display: none !important;
}

.mstory-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mstory-image-card.is-switching .mstory-image-bar,
.mstory-image-card.is-switching .mstory-media-wrap,
.mstory-image-card.is-switching .mstory-video,
.mstory-image-card.is-switching .mstory-placeholder {
    opacity: 0.45;
    transition: opacity 0.22s ease;
}

.mstory-video {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mstory-video[hidden] {
    display: none !important;
}

.mstory-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

.mstory-placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: linear-gradient(160deg, rgba(91, 66, 117, 0.95) 0%, rgba(61, 47, 82, 0.98) 50%, rgba(42, 32, 56, 1) 100%);
}

.mstory-placeholder[hidden] {
    display: none !important;
}

.mstory-placeholder__label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lav200);
    text-align: center;
    letter-spacing: 0.02em;
}

.mstory-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(29, 22, 40, 0) 0%, rgba(29, 22, 40, 0.12) 50%, rgba(29, 22, 40, 0.55) 100%);
    pointer-events: none;
}

.mstory-image-bar {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3;
    transition: opacity 0.22s ease;
}

.mstory-image-bar strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.2rem;
    line-height: 1.35;
}

.mstory-image-bar span {
    display: block;
    font-size: 0.82rem;
    color: var(--lav200);
}

.mstory-tabs {
    display: grid;
    grid-template-columns: repeat(var(--mstory-tab-cols, 4), minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1rem;
}

.mstory-tabs button,
.mstory-tab {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--lav200);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.75rem 0.65rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    text-align: center;
    line-height: 1.25;
}

.mstory-tabs button:hover,
.mstory-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mstory-tabs button.active,
.mstory-tab.active {
    background: #83a08c;
    border-color: #83a08c;
    color: #fff;
}

@media (max-width: 991px) {
    .mstory-wrap {
        grid-template-columns: 1fr;
    }

    .mstory-left p {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .mendify-story-tabs {
        padding: 2.75rem 0 3rem;
    }

    .mstory-left h2 {
        font-size: clamp(1.75rem, 7vw, 2.35rem);
    }

    .mstory-left p {
        font-size: 0.95rem;
    }

    .mstory-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mstory-tabs button,
    .mstory-tab {
        font-size: 0.82rem;
        padding: 0.65rem 0.5rem;
    }

    .mstory-image-bar {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }
}

/* Featured therapists — homepage only */

.mendify-experts {
    background: #F8F5FC;
    padding: 50px 0 60px;
    overflow: hidden;
    max-width: 100vw;
}

.mendify-experts *,
.mendify-experts *::before,
.mendify-experts *::after {
    box-sizing: border-box;
}

.mendify-experts__wrap {
    width: min(1320px, 92vw);
    margin: 0 auto;
}

.mendify-experts__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mendify-experts__head-left {
    min-width: 0;
    flex: 1 1 auto;
}

.mendify-experts__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mendify-experts__head h2 {
    margin: 0 0 0.75rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.8vw, 2.85rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--lav900);
}

.mendify-experts__head h2 span {
    font-style: italic;
    color: var(--lav800);
}

.mendify-experts__sub {
    margin: 0;
    max-width: 38rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #5f5470;
}

.mendify-experts__browse-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--lav300);
    background: #fff;
    color: var(--lav900);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.mendify-experts__browse-btn:hover {
    background: var(--lav100);
    border-color: var(--lav800);
}

.mendify-experts__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.mendify-therapist-card {
    background: #fff;
    border: 1px solid #E2D9F0;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    box-shadow: 0 8px 28px rgba(61, 47, 82, 0.05);
}

.mendify-therapist-card__top {
    position: relative;
    height: 180px;
    background: linear-gradient(145deg, var(--lav100) 0%, #fff 100%);
}

.mendify-card-img-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.mendify-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mendify-card-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    font-weight: 700;
    color: var(--lav800);
    background: linear-gradient(145deg, var(--lav200) 0%, var(--lav100) 100%);
}

.mendify-therapist-exp-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 1.5rem);
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--lav900);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(47, 36, 56, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

.mendify-therapist-card__top .ft-audio-player--overlay {
    position: absolute;
    left: 50%;
    bottom: 0.65rem;
    transform: translateX(-50%);
    width: calc(100% - 1.35rem);
    max-width: 16rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mendify-therapist-card__top .ft-audio-player--overlay:hover {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(26, 26, 26, 0.12);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.12);
    transform: translateX(-50%) translateY(-1px);
}

.mendify-therapist-card__top .ft-audio-player--overlay .ft-audio-player__time {
    min-width: 3.6rem;
    font-size: 0.72rem;
}

.mendify-therapist-card__body {
    padding: 0.95rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}

.mendify-name-link {
    display: block;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.mendify-name-link h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lav900);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mendify-name-link:hover h3 {
    color: var(--lav800);
}

.mendify-therapist-designation {
    margin: 0 0 0.55rem;
    font-size: 0.82rem;
    color: #6b6078;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mendify-therapist-meta-static {
    margin: 0 0 0.65rem;
    font-size: 0.76rem;
    line-height: 1.45;
    color: #6f647d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mendify-scroller {
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.mendify-scroller__inner {
    overflow: hidden;
}

.mendify-therapist-tags {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: max-content;
    animation: mendifyTagsScroll 22s linear infinite;
}

.tags-scroller:hover .mendify-therapist-tags {
    animation-play-state: paused;
}

.mendify-therapist-tags span {
    display: inline-block;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: var(--lav100);
    color: var(--lav800);
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
}

.mendify-therapist-btn {
    display: block;
    margin-top: auto;
    padding: 0.62rem 0.85rem;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}

.mendify-therapist-btn.lav {
    background: #83a08c;
    color: #fff;
}

.mendify-therapist-btn.lav:hover {
    background: #739580;
}

.mendify-experts__empty {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px dashed var(--lav300);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
}

.mendify-experts__empty h3 {
    margin: 0 0 0.5rem;
    color: var(--lav900);
    font-size: 1.25rem;
}

.mendify-experts__empty p {
    margin: 0 0 1rem;
    color: #6b6078;
}

.mendify-experts__bottom {
    margin-top: 2rem;
    text-align: center;
}

.mendify-experts__more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--lav300);
    background: #fff;
    color: var(--lav900);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.mendify-experts__more-btn:hover {
    background: var(--lav100);
    border-color: var(--lav800);
}

@keyframes mendifyTagsScroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes mendifyAudioBar {
    0%, 100% {
        transform: scaleY(0.45);
    }
    50% {
        transform: scaleY(1);
    }
}

@media (max-width: 1400px) {
    .mendify-experts__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1150px) {
    .mendify-experts__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .mendify-experts__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .mendify-experts__browse-btn {
        white-space: normal;
    }
}

@media (max-width: 900px) {
    .mendify-experts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .mendify-experts {
        padding: 2.5rem 0 3rem;
    }

    .mendify-therapist-card__top {
        height: 140px;
    }

    .mendify-experts__head h2 {
        font-size: clamp(1.75rem, 7vw, 2.2rem);
    }

    .mendify-experts__sub {
        font-size: 0.92rem;
    }
}

/* Clinics / locations tabs — homepage only */

.mendify-locations {
    background: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
    max-width: 100vw;
}

.mendify-locations *,
.mendify-locations *::before,
.mendify-locations *::after {
    box-sizing: border-box;
}

.mendify-locations__wrap {
    width: min(1280px, 92vw);
    margin: 0 auto;
}

.mendify-locations__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.mendify-locations__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mendify-locations__head h2 {
    margin: 0 0 0.85rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--lav900);
}

.mendify-locations__head h2 span {
    display: block;
    font-style: italic;
    color: var(--lav800);
}

.mendify-locations__sub {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #6b6078;
}

.mendify-locations__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
}

.mendify-locations__tabs button,
.mendify-locations__tab {
    appearance: none;
    border: 1px solid var(--lav300);
    background: #fff;
    color: var(--lav800);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mendify-locations__tabs button:hover,
.mendify-locations__tab:hover {
    background: var(--lav100);
}

.mendify-locations__tabs button.active,
.mendify-locations__tab.active {
    background: #3D2F52;
    border-color: #3D2F52;
    color: #fff;
}

.mendify-loc-panel {
    display: none;
}

.mendify-loc-panel.active {
    display: block;
}

.mendify-loc-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem;
    background: #F8F5FC;
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid var(--lav200);
}

.mendify-loc-card__left {
    min-width: 0;
}

.mendify-loc-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(131, 160, 140, 0.16);
    color: #4f6f57;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #83a08c;
    box-shadow: 0 0 0 rgba(131, 160, 140, 0.45);
    animation: mendifyPulseDot 1.8s ease-in-out infinite;
}

.mendify-loc-card__left h3 {
    margin: 0 0 0.65rem;
    font-size: 1.45rem;
    color: var(--lav900);
    line-height: 1.25;
}

.mendify-loc-desc {
    margin: 0 0 1rem;
    color: #6b6078;
    line-height: 1.6;
    font-size: 0.95rem;
}

.mendify-loc-details {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.mendify-loc-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #5f5470;
}

.mendify-loc-detail__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--lav800);
    margin-top: 0.1rem;
}

.mendify-loc-detail__icon svg {
    width: 100%;
    height: 100%;
}

.mendify-loc-detail a {
    color: inherit;
    text-decoration: none;
}

.mendify-loc-detail a:hover {
    color: var(--lav900);
    text-decoration: underline;
}

.mendify-loc-pills-wrap {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.mendify-loc-box strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lav800);
    margin-bottom: 0.45rem;
}

.mendify-loc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.mendify-loc-pills span {
    display: inline-block;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--lav300);
    color: var(--lav800);
    font-size: 0.75rem;
    font-weight: 600;
}

.mendify-loc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.25rem;
    border-radius: 999px;
    background: #83a08c;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
}

.mendify-loc-btn:hover {
    background: #739580;
}

.mendify-loc-card__visuals {
    display: grid;
    gap: 0.85rem;
    min-width: 0;
}

.mendify-loc-image,
.mendify-loc-map {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--lav200) 0%, var(--lav100) 100%);
}

.mendify-loc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mendify-loc-image__placeholder,
.mendify-loc-map__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    text-align: center;
    color: var(--lav800);
}

.mendify-loc-image__placeholder span {
    font-weight: 600;
}

.mendify-loc-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.mendify-loc-map__placeholder p {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
}

.mendify-loc-map__placeholder span {
    width: 28px;
    height: 28px;
    color: var(--lav800);
}

.mendify-loc-map__placeholder svg {
    width: 100%;
    height: 100%;
}

@media (min-width: 1101px) {
    .mendify-loc-card {
        align-items: stretch;
    }

    .mendify-loc-card__visuals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: minmax(0, 1fr);
        align-content: stretch;
        height: 100%;
        min-height: 0;
    }

    .mendify-loc-image,
    .mendify-loc-map {
        aspect-ratio: auto;
        height: 100%;
        min-height: 0;
    }
}

.mendify-loc-soon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    border-radius: 28px;
    background: #F8F5FC;
    border: 1px solid var(--lav200);
}

.mendify-loc-soon__left {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0;
}

.mendify-loc-soon__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--lav300);
    color: var(--lav800);
}

.mendify-loc-soon__icon svg {
    width: 22px;
    height: 22px;
}

.mendify-loc-soon__info h3 {
    margin: 0.35rem 0 0.35rem;
    font-size: 1.25rem;
    color: var(--lav900);
}

.mendify-loc-soon__date {
    margin: 0 0 0.35rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--lav700);
}

.mendify-loc-soon__info p {
    margin: 0;
    color: #6b6078;
    line-height: 1.55;
    font-size: 0.92rem;
}

.mendify-badge-soon {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(97, 70, 125, 0.12);
    color: var(--lav800);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mendify-loc-soon__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    flex-shrink: 0;
}

.mendify-soon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.68rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--lav300);
    background: #fff;
    color: var(--lav900);
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.mendify-soon-btn--primary {
    background: #83a08c;
    border-color: #83a08c;
    color: #fff;
}

.mendify-soon-btn--primary:hover {
    background: #739580;
}

.mendify-soon-btn:hover {
    background: var(--lav100);
}

@keyframes mendifyPulseDot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(131, 160, 140, 0.45);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(131, 160, 140, 0);
    }
}

@media (max-width: 1100px) {
    .mendify-loc-card {
        grid-template-columns: 1fr;
    }

    .mendify-loc-card__visuals {
        min-height: 0;
    }

    .mendify-loc-soon {
        flex-direction: column;
        align-items: stretch;
    }

    .mendify-loc-soon__actions {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .mendify-locations {
        padding: 60px 16px;
    }

    .mendify-locations__head h2 {
        font-size: 34px;
    }

    .mendify-locations__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
        scrollbar-width: none;
    }

    .mendify-locations__tabs::-webkit-scrollbar {
        display: none;
    }

    .mendify-loc-details {
        grid-template-columns: 1fr;
    }

    .mendify-loc-card__visuals {
        gap: 0.75rem;
    }

    .mendify-loc-soon__actions {
        flex-direction: column;
    }

    .mendify-soon-btn {
        width: 100%;
        white-space: normal;
    }

    .mendify-loc-btn {
        width: 100%;
    }
}

/* Mobile app process — homepage only */

.mendify-app-process {
    position: relative;
    background: #F8F5FC;
    padding: 100px 20px 110px;
    overflow: hidden;
    max-width: 100vw;
}

.mendify-app-process *,
.mendify-app-process *::before,
.mendify-app-process *::after {
    box-sizing: border-box;
}

.mendify-app-process__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(226, 217, 240, 0.45) 0%, transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(196, 217, 192, 0.28) 0%, transparent 40%);
    pointer-events: none;
}

.mendify-app-process__wrap {
    position: relative;
    z-index: 1;
    width: min(1320px, 92vw);
    margin: 0 auto;
}

.mendify-app-process__head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: end;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.mendify-app-process__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mendify-app-process__head h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--lav900);
}

.mendify-app-process__head h2 span {
    display: block;
    font-style: italic;
    background: linear-gradient(120deg, var(--lav800) 0%, #8a6fa8 55%, var(--lav800) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mendify-app-process__head-right p {
    margin: 0 0 1.15rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #6b6078;
    max-width: 34rem;
}

.mendify-app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.mendify-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem 0.55rem 0.75rem;
    border-radius: 12px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-width: 170px;
}

.mendify-download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(26, 26, 26, 0.18);
}

.mendify-download-btn .icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    color: #a4c639;
}

.mendify-download-btn .icon svg {
    width: 100%;
    height: 100%;
}

.mendify-download-btn .text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mendify-download-btn .text small {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.mendify-download-btn .text strong {
    font-size: 1rem;
    font-weight: 600;
}

.mendify-app-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.mendify-step-card {
    position: relative;
    background: #fff;
    border-radius: 32px;
    padding: 1.35rem 1.25rem 1.4rem;
    border: 1px solid rgba(226, 217, 240, 0.85);
    box-shadow: 0 14px 40px rgba(61, 47, 82, 0.06);
    min-width: 0;
}

.mendify-step-card.active {
    border-color: rgba(131, 160, 140, 0.55);
    box-shadow: 0 18px 48px rgba(131, 160, 140, 0.14);
    background: linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
}

.mendify-step-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mendify-step-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--lav100);
    color: var(--lav800);
}

.mendify-step-card__icon.highlight {
    background: rgba(131, 160, 140, 0.18);
    color: #4f6f57;
}

.mendify-step-card__icon svg {
    width: 22px;
    height: 22px;
}

.mendify-step-badge {
    display: inline-block;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: var(--lav100);
    color: var(--lav800);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.mendify-step-badge.highlight {
    background: rgba(131, 160, 140, 0.18);
    color: #4f6f57;
}

.mendify-step-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    color: var(--lav900);
    line-height: 1.3;
}

.mendify-step-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b6078;
}

.mendify-step-connector {
    position: absolute;
    top: 50%;
    right: -0.72rem;
    width: 1.45rem;
    height: 2px;
    background: linear-gradient(90deg, var(--lav300) 0%, rgba(226, 217, 240, 0.2) 100%);
    transform: translateY(-50%);
    pointer-events: none;
}

.mendify-step-connector::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--lav300);
    border-right: 2px solid var(--lav300);
    transform: translateY(-50%) rotate(45deg);
}

.mendify-app-process.js-ready .reveal-step {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.mendify-app-process.js-ready .reveal-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .mendify-app-process__head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .mendify-app-process__head-right p {
        max-width: none;
        text-align: left;
    }

    .mendify-app-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mendify-step-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .mendify-app-process {
        padding: 72px 16px;
    }

    .mendify-app-process__head h2 {
        font-size: 36px;
    }

    .mendify-app-process__grid {
        grid-template-columns: 1fr;
    }

    .mendify-step-card {
        padding-bottom: 2rem;
    }

    .mendify-step-connector {
        display: block;
        top: auto;
        bottom: -0.55rem;
        left: 50%;
        right: auto;
        width: 2px;
        height: 1.1rem;
        transform: translateX(-50%);
        background: linear-gradient(180deg, var(--lav300) 0%, rgba(226, 217, 240, 0.2) 100%);
    }

    .mendify-step-connector::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -1px;
        transform: translateX(-50%) rotate(135deg);
    }
}

@media (max-width: 360px) {
    .mendify-app-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .mendify-download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Media & Press — homepage only */

.mendify-news {
    background: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
    max-width: 100vw;
}

.mendify-news *,
.mendify-news *::before,
.mendify-news *::after {
    box-sizing: border-box;
}

.mendify-news__wrap {
    width: min(1320px, 92vw);
    margin: 0 auto;
}

.mendify-news__head {
    text-align: center;
    margin-bottom: 2.25rem;
}

.mendify-news__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mendify-news__head h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--lav900);
}

.mendify-news__head h2 span {
    font-style: italic;
    color: var(--lav800);
}

.mendify-news__sub {
    margin: 0.85rem auto 0;
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #6b6078;
}

.mendify-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.mendify-news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E2D9F0;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    box-shadow: 0 10px 30px rgba(61, 47, 82, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.mendify-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(61, 47, 82, 0.1);
    border-color: var(--lav300);
}

.mendify-news-card__img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--lav100) 0%, var(--lav200) 100%);
}

.news-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-main-img--placeholder {
    display: grid;
    place-items: center;
    color: var(--lav800);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.news-publisher-logo {
    position: absolute;
    left: 1rem;
    bottom: -22px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(61, 47, 82, 0.12);
    overflow: hidden;
    z-index: 2;
}

.news-publisher-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mendify-news-card__content {
    padding: 2rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.mendify-news-card__content h3 {
    margin: 0 0 0.65rem;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--lav900);
}

.mendify-news-card__content p {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #6b6078;
    flex: 1 1 auto;
}

.read-more {
    font-size: 0.88rem;
    font-weight: 700;
    color: #83a08c;
}

.mendify-news-empty {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px dashed var(--lav300);
    border-radius: 24px;
    background: #F8F5FC;
}

.mendify-news-empty h3 {
    margin: 0 0 0.5rem;
    color: var(--lav900);
    font-size: 1.2rem;
}

.mendify-news-empty p {
    margin: 0;
    color: #6b6078;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .mendify-news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .mendify-news {
        padding: 60px 16px;
    }

    .mendify-news__head h2 {
        font-size: 36px;
    }

    .mendify-news__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .mendify-news-card__img-wrap {
        height: 200px;
    }

    .news-publisher-logo {
        width: 60px;
        height: 60px;
    }
}

/* Team, mentors & advisors slider — homepage only */

.mendify-team-slider {
    background: #F8F5FC;
    padding: 88px 20px 96px;
    overflow: hidden;
    max-width: 100vw;
}

.mendify-team-slider *,
.mendify-team-slider *::before,
.mendify-team-slider *::after {
    box-sizing: border-box;
}

.mendify-team-slider__wrap {
    width: min(1320px, 92vw);
    margin: 0 auto;
}

.mendify-team-slider__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mendify-team-slider__head-left {
    min-width: 0;
}

.mendify-team-slider__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mendify-team-slider__head h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--lav900);
}

.mendify-team-slider__head-right {
    flex-shrink: 0;
}

.mendify-team-slider__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.mendify-team-slider__filter {
    appearance: none;
    border: 1px solid var(--lav300);
    background: #fff;
    color: var(--lav800);
    font: inherit;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mendify-team-slider__filter:hover {
    background: var(--lav100);
}

.mendify-team-slider__filter.active {
    background: var(--lav900);
    border-color: var(--lav900);
    color: #fff;
}

.mendify-team-slider__shell {
    position: relative;
}

.mendify-team-slider__nav.desktop-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
    padding: 0 0.25rem;
}

.mendify-team-slider__arrow {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--lav300);
    background: #fff;
    color: var(--lav900);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(61, 47, 82, 0.08);
    transition: background 0.15s ease, transform 0.15s ease;
}

.mendify-team-slider__arrow:hover {
    background: var(--lav100);
    transform: translateY(-1px);
}

.mendify-team-slider__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0 0.25rem;
}

.mendify-team-slider__viewport::-webkit-scrollbar {
    display: none;
}

.mendify-team-slider__track {
    display: flex;
    gap: 1rem;
    width: max-content;
    padding: 0 0.25rem;
}

.mendify-team-card {
    flex: 0 0 310px;
    width: 310px;
    background: #fff;
    border: 1px solid #E2D9F0;
    border-radius: 30px;
    padding: 1.35rem 1.25rem 1.4rem;
    text-align: center;
    box-shadow: 0 14px 40px rgba(61, 47, 82, 0.06);
    scroll-snap-align: start;
}

.mendify-team-card.is-hidden {
    display: none;
}

.mendify-team-card__avatar {
    width: 118px;
    height: 118px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, var(--lav100) 0%, var(--lav200) 100%);
    display: grid;
    place-items: center;
    border: 4px solid #fff;
    box-shadow: 0 10px 28px rgba(61, 47, 82, 0.1);
}

.mendify-team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mendify-team-card__emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.mendify-team-card__initials {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lav800);
}

.mendify-team-card__badge {
    display: inline-block;
    margin-bottom: 0.55rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: var(--lav100);
    color: var(--lav800);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.mendify-team-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    color: var(--lav900);
    line-height: 1.3;
}

.mendify-team-card__role {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #83a08c;
}

.mendify-team-card__desc {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #6b6078;
}

.mendify-team-card__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
}

.mendify-team-card__tags span {
    display: inline-block;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: var(--lav100);
    color: var(--lav800);
    font-size: 0.72rem;
    font-weight: 600;
}

.mendify-team-slider__mobile-nav {
    display: none;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.mendify-team-empty {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px dashed var(--lav300);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
}

.mendify-team-empty h3 {
    margin: 0 0 0.5rem;
    color: var(--lav900);
    font-size: 1.2rem;
}

.mendify-team-empty p {
    margin: 0;
    color: #6b6078;
    line-height: 1.6;
}

@media (max-width: 1150px) {
    .mendify-team-slider__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .mendify-team-slider__head h2 {
        font-size: 48px;
    }

    .mendify-team-slider__filters {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .mendify-team-slider {
        padding: 64px 16px 72px;
    }

    .mendify-team-slider__head h2 {
        font-size: 36px;
    }

    .mendify-team-slider__nav.desktop-nav {
        display: none;
    }

    .mendify-team-slider__mobile-nav {
        display: flex;
    }

    .mendify-team-card {
        flex: 0 0 min(85vw, 320px);
        width: min(85vw, 320px);
    }
}

/* FAQ + Care Team CTA — homepage only */

.mendify-faq-section {
    position: relative;
    background:
        linear-gradient(165deg, var(--sage50) 0%, #f3f0f8 42%, var(--lav100) 100%);
    padding: 96px 20px;
    overflow: hidden;
    max-width: 100vw;
}

.mendify-faq-section *,
.mendify-faq-section *::before,
.mendify-faq-section *::after {
    box-sizing: border-box;
}

.mendify-faq-section__wrap {
    width: min(1320px, 92vw);
    margin: 0 auto;
}

.mendify-faq-section__head {
    max-width: 760px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.mendify-faq-section__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mendify-faq-section__head h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--lav900);
}

.mendify-faq-section__head h2 span {
    display: block;
    font-style: italic;
    background: linear-gradient(120deg, var(--lav800) 0%, #8a6fa8 55%, var(--lav800) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mendify-faq-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.mendify-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mendify-faq-item {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(91, 66, 117, 0.08);
    overflow: hidden;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mendify-faq-item.active {
    background: linear-gradient(135deg, #f8f4fc 0%, #f0ebf8 100%);
    border-color: rgba(91, 66, 117, 0.18);
    box-shadow: 0 10px 28px rgba(61, 47, 82, 0.08);
}

.mendify-faq-question {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem 1rem;
    width: 100%;
    padding: 1.15rem 1.25rem;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.mendify-faq-question:focus-visible {
    outline: 2px solid var(--lav800);
    outline-offset: 2px;
}

.mendify-faq-number {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--lav800);
    opacity: 0.75;
}

.mendify-faq-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--lav900);
}

.mendify-faq-item.active .mendify-faq-title {
    color: var(--lav800);
}

.mendify-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: var(--lav100);
    color: var(--lav800);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    flex-shrink: 0;
}

.mendify-faq-item.active .mendify-faq-icon {
    background: var(--lav800);
    color: #fff;
}

.mendify-faq-answer {
    padding: 0 1.25rem 1.25rem 3.5rem;
}

.mendify-faq-answer[hidden] {
    display: none;
}

.mendify-faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b6078;
}

.mendify-faq-support {
    position: sticky;
    top: 1.5rem;
}

.mendify-faq-support__inner {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 28px;
    background: linear-gradient(155deg, var(--lav900) 0%, #4a3568 48%, var(--lav800) 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(61, 47, 82, 0.22);
}

.mendify-faq-support__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.mendify-faq-support h3 {
    margin: 0 0 0.85rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
}

.mendify-faq-support__text {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.mendify-faq-support__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    background: #fff;
    color: var(--lav900);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mendify-faq-support__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mendify-faq-support__info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mendify-faq-support__info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.mendify-faq-support__info-item a {
    color: #fff;
    text-decoration: none;
}

.mendify-faq-support__info-item a:hover {
    text-decoration: underline;
}

.mendify-faq-support__info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.75);
}

.mendify-faq-support__info-icon svg {
    width: 100%;
    height: 100%;
}

.mendify-faq-support__mini {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.mendify-faq-support__mini-card {
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mendify-faq-support__mini-card span {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.mendify-faq-support__mini-card strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 1150px) {
    .mendify-faq-section__grid {
        grid-template-columns: 1fr;
    }

    .mendify-faq-support {
        position: static;
    }

    .mendify-faq-section__head h2,
    .mendify-faq-support h3 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .mendify-faq-section {
        padding: 64px 16px 72px;
    }

    .mendify-faq-section__head h2,
    .mendify-faq-support h3 {
        font-size: 36px;
    }

    .mendify-faq-question {
        grid-template-columns: auto 1fr auto;
        padding: 1rem;
    }

    .mendify-faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .mendify-faq-support__inner {
        border-radius: 24px;
    }

    .mendify-faq-support__mini {
        grid-template-columns: 1fr;
    }
}

/* Impact counters — homepage only */

.mendify-impact {
    background: linear-gradient(135deg, #ffffff 0%, #F4F1FA 100%);
    padding: 80px 20px 88px;
    overflow: hidden;
    max-width: 100vw;
}

.mendify-impact *,
.mendify-impact *::before,
.mendify-impact *::after {
    box-sizing: border-box;
}

.mendify-impact__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 240px 1fr 1fr;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: center;
    width: min(1320px, 92vw);
    margin: 0 auto;
}

.mendify-impact__item {
    text-align: center;
}

.mendify-impact.is-visible .mendify-impact__item {
    animation: mendifyFadeUp 0.7s ease forwards;
}

.mendify-impact.is-visible .mendify-impact__item:nth-child(1) { animation-delay: 0.05s; }
.mendify-impact.is-visible .mendify-impact__item:nth-child(2) { animation-delay: 0.12s; }
.mendify-impact.is-visible .mendify-impact__item:nth-child(4) { animation-delay: 0.2s; }
.mendify-impact.is-visible .mendify-impact__item:nth-child(5) { animation-delay: 0.28s; }

.mendify-impact__value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 0.45rem;
}

.mendify-impact__item h3,
.mendify-count {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1;
    color: #3D2F52;
}

.mendify-impact__item .plus,
.mendify-impact__item .star {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 500;
    line-height: 1;
    color: #7A5A9E;
}

.mendify-impact__item p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    color: #5B4275;
}

.mendify-impact__center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    margin: 0 auto;
}

.pulse-field {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.pulse-glow {
    position: absolute;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 90, 158, 0.28) 0%, rgba(122, 90, 158, 0.08) 42%, transparent 72%);
    animation: mendifyImpactGlow 4.2s ease-in-out infinite;
}

.pulse-orbit {
    position: absolute;
    width: 196px;
    height: 196px;
    border-radius: 50%;
    border: 1px dashed rgba(122, 90, 158, 0.22);
    animation: mendifyImpactOrbitSpin 18s linear infinite;
}

.pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(122, 90, 158, 0.24);
    animation: mendifyImpactRipple 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.pulse-ring.ring-1 {
    width: 92px;
    height: 92px;
    animation-delay: 0s;
}

.pulse-ring.ring-2 {
    width: 118px;
    height: 118px;
    animation-delay: 1.2s;
}

.pulse-ring.ring-3 {
    width: 148px;
    height: 148px;
    animation-delay: 2.4s;
}

.pulse-ring.ring-4 {
    width: 182px;
    height: 182px;
    animation-delay: 3.6s;
}

.pulse-spark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: linear-gradient(145deg, #c4b0dc 0%, #7A5A9E 100%);
    box-shadow: 0 0 12px rgba(122, 90, 158, 0.45);
    animation: mendifyImpactSparkOrbit 10s linear infinite;
}

.pulse-spark--1 {
    animation-duration: 9s;
}

.pulse-spark--2 {
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    background: linear-gradient(145deg, #b8d4b4 0%, #6a8f72 100%);
    animation-duration: 13s;
    animation-direction: reverse;
}

.pulse-spark--3 {
    width: 5px;
    height: 5px;
    margin: -2.5px 0 0 -2.5px;
    animation-duration: 16s;
}

.pulse-core {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    padding: 0.35rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8f4fc 100%);
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 12px 32px rgba(61, 47, 82, 0.16),
        0 0 0 6px rgba(122, 90, 158, 0.08);
    animation: mendifyImpactCoreBreathing 4.2s ease-in-out infinite;
}

.mendify-impact.is-visible .pulse-core {
    animation:
        mendifyImpactCoreBreathing 4.2s ease-in-out infinite,
        mendifyImpactCoreReveal 0.8s ease-out both;
}

.mendify-impact.is-visible .pulse-glow {
    animation:
        mendifyImpactGlow 4.2s ease-in-out infinite,
        mendifyImpactGlowReveal 1s ease-out both;
}

.pulse-core img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.pulse-core--placeholder {
    background: linear-gradient(145deg, #7A5A9E 0%, #5B4275 100%);
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 600;
}

.pulse-core--placeholder span {
    line-height: 1;
}

@keyframes mendifyImpactRipple {
    0% {
        transform: scale(0.7);
        opacity: 0.65;
        border-color: rgba(122, 90, 158, 0.34);
    }
    65% {
        opacity: 0.12;
    }
    100% {
        transform: scale(1.42);
        opacity: 0;
        border-color: rgba(122, 90, 158, 0.04);
    }
}

@keyframes mendifyImpactGlow {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes mendifyImpactGlowReveal {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 0.75;
        transform: scale(0.92);
    }
}

@keyframes mendifyImpactOrbitSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes mendifyImpactSparkOrbit {
    from {
        transform: rotate(0deg) translateX(88px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(88px) rotate(-360deg);
    }
}

@keyframes mendifyImpactCoreBreathing {
    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 12px 32px rgba(61, 47, 82, 0.16),
            0 0 0 6px rgba(122, 90, 158, 0.08);
    }
    50% {
        transform: scale(1.06);
        box-shadow:
            0 16px 38px rgba(61, 47, 82, 0.2),
            0 0 0 10px rgba(122, 90, 158, 0.12);
    }
}

@keyframes mendifyImpactCoreReveal {
    from {
        opacity: 0;
        transform: scale(0.72);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .pulse-ring,
    .pulse-glow,
    .pulse-orbit,
    .pulse-spark,
    .pulse-core,
    .mendify-impact.is-visible .pulse-core,
    .mendify-impact.is-visible .pulse-glow {
        animation: none !important;
    }
}

@media (max-width: 1100px) {
    .mendify-impact__wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mendify-impact__center {
        grid-column: 1 / -1;
        order: -1;
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .mendify-impact {
        padding: 64px 16px 72px;
    }

    .mendify-impact__center {
        height: 140px;
    }

    .pulse-core {
        width: 64px;
        height: 64px;
    }

    .pulse-glow {
        width: 88px;
        height: 88px;
    }

    .pulse-orbit {
        width: 132px;
        height: 132px;
    }

    .pulse-ring.ring-1 {
        width: 58px;
        height: 58px;
    }

    .pulse-ring.ring-2 {
        width: 76px;
        height: 76px;
    }

    .pulse-ring.ring-3 {
        width: 96px;
        height: 96px;
    }

    .pulse-ring.ring-4 {
        width: 118px;
        height: 118px;
    }

    .pulse-spark {
        display: none;
    }

    .mendify-impact__item h3,
    .mendify-count {
        font-size: 46px;
    }

    .mendify-impact__item p {
        font-size: 14px;
    }
}

/* Testimonials v2 — homepage only */

.mendify-testimonials-v2 {
    background: linear-gradient(180deg, #fcfafd 0%, #f7f3fb 100%);
    padding: clamp(3.5rem, 6vw, 5.5rem) 20px;
    overflow: hidden;
    max-width: 100vw;
}

.mendify-testimonials-v2 *,
.mendify-testimonials-v2 *::before,
.mendify-testimonials-v2 *::after {
    box-sizing: border-box;
}

.mendify-testimonials-v2__wrap {
    width: min(1320px, 92vw);
    margin: 0 auto;
}

.mendify-testimonials-v2--populated .mendify-testimonials-v2__head {
    display: none;
}

.mendify-testimonials-v2__head {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.mendify-testimonials-v2__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lav800);
}

.mendify-testimonials-v2__head h2 {
    margin: 0 0 0.85rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--lav900);
}

.mendify-testimonials-v2__sub {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #6b6078;
}

.mendify-testimonials-v2__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.72fr 0.72fr 0.82fr;
    gap: clamp(1rem, 2vw, 1.35rem);
    align-items: stretch;
}

.mendify-testimonials-v2__intro {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 620px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(155deg, #f3edf9 0%, #ebe3f4 100%);
    border: 1px solid rgba(91, 66, 117, 0.08);
    box-shadow: 0 18px 40px rgba(61, 47, 82, 0.06);
}

.mendify-testimonials-v2__intro-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(91, 66, 117, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 66, 117, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.55;
    pointer-events: none;
}

.mendify-testimonials-v2__intro-scene {
    position: relative;
    flex: 1 1 auto;
    min-height: clamp(240px, 34vh, 320px);
    overflow: hidden;
}

.mendify-intro-scene__aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.55;
    animation: mendifyIntroAurora 9s ease-in-out infinite alternate;
}

.mendify-intro-scene__aurora--one {
    top: 8%;
    left: 12%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(196, 217, 192, 0.75) 0%, transparent 70%);
}

.mendify-intro-scene__aurora--two {
    top: 18%;
    right: 8%;
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(196, 181, 220, 0.8) 0%, transparent 72%);
    animation-delay: -3s;
}

.mendify-intro-scene__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(91, 66, 117, 0.14);
    transform: translate(-50%, -50%);
}

.mendify-intro-scene__ring--outer {
    width: min(220px, 58%);
    height: min(220px, 58%);
    animation: mendifyIntroRingPulse 5.5s ease-in-out infinite;
}

.mendify-intro-scene__ring--inner {
    width: min(150px, 40%);
    height: min(150px, 40%);
    border-color: rgba(91, 66, 117, 0.22);
    animation: mendifyIntroRingPulse 5.5s ease-in-out infinite reverse;
}

.mendify-intro-scene__core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    color: var(--lav800);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 32px rgba(91, 66, 117, 0.16);
    transform: translate(-50%, -50%);
    animation: mendifyIntroCoreFloat 6s ease-in-out infinite;
}

.mendify-intro-scene__core svg {
    width: 42px;
    height: 42px;
}

.mendify-intro-scene__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: -6px 0 0 -6px;
    animation: mendifyIntroOrbit 14s linear infinite;
}

.mendify-intro-scene__orbit--1 {
    background: linear-gradient(145deg, #8a6fa8, #5B4275);
    animation-duration: 12s;
}

.mendify-intro-scene__orbit--2 {
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    background: linear-gradient(145deg, #83a08c, #4f7058);
    animation-duration: 16s;
    animation-direction: reverse;
}

.mendify-intro-scene__orbit--3 {
    width: 9px;
    height: 9px;
    margin: -4.5px 0 0 -4.5px;
    background: linear-gradient(145deg, #c4b0dc, #7A5A9E);
    animation-duration: 19s;
}

.mendify-intro-scene__chip {
    position: absolute;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(91, 66, 117, 0.1);
    box-shadow: 0 8px 20px rgba(61, 47, 82, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--lav900);
    white-space: nowrap;
    animation: mendifyIntroChipFloat 7s ease-in-out infinite;
}

.mendify-intro-scene__chip--1 {
    top: 14%;
    left: 10%;
    animation-delay: 0s;
}

.mendify-intro-scene__chip--2 {
    top: 22%;
    right: 8%;
    animation-delay: -1.4s;
}

.mendify-intro-scene__chip--3 {
    bottom: 28%;
    left: 14%;
    animation-delay: -2.6s;
}

.mendify-intro-scene__chip--4 {
    bottom: 18%;
    right: 12%;
    animation-delay: -3.8s;
}

.mendify-testimonials-v2__intro-content {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: linear-gradient(180deg, rgba(243, 237, 249, 0) 0%, rgba(243, 237, 249, 0.88) 28%, rgba(235, 227, 244, 0.96) 100%);
}

.mendify-testimonials-v2__intro-content h3 {
    margin: 0 0 0.85rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.6vw, 2.35rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--lav900);
}

.mendify-testimonials-v2__intro-content p {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #6b6078;
}

.mendify-testimonials-v2__intro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    background: var(--lav800);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mendify-testimonials-v2__intro-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(61, 47, 82, 0.18);
}

.mendify-testimonials-v2__slider {
    position: relative;
    height: 620px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.mendify-testimonials-v2__track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    will-change: transform;
}

.slider-down .mendify-testimonials-v2__track {
    animation: mendifySlideDown 38s linear infinite;
}

.slider-up .mendify-testimonials-v2__track {
    animation: mendifySlideUp 38s linear infinite;
}

.mendify-testimonials-v2__slider:hover .mendify-testimonials-v2__track {
    animation-play-state: paused;
}

.mendify-testi-card-v2 {
    position: relative;
    padding: 1.25rem 1.2rem 1.15rem;
    border-radius: 28px;
    border: 1px solid rgba(91, 66, 117, 0.07);
    background: #fff;
    box-shadow: 0 10px 28px rgba(61, 47, 82, 0.07);
}

.mendify-testi-card-v2.soft-lav {
    background: linear-gradient(180deg, #f8f4fc 0%, #f1eaf8 100%);
}

.mendify-testi-card-v2.soft-lav-alt {
    background: linear-gradient(180deg, #f5f1fa 0%, #ece5f4 100%);
}

.mendify-testi-card-v2__mark {
    display: block;
    margin-bottom: 0.55rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    color: var(--lav800);
}

.mendify-testi-card-v2__quote {
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
}

.mendify-testi-card-v2__quote p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #5a5068;
}

.mendify-testi-card-v2__quote p::before {
    content: none;
}

.mendify-testi-card-v2__user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mendify-testi-card-v2__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.mendify-testi-card-v2__avatar--photo {
    overflow: hidden;
    background: var(--lav100);
}

.mendify-testi-card-v2__avatar--photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mendify-testi-card-v2__avatar.abstract-1 {
    background: linear-gradient(145deg, #8a6fa8 0%, #5B4275 100%);
}

.mendify-testi-card-v2__avatar.abstract-2 {
    background: linear-gradient(145deg, #83a08c 0%, #4f7058 100%);
}

.mendify-testi-card-v2__avatar.abstract-3 {
    background: linear-gradient(145deg, #7A5A9E 0%, #3D2F52 100%);
}

.mendify-testi-card-v2__meta strong {
    display: block;
    font-size: 0.88rem;
    color: var(--lav900);
}

.mendify-testi-card-v2__meta span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.78rem;
    color: #7a7088;
}

.mendify-testimonials-v2__side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 620px;
}

.mendify-rating-card-v2 {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(91, 66, 117, 0.08);
    box-shadow: 0 14px 34px rgba(61, 47, 82, 0.08);
}

.mendify-rating-card-v2__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.mendify-rating-card-v2__bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(91, 66, 117, 0.08);
    background: rgba(255, 255, 255, 0.45);
}

.mendify-rating-card-v2__bubble--one {
    top: -18px;
    right: -10px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(226, 217, 240, 0.7) 0%, transparent 68%);
}

.mendify-rating-card-v2__bubble--two {
    bottom: 18%;
    left: -24px;
    width: 96px;
    height: 96px;
    background: radial-gradient(circle, rgba(196, 217, 192, 0.35) 0%, transparent 70%);
}

.mendify-rating-card-v2__bubble--three {
    top: 42%;
    right: 12%;
    width: 54px;
    height: 54px;
    opacity: 0.65;
}

.mendify-rating-card-v2__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    height: 100%;
    min-height: 280px;
    padding: 1.35rem 1.35rem 1.2rem;
}

.mendify-rating-card-v2__score-row {
    display: flex;
    align-items: flex-end;
    gap: 0.85rem;
}

.mendify-rating-card-v2 h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 0.92;
    color: var(--lav900);
}

.mendify-rating-card-v2__score-meta {
    padding-bottom: 0.2rem;
}

.mendify-rating-card-v2__stars {
    margin-bottom: 0.2rem;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: #f4b400;
}

.mendify-rating-card-v2__label {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #7a7088;
}

.mendify-rating-card-v2__stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(244, 241, 250, 0.95) 0%, rgba(248, 244, 252, 0.88) 100%);
    border: 1px solid rgba(91, 66, 117, 0.08);
}

.mendify-rating-card-v2__stat strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--lav900);
}

.mendify-rating-card-v2__stat span {
    font-size: 0.86rem;
    line-height: 1.45;
    color: #6b6078;
}

.mendify-rating-card-v2__meter {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mendify-rating-card-v2__meter-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(91, 66, 117, 0.1);
    overflow: hidden;
}

.mendify-rating-card-v2__meter-fill {
    display: block;
    width: var(--meter, 96%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f4b400 0%, #e8a317 55%, #7A5A9E 100%);
    animation: mendifyMeterGrow 1.4s ease-out both;
}

.mendify-rating-card-v2__meter-note {
    font-size: 0.78rem;
    color: #8a8098;
}

.mendify-rating-card-v2__footer {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: auto;
}

.mendify-rating-card-v2__trust {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    align-self: flex-start;
    padding: 0.45rem 0.7rem 0.45rem 0.5rem;
    border-radius: 999px;
    background: rgba(244, 241, 250, 0.92);
    border: 1px solid rgba(91, 66, 117, 0.08);
}

.mendify-rating-card-v2__trust-copy {
    font-size: 0.78rem;
    font-weight: 600;
    color: #5a5068;
}

.mendify-rating-card-v2 p {
    position: relative;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #6b6078;
}

.mendify-rating-card-v2 p strong {
    color: var(--lav900);
    font-weight: 700;
}

.mendify-rating-card-v2__platforms {
    margin: 0 !important;
    font-size: 0.76rem !important;
    line-height: 1.45 !important;
    color: #8a8098 !important;
}

.mendify-rating-card-v2__google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.mendify-rating-card-v2__google svg {
    display: block;
    width: 100%;
    height: 100%;
}

.mendify-community-card-v2 {
    position: relative;
    flex: 1;
    min-height: 220px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(155deg, var(--lav900) 0%, #4a3568 48%, var(--lav800) 100%);
}

.mendify-community-card-v2__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.mendify-community-card-v2__content {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.35rem;
    color: #fff;
}

.mendify-community-card-v2__avatars {
    display: flex;
    margin-bottom: 1rem;
}

.mendify-community-card-v2__avatars span {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    margin-left: -8px;
}

.mendify-community-card-v2__avatars span:first-child {
    margin-left: 0;
}

.mendify-community-card-v2__avatars .abstract-1 {
    background: linear-gradient(145deg, #c4b0dc 0%, #8a6fa8 100%);
}

.mendify-community-card-v2__avatars .abstract-2 {
    background: linear-gradient(145deg, #b8d4b4 0%, #83a08c 100%);
}

.mendify-community-card-v2__avatars .abstract-3 {
    background: linear-gradient(145deg, #d9c9ea 0%, #7A5A9E 100%);
}

.mendify-community-card-v2__avatars .abstract-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

.mendify-community-card-v2__content h3 {
    margin: 0 0 0.65rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}

.mendify-community-card-v2__content p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.84);
}

.mendify-testimonials-empty {
    grid-column: 2 / 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    border: 1px dashed var(--lav300);
    background: rgba(244, 241, 250, 0.65);
    text-align: center;
}

.mendify-testimonials-empty h3 {
    margin: 0 0 0.65rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--lav900);
}

.mendify-testimonials-empty p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #6b6078;
}

@keyframes mendifySlideDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes mendifySlideUp {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes mendifyIntroAurora {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(12px, -10px, 0) scale(1.08);
    }
}

@keyframes mendifyIntroRingPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.55;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes mendifyIntroCoreFloat {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-8px);
    }
}

@keyframes mendifyIntroOrbit {
    0% {
        transform: rotate(0deg) translateX(78px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(78px) rotate(-360deg);
    }
}

@keyframes mendifyIntroChipFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

@keyframes mendifyMeterGrow {
    from {
        width: 0;
    }
    to {
        width: var(--meter, 96%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .slider-down .mendify-testimonials-v2__track,
    .slider-up .mendify-testimonials-v2__track,
    .mendify-intro-scene__aurora,
    .mendify-intro-scene__ring,
    .mendify-intro-scene__core,
    .mendify-intro-scene__orbit,
    .mendify-intro-scene__chip,
    .mendify-rating-card-v2__meter-fill {
        animation: none !important;
    }
}

@media (max-width: 1200px) {
    .mendify-testimonials-v2__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mendify-testimonials-v2__intro,
    .mendify-testimonials-v2__slider,
    .mendify-testimonials-v2__side {
        min-height: 480px;
    }

    .mendify-testimonials-v2__slider {
        height: 480px;
    }

    .mendify-testimonials-v2__side {
        grid-column: 1 / -1;
        flex-direction: row;
        min-height: auto;
    }

    .mendify-rating-card-v2,
    .mendify-community-card-v2 {
        flex: 1;
    }

    .mendify-testimonials-empty {
        grid-column: 1 / -1;
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .mendify-testimonials-v2 {
        padding: 64px 16px 72px;
    }

    .mendify-testimonials-v2__head h2 {
        font-size: 38px;
    }

    .mendify-testimonials-v2__grid {
        grid-template-columns: 1fr;
    }

    .mendify-testimonials-v2__intro {
        min-height: auto;
    }

    .mendify-testimonials-v2__intro-scene {
        min-height: 200px;
    }

    .mendify-intro-scene__chip--3,
    .mendify-intro-scene__chip--4 {
        display: none;
    }

    .mendify-intro-scene__orbit--3 {
        display: none;
    }

    .mendify-rating-card-v2__inner {
        min-height: auto;
    }

    .mendify-rating-card-v2 h3 {
        font-size: 3.5rem;
    }

    .mendify-testimonials-v2__slider {
        height: auto;
        mask-image: none;
        overflow: visible;
    }

    .mendify-testimonials-v2__track {
        animation: none !important;
    }

    .mendify-testi-card-v2.dup {
        display: none;
    }

    .mendify-testimonials-v2__side {
        flex-direction: column;
    }

    .mendify-testimonials-empty {
        min-height: auto;
    }
}
