
/* Hero — See How Our AI Receptionist Handles Calls */
.meevo-26-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 40px;
    overflow: hidden;
    background: #11002b;
}

.meevo-26-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.meevo-26-hero__bg--mobile {
    display: none;
}

.meevo-26-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1440px;
    padding: 48px 0 0;
}

.meevo-26-hero__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.meevo-26-hero__live {
    display: none;
}

.meevo-26-hero__sub--mobile {
    display: none;
}

.meevo-26-demo-cta {
    display: none;
}

.meevo-26-hero__logos {
    display: block;
    width: 507.5px;
    height: 60px;
    object-fit: contain;
}

.meevo-26-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.meevo-26-hero__title {
    margin: 0;
    text-align: center;
}

.meevo-26-hero__title-accent {
    display: block;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 96px;
    color: #ffce00;
}

.meevo-26-hero__title-main {
    display: block;
    font-family: "Gilroy-Black", sans-serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 96px;
    color: #ffffff;
}

.meevo-26-hero__sub {
    margin: 0;
    /* max-width: 920px; */
    font-family: "Gotham-Book", sans-serif;
    font-size: 24px;
    line-height: 26.4px;
    color: #cecbd4;
    text-align: center;
}

.meevo-26-hero__cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: 100%;
}

.meevo-26-player {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    width: 653px;
    max-width: 100%;
    padding: 24px 16px 18px;
    background: rgba(99, 45, 186, 0.12);
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    gap: 0;
}

.meevo-26-player.is-expanded {
    background: rgba(255, 255, 255, 0.05);
    gap: 16px;
}

.meevo-26-player p {
    margin: 0;
}

.meevo-26-player img {
    max-width: none;
}

.meevo-26-play-wrap {
    position: relative;
    width: 88px;
    height: 88px;
}

.meevo-26-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid #8653ff;
    opacity: 0;
    pointer-events: none;
}

.meevo-26-player.is-playing .meevo-26-pulse {
    animation: meevo26Pulse 1.4s ease-out infinite;
}

@keyframes meevo26Pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.55); opacity: 0; }
}

.meevo-26-play {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    padding: 0;
    border: none;
    border-radius: 44px;
    cursor: pointer;
    background: linear-gradient(145deg, #8653ff 6.17%, #632dba 93.83%);
    box-shadow: 0 10px 14px rgba(99, 45, 186, 0.55);
}

.meevo-26-play:active {
    transform: scale(0.94);
}

.meevo-26-play__icon {
    position: relative;
    width: 26px;
    height: 26px;
}

.meevo-26-play__play,
.meevo-26-play__pause {
    position: absolute;
    inset: 0;
    width: 26px;
    height: 26px;
    display: block;
    object-fit: contain;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.meevo-26-play__play {
    opacity: 1;
    transform: scale(1);
}

.meevo-26-play__pause {
    opacity: 0;
    transform: scale(0.7);
}

.meevo-26-player.is-playing .meevo-26-play__play {
    opacity: 0;
    transform: scale(0.7);
}

.meevo-26-player.is-playing .meevo-26-play__pause {
    opacity: 1;
    transform: scale(1);
}

.meevo-26-player-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
}

.meevo-26-player.is-expanded .meevo-26-player-body {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    grid-template-rows: 48px 4px;
    column-gap: 12px;
    row-gap: 10px;
    align-items: end;
    width: 100%;
    overflow: visible;
    padding: 0;
}

.meevo-26-player.is-expanded .meevo-26-play-wrap {
    grid-column: 1;
    grid-row: 1;
}

.meevo-26-player.is-expanded .meevo-26-play-wrap,
.meevo-26-player.is-expanded .meevo-26-play {
    width: 48px;
    height: 48px;
    border-radius: 24px;
}

.meevo-26-player.is-expanded .meevo-26-play {
    box-shadow: 0 10px 14px rgba(99, 45, 186, 0.55);
}

.meevo-26-player.is-expanded .meevo-26-play__icon,
.meevo-26-player.is-expanded .meevo-26-play__play,
.meevo-26-player.is-expanded .meevo-26-play__pause {
    width: 14px;
    height: 14px;
}

.meevo-26-listen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.meevo-26-player.is-expanded .meevo-26-listen {
    display: none;
}

.meevo-26-mini {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    overflow: hidden;
}

.meevo-26-player.is-expanded .meevo-26-mini {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    padding-top: 13px;
    min-width: 0;
}

.meevo-26-mini__title {
    margin: 0;
    font-family: "Gilroy-SemiBold", "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: #f5f0ff;
    white-space: nowrap;
}

.meevo-26-mini__sub {
    margin: 0;
    font-family: "Gotham-Book", Gotham, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: normal;
    color: rgba(245, 240, 255, 0.55);
    white-space: nowrap;
}

.meevo-26-time--mini {
    display: none;
    width: auto;
    font-family: "Gotham-Book", Gotham, sans-serif;
    font-size: 12px;
    line-height: normal;
    color: rgba(245, 240, 255, 0.55);
    text-align: right;
    padding: 0;
}

.meevo-26-player.is-expanded .meevo-26-time--mini {
    display: block;
    grid-column: 3;
    grid-row: 1;
    align-self: end;
}

.meevo-26-tap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    height: 29px;
    padding-top: 12px;
    box-sizing: border-box;
}

.meevo-26-tap__hand {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    opacity: 0.85;
    flex-shrink: 0;
}

.meevo-26-tap__hand img {
    position: absolute;
    top: 0.014px;
    left: 3.178px;
    width: 7.644px;
    height: 12.013px;
    display: block;
}

.meevo-26-tap__text {
    font-family: "Gilroy-SemiBold", "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    color: #f5f0ff;
    text-align: center;
    white-space: nowrap;
}

.meevo-26-meta {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: 21px;
    padding-top: 6px;
    box-sizing: border-box;
    font-family: "Gotham-Book", Gotham, sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: normal;
    color: rgba(245, 240, 255, 0.42);
    text-align: center;
}

.meevo-26-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    max-width: 100%;
    height: 64px;
    padding-top: 20px;
    box-sizing: border-box;
    align-self: center;
}

.meevo-26-wave span {
    display: block;
    width: 3px;
    height: var(--h, 8px);
    border-radius: 2px;
    background: #8653ff;
    opacity: 0.55;
    flex-shrink: 0;
    transform-origin: center;
}

