@font-face {
    font-family: "Ping AR LT";
    src: url("../fonts/ping-ar-lt-light.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Ping AR LT";
    src: url("../fonts/ping-ar-lt-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Ping AR LT";
    src: url("../fonts/ping-ar-lt-medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Ping AR LT";
    src: url("../fonts/ping-ar-lt-bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --hb-lime: #b8f34a;
    --hb-lime-bright: #d9ff70;

    --hb-green: #46b947;
    --hb-green-dark: #238b3b;
    --hb-green-soft: #effbe9;

    --hb-ink: #101b15;
    --hb-ink-soft: #334039;
    --hb-muted: #6a766e;

    --hb-white: #ffffff;
    --hb-surface: #f7faf7;

    --hb-border: rgba(28, 75, 43, 0.12);

    --hb-shadow-sm:
        0 10px 30px rgba(18, 53, 31, 0.07);

    --hb-container: 1220px;

    --hb-radius-md: 22px;
    --hb-radius-pill: 999px;

    color-scheme: light;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;

    font-family:
        "Ping AR LT",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-weight: 400;

    color: var(--hb-ink);

    background:
        radial-gradient(
            circle at 12% 16%,
            rgba(184, 243, 74, 0.14),
            transparent 28rem
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(70, 185, 71, 0.08),
            transparent 32rem
        ),
        var(--hb-white);

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(70, 185, 71, 0.30);
    outline-offset: 4px;
}

.hb-container {
    width: min(
        calc(100% - 32px),
        var(--hb-container)
    );

    margin-inline: auto;
}

/* Header */

.hb-header-wrap {
    position: sticky;
    inset-block-start: 0;

    z-index: 50;

    padding-block: 12px;
}

.hb-header {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding:
        9px
        12px
        9px
        16px;

    background:
        rgba(255, 255, 255, 0.88);

    border:
        1px solid
        var(--hb-border);

    border-radius:
        var(--hb-radius-pill);

    box-shadow:
        var(--hb-shadow-sm);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hb-brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    text-decoration: none;
}

.hb-brand-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 auto;

    object-fit: cover;

    border-radius: 14px;
}

.hb-brand-copy {
    min-width: 0;
}

.hb-brand-name {
    display: block;

    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hb-brand-product {
    display: block;

    margin-block-start: 2px;

    color: var(--hb-muted);

    font-size: 0.76rem;
    font-weight: 400;
}

.hb-header-actions {
    display: flex;
    align-items: center;

    gap: 8px;
}

.hb-language,
.hb-header-download {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding-inline: 16px;

    text-decoration: none;

    border-radius:
        var(--hb-radius-pill);

    white-space: nowrap;

    font-size: 0.88rem;
    font-weight: 500;
}

.hb-language {
    background: var(--hb-white);

    border:
        1px solid
        var(--hb-border);
}

.hb-header-download {
    background:
        linear-gradient(
            135deg,
            var(--hb-lime),
            var(--hb-lime-bright)
        );

    border:
        1px solid
        rgba(107, 169, 35, 0.16);

    font-weight: 700;
}

/* Hero */

.hb-main {
    overflow: hidden;
}

.hb-hero {
    padding-block:
        clamp(30px, 4.5vw, 62px)
        30px;
}

.hb-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(390px, 0.98fr);

    align-items: center;

    gap:
        clamp(
            24px,
            4.5vw,
            70px
        );

    min-height:
        min(
            710px,
            calc(100vh - 110px)
        );
}

.hb-hero-copy {
    position: relative;
    z-index: 2;

    align-self: center;
}

.hb-eyebrow {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin:
        0
        0
        20px;

    padding:
        8px
        14px;

    color:
        var(--hb-green-dark);

    background:
        var(--hb-green-soft);

    border:
        1px solid
        rgba(70, 185, 71, 0.15);

    border-radius:
        var(--hb-radius-pill);

    font-size: 0.82rem;
    font-weight: 500;
}

.hb-eyebrow::before {
    content: "";

    width: 9px;
    height: 9px;

    flex: 0 0 auto;

    background:
        var(--hb-green);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px
        rgba(70, 185, 71, 0.10);
}

.hb-title {
    max-width: 720px;

    margin: 0;

    font-size:
        clamp(
            2.7rem,
            4.2vw,
            4.5rem
        );

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -0.025em;
}

html[lang="en"] .hb-title {
    font-size:
        clamp(
            2.85rem,
            4.4vw,
            4.7rem
        );

    line-height: 1.03;
}

.hb-title-accent {
    display: block;

    margin-block-start: 4px;

    color:
        var(--hb-green-dark);
}

.hb-description {
    max-width: 680px;

    margin:
        24px
        0
        0;

    color:
        var(--hb-muted);

    font-size:
        clamp(
            1rem,
            1.15vw,
            1.12rem
        );

    line-height: 1.9;

    font-weight: 400;
}

.hb-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 11px;

    margin-block-start: 28px;
}

.hb-btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding-inline: 24px;

    text-decoration: none;

    border-radius:
        var(--hb-radius-pill);

    font-size: 0.96rem;
    font-weight: 700;

    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.hb-btn:hover {
    transform:
        translateY(-2px);
}

.hb-btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--hb-lime),
            var(--hb-lime-bright)
        );

    border:
        1px solid
        rgba(104, 169, 34, 0.18);

    box-shadow:
        0 14px 34px
        rgba(120, 190, 50, 0.18);
}

.hb-btn-secondary {
    background:
        rgba(255, 255, 255, 0.82);

    border:
        1px solid
        var(--hb-border);
}

.hb-badges {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-block-start: 20px;
}

.hb-badge {
    min-height: 32px;

    display: inline-flex;
    align-items: center;

    padding-inline: 12px;

    color:
        var(--hb-ink-soft);

    background:
        rgba(255, 255, 255, 0.68);

    border:
        1px solid
        var(--hb-border);

    border-radius:
        var(--hb-radius-pill);

    font-size: 0.78rem;
    font-weight: 500;
}

/* Transparent phone */

.hb-hero-media {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;

    align-self: center;
}

.hb-phone-wrap {
    position: relative;

    width:
        min(
            100%,
            585px
        );

    margin-inline: auto;
}

.hb-phone-wrap::before {
    content: "";

    position: absolute;

    z-index: -1;

    inset:
        18%
        12%
        14%;

    background:
        radial-gradient(
            circle,
            rgba(184, 243, 74, 0.24),
            rgba(70, 185, 71, 0.07) 52%,
            transparent 72%
        );

    filter: blur(26px);
}

.hb-phone-picture {
    display: block;

    width: 100%;
}

.hb-phone-image {
    width: 100%;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 28px 38px
            rgba(26, 54, 35, 0.13)
        );
}

.hb-version {
    position: absolute;

    inset-inline-end: 8%;
    inset-block-end: 10%;

    display: flex;
    flex-direction: column;

    gap: 1px;

    padding:
        8px
        12px;

    color:
        var(--hb-white);

    background:
        rgba(16, 27, 21, 0.88);

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    box-shadow:
        0 12px 30px
        rgba(18, 35, 23, 0.14);

    backdrop-filter: blur(12px);
}

.hb-version-label {
    opacity: 0.72;

    font-size: 0.66rem;
    font-weight: 400;
}

.hb-version-number {
    font-size: 0.86rem;
    font-weight: 700;
}

/* Benefit strip */

.hb-benefits {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 10px;

    margin-block-start: 14px;
}

.hb-benefit {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        14px
        18px;

    text-align: center;

    color:
        var(--hb-ink-soft);

    background:
        rgba(255, 255, 255, 0.76);

    border:
        1px solid
        var(--hb-border);

    border-radius:
        var(--hb-radius-md);

    box-shadow:
        0 8px 24px
        rgba(18, 53, 31, 0.04);

    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.5;
}

.hb-coming-anchor {
    height: 1px;

    scroll-margin-top: 105px;
}

/* Tablet */

@media (max-width: 1000px) {
    .hb-hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(340px, 0.88fr);

        gap: 28px;

        min-height: 620px;
    }

    .hb-title {
        font-size:
            clamp(
                2.5rem,
                5vw,
                3.7rem
            );
    }

    html[lang="en"] .hb-title {
        font-size:
            clamp(
                2.55rem,
                5.2vw,
                3.8rem
            );
    }

    .hb-phone-wrap {
        width:
            min(
                100%,
                500px
            );
    }
}

/* Mobile */

@media (max-width: 820px) {
    .hb-container {
        width:
            min(
                calc(100% - 20px),
                var(--hb-container)
            );
    }

    .hb-header-wrap {
        padding-block: 8px;
    }

    .hb-header {
        min-height: 64px;

        padding:
            7px
            8px
            7px
            10px;
    }

    .hb-brand-icon {
        width: 40px;
        height: 40px;

        border-radius: 12px;
    }

    .hb-brand-product {
        display: none;
    }

    .hb-header-download {
        display: none;
    }

    .hb-language {
        min-height: 40px;

        padding-inline: 12px;
    }

    .hb-hero {
        padding-block:
            34px
            36px;
    }

    .hb-hero-layout {
        display: flex;
        flex-direction: column;

        min-height: auto;

        gap: 22px;
    }

    .hb-hero-copy {
        width: 100%;

        text-align: center;
    }

    .hb-eyebrow {
        margin-inline: auto;
        margin-block-end: 18px;
    }

    .hb-title {
        max-width: 650px;

        margin-inline: auto;

        font-size:
            clamp(
                2.25rem,
                10.8vw,
                3.6rem
            );

        line-height: 1.12;
    }

    html[lang="en"] .hb-title {
        font-size:
            clamp(
                2.2rem,
                10vw,
                3.5rem
            );

        line-height: 1.05;
    }

    .hb-description {
        max-width: 610px;

        margin-inline: auto;

        font-size: 0.98rem;

        line-height: 1.8;
    }

    .hb-hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        margin-block-start: 24px;
    }

    .hb-btn {
        width: 100%;
    }

    .hb-badges {
        justify-content: center;
    }

    .hb-hero-media {
        order: 2;

        width: 100%;

        margin-block-start: -8px;
    }

    .hb-phone-wrap {
        width:
            min(
                100%,
                530px
            );
    }

    .hb-version {
        inset-inline-end: 10%;
        inset-block-end: 9%;
    }

    .hb-benefits {
        grid-template-columns: 1fr;

        margin-block-start: 6px;
    }

    .hb-benefit {
        min-height: 58px;
    }
}

