/* —— YouTube —— */
.lh-youtube__card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
    align-items: stretch;
    gap: 0;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    min-height: clamp(360px, 40vw, 460px);
    background: var(--card);
    corner-shape: squircle;
    border-radius: clamp(28px, 4vw, 44px);
    overflow: hidden;
    box-sizing: border-box;
    color: var(--text);
}

.lh-youtube__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    min-width: 0;
    padding: clamp(28px, 4vw, 40px);
}

.lh-youtube__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--fill-secondary);
    color: var(--text);
    font-size: var(--text-size-footnote);
    font-weight: var(--text-weight-semibold);
    letter-spacing: -0.01em;
}

.lh-youtube__badge-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    color: currentColor;
}

.lh-youtube__badge-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.lh-youtube__title {
    margin: 0;
    max-width: 11em;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: var(--text-weight-bold);
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: var(--text);
}

.lh-youtube__lead {
    margin: 0;
    max-width: 30em;
    font-size: var(--text-size-subhead);
    line-height: var(--line-relaxed);
    color: var(--text-secondary);
}

.lh-youtube__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--control-height);
    margin-top: 2px;
    padding: 0 24px;
    font-size: var(--text-size-footnote);
    font-weight: var(--text-weight-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--button-primary-text);
    background: var(--button-primary-bg);
    corner-shape: squircle;
    border-radius: calc((var(--control-height) / 2) * 44.53125);
    transition: opacity var(--motion-normal) var(--ease-standard);
}

.lh-youtube__btn:hover {
    opacity: 0.88;
}

.lh-youtube__media {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-width: 0;
    padding: clamp(16px, 2.5vw, 28px) clamp(16px, 2.5vw, 28px) 0;
    box-sizing: border-box;
    overflow: hidden;
}

.lh-youtube__img {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: none;
    height: auto;
    margin: 0;
    border: 0;
    object-fit: contain;
    object-position: bottom center;
    pointer-events: none;
    user-select: none;
}

.lh-stats {
    max-width: 1180px;
    width: 100%;
    margin: clamp(28px, 4vw, 44px) auto 0;
    padding: 0;
    box-sizing: border-box;
}

.lh-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 32px);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.lh-stats__item {
    min-width: 0;
}

.lh-stats__value {
    margin: 0;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: var(--text-weight-bold);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--label-on-accent);
}

.lh-stats__label {
    margin: 8px 0 0;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: var(--text-weight-regular);
    line-height: 1.3;
    color: color-mix(in srgb, var(--label-on-accent) 52%, transparent);
}

/* —— Features —— */
.lh-features__head {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto clamp(20px, 3vw, 28px);
    text-align: center;
}

.lh-features__eyebrow {
    margin: 0 0 10px;
    font-size: var(--text-size-footnote);
    font-weight: var(--text-weight-semibold);
    letter-spacing: 0.02em;
    color: var(--text-secondary);
}

.lh-features__title {
    margin: 0;
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
    font-weight: var(--text-weight-bold);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text);
}

.lh-features__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.2vw, 24px);
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.lh-feature {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: clamp(520px, 54vw, 640px);
    padding: 0;
    corner-shape: squircle;
    border-radius: clamp(32px, 4.5vw, 48px);
    box-sizing: border-box;
    overflow: hidden;
}

.lh-feature--tone-a {
    background: var(--card);
}

.lh-feature--tone-b {
    background: var(--fill-secondary);
}

.lh-feature--white {
    background: var(--accent);
}

.lh-feature--white .lh-feature__icon,
.lh-feature--white .lh-feature__icon svg,
.lh-feature--white .lh-feature__title {
    color: var(--label-on-accent);
}

.lh-feature--white .lh-feature__icon svg {
    stroke: var(--label-on-accent);
}

.lh-feature--white .lh-feature__text {
    color: color-mix(in srgb, var(--label-on-accent) 68%, transparent);
}