.meevo-26-player.is-playing .meevo-26-wave span {
    opacity: 1;
    animation: meevo26Bar 900ms ease-in-out infinite alternate;
}

@keyframes meevo26Bar {
    0% { transform: scaleY(0.35); }
    100% { transform: scaleY(1); }
}

.meevo-26-scrub {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    height: 27px;
    padding-top: 14px;
    box-sizing: border-box;
}

.meevo-26-player.is-expanded .meevo-26-scrub {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 4px;
    padding: 0;
    gap: 0;
}

.meevo-26-player.is-expanded .meevo-26-time:not(.meevo-26-time--mini) {
    display: none;
}

.meevo-26-player.is-expanded .meevo-26-track__fill {
    background: #8653ff;
}

.meevo-26-time {
    width: 34px;
    flex-shrink: 0;
    font-family: "Gotham-Book", sans-serif;
    font-size: 11px;
    line-height: normal;
    color: rgba(245, 240, 255, 0.42);
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.meevo-26-time--end {
    text-align: right;
}

.meevo-26-track {
    position: relative;
    flex: 1;
    height: 4px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.14);
}

.meevo-26-track__fill {
    height: 4px;
    width: 0;
    border-radius: 99px;
    background: linear-gradient(90deg, #fbbc04, #8653ff);
}

.meevo-26-track__dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 5.5px;
    background: #ffffff;
    box-shadow: 0 0 0 0 rgba(134, 83, 255, 0.35);
    transform: translate(-50%, -50%);
}

.meevo-26-player__panel {
    width: 100%;
    padding: 12px 0;
    box-sizing: border-box;
}

.meevo-26-player__panel-inner {
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 0.8px solid rgba(255, 255, 255, 0.1);
}

.meevo-26-transcript-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
}

.meevo-26-transcript__label {
    display: flex;
    align-items: center;
    gap: 7px;
    width: auto;
    padding: 0;
    border: none;
    font-family: "Gotham-Book", Gotham, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.24px;
    line-height: normal;
    color: rgba(245, 240, 255, 0.68);
}

.meevo-26-live-call {
    font-family: "Gotham-Book", Gotham, sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.24px;
    line-height: normal;
    color: #fbbc04;
    text-decoration: underline;
    text-underline-offset: from-font;
    text-underline-position: from-font;
    white-space: nowrap;
}

.meevo-26-live-call:hover {
    color: #fbbc04;
}

.meevo-26-transcript__dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #ff3c69;
    box-shadow: 0 0 0 0 rgba(255, 60, 105, 0.02);
    flex-shrink: 0;
    animation: meevo26Live 1.6s ease-out infinite;
}

@keyframes meevo26Live {
    0% { box-shadow: 0 0 0 0 rgba(255, 60, 105, 0.5); }
    100% { box-shadow: 0 0 0 7px rgba(255, 60, 105, 0); }
}

.meevo-26-feed {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    height: 138px;
    min-height: 138px;
    max-height: 138px;
    margin: 0;
    padding-top: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(134, 83, 255, 0.55) transparent;
}

.meevo-26-feed::-webkit-scrollbar {
    width: 4px;
}

.meevo-26-feed::-webkit-scrollbar-thumb {
    background: rgba(134, 83, 255, 0.55);
    border-radius: 99px;
}

.meevo-26-player.is-expanded .meevo-26-feed {
    display: flex;
}

.meevo-26-bubble-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    width: 100%;
    animation: meevo26Rise 0.5s ease;
    transition: opacity 0.5s ease, filter 0.5s ease;
}

.meevo-26-bubble-row.from-customer {
    justify-content: flex-end;
}

.meevo-26-bubble-row.from-ai {
    justify-content: flex-start;
}

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

.meevo-26-bubble {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: auto;
    max-width: 392px;
    padding: 10px 16px 12px;
    box-sizing: border-box;
}

.meevo-26-bubble__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.meevo-26-bubble__time {
    font-family: "Gilroy-Regular", "Gilroy", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
}

.meevo-26-bubble-row.from-customer .meevo-26-bubble {
    background: #632dba;
    border-radius: 16px 16px 4px 16px;
    padding: 10px 16px 12px;
}

.meevo-26-bubble-row.from-ai .meevo-26-bubble {
    background: #eeecf2;
    border-radius: 16px 16px 16px 4px;
}

.meevo-26-bubble__role {
    font-family: "Gilroy-Regular", "Gilroy", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    color: #ffffff;
}

.meevo-26-bubble-row.from-ai .meevo-26-bubble__role {
    color: #1a1033;
    opacity: 0.7;
}

.meevo-26-bubble__text {
    font-family: "Gilroy-Regular", "Gilroy", "Gotham-Book", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: #ffffff;
}

.meevo-26-bubble-row.from-ai .meevo-26-bubble__text {
    font-family: "Gilroy-Medium", "Gilroy-SemiBold", "Gilroy", sans-serif;
    font-weight: 500;
    color: #190041;
}

.meevo-26-bubble__avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
}

.meevo-26-bubble-row.age-0,
.meevo-26-bubble-row.age-1,
.meevo-26-bubble-row.age-2,
.meevo-26-bubble-row.age-3 {
    opacity: 1;
    filter: none;
}

.meevo-26-or {
    display: flex;
    align-items: flex-start;
    align-self: center;
    padding: 12px 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 0.8px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
}

.meevo-26-or span {
    font-family: "Gotham-Book", sans-serif;
    font-size: 13px;
    line-height: normal;
    color: rgba(245, 240, 255, 0.72);
    white-space: nowrap;
}

.meevo-26-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 420px;
    max-width: 100%;
    padding: 28px 22px 22px;
    background: rgba(62, 32, 109, 0.33);
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.meevo-26-ready {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 17px;
    background: rgba(134, 83, 255, 0.12);
    border: 1px solid rgba(134, 83, 255, 0.3);
    border-radius: 999px;
}

.meevo-26-ready img {
    width: 12px;
    height: 12px;
    display: block;
}

.meevo-26-ready span {
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #2faa6c;
    white-space: nowrap;
}

.meevo-26-qr__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 225.728px;
    height: 225.73px;
    padding: 16px;
    background: #ffffff;
    border: 0.5px solid #190041;
    border-radius: 16px;
    overflow: hidden;
}

.meevo-26-qr__code {
    position: relative;
    width: 200px;
    height: 200px;
}

.meevo-26-qr__img {
    position: absolute;
    inset: 0;
    width: 200px;
    height: 200px;
    display: block;
}