@media (max-width: 430px) {
    .hb-hero {
        padding-block-start: 26px;
    }

    .hb-title {
        font-size:
            clamp(
                2.1rem,
                10.2vw,
                2.85rem
            );
    }

    html[lang="en"] .hb-title {
        font-size:
            clamp(
                2rem,
                9.5vw,
                2.7rem
            );
    }

    .hb-phone-wrap {
        width: 112%;

        max-width: none;

        margin-inline: -6%;
    }

    .hb-benefits {
        padding-inline: 2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* L3-2 content sections */
.hb-section{position:relative;padding-block:clamp(76px,9vw,132px)}
.hb-section-heading{max-width:760px}.hb-section-heading-center{margin-inline:auto;text-align:center}
.hb-section-eyebrow{width:fit-content;display:inline-flex;align-items:center;margin-block-end:15px;padding:7px 12px;color:var(--hb-green-dark);background:var(--hb-green-soft);border:1px solid rgba(70,185,71,.14);border-radius:var(--hb-radius-pill);font-size:.78rem;font-weight:500}
.hb-section-heading-center .hb-section-eyebrow{margin-inline:auto}
.hb-section-title{margin:0;font-size:clamp(2rem,3.4vw,3.5rem);line-height:1.15;font-weight:700;letter-spacing:-.02em}
.hb-section-description{margin:18px 0 0;color:var(--hb-muted);font-size:clamp(.98rem,1.15vw,1.1rem);line-height:1.9}
.hb-problem-section{background:linear-gradient(180deg,rgba(247,250,247,0),rgba(247,250,247,.92) 38%,rgba(247,250,247,.92))}
.hb-problem-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;max-width:980px;margin:48px auto 0}
.hb-compare-card{min-height:300px;padding:clamp(25px,3vw,38px);border-radius:30px;border:1px solid var(--hb-border)}
.hb-compare-card-muted{background:rgba(255,255,255,.82)}.hb-compare-card-positive{background:linear-gradient(145deg,rgba(240,252,233,.98),rgba(255,255,255,.96));border-color:rgba(70,185,71,.18)}
.hb-compare-icon{width:48px;height:48px;display:grid;place-items:center;margin-block-end:25px;border-radius:15px;font-size:1.15rem;font-weight:700}
.hb-compare-card-muted .hb-compare-icon{color:#747e78;background:#f0f2f1}.hb-compare-card-positive .hb-compare-icon{color:var(--hb-green-dark);background:rgba(184,243,74,.24)}
.hb-compare-card h3{margin:0;font-size:clamp(1.3rem,1.8vw,1.7rem);font-weight:700}.hb-compare-card ul{display:grid;gap:15px;margin:25px 0 0;padding:0;list-style:none;color:var(--hb-muted);line-height:1.75}.hb-compare-card li{position:relative;padding-inline-start:23px}.hb-compare-card li::before{content:"";position:absolute;inset-inline-start:0;inset-block-start:.72em;width:7px;height:7px;background:var(--hb-green);border-radius:50%}.hb-compare-card-muted li::before{background:#a4ada7}
.hb-workflow-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-block-start:48px}.hb-step-card{min-height:245px;padding:24px 22px;background:var(--hb-white);border:1px solid var(--hb-border);border-radius:26px;box-shadow:0 13px 34px rgba(18,53,31,.045)}.hb-step-number{width:58px;height:58px;display:grid;place-items:center;margin-block-end:28px;color:var(--hb-green-dark);background:var(--hb-green-soft);border:1px solid rgba(70,185,71,.15);border-radius:18px;font-size:.9rem;font-weight:700}.hb-step-card h3{margin:0;font-size:1.2rem;font-weight:700}.hb-step-card p{margin:13px 0 0;color:var(--hb-muted);line-height:1.75;font-size:.93rem}
.hb-sources-section{overflow:hidden;background:linear-gradient(145deg,#f7faf7,#f0f9ed)}.hb-sources-layout{display:grid;grid-template-columns:minmax(360px,.8fr) minmax(0,1.2fr);align-items:center;gap:clamp(45px,7vw,100px)}html[dir="rtl"] .hb-sources-media{order:2}html[dir="rtl"] .hb-sources-content{order:1}.hb-sources-media{display:flex;justify-content:center}.hb-screenshot-frame{width:min(100%,390px);padding:10px;background:rgba(255,255,255,.78);border:1px solid rgba(25,75,42,.11);border-radius:35px;box-shadow:0 30px 70px rgba(18,53,31,.13);transform:rotate(-1.4deg)}html[dir="rtl"] .hb-screenshot-frame{transform:rotate(1.4deg)}.hb-screenshot-frame img{width:100%;height:auto;border-radius:27px}
.hb-source-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px;margin-block-start:33px}.hb-source-card{display:flex;align-items:flex-start;gap:13px;min-height:130px;padding:18px 17px;background:rgba(255,255,255,.8);border:1px solid var(--hb-border);border-radius:22px}.hb-source-number{width:37px;height:37px;flex:0 0 37px;display:grid;place-items:center;color:var(--hb-green-dark);background:var(--hb-green-soft);border-radius:12px;font-size:.72rem;font-weight:700}.hb-source-card h3{margin:2px 0 0;font-size:1.03rem;font-weight:700}.hb-source-card p{margin:7px 0 0;color:var(--hb-muted);font-size:.85rem;line-height:1.65}.hb-privacy-card{display:flex;align-items:center;gap:16px;margin-block-start:12px;padding:18px 20px;background:linear-gradient(135deg,rgba(230,250,218,.9),rgba(255,255,255,.92));border:1px solid rgba(70,185,71,.17);border-radius:22px}.hb-privacy-mark{width:43px;height:43px;flex:0 0 43px;display:grid;place-items:center;color:var(--hb-green-dark);background:var(--hb-white);border-radius:14px;font-weight:700}.hb-privacy-card h3{margin:0;color:var(--hb-green-dark);font-size:1.05rem;font-weight:700}.hb-privacy-card p{margin:4px 0 0;color:var(--hb-muted);font-size:.87rem;line-height:1.65}
@media(max-width:1000px){.hb-workflow-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.hb-sources-layout{grid-template-columns:minmax(300px,.8fr) minmax(0,1.2fr);gap:40px}.hb-source-list{grid-template-columns:1fr}}
@media(max-width:820px){.hb-section{padding-block:68px}.hb-section-heading{text-align:center;margin-inline:auto}.hb-section-heading .hb-section-eyebrow{margin-inline:auto}.hb-section-title{font-size:clamp(1.85rem,8vw,2.6rem)}.hb-problem-grid,.hb-workflow-grid,.hb-source-list{grid-template-columns:1fr}.hb-problem-grid,.hb-workflow-grid{margin-block-start:34px}.hb-compare-card,.hb-step-card,.hb-source-card{min-height:auto}.hb-step-card{text-align:center}.hb-step-number{margin-inline:auto;margin-block-end:17px}.hb-sources-layout{display:flex;flex-direction:column;gap:38px}.hb-sources-content{order:1!important}.hb-sources-media{order:2!important;width:100%}.hb-screenshot-frame{width:min(82vw,390px);transform:none!important}}
@media(max-width:430px){.hb-section{padding-block:58px}.hb-compare-card,.hb-step-card,.hb-source-card,.hb-privacy-card{border-radius:20px}.hb-screenshot-frame{width:84vw;border-radius:28px}.hb-screenshot-frame img{border-radius:21px}}

/* ==========================================================================
   L3-2C interactions
   ========================================================================== */

.hb-icon {
    width: 24px;
    height: 24px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hb-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hb-btn::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset-block: -2px;
    inset-inline-start: -45%;
    width: 35%;
    transform: skewX(-22deg);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.48),
        transparent
    );
    transition: inset-inline-start .55s ease;
}

.hb-btn:hover::after {
    inset-inline-start: 120%;
}

.hb-btn-primary:hover {
    box-shadow: 0 18px 42px rgba(120,190,50,.27);
}

.hb-language:hover,
.hb-btn-secondary:hover {
    border-color: rgba(70,185,71,.3);
    box-shadow: 0 10px 24px rgba(18,53,31,.06);
}

.hb-compare-card,
.hb-source-card,
.hb-flow-content,
.hb-flow-node {
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease;
}

@media (hover:hover) and (pointer:fine) {
    .hb-compare-card:hover,
    .hb-source-card:hover {
        transform: translateY(-5px);
        border-color: rgba(70,185,71,.28);
        box-shadow: 0 20px 48px rgba(18,53,31,.08);
    }

    .hb-flow-step:hover .hb-flow-content {
        transform: translateY(-4px);
        border-color: rgba(70,185,71,.25);
        box-shadow: 0 18px 40px rgba(18,53,31,.07);
    }

    .hb-flow-step:hover .hb-flow-node {
        transform: scale(1.07);
        box-shadow: 0 12px 28px rgba(70,185,71,.16);
    }
}

.hb-compare-icon .hb-icon,
.hb-privacy-mark .hb-icon {
    width: 23px;
    height: 23px;
}

/* Connected workflow */

.hb-workflow-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px;
    margin-block-start: 52px;
}

