.nl-form-landing {
    --lp-blue: #4A6CF7;
    --lp-blue-text: #3538CD; /* AA-safe text variant of --lp-blue on light backgrounds */
    --lp-blue-light: #EEF2FF;
    --lp-blue-mid: rgba(74, 108, 247, .28);
    --lp-teal: #1F5F73;
    --lp-dark: #0F1729;
    --lp-mid: #334155;
    --lp-soft: #64748B;
    --lp-border: rgba(31, 95, 115, .10);
    --lp-radius: 1.25rem;
}

.nl-form-landing section {
    padding: 4rem 0;
}


@media (max-width: 767.98px) {
    .nl-form-landing section {
        padding: 3rem 0;
    }
}

.nl-form-splash {
    position: relative;
    overflow: hidden;

    padding: 5rem 0 !important;

    background: #f8faff;
}

.nl-form-splash__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;

    overflow: hidden;

    pointer-events: none;
}

.nl-form-splash__dots {
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            circle,
            #94a3b8 1px,
            transparent 1px
        );

    background-size: 32px 32px;

    opacity: .16;
}

.nl-form-splash__blob {
    position: absolute;

    border-radius: 50%;

    filter: blur(72px);

    opacity: .52;
}

.nl-form-splash__blob--1 {
    top: -170px;
    right: -110px;

    width: 520px;
    height: 520px;

    background:
        radial-gradient(
            circle,
            #bfdbfe 0%,
            transparent 70%
        );
}

.nl-form-splash__blob--2 {
    bottom: -170px;
    left: -90px;

    width: 420px;
    height: 420px;

    background:
        radial-gradient(
            circle,
            #fde68a 0%,
            transparent 70%
        );
}

.nl-form-splash__blob--3 {
    top: 28%;
    left: 43%;

    width: 280px;
    height: 280px;

    background:
        radial-gradient(
            circle,
            #c7d2fe 0%,
            transparent 70%
        );

    opacity: .32;
}

.nl-form-splash__inner {
    position: relative;
    z-index: 1;
}

.nl-form-splash__badge {
    display: inline-flex;
    align-items: center;

    gap: .5rem;

    padding: .38rem .92rem .38rem .58rem;

    border: 1px solid var(--lp-blue-mid);
    border-radius: 999px;

    background: rgba(238, 242, 255, .9);

    color: var(--lp-blue-text);

    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .025em;
}

.nl-form-splash__badge > span {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--lp-blue);
}

.nl-form-splash__heading {
    margin: 0;

    color: var(--lp-dark);

    font-size: clamp(2.25rem, 5.4vw, 3.65rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.nl-form-splash__heading span {
    position: relative;

    display: inline-block;

    color: var(--lp-blue);
}

.nl-form-splash__heading span::after {
    content: '';

    position: absolute;
    right: 3%;
    bottom: -7px;
    left: 3%;

    height: 4px;

    border-radius: 999px;

    background: #374c50;
}

.nl-form-splash__sub {
    max-width: 750px;
    margin: 0;

    color: var(--lp-soft);

    font-size: 1.05rem;
    line-height: 1.78;
}

.nl-form-splash__workflow {
    position: relative;

    width: fit-content;
    min-width: 670px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: .75rem;

    padding: .75rem;

    overflow: hidden;

    border: 1px solid rgba(74, 108, 247, .14);
    border-radius: 1.15rem;

    background: rgba(255, 255, 255, .84);

    box-shadow:
        0 15px 42px rgba(15, 23, 41, .08);

    backdrop-filter: blur(10px);
}

.nl-form-splash__workflow-line {
    position: absolute;
    top: 50%;
    right: 5rem;
    left: 5rem;

    height: 2px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(74, 108, 247, .14),
            rgba(31, 95, 115, .18),
            rgba(24, 166, 106, .14)
        );

    transform: translateY(-50%);
}

.nl-form-splash__workflow-line > span {
    position: absolute;
    top: 0;
    left: -35%;

    width: 30%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(74, 108, 247, .9),
            transparent
        );

    animation:
        nl-form-workflow-line
        3.4s
        ease-in-out
        infinite;
}

