/* BhojMandu Landing v2 */
.landing-v2 {
    --bm-red: var(--brand-red, #EF3024);
    --bm-navy: #1A1A2E;
    --bm-text: #282C3F;
    --bm-muted: #686B78;
    --bm-radius: 20px;
    --bm-shadow: 0 20px 60px rgba(26, 26, 46, 0.08);
}

.landing-v2 .bm-section {
    padding: 56px 0;
}

.landing-v2 .bm-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}

.landing-v2 .bm-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--bm-text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.landing-v2 .bm-section-head p {
    color: var(--bm-muted);
    font-size: 1.05rem;
    margin: 0;
}

/* Hero */
.bm-hero {
    position: relative;
    padding: 36px 0 52px;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 55%);
}

.bm-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
}

.bm-hero__bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bm-hero__food {
    position: absolute;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
    border-radius: 0;
    box-shadow: none;
    background: transparent !important;
}

.bm-hero__food--1 { top: 8%; left: 0; width: 110px; height: auto; }
.bm-hero__food--2 { top: 42%; left: -4%; width: 95px; height: auto; }
.bm-hero__food--3 { bottom: 6%; right: 8%; width: 120px; height: auto; z-index: 6; }
.bm-hero__food--4 { top: 6%; right: 6%; width: 95px; height: auto; z-index: 6; }

.bm-hero__visual {
    position: relative;
    min-height: 430px;
    max-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bm-hero__visual .bm-phone-mockup--frameless.bm-phone-mockup--hero {
    position: relative;
    z-index: 4;
    margin: 0 auto;
}

.bm-hero__visual .bm-phone-mockup--hero .bm-phone-mockup__device,
.bm-hero__visual .bm-phone-mockup--hero .bm-phone-mockup__screen {
    display: none;
}

.bm-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bm-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bm-red);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.bm-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--bm-text);
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

.bm-hero__text {
    color: var(--bm-muted);
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 520px;
}

.bm-hero__location-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
    max-width: 520px;
    background: #fff;
    border: 1px solid #E9E9EB;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.bm-hero__location {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-weight: 600;
    color: var(--bm-text);
}

.bm-hero__location-row .bm-hero__cta {
    border-radius: 0;
    margin: 0;
    padding: 14px 22px;
    box-shadow: none;
    white-space: nowrap;
}

.bm-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bm-red);
    color: #fff !important;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(239, 48, 36, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.bm-hero__cta:hover {
    transform: translateY(-2px);
    color: #fff;
}

.bm-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 28px 0;
}

.bm-hero__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.bm-hero__badge strong {
    display: block;
    color: var(--bm-text);
    font-weight: 700;
}

.bm-hero__badge span {
    color: var(--bm-muted);
    font-size: 0.8rem;
}

.bm-hero__stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.bm-hero__stores-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bm-text);
}

.bm-hero__stores-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bm-hero__stores-badges img {
    height: 44px;
}

.bm-hero__float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 7;
    white-space: nowrap;
}

.bm-hero__float--1 { top: 22%; left: 8%; font-size: 0.72rem; padding: 6px 10px; }
.bm-hero__float--2 { top: 38%; right: 12%; font-size: 0.72rem; padding: 6px 10px; }
.bm-hero__float--3 { bottom: 18%; left: 12%; font-size: 0.72rem; padding: 6px 10px; }

.bm-country-card {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--bm-shadow);
    min-width: 220px;
    text-align: left;
}

.bm-country-card h6 {
    font-weight: 800;
    margin: 0 0 12px;
    font-size: 0.9rem;
}

.bm-country-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--bm-text);
    text-decoration: none;
    font-size: 0.88rem;
    border-bottom: 1px solid #f0f0f2;
}

.bm-country-card a.active {
    color: var(--bm-red);
    font-weight: 700;
}

/* Services */
.bm-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bm-service-card {
    border-radius: var(--bm-radius);
    padding: 28px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s;
}