.hb-workflow-flow::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset-inline: 10%;
    inset-block-start: 35px;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(70,185,71,.08),
        rgba(70,185,71,.42),
        rgba(70,185,71,.42),
        rgba(70,185,71,.08)
    );
}

.hb-flow-step {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hb-flow-node-wrap {
    position: relative;
    width: 74px;
    margin-inline: auto;
}

.hb-flow-node {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin-inline: auto;
    color: var(--hb-green-dark);
    background: #fff;
    border: 1px solid rgba(70,185,71,.25);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(18,53,31,.07);
}

.hb-flow-number {
    position: absolute;
    inset-inline-end: -5px;
    inset-block-end: -7px;
    min-width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding-inline: 5px;
    color: var(--hb-green-dark);
    background: var(--hb-lime);
    border: 3px solid #fff;
    border-radius: 999px;
    font-size: .66rem;
    font-weight: 700;
}

.hb-flow-content {
    min-height: 190px;
    margin-block-start: 26px;
    padding: 24px 20px;
    text-align: center;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--hb-border);
    border-radius: 24px;
}

.hb-flow-content h3 {
    margin: 0;
    font-size: 1.13rem;
    font-weight: 700;
}

.hb-flow-content p {
    margin: 12px 0 0;
    color: var(--hb-muted);
    font-size: .91rem;
    line-height: 1.75;
}

/* Contextual source icons */

.hb-source-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    color: var(--hb-green-dark);
    background: var(--hb-green-soft);
    border: 1px solid rgba(70,185,71,.14);
    border-radius: 14px;
}

.hb-source-card:hover .hb-source-icon {
    background: rgba(184,243,74,.22);
}

/* Progressive reveal: content stays visible if JS fails. */

.hb-motion-ready .hb-reveal {
    opacity: 0;
    transform: translateY(22px);
}

.hb-motion-ready .hb-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 650ms cubic-bezier(.2,.7,.2,1),
        transform 650ms cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--hb-reveal-delay,0ms);
}

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

@media (prefers-reduced-motion:no-preference) {
    .hb-phone-image {
        animation: hb-soft-float 7s ease-in-out infinite;
    }
}

@media (max-width:1000px) {
    .hb-workflow-flow {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 28px 16px;
    }

    .hb-workflow-flow::before {
        display: none;
    }
}

@media (max-width:820px) {
    .hb-workflow-flow {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-block-start: 36px;
    }

    .hb-workflow-flow::before {
        display: block;
        inset-inline-start: 31px;
        inset-inline-end: auto;
        inset-block: 32px;
        width: 2px;
        height: auto;
        background: linear-gradient(
            180deg,
            rgba(70,185,71,.08),
            rgba(70,185,71,.38),
            rgba(70,185,71,.08)
        );
    }

    .hb-flow-step {
        display: grid;
        grid-template-columns: 66px minmax(0,1fr);
        align-items: start;
        gap: 14px;
    }

    .hb-flow-node-wrap {
        width: 66px;
        margin: 0;
    }

    .hb-flow-node {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }

    .hb-flow-content {
        min-height: auto;
        margin: 0;
        padding: 19px 18px;
        text-align: start;
    }

    .hb-flow-content h3 {
        font-size: 1.03rem;
    }

    .hb-flow-content p {
        font-size: .88rem;
    }

    .hb-source-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
}

@media (prefers-reduced-motion:reduce) {
    .hb-motion-ready .hb-reveal,
    .hb-motion-ready .hb-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hb-phone-image {
        animation: none !important;
    }

    .hb-btn::after {
        display: none;
    }
}

/* ==========================================================================
   L3-2D interactive workflow
   ========================================================================== */

.hb-workflow-showcase {
    display: grid;
    grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
    align-items: stretch;
    gap: clamp(28px, 5vw, 70px);
    margin-block-start: 52px;
}

html[dir="rtl"] .hb-workflow-tabs {
    order: 2;
}

html[dir="rtl"] .hb-workflow-visual {
    order: 1;
}

.hb-workflow-tabs {
    position: relative;
    display: grid;
    align-content: center;
    gap: 10px;
}

.hb-workflow-progress {
    position: absolute;
    z-index: 0;
    inset-inline-start: 31px;
    inset-block-start: 56px;
    width: 2px;
    height: calc(100% - 112px);
    background: rgba(70, 185, 71, .12);
    border-radius: 99px;
    overflow: hidden;
}

.hb-workflow-progress::after {
    content: "";
    display: block;
    width: 100%;
    height: var(--hb-workflow-progress, 0%);
    background: linear-gradient(
        180deg,
        var(--hb-lime),
        var(--hb-green)
    );
    border-radius: inherit;
    transition: height 420ms cubic-bezier(.2,.7,.2,1);
}

.hb-workflow-tab {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding: 16px;
    color: var(--hb-ink);
    text-align: start;
    font: inherit;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 22px;
    cursor: pointer;
    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

.hb-workflow-tab:hover,
.hb-workflow-tab:focus-visible {
    background: rgba(255, 255, 255, .7);
    border-color: rgba(70, 185, 71, .14);
}

.hb-workflow-tab.is-active {
    background: #fff;
    border-color: rgba(70, 185, 71, .22);
    box-shadow: 0 18px 44px rgba(18, 53, 31, .07);
}

.hb-workflow-tab-node {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--hb-green-dark);
    background: var(--hb-green-soft);
    border: 1px solid rgba(70, 185, 71, .16);
    border-radius: 18px;
    transition:
        transform 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease;
}

.hb-workflow-tab.is-active .hb-workflow-tab-node {
    background: var(--hb-lime);
    box-shadow: 0 10px 26px rgba(105, 180, 45, .18);
    transform: scale(1.04);
}

.hb-workflow-tab-copy {
    min-width: 0;
}

.hb-workflow-tab-kicker {
    display: block;
    margin-block-end: 4px;
    color: var(--hb-green-dark);
    font-size: .72rem;
    font-weight: 700;
}

.hb-workflow-tab strong {
    display: block;
    font-size: 1.08rem;
    font-weight: 700;
}

.hb-workflow-tab small {
    display: block;
    margin-block-start: 7px;
    color: var(--hb-muted);
    font-size: .86rem;
    line-height: 1.65;
}

.hb-workflow-visual {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: clamp(20px, 3vw, 34px);
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(184, 243, 74, .18),
            transparent 52%
        ),
        linear-gradient(
            145deg,
            rgba(248, 251, 248, .96),
            rgba(240, 249, 237, .96)
        );
    border: 1px solid rgba(70, 185, 71, .14);
    border-radius: 34px;
    box-shadow: 0 26px 70px rgba(18, 53, 31, .08);
}

.hb-workflow-visual::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    inset-inline-end: -90px;
    inset-block-start: -90px;
    border-radius: 50%;
    background: rgba(184, 243, 74, .12);
}

.hb-workflow-panel {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    animation: hb-workflow-panel-in 380ms cubic-bezier(.2,.7,.2,1);
}

.hb-workflow-panel[hidden] {
    display: none !important;
}

.hb-workflow-panel picture {
    display: block;
}

.hb-workflow-panel > picture img {
    width: auto;
    max-width: min(100%, 410px);
    max-height: 535px;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: 0 22px 58px rgba(18, 53, 31, .15);
}

.hb-workflow-visual-label {
    position: absolute;
    z-index: 3;
    inset-inline-start: 18px;
    inset-block-start: 18px;
    padding: 8px 12px;
    color: var(--hb-green-dark);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(70, 185, 71, .15);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-size: .78rem;
    font-weight: 700;
}

.hb-workflow-dual-images {
    position: relative;
    width: min(100%, 520px);
    height: 530px;
}

.hb-workflow-dual-images picture {
    position: absolute;
}

.hb-workflow-dual-primary {
    inset-inline-start: 2%;
    inset-block-start: 2%;
    z-index: 1;
}

.hb-workflow-dual-secondary {
    inset-inline-end: 0;
    inset-block-end: 0;
    z-index: 2;
}

.hb-workflow-dual-images img {
    display: block;
    width: auto;
    max-width: 320px;
    max-height: 455px;
    object-fit: contain;
    border-radius: 25px;
    border: 8px solid rgba(255, 255, 255, .9);
    box-shadow: 0 22px 58px rgba(18, 53, 31, .15);
}

.hb-workflow-dual-secondary img {
    max-width: 245px;
    max-height: 360px;
}

@keyframes hb-workflow-panel-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (hover:hover) and (pointer:fine) {
    .hb-workflow-tab:hover {
        transform: translateX(3px);
    }

    html[dir="rtl"] .hb-workflow-tab:hover {
        transform: translateX(-3px);
    }
}