.nl-form-splash__workflow-step {
    position: relative;
    z-index: 2;

    min-width: 175px;
    min-height: 62px;

    display: flex;
    align-items: center;

    gap: .7rem;

    padding: .65rem .85rem;

    border: 1px solid rgba(74, 108, 247, .14);
    border-radius: .85rem;

    background: #ffffff;

    text-align: left;

    box-shadow:
        0 7px 22px rgba(15, 23, 41, .07);

    animation:
        nl-form-workflow-step
        3.6s
        ease-in-out
        infinite;
}

.nl-form-splash__workflow-step--drop {
    animation-delay: .35s;
}

.nl-form-splash__workflow-step--publish {
    animation-delay: .7s;
}

.nl-form-splash__workflow-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: .72rem;

    background: var(--lp-blue-light);

    color: var(--lp-blue);

    font-size: .95rem;
}

.nl-form-splash__workflow-step--drop
.nl-form-splash__workflow-icon {
    background: #eaf4f7;

    color: var(--lp-teal);
}

.nl-form-splash__workflow-step--publish
.nl-form-splash__workflow-icon {
    background: #e9f8f1;

    color: #18a66a;
}

.nl-form-splash__workflow-text {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: .15rem;
}

.nl-form-splash__workflow-text strong {
    color: var(--lp-dark);

    font-size: .79rem;
    font-weight: 750;
    line-height: 1.2;
}

.nl-form-splash__workflow-text small {
    color: var(--lp-soft);

    font-size: .63rem;
    line-height: 1.3;
}

.nl-form-splash__workflow-arrow {
    position: relative;
    z-index: 2;

    width: 24px;
    height: 24px;
    flex: 0 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(74, 108, 247, .13);
    border-radius: 50%;

    background: #ffffff;

    color: var(--lp-blue-text);

    font-size: .65rem;

    box-shadow:
        0 4px 12px rgba(15, 23, 41, .06);
}

.nl-form-splash__purchase {
    width: fit-content;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 1rem;

    padding: .7rem .75rem .7rem 1rem;
    margin-inline: auto;

    border: 1px solid rgba(74, 108, 247, .14);
    border-radius: 1rem;

    background: rgba(255, 255, 255, .86);

    box-shadow:
        0 10px 28px rgba(15, 23, 41, .06);

    backdrop-filter: blur(8px);
}

.nl-form-splash__price {
    display: flex;
    flex-direction: column;

    padding-right: 1rem;

    border-right: 1px solid var(--lp-border);
}

.nl-form-splash__price-label {
    margin-bottom: .18rem;

    color: var(--lp-soft);

    font-size: .62rem;
    font-weight: 650;
    line-height: 1;
}

.nl-form-splash__price-value {
    display: flex;
    align-items: baseline;

    gap: .18rem;

    color: var(--lp-dark);
}

.nl-form-splash__price-currency {
    color: var(--lp-blue-text);

    font-size: .85rem;
    font-weight: 800;
}

.nl-form-splash__price-value strong {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
}

.nl-form-splash__price-code {
    color: var(--lp-soft);

    font-size: .62rem;
    font-weight: 700;
}

@keyframes nl-form-workflow-line {
    0% {
        left: -35%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: 110%;
        opacity: 0;
    }
}

@keyframes nl-form-workflow-step {
    0%,
    100% {
        transform: translateY(0);

        border-color: rgba(74, 108, 247, .14);

        box-shadow:
            0 7px 22px rgba(15, 23, 41, .07);
    }

    50% {
        transform: translateY(-3px);

        border-color: rgba(74, 108, 247, .28);

        box-shadow:
            0 12px 27px rgba(15, 23, 41, .1);
    }
}

@media (max-width: 991.98px) {
    .nl-form-splash {
        padding: 4rem 0 !important;
    }

    .nl-form-splash__workflow {
        min-width: 0;
        width: 100%;

        gap: .55rem;
    }

    .nl-form-splash__workflow-step {
        min-width: 0;
        flex: 1;
    }
}