.meevo-26-qr__mark {
    position: absolute;
    left: 8.69px;
    top: 13.04px;
    width: 182.61px;
    height: 173.915px;
    display: block;
}

.meevo-26-qr__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    text-align: center;
}

.meevo-26-qr__title {
    margin: 0;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 24px;
    line-height: 36px;
    color: #ffffff;
}

.meevo-26-qr__help {
    margin: 0;
    font-family: "Gotham-Book", sans-serif;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
}

.meevo-26-qr__phone {
    margin: 0;
    font-family: "Gotham-Book", sans-serif;
    font-size: 12px;
    line-height: normal;
    color: #fbbc04;
}

.meevo-26-qr__phone a {
    color: #fbbc04;
    text-decoration: none;
}

@media screen and (max-width: 1199.98px) {
    .meevo-26-hero__title-accent,
    .meevo-26-hero__title-main {
        font-size: 56px;
        line-height: 68px;
    }

    .meevo-26-hero__sub {
        font-size: 18px;
        line-height: 24px;
    }

    .meevo-26-hero__cards {
        gap: 24px;
    }

    .meevo-26-player {
        width: 653px;
    }

    .meevo-26-gallery {
        width: 100%;
        max-width: 100%;
        gap: 12px;
        height: 440px;
    }

    .meevo-26-review {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        height: 440px;
    }

    .meevo-26-review.is-active {
        flex: 2.6 1 0;
        width: auto;
        min-width: 0;
        max-width: none;
    }
}

@media screen and (max-width: 991.98px) {
    .meevo-26-hero__cards {
        flex-direction: column;
        align-items: center;
    }

    .meevo-26-player {
        width: 100%;
        max-width: 653px;
    }

    .meevo-26-qr {
        width: 100%;
        max-width: 420px;
    }

    .meevo-26-hero__logos {
        width: 100%;
        max-width: 507.5px;
        height: auto;
    }
}

@media screen and (max-width: 767.98px) {
    .meevo-26-hero {
        min-height: calc(100svh - 80px);
        padding: 16px 20px 64px;
        background: #0b0118;
    }

    .meevo-26-hero img:not(.meevo-26-hero__bg) {
        max-width: 100%;
        height: auto;
    }

    .meevo-26-hero .meevo-26-player img {
        max-width: none;
        height: unset;
    }

    .meevo-26-hero__bg--desktop {
        display: none;
    }

    .meevo-26-hero__bg--mobile {
        display: block;
        inset: auto;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100svh - 80px);
        max-width: none;
        object-fit: cover;
        object-position: center bottom;
    }

    .meevo-26-hero__inner {
        gap: 28px;
        padding-top: 8px;
        max-width: 350px;
    }

    .meevo-26-hero__head {
        gap: 18px;
        width: 100%;
    }

    .meevo-26-hero__live {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin: 0;
        padding: 6px 14px;
        background: #ffc300;
        border-radius: 999px;
        font-family: "Gilroy-Bold", "Gilroy-SemiBold", sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.14em;
        line-height: 1;
        color: #1a0a00;
    }

    .meevo-26-hero__live::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #1a0a00;
        opacity: 0.75;
        flex-shrink: 0;
    }

    .meevo-26-hero__logos,
    .meevo-26-or,
    .meevo-26-qr {
        display: none;
    }

    .meevo-26-hero__sub--desktop {
        display: none;
    }

    .meevo-26-hero__sub--mobile {
        display: block;
    }

    .meevo-26-hero__copy {
        gap: 14px;
        width: 100%;
    }

    .meevo-26-hero__title-accent,
    .meevo-26-hero__title-main {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.01em;
    }

    .meevo-26-hero__title-accent {
        font-size: 32px;
        font-weight: 600;
        color: #ffc300;
    }

    .meevo-26-hero__title-main {
        font-weight: 800;
    }

    .meevo-26-hero__sub {
        font-size: 15px;
        line-height: 1.55;
        max-width: 320px;
        color: rgba(245, 240, 255, 0.68);
    }

    .meevo-26-hero__cards {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        width: 100%;
    }

    .meevo-26-player,
    .meevo-26-qr {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    .meevo-26-feed {
        height: 120px;
        min-height: 120px;
        max-height: 120px;
    }

    .meevo-26-bubble {
        max-width: calc(100% - 40px);
    }

    .meevo-26-demo-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 16px;
        padding: 14px 20px;
        border-radius: 14px;
        background: linear-gradient(135deg, #ffc300, #fbbc04);
        box-shadow: 0 10px 26px rgba(255, 195, 0, 0.25);
        font-family: "Gilroy-Black", "Gilroy-Bold", sans-serif;
        font-size: 14.5px;
        font-weight: 800;
        letter-spacing: 0.01em;
        line-height: 1;
        color: #1a0a00;
        text-decoration: none;
        opacity: 0;
        transform: translateY(8px) scale(0.98);
        pointer-events: none;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .meevo-26-demo-cta.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .meevo-26-or {
        align-self: center;
        padding: 8px 12px;
    }

    .meevo-26-qr {
        padding: 24px 16px 22px;
        gap: 18px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .meevo-26-ready {
        padding: 8px 12px;
        gap: 6px;
        max-width: 100%;
    }

    .meevo-26-ready img {
        width: 10px;
        height: 10px;
        max-width: none;
    }

    .meevo-26-ready span {
        font-size: 11px;
        line-height: 14px;
        white-space: nowrap;
        text-align: center;
    }

    .meevo-26-qr__frame {
        width: 184px;
        height: 184px;
        padding: 12px;
    }

    .meevo-26-qr__code,
    .meevo-26-qr__img {
        width: 160px;
        height: 160px;
        max-width: none;
    }

    .meevo-26-qr__mark {
        left: 7px;
        top: 10px;
        width: 146px;
        height: 139px;
        max-width: none;
    }

    .meevo-26-qr__title {
        font-size: 22px;
        line-height: 30px;
    }

    .meevo-26-qr__help {
        font-size: 12px;
        line-height: 18px;
        max-width: 280px;
    }

    .meevo-26-qr__phone {
        font-size: 12px;
    }

    .trusted-by-salon-new__card {
        text-align: center;
    }

    .trusted-by-salon-new__stats .new__stats {
        flex: 1 1 100%;
    }
}

.trusted-by-salon-new__stats .new__stats strong .bee-stat-prefix,
.trusted-by-salon-new__stats .new__stats strong .bee-stat-num,
.trusted-by-salon-new__stats .new__stats strong .bee-stat-suffix {
    font: inherit;
    color: inherit;
}

/* One AI Section */
.meevo-26 {
    --meevo-26-bg: #11002b;
    --meevo-26-panel: #3e206d;
    --meevo-26-panel-border: rgba(62, 41, 96, 0.33);
    --meevo-26-yellow: #ffcd00;
    --meevo-26-yellow-alt: #ffc300;
    --meevo-26-badge-bg: rgba(251, 188, 4, 0.14);
    --meevo-26-badge-border: #fbbc04;
    --meevo-26-white: #ffffff;
    --meevo-26-lilac: #efeaf8;
    --meevo-26-chatelle: #c2bacf;
    --meevo-26-cta: #632dba;
    --meevo-26-btn-text: #212529;

    --bb-bg: #12012c;
    --bb-dark: #190041;
    --bb-body: #ffffff;
    --bb-muted: #cecbd4;
    --bb-surface: #f2f6ff;
    --bb-card: rgba(255, 255, 255, 0.95);
    --bb-secondary: #ff3c69;
    --bb-accent: #3bb581;
    --bb-purple: #632dba;
    --bb-purple-deep: #4c26ad;
    --bb-purple-light: #5b32d1;
    --bb-yellow: #ffcd00;
    --bb-success: #2faa6c;
    --bb-text-dark: #190041;
    --bb-muted-text: rgba(206, 203, 212, 0.7);
    --bb-surface-alt: #ede1fe;
    --bb-bg-soft: rgba(255, 255, 255, 0.08);
    --bb-border: rgba(255, 255, 255, 0.16);
    /* background: var(--meevo-26-bg); */
}

.meevo-26 img {
    max-width: none;
}

.meevo-26-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 48px 24px;
    background: var(--meevo-26-bg);
}

.meevo-26-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    text-align: center;
    overflow: hidden;
}