.bm-service-card__photo {
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 52%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.bm-service-card:hover {
    transform: translateY(-8px);
}

.bm-service-card--food { background: linear-gradient(145deg, #fff5f5, #ffe8e8); }
.bm-service-card--grocery { background: linear-gradient(145deg, #f0fdf4, #dcfce7); }
.bm-service-card--gift { background: linear-gradient(145deg, #faf5ff, #f3e8ff); }

.bm-service-card__emoji {
    font-size: 3rem;
    margin-bottom: 16px;
}

.bm-service-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--bm-text);
}

.bm-service-card p {
    color: var(--bm-muted);
    flex: 1;
    margin-bottom: 20px;
}

.bm-service-card__btn {
    align-self: flex-start;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 0;
}

.bm-service-card--food .bm-service-card__btn { color: var(--bm-red); }
.bm-service-card--grocery .bm-service-card__btn { color: #16a34a; }
.bm-service-card--gift .bm-service-card__btn { color: #7c3aed; }

/* Phone mockup frame */
.bm-phone-mockup {
    pointer-events: none;
    user-select: none;
}

.bm-phone-mockup--sm {
    position: absolute;
    right: 4px;
    bottom: 0;
    width: 54%;
    max-width: 210px;
    z-index: 2;
}

.bm-phone-mockup--md {
    width: 260px;
    max-width: 100%;
    margin: 0 auto;
}

.bm-phone-mockup--lg {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
}

.bm-phone-mockup__device {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 32px;
    padding: 10px 8px 12px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.bm-phone-mockup__notch {
    width: 36%;
    height: 5px;
    background: #0a0a0a;
    border-radius: 999px;
    margin: 0 auto 8px;
}

.bm-phone-mockup__screen {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    line-height: 0;
}

.bm-phone-mockup__screen img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.bm-phone-mockup--angle-left {
    transform: rotate(-8deg) translateY(8px);
}

.bm-phone-mockup--angle-right {
    transform: rotate(8deg) translateY(-8px);
    margin-left: -40px;
}

.bm-phone-mockup--angle-tilt {
    transform: rotate(4deg);
}

.bm-phone-mockup--frameless {
    pointer-events: none;
}

.bm-phone-mockup--frameless .bm-phone-mockup__full {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
}

.bm-phone-mockup--frameless.bm-phone-mockup--hero {
    width: min(255px, 36vw);
    max-height: 430px;
}

.bm-phone-mockup--frameless.bm-phone-mockup--hero .bm-phone-mockup__full {
    max-height: 430px;
    object-fit: contain;
}

.bm-phone-mockup--frameless.bm-phone-mockup--md {
    width: 185px;
    max-height: 340px;
}

.bm-phone-mockup--frameless.bm-phone-mockup--md .bm-phone-mockup__full {
    max-height: 340px;
    object-fit: contain;
}

.bm-phone-mockup--frameless.bm-phone-mockup--angle-left {
    transform: rotate(-8deg) translateY(6px);
}

.bm-phone-mockup--frameless.bm-phone-mockup--angle-right {
    transform: rotate(8deg) translateY(-4px);
    margin-left: -28px;
}

.bm-phone-mockup--frameless.bm-phone-mockup--angle-tilt {
    transform: rotate(4deg);
}

.bm-oneapp__phones {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    gap: 0;
}

.bm-oneapp__phones .bm-phone-mockup--frameless.bm-phone-mockup--md {
    width: 200px;
}

.bm-oneapp__phones .bm-phone-mockup--angle-left {
    z-index: 2;
}

.bm-oneapp__phones .bm-phone-mockup--angle-right {
    z-index: 3;
    margin-left: -48px;
}

/* Why choose */
.bm-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bm-why__item {
    background: #fff;
    border: 1px solid #f0f0f2;
    border-radius: var(--bm-radius);
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.25s;
}

.bm-why__item:hover {
    box-shadow: var(--bm-shadow);
}

.bm-why__icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}

.bm-why__item h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--bm-text);
}

.bm-why__item p {
    font-size: 0.9rem;
    color: var(--bm-muted);
    margin: 0;
}

/* Global */
.landing-v2__global {
    position: relative;
    overflow: hidden;
}

.bm-global__map {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.bm-global__cta {
    display: inline-flex;
    padding: 12px 24px;
    font-size: 0.95rem;
    background: #fff;
    color: var(--bm-red) !important;
    border: 2px solid var(--bm-red);
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
}

.bm-global__cta:hover {
    background: #fff5f4;
    color: var(--bm-red) !important;
    transform: none;
}

.bm-global__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.bm-global__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bm-global__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--bm-radius);
    padding: 0 0 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.bm-global__card-img {
    width: 100%;
    height: 98px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
}

.bm-global__card .flag,
.bm-global__card h4,
.bm-global__card p {
    padding-left: 16px;
    padding-right: 16px;
}

.bm-global__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bm-shadow);
    color: inherit;
}

.bm-global__card .flag {
    font-size: 2rem;
    margin-bottom: 8px;
}

.bm-global__card h4 {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 6px;
}

.bm-global__card p {
    font-size: 0.85rem;
    color: var(--bm-muted);
    margin: 0;
}

.bm-global__card--more {
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    text-align: center;
}

/* One app */
.bm-oneapp__head {
    text-align: left;
    max-width: none;
    margin-bottom: 32px;
}

.bm-oneapp__head p {
    max-width: 560px;
    margin: 0;
}

.bm-oneapp__grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
    gap: 40px;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
}

.bm-oneapp__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bm-oneapp__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-weight: 600;
    color: var(--bm-text);
}

.bm-oneapp__list li::before {
    content: '✓';
    color: var(--bm-red);
    font-weight: 800;
}

.bm-oneapp__phone-wrap {
    position: relative;
    text-align: center;
    min-height: 340px;
    max-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bm-oneapp__phone-wrap .bm-phone-mockup--md {
    width: 185px;
    z-index: 2;
}

.bm-oneapp__bubble {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-size: 0.72rem;
    max-width: 118px;
    text-align: left;
    border: 1px solid #f0f0f2;
    z-index: 3;
    line-height: 1.35;
}

.bm-oneapp__bubble-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 4px;
    display: block;
    background: transparent !important;
}

.bm-oneapp__bubble strong {
    display: block;
    font-size: 0.78rem;
    margin-bottom: 2px;
}

.bm-oneapp__bubble span {
    display: block;
    color: var(--bm-muted);
    font-size: 0.68rem;
}

.bm-oneapp__bubble--1 { top: 8%; right: 2%; }
.bm-oneapp__bubble--2 { top: 44%; left: 0; }
.bm-oneapp__bubble--3 { bottom: 10%; right: 4%; }
.bm-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.bm-step {
    text-align: center;
    padding: 24px 16px;
}

.bm-step__icon-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}