@media (max-width: 767.98px) {
    .nl-form-splash {
        padding: 3.5rem 0 !important;
    }

    .nl-form-splash__heading br {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .nl-form-splash__heading {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }

    .nl-form-splash__sub {
        font-size: .96rem;
    }

    .nl-form-splash__workflow {
        width: 100%;
        min-width: 0;

        flex-direction: column;

        gap: .65rem;

        padding: .8rem;

        border-radius: 1rem;
    }

    .nl-form-splash__workflow-line {
        top: 3rem;
        bottom: 3rem;
        left: 50%;

        width: 2px;
        height: auto;

        transform: translateX(-50%);
    }

    .nl-form-splash__workflow-line > span {
        top: -35%;
        left: 0;

        width: 100%;
        height: 30%;

        background:
            linear-gradient(
                180deg,
                transparent,
                rgba(74, 108, 247, .9),
                transparent
            );

        animation:
            nl-form-workflow-line-mobile
            3.4s
            ease-in-out
            infinite;
    }

    .nl-form-splash__workflow-step {
        width: 100%;
        min-width: 0;

        justify-content: flex-start;
    }

    .nl-form-splash__workflow-arrow {
        transform: rotate(90deg);
    }

    .nl-form-splash__purchase {
        width: 100%;

        align-items: stretch;
        flex-direction: column;

        padding: 1rem;
    }

    .nl-form-splash__price {
        align-items: center;

        padding-right: 0;
        padding-bottom: .8rem;

        border-right: 0;
        border-bottom: 1px solid var(--lp-border);

        text-align: center;
    }

    .nl-form-splash__purchase .nl-btn {
        width: 100%;

        justify-content: center;
    }
}

@keyframes nl-form-workflow-line-mobile {
    0% {
        top: -35%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

[dir="rtl"] .nl-form-splash__workflow-step {
    text-align: right;
}

[dir="rtl"] .nl-form-splash__workflow-arrow {
    transform: rotate(180deg);
}

[dir="rtl"] .nl-form-splash__price {
    padding-right: 0;
    padding-left: 1rem;

    border-right: 0;
    border-left: 1px solid var(--lp-border);
}

@media (max-width: 575.98px) {
    [dir="rtl"] .nl-form-splash__workflow-arrow {
        transform: rotate(90deg);
    }

    [dir="rtl"] .nl-form-splash__price {
        padding-left: 0;

        border-left: 0;
        border-bottom: 1px solid var(--lp-border);
    }
}


@media (prefers-reduced-motion: reduce) {
    .nl-form-splash__workflow-line > span,
    .nl-form-splash__workflow-step {
        animation: none;
    }
}

.nl-lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .3rem .85rem;
    background: var(--lp-blue-light);
    border: 1px solid var(--lp-blue-mid);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--lp-blue-text);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.nl-lp-heading {
    font-size: clamp(1.6rem, 3.4vw, 2.35rem);
    font-weight: 800;
    color: var(--lp-dark);
    letter-spacing: -.022em;
    line-height: 1.2;
    margin-bottom: .85rem;
}

.nl-lp-heading span {
    color: var(--lp-blue);
}

.nl-lp-sub {
    font-size: 1rem;
    color: var(--lp-soft);
    line-height: 1.75;
    max-width: 560px;
}

.nl-lp-sub--center {
    margin-inline: auto;
}

.nl-lp-alt {
    background: #f8faff;
}

.nl-lp-card {
    background: #ffffff;
    border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-radius);
    box-shadow: 0 3px 18px rgba(15, 23, 41, .06);
    overflow: hidden;
}

.nl-lp-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .6rem;
    padding: .95rem 1.15rem;
    border-bottom: 1px solid var(--lp-border);
    background: #f8faff;
}

.nl-lp-card__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin: 0;
}

.nl-lp-card__title i {
    color: var(--lp-teal);
}

.nl-lp-card__body {
    padding: 1.1rem;
}

.nl-lp-checklist {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 1.5rem 0 0;
}

.nl-lp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .92rem;
    color: var(--lp-mid);
    line-height: 1.55;
}

.nl-lp-checklist li::before{
    content: none;
}