.meevo-26-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--meevo-26-badge-bg);
    border: 1px solid var(--meevo-26-badge-border);
    border-radius: 40px;
}

.meevo-26-badge__dot {
    position: relative;
    display: block;
    width: 9.451px;
    height: 9.464px;
    flex-shrink: 0;
}

.meevo-26-badge__dot svg {
    vertical-align: top;
    width: 10px;
    height: 10px;
}

.meevo-26-badge__dot img {
    position: absolute;
    inset: -31.7% -31.74%;
    width: 163.48%;
    height: 163.4%;
    max-width: none;
    display: block;
}

.meevo-26-badge__text {
    font-family: "Gilroy-Bold", sans-serif;
    font-size: 13px;
    line-height: normal;
    color: var(--meevo-26-yellow);
    text-align: center;
    white-space: nowrap;
}

.meevo-26-intro__title {
    margin: 0;
    max-width: 1068px;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 54px;
    font-weight: 600;
    line-height: normal;
    color: var(--meevo-26-white);
    text-align: center;
}

.meevo-26-intro__title-accent {
    display: block;
    color: var(--meevo-26-yellow);
}

.meevo-26-intro__sub {
    margin: 0;
    max-width: 620px;
    font-family: "Gotham-Book", sans-serif;
    font-size: 15px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.meevo-26-panels {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.meevo-26-stack-item {
    display: contents;
}

.meevo-26-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: 1306px;
    padding: 48px;
    overflow: hidden;
    background: var(--meevo-26-panel);
    border: 5px solid var(--meevo-26-panel-border);
    border-radius: 50px;
}

.meevo-26-illu {
    position: relative;
    flex-shrink: 0;
    width: 450px;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--meevo-26-bg);
}

/* .meevo-26-illu--calls .meevo-26-illu__incoming {
    position: absolute;
    left: 13.78px;
    top: 59.52px;
    width: 227.276px;
    height: 194.574px;
    object-fit: cover;
} */

.meevo-26-illu--calls .meevo-26-illu__followup {
    position: absolute;
    left: 152.28px;
    top: 76.89px;
    width: 283.946px;
    height: 194.574px;
    object-fit: cover;
}

.meevo-26-illu--calls .meevo-26-illu__bell {
    position: absolute;
    left: 204.37px;
    top: 31.53px;
    width: 119.871px;
    height: 79.924px;
    object-fit: cover;
}

.meevo-26-illu--omni {
    display: flex;
    align-items: center;
    justify-content: center;
}

.meevo-26-illu__omni {
    /* width: 384.736px;
    height: 134.38px; */
    object-fit: cover;
}

.meevo-26-illu--brain {
    background: transparent;
}

.meevo-26-illu__brain {
    position: absolute;
    inset: 0;
    width: 450px;
    height: 300px;
    object-fit: contain;
    border-radius: 12px;
}

.meevo-26-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    max-width: 700px;
}

.meevo-26-copy__eyebrow {
    margin: 0;
    font-family: "Gilroy-Bold", sans-serif;
    font-size: 12px;
    line-height: normal;
    color: var(--meevo-26-yellow-alt);
}

.meevo-26-copy__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.meevo-26-copy__title {
    margin: 0;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    color: var(--meevo-26-white);
}

.meevo-26-copy__title span {
    color: var(--meevo-26-yellow);
}

.meevo-26-copy__desc {
    margin: 0;
    max-width: 640px;
    font-family: "Gotham-Book", sans-serif;
    font-size: 15px;
    line-height: normal;
    color: var(--meevo-26-lilac);
}

.meevo-26-copy__desc--muted {
    color: var(--meevo-26-chatelle);
}

.meevo-26-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 602px;
    width: 100%;
}

.meevo-26-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-family: "Gotham-Book", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: var(--meevo-26-white);
}

.meevo-26-check {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    overflow: hidden;
}

.meevo-26-check svg {
    vertical-align: top;
}

.meevo-26-check__bg {
    position: absolute;
    inset: 0;
    width: 16px;
    height: 16px;
    display: block;
}

.meevo-26-check__mark {
    position: absolute;
    top: 26.66%;
    left: 20.37%;
    width: 9.37px;
    height: 6.02px;
    display: block;
}

.meevo-26-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1306px;
    padding: 48px;
    background: var(--meevo-26-cta);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
}

.meevo-26-cta__left {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-width: 0;
}

.meevo-26-cta__headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.meevo-26-cta__title {
    margin: 0;
    font-family: "Gilroy-Black", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: normal;
    color: var(--meevo-26-white);
    white-space: nowrap;
}