.lh-feature__copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    padding: clamp(26px, 3vw, 36px) clamp(26px, 3vw, 36px) 14px;
}

.lh-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--text);
    line-height: 1;
}

.lh-feature__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.lh-feature__title {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: var(--text-weight-bold);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text);
}

.lh-feature__text {
    margin: 0;
    max-width: 36em;
    font-size: var(--text-size-subhead);
    line-height: var(--line-relaxed);
    color: var(--text-secondary);
}

.lh-feature__media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 160px;
    overflow: hidden;
}

.lh-feature__img {
    position: relative;
    display: block;
    width: auto;
    max-width: 92%;
    max-height: 100%;
    height: auto;
    margin: 0;
    border: 0;
    object-fit: contain;
    object-position: bottom center;
    pointer-events: none;
    user-select: none;
}

.lh-feature__video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    object-fit: cover;
    object-position: center center;
    corner-shape: squircle;
    border-radius: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 40px) 0 0;
    pointer-events: none;
}

.lh-feature--video .lh-feature__copy {
    position: relative;
    z-index: 1;
    padding-bottom: 18px;
}

.lh-feature--video .lh-feature__media {
    min-height: 0;
    flex: 1 1 auto;
}

.lh-feature--studio .lh-feature__copy {
    flex: 0 0 auto;
    padding: clamp(18px, 2.2vw, 26px) clamp(18px, 2.2vw, 26px) 0;
}

.lh-feature--studio .lh-feature__media {
    flex: 1 1 auto;
    min-height: 0;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.lh-feature--media-top .lh-feature__copy {
    padding: 14px clamp(26px, 3vw, 36px) clamp(26px, 3vw, 36px);
}

.lh-feature--media-top .lh-feature__media {
    align-items: flex-start;
    padding-top: 0;
}

.lh-feature--media-top .lh-feature__img {
    object-position: top center;
    max-width: 88%;
}

.lh-feature--payouts .lh-feature__media {
    padding-top: 0;
}

.lh-feature--payouts .lh-feature__img {
    max-width: 100%;
    width: 100%;
    object-position: top center;
}

.lh-feature--payouts .lh-feature__media {
    margin-top: -8px;
}

.lh-feature__media--fees {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 24px 28px;
}

.lh-feature__fee {
    margin: 0;
    font-size: clamp(4.5rem, 12vw, 7rem);
    font-weight: var(--text-weight-bold);
    line-height: 0.92;
    letter-spacing: -0.06em;
    color: var(--text);
}

.lh-feature--fees.lh-feature--compact .lh-feature__media--fees {
    flex: 0 1 48%;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 0 clamp(12px, 2vw, 20px);
}

.lh-feature--fees .lh-feature__fee {
    text-align: center;
    font-size: clamp(3rem, 8vw, 4.5rem);
}

.lh-feature--fees .lh-feature__fee-caption {
    text-align: center;
}

.lh-feature--orders {
    background: color-mix(in srgb, var(--card) 58%, white 42%);
}

.lh-feature--orders .lh-feature__text {
    color: color-mix(in srgb, var(--text) 55%, white 45%);
}

.lh-feature__fee-caption {
    margin: 0;
    font-size: var(--text-size-footnote);
    color: var(--text-secondary);
}

/* —— FAQ —— */
.lh-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.lh-faq__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--text-weight-bold);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text);
}

.lh-faq__support {
    margin: 16px 0 0;
    font-size: var(--text-size-subhead);
    line-height: var(--line-relaxed);
    color: var(--text-secondary);
}

.lh-faq__support a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.lh-faq__support a:hover {
    opacity: 0.75;
}

.lh-faq__list {
    position: relative;
    min-width: 0;
    border-top: 1px solid var(--separator);
    /* Keep page height stable — answers overlay instead of pushing layout */
    z-index: 1;
}

.lh-faq__item {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--separator);
}