.nl-lp-checklist li i {
    flex-shrink: 0;
    margin-top: .18rem;
    color: var(--lp-blue-text);
    font-size: .95rem;
}

.nl-lp-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .65rem;
}

.nl-lp-type {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .7rem .85rem;
    background: #ffffff;
    border: 1.5px solid var(--lp-border);
    border-radius: .8rem;
    transition: border-color .18s, transform .18s, box-shadow .18s;
}


.nl-lp-type i {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .55rem;
    background: var(--lp-blue-light);
    color: var(--lp-blue-text);
    font-size: .85rem;
}

.nl-lp-type span {
    font-size: .82rem;
    font-weight: 600;
    color: var(--lp-mid);
}

.nl-lp-form-wrap {
    background: #ffffff;
    padding: .75rem 1.1rem 1.25rem;
}

.nl-lp-form-wrap .nl-tabs-list {
    overflow-x: auto;
}

.nl-lp-form {
    background: #ffffff;
    padding: 1.1rem 1.25rem 1.25rem;
}

.nl-lp-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .18rem .6rem;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 700;
    background: var(--lp-blue-light);
    color: var(--lp-blue-text);
}

.nl-lp-translation-panel {
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: .35rem;
    box-shadow: 0 2px 10px rgba(15, 23, 41, .05);
    padding: 1rem;
    width: 100%;
}

.nl-lp-translation-toolbar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.nl-lp-translation-actions {
    display: inline-flex;
}

.nl-lp-translation-btn {
    align-items: center;
    background: #ffffff;
    border: 1px solid #7d8997;
    color: #4a5568;
    cursor: default;
    display: inline-flex;
    font-size: .78rem;
    gap: .35rem;
    justify-content: center;
    line-height: 1;
    min-height: 2rem;
    padding: .48rem .7rem;
    white-space: nowrap;
}

.nl-lp-translation-actions .nl-lp-translation-btn:first-child {
    border-radius: .35rem 0 0 .35rem;
}

.nl-lp-translation-actions .nl-lp-translation-btn:last-child {
    border-left: 0;
    border-radius: 0 .35rem .35rem 0;
}

.nl-lp-translation-btn--language {
    background: #1f5f73;
    border-color: #1f5f73;
    border-radius: .35rem;
    color: #ffffff;
    font-weight: 600;
}

.nl-lp-translation-btn i {
    font-size: .82rem;
}

.nl-lp-translation-main-language {
    color: #111827;
    font-size: 1rem;
    font-weight: 400;
    margin: 1rem 0 1.15rem;
}

.nl-lp-translation-title {
    color: #111827;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 .55rem;
}

.nl-lp-translation-scroll {
    border: 1px solid #dddddd;
    border-radius: .2rem;
    overflow-x: auto;
    scrollbar-color: #b9b9b9 #eeeeee;
    scrollbar-width: thin;
    width: 100%;
}

.nl-lp-translation-scroll::-webkit-scrollbar {
    height: 9px;
}

.nl-lp-translation-scroll::-webkit-scrollbar-track {
    background: #eeeeee;
}

.nl-lp-translation-scroll::-webkit-scrollbar-thumb {
    background: #b9b9b9;
    border-radius: 20px;
}

.nl-lp-translation-table {
    border-collapse: separate;
    border-spacing: 0;
    color: #111827;
    font-size: .78rem;
    min-width: 920px;
    table-layout: fixed;
    width: 100%;
}

.nl-lp-translation-col-label {
    width: 34%;
}

.nl-lp-translation-col-language {
    width: 33%;
}

.nl-lp-translation-table th,
.nl-lp-translation-table td {
    border-bottom: 1px solid #e3e3e3;
    border-right: 1px solid #e8e8e8;
    padding: .65rem .7rem;
    text-align: left;
    vertical-align: middle;
}

.nl-lp-translation-table tr > *:last-child {
    border-right: 0;
}

.nl-lp-translation-table tbody tr:last-child > * {
    border-bottom: 0;
}

.nl-lp-translation-table thead th {
    background: #f2f1f0;
    color: #1f3554;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.nl-lp-translation-table tbody th {
    background: #ffffff;
    color: #111111;
    font-weight: 700;
}