.meevo-26-cta__logo {
    display: block;
    width: 159.6px;
    height: 42px;
    flex-shrink: 0;
}

.meevo-26-cta__sub {
    margin: 0;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    color: var(--meevo-26-white);
}

.meevo-26-cta__btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--meevo-26-yellow);
    border-radius: 12px;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 16px;
    line-height: normal;
    color: var(--meevo-26-btn-text);
    text-decoration: none;
    white-space: nowrap;
}

.meevo-26-cta__btn:hover,
.meevo-26-cta__btn:focus {
    color: var(--meevo-26-btn-text);
    text-decoration: none;
    opacity: 0.92;
}

.meevo-26-cta__visual {
    display: flex;
    flex: 1 0 0;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.meevo-26-cta-art {
    position: relative;
    width: 400px;
    height: 226.253px;
    overflow: hidden;
    flex-shrink: 0;
}

.meevo-26-cta-art__desk {
    position: absolute;
    /* inset: 0 0.12% -9.7% 0; */
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
}

.meevo-26-cta-art__plant {
    position: absolute;
    top: 4%;
    left: 2.26%;
    width: 97.783px;
    height: 100.49px;
    max-width: none;
    transform: scaleX(-1);
    display: block;
}

.meevo-26-cta-art__bee {
    position: absolute;
    top: 45.86%;
    left: 13.38%;
    width: 49.75px;
    height: 18.6px;
    max-width: none;
    display: block;
}

/* Pricing */

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-title {
    font-family: "Gilroy-Black", sans-serif;
    font-size: 54px;
    line-height: 62px;
    margin-bottom: 24px;
    color: var(--bb-text-dark);
    margin: 0 0 12px;
}

.pricing-subtitle {
    font-family: "Gotham-Book", sans-serif;
    font-size: 16px;
    line-height: 28px;
    /* color: #3c295e; */
    color: rgba(62, 41, 96, 0.70);
    margin: 0;
    max-width: 310px;
    margin: 0 auto;
}

.pricing-section-mobile {
    background: transparent;
    /* padding: 70px 0 0; */
    display: block;
        background: #F6F2FB;
}

.pricing-subtitle {
    max-width: 100%;
}

.pricing-subtitle span {
    background: rgb(255 100 77 / 10%);
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 5px;
    color: #FF7D6B;
        position: relative;
}

.pricing-subtitle svg {
    position: absolute;
    top: -17px;
    left: -4px;
}

.offer-till {
 color: #3C295E;
    font-size: 16px;
font-style: italic;
font-weight: 700;
line-height: 26px;
    padding-top: 12px;
    text-align: center;
    display: block;
}

.pricing-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
        padding-top: 24px;
}

.pricing-grid .pricing-card {
    width: 100%;
    max-width: 360px;
}

 .plan-features {
gap: 4px;
}

.pricing-card {
    background: white;
    border: 2px solid rgba(25, 0, 65, 0.15);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
        margin-bottom: 24px;
}

.plan-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.plan-icon svg {
    width: 100px;
    height: 100px;
}

.plan-header {
    /* text-align: center; */
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    display: flex;
}

.plan-name {
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 20px;
    line-height: 20px;
    color: var(--bb-text-dark);
    margin: 0 0 6px;
}

.plan-description {
    font-family: "Gotham-Book", sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: rgba(62, 41, 96, 0.7);
    margin: 0;
}

