.zq-qr-generator,
.zq-qr-compact-cta {
    --zq-ink: #0f2923;
    --zq-surface: #ffffff;
    --zq-muted: #61716c;
    --zq-line: #dce6e1;
    --zq-accent: #8af135;
    --zq-accent-strong: #6fd51e;
    --zq-deep: #2a4741;
    --zq-soft: #f2f7f4;
    color: var(--zq-ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.zq-qr-generator *,
.zq-qr-compact-cta * {
    box-sizing: border-box;
}

.zq-qr-generator {
    position: relative;
    isolation: isolate;
    width: min(1180px, calc(100% - 32px));
    margin: 76px auto;
    padding: clamp(28px, 5vw, 64px);
    overflow: hidden;
    border: 1px solid rgba(138, 241, 53, .22);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(242, 247, 244, .98));
    box-shadow: 0 30px 90px rgba(15, 41, 35, .13);
}

.zq-qr-generator__glow {
    position: absolute;
    z-index: -1;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(138, 241, 53, .2);
    filter: blur(9px);
    pointer-events: none;
}

.zq-qr-generator__glow--one {
    top: -220px;
    right: -100px;
}

.zq-qr-generator__glow--two {
    bottom: -280px;
    left: -160px;
    opacity: .5;
}

.zq-qr-generator__header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.zq-qr-generator__eyebrow,
.zq-qr-panel__count {
    margin: 0 0 10px;
    color: #4f8228;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.zq-qr-generator__header h2,
.zq-qr-panel h3,
.zq-qr-result h3,
.zq-qr-compact-cta h2 {
    margin: 0;
    color: var(--zq-ink);
    font-family: Outfit, Inter, system-ui, sans-serif;
    font-weight: 650;
    letter-spacing: -.025em;
}

.zq-qr-generator__header h2 {
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.04;
}

.zq-qr-generator__header > p:last-child {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--zq-muted);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.65;
}

.zq-qr-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    margin: 0 auto 28px;
    padding: 0;
    list-style: none;
}

.zq-qr-progress li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #7c8b86;
    font-size: 13px;
    text-align: center;
}

.zq-qr-progress li:not(:last-child)::after {
    position: absolute;
    top: 19px;
    left: calc(50% + 26px);
    width: calc(100% - 52px);
    height: 2px;
    background: var(--zq-line);
    content: "";
    transition: background-color .3s ease;
}

.zq-qr-progress li.is-complete::after {
    background: var(--zq-accent-strong);
}

.zq-qr-progress span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 2px solid var(--zq-line);
    border-radius: 50%;
    background: var(--zq-surface);
    color: #6c7c76;
    font-size: 14px;
    font-weight: 800;
    transition: transform .3s ease, background-color .3s ease, border-color .3s ease, color .3s ease;
}

.zq-qr-progress li.is-active,
.zq-qr-progress li.is-complete {
    color: var(--zq-ink);
}

.zq-qr-progress li.is-active span,
.zq-qr-progress li.is-complete span {
    border-color: var(--zq-accent);
    background: var(--zq-accent);
    color: var(--zq-ink);
}

.zq-qr-progress li.is-active span {
    transform: scale(1.08);
    box-shadow: 0 0 0 7px rgba(138, 241, 53, .18);
}

.zq-qr-form,
.zq-qr-result {
    max-width: 880px;
    margin: 0 auto;
}

.zq-qr-panel {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--zq-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 48px rgba(15, 41, 35, .08);
}

.zq-qr-panel.is-entering {
    animation: zqQrPanelIn .38s cubic-bezier(.2, .8, .2, 1) both;
}

.zq-qr-panel__copy {
    margin-bottom: 26px;
}

.zq-qr-panel__copy h3,
.zq-qr-result h3 {
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.15;
}

.zq-qr-panel__copy > p:last-child,
.zq-qr-result__content > p {
    margin: 10px 0 0;
    color: var(--zq-muted);
    line-height: 1.65;
}

.zq-qr-field {
    display: block;
    margin: 0 0 20px;
}

.zq-qr-field > span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--zq-ink);
    font-size: 14px;
    font-weight: 750;
}

.zq-qr-field b {
    color: #bf3d32;
}

.zq-qr-field em {
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--zq-soft);
    color: #697a74;
    font-size: 11px;
    font-style: normal;
    font-weight: 650;
}

.zq-qr-field input {
    width: 100%;
    min-height: 54px;
    padding: 13px 16px;
    border: 1px solid #cddad4;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: var(--zq-ink);
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.zq-qr-field input:hover {
    border-color: #9fb3aa;
}

.zq-qr-field input:focus {
    border-color: #5ea51f;
    box-shadow: 0 0 0 4px rgba(138, 241, 53, .22);
}

.zq-qr-field input[aria-invalid="true"] {
    border-color: #bf3d32;
    box-shadow: 0 0 0 4px rgba(191, 61, 50, .1);
}

.zq-qr-field small {
    display: block;
    margin-top: 7px;
    color: #708079;
    font-size: 12px;
    line-height: 1.45;
}

.zq-qr-field small.is-ok {
    color: #397d10;
    font-weight: 700;
}

.zq-qr-field small.is-error {
    color: #a52d25;
    font-weight: 700;
}

.zq-qr-domain-field {
    display: flex !important;
    align-items: stretch !important;
    gap: 0 !important;
    margin: 0 !important;
}

.zq-qr-domain-field input {
    border-radius: 12px 0 0 12px;
}

.zq-qr-domain-field > span {
    display: flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid #cddad4;
    border-left: 0;
    border-radius: 0 12px 12px 0;
    background: var(--zq-soft);
    color: var(--zq-ink);
    font-weight: 750;
    white-space: nowrap;
}

.zq-qr-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.zq-qr-actions,
.zq-qr-result__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}

.zq-qr-actions--end {
    justify-content: flex-end;
}

.zq-qr-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-family: Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.zq-qr-button:hover {
    transform: translateY(-2px);
}

.zq-qr-button:focus-visible,
.zq-qr-save:focus-visible,
.zq-qr-start-over:focus-visible {
    outline: 3px solid rgba(70, 126, 29, .45);
    outline-offset: 3px;
}

.zq-qr-button[disabled] {
    cursor: wait;
    opacity: .62;
    transform: none;
}

.zq-qr-button--primary {
    background: var(--zq-accent);
    color: var(--zq-ink) !important;
    box-shadow: 0 12px 24px rgba(103, 184, 31, .2);
}

.zq-qr-button--primary:hover {
    background: #a1f860;
    box-shadow: 0 15px 28px rgba(103, 184, 31, .26);
}

.zq-qr-button--secondary {
    border-color: var(--zq-deep);
    background: var(--zq-deep);
    color: #fff !important;
}

.zq-qr-button--ghost {
    border-color: #cddad4;
    background: #fff;
    color: var(--zq-ink) !important;
}

.zq-qr-review {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.zq-qr-preview-card {
    padding: 16px;
    border: 1px solid var(--zq-line);
    border-radius: 18px;
    background: var(--zq-soft);
    text-align: center;
}

.zq-qr-preview-placeholder {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 12px;
    background: #fff;
}

.zq-qr-preview-placeholder svg {
    width: 78%;
    fill: var(--zq-ink);
}

.zq-qr-preview-card p {
    margin: 10px 0 0;
    color: #697a74;
    font-size: 11px;
    line-height: 1.4;
}

.zq-qr-summary {
    margin: 0;
}

.zq-qr-summary > div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--zq-line);
}