.nl-lp-translation-input {
    align-items: center;
    background: #ffffff;
    border: 1px solid #9ca7b4;
    border-radius: .3rem;
    box-sizing: border-box;
    color: #4b5563;
    display: flex;
    min-height: 2.25rem;
    overflow: hidden;
    padding: .45rem .65rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.nl-lp-translation-ar-heading {
    direction: rtl;
    text-align: right !important;
}

@media (max-width: 575.98px) {
    .nl-lp-translation-panel {
        padding: .75rem;
    }

    .nl-lp-translation-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .nl-lp-translation-actions,
    .nl-lp-translation-btn--language {
        width: 100%;
    }

    .nl-lp-translation-actions .nl-lp-translation-btn {
        flex: 1;
    }
}

.nl-form-feature-card {
    position: relative;
    height: 100%;
    padding: 1.35rem;
    overflow: hidden;
    border: 1.5px solid var(--lp-border);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(15, 23, 41, 0.07);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.nl-form-feature-card__icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    border: 1px solid var(--lp-blue-mid);
    border-radius: 0.8rem;
    background: var(--lp-blue-light);
    color: var(--lp-blue-text);
    font-size: 1rem;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.nl-form-feature-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 0.45rem;
    color: var(--lp-dark);
    font-size: 0.97rem;
    font-weight: 750;
    line-height: 1.35;
}

.nl-form-feature-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--lp-soft);
    font-size: 0.84rem;
    line-height: 1.65;
}

.nl-form-feature-card::after {
    content: '';
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 95, 115, .09), transparent 70%);
}

@media (max-width: 575.98px) {
    .nl-form-feature-card {
        padding: 1.15rem;
    }

    .nl-form-feature-card__icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0.75rem;
    }

    .nl-form-feature-card h3 {
        font-size: 0.94rem;
    }
}


.nl-lp-uses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
}

.nl-lp-use {
    min-width: 0;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    padding: 1rem;
    border: 1px solid rgba(31, 95, 115, .14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 28px rgba(15, 23, 41, .07);
    text-align: center;
    backdrop-filter: blur(8px);
}

.nl-lp-use i {
    width: 46px;
    height: 46px;
    margin: 0 auto .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .85rem;
    background: var(--lp-blue-light);
    color: var(--lp-blue-text);
    font-size: 1.1rem;
}

.nl-lp-use span {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--lp-mid);
}

.path-mod-niceform {
    --nl-radius: 10px;
    --nl-accent: #4A6CF7;
    --nl-accent-text: #3538CD; /* AA-safe text variant of --nl-accent on light backgrounds */
    --nl-accent-light: #eef1fd;
    --nl-accent-mid: #c7d0f8;
    --nl-success: #22c55e;
    --nl-danger: #f43f5e;
    --nl-border: #e2e6f0;
    --nl-bg: #f4f6fb;
    --nl-bg-white: #ffffff;
    --nl-text: #1e2535;
    --nl-muted: #8b93a7;
    --nl-muted-text: #4B5563; /* AA-safe text variant of --nl-muted */
    --nl-shadow-sm: 0 1px 4px rgba(30, 37, 53, .08);
    --nl-shadow-md: 0 3px 10px rgba(74, 108, 247, .14);
    --nl-tr: .14s ease;
    color: var(--nl-text);
}

.path-mod-niceform .nl-tabs {
    margin: 0 0 1rem;
}

.path-mod-niceform .nl-tabs-list {
    align-items: center;
    border-bottom: 1px solid var(--nl-border);
    display: flex;
    gap: .25rem;
    overflow-x: auto;
}

.path-mod-niceform .nl-tabs-link {
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    color: var(--nl-text);
    cursor: default;
    display: inline-flex;
    font-size: .85rem;
    font-weight: 600;
    margin: 0;
    padding: .65rem .9rem;
    text-decoration: none;
    white-space: nowrap;
}

.path-mod-niceform button.nl-tabs-link {
    cursor: pointer;
}