.plan-pricing {
    padding: 12px 0 0;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.old-price {
    font-family: "Gilroy-Bold", sans-serif;
    font-size: 24px;
    color: rgba(25, 0, 65, 0.4);
    text-decoration: line-through;
}

.current-price {
    font-family: "Gilroy-Bold", sans-serif;
    font-size: 36px;
    color: var(--bb-purple);
}

.price-note {
    font-family: "Gotham-Book", sans-serif;
    font-size: 12px;
    color: rgba(62, 41, 96, 0.7);
    margin: 0;
}

.plan-feature-highlight {
    background: var(--bb-surface-alt);
    border-radius: 8px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-feature-highlight .checkmark {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.plan-feature-highlight span {
    font-family: "Gotham-Book", sans-serif;
    font-size: 13px;
    color: var(--bb-text-dark);
      line-height: 20px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item .checkmark-green {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    font-family: "Gotham-Book", sans-serif;
    font-size: 14px;
    color: rgba(62, 41, 96, 0.7);
    line-height: 22px;
}

.plan-cta {
    background: var(--bb-purple);
    color: white !important;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding: 14px 26px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 45, 186, 0.3);
    color: white;
}

.pricing-subtitle span {
      padding: 6px 12px;
      border-radius: 6px;
  }

@media screen and (max-width: 1199.98px) {
    .meevo-26-intro__title {
        font-size: 40px;
    }

    .meevo-26-panel {
        gap: 32px;
        padding: 36px;
        border-radius: 36px;
    }

    .meevo-26-illu {
        width: 360px;
        height: 240px;
    }

    /* .meevo-26-illu--calls .meevo-26-illu__incoming {
        left: 11px;
        top: 47.6px;
        width: 181.8px;
        height: 155.7px;
    } */

    .meevo-26-illu--calls .meevo-26-illu__followup {
        left: 121.8px;
        top: 61.5px;
        width: 227.2px;
        height: 155.7px;
    }

    .meevo-26-illu--calls .meevo-26-illu__bell {
        left: 163.5px;
        top: 25.2px;
        width: 95.9px;
        height: 63.9px;
    }

    /* .meevo-26-illu__omni {
        width: 308px;
        height: 107.5px;
    } */

    .meevo-26-illu__brain {
        width: 360px;
        height: 240px;
    }

    .meevo-26-copy__title {
        font-size: 26px;
    }

    .meevo-26-cta__title {
        font-size: 36px;
        white-space: normal;
    }

    .meevo-26-cta__sub {
        font-size: 24px;
    }
}

@media screen and (max-width: 991.98px) {
    .meevo-26-panel {
        flex-direction: column;
        gap: 28px;
        padding: 28px 24px;
        border-radius: 32px;
        border-width: 4px;
    }

    .meevo-26-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        padding: 32px 24px;
    }

    .meevo-26-cta__visual {
        justify-content: center;
    }
}

@media screen and (max-width: 767.98px) {
    #page.site section.one-ai.meevo-26-section {
        overflow: visible !important;
    }

    .meevo-26-section {
        gap: 24px;
        padding: 48px 16px;
        overflow: visible;
    }

    .meevo-26-intro {
        padding: 0;
        gap: 24px;
        overflow: visible;
    }

    .meevo-26-badge {
        gap: 8px;
        padding: 8px 16px;
        border-radius: 100px;
        border-color: #ffcd00;
        background: rgba(255, 205, 0, 0.14);
    }

    .meevo-26-badge__dot {
        width: 8px;
        height: 8px;
        overflow: hidden;
        background: #fbbc04;
        border-radius: 100px;
    }

    .meevo-26-badge__dot img {
        display: none;
    }

    .meevo-26-badge__text {
        font-family: "Gilroy-SemiBold", sans-serif;
        font-size: 12px;
        color: #fbbc04;
    }

    .meevo-26-intro__title {
        max-width: none;
        font-family: "Gilroy-Black", "Gilroy-SemiBold", sans-serif;
        font-size: 28px;
        font-weight: 800;
        line-height: 34px;
    }

    .meevo-26-intro__title-accent {
        display: inline;
        color: #ffcd00;
    }

    .meevo-26-intro__title-accent::after {
        content: ".";
    }

    .meevo-26-intro__sub {
        display: none;
    }

    .meevo-26-panels {
        display: block;
        align-items: stretch;
        gap: 0;
        isolation: isolate;
    }

    .meevo-26-stack-item {
        display: block;
        position: sticky;
        top: 88px;
        z-index: var(--i, 1);
        padding-top: calc((var(--i) - 1) * 14px);
        margin-bottom: 20px;
    }

    .meevo-26-stack-item:last-child {
        margin-bottom: 0;
    }

    @supports (animation-timeline: view()) {
        .meevo-26-stack-item:not(:last-child) .meevo-26-panel,
        .meevo-26-stack-item:not(:last-child) .meevo-26-cta {
            animation: meevo26StackCover linear both;
            animation-timeline: view();
            animation-range: exit-crossing 0% exit-crossing 45%;
        }
    }

    @keyframes meevo26StackCover {
        to {
            transform: scale(0.92);
            filter: brightness(0.72);
        }
    }

    .meevo-26-panel,
    .meevo-26-cta {
        position: relative;
        top: auto;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        transform-origin: center top;
    }

    .meevo-26-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
        overflow: hidden;
        background: #190041;
        border: 1px solid rgba(62, 41, 96, 0.14);
        border-radius: 16px;
        box-shadow: 0 12px 32px rgba(17, 0, 43, 0.28);
    }

    .meevo-26-illu {
        width: 100%;
        max-width: none;
        height: 260px;
        padding-bottom: 0;
        border-radius: 12px;
        /* background: #3d295f; */
    }
/* 
    .meevo-26-illu--calls .meevo-26-illu__incoming {
        left: -1.19%;
        top: 4.96%;
        width: 55.55%;
        height: 94.52%;
    } */

    .meevo-26-illu--calls .meevo-26-illu__followup {
        left: 33.04%;
        top: 13.03%;
        width: 69.4%;
        height: 94.52%;
    }

    .meevo-26-illu--calls .meevo-26-illu__bell {
        left: 68%;
        top: -0.48%;
        width: 30.98%;
        height: 41.05%;
    }

    /* .meevo-26-illu--omni .meevo-26-illu__omni {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 88.94%;
        height: auto;
        max-width: none;
        transform: translate(-50%, -50%);
    } */

    /* .meevo-26-illu--brain {
        height: 163px;
        background: transparent;
    } */

    .meevo-26-illu__brain {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 12px;
    }

    .meevo-26-copy {
        max-width: none;
        gap: 16px;
    }

    .meevo-26-copy__eyebrow {
        font-size: 11px;
        color: #ffc300;
    }

    .meevo-26-copy__title {
        font-size: 18px;
        line-height: normal;
    }

    .meevo-26-copy__desc,
    .meevo-26-copy__desc--muted {
        max-width: none;
        font-size: 13px;
        line-height: 20px;
        color: #cecbd4;
    }

    .meevo-26-list {
        display: none;
    }

    .meevo-26-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 25px 24px;
        overflow: hidden;
        border-radius: 30px;
        box-shadow: 0 40px 120px rgba(0, 0, 0, 0.2);
    }

    .meevo-26-cta__left {
        flex: none;
        align-items: center;
        gap: 18px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .meevo-26-cta__headline {
        flex-direction: column;
        gap: 6px;
    }

    .meevo-26-cta__title {
        font-family: "Gilroy-Bold", "Gilroy-Black", sans-serif;
        font-size: 32px;
        font-weight: 700;
        line-height: 32px;
        white-space: normal;
        text-align: center;
    }

    .meevo-26-cta__logo {
        width: 117px;
        height: 30px;
    }

    .meevo-26-cta__sub {
        font-size: 21px;
        line-height: 26px;
        text-align: center;
    }

    .meevo-26-cta__btn {
        justify-content: center;
        min-height: 52px;
        padding: 15px 21px;
        box-shadow: 0 4px 3px rgba(0, 0, 0, 0.1), 0 10px 7.5px rgba(0, 0, 0, 0.1);
    }

    .meevo-26-cta__visual {
        flex: none;
        width: 100%;
        max-width: 280px;
    }

    .meevo-26-cta-art {
        width: 100%;
        max-width: 280px;
        height: 0;
        padding-bottom: 56.56%;
        margin: 0 auto;
    }

    .meevo-26-cta-art__desk,
    .meevo-26-cta-art__plant,
    .meevo-26-cta-art__bee {
        position: absolute;
    }

    .meevo-26-cta-art__plant {
        width: 24.45%;
        height: 44.4%;
    }

    .meevo-26-cta-art__bee {
        width: 12.44%;
        height: 8.22%;
    }

    .pricing-title { 
        font-size: 26px;
        line-height: 31.2px;
    }

    .pricing-grid {
        flex-direction: column;
        gap: 0;
        padding-top: 12px;
    }

    .pricing-subtitle {
        font-size: 14px;
        line-height: 26px;
        max-width: 310px !important;
    }
}

/* Customer reviews accordion gallery */
.meevo-26-reviews {
    background: #ffffff;
    padding: 24px 20px;
    overflow-x: hidden;
}

.meevo-26-reviews__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 0;
}

.meevo-26-reviews__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0 12px;
    text-align: center;
}

.meevo-26-reviews__intro h3 {
    margin: 0;
    padding-bottom: 16px;
    font-family: "Gilroy-Black", sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 59.4px;
    color: #190041;
    text-align: center;
}