.zq-qr-summary dt {
    color: #687973;
    font-size: 12px;
    font-weight: 750;
}

.zq-qr-summary dd {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--zq-ink);
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zq-qr-expiry-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 22px 0 0;
    padding: 12px 14px;
    border-radius: 11px;
    background: #f2faed;
    color: #356c16;
    font-size: 12px;
    font-weight: 700;
}

.zq-qr-expiry-note span {
    display: grid;
    flex: 0 0 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--zq-accent);
    color: var(--zq-ink);
}

.zq-qr-legal {
    margin: 15px 0 0;
    color: #778680;
    font-size: 11px;
    text-align: right;
}

.zq-qr-form-error,
.zq-qr-alert,
.zq-qr-noscript {
    margin: 18px 0 0;
    padding: 13px 15px;
    border: 1px solid #efb6b1;
    border-radius: 10px;
    background: #fff3f2;
    color: #8d241d;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.5;
}

.zq-qr-alert--warning {
    max-width: 760px;
    margin: 0 auto;
    border-color: #ead598;
    background: #fffaf0;
    color: #755b0e;
}

.zq-qr-alert a,
.zq-qr-noscript a {
    color: inherit;
    font-weight: 800;
    text-decoration: underline;
}

.zq-qr-loader {
    display: flex;
    max-width: 880px;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    color: var(--zq-ink);
    font-weight: 750;
}

.zq-qr-loader span {
    width: 28px;
    height: 28px;
    border: 3px solid var(--zq-line);
    border-top-color: var(--zq-accent-strong);
    border-radius: 50%;
    animation: zqQrSpin .75s linear infinite;
}

.zq-qr-result {
    display: grid;
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: clamp(26px, 5vw, 52px);
    align-items: center;
    padding: clamp(24px, 4vw, 44px);
    border-radius: 24px;
    background: var(--zq-deep);
    color: #fff;
    box-shadow: 0 24px 60px rgba(15, 41, 35, .2);
    animation: zqQrResultIn .52s cubic-bezier(.2, .8, .2, 1) both;
}

.zq-qr-result[hidden],
.zq-qr-loader[hidden],
.zq-qr-panel[hidden],
.zq-qr-form-error[hidden] {
    display: none !important;
}