@media (max-width: 1000px) {
    .hb-workflow-showcase {
        grid-template-columns: minmax(290px, .9fr) minmax(0, 1.1fr);
        gap: 28px;
    }

    .hb-workflow-visual {
        min-height: 560px;
    }

    .hb-workflow-tab {
        grid-template-columns: 58px minmax(0, 1fr);
        padding: 13px;
    }

    .hb-workflow-tab-node {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 820px) {
    .hb-workflow-showcase {
        display: flex;
        flex-direction: column;
        gap: 22px;
        margin-block-start: 36px;
    }

    html[dir="rtl"] .hb-workflow-tabs,
    html[dir="rtl"] .hb-workflow-visual {
        order: initial;
    }

    .hb-workflow-tabs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hb-workflow-progress {
        inset-inline-start: 27px;
        inset-block-start: 48px;
        height: calc(100% - 96px);
    }

    .hb-workflow-tab {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
        border-radius: 19px;
    }

    .hb-workflow-tab-node {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .hb-workflow-tab strong {
        font-size: 1rem;
    }

    .hb-workflow-tab small {
        font-size: .82rem;
    }

    .hb-workflow-visual {
        min-height: 520px;
        padding: 20px 12px;
        border-radius: 27px;
    }

    .hb-workflow-panel > picture img {
        max-width: min(88vw, 355px);
        max-height: 460px;
    }

    .hb-workflow-dual-images {
        width: min(92vw, 430px);
        height: 455px;
    }

    .hb-workflow-dual-images img {
        max-width: 270px;
        max-height: 390px;
        border-width: 6px;
    }

    .hb-workflow-dual-secondary img {
        max-width: 205px;
        max-height: 310px;
    }
}

@media (max-width: 430px) {
    .hb-workflow-visual {
        min-height: 455px;
    }

    .hb-workflow-visual-label {
        inset-inline-start: 12px;
        inset-block-start: 12px;
    }

    .hb-workflow-panel > picture img {
        max-width: 82vw;
        max-height: 400px;
        border-radius: 22px;
    }

    .hb-workflow-dual-images {
        width: 88vw;
        height: 395px;
    }

    .hb-workflow-dual-images img {
        max-width: 235px;
        max-height: 340px;
    }

    .hb-workflow-dual-secondary img {
        max-width: 180px;
        max-height: 270px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hb-workflow-panel {
        animation: none;
    }

    .hb-workflow-progress::after,
    .hb-workflow-tab,
    .hb-workflow-tab-node {
        transition: none;
    }
}

/* ==========================================================================
   L3-2E six-step story workflow
   ========================================================================== */

.hb-story-workflow {
    --hb-story-radius: 34px;
    margin-block-start: 46px;
}

.hb-story-progress {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-block-end: 18px;
}

.hb-story-progress-item {
    min-width: 0;
    padding: 0;
    color: var(--hb-muted);
    text-align: start;
    font: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.hb-story-progress-track {
    position: relative;
    overflow: hidden;
    display: block;
    height: 4px;
    background: rgba(70, 185, 71, .12);
    border-radius: 99px;
}

.hb-story-progress-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--hb-green), var(--hb-lime));
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left center;
}

html[dir="rtl"] .hb-story-progress-fill {
    transform-origin: right center;
}

.hb-story-progress-number {
    display: block;
    margin-block-start: 7px;
    font-size: .68rem;
    font-weight: 700;
}

.hb-story-progress-item.is-active {
    color: var(--hb-green-dark);
}

.hb-story-stage {
    position: relative;
    min-height: 645px;
}

.hb-story-slide {
    min-height: 645px;
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
    grid-template-areas: "copy visual";
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(26px, 4vw, 48px);
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(184, 243, 74, .16),
            transparent 30rem
        ),
        linear-gradient(
            145deg,
            rgba(251, 253, 251, .98),
            rgba(241, 249, 238, .98)
        );
    border: 1px solid rgba(70, 185, 71, .14);
    border-radius: var(--hb-story-radius);
    box-shadow: 0 28px 80px rgba(18, 53, 31, .075);
}

html[dir="rtl"] .hb-story-slide {
    grid-template-areas: "visual copy";
}

.hb-story-slide[hidden] {
    display: none !important;
}

.hb-story-slide.is-active {
    animation: hb-story-slide-in 430ms cubic-bezier(.2,.7,.2,1);
}

.hb-story-visual {
    grid-area: visual;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-story-visual-card {
    position: relative;
    width: min(100%, 470px);
    min-height: 555px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.hb-story-visual-card::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(184, 243, 74, .26),
            rgba(70, 185, 71, .07) 55%,
            transparent 72%
        );
    filter: blur(24px);
}

.hb-story-visual-card > picture,
.hb-story-sequence {
    position: relative;
    z-index: 1;
}

.hb-story-visual-card > picture img,
.hb-story-sequence-frame img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 535px;
    object-fit: contain;
    border-radius: 27px;
    box-shadow: 0 24px 60px rgba(18, 53, 31, .15);
}

.hb-story-visual-badge {
    position: absolute;
    z-index: 5;
    inset-inline-end: 4%;
    inset-block-end: 6%;
    padding: 9px 13px;
    color: var(--hb-green-dark);
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(70, 185, 71, .16);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(18, 53, 31, .08);
    backdrop-filter: blur(12px);
    font-size: .76rem;
    font-weight: 700;
}

.hb-story-copy {
    grid-area: copy;
    max-width: 560px;
}

.hb-story-step-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-block-end: 18px;
}

.hb-story-step-number {
    min-width: 46px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    padding-inline: 11px;
    color: var(--hb-green-dark);
    background: var(--hb-lime);
    border-radius: 999px;
    font-size: .77rem;
    font-weight: 700;
}

.hb-story-step-label {
    color: var(--hb-muted);
    font-size: .78rem;
    font-weight: 500;
}

.hb-story-copy h3 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: -.02em;
}

.hb-story-copy p {
    max-width: 580px;
    margin: 20px 0 0;
    color: var(--hb-muted);
    font-size: clamp(.98rem, 1.12vw, 1.08rem);
    line-height: 1.9;
}

.hb-story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-block-start: 24px;
}

.hb-story-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding-inline: 12px;
    color: var(--hb-green-dark);
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(70, 185, 71, .14);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
}

.hb-story-sequence {
    width: min(100%, 430px);
    min-height: 535px;
}