.meevo-26-reviews__intro p {
    margin: 0;
    max-width: 718px;
    font-family: "Gotham-Book", sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #212529;
    text-align: center;
}

.meevo-26-gallery {
    display: flex;
    align-items: stretch;
    gap: 24px;
    /* width: 100%; */
    margin: 0 auto;
    max-width: 100%;
    height: 480px;
    box-sizing: border-box;
}

.meevo-26-review {
    position: relative;
    flex: 0 0 160px;
    width: 160px;
    min-width: 160px;
    height: 480px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    isolation: isolate;
    transition: flex 0.55s cubic-bezier(0.22, 1, 0.36, 1), width 0.55s cubic-bezier(0.22, 1, 0.36, 1), min-width 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.45s ease, border-color 0.35s ease;
}

.meevo-26-review.is-active {
    flex: 0 0 420px;
    width: 420px;
    min-width: 420px;
    border-radius: 24px;
    border-color: #fbbc04;
    cursor: default;
}

.meevo-26-review__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    z-index: 0;
    background-image: var(--photo);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: var(--photo-pos, center center);
    filter: grayscale(1);
    transform: scale(1.02);
    transition: filter 0.35s ease, background-position 0.45s ease;
}

.meevo-26-review.is-active .meevo-26-review__media {
    filter: none;
    background-position: var(--photo-pos-active, center 28%);
}

.meevo-26-review__veil {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(17, 0, 43, 0.08) 42%, rgba(17, 0, 43, 0.72) 100%);
    pointer-events: none;
    z-index: 1;
}

.meevo-26-review.is-active .meevo-26-review__veil {
    background: linear-gradient(180deg, rgba(42, 29, 66, 0.05) 0%, rgba(42, 29, 66, 0.12) 38%, rgba(17, 0, 43, 0.82) 100%);
    backdrop-filter: none;
}

.meevo-26-review.is-playing .meevo-26-review__veil,
.meevo-26-review.is-playing .meevo-26-review__body,
.meevo-26-review.is-playing .meevo-26-review__play,
.meevo-26-review.is-playing .meevo-26-review__logo,
.meevo-26-review.is-playing .meevo-26-review__collapsed,
.meevo-26-review.is-playing .meevo-26-review__media {
    opacity: 0;
    pointer-events: none;
}

.meevo-26-review__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    display: none;
    background: #11002b;
}

.meevo-26-review.is-playing .meevo-26-review__video {
    display: block;
}