.zq-qr-result__visual {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.zq-qr-result__visual img {
    display: block;
    width: 100%;
    height: auto;
}

.zq-qr-result h3,
.zq-qr-result__content > p,
.zq-qr-result .zq-qr-panel__count {
    color: #fff;
}

.zq-qr-result .zq-qr-panel__count {
    color: var(--zq-accent);
}

.zq-qr-result__link {
    display: block;
    max-width: 100%;
    margin-top: 18px;
    overflow: hidden;
    color: var(--zq-accent) !important;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zq-qr-result__expiry {
    margin-top: 10px !important;
    color: rgba(255, 255, 255, .7) !important;
    font-size: 12px;
}

.zq-qr-result__actions {
    justify-content: flex-start;
    margin-top: 20px;
}

.zq-qr-result__actions .zq-qr-button {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 12px;
}

.zq-qr-result .zq-qr-button--ghost {
    border-color: rgba(255, 255, 255, .35);
    background: transparent;
    color: #fff !important;
}

.zq-qr-save,
.zq-qr-start-over {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.zq-qr-save {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding: 15px 18px;
    border-radius: 12px;
    background: var(--zq-accent);
    color: var(--zq-ink);
    font-weight: 850;
    text-align: left;
}

.zq-qr-start-over {
    margin-top: 15px;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    text-decoration: underline;
}

.zq-qr-result .zq-qr-form-error {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(119, 17, 12, .42);
    color: #fff;
}

.zq-qr-compact-cta {
    display: flex;
    width: min(1180px, calc(100% - 32px));
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 64px auto;
    padding: clamp(28px, 5vw, 52px);
    border-radius: 24px;
    background: var(--zq-deep);
    box-shadow: 0 24px 60px rgba(15, 41, 35, .16);
}

.zq-qr-compact-cta h2 {
    color: #fff;
    font-size: clamp(27px, 3.5vw, 42px);
    line-height: 1.1;
}

.zq-qr-compact-cta p:not(.zq-qr-generator__eyebrow) {
    max-width: 650px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

.zq-qr-compact-cta .zq-qr-generator__eyebrow {
    color: var(--zq-accent);
}

.zq-qr-inline-cta {
    width: fit-content;
    margin: 0 auto;
}

@keyframes zqQrPanelIn {
    from { opacity: 0; transform: translateY(14px) scale(.992); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes zqQrResultIn {
    from { opacity: 0; transform: translateY(22px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes zqQrSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
    .zq-qr-generator {
        width: min(100% - 20px, 1180px);
        margin: 42px auto;
        padding: 26px 15px;
        border-radius: 21px;
    }

    .zq-qr-generator__header {
        margin-bottom: 25px;
    }

    .zq-qr-progress strong {
        font-size: 10px;
    }

    .zq-qr-progress li:not(:last-child)::after {
        left: calc(50% + 23px);
        width: calc(100% - 46px);
    }

    .zq-qr-panel {
        padding: 22px 17px;
        border-radius: 16px;
    }

    .zq-qr-field-grid,
    .zq-qr-review,
    .zq-qr-result {
        grid-template-columns: 1fr;
    }

    .zq-qr-preview-card {
        max-width: 220px;
        margin: 0 auto;
    }

    .zq-qr-actions .zq-qr-button {
        flex: 1 1 145px;
    }

    .zq-qr-result {
        padding: 20px;
        border-radius: 18px;
    }

    .zq-qr-result__visual {
        width: min(100%, 300px);
        margin: 0 auto;
    }

    .zq-qr-result__actions .zq-qr-button {
        flex: 1 1 120px;
    }

    .zq-qr-compact-cta {
        width: min(100% - 20px, 1180px);
        flex-direction: column;
        align-items: flex-start;
        margin: 42px auto;
        padding: 28px 22px;
    }
}

/* Automatic live QR draft + optional address customization. */
.zq-qr-url-status {
    display: block;
    min-height: 18px;
    margin-top: 5px !important;
    font-weight: 700;
}

.zq-qr-url-status:empty {
    min-height: 0;
    margin-top: 0 !important;
}

.zq-qr-url-status.is-ok {
    color: #173018;
}

.zq-qr-url-status.is-loading {
    color: #315949;
}

.zq-qr-url-status.is-error {
    color: #7d211c;
}

.zq-qr-generator [data-zq-create]:disabled {
    background: rgba(15, 41, 35, .42);
    color: rgba(255, 255, 255, .78) !important;
    box-shadow: none;
    cursor: wait;
}

.zq-qr-result.is-step-1 {
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    margin-top: 16px;
    padding: 18px;
    animation: zq-qr-preview-in .28s ease-out both;
}

.zq-qr-result.is-step-1 .zq-qr-result__visual-shell {
    width: 170px;
}

.zq-qr-result.is-step-1 .zq-qr-result__visual {
    padding: 9px;
}

.zq-qr-result.is-step-1 .zq-qr-result__qr-actions,
.zq-qr-result.is-step-1 .zq-qr-result__qr-status {
    display: none;
}

.zq-qr-result.is-step-1 h3 {
    margin: 3px 0 7px;
    font-size: clamp(19px, 3vw, 25px);
}

.zq-qr-result.is-step-1 [data-zq-result-step="1"] > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    line-height: 1.45;
}

@keyframes zq-qr-preview-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.zq-qr-domain-option {
    margin-top: 17px;
    padding-top: 15px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    background: transparent;
}

.zq-qr-domain-option summary {
    display: flex;
    width: max-content;
    max-width: 100%;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid rgba(138, 241, 53, .38);
    border-radius: 999px;
    background: rgba(138, 241, 53, .1);
    color: var(--zq-qr-brand-bg);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    list-style: none;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.zq-qr-domain-option summary::-webkit-details-marker {
    display: none;
}

.zq-qr-domain-option summary strong {
    color: inherit;
    font-size: inherit;
}

.zq-qr-domain-option summary:hover,
.zq-qr-domain-option summary:focus-visible {
    background: var(--zq-qr-brand-bg);
    color: var(--zq-qr-brand-ink);
    outline: none;
}

.zq-qr-domain-option summary:hover em,
.zq-qr-domain-option summary:focus-visible em {
    color: var(--zq-qr-brand-ink);
}

.zq-qr-domain-option summary em {
    padding: 2px 7px;
    border: 1px solid rgba(138, 241, 53, .28);
    border-radius: 999px;
    background: rgba(138, 241, 53, .1);
    color: var(--zq-qr-brand-bg);
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
}

.zq-qr-domain-option__body {
    margin-top: 14px;
}

.zq-qr-domain-option .zq-qr-field {
    margin: 0;
}

.zq-qr-subdomain-control {
    display: flex !important;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(138, 241, 53, .44);
    border-radius: 999px;
    background: #75d233;
}

.zq-qr-subdomain-control:focus-within {
    border-color: var(--zq-qr-brand-bg);
    box-shadow: 0 0 0 3px rgba(138, 241, 53, .16);
}

.zq-qr-result .zq-qr-subdomain-control input {
    min-width: 0;
    height: 40px !important;
    min-height: 40px;
    max-height: 40px;
    flex: 1 1 auto;
    margin: 0;
    padding: 0 8px 0 12px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--zq-qr-brand-ink);
    -webkit-text-fill-color: var(--zq-qr-brand-ink);
    font-size: 13.5px;
    box-shadow: none;
}

.zq-qr-subdomain-control__suffix {
    display: inline-flex !important;
    align-items: center;
    min-width: 78px;
    justify-content: center;
    padding: 0 14px 0 10px;
    color: var(--zq-qr-brand-ink) !important;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.zq-qr-address-editor [data-zq-subdomain-status] {
    margin: 5px 4px 0;
    color: rgba(255, 255, 255, .68);
    font-size: 9px;
}

.zq-qr-address-editor [data-zq-subdomain-status].is-ok {
    color: var(--zq-qr-brand-bg);
}

.zq-qr-address-editor [data-zq-subdomain-status].is-error {
    color: #ffaaa4;
}

.zq-qr-subdomain-control:has(input[aria-invalid="true"]) {
    border-color: #ff8a80;
    box-shadow: 0 0 0 3px rgba(255, 82, 82, .14);
}

@media (max-width: 767px) {
    .zq-qr-result.is-step-1 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .zq-qr-result.is-step-1 .zq-qr-result__visual-shell {
        width: min(100%, 190px);
    }

    .zq-qr-result.is-step-1 .zq-qr-result__content {
        text-align: center;
    }

    .zq-qr-domain-option summary {
        padding-inline: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zq-qr-generator *,
    .zq-qr-compact-cta * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* --------------------------------------------------------------
   VISUAL PARITY WITH THE HOMEPAGE PLG DEEP LINK WIDGET
-------------------------------------------------------------- */
.zq-qr-generator,
.zq-qr-compact-cta {
    --zq-qr-brand-bg: #8af135;
    --zq-qr-brand-accent: #61ce70;
    --zq-qr-brand-field: #fff;
    --zq-qr-brand-ink: #0f2923;
    --zq-qr-brand-copy: #173018;
    --zq-qr-brand-muted: #2a4741;
    --zq-qr-brand-white: #fff;
    font-family: var(--e-global-typography-text-font-family, Roboto, Arial, sans-serif);
}

.zq-qr-generator {
    width: min(640px, 100%);
    max-width: 640px;
    margin: 64px auto;
    padding: 32px 32px 28px;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: var(--zq-qr-brand-bg);
    color: var(--zq-qr-brand-ink);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

.zq-qr-generator__header {
    max-width: none;
    margin: 0 0 24px;
    text-align: left;
}

.zq-qr-generator__header h2,
.zq-qr-panel h3,
.zq-qr-result h3,
.zq-qr-compact-cta h2 {
    color: var(--zq-qr-brand-ink);
    font-family: Roboto, Arial, sans-serif !important;
    letter-spacing: normal;
}

.zq-qr-generator__header h2 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.zq-qr-generator__header > p:last-child {
    max-width: none;
    margin: 0;
    color: var(--zq-qr-brand-muted);
    font-size: 14px;
    line-height: 1.6;
}

.zq-qr-progress {
    display: flex;
    max-width: none;
    gap: 12px;
    margin: 0 0 20px;
    flex-wrap: wrap;
}

.zq-qr-progress li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(138, 241, 53, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
    color: var(--zq-qr-brand-ink);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.zq-qr-progress li:not(:last-child)::after {
    display: none;
}

.zq-qr-progress li.is-active {
    background: var(--zq-qr-brand-accent);
    color: var(--zq-qr-brand-ink);
}

.zq-qr-progress li.is-complete {
    background: rgba(97, 206, 112, .42);
    color: var(--zq-qr-brand-ink);
}

.zq-qr-progress span {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: inherit;
    font-size: 11px;
    font-weight: 500;
}

.zq-qr-progress li.is-active span,
.zq-qr-progress li.is-complete span {
    border: 0;
    background: rgba(255, 255, 255, .08);
    color: inherit;
    box-shadow: none;
    transform: none;
}

.zq-qr-progress strong {
    font: inherit;
    white-space: nowrap;
}

.zq-qr-form,
.zq-qr-result,
.zq-qr-loader {
    max-width: none;
}

.zq-qr-panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.zq-qr-panel__copy {
    margin: 0 0 20px;
}

.zq-qr-panel__copy--intro {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.zq-qr-panel__count {
    margin: 0 0 6px;
    color: var(--zq-qr-brand-copy);
    font-size: 11px;
    letter-spacing: .08em;
}

.zq-qr-panel__copy h3,
.zq-qr-result h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.zq-qr-panel__copy > p:last-child,
.zq-qr-result__content > p {
    margin: 6px 0 0;
    color: var(--zq-qr-brand-copy);
    font-size: 14px;
    line-height: 1.55;
}

.zq-qr-field {
    margin: 0 0 18px;
    color: var(--zq-qr-brand-copy);
}

.zq-qr-field > span:first-child {
    margin-bottom: 6px;
    color: var(--zq-qr-brand-copy);
    font-size: 13px;
    font-weight: 500;
}

.zq-qr-field b {
    color: var(--zq-qr-brand-copy);
}

.zq-qr-field em {
    background: rgba(15, 41, 35, .1);
    color: var(--zq-qr-brand-copy);
}

.zq-qr-generator .zq-qr-field input {
    width: 100%;
    min-height: 57px;
    margin: 0;
    padding: 0 20px;
    border: 2px solid rgba(15, 41, 35, .3);
    border-radius: 39px;
    outline: none;
    background: var(--zq-qr-brand-field);
    color: #0f261d;
    font-family: var(--e-global-typography-text-font-family, Roboto, Arial, sans-serif);
    font-size: clamp(17px, 3.8vw, 24px);
    font-weight: 500;
    line-height: 1.25;
}

.zq-qr-generator .zq-qr-field input::placeholder {
    color: #4b625a;
    opacity: 1;
}

.zq-qr-generator .zq-qr-field input:hover,
.zq-qr-generator .zq-qr-field input:focus {
    border-color: var(--zq-qr-brand-ink);
    box-shadow: 0 0 0 3px rgba(15, 41, 35, .14);
}

.zq-qr-generator .zq-qr-field input[aria-invalid="true"] {
    border-color: #8b231c;
    box-shadow: 0 0 0 2px rgba(139, 35, 28, .18);
}

.zq-qr-field small {
    margin-top: 7px;
    color: var(--zq-qr-brand-copy);
    font-size: 14px;
    line-height: 1.55;
}

.zq-qr-field small.is-ok {
    color: #173018;
}

.zq-qr-domain-field {
    border-radius: 39px;
    background: var(--zq-qr-brand-field);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
    overflow: hidden;
}

.zq-qr-generator .zq-qr-domain-field input {
    min-width: 0;
    border: 0;
    border-radius: 39px 0 0 39px;
    background: transparent;
    box-shadow: none;
}

.zq-qr-domain-field > span {
    padding: 0 16px 0 10px;
    border: 0;
    border-radius: 0 999px 999px 0;
    background: var(--zq-qr-brand-ink);
    color: var(--zq-qr-brand-white);
    font-size: clamp(15px, 3.2vw, 21px);
    font-weight: 500;
}

.zq-qr-field-grid {
    gap: 14px;
}

.zq-qr-actions,
.zq-qr-result__actions {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 12px;
}

.zq-qr-generator .zq-qr-button,
.zq-qr-compact-cta .zq-qr-button {
    min-height: 48px;
    gap: 7px;
    padding: 9px 18px;
    border: 0;
    border-radius: 999px;
    font-family: var(--e-global-typography-text-font-family, Roboto, Arial, sans-serif);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.zq-qr-generator .zq-qr-button:hover,
.zq-qr-compact-cta .zq-qr-button:hover {
    transform: none;
}

.zq-qr-generator .zq-qr-button--primary,
.zq-qr-compact-cta .zq-qr-button--primary {
    background: var(--zq-qr-brand-ink);
    color: var(--zq-qr-brand-white) !important;
    box-shadow: 0 6px 14px rgba(0, 255, 153, .22);
}

.zq-qr-generator .zq-qr-button--primary:hover,
.zq-qr-compact-cta .zq-qr-button--primary:hover {
    background: var(--zq-qr-brand-white);
    color: var(--zq-qr-brand-ink) !important;
    box-shadow: 0 10px 22px rgba(0, 255, 153, .28);
}

.zq-qr-generator .zq-qr-button--ghost {
    border: 1px solid rgba(255, 255, 255, .12);
    background: var(--zq-qr-brand-accent);
    color: var(--zq-qr-brand-white) !important;
}

.zq-qr-generator .zq-qr-button--ghost:hover:not(:disabled) {
    background: var(--zq-qr-brand-muted);
}

.zq-qr-generator .zq-qr-button[disabled] {
    cursor: default;
    opacity: 1;
}

.zq-qr-trial-badge {
    position: relative;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0 0 11px auto;
    padding: 0 11px;
    border: 1px solid rgba(126, 255, 35, .28);
    border-radius: 999px;
    background: #08251f;
    color: var(--zq-qr-brand-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 18px rgba(0, 0, 0, .18);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.zq-qr-trial-badge::after {
    position: absolute;
    right: 0;
    bottom: -11px;
    left: 0;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(to right, #0b5f2a 30%, rgba(8, 37, 31, .26) 30%);
    content: "";
}

.zq-qr-review {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
}

.zq-qr-preview-card {
    border-color: rgba(15, 41, 35, .18);
    background: rgba(15, 41, 35, .08);
}

.zq-qr-preview-card p,
.zq-qr-summary dt,
.zq-qr-summary dd,
.zq-qr-legal {
    color: var(--zq-qr-brand-copy);
}

.zq-qr-summary > div {
    border-color: rgba(15, 41, 35, .18);
}

.zq-qr-expiry-note {
    background: rgba(255, 255, 255, .34);
    color: var(--zq-qr-brand-copy);
}

.zq-qr-expiry-note span {
    background: var(--zq-qr-brand-accent);
}

.zq-qr-loader {
    color: var(--zq-qr-brand-ink);
}

.zq-qr-loader span {
    border-color: rgba(15, 41, 35, .2);
    border-top-color: var(--zq-qr-brand-ink);
}

.zq-qr-result {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
    border-radius: 16px;
    background: var(--zq-qr-brand-ink);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .24);
    overflow: hidden;
}

.zq-qr-result__content {
    min-width: 0;
    width: 100%;
}

.zq-qr-first-claim {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.zq-qr-first-claim small {
    color: var(--zq-qr-muted, #667085);
    line-height: 1.45;
}

.zq-qr-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

[data-zq-result-step][hidden] {
    display: none !important;
}

.zq-qr-result h3,
.zq-qr-result__content > p {
    color: var(--zq-qr-brand-white);
}

.zq-qr-result__visual {
    position: relative;
    padding: 13px;
    border-radius: 13px;
}

.zq-qr-live-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 28px;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--zq-qr-brand-ink);
    color: var(--zq-qr-brand-bg);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 5px 14px rgba(0, 0, 0, .24);
}

.zq-qr-live-badge > span {
    color: var(--zq-qr-brand-accent);
    font-size: 9px;
}

.zq-qr-result__link {
    margin: 0 0 14px;
    color: var(--zq-qr-brand-bg) !important;
    font-size: 12px;
}

.zq-qr-result .zq-qr-field--result {
    margin: 16px 0 4px;
}

.zq-qr-result .zq-qr-field--result > span:first-child {
    color: var(--zq-qr-brand-white);
}

.zq-qr-result .zq-qr-field--result em {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .78);
}

.zq-qr-result .zq-qr-field--result input {
    max-width: 100%;
    min-height: 48px;
    border-color: rgba(255, 255, 255, .72);
    background: #fff;
    color: var(--zq-qr-brand-ink);
    font-size: 16px;
}

.zq-qr-result__actions .zq-qr-button {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 12px;
}

.zq-qr-result .zq-qr-button--primary,
.zq-qr-result .zq-qr-save {
    background: var(--zq-qr-brand-bg);
    color: var(--zq-qr-brand-ink) !important;
}

.zq-qr-result .zq-qr-button--secondary {
    background: var(--zq-qr-brand-accent);
    color: var(--zq-qr-brand-white) !important;
}

.zq-qr-save {
    border-radius: 999px;
}

.zq-qr-result__trust {
    margin: 9px 0 0 !important;
    color: rgba(255, 255, 255, .78) !important;
    font-size: 11px !important;
    font-weight: 700;
    text-align: center;
}

.zq-qr-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(15, 41, 35, .22);
    list-style: none;
}

.zq-qr-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--zq-qr-brand-copy);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.zq-qr-benefits li span {
    display: inline-grid;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    place-items: center;
    border-radius: 50%;
    background: var(--zq-qr-brand-accent);
    color: var(--zq-qr-brand-ink);
    font-size: 11px;
}

.zq-qr-compact-cta {
    max-width: 640px;
    background: var(--zq-qr-brand-bg);
    color: var(--zq-qr-brand-ink);
}

.zq-qr-compact-cta h2,
.zq-qr-compact-cta p:not(.zq-qr-generator__eyebrow) {
    color: var(--zq-qr-brand-ink);
}

@media (max-width: 767px) {
    .zq-qr-generator {
        width: min(100% - 20px, 640px);
        margin: 42px auto;
        padding: 24px 18px 22px;
        border-radius: 20px;
    }

    .zq-qr-generator__header h2 {
        font-size: 24px;
    }

    .zq-qr-progress {
        gap: 7px;
    }

    .zq-qr-progress li {
        padding: 5px 8px;
        font-size: 13px;
    }

    .zq-qr-progress strong {
        font-size: inherit;
    }

    .zq-qr-panel {
        padding: 0;
        border-radius: 0;
    }

    .zq-qr-field-grid,
    .zq-qr-review,
    .zq-qr-result {
        grid-template-columns: 1fr;
    }

    .zq-qr-generator .zq-qr-button {
        min-height: 44px;
        padding: 8px 15px;
        font-size: 15px;
    }

    .zq-qr-actions .zq-qr-button {
        flex: 0 1 auto;
    }

    .zq-qr-trial-badge {
        flex-basis: auto;
        margin-left: auto;
    }

    .zq-qr-preview-card,
    .zq-qr-result__visual {
        width: min(100%, 210px);
        margin: 0 auto;
    }

    .zq-qr-result {
        padding: 18px;
    }

    .zq-qr-result__actions .zq-qr-button {
        min-width: 0;
        flex: 1 1 118px;
    }

    .zq-qr-benefits {
        grid-template-columns: 1fr;
        gap: 9px;
    }
}

@media (max-width: 430px) {
    .zq-qr-actions {
        align-items: stretch;
    }

    .zq-qr-trial-badge {
        width: 100%;
        margin: 4px 0 11px;
    }
}

/* Compact hero entry point: hands the URL to the full generator below. */
.zq-qr-hero-launcher {
    --zq-hero-bg: #8af135;
    --zq-hero-ink: #0f2923;
    --zq-hero-muted: #2a4741;
    position: relative;
    z-index: 2;
    width: min(640px, 100%);
    margin: 30px auto 0;
    padding: 30px 32px 26px;
    overflow: hidden;
    border: 1px solid rgba(138, 241, 53, .62);
    border-radius: 22px;
    background: var(--zq-hero-bg);
    color: var(--zq-hero-ink);
    box-shadow: 0 20px 42px rgba(0, 0, 0, .32);
    font-family: Roboto, Arial, sans-serif;
    text-align: left;
}

.zq-qr-hero-launcher *,
.zq-qr-hero-launcher *::before,
.zq-qr-hero-launcher *::after {
    box-sizing: border-box;
}

.zq-qr-hero-launcher::after {
    position: absolute;
    top: -80px;
    right: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    content: "";
    pointer-events: none;
}

.zq-qr-hero-launcher__copy {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 0 20px;
}

.zq-qr-hero-launcher__copy p,
.zq-qr-hero-launcher__copy span,
.zq-qr-hero-launcher__trust {
    margin: 0;
    color: var(--zq-hero-ink);
}

.zq-qr-hero-launcher__copy p {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
}

.zq-qr-hero-launcher__copy span {
    display: block;
    margin-top: 6px;
    color: var(--zq-hero-muted);
    font-size: 14px;
    line-height: 1.55;
}

.zq-qr-hero-launcher__progress {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    margin: 0 0 20px;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
}

.zq-qr-hero-launcher__progress li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--zq-hero-ink);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}

.zq-qr-hero-launcher__progress li.is-active {
    background: #61ce70;
}

.zq-qr-hero-launcher__progress li span {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    font-size: 11px;
}

.zq-qr-hero-launcher__control {
    position: relative;
    z-index: 1;
    display: block;
}

.zq-qr-hero-launcher__control input {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    flex: 1 1 auto;
    margin: 0;
    padding: 0 20px;
    border: 2px solid transparent !important;
    border-radius: 999px !important;
    outline: 0;
    background: #fff !important;
    color: var(--zq-hero-ink) !important;
    -webkit-text-fill-color: var(--zq-hero-ink);
    font-family: inherit;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.zq-qr-hero-launcher__control input::placeholder {
    color: #52665f;
    opacity: 1;
}

.zq-qr-hero-launcher__control input:focus {
    border-color: var(--zq-hero-ink) !important;
    box-shadow: 0 0 0 4px rgba(15, 41, 35, .16);
}

.zq-qr-hero-launcher__control input[aria-invalid="true"] {
    border-color: #8b231c !important;
}

.zq-qr-hero-launcher__actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
}

.zq-qr-hero-launcher__actions button {
    display: inline-flex;
    min-height: 58px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--zq-hero-ink);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 7px 16px rgba(0, 0, 0, .22);
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.zq-qr-hero-launcher__actions button:hover,
.zq-qr-hero-launcher__actions button:focus-visible {
    background: #fff;
    color: var(--zq-hero-ink);
    transform: translateY(-1px);
}

.zq-qr-hero-launcher__actions button span {
    transition: transform .18s ease;
}

.zq-qr-hero-launcher__actions button:hover span {
    transform: translateX(3px);
}

.zq-qr-hero-launcher__trust {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: var(--zq-hero-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.zq-qr-hero-launcher__trust span {
    display: inline-grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 50%;
    background: rgba(15, 41, 35, .12);
    color: var(--zq-hero-ink);
    font-size: 10px;
}

.zq-qr-hero-launcher__error {
    position: relative;
    z-index: 1;
    margin: 8px 4px 0;
    color: #721c17;
    font-size: 12px;
    font-weight: 700;
}

.zq-qr-generator {
    scroll-margin-top: 110px;
}

@media (max-width: 767px) {
    .zq-qr-hero-launcher {
        width: min(100% - 4px, 640px);
        margin-top: 22px;
        padding: 22px 18px 20px;
        border-radius: 18px;
    }

    .zq-qr-hero-launcher__copy {
        margin-bottom: 16px;
    }

    .zq-qr-hero-launcher__copy p {
        font-size: 23px;
    }

    .zq-qr-hero-launcher__progress {
        gap: 6px;
        margin-bottom: 16px;
    }

    .zq-qr-hero-launcher__progress li {
        padding: 5px 8px;
        font-size: 13px;
    }

    .zq-qr-hero-launcher__control input,
    .zq-qr-hero-launcher__actions button {
        width: 100%;
        min-height: 52px;
    }

    .zq-qr-hero-launcher__control input {
        padding: 0 16px;
        font-size: 16px;
    }

    .zq-qr-hero-launcher__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .zq-qr-hero-launcher__trust {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zq-qr-hero-launcher * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* Hero URL bar: visual parity with the homepage hero launcher. */
.zq-qr-hero-launcher {
    width: min(930px, calc(100% - 32px));
    max-width: 930px;
    margin: 30px auto 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.zq-qr-hero-launcher::after {
    display: none;
}

.zq-qr-hero-launcher__form {
    width: 100%;
    margin: 0;
}

.zq-qr-hero-launcher__control {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 4px;
}

.zq-qr-hero-launcher__icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 28px;
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: rgba(255, 255, 255, .68);
    pointer-events: none;
    transform: translateY(-50%);
}

.zq-qr-hero-launcher__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.zq-qr-hero-launcher__control input {
    width: auto !important;
    min-width: 0;
    min-height: 60px;
    flex: 1 1 0;
    padding: 0 24px 0 58px !important;
    border: 2px solid #8af135 !important;
    border-radius: 999px !important;
    background: rgba(8, 37, 31, .72) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    box-shadow: inset 0 0 0 2px rgba(138, 241, 53, .12), 0 0 0 1px rgba(0, 0, 0, .25);
    font-size: 16px;
}

.zq-qr-hero-launcher__control input::placeholder {
    color: rgba(255, 255, 255, .64);
    -webkit-text-fill-color: rgba(255, 255, 255, .64);
}

.zq-qr-hero-launcher__control input:focus {
    border-color: #a3ff59 !important;
    box-shadow: 0 0 0 4px rgba(138, 241, 53, .18), inset 0 0 0 1px rgba(138, 241, 53, .2);
}

.zq-qr-hero-launcher__control button {
    display: inline-flex;
    min-width: 260px;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #8af135;
    color: #0f2923;
    cursor: pointer;
    font-family: Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(39, 145, 2, .7);
    transition: transform .16s, box-shadow .16s, background-color .16s, color .16s;
}

.zq-qr-hero-launcher__control button:hover,
.zq-qr-hero-launcher__control button:focus-visible {
    background: #fff;
    color: #0f2923 !important;
    box-shadow: 0 4px 10px rgba(39, 145, 2, .7);
    transform: none;
}

.zq-qr-hero-launcher__button-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.zq-qr-hero-launcher__button-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.zq-qr-hero-launcher__button-arrow {
    font-size: 20px;
    transition: transform .18s ease;
}

.zq-qr-hero-launcher__control button:hover .zq-qr-hero-launcher__button-arrow {
    transform: none;
}

.zq-qr-hero-launcher__example {
    margin: 3px 0 14px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
}

.zq-qr-hero-launcher__trust {
    display: block;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.zq-qr-hero-launcher__error {
    margin: 7px 0 4px;
    padding: 7px 12px;
    border-radius: 9px;
    background: rgba(114, 28, 23, .9);
    color: #fff;
    text-align: center;
}

@media (max-width: 767px) {
    .zq-qr-hero-launcher {
        width: min(100% - 28px, 640px);
        margin-top: 24px;
        padding: 0;
        border-radius: 0;
    }

    .zq-qr-hero-launcher__control {
        flex-direction: column;
        gap: 10px;
    }

    .zq-qr-hero-launcher__icon {
        top: 28px;
        left: 20px;
    }

    .zq-qr-hero-launcher__control input,
    .zq-qr-hero-launcher__control button {
        width: 100% !important;
        min-width: 0;
        height: 56px !important;
        min-height: 56px !important;
        max-height: 56px;
    }

    .zq-qr-hero-launcher__control input {
        padding: 0 18px 0 52px !important;
        font-size: 15px;
    }

    .zq-qr-hero-launcher__control button {
        font-size: 17px;
    }

    .zq-qr-hero-launcher__example {
        margin-top: 7px;
        font-size: 12px;
    }

    .zq-qr-hero-launcher__trust {
        font-size: 15px;
    }
}

/* QR-first flow: preserve the homepage PLG style while making the QR the product. */
.zq-qr-result {
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.zq-qr-result__visual-shell {
    min-width: 0;
}

/* Step 2 is deliberately QR-first: preview, then one retractable smart layer. */
.zq-qr-result.is-step-2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}

.zq-qr-result.is-step-2 .zq-qr-result__visual-shell {
    width: min(100%, 260px);
    margin: 0 auto;
}

.zq-qr-result.is-step-2 .zq-qr-result__content {
    width: min(100%, 720px);
    margin: 0 auto;
}

.zq-qr-result.is-step-2 [data-zq-result-step="2"] > .zq-qr-panel__count {
    margin-bottom: 8px;
    text-align: center;
}

.zq-qr-free-address-proof {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 7px 0 0;
    color: rgba(15, 41, 35, .78);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.zq-qr-free-address-proof > span {
    display: inline-grid;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    place-items: center;
    border-radius: 50%;
    background: var(--zq-qr-brand-accent);
    color: var(--zq-qr-brand-ink);
}

.zq-qr-address-editor {
    margin-top: 10px;
    padding: 14px;
    border: 1px solid rgba(138, 241, 53, .34);
    border-radius: 14px;
    background: rgba(138, 241, 53, .07);
}

.zq-qr-address-editor .zq-qr-field {
    margin: 0;
}

.zq-qr-address-editor .zq-qr-field > span:first-child {
    margin-bottom: 4px;
    color: var(--zq-qr-brand-white);
    font-size: 11px;
    font-weight: 700;
}

.zq-qr-address-editor .zq-qr-field em {
    padding: 1px 6px;
    border: 1px solid rgba(138, 241, 53, .28);
    border-radius: 999px;
    background: rgba(138, 241, 53, .1);
    color: var(--zq-qr-brand-bg);
    font-size: 9px;
    font-style: normal;
}

.zq-qr-result .zq-qr-address-editor .zq-qr-subdomain-control input,
.zq-qr-result .zq-qr-address-editor .zq-qr-subdomain-control input:hover,
.zq-qr-result .zq-qr-address-editor .zq-qr-subdomain-control input:focus {
    min-width: 0;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    flex: 1 1 auto;
    margin: 0 !important;
    padding: 0 8px 0 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0;
    background: transparent !important;
    color: var(--zq-qr-brand-ink) !important;
    -webkit-text-fill-color: var(--zq-qr-brand-ink) !important;
    font: 500 13.5px/40px Roboto, Arial, sans-serif !important;
    box-shadow: none !important;
}

.zq-qr-address-editor__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.zq-qr-address-save {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 13px;
    border: 0;
    border-radius: 999px;
    background: var(--zq-qr-brand-bg);
    color: var(--zq-qr-brand-ink);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.zq-qr-address-save:hover,
.zq-qr-address-save:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(138, 241, 53, .22);
    filter: brightness(1.04);
    outline: none;
}

.zq-qr-address-save:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}

.zq-qr-address-editor [data-zq-address-error] {
    margin-top: 9px;
    padding: 8px 10px;
    font-size: 10px;
}

.zq-qr-address-editor .zq-qr-result__address {
    margin-top: 12px;
}

.zq-qr-result__visual {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--zq-qr-brand-bg);
    border-radius: 16px;
}

.zq-qr-result__visual-shell > .zq-qr-live-badge {
    position: static;
    width: 100%;
    min-height: 29px;
    margin-top: 8px;
    border: 1px solid rgba(138, 241, 53, .38);
    background: rgba(138, 241, 53, .1);
    color: var(--zq-qr-brand-bg);
    box-shadow: none;
}

.zq-qr-result__qr-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 9px;
}

.zq-qr-result__qr-actions button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 7px 9px;
    border: 1px solid rgba(138, 241, 53, .48);
    border-radius: 999px;
    background: rgba(138, 241, 53, .1);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color .18s ease, color .18s ease;
}

.zq-qr-result__qr-actions button:hover,
.zq-qr-result__qr-actions button:focus-visible {
    background: var(--zq-qr-brand-bg);
    color: var(--zq-qr-brand-ink);
}

.zq-qr-result__qr-actions button:disabled {
    cursor: wait;
    opacity: .65;
}

.zq-qr-result__qr-status {
    display: block;
    min-height: 15px;
    margin-top: 6px;
    color: var(--zq-qr-brand-bg);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.zq-qr-result__qr-status.is-error {
    color: #ffaaa4;
}

.zq-qr-smart-fields {
    display: grid;
    gap: 9px;
    margin-top: 15px;
}

.zq-qr-result.is-step-2 .zq-qr-domain-option {
    margin-top: 17px;
}

.zq-qr-result.is-step-2 .zq-qr-domain-option summary {
    min-height: 38px;
    padding: 7px 13px;
}

.zq-qr-result.is-step-2 .zq-qr-domain-option summary strong {
    font-size: 12px;
}

.zq-qr-result.is-step-2 .zq-qr-domain-option__body {
    margin-top: 14px;
    padding: 0;
    border: 0;
}

.zq-qr-result.is-step-2 .zq-qr-smart-subcopy {
    margin: 0 !important;
}

.zq-qr-smart-fields .zq-qr-field {
    margin: 0;
}

.zq-qr-smart-fields .zq-qr-field > span:first-child {
    margin-bottom: 4px;
    color: #fff;
    font-size: 11px;
}

.zq-qr-smart-fields .zq-qr-field em {
    padding: 1px 6px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .74);
    font-size: 9px;
}

.zq-qr-smart-subcopy {
    margin-top: 4px !important;
    color: rgba(255, 255, 255, .68) !important;
    font-size: 11px !important;
    font-weight: 500;
}

.zq-qr-smart-input {
    display: flex !important;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    align-items: stretch;
    gap: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(138, 241, 53, .44);
    border-radius: 999px;
    background: #75d233;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.zq-qr-smart-input:focus-within {
    border-color: var(--zq-qr-brand-bg);
    box-shadow: 0 0 0 3px rgba(138, 241, 53, .16);
}

.zq-qr-smart-input__icon {
    display: grid;
    width: 44px;
    min-width: 44px;
    height: 40px;
    min-height: 40px;
    place-items: center;
    border-radius: 999px 0 0 999px;
    background: var(--zq-qr-brand-ink);
    color: #fff;
}

.zq-qr-smart-input__icon svg {
    display: block;
    width: 21px;
    height: 21px;
}

.zq-qr-result .zq-qr-smart-fields .zq-qr-smart-input input {
    min-width: 0;
    height: 40px !important;
    min-height: 40px;
    max-height: 40px;
    flex: 1 1 auto;
    margin: 0;
    padding: 0 13px;
    border: 0;
    border-radius: 0 999px 999px 0;
    outline: 0;
    background: transparent;
    color: var(--zq-qr-brand-ink);
    -webkit-text-fill-color: var(--zq-qr-brand-ink);
    font-size: 13.5px;
    box-shadow: none;
}

.zq-qr-result .zq-qr-smart-fields .zq-qr-smart-input input::placeholder {
    color: rgba(15, 41, 35, .72);
    -webkit-text-fill-color: rgba(15, 41, 35, .72);
    opacity: 1;
}

.zq-qr-result .zq-qr-smart-fields .zq-qr-smart-input input:hover,
.zq-qr-result .zq-qr-smart-fields .zq-qr-smart-input input:focus {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.zq-qr-smart-input:has(input[aria-invalid="true"]) {
    border-color: #ff8a80;
    box-shadow: 0 0 0 3px rgba(255, 82, 82, .14);
}

.zq-qr-smart-fields .zq-qr-field em {
    border: 1px solid rgba(138, 241, 53, .28);
    background: rgba(138, 241, 53, .1);
    color: var(--zq-qr-brand-bg);
}

.zq-qr-smart-fields .zq-qr-field small {
    margin: 4px 4px 0;
    color: rgba(138, 241, 53, .76);
    font-size: 9px;
    line-height: 1.35;
}

.zq-qr-smart-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 12px 0 0 !important;
    color: rgba(255, 255, 255, .8) !important;
    font-size: 10px !important;
    font-weight: 700;
    line-height: 1.4 !important;
}

.zq-qr-smart-note > span {
    display: inline-grid;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    place-items: center;
    border-radius: 50%;
    background: var(--zq-qr-brand-accent);
    color: var(--zq-qr-brand-ink);
}

.zq-qr-result__address {
    margin-top: 16px;
    padding-top: 11px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.zq-qr-result__address > span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .56);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.zq-qr-result__address .zq-qr-result__link {
    margin: 0;
    color: rgba(255, 255, 255, .72) !important;
    font-size: 10px;
    font-weight: 500;
}

.zq-qr-paid-teaser {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 11px 12px;
    border: 1px solid rgba(138, 241, 53, .34);
    border-radius: 12px;
    background: rgba(138, 241, 53, .08);
}

.zq-qr-paid-teaser > span {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--zq-qr-brand-bg);
    color: var(--zq-qr-brand-ink);
}

.zq-qr-paid-teaser strong,
.zq-qr-paid-teaser small {
    display: block;
}

.zq-qr-paid-teaser strong {
    color: #fff;
    font-size: 12px;
}

.zq-qr-paid-teaser small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    line-height: 1.4;
}

.zq-qr-result [data-zq-routing-error] {
    margin-top: 10px;
    padding: 9px 10px;
    font-size: 11px;
}

.zq-qr-result-navigation {
    width: 100%;
    padding: 0 22px;
}

.zq-qr-result-navigation[hidden] {
    display: none !important;
}

.zq-qr-result-navigation__row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.zq-qr-result-navigation .zq-qr-result__actions {
    justify-content: flex-end;
    margin: 0 0 0 auto;
}

.zq-qr-result-navigation__row > .zq-qr-button,
.zq-qr-result-navigation .zq-qr-result__actions .zq-qr-button {
    min-height: 48px;
    padding: 9px 18px;
    font-size: 16px;
}

.zq-qr-generator .zq-qr-button--back {
    border: 1px solid rgba(15, 41, 35, .2);
    background: rgba(15, 41, 35, .1);
    color: var(--zq-qr-brand-ink) !important;
}

.zq-qr-generator .zq-qr-button--back:hover:not(:disabled) {
    border-color: var(--zq-qr-brand-ink);
    background: var(--zq-qr-brand-ink);
    color: var(--zq-qr-brand-white) !important;
}

.zq-qr-result-navigation [data-zq-routing-error] {
    margin-top: 10px;
    padding: 9px 10px;
    font-size: 11px;
}

@media (max-width: 767px) {
    .zq-qr-progress {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4px;
    }

    .zq-qr-progress li {
        justify-content: center;
        gap: 4px;
        padding: 5px 4px;
        font-size: 11px;
        line-height: 1.25;
    }

    .zq-qr-progress strong {
        white-space: normal;
    }

    .zq-qr-result {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .zq-qr-result__visual-shell {
        width: min(100%, 248px);
        margin: 0 auto;
    }

    .zq-qr-result__visual {
        width: 100%;
    }

    .zq-qr-result__content {
        text-align: left;
    }

    .zq-qr-result-navigation {
        padding: 0;
    }

    .zq-qr-result-navigation__row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .zq-qr-result-navigation__row > .zq-qr-button {
        width: fit-content;
    }

    .zq-qr-result-navigation .zq-qr-result__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        margin: 0;
    }

    .zq-qr-result-navigation .zq-qr-result__actions .zq-qr-button {
        width: 100%;
        min-width: 0;
        padding-inline: 12px;
        font-size: 14px;
    }
}

html.zq-qr-modal-open {
    overflow: hidden;
}

.zq-qr-auth-modal[hidden],
.zq-qr-auth-modal [hidden] {
    display: none !important;
}

.zq-qr-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #f7fff9;
    font-family: inherit;
}

.zq-qr-auth-modal,
.zq-qr-auth-modal * {
    box-sizing: border-box;
}

.zq-qr-auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 16, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.zq-qr-auth-modal__dialog {
    position: relative;
    width: min(100%, 560px);
    max-height: min(90vh, 760px);
    max-height: min(90dvh, 760px);
    overflow: auto;
    padding: 28px;
    border: 1px solid rgba(138, 241, 53, 0.65);
    border-radius: 24px;
    background: #092a23;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 36px rgba(138, 241, 53, 0.14);
}

.zq-qr-auth-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(138, 241, 53, 0.4);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.zq-qr-auth-modal__close:hover,
.zq-qr-auth-modal__close:focus-visible {
    border-color: #8af135;
    background: rgba(138, 241, 53, 0.12);
    outline: none;
}

.zq-qr-auth-modal__heading {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin: 0 44px 24px 0;
}

.zq-qr-auth-modal__heading img {
    width: 82px;
    height: 82px;
    padding: 5px;
    border: 2px solid #8af135;
    border-radius: 15px;
    background: #fff;
    object-fit: contain;
}

.zq-qr-auth-modal__heading p {
    margin: 0 0 4px;
    color: #8af135;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
}

.zq-qr-auth-modal__heading h2 {
    margin: 0 0 5px;
    color: #fff;
    font-size: clamp(25px, 4vw, 33px);
    line-height: 1.08;
}

.zq-qr-auth-modal__heading span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.45;
}

.zq-qr-auth-form {
    display: grid;
    gap: 15px;
}

.zq-qr-auth-form > label,
.zq-qr-auth-form__passwords label {
    display: grid;
    gap: 6px;
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.zq-qr-auth-form input[type="text"],
.zq-qr-auth-form input[type="email"],
.zq-qr-auth-form input[type="password"] {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 16px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: #f7f9f8;
    color: #092a23;
    font: inherit;
    box-sizing: border-box;
}

.zq-qr-auth-form input:focus {
    border-color: #8af135;
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 241, 53, 0.2);
}

.zq-qr-auth-form__passwords {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.zq-qr-auth-form .zq-qr-auth-form__terms {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.zq-qr-auth-form__terms input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: #8af135;
}

.zq-qr-auth-form__terms a,
.zq-qr-auth-modal__signin a {
    color: #8af135;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.zq-qr-auth-form__error {
    padding: 10px 12px;
    border: 1px solid rgba(255, 141, 141, 0.5);
    border-radius: 12px;
    background: rgba(116, 20, 20, 0.32);
    color: #ffd7d7;
    font-size: 13px;
    line-height: 1.4;
}

.zq-qr-auth-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    padding: 13px 20px;
    border: 0;
    border-radius: 999px;
    background: #8af135;
    color: #071f19;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.zq-qr-auth-form__submit:hover,
.zq-qr-auth-form__submit:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(138, 241, 53, 0.3);
    filter: brightness(1.04);
    outline: none;
}

.zq-qr-auth-form__submit:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.zq-qr-auth-form__trust,
.zq-qr-auth-modal__signin {
    margin: 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.45;
}

.zq-qr-auth-form__trust {
    color: rgba(255, 255, 255, 0.62);
}

.zq-qr-auth-modal__signin {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.76);
}

.zq-qr-auth-modal__success {
    padding: 34px 12px 18px;
    text-align: center;
}

.zq-qr-auth-modal__success > span {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #8af135;
    color: #092a23;
    font-size: 34px;
    font-weight: 900;
}

.zq-qr-auth-modal__success h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 30px;
}

.zq-qr-auth-modal__success p {
    max-width: 420px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.zq-qr-auth-modal__success a,
.zq-qr-auth-modal__success button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
}

.zq-qr-auth-modal__success a {
    background: #8af135;
    color: #092a23;
    text-decoration: none;
}

.zq-qr-auth-modal__success button {
    margin-top: 10px;
    border: 1px solid rgba(138, 241, 53, 0.45);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 520px) {
    .zq-qr-auth-modal {
        align-items: end;
        padding: 10px;
    }

    .zq-qr-auth-modal__dialog {
        width: 100%;
        max-height: calc(100dvh - 20px);
        padding: 22px 18px;
        border-radius: 22px;
    }

    .zq-qr-auth-modal__heading {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 13px;
        margin-right: 34px;
    }

    .zq-qr-auth-modal__heading img {
        width: 62px;
        height: 62px;
        border-radius: 12px;
    }

    .zq-qr-auth-modal__heading h2 {
        font-size: 23px;
    }

    .zq-qr-auth-form__passwords {
        grid-template-columns: 1fr;
    }
}

/* QR activation reuses the shared Elementor success-modal component. */
.zq-qr-success-modal[hidden] {
    display: none !important;
}

.zq-qr-success-modal {
    --zq-primary-custom: #8af135;
    --zq-primary2-custom: #00ff99;
    z-index: 1000000;
}

.zq-qr-success-modal,
.zq-qr-success-modal * {
    box-sizing: border-box;
}

.zq-qr-success-modal .zq-modal-box {
    max-width: 420px;
}

.zq-qr-success-modal .zq-modal-close span {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.zq-qr-success-preview {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.zq-qr-success-preview > img {
    display: block;
    width: 104px;
    height: 104px;
    padding: 5px;
    border: 2px solid var(--zq-primary-custom, #8af135);
    border-radius: 14px;
    background: #fff;
    object-fit: contain;
}

.zq-qr-success-modal .zq-smartlink-preview {
    min-width: 0;
    margin: 0;
}

.zq-qr-success-modal [data-zq-success-link] {
    min-width: 0;
    color: var(--zq-primary-custom, #8af135);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.zq-qr-success-modal .zq-status-row {
    font-size: 11px;
}

.zq-qr-success-modal .zq-success-micro {
    display: inline-block;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--zq-primary-2, #00ff99);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.zq-qr-success-modal .zq-btn-dashboard--secondary:first-child {
    margin-top: 0;
}

.zq-qr-success-trust {
    display: block;
    margin-top: 10px;
    color: #86a79d;
    font-size: 12px;
    line-height: 1.4;
}

.zq-qr-success-status {
    display: block;
    min-height: 14px;
    margin-top: 5px;
    color: var(--zq-primary, #16f273);
    font-size: 10px;
}

.zq-qr-success-status.is-error {
    color: #ff9b9b;
}

.zq-qr-success-retention {
    display: grid;
    gap: 3px;
    margin: 12px 0;
    padding: 10px 12px;
    border: 1px solid rgba(126, 242, 43, 0.28);
    border-radius: 12px;
    background: rgba(126, 242, 43, 0.07);
}

.zq-qr-success-retention strong {
    color: var(--zq-primary, #8af135);
    font-size: 12px;
}

.zq-qr-success-retention span {
    color: #b8d3c8;
    font-size: 11px;
    line-height: 1.4;
}

.zq-qr-success-auth-actions {
    gap: 0;
}

.zq-qr-success-auth-actions .zq-btn-google {
    margin-bottom: 10px;
}

.zq-qr-success-auth-actions .zq-btn-dashboard + .zq-btn-dashboard {
    margin-top: 10px;
}

.zq-qr-success-modal .zq-qr-form-error {
    margin-top: 10px;
}

@media (max-width: 520px) {
    .zq-qr-success-modal {
        padding: 10px;
    }

    .zq-qr-success-modal .zq-modal-box {
        width: 100%;
        max-height: calc(100dvh - 20px);
        padding: 26px 20px;
    }

    .zq-qr-success-preview {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 10px;
    }

    .zq-qr-success-preview > img {
        width: 82px;
        height: 82px;
        border-radius: 12px;
    }
}