.hb-story-sequence-frame {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.hb-story-slide.is-active .hb-story-sequence-a {
    animation: hb-story-sequence-a 3s ease-in-out both;
}

.hb-story-slide.is-active .hb-story-sequence-b {
    animation: hb-story-sequence-b 3s ease-in-out both;
}

@keyframes hb-story-sequence-a {
    0%, 38% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    50%, 100% {
        opacity: 0;
        transform: translateY(-8px) scale(.985);
    }
}

@keyframes hb-story-sequence-b {
    0%, 42% {
        opacity: 0;
        transform: translateY(8px) scale(.985);
    }

    56%, 100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hb-story-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-block-start: 18px;
}

.hb-story-control {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--hb-green-dark);
    background: #fff;
    border: 1px solid var(--hb-border);
    border-radius: 50%;
    box-shadow: 0 9px 24px rgba(18, 53, 31, .05);
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.hb-story-control:hover {
    transform: translateY(-2px);
    border-color: rgba(70, 185, 71, .28);
    box-shadow: 0 13px 30px rgba(18, 53, 31, .08);
}

html[dir="rtl"] .hb-story-control svg {
    transform: scaleX(-1);
}

.hb-story-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hb-story-dots span {
    width: 7px;
    height: 7px;
    background: rgba(70, 185, 71, .18);
    border-radius: 99px;
    transition:
        width 220ms ease,
        background-color 220ms ease;
}

.hb-story-dots span.is-active {
    width: 24px;
    background: var(--hb-green);
}

@keyframes hb-story-slide-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 820px) {
    .hb-story-workflow {
        margin-block-start: 34px;
    }

    .hb-story-progress {
        gap: 5px;
        margin-inline: 2px;
        margin-block-end: 13px;
    }

    .hb-story-progress-number {
        display: none;
    }

    .hb-story-progress-track {
        height: 3px;
    }

    .hb-story-stage {
        min-height: 0;
        touch-action: pan-y;
    }

    .hb-story-slide,
    html[dir="rtl"] .hb-story-slide {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "copy";
        gap: 18px;
        padding: 18px 14px 22px;
        border-radius: 26px;
    }

    .hb-story-visual-card {
        width: 100%;
        min-height: 455px;
        padding: 6px;
    }

    .hb-story-visual-card > picture img,
    .hb-story-sequence-frame img {
        max-width: min(82vw, 360px);
        max-height: 435px;
        border-radius: 23px;
    }

    .hb-story-sequence {
        width: min(82vw, 360px);
        min-height: 435px;
    }

    .hb-story-visual-badge {
        inset-inline-end: 5%;
        inset-block-end: 3%;
        max-width: 80%;
        font-size: .7rem;
    }

    .hb-story-copy {
        max-width: none;
        text-align: center;
        padding-inline: 5px;
    }

    .hb-story-step-meta {
        justify-content: center;
        margin-block-end: 12px;
    }

    .hb-story-copy h3 {
        margin-inline: auto;
        font-size: clamp(1.65rem, 7.6vw, 2.35rem);
        line-height: 1.18;
    }

    .hb-story-copy p {
        margin: 13px auto 0;
        font-size: .93rem;
        line-height: 1.75;
    }

    .hb-story-tags {
        justify-content: center;
        margin-block-start: 16px;
    }

    .hb-story-controls {
        margin-block-start: 13px;
    }

    .hb-story-control {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 430px) {
    .hb-story-slide,
    html[dir="rtl"] .hb-story-slide {
        padding: 15px 10px 19px;
        border-radius: 23px;
    }

    .hb-story-visual-card {
        min-height: 410px;
    }

    .hb-story-visual-card > picture img,
    .hb-story-sequence-frame img {
        max-width: 80vw;
        max-height: 392px;
    }

    .hb-story-sequence {
        width: 80vw;
        min-height: 392px;
    }

    .hb-story-step-label {
        display: none;
    }

    .hb-story-copy h3 {
        font-size: clamp(1.55rem, 7.2vw, 2.05rem);
    }

    .hb-story-copy p {
        font-size: .89rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hb-story-slide.is-active,
    .hb-story-slide.is-active .hb-story-sequence-a,
    .hb-story-slide.is-active .hb-story-sequence-b {
        animation: none !important;
    }

    .hb-story-sequence-a {
        opacity: 0;
    }

    .hb-story-sequence-b {
        opacity: 1;
    }

    .hb-story-progress-fill,
    .hb-story-dots span,
    .hb-story-control {
        transition: none !important;
    }
}

/* ==========================================================================
   L3-2F desktop workflow and smooth transitions
   ========================================================================== */

.hb-story-desktop-layout {
    min-width: 0;
}

.hb-story-stage {
    overflow: hidden;
}

.hb-story-slide.is-active {
    animation: none;
}

.hb-story-slide.is-transition-out {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    pointer-events: none;
    animation:
        hb-story-out-ltr
        560ms
        cubic-bezier(.22,.7,.22,1)
        both;
}

.hb-story-slide.is-transition-in {
    position: relative;
    z-index: 2;
    animation:
        hb-story-in-ltr
        560ms
        cubic-bezier(.22,.7,.22,1)
        both;
}

html[dir="rtl"] .hb-story-slide.is-transition-out {
    animation-name: hb-story-out-rtl;
}

html[dir="rtl"] .hb-story-slide.is-transition-in {
    animation-name: hb-story-in-rtl;
}

@keyframes hb-story-in-ltr {
    from {
        opacity: 0;
        transform: translateX(18px) scale(.992);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes hb-story-out-ltr {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateX(-12px) scale(.994);
        filter: blur(2px);
    }
}

@keyframes hb-story-in-rtl {
    from {
        opacity: 0;
        transform: translateX(-18px) scale(.992);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes hb-story-out-rtl {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateX(12px) scale(.994);
        filter: blur(2px);
    }
}

.hb-story-slide.is-active .hb-story-sequence-a {
    animation-duration: 6s;
}

.hb-story-slide.is-active .hb-story-sequence-b {
    animation-duration: 6s;
}

.hb-story-workflow.is-paused .hb-story-sequence-frame {
    animation-play-state: paused !important;
}

@media (min-width: 821px) {
    .hb-story-progress {
        margin-block-end: 24px;
    }

    .hb-story-desktop-layout {
        display: grid;
        grid-template-columns:
            minmax(350px, .82fr)
            minmax(0, 1.18fr);
        align-items: stretch;
        gap: clamp(30px, 5vw, 68px);
    }

    html[dir="rtl"] .hb-story-desktop-nav {
        order: 2;
    }

    html[dir="rtl"] .hb-story-stage {
        order: 1;
    }

    .hb-story-desktop-nav {
        display: grid;
        align-content: center;
        gap: 8px;
        min-width: 0;
    }

    .hb-story-desktop-step {
        width: 100%;
        display: grid;
        grid-template-columns:
            48px
            minmax(0, 1fr);
        align-items: start;
        gap: 13px;
        padding: 13px 14px;
        color: var(--hb-ink);
        text-align: start;
        font: inherit;
        background: transparent;
        border: 1px solid transparent;
        border-radius: 20px;
        cursor: pointer;
        transition:
            transform 220ms ease,
            background-color 220ms ease,
            border-color 220ms ease,
            box-shadow 220ms ease;
    }

    .hb-story-desktop-step:hover,
    .hb-story-desktop-step:focus-visible {
        background: rgba(255, 255, 255, .68);
        border-color: rgba(70, 185, 71, .14);
    }

    .hb-story-desktop-step.is-active {
        background: #fff;
        border-color: rgba(70, 185, 71, .24);
        box-shadow:
            0 16px 38px
            rgba(18, 53, 31, .07);
    }

    .hb-story-desktop-icon {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        color: var(--hb-green-dark);
        background: var(--hb-green-soft);
        border: 1px solid rgba(70, 185, 71, .15);
        border-radius: 14px;
        transition:
            transform 220ms ease,
            background-color 220ms ease,
            box-shadow 220ms ease;
    }

    .hb-story-desktop-step.is-active .hb-story-desktop-icon {
        background: var(--hb-lime);
        transform: scale(1.04);
        box-shadow:
            0 9px 22px
            rgba(105, 180, 45, .17);
    }

    .hb-story-desktop-copy {
        min-width: 0;
    }

    .hb-story-desktop-kicker {
        display: block;
        margin-block-end: 3px;
        color: var(--hb-green-dark);
        font-size: .68rem;
        font-weight: 700;
    }

    .hb-story-desktop-copy strong {
        display: block;
        font-size: .98rem;
        line-height: 1.45;
        font-weight: 700;
    }

    .hb-story-desktop-copy small {
        overflow: hidden;
        margin-block-start: 4px;
        color: var(--hb-muted);
        font-size: .76rem;
        line-height: 1.55;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .hb-story-stage {
        position: relative;
        min-height: 620px;
        height: 620px;
        border-radius: 36px;
    }

    .hb-story-slide,
    html[dir="rtl"] .hb-story-slide {
        min-height: 620px;
        height: 620px;
        grid-template-columns: 1fr;
        grid-template-areas: "visual";
        padding: 22px;
        background:
            radial-gradient(
                circle at 50% 45%,
                rgba(184, 243, 74, .17),
                transparent 56%
            ),
            linear-gradient(
                145deg,
                rgba(248, 251, 248, .98),
                rgba(240, 249, 237, .98)
            );
        border-radius: 36px;
    }

    .hb-story-copy {
        display: none;
    }

    .hb-story-visual {
        width: 100%;
        height: 100%;
    }

    .hb-story-visual-card {
        width: min(100%, 430px);
        min-height: 570px;
        padding: 11px;
        background: rgba(255, 255, 255, .78);
        border: 1px solid rgba(25, 75, 42, .11);
        border-radius: 35px;
        box-shadow:
            0 30px 70px
            rgba(18, 53, 31, .13);
        backdrop-filter: blur(12px);
    }

    .hb-story-visual-card::before {
        width: 88%;
        background:
            radial-gradient(
                circle,
                rgba(184, 243, 74, .23),
                rgba(70, 185, 71, .06) 54%,
                transparent 72%
            );
    }

    .hb-story-visual-card > picture img,
    .hb-story-sequence-frame img {
        max-width: min(100%, 390px);
        max-height: 545px;
        border-radius: 27px;
        box-shadow:
            0 18px 46px
            rgba(18, 53, 31, .11);
    }

    .hb-story-sequence {
        width: min(100%, 390px);
        min-height: 545px;
    }

    .hb-story-visual-badge {
        inset-inline-end: 3%;
        inset-block-end: 3%;
    }

    .hb-story-controls {
        display: none;
    }

    @media (hover:hover) and (pointer:fine) {
        .hb-story-desktop-step:hover {
            transform: translateX(3px);
        }

        html[dir="rtl"] .hb-story-desktop-step:hover {
            transform: translateX(-3px);
        }
    }
}

@media (max-width: 820px) {
    .hb-story-desktop-layout {
        display: block;
    }

    .hb-story-desktop-nav {
        display: none;
    }

    .hb-story-stage {
        overflow: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hb-story-slide.is-transition-in,
    .hb-story-slide.is-transition-out {
        animation: none !important;
        filter: none !important;
        transform: none !important;
    }
}

/* ==========================================================================
   L3-2G compact desktop and icon fixes
   ========================================================================== */

.hb-desktop-nav-icon-image {
    display: block;
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.hb-desktop-nav-icon-whatsapp {
    width: 24px;
    height: 24px;
}

/*
 * Laptop layout:
 * keep all 6 workflow steps and the progress/status strip visible
 * without requiring an extra vertical scroll inside the section.
 */
@media (min-width: 821px) {
    .hb-story-workflow {
        margin-block-start: 30px;
    }

    .hb-story-progress {
        gap: 7px;
        margin-block-end: 13px;
    }

    .hb-story-progress-track {
        height: 3px;
    }

    .hb-story-progress-number {
        margin-block-start: 4px;
        font-size: .62rem;
    }

    .hb-story-desktop-layout {
        grid-template-columns:
            minmax(310px, .76fr)
            minmax(0, 1.24fr);
        gap: clamp(24px, 3.7vw, 50px);
    }

    .hb-story-desktop-nav {
        gap: 4px;
    }

    .hb-story-desktop-step {
        grid-template-columns:
            40px
            minmax(0, 1fr);
        gap: 10px;
        min-height: 0;
        padding: 7px 10px;
        border-radius: 16px;
    }

    .hb-story-desktop-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .hb-story-desktop-icon .hb-icon {
        width: 21px;
        height: 21px;
    }

    .hb-story-desktop-kicker {
        margin-block-end: 1px;
        font-size: .62rem;
    }

    .hb-story-desktop-copy strong {
        font-size: .88rem;
        line-height: 1.34;
    }

    .hb-story-desktop-copy small {
        margin-block-start: 2px;
        font-size: .69rem;
        line-height: 1.38;
        -webkit-line-clamp: 1;
    }

    .hb-story-stage {
        min-height: 540px;
        height: 540px;
        border-radius: 31px;
    }

    .hb-story-slide,
    html[dir="rtl"] .hb-story-slide {
        min-height: 540px;
        height: 540px;
        padding: 16px;
        border-radius: 31px;
    }

    .hb-story-visual-card {
        width: min(100%, 380px);
        min-height: 505px;
        padding: 9px;
        border-radius: 30px;
    }

    .hb-story-visual-card > picture img,
    .hb-story-sequence-frame img {
        max-width: min(100%, 340px);
        max-height: 480px;
        border-radius: 23px;
    }

    .hb-story-sequence {
        width: min(100%, 340px);
        min-height: 480px;
    }

    .hb-story-visual-badge {
        padding: 7px 11px;
        font-size: .69rem;
    }
}

/*
 * Short laptop screens such as browser viewports around 768-900px tall.
 */
@media (min-width: 821px) and (max-height: 900px) {
    .hb-workflow-section {
        padding-block: 54px;
    }

    .hb-story-workflow {
        margin-block-start: 24px;
    }

    .hb-story-progress {
        margin-block-end: 10px;
    }

    .hb-story-desktop-nav {
        gap: 2px;
    }

    .hb-story-desktop-step {
        grid-template-columns:
            37px
            minmax(0, 1fr);
        gap: 9px;
        padding: 6px 9px;
        border-radius: 14px;
    }

    .hb-story-desktop-icon {
        width: 35px;
        height: 35px;
        border-radius: 11px;
    }

    .hb-story-desktop-kicker {
        font-size: .59rem;
    }

    .hb-story-desktop-copy strong {
        font-size: .83rem;
    }

    .hb-story-desktop-copy small {
        font-size: .65rem;
        line-height: 1.32;
    }

    .hb-story-stage {
        min-height: 500px;
        height: 500px;
        border-radius: 28px;
    }

    .hb-story-slide,
    html[dir="rtl"] .hb-story-slide {
        min-height: 500px;
        height: 500px;
        padding: 14px;
        border-radius: 28px;
    }

    .hb-story-visual-card {
        width: min(100%, 350px);
        min-height: 465px;
        padding: 8px;
        border-radius: 27px;
    }

    .hb-story-visual-card > picture img,
    .hb-story-sequence-frame img {
        max-width: min(100%, 310px);
        max-height: 440px;
        border-radius: 21px;
    }

    .hb-story-sequence {
        width: min(100%, 310px);
        min-height: 440px;
    }
}

/* ==========================================================================
   L3-3B feature benefit sections
   ========================================================================== */

.hb-feature-details-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 24%,
            rgba(184, 243, 74, .08),
            transparent 26rem
        ),
        radial-gradient(
            circle at 88% 72%,
            rgba(70, 185, 71, .07),
            transparent 30rem
        );
}

.hb-feature-details-list {
    display: grid;
    gap: clamp(30px, 5vw, 64px);
    margin-block-start: clamp(44px, 6vw, 78px);
}

.hb-feature-showcase {
    display: grid;
    grid-template-columns:
        minmax(0, .92fr)
        minmax(0, 1.08fr);
    grid-template-areas:
        "copy media"
        "points media";
    align-items: center;
    column-gap: clamp(34px, 6vw, 82px);
    row-gap: 22px;
    padding: clamp(28px, 4vw, 54px);
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(24, 64, 38, .09);
    border-radius: 38px;
    box-shadow:
        0 24px 70px rgba(18, 53, 31, .055);
    backdrop-filter: blur(10px);
}

.hb-feature-showcase.is-reverse {
    grid-template-areas:
        "media copy"
        "media points";
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, .92fr);
}

.hb-feature-showcase-copy {
    grid-area: copy;
    min-width: 0;
}

.hb-feature-showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding-inline: 12px;
    color: var(--hb-green-dark);
    background: var(--hb-green-soft);
    border: 1px solid rgba(70, 185, 71, .15);
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
}

.hb-feature-showcase-copy h3 {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--hb-ink);
    font-size: clamp(2rem, 3.2vw, 3.55rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -.025em;
}

.hb-feature-showcase-copy p {
    max-width: 610px;
    margin: 20px 0 0;
    color: var(--hb-muted);
    font-size: clamp(.98rem, 1.15vw, 1.1rem);
    line-height: 1.9;
}

.hb-feature-showcase-media {
    grid-area: media;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-feature-showcase-frame {
    position: relative;
    width: min(100%, 650px);
    display: grid;
    place-items: center;
    padding: clamp(13px, 1.8vw, 20px);
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(184, 243, 74, .2),
            transparent 56%
        ),
        linear-gradient(
            145deg,
            rgba(248, 252, 247, .98),
            rgba(239, 249, 236, .98)
        );
    border: 1px solid rgba(70, 185, 71, .13);
    border-radius: 32px;
    transition:
        transform 280ms cubic-bezier(.2,.7,.2,1),
        box-shadow 280ms ease;
}

.hb-feature-showcase-frame::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 68%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(184, 243, 74, .12);
    filter: blur(30px);
}

.hb-feature-showcase-frame picture {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

.hb-feature-showcase-frame img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    border-radius: 24px;
}

#feature-google .hb-feature-showcase-frame {
    width: min(100%, 470px);
}

#feature-google .hb-feature-showcase-frame img {
    width: auto;
    max-width: 100%;
    max-height: 590px;
    margin-inline: auto;
    box-shadow:
        0 18px 45px rgba(18, 53, 31, .1);
}