.meevo-26-review__play {
    position: absolute;
    left: 50%;
    top: 207px;
    z-index: 3;
    width: 64px;
    height: 64px;
    padding: 0;
    border: none;
    background: transparent;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.meevo-26-review.is-active .meevo-26-review__play {
    opacity: 1;
    pointer-events: auto;
}

.meevo-26-review__play img {
    width: 64px;
    height: 64px;
    display: block;
}

.meevo-26-review__logo {
    position: absolute;
    top: 19px;
    right: 21px;
    z-index: 3;
    width: 105px;
    height: 70px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.meevo-26-review.is-active .meevo-26-review__logo {
    opacity: 1;
}

.meevo-26-review__logo img {
    position: absolute;
    display: block;
    max-width: none;
}

.meevo-26-review__logo-a {
    /* inset: 49.92% 8.02% 6.97% 12.13%; */
    width: auto;
    height: auto;
}

/* .meevo-26-review__logo-b {
    inset: 4.43% 9.37% 60.16% 1.18%;
    width: auto;
    height: auto;
}

.meevo-26-review__logo-c {
    inset: 82.04% 1.32% 3.24% 54.34%;
    width: auto;
    height: auto;
}

.meevo-26-review__logo-d {
    inset: 42.74% 69.58% 42.53% 18.03%;
    width: auto;
    height: auto;
} */

.meevo-26-review__collapsed {
    position: absolute;
    left: 0;
    right: 0;
    top: 85%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.meevo-26-review.is-active .meevo-26-review__collapsed {
    opacity: 0;
    pointer-events: none;
}

.meevo-26-review__collapsed-name {
    margin: 0;
    font-family: "Gotham-Book", sans-serif;
    font-size: 9px;
    letter-spacing: 0.6px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.8);
}

.meevo-26-review__collapsed-biz {
    margin: 0;
    font-family: "Gilroy-Black", sans-serif;
    font-size: 11px;
    line-height: normal;
    color: #ffffff;
}

.meevo-26-review__body {
    position: absolute;
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 22px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 9px;
    width: auto;
    max-width: 380px;
    opacity: 0;
    pointer-events: none;
    text-align: left;
    transition: opacity 0.3s ease 0.12s;
}

.meevo-26-review.is-active .meevo-26-review__body {
    opacity: 1;
}

.meevo-26-review.is-active .meevo-26-review__play {
    top: 38%;
}

.meevo-26-review__who {
    position: relative;
    width: 100%;
}

.meevo-26-review__name {
    margin: 0;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 15px;
    line-height: 1.2;
    color: #ffffff;
}

.meevo-26-review__role {
    margin: 4px 0 0;
    font-family: "Gotham-Book", sans-serif;
    font-size: 12px;
    line-height: 1.3;
    color: #cecbd4;
}

.meevo-26-review__quote {
    margin: 0;
    font-family: "Gilroy-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 1.45;
    color: #ffffff;
}

.meevo-26-review__rule {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.meevo-26-review__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.meevo-26-review__stat-num {
    margin: 0;
    font-family: "Gilroy-Black", sans-serif;
    font-size: 16px;
    line-height: normal;
    color: #fbbc04;
}

.meevo-26-review__stat-label {
    margin: 0;
    font-family: "Gotham-Book", sans-serif;
    font-size: 12px;
    line-height: normal;
    color: #cecbd4;
}

.meevo-26-reviews-slider {
    display: none;
}

.red-cta {
    color: #FF7D6B;
}

@media screen and (max-width: 991.98px) {
    .meevo-26-reviews__intro h3 {
        font-size: 36px;
        line-height: 42px;
        padding-bottom: 8px;
    }

    .meevo-26-gallery {
        height: 400px;
        gap: 10px;
    }

    .meevo-26-review {
        height: 400px;
    }

    .meevo-26-review__body {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
    }

    .meevo-26-review__play {
        top: 160px;
    }

    .faq-left-card {
        min-height: auto;
        order: 1;
    }
}

@media screen and (max-width: 767.98px) {
    #page.site section.meevo-26-reviews {
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }

    .meevo-26-reviews {
        padding: 48px 16px;
        overflow-x: hidden;
        max-width: 100%;
    }

    .meevo-26-reviews__inner {
        gap: 24px;
        padding: 0;
    }

    .meevo-26-reviews__intro {
        gap: 12px;
        padding: 0;
    }

    .meevo-26-reviews__intro h3 {
        font-family: "Gilroy-Black", sans-serif;
        font-size: 32px;
        line-height: 38px;
        padding-bottom: 0;
    }

    .meevo-26-reviews__intro p {
        max-width: none;
        font-size: 14px;
        line-height: 20px;
        color: rgba(62, 41, 96, 0.77);
    }

    .meevo-26-gallery {
        display: none;
    }

    .meevo-26-reviews-slider {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .meevo-26-reviews-slider__stage {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 370px;
        overflow: hidden;
        touch-action: pan-y;
    }

    .meevo-26-reviews-slide {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 270px;
        max-width: 78vw;
        height: 370px;
        overflow: hidden;
        border: 1.5px solid #3d295f;
        border-radius: 24px;
        transform: translate(-50%, -50%);
        transform-origin: center center;
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
        isolation: isolate;
    }

    .meevo-26-reviews-slide.is-active {
        box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.3);
        z-index: 10;
    }

    .meevo-26-reviews-slide.is-playing {
        z-index: 12;
    }

    .meevo-26-reviews-slide__media {
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image: var(--photo);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: var(--photo-pos, center 28%);
        border-radius: inherit;
    }

    .meevo-26-reviews-slide__veil {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(17, 0, 43, 0.65);
        border-radius: inherit;
        pointer-events: none;
        transition: background 0.35s ease;
    }

    .meevo-26-reviews-slide.is-active .meevo-26-reviews-slide__veil {
        background: rgba(17, 0, 43, 0.55);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .meevo-26-reviews-slide:not(.is-active) .meevo-26-reviews-slide__media {
        filter: blur(5px) brightness(0.38) grayscale(0.35);
        transform: scale(1.08);
    }

    .meevo-26-reviews-slide:not(.is-active) .meevo-26-reviews-slide__veil {
        background: rgba(10, 0, 28, 0.82);
    }

    .meevo-26-reviews-slide:not(.is-active) .meevo-26-reviews-slide__body,
    .meevo-26-reviews-slide:not(.is-active) .meevo-26-reviews-slide__play,
    .meevo-26-reviews-slide:not(.is-active) .meevo-26-reviews-slide__logo {
        opacity: 0.28;
        filter: blur(2px);
    }

    .meevo-26-reviews-slide__video {
        position: absolute;
        inset: 0;
        z-index: 5;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: none;
        background: #11002b;
    }

    .meevo-26-reviews-slide.is-playing .meevo-26-reviews-slide__video {
        display: block;
    }

    .meevo-26-reviews-slide.is-playing .meevo-26-reviews-slide__veil,
    .meevo-26-reviews-slide.is-playing .meevo-26-reviews-slide__body,
    .meevo-26-reviews-slide.is-playing .meevo-26-reviews-slide__play,
    .meevo-26-reviews-slide.is-playing .meevo-26-reviews-slide__logo,
    .meevo-26-reviews-slide.is-playing .meevo-26-reviews-slide__media {
        opacity: 0;
        pointer-events: none;
    }

    .meevo-26-reviews-slide__logo {
        position: absolute;
        top: 19px;
        right: 12px;
        z-index: 3;
        width: 52.5px;
        height: 35px;
        overflow: hidden;
        pointer-events: none;
    }

    .meevo-26-reviews-slide__logo img {
        position: absolute;
        display: block;
        max-width: none;
    }

    .meevo-26-reviews-slide__play {
        position: absolute;
        left: 50%;
        top: calc(50% - 50px);
        z-index: 4;
        width: 56px;
        height: 56px;
        padding: 0;
        border: none;
        background: transparent;
        transform: translate(-50%, -50%);
        cursor: pointer;
        display: block;
        text-decoration: none;
    }

    .meevo-26-reviews-slide__play img {
        width: 56px;
        height: 56px;
        display: block;
        max-width: none;
    }

    .meevo-26-reviews-slide:not(.is-active) .meevo-26-reviews-slide__play {
        pointer-events: none;
    }

    .meevo-26-reviews-slide__body {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 0 0 24px;
        pointer-events: none;
    }

    .meevo-26-reviews-slide__who,
    .meevo-26-reviews-slide__quote,
    .meevo-26-reviews-slide__stat {
        padding: 0 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .meevo-26-reviews-slide__name {
        margin: 0;
        font-family: "Gilroy-SemiBold", sans-serif;
        font-size: 18px;
        line-height: normal;
        color: #ffffff;
    }

    .meevo-26-reviews-slide__role {
        margin: 4px 0 0;
        font-family: "Gotham-Book", sans-serif;
        font-size: 11px;
        line-height: normal;
        color: #cecbd4;
    }

    .meevo-26-reviews-slide__quote {
        margin: 0;
        font-family: "Gilroy-SemiBold", sans-serif;
        font-size: 12px;
        line-height: 22px;
        color: #ffffff;
        opacity: 0.8;
    }

    .meevo-26-reviews-slide__rule {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.18);
    }

    .meevo-26-reviews-slide__stat {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .meevo-26-reviews-slide__stat-num {
        margin: 0;
        font-family: "Gilroy-Black", sans-serif;
        font-size: 16px;
        line-height: normal;
        color: #fbbc04;
    }

    .meevo-26-reviews-slide__stat-label {
        margin: 0;
        font-family: "Gotham-Book", sans-serif;
        font-size: 10px;
        line-height: 16px;
        color: #cecbd4;
    }

    .meevo-26-reviews-slider__dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        height: 8px;
    }

    .meevo-26-reviews-slider__dot {
        width: 8px;
        height: 8px;
        padding: 0;
        border: none;
        border-radius: 4px;
        background: rgba(62, 41, 96, 0.77);
        cursor: pointer;
        transition: width 0.25s ease, background 0.25s ease;
    }

    .meevo-26-reviews-slider__dot.is-active {
        width: 24px;
        background: #fbbc04;
    }

    .offer-till {
        font-size: 14px;
        line-height: 22px;
    }

    .faq-question,
    .faq-answer p {
            font-size: 16px;
    line-height: 24px;
    }
}