.lh-faq__item.is-open {
    z-index: 12;
}

.lh-faq__summary {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
}

.lh-faq__summary::-webkit-details-marker {
    display: none;
}

.lh-faq__toggle {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.lh-faq__toggle::before,
.lh-faq__toggle::after {
    content: "";
    position: absolute;
    background: var(--text);
    border-radius: 1px;
    transition: opacity 0.25s var(--ease-standard), transform 0.25s var(--ease-standard);
}

.lh-faq__toggle::before {
    top: 50%;
    left: 2px;
    right: 2px;
    height: 2px;
    margin-top: -1px;
}

.lh-faq__toggle::after {
    left: 50%;
    top: 2px;
    bottom: 2px;
    width: 2px;
    margin-left: -1px;
}

.lh-faq__item.is-open .lh-faq__toggle::after {
    opacity: 0;
    transform: rotate(90deg);
}

.lh-faq__question {
    font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
    font-weight: var(--text-weight-medium);
    line-height: 1.45;
    color: var(--text);
    text-align: left;
}

.lh-faq__answer {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    z-index: 2;
    display: none;
    margin: 0;
    padding: 8px 0 22px 32px;
    background: #fff;
    border-bottom: 1px solid color-mix(in srgb, var(--label-on-accent) 14%, transparent);
    box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.35);
    transform-origin: top center;
    box-sizing: border-box;
}

.lh-faq__item.is-open > .lh-faq__answer {
    display: block;
    animation: lh-faq-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lh-faq__item.is-open.is-leaving > .lh-faq__answer {
    animation: lh-faq-out 0.28s cubic-bezier(0.4, 0, 1, 1) both;
}

@keyframes lh-faq-in {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lh-faq-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lh-faq__item.is-open > .lh-faq__answer,
    .lh-faq__item.is-open.is-leaving > .lh-faq__answer {
        animation: none;
    }
}

.lh-faq__answer p {
    margin: 0;
    max-width: 40em;
    font-size: var(--text-size-subhead);
    line-height: var(--line-relaxed);
    color: var(--text-secondary);
}

/* —— CTA —— */
.lh-cta__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 48px);
    text-align: center;
    background: var(--card);
    color: var(--text);
    corner-shape: squircle;
    border-radius: clamp(28px, 4vw, 44px);
    box-sizing: border-box;
}

.lh-cta__avatars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lh-cta__avatars img,
.lh-cta__avatar-fallback {
    width: 40px;
    height: 40px;
    margin-left: -10px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--fill-secondary);
    box-shadow: 0 0 0 3px var(--card);
    color: var(--text-muted);
    font-size: 40px;
    line-height: 1;
}

.lh-cta__avatars img:first-child,
.lh-cta__avatars .lh-cta__avatar-fallback:first-child {
    margin-left: 0;
}

.lh-cta__title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--text-weight-bold);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text);
}

.lh-cta__lead {
    margin: 0;
    max-width: 26em;
    font-size: var(--text-size-subhead);
    line-height: var(--line-relaxed);
    color: var(--text-secondary);
}

.lh-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--control-height);
    margin-top: 6px;
    padding: 0 20px;
    font-size: var(--text-size-footnote);
    font-weight: var(--text-weight-semibold);
    letter-spacing: -0.01em;
    text-decoration: none;
    color: var(--button-primary-text);
    background: var(--button-primary-bg);
    corner-shape: squircle;
    border-radius: calc((var(--control-height) / 2) * 44.53125);
    transition: opacity var(--motion-normal) var(--ease-standard);
    width: auto;
    max-width: 100%;
}

.lh-cta__btn:hover {
    opacity: 0.88;
}