.hb-feature-showcase-points {
    grid-area: points;
}

.hb-feature-showcase-points ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hb-feature-showcase-points li {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    color: var(--hb-ink);
    font-size: .94rem;
    line-height: 1.6;
}

html[dir="rtl"] .hb-feature-showcase-points li {
    grid-template-columns:
        minmax(0, 1fr)
        30px;
}

html[dir="rtl"] .hb-feature-showcase-points li .hb-feature-check {
    grid-column: 2;
    grid-row: 1;
}

html[dir="rtl"] .hb-feature-showcase-points li > span:last-child {
    grid-column: 1;
    grid-row: 1;
}

.hb-feature-check {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--hb-green-dark);
    background: var(--hb-green-soft);
    border: 1px solid rgba(70, 185, 71, .14);
    border-radius: 9px;
}

.hb-feature-check .hb-icon {
    width: 16px;
    height: 16px;
}

@media (hover:hover) and (pointer:fine) {
    .hb-feature-showcase:hover .hb-feature-showcase-frame {
        transform: translateY(-5px);
        box-shadow:
            0 24px 55px rgba(18, 53, 31, .08);
    }
}

@media (max-width: 980px) {
    .hb-feature-showcase,
    .hb-feature-showcase.is-reverse {
        column-gap: 28px;
        padding: 28px;
    }

    .hb-feature-showcase-copy h3 {
        font-size: clamp(1.8rem, 4vw, 2.75rem);
    }
}