.path-mod-niceform .nl-tabs-link-active {
    border-bottom-color: var(--nl-accent-text);
    color: var(--nl-accent-text);
}

.path-mod-niceform .niceform-response-form {
    margin-top: 1rem;
}

.path-mod-niceform .niceform-view-question {
    color: var(--nl-text);
    font-size: .95rem;
    margin: 0 0 .85rem;
}

.path-mod-niceform .niceform-view-question + .niceform-view-question {
    margin-top: 1.6rem;
}

.path-mod-niceform .niceform-view-options {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-top: .65rem;
}

.path-mod-niceform .niceform-view-option {
    align-items: center;
    color: var(--nl-text);
    display: flex;
    font-size: .92rem;
    gap: .55rem;
}

.path-mod-niceform .niceform-view-radio {
    background: #fff;
    border: 1.5px solid #adb5bd;
    border-radius: 50%;
    flex-shrink: 0;
    height: 16px;
    width: 16px;
}

.path-mod-niceform .niceform-view-submit {
    background: #1F5F73;
    border: 0;
    border-radius: .4rem;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    margin-top: 1.5rem;
    padding: .5rem 1.15rem;
}

.path-mod-niceform .niceform-logic-shell {
    background: var(--nl-bg-white);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius);
    box-shadow: var(--nl-shadow-md);
}

.path-mod-niceform .niceform-logic-shell-head {
    align-items: center;
    border-bottom: 1px solid var(--nl-border);
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.15rem;
}

.path-mod-niceform .niceform-logic-shell-head h3 {
    color: var(--nl-text);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.path-mod-niceform .niceform-logic-shell-close {
    background: transparent;
    border: 0;
    color: var(--nl-muted-text);
    font-size: 1.2rem;
    line-height: 1;
}

.path-mod-niceform .niceform-logic-shell-body {
    padding: 1.15rem;
}

.path-mod-niceform .niceform-logic-rule {
    background: var(--nl-bg-white);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius);
    box-shadow: var(--nl-shadow-sm);
    padding: 1.1rem;
}

.path-mod-niceform .niceform-control-label {
    color: var(--nl-muted-text);
    display: block;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: .35rem;
}

.path-mod-niceform .niceform-control-group {
    margin-bottom: 1rem;
}

.path-mod-niceform .niceform-control-row {
    align-items: end;
    display: grid;
    gap: .75rem;
    grid-template-columns: 1fr 1fr 1fr auto;
    margin-bottom: 1rem;
}

.path-mod-niceform .niceform-control-row--2 {
    grid-template-columns: 1fr 1fr auto;
}

.path-mod-niceform .niceform-danger-button {
    align-items: center;
    background: #fff1f3;
    border: 1px solid rgba(244, 63, 94, .28);
    border-radius: calc(var(--nl-radius) - 4px);
    color: var(--nl-danger);
    display: inline-flex;
    height: 2.4rem;
    justify-content: center;
    width: 2.4rem;
}

.path-mod-niceform .niceform-logic-secondary-button {
    background: var(--nl-bg);
    border: 1px solid var(--nl-border);
    border-radius: calc(var(--nl-radius) - 4px);
    color: var(--nl-text);
    font-size: .82rem;
    font-weight: 600;
    padding: .55rem .85rem;
    margin-bottom: 1.1rem;
}

.path-mod-niceform .niceform-logic-add-rule {
    background: #1F5F73;
    border: 0;
    border-radius: calc(var(--nl-radius) - 4px);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    padding: .6rem 1.1rem;
}

.path-mod-niceform .nl-lp-field {
    background: #fff;
    border: 1px solid var(--nl-border);
    border-radius: calc(var(--nl-radius) - 4px);
    color: var(--nl-text);
    display: block;
    font-size: .84rem;
    padding: .55rem .7rem;
    width: 100%;
}

.path-mod-niceform select.nl-lp-field {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%238b93a7' stroke-width='1.4' fill='none' fill-rule='evenodd'/></svg>");
    background-position: right .7rem center;
    background-repeat: no-repeat;
    padding-right: 1.8rem;
}