/* —— Responsive —— */
@media (max-width: 960px) {
    .lh-youtube__card {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: clamp(24px, 5vw, 36px);
    }

    .lh-youtube__copy {
        padding: clamp(24px, 5vw, 32px) clamp(20px, 4vw, 28px) clamp(8px, 2vw, 12px);
        gap: clamp(12px, 2.5vw, 16px);
    }

    .lh-youtube__title {
        max-width: none;
        font-size: clamp(1.5rem, 5.5vw, 2rem);
    }

    .lh-youtube__lead {
        font-size: clamp(0.9375rem, 3.8vw, 1.0625rem);
    }

    .lh-youtube__media {
        min-height: clamp(200px, 48vw, 300px);
        padding: clamp(12px, 3vw, 20px) clamp(16px, 4vw, 24px) 0;
    }

    .lh-youtube__img {
        max-width: 100%;
        max-height: none;
    }

    .lh-faq__layout {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 32px);
    }

    .lh-cta__card {
        border-radius: clamp(24px, 5vw, 36px);
        padding: clamp(28px, 6vw, 40px) clamp(20px, 4vw, 28px);
    }

    .lh-cta__title {
        font-size: clamp(1.75rem, 6vw, 2.35rem);
    }
}

@media (max-width: 640px) {
    .lh-features__head {
        margin-bottom: clamp(20px, 5vw, 28px);
        padding: 0 clamp(4px, 1vw, 8px);
    }

    .lh-features__title {
        font-size: clamp(1.625rem, 7vw, 2.125rem);
    }

    .lh-features__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: clamp(10px, 2.5vw, 14px);
    }

    .lh-feature,
    .lh-feature--lg,
    .lh-feature--md,
    .lh-feature--sm,
    .lh-feature--pos-studio,
    .lh-feature--pos-payouts,
    .lh-feature--pos-cover,
    .lh-feature--pos-fees,
    .lh-feature--pos-orders,
    .lh-feature--pos-payments,
    .lh-feature--pos-ai,
    .lh-feature--pos-licenses {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .lh-feature {
        min-height: 0;
    }

    .lh-feature--compact {
        flex-direction: column;
    }

    .lh-feature--compact .lh-feature__copy {
        padding: clamp(22px, 4vw, 28px) clamp(22px, 4vw, 28px) 12px;
    }

    .lh-feature--compact .lh-feature__media {
        flex: 1 1 auto;
        min-height: 0;
        padding: 0 10px 10px;
    }

    .lh-feature--studio .lh-feature__img {
        transform: translateY(18%) scale(1.15);
    }

    .lh-feature--studio.is-inview .lh-feature__img {
        transform: translateY(18%) scale(1.15);
    }
}

@media (max-width: 520px) {
    .lh-youtube__copy {
        padding: clamp(20px, 5vw, 24px) clamp(16px, 4vw, 20px) 4px;
    }

    .lh-youtube__media {
        min-height: clamp(180px, 44vw, 260px);
        padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 16px) 0;
    }

    .lh-youtube__btn {
        width: auto;
        align-self: flex-start;
    }

    .lh-faq__answer {
        padding-left: 0;
    }

    .lh-faq__title {
        font-size: clamp(1.625rem, 7vw, 2rem);
    }
}

/* Landing bento: a single layout system with media kept intact. */
.lh-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(180px, 19vw, 228px);
    gap: clamp(12px, 1.5vw, 16px);
    max-width: 1180px;
}

.lh-feature {
    min-height: 0;
    border-radius: clamp(22px, 3vw, 34px);
}

.lh-feature--lg,
.lh-feature--md {
    min-height: 0;
}

.lh-feature--pos-studio {
    grid-column: 1;
    grid-row: 1 / 3;
}

.lh-feature--pos-payouts {
    grid-column: 2;
    grid-row: 1;
}

.lh-feature--pos-cover {
    grid-column: 2;
    grid-row: 2;
}

.lh-feature--pos-fees {
    grid-column: 1;
    grid-row: 3;
}

.lh-feature--pos-orders {
    grid-column: 1;
    grid-row: 4;
}