@media (max-width: 820px) {
    .hb-feature-details-list {
        gap: 26px;
        margin-block-start: 36px;
    }

    .hb-feature-showcase,
    .hb-feature-showcase.is-reverse {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "media"
            "points";
        gap: 20px;
        padding: 20px 14px 22px;
        border-radius: 27px;
    }

    .hb-feature-showcase-copy {
        text-align: center;
    }

    .hb-feature-showcase-copy h3 {
        margin-inline: auto;
        font-size: clamp(1.75rem, 8vw, 2.45rem);
    }

    .hb-feature-showcase-copy p {
        margin-inline: auto;
        font-size: .94rem;
        line-height: 1.8;
    }

    .hb-feature-showcase-frame {
        width: min(100%, 620px);
        padding: 10px;
        border-radius: 25px;
    }

    .hb-feature-showcase-frame img {
        border-radius: 19px;
    }

    #feature-google .hb-feature-showcase-frame {
        width: min(92vw, 410px);
    }

    .hb-feature-showcase-points {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .hb-feature-showcase-points li {
        font-size: .9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hb-feature-showcase-frame {
        transition: none !important;
        transform: none !important;
    }
}

/* ==========================================================================
   L3-3C desktop feature slider
   ========================================================================== */

.hb-feature-slider-ui {
    display: none;
}

@media (min-width: 821px) {
    .hb-feature-details-list.hb-feature-slider-ready {
        position: relative;
        display: block;
        margin-block-start: 24px;
    }

    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase {
        display: none;
        width: 100%;
        margin: 0;
    }

    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase.is-active,
    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase.is-entering,
    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase.is-leaving {
        display: grid;
    }

    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase.is-active {
        position: relative;
        z-index: 2;
    }

    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase.is-entering {
        position: relative;
        z-index: 3;
        animation:
            hb-feature-slide-in-ltr
            520ms
            cubic-bezier(.22,.7,.22,1)
            both;
    }

    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase.is-leaving {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        animation:
            hb-feature-slide-out-ltr
            520ms
            cubic-bezier(.22,.7,.22,1)
            both;
    }

    html[dir="rtl"]
    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase.is-entering {
        animation-name: hb-feature-slide-in-rtl;
    }

    html[dir="rtl"]
    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase.is-leaving {
        animation-name: hb-feature-slide-out-rtl;
    }

    .hb-feature-slider-ui {
        display: grid;
        grid-template-columns:
            auto
            minmax(0, 1fr)
            auto;
        align-items: center;
        gap: 14px;
        margin-block-start: 38px;
    }

    .hb-feature-slider-nav {
        display: grid;
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
        gap: 7px;
        min-width: 0;
    }

    .hb-feature-slider-tab {
        min-width: 0;
        padding: 0;
        color: var(--hb-muted);
        text-align: start;
        font: inherit;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .hb-feature-slider-track {
        position: relative;
        overflow: hidden;
        display: block;
        height: 4px;
        background: rgba(70, 185, 71, .12);
        border-radius: 999px;
    }

    .hb-feature-slider-fill {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(
                90deg,
                var(--hb-green),
                var(--hb-lime)
            );
        border-radius: inherit;
        transform: scaleX(0);
        transform-origin: left center;
    }

    html[dir="rtl"] .hb-feature-slider-fill {
        transform-origin: right center;
    }

    .hb-feature-slider-number {
        display: block;
        margin-block-start: 6px;
        font-size: .66rem;
        font-weight: 700;
    }

    .hb-feature-slider-tab.is-active {
        color: var(--hb-green-dark);
    }

    .hb-feature-slider-arrow {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        padding: 0;
        color: var(--hb-green-dark);
        background: #fff;
        border: 1px solid rgba(24, 64, 38, .1);
        border-radius: 50%;
        box-shadow:
            0 9px 24px
            rgba(18, 53, 31, .05);
        cursor: pointer;
        transition:
            transform 180ms ease,
            border-color 180ms ease,
            box-shadow 180ms ease;
    }

    .hb-feature-slider-arrow:hover {
        transform: translateY(-2px);
        border-color: rgba(70, 185, 71, .28);
        box-shadow:
            0 13px 30px
            rgba(18, 53, 31, .08);
    }

    .hb-feature-slider-arrow .hb-icon {
        width: 19px;
        height: 19px;
    }

    html[dir="rtl"] .hb-feature-slider-arrow .hb-icon {
        transform: scaleX(-1);
    }

    .hb-feature-details-section
    .hb-section-heading {
        margin-block-end: 0;
    }

    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase {
        min-height: 640px;
    }

    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase-copy h3 {
        font-size: clamp(2rem, 3vw, 3.25rem);
    }

    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase-frame img {
        max-height: 560px;
    }
}

@keyframes hb-feature-slide-in-ltr {
    from {
        opacity: 0;
        transform: translateX(26px) scale(.994);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes hb-feature-slide-out-ltr {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateX(-18px) scale(.995);
        filter: blur(2px);
    }
}

@keyframes hb-feature-slide-in-rtl {
    from {
        opacity: 0;
        transform: translateX(-26px) scale(.994);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes hb-feature-slide-out-rtl {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateX(18px) scale(.995);
        filter: blur(2px);
    }
}

@media (max-width: 820px) {
    .hb-feature-slider-ui {
        display: none !important;
    }

    .hb-feature-details-list.hb-feature-slider-ready {
        display: grid;
    }

    .hb-feature-details-list
    .hb-feature-showcase {
        display: grid !important;
        position: relative !important;
        inset: auto !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase.is-entering,
    .hb-feature-details-list.hb-feature-slider-ready
    .hb-feature-showcase.is-leaving {
        animation: none !important;
        filter: none !important;
        transform: none !important;
    }

    .hb-feature-slider-fill,
    .hb-feature-slider-arrow {
        transition: none !important;
    }
}

/* ==========================================================================
   L3-4B dynamic pricing section
   ========================================================================== */

.hb-pricing-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(184, 243, 74, .1),
            transparent 26rem
        ),
        radial-gradient(
            circle at 88% 66%,
            rgba(70, 185, 71, .08),
            transparent 30rem
        ),
        #fbfdfb;
}

.hb-pricing-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-block-start: clamp(42px, 6vw, 72px);
}

.hb-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 25px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .98),
            rgba(248, 252, 247, .98)
        );
    border: 1px solid rgba(24, 64, 38, .1);
    border-radius: 30px;
    box-shadow:
        0 22px 55px rgba(18, 53, 31, .055);
    transition:
        transform 240ms cubic-bezier(.2,.7,.2,1),
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.hb-pricing-card--annual,
.hb-pricing-card--lifetime {
    border-color: rgba(70, 185, 71, .2);
}

.hb-pricing-card-top {
    position: relative;
    display: grid;
    grid-template-columns:
        48px
        minmax(0, 1fr);
    gap: 13px;
    align-items: start;
}

.hb-pricing-plan-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--hb-green-dark);
    background: var(--hb-green-soft);
    border: 1px solid rgba(70, 185, 71, .15);
    border-radius: 15px;
}

.hb-pricing-plan-icon .hb-icon {
    width: 23px;
    height: 23px;
}

.hb-pricing-plan-heading h3 {
    margin: 1px 0 0;
    color: var(--hb-ink);
    font-size: 1.28rem;
    line-height: 1.35;
    font-weight: 700;
}

.hb-pricing-plan-heading p {
    min-height: 48px;
    margin: 7px 0 0;
    color: var(--hb-muted);
    font-size: .82rem;
    line-height: 1.6;
}

.hb-pricing-offer-badge {
    position: absolute;
    inset-inline-end: 0;
    inset-block-start: -10px;
    padding: 6px 9px;
    color: var(--hb-green-dark);
    background: var(--hb-lime);
    border-radius: 999px;
    font-size: .67rem;
    font-weight: 700;
}

.hb-pricing-price-block {
    min-height: 128px;
    margin-block-start: 28px;
    padding-block-end: 20px;
    border-bottom: 1px solid rgba(24, 64, 38, .08);
}

.hb-pricing-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    color: var(--hb-ink);
}

.hb-pricing-currency {
    margin-block-start: 7px;
    color: var(--hb-green-dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.hb-pricing-amount {
    font-size: clamp(2.6rem, 4vw, 3.65rem);
    line-height: .95;
    font-weight: 700;
    letter-spacing: -.04em;
}

.hb-pricing-price--free {
    display: block;
    color: var(--hb-green-dark);
    font-size: clamp(2.35rem, 3.6vw, 3.15rem);
    line-height: 1;
    font-weight: 700;
}

.hb-pricing-period {
    margin-block-start: 9px;
    color: var(--hb-muted);
    font-size: .82rem;
    font-weight: 600;
}

.hb-pricing-old-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-block-start: 10px;
    color: var(--hb-muted);
    font-size: .73rem;
}

.hb-pricing-old-price-row del {
    color: #7c877f;
}

.hb-pricing-old-price-row strong {
    color: var(--hb-green-dark);
    font-weight: 700;
}

.hb-pricing-facts {
    display: grid;
    gap: 10px;
    margin-block-start: 20px;
}

.hb-pricing-fact {
    display: grid;
    grid-template-columns:
        30px
        minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    color: var(--hb-ink);
    font-size: .87rem;
    line-height: 1.5;
}

html[dir="rtl"] .hb-pricing-fact {
    grid-template-columns:
        minmax(0, 1fr)
        30px;
}

html[dir="rtl"] .hb-pricing-fact-icon {
    grid-column: 2;
    grid-row: 1;
}

html[dir="rtl"] .hb-pricing-fact > span:last-child {
    grid-column: 1;
    grid-row: 1;
}

.hb-pricing-fact-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--hb-green-dark);
    background: var(--hb-green-soft);
    border-radius: 9px;
}

.hb-pricing-fact-icon .hb-icon {
    width: 15px;
    height: 15px;
}

.hb-pricing-card-action {
    margin-block-start: auto;
    padding-block-start: 25px;
}

.hb-pricing-cta {
    width: 100%;
    min-height: 49px;
    justify-content: center;
    gap: 8px;
}

.hb-pricing-cta .hb-icon {
    width: 18px;
    height: 18px;
}

.hb-button-disabled {
    opacity: .55;
    cursor: not-allowed;
}

.hb-pricing-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin-block-start: 24px;
    color: var(--hb-muted);
    text-align: center;
    font-size: .72rem;
    line-height: 1.55;
}

.hb-pricing-meta span {
    position: relative;
}

.hb-pricing-meta span:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-inline-end: -10px;
    top: 50%;
    width: 3px;
    height: 3px;
    background: rgba(70, 185, 71, .45);
    border-radius: 50%;
    transform: translateY(-50%);
}

@media (hover:hover) and (pointer:fine) {
    .hb-pricing-card:hover {
        transform: translateY(-5px);
        border-color: rgba(70, 185, 71, .28);
        box-shadow:
            0 28px 66px rgba(18, 53, 31, .085);
    }
}

@media (max-width: 980px) {
    .hb-pricing-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hb-pricing-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: min(100%, 520px);
        justify-self: center;
    }
}

@media (max-width: 680px) {
    .hb-pricing-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-block-start: 34px;
    }

    .hb-pricing-card,
    .hb-pricing-card:last-child:nth-child(odd) {
        width: 100%;
        grid-column: auto;
        padding: 20px 17px;
        border-radius: 25px;
    }

    .hb-pricing-plan-heading p {
        min-height: 0;
    }

    .hb-pricing-price-block {
        min-height: 0;
        margin-block-start: 22px;
    }

    .hb-pricing-amount {
        font-size: 3rem;
    }

    .hb-pricing-meta {
        display: grid;
        gap: 5px;
    }

    .hb-pricing-meta span::after {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hb-pricing-card {
        transition: none !important;
        transform: none !important;
    }
}

/* ==========================================================================
   L3-4C pricing cleanup and full features
   ========================================================================== */