.path-mod-niceform .niceform-submissions-shell {
    --niceform-sticky-width: 11rem;
    background: #fff;
    border: 1px solid #edebe9;
    border-radius: var(--nl-radius);
    box-shadow: 0 1px 4px rgba(30, 37, 53, .06);
    color: #201f1e;
}

.path-mod-niceform .niceform-submissions-commandbar {
    align-items: flex-end;
    background: #faf9f8;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    padding: .85rem .85rem .5rem;
}

.path-mod-niceform .niceform-submissions-actionbar {
    align-items: center;
    background: #faf9f8;
    border-bottom: 1px solid #edebe9;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: space-between;
    padding: 0 .85rem .85rem;
}

.path-mod-niceform .niceform-submissions-actionbar-left,
.path-mod-niceform .niceform-submissions-actionbar-right {
    align-items: center;
    display: flex;
    gap: .5rem;
}

.path-mod-niceform .niceform-submissions-searches {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.path-mod-niceform .niceform-submissions-control {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin: 0;
    min-width: 10rem;
}

.path-mod-niceform .niceform-submissions-control-wide {
    min-width: 14rem;
}

.path-mod-niceform .niceform-submissions-control span {
    color: #5f6b82;
    font-size: .72rem;
    font-weight: 600;
}

.path-mod-niceform .niceform-submissions-scroll {
    max-height: 24rem;
    overflow: auto;
}

.path-mod-niceform .niceform-submissions-table {
    border: 1px solid #edebe9;
    border-collapse: separate;
    border-spacing: 0;
    color: #201f1e;
    font-size: 12.5px;
    min-width: 100%;
    white-space: nowrap;
    width: 100%;
}

.path-mod-niceform .niceform-submissions-table th,
.path-mod-niceform .niceform-submissions-table td {
    background: #fff;
    border-bottom: 1px solid #edebe9;
    border-right: 1px solid #edebe9;
    color: #201f1e;
    padding: 9px 14px;
    vertical-align: middle;
}

.path-mod-niceform .niceform-submissions-table th:last-child,
.path-mod-niceform .niceform-submissions-table td:last-child {
    border-right: 0;
}

.path-mod-niceform .niceform-submissions-table th {
    background: #f3f2f1;
    border-bottom: 2px solid #edebe9;
    color: #605e5c;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
    position: sticky;
    text-transform: uppercase;
    top: 0;
}

.path-mod-niceform .niceform-submissions-table tbody tr:hover td {
    background: #f3f2f1;
}

.path-mod-niceform .niceform-submissions-actions {
    white-space: nowrap;
}

.path-mod-niceform .niceform-submissions-actions .nl-lp-pv-btn:not(:last-child) {
    margin-right: .35rem;
}

.path-mod-niceform .niceform-submissions-footer {
    align-items: center;
    border-top: 1px solid #e7ebf2;
    color: #5f6b82;
    display: flex;
    font-size: .78rem;
    justify-content: space-between;
    padding: .65rem .85rem;
}

.path-mod-niceform .nl-lp-pv-btn {
    background: #f1f3f5;
    border: 1px solid #dcdfe4;
    border-radius: .3rem;
    color: #201f1e;
    display: inline-flex;
    font-size: .74rem;
    font-weight: 600;
    padding: .32rem .65rem;
}

.path-mod-niceform .nl-lp-pv-btn--danger {
    background: #d13438;
    border-color: #d13438;
    color: #fff;
}

.path-mod-niceform .nl-lp-toolbtn {
    align-items: center;
    justify-content: center;
    display: inline-flex;

    height: 2.5rem;
    box-sizing: border-box;

    padding: 0 .8rem;

    background: #f1f3f5;
    border: 1px solid #dcdfe4;
    border-radius: .35rem;

    color: #3b4a60;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1;

    gap: .35rem;
    white-space: nowrap;
}

.path-mod-niceform .nl-lp-toolbtn--icon {
    width: 2.5rem;
    min-width: 2.5rem;
    padding: 0;
}

.path-mod-niceform .nl-lp-toolbtn--icon i {
    display: block;
    font-size: .85rem;
    line-height: 1;
}

.path-mod-niceform .nl-tabs-link[data-view] {
    cursor: pointer;
}

.path-mod-niceform .niceform-report-shell {
    background: #fff;
    border: 1px solid #edebe9;
    border-radius: var(--nl-radius);
    box-shadow: 0 1px 4px rgba(30, 37, 53, .06);
    color: #201f1e;
}

.path-mod-niceform .niceform-report-filters {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    padding: .85rem 1rem;
    border-bottom: 1px solid #edebe9;
    background: #faf9f8;
}

.path-mod-niceform .niceform-report-sections {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.path-mod-niceform .niceform-report-section {
    background: #fff;
    border: 1px solid #e2e6f0;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(30, 37, 53, .06);
    overflow: hidden;
}

.path-mod-niceform .niceform-report-section-header {
    align-items: center;
    border-bottom: 1px solid #edf0f6;
    display: flex;
    justify-content: space-between;
    padding: .9rem 1rem;
}

.path-mod-niceform .niceform-report-section-header h3 {
    color: #1e2535;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.path-mod-niceform .niceform-report-section-header span {
    color: var(--nl-muted-text);
    display: inline-flex;
    font-size: .75rem;
    margin-top: .2rem;
}

.path-mod-niceform .niceform-report-section-header strong {
    background: #eef1fd;
    border-radius: 999px;
    color: var(--nl-accent-text);
    font-size: .8rem;
    font-weight: 700;
    padding: .2rem .55rem;
}

.path-mod-niceform .niceform-report-tabs {
    margin: 0;
    padding: 0 1rem;
}

.path-mod-niceform .niceform-report-chart {
    min-height: 310px;
    padding: 0 .5rem 1rem;
}

.path-mod-niceform .niceform-report-table-wrap {
    padding: 0 1rem 1rem;
}

.path-mod-niceform .niceform-report-table {
    border-collapse: separate;
    border-spacing: 0;
    color: #201f1e;
    font-size: 13.5px;
    table-layout: auto;
    white-space: nowrap;
    width: 100%;
}

.path-mod-niceform .niceform-report-table th,
.path-mod-niceform .niceform-report-table td {
    background: #fff;
    border-bottom: 1px solid #edebe9;
    color: #201f1e;
    overflow: hidden;
    padding: 10px 16px;
    text-align: left;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.path-mod-niceform .niceform-report-table th {
    background: #f3f2f1;
    border-bottom: 2px solid #edebe9;
    color: #605e5c;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.path-mod-niceform .niceform-report-table tbody tr:hover td {
    background: #f3f2f1;
}

@media (max-width: 700px) {
    .path-mod-niceform .niceform-report-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .path-mod-niceform .niceform-designer {
        grid-template-columns: 1fr;
    }

    .path-mod-niceform .niceform-control-row,
    .path-mod-niceform .niceform-control-row--2 {
        grid-template-columns: 1fr;
    }
}

.nl-form-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.nl-form-summary-grid article {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 0;
    padding: 1rem;
    border: 1.5px solid var(--lp-border);
    border-radius: 0.9rem;
    background: #ffffff;
}

.nl-form-summary-grid article > i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 0.7rem;
    background: var(--lp-blue-light);
    color: var(--lp-blue-text);
    font-size: 0.9rem;
}

.nl-form-summary-grid article > div {
    min-width: 0;
}

.nl-form-summary-grid h3 {
    margin: 0 0 0.22rem;
    color: var(--lp-dark);
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.35;
}

.nl-form-summary-grid p {
    margin: 0;
    color: var(--lp-soft);
    font-size: 0.73rem;
    line-height: 1.55;
}

@media (max-width: 1199.98px) {
    .nl-form-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .nl-form-summary-grid {
        grid-template-columns: 1fr;
    }
}

.nl-form-landing .nl-browser__url {
    color: #334155;
}

.nl-form-landing .nl-fb__panel-help {
    color: #4B5563;
}

.nl-form-landing .nl-fb__panel-title {
    color: #0F1729;
}

#nlShowcase .nl-showcase__thumb-label {
    color: #ffffff;
    background: #0F1729;
    opacity: 1;
}