.lh-feature--pos-payments {
    grid-column: 2;
    grid-row: 3 / 5;
}

.lh-feature--pos-ai {
    grid-column: 1;
    grid-row: 5 / 7;
}

.lh-feature--pos-licenses {
    grid-column: 2;
    grid-row: 5 / 7;
}

.lh-feature--compact {
    flex-direction: row;
    align-items: stretch;
}

.lh-feature--compact .lh-feature__copy {
    flex: 1 1 52%;
    justify-content: center;
    padding: clamp(14px, 1.8vw, 18px) clamp(14px, 1.8vw, 20px);
}

.lh-feature--compact .lh-feature__media {
    flex: 0 1 48%;
    min-height: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 8px 8px 0;
}

.lh-feature--compact .lh-feature__img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lh-feature__media {
    min-height: 0;
}

.lh-feature__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lh-feature__video,
.lh-feature--compact.lh-feature--video .lh-feature__video {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: clamp(14px, 2vw, 24px);
}

.lh-feature--video {
    background: #000;
    outline: 0.5px solid rgba(255, 255, 255, 0.1);
    outline-offset: -0.5px;
}

.lh-feature--video .lh-feature__media {
    flex: 1 1 58%;
}

.lh-feature--video .lh-feature__video {
    width: 112%;
    max-width: 112%;
}

.lh-feature--payments .lh-feature__img {
    width: 112%;
    max-width: 112%;
}

.lh-feature--orders .lh-feature__media {
    justify-content: flex-start;
}

.lh-feature--orders .lh-feature__img {
    width: 112%;
    max-width: 112%;
    transform: translateX(-7%);
}

.lh-feature--compact.lh-feature--video .lh-feature__media {
    min-height: 0;
}

/* Studio: larger MacBook, sits lower in the card */
.lh-feature--studio .lh-feature__img {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    margin: 0;
    object-fit: contain;
    object-position: bottom center;
    transform: translateY(30%) scale(1.5);
    transform-origin: bottom center;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.75s ease;
}

.lh-feature--studio:not(.is-inview) .lh-feature__img {
    transform: translateY(58%) scale(1.5);
    opacity: 0.001;
}

.lh-feature--studio.is-inview .lh-feature__img {
    transform: translateY(30%) scale(1.5);
    opacity: 1;
}

/* Mobile: single-column features — must come AFTER bento pos rules above */
@media (max-width: 960px) {
    .lh-features__grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        gap: 12px !important;
    }

    .lh-feature,
    .lh-feature--lg,
    .lh-feature--md,
    .lh-feature--sm,
    .lh-feature--pos-studio,
    .lh-feature--pos-payouts,
    .lh-feature--pos-cover,
    .lh-feature--pos-fees,
    .lh-feature--pos-orders,
    .lh-feature--pos-payments,
    .lh-feature--pos-ai,
    .lh-feature--pos-licenses {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-height: 0 !important;
    }

    .lh-feature--compact {
        flex-direction: column !important;
    }

    .lh-feature--compact .lh-feature__copy {
        padding: clamp(20px, 4vw, 24px) clamp(20px, 4vw, 24px) 10px;
    }

    .lh-feature--compact .lh-feature__media {
        flex: 1 1 auto !important;
        padding: 0 12px 12px !important;
    }

    .lh-feature--studio .lh-feature__img,
    .lh-feature--studio.is-inview .lh-feature__img,
    .lh-feature--studio:not(.is-inview) .lh-feature__img {
        transform: translateY(12%) scale(1.1) !important;
        opacity: 1 !important;
    }

    .lh-feature--payments .lh-feature__img,
    .lh-feature--orders .lh-feature__img {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
    }

    .lh-feature--video .lh-feature__video {
        width: 100% !important;
        max-width: 100% !important;
    }

    .lh-feature--fees.lh-feature--compact .lh-feature__media--fees {
        overflow: hidden;
    }
}