.hb-pricing-plan-heading p {
    display: none;
}

.hb-pricing-card-top {
    align-items: center;
}

.hb-pricing-price-block {
    min-height: 114px;
}

.hb-pricing-facts {
    margin-block-start: 18px;
}

.hb-pricing-features {
    margin-block-start: 18px;
    padding-block-start: 18px;
    border-top: 1px solid rgba(24, 64, 38, .08);
}

.hb-pricing-feature-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hb-pricing-feature-list li {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
    color: var(--hb-ink);
    font-size: .79rem;
    line-height: 1.45;
}

html[dir="rtl"] .hb-pricing-feature-list li {
    grid-template-columns: minmax(0, 1fr) 25px;
}

html[dir="rtl"]
.hb-pricing-feature-list
.hb-pricing-feature-check {
    grid-column: 2;
    grid-row: 1;
}

html[dir="rtl"]
.hb-pricing-feature-list
li > span:last-child {
    grid-column: 1;
    grid-row: 1;
}

.hb-pricing-feature-check {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    color: var(--hb-green-dark);
    background: var(--hb-green-soft);
    border: 1px solid rgba(70, 185, 71, .13);
    border-radius: 7px;
}

.hb-pricing-feature-check .hb-icon {
    width: 13px;
    height: 13px;
}

.hb-pricing-card-action {
    padding-block-start: 24px;
}

.hb-pricing-cta,
a.hb-pricing-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    color: #102018 !important;
    background:
        linear-gradient(
            135deg,
            var(--hb-lime),
            #c8ff5c
        ) !important;
    border: 1px solid rgba(105, 180, 45, .34) !important;
    border-radius: 999px !important;
    box-shadow:
        0 12px 28px
        rgba(105, 180, 45, .14);
    font-weight: 700;
    text-decoration: none !important;
    text-underline-offset: 0;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.hb-pricing-cta:link,
.hb-pricing-cta:visited,
.hb-pricing-cta:hover,
.hb-pricing-cta:focus {
    color: #102018 !important;
    text-decoration: none !important;
}

@media (hover:hover) and (pointer:fine) {
    .hb-pricing-cta:hover {
        transform: translateY(-2px);
        box-shadow:
            0 16px 34px
            rgba(105, 180, 45, .2);
        filter: saturate(1.03);
    }
}

.hb-pricing-meta {
    display: none !important;
}

@media (max-width: 680px) {
    .hb-pricing-feature-list {
        gap: 8px;
    }

    .hb-pricing-feature-list li {
        font-size: .82rem;
    }

    .hb-pricing-cta,
    a.hb-pricing-cta {
        min-height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hb-pricing-cta {
        transition: none !important;
        transform: none !important;
    }
}

/* ==========================================================================
   L3-5B FAQ and final CTA
   ========================================================================== */

.hb-faq-section {
    position: relative;
    background: #fff;
}

.hb-faq-list {
    width: min(100%, 980px);
    display: grid;
    gap: 12px;
    margin:
        clamp(38px, 6vw, 70px)
        auto
        0;
}

.hb-faq-item {
    overflow: hidden;
    background: rgba(250, 252, 249, .92);
    border: 1px solid rgba(24, 64, 38, .1);
    border-radius: 22px;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.hb-faq-item.is-open {
    background: #fff;
    border-color: rgba(70, 185, 71, .25);
    box-shadow:
        0 16px 38px rgba(18, 53, 31, .055);
}

.hb-faq-question-wrap {
    margin: 0;
}

.hb-faq-question {
    width: 100%;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        40px;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    color: var(--hb-ink);
    text-align: start;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
    background: transparent;
    border: 0;
    cursor: pointer;
}

html[dir="rtl"] .hb-faq-question {
    grid-template-columns:
        40px
        minmax(0, 1fr);
}

html[dir="rtl"] .hb-faq-question > span:first-child {
    grid-column: 2;
    grid-row: 1;
}

html[dir="rtl"] .hb-faq-chevron {
    grid-column: 1;
    grid-row: 1;
}

.hb-faq-chevron {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--hb-green-dark);
    background: var(--hb-green-soft);
    border-radius: 12px;
    transition:
        transform 240ms cubic-bezier(.2,.7,.2,1),
        background 180ms ease;
}

.hb-faq-chevron .hb-icon {
    width: 18px;
    height: 18px;
}

.hb-faq-item.is-open .hb-faq-chevron {
    transform: rotate(180deg);
    background: rgba(184, 243, 74, .28);
}

.hb-faq-answer {
    overflow: hidden;
}

.hb-faq-answer-inner {
    padding:
        0
        22px
        21px;
}

.hb-faq-answer p {
    max-width: 820px;
    margin: 0;
    color: var(--hb-muted);
    font-size: .93rem;
    line-height: 1.85;
}

.hb-final-cta {
    padding-block-start: 0;
    background: #fff;
}

.hb-final-cta-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: clamp(22px, 4vw, 48px);
    padding: clamp(30px, 5vw, 56px);
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(184, 243, 74, .28),
            transparent 17rem
        ),
        linear-gradient(
            135deg,
            #f3fbea,
            #fbfdf9 55%,
            #eef9e8
        );
    border: 1px solid rgba(70, 185, 71, .16);
    border-radius: 36px;
    box-shadow:
        0 24px 65px rgba(18, 53, 31, .07);
}

.hb-final-cta-brand {
    width: clamp(74px, 8vw, 104px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(70, 185, 71, .12);
    border-radius: 26px;
    box-shadow:
        0 14px 36px rgba(18, 53, 31, .07);
}

.hb-final-cta-brand img {
    width: 72%;
    height: 72%;
    object-fit: contain;
}

.hb-final-cta-copy {
    min-width: 0;
}

.hb-final-cta-copy h2 {
    max-width: 720px;
    margin: 15px 0 0;
    color: var(--hb-ink);
    font-size: clamp(2rem, 3.3vw, 3.5rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -.025em;
}

.hb-final-cta-copy p {
    margin: 15px 0 0;
    color: var(--hb-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.hb-final-cta-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-block-start: 16px;
}

.hb-final-cta-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding-inline: 11px;
    color: var(--hb-green-dark);
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(70, 185, 71, .13);
    border-radius: 999px;
    font-size: .73rem;
    font-weight: 700;
}

.hb-final-cta-action {
    min-width: 250px;
}

.hb-final-cta-button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    gap: 9px;
    text-decoration: none !important;
    border-radius: 999px;
}

.hb-final-cta-button .hb-icon {
    width: 18px;
    height: 18px;
}

@media (hover:hover) and (pointer:fine) {
    .hb-faq-question:hover .hb-faq-chevron {
        background: rgba(184, 243, 74, .26);
    }
}

@media (max-width: 860px) {
    .hb-final-cta-card {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .hb-final-cta-action {
        grid-column: 1 / -1;
        width: min(100%, 420px);
        min-width: 0;
    }
}

@media (max-width: 680px) {
    .hb-faq-list {
        gap: 10px;
        margin-block-start: 32px;
    }

    .hb-faq-item {
        border-radius: 18px;
    }

    .hb-faq-question {
        grid-template-columns:
            minmax(0, 1fr)
            36px;
        gap: 10px;
        padding: 17px 16px;
        font-size: .94rem;
    }

    html[dir="rtl"] .hb-faq-question {
        grid-template-columns:
            36px
            minmax(0, 1fr);
    }

    .hb-faq-chevron {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .hb-faq-answer-inner {
        padding:
            0
            16px
            17px;
    }

    .hb-faq-answer p {
        font-size: .89rem;
        line-height: 1.8;
    }

    .hb-final-cta-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 28px 18px;
        border-radius: 28px;
    }

    .hb-final-cta-copy h2 {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
    }

    .hb-final-cta-copy p {
        font-size: .94rem;
    }

    .hb-final-cta-meta {
        justify-content: center;
    }

    .hb-final-cta-action {
        grid-column: auto;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hb-faq-item,
    .hb-faq-chevron {
        transition: none !important;
    }
}

/* ==========================================================================
   L3-5C final CTA real button
   ========================================================================== */

.hb-final-cta-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

a.hb-final-cta-button,
.hb-final-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;

    width: 100%;
    min-width: 250px;
    min-height: 56px;

    padding: 0 24px;

    color: #102018 !important;
    background:
        linear-gradient(
            135deg,
            var(--hb-lime),
            #c8ff5c
        ) !important;

    border: 1px solid rgba(105, 180, 45, .34) !important;
    border-radius: 999px !important;

    box-shadow:
        0 14px 34px
        rgba(105, 180, 45, .18);

    font-weight: 700;
    line-height: 1;
    text-align: center;

    text-decoration: none !important;

    cursor: pointer;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

a.hb-final-cta-button:link,
a.hb-final-cta-button:visited,
a.hb-final-cta-button:hover,
a.hb-final-cta-button:focus,
a.hb-final-cta-button:active {
    color: #102018 !important;
    text-decoration: none !important;
}

.hb-final-cta-button .hb-icon {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
}

@media (hover:hover) and (pointer:fine) {
    a.hb-final-cta-button:hover {
        transform: translateY(-2px);
        box-shadow:
            0 18px 40px
            rgba(105, 180, 45, .24);
        filter: saturate(1.04);
    }
}

@media (max-width: 680px) {
    a.hb-final-cta-button,
    .hb-final-cta-button {
        width: 100%;
        min-width: 0;
        min-height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    a.hb-final-cta-button {
        transition: none !important;
        transform: none !important;
    }
}