.bm-step__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: #fff;
    border: 2px solid #f0f0f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.bm-step h4 {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 8px;
}

.bm-step p {
    font-size: 0.88rem;
    color: var(--bm-muted);
    margin: 0;
}

/* Stats */
.bm-stats {
    background: var(--bm-red);
    padding: 48px 0;
}

.bm-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.bm-stats__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
}

.bm-stats__item strong {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 900;
    color: #fff;
}

.bm-stats__item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Testimonials */
.bm-testimonials__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    max-width: 100%;
    text-align: left;
}

.bm-testimonials__head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin: 0;
}

.bm-testimonials__nav {
    display: flex;
    gap: 12px;
}

.bm-testimonial-nav {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 0;
}

.bm-testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--bm-radius);
    padding: 24px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.bm-testimonial-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bm-testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.bm-testimonial-card__name {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 2px;
}

.bm-testimonial-card__location {
    font-size: 0.85rem;
    color: var(--bm-muted);
}

.bm-testimonial-card__stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.bm-testimonial-card__quote {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--bm-muted);
    margin: 0;
    font-style: normal;
}

/* App download */
.bm-app-dl {
    background: linear-gradient(135deg, #fff0f3 0%, #fff5f8 50%, #fff 100%);
}

.bm-app-dl__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) 1.1fr auto;
    gap: 28px;
    align-items: center;
}

.bm-app-dl__phones {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    min-height: 300px;
    max-height: 320px;
    padding-left: 8px;
}

.bm-app-dl__phones .bm-phone-mockup--frameless.bm-phone-mockup--md {
    width: 158px;
    max-height: 300px;
}

.bm-app-dl__phones .bm-phone-mockup--angle-left {
    z-index: 2;
}

.bm-app-dl__phones .bm-phone-mockup--angle-right {
    z-index: 3;
    margin-left: -32px;
}

.bm-app-dl__content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--bm-text);
}

.bm-app-dl__content p {
    color: var(--bm-muted);
    margin-bottom: 24px;
}

.bm-app-dl__qr-wrap {
    text-align: center;
}

.bm-app-dl__qr-wrap p {
    font-size: 0.85rem;
    color: var(--bm-muted);
    margin: 8px 0 0;
}

.bm-app-dl__qr {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.bm-app-dl__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.bm-app-dl__actions img {
    height: 48px;
}

@media (max-width: 991px) {
    .bm-hero__inner,
    .bm-global__grid,
    .bm-oneapp__grid {
        grid-template-columns: 1fr !important;
    }

    .bm-hero__visual {
        order: -1;
        min-height: 320px;
        max-height: 340px;
    }

    .bm-phone-mockup--frameless.bm-phone-mockup--hero {
        width: min(210px, 52vw);
    }

    .landing-v2 .bm-hero__food {
        width: 88px;
        height: 88px;
    }

    .bm-oneapp__phone-wrap {
        min-height: 300px;
        max-height: 320px;
    }

    .bm-app-dl__phones {
        min-height: 260px;
        max-height: 280px;
        justify-content: center;
    }

    .bm-app-dl__phones .bm-phone-mockup--frameless.bm-phone-mockup--md {
        width: 140px;
    }
    .bm-country-card { position: static; margin-bottom: 24px; }

    .bm-services__grid,
    .bm-why__grid {
        grid-template-columns: 1fr;
    }

    .bm-global__cards {
        grid-template-columns: 1fr;
    }

    .bm-steps {
        grid-template-columns: 1fr 1fr;
    }

    .bm-stats__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bm-app-dl__inner {
        grid-template-columns: 1fr;
    }
}

/* About section v2 */
.bm-about {
    background: #fff;
}

.bm-about__content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--bm-text);
    margin-bottom: 8px;
}

.bm-about__content h3 {
    font-size: 1.15rem;
    color: var(--bm-muted);
    font-weight: 600;
    margin-bottom: 16px;
}

.bm-about__content p {
    color: var(--bm-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.bm-about__img {
    border-radius: 24px;
    max-width: 100%;
    box-shadow: var(--bm-shadow);
}

/* Prevent legacy main.css from breaking v2 layout */
.landing-v2 .about-section,
.landing-v2 .banner-section {
    display: none !important;
}

.landing-page .landing-v2 {
    overflow-x: hidden;
}

/* Legacy .bm-global__* above must not break v3 horizontal cards */
.landing-v2 .landing-v2__global.bm-global-v3 .bm-global__card .flag,
.landing-v2 .landing-v2__global.bm-global-v3 .bm-global__card h4,
.landing-v2 .landing-v2__global.bm-global-v3 .bm-global__card > p {
    padding-left: 0;
    padding-right: 0;
}

.landing-v2 .landing-v2__global.bm-global-v3 .bm-global__card .flag {
    font-size: 1rem;
    margin-bottom: 0;
}

.landing-v2 .landing-v2__global.bm-global-v3 .bm-global__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    display: block;
}

.landing-v2 .landing-v2__one-app.bm-oneapp-v3 .bm-oneapp__bubble {
    max-width: 210px;
    font-size: inherit;
    text-align: left;
    backdrop-filter: none;
}

/* Legacy .bm-steps / .bm-stats must not break v3 sections */
.landing-v2 .landing-v2__how.bm-how-v3 .bm-steps {
    display: flex !important;
    grid-template-columns: none !important;
}

.landing-v2 .landing-v2__how.bm-how-v3 .bm-step {
    text-align: left !important;
    padding: 0 !important;
}

.landing-v2 .landing-v2__how.bm-how-v3 .bm-step__icon-img,
.landing-v2 .landing-v2__how.bm-how-v3 .bm-step__icon {
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    font-size: inherit !important;
}

.landing-v2 .landing-v2__stats.bm-stats {
    background: transparent !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}
