/* =========================================================
   FSPV COMMERCE — PUBLIC SITE REBUILD V9
   Complete design rebuilt from scratch.
   Identity retained:
   #20143d · #22b573 · #f37021 · #f7f9fc
   ========================================================= */

:root {
    --dark: #20143d;
    --dark-deep: #07002f;
    --green: #22b573;
    --green-dark: #168955;
    --orange: #f37021;
    --orange-dark: #c95100;
    --bg: #f7f9fc;
    --surface: #ffffff;
    --text: #07002f;
    --muted: #697386;
    --line: #dde6ef;
    --soft-green: #e9f8f1;
    --soft-orange: #fff3e8;
    --soft-purple: #f2edff;
    --danger: #b42318;
    --shadow-sm: 0 10px 30px rgba(20, 30, 50, .06);
    --shadow-md: 0 22px 65px rgba(20, 30, 50, .10);
    --shadow-lg: 0 34px 100px rgba(20, 30, 50, .16);
    --shell: 1220px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

body.nav-open {
    overflow: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

svg {
    width: 20px;
    height: 20px;
}

[hidden] {
    display: none !important;
}

.neo-public {
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(34, 181, 115, .10),
            transparent 26%
        ),
        radial-gradient(
            circle at 90% 3%,
            rgba(243, 112, 33, .10),
            transparent 24%
        ),
        var(--bg);
    color: var(--text);
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.neo-shell {
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    transform: translateY(-160%);
    border-radius: 8px;
    background: var(--dark);
    color: #fff;
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.neo-announcement {
    position: relative;
    z-index: 130;
    background: var(--dark);
    color: #fff;
}

.neo-announcement__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    font-weight: 800;
}

.neo-announcement__inner span,
.neo-announcement__inner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.neo-announcement__inner svg {
    width: 15px;
    height: 15px;
    color: var(--green);
}

.neo-announcement__inner a svg {
    color: var(--orange);
}

.neo-header {
    position: sticky;
    z-index: 120;
    top: 0;
    border-bottom: 1px solid rgba(221, 230, 239, .85);
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(18px);
    transition:
        box-shadow .2s ease,
        background .2s ease;
}

.neo-header.is-scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 14px 34px rgba(20, 30, 50, .07);
}

.neo-nav {
    display: grid;
    min-height: 76px;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 34px;
}

.neo-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.neo-brand__symbol {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--green);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(34, 181, 115, .22);
}

.neo-brand__copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.neo-brand__copy strong {
    color: var(--dark);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.5px;
    line-height: 1;
}

.neo-brand__copy strong b {
    color: var(--green);
}

.neo-brand__copy small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
}

.neo-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.neo-nav-links a {
    position: relative;
    padding: 27px 0 25px;
    color: #475569;
    font-size: 14px;
    font-weight: 800;
}

.neo-nav-links a::after {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 3px;
    transform: scaleX(0);
    border-radius: 999px;
    background: var(--green);
    content: "";
    transition: transform .2s ease;
}

.neo-nav-links a:hover,
.neo-nav-links a.is-current {
    color: var(--dark);
}

.neo-nav-links a:hover::after,
.neo-nav-links a.is-current::after {
    transform: scaleX(1);
}

.neo-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.neo-nav-toggle {
    display: none;
}

.neo-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 17px;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease,
        border-color .2s ease;
}

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

.neo-button svg {
    width: 17px;
    height: 17px;
}

.neo-button--dark {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}

.neo-button--dark:hover {
    background: var(--dark-deep);
}

.neo-button--orange {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 26px rgba(243, 112, 33, .22);
}

.neo-button--orange:hover {
    border-color: var(--orange-dark);
    background: var(--orange-dark);
}

.neo-button--outline {
    border-color: var(--line);
    background: #fff;
    color: var(--dark);
}

.neo-button--outline:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
}

.neo-button--light {
    border-color: #fff;
    background: #fff;
    color: var(--dark);
}

.neo-button--large {
    min-height: 52px;
    padding-inline: 22px;
    font-size: 15px;
}

.neo-button--full {
    width: 100%;
}

.neo-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.neo-eyebrow svg {
    width: 17px;
    height: 17px;
}

.neo-eyebrow--light {
    color: #ffd7bf;
}

.neo-hero {
    padding: 86px 0 68px;
}

.neo-hero__inner {
    text-align: center;
}

.neo-hero h1 {
    max-width: 980px;
    margin: 20px auto 20px;
    color: var(--dark);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -3.6px;
}

.neo-hero h1 em {
    display: block;
    color: var(--green);
    font-style: normal;
}

.neo-hero__lead {
    max-width: 780px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.neo-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.neo-hero__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.neo-hero__proof span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(20, 30, 50, .04);
}

.neo-hero__proof svg {
    width: 15px;
    height: 15px;
    color: var(--green);
}

.neo-console {
    max-width: 1120px;
    margin: 62px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
    text-align: left;
}

.neo-console__bar {
    display: grid;
    min-height: 72px;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    padding: 0 22px;
    background: var(--dark);
    color: #fff;
}

.neo-console__identity {
    display: flex;
    align-items: center;
    gap: 11px;
}

.neo-console__identity > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    background: var(--green);
    color: #fff;
    font-weight: 900;
}

.neo-console__identity div {
    display: flex;
    flex-direction: column;
}

.neo-console__identity strong {
    font-size: 14px;
}

.neo-console__identity small {
    color: #d7d4e8;
    font-size: 10px;
}

.neo-console__tabs {
    display: flex;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
}

.neo-console__tabs button {
    min-height: 34px;
    padding: 0 13px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #d7d4e8;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
}

.neo-console__tabs button.is-active {
    background: #fff;
    color: var(--dark);
}

.neo-console__online {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
    color: #e9f8f1;
    font-size: 11px;
    font-weight: 800;
}

.neo-console__online i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(34, 181, 115, .13);
}

.neo-console__panel {
    min-height: 560px;
}

.neo-console__panel.is-active {
    display: grid;
}

.neo-console__panel[data-console-panel="overview"] {
    grid-template-columns: 180px minmax(0, 1fr);
}

.neo-console__sidebar {
    display: flex;
    padding: 22px 14px;
    border-right: 1px solid var(--line);
    background: #f8fafc;
    flex-direction: column;
    gap: 5px;
}

.neo-console__sidebar span {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border-radius: 9px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.neo-console__sidebar span.is-active {
    background: var(--soft-green);
    color: var(--green-dark);
}

.neo-console__sidebar svg {
    width: 17px;
    height: 17px;
}

.neo-console__workspace {
    padding: 25px;
    background: #fff;
}

.neo-console__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.neo-console__heading div {
    display: flex;
    flex-direction: column;
}

.neo-console__heading small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.neo-console__heading strong {
    color: var(--dark);
    font-size: 20px;
}

.neo-console__heading button {
    min-height: 36px;
    padding: 0 13px;
    border: 0;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.neo-metric-grid {
    display: grid;
    margin-top: 21px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.neo-metric-grid article {
    display: grid;
    min-height: 134px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    grid-template-columns: auto 1fr;
    align-content: start;
    gap: 7px 10px;
}

.neo-metric-grid article > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: var(--soft-green);
    color: var(--green);
    grid-row: span 2;
}

.neo-metric-grid article:nth-child(2) > span,
.neo-metric-grid article:nth-child(4) > span {
    background: var(--soft-orange);
    color: var(--orange);
}

.neo-metric-grid svg {
    width: 18px;
    height: 18px;
}

.neo-metric-grid small {
    align-self: end;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
}

.neo-metric-grid strong {
    color: var(--dark);
    font-size: 19px;
    grid-column: 1 / -1;
}

.neo-metric-grid em {
    color: var(--green-dark);
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
    grid-column: 1 / -1;
}

.neo-console__lower {
    display: grid;
    margin-top: 14px;
    grid-template-columns: 1.25fr .75fr;
    gap: 14px;
}

.neo-sales-chart,
.neo-recent-orders {
    min-height: 255px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.neo-sales-chart header,
.neo-recent-orders header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.neo-sales-chart header div,
.neo-recent-orders header div {
    display: flex;
    flex-direction: column;
}

.neo-sales-chart header small,
.neo-recent-orders header small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
}

.neo-sales-chart header strong,
.neo-recent-orders header strong {
    color: var(--dark);
    font-size: 13px;
}

.neo-sales-chart header > span {
    padding: 6px 8px;
    border-radius: 999px;
    background: var(--soft-green);
    color: var(--green-dark);
    font-size: 9px;
    font-weight: 900;
}

.neo-sales-chart__bars {
    display: flex;
    height: 165px;
    align-items: flex-end;
    gap: 8px;
    margin-top: 20px;
    padding: 0 4px;
    border-bottom: 1px solid var(--line);
}

.neo-sales-chart__bars i {
    width: 100%;
    height: var(--height);
    min-height: 12px;
    border-radius: 5px 5px 0 0;
    background: var(--green);
}

.neo-sales-chart__bars i:nth-child(3n) {
    background: var(--orange);
}

.neo-recent-orders header a {
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
}

.neo-recent-orders > div {
    display: grid;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid #eef2f6;
    grid-template-columns: 45px 1fr auto;
    gap: 8px;
    font-size: 9px;
}

.neo-recent-orders > div:last-child {
    border-bottom: 0;
}

.neo-recent-orders > div span {
    color: var(--muted);
    font-weight: 800;
}

.neo-recent-orders > div b {
    color: var(--dark);
}

.neo-recent-orders > div em {
    padding: 4px 6px;
    border-radius: 999px;
    background: var(--soft-green);
    color: var(--green-dark);
    font-style: normal;
    font-weight: 900;
}

.neo-recent-orders > div strong {
    grid-column: 2 / -1;
    color: var(--dark);
}

.neo-console__focus {
    display: grid;
    min-height: 560px;
    align-items: center;
    padding: 48px;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(34, 181, 115, .10),
            transparent 36%
        ),
        #fff;
}

.neo-console__focus h3 {
    margin: 14px 0 12px;
    color: var(--dark);
    font-size: 32px;
    line-height: 1.1;
}

.neo-console__focus p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.neo-order-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.neo-order-board article {
    min-height: 160px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.neo-order-board small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.neo-order-board strong {
    display: block;
    margin-top: 10px;
    color: var(--dark);
    font-size: 36px;
}

.neo-order-board i,
.neo-order-mini i {
    display: block;
    height: 7px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 999px;
    background: #eef2f6;
}

.neo-order-board i::before,
.neo-order-mini i::before {
    display: block;
    width: var(--progress);
    height: 100%;
    border-radius: inherit;
    background: var(--green);
    content: "";
}

.neo-order-board article:nth-child(2) i::before,
.neo-order-mini article:nth-child(2) i::before {
    background: var(--orange);
}

.neo-product-stack {
    display: grid;
    gap: 10px;
}

.neo-product-stack article {
    display: grid;
    min-height: 76px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
}

.neo-product-stack article > span {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, var(--soft-green), var(--soft-orange));
}

.neo-product-stack article div {
    display: flex;
    flex-direction: column;
}

.neo-product-stack article strong {
    color: var(--dark);
}

.neo-product-stack article small {
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 800;
}

.neo-product-stack article b {
    color: var(--orange);
}

.neo-pillar-strip {
    border-block: 1px solid var(--line);
    background: #fff;
}

.neo-pillar-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.neo-pillar-strip article {
    display: grid;
    min-height: 150px;
    align-items: center;
    padding: 24px 34px;
    border-right: 1px solid var(--line);
    grid-template-columns: auto 1fr;
    gap: 18px;
}

.neo-pillar-strip article:last-child {
    border-right: 0;
}

.neo-pillar-strip article > span {
    color: var(--orange);
    font-size: 30px;
    font-weight: 900;
}

.neo-pillar-strip strong {
    color: var(--dark);
    font-size: 18px;
}

.neo-pillar-strip p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.neo-section {
    padding: 94px 0;
}

.neo-section--soft {
    border-block: 1px solid var(--line);
    background:
        linear-gradient(180deg, #fff, #f3f7fb);
}

.neo-section-heading {
    max-width: 830px;
    margin: 0 auto 46px;
    text-align: center;
}

.neo-section-heading h2 {
    margin: 15px 0 15px;
    color: var(--dark);
    font-size: clamp(36px, 4.2vw, 52px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
}

.neo-section-heading h2 em {
    color: var(--green);
    font-style: normal;
}

.neo-section-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.neo-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.neo-bento-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.neo-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.neo-bento-card--catalog {
    display: grid;
    grid-column: span 12;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
}

.neo-bento-card--orders,
.neo-bento-card--marketing {
    grid-column: span 6;
}

.neo-bento-card--automation {
    grid-column: span 7;
    min-height: 330px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(34, 181, 115, .13),
            transparent 32%
        ),
        #fff;
}

.neo-bento-card--storefront {
    grid-column: span 5;
    min-height: 330px;
    background:
        radial-gradient(
            circle at 10% 90%,
            rgba(243, 112, 33, .12),
            transparent 34%
        ),
        #fff;
}

.neo-bento-card__copy {
    position: relative;
    z-index: 2;
}

.neo-card-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background:
        linear-gradient(135deg, var(--soft-green), var(--soft-orange));
    color: var(--orange);
}

.neo-card-icon svg {
    width: 23px;
    height: 23px;
}

.neo-bento-card__copy > small {
    display: block;
    margin-top: 22px;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.neo-bento-card__copy h3 {
    max-width: 600px;
    margin: 10px 0 12px;
    color: var(--dark);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.8px;
}

.neo-bento-card__copy p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.neo-bento-card__copy ul {
    display: grid;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    gap: 9px;
}

.neo-bento-card__copy li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
}

.neo-bento-card__copy li svg {
    width: 15px;
    height: 15px;
    color: var(--green);
}

.neo-bento-card__copy > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
}

.neo-bento-card__copy > a svg {
    width: 16px;
    height: 16px;
}

.neo-catalog-ui {
    align-self: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.neo-catalog-ui header {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    background: #f8fafc;
}

.neo-catalog-ui header div {
    display: flex;
    flex-direction: column;
}

.neo-catalog-ui header small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
}

.neo-catalog-ui header strong {
    color: var(--dark);
}

.neo-catalog-ui header button {
    min-height: 34px;
    padding: 0 11px;
    border: 0;
    border-radius: 7px;
    background: var(--orange);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
}

.neo-catalog-ui__row {
    display: grid;
    min-height: 70px;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eef2f6;
    grid-template-columns: 46px 1fr auto auto;
    gap: 10px;
}

.neo-catalog-ui__row:last-child {
    border-bottom: 0;
}

.neo-catalog-ui__row > span {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, var(--soft-green), var(--soft-orange));
}

.neo-catalog-ui__row div {
    display: flex;
    flex-direction: column;
}

.neo-catalog-ui__row strong {
    color: var(--dark);
    font-size: 11px;
}

.neo-catalog-ui__row small {
    color: var(--muted);
    font-size: 8px;
}

.neo-catalog-ui__row em {
    padding: 5px 7px;
    border-radius: 999px;
    background: var(--soft-green);
    color: var(--green-dark);
    font-size: 8px;
    font-style: normal;
    font-weight: 900;
}

.neo-catalog-ui__row b {
    color: var(--dark);
    font-size: 10px;
}

.neo-order-mini {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.neo-order-mini article {
    min-height: 130px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fafc;
}

.neo-order-mini small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.neo-order-mini strong {
    display: block;
    margin-top: 8px;
    color: var(--dark);
    font-size: 30px;
}

.neo-campaign-ui {
    margin-top: 28px;
    padding: 23px;
    border-radius: 18px;
    background: var(--dark);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.neo-campaign-ui > span {
    color: #ffd7bf;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.neo-campaign-ui > strong {
    display: block;
    margin-top: 10px;
    font-size: 20px;
}

.neo-campaign-ui p {
    margin: 8px 0 20px;
    color: #d7d4e8;
    font-size: 12px;
}

.neo-campaign-ui div {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    font-size: 9px;
    font-weight: 900;
}

.neo-campaign-ui i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.neo-automation-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 42px;
}

.neo-automation-flow span {
    display: flex;
    min-height: 66px;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--dark);
    font-size: 11px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
}

.neo-automation-flow span svg {
    color: var(--green);
}

.neo-automation-flow > i {
    width: 30px;
    height: 2px;
    background:
        linear-gradient(90deg, var(--green), var(--orange));
}

.neo-storefront-mini {
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.neo-storefront-mini header {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-bottom: 1px solid var(--line);
}

.neo-storefront-mini header b {
    margin-right: auto;
    color: var(--dark);
    font-size: 10px;
}

.neo-storefront-mini header span {
    width: 24px;
    height: 5px;
    border-radius: 999px;
    background: #dbe2ea;
}

.neo-storefront-mini__hero {
    height: 90px;
    background:
        linear-gradient(
            120deg,
            rgba(32, 20, 61, .92),
            rgba(34, 181, 115, .65)
        );
}

.neo-storefront-mini__products {
    display: grid;
    padding: 12px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.neo-storefront-mini__products i {
    height: 56px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, var(--soft-green), var(--soft-orange));
}

.neo-design-section {
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(34, 181, 115, .18),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(243, 112, 33, .15),
            transparent 32%
        ),
        var(--dark);
    color: #fff;
}

.neo-design-section__grid {
    display: grid;
    align-items: center;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
}

.neo-design-section__copy h2 {
    margin: 17px 0 18px;
    color: #fff;
    font-size: clamp(38px, 4.4vw, 58px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -2px;
}

.neo-design-section__copy p {
    margin: 0;
    color: #d7d4e8;
    font-size: 16px;
    line-height: 1.75;
}

.neo-theme-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.neo-theme-switch button {
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
}

.neo-theme-switch button.is-active {
    border-color: var(--orange);
    background: var(--orange);
}

.neo-store-preview {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
    background: #fff;
    color: var(--text);
    box-shadow: 0 40px 110px rgba(0, 0, 0, .30);
    transition: background .25s ease;
}

.neo-store-preview__browser {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    background: #f3f5f8;
}

.neo-store-preview__browser i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.neo-store-preview__browser span {
    margin-left: 8px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
}

.neo-store-preview__header {
    display: flex;
    min-height: 62px;
    align-items: center;
    padding: 0 22px;
    gap: 24px;
}

.neo-store-preview__header strong {
    margin-right: auto;
    color: var(--dark);
    letter-spacing: .18em;
}

.neo-store-preview__header nav {
    display: flex;
    gap: 17px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
}

.neo-store-preview__header b {
    font-size: 9px;
}

.neo-store-preview__hero {
    display: flex;
    min-height: 270px;
    align-items: flex-end;
    padding: 28px;
    background:
        linear-gradient(
            120deg,
            rgba(32, 20, 61, .92),
            rgba(34, 181, 115, .66)
        );
    color: #fff;
}

.neo-store-preview.is-editorial .neo-store-preview__hero {
    background:
        linear-gradient(
            120deg,
            #f2eadf,
            #be9f7b
        );
    color: var(--dark);
}

.neo-store-preview.is-contrast .neo-store-preview__hero {
    background:
        linear-gradient(
            120deg,
            #07002f,
            #f37021
        );
}

.neo-store-preview__hero div {
    max-width: 420px;
}

.neo-store-preview__hero small {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}

.neo-store-preview__hero strong {
    display: block;
    margin: 10px 0 17px;
    font-size: 28px;
    line-height: 1.12;
}

.neo-store-preview__hero span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 11px;
    border-radius: 6px;
    background: #fff;
    color: var(--dark);
    font-size: 9px;
    font-weight: 900;
}

.neo-store-preview__grid {
    display: grid;
    padding: 18px;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.neo-store-preview__grid article span {
    display: block;
    aspect-ratio: 1;
    border-radius: 10px;
    background:
        linear-gradient(135deg, var(--soft-green), var(--soft-orange));
}

.neo-store-preview__grid article b {
    display: block;
    margin-top: 8px;
    color: var(--dark);
    font-size: 9px;
}

.neo-integration-grid {
    display: grid;
    max-width: 1040px;
    margin-inline: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.neo-integration-grid article {
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    text-align: center;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.neo-integration-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.neo-integration-grid article > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    background: var(--soft-green);
    color: var(--green);
}

.neo-integration-grid article:nth-child(2n) > span {
    background: var(--soft-orange);
    color: var(--orange);
}

.neo-integration-grid strong {
    margin-top: 13px;
    color: var(--dark);
    font-size: 14px;
}

.neo-integration-grid small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
}

.neo-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.neo-feature-grid article {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.neo-feature-grid article > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    background: var(--soft-green);
    color: var(--green);
}

.neo-feature-grid article:nth-child(3n) > span {
    background: var(--soft-orange);
    color: var(--orange);
}

.neo-feature-grid h3 {
    margin: 18px 0 8px;
    color: var(--dark);
    font-size: 17px;
}

.neo-feature-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.neo-feature-grid--compact article {
    min-height: 135px;
    text-align: center;
}

.neo-feature-grid--compact article > span {
    margin-inline: auto;
}

.neo-feature-grid--compact h3 {
    font-size: 14px;
}

.neo-pricing-preview {
    background: #fff;
}

.neo-price-grid {
    display: grid;
    max-width: 1080px;
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.neo-price-grid--full {
    max-width: 1160px;
}

.neo-price-card {
    position: relative;
    display: flex;
    min-height: 610px;
    padding: 27px;
    border: 1px solid var(--line);
    border-top: 5px solid var(--green);
    border-radius: 18px;
    background: #fff;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.neo-price-card.is-featured {
    border: 2px solid var(--green);
    border-top-width: 5px;
    background:
        linear-gradient(180deg, #fff, #f7fffb);
    box-shadow: 0 28px 70px rgba(18, 49, 36, .13);
    transform: translateY(-10px);
}

.neo-price-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 9px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.neo-price-card header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 70px;
}

.neo-price-card__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    background:
        linear-gradient(135deg, var(--soft-green), var(--soft-orange));
    color: var(--orange);
}

.neo-price-card header div {
    display: flex;
    flex-direction: column;
}

.neo-price-card header small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.neo-price-card header strong {
    color: var(--dark);
    font-size: 18px;
}

.neo-launch-label {
    display: inline-flex;
    width: fit-content;
    margin-top: 22px;
    padding: 7px 9px;
    border-radius: 999px;
    background: var(--soft-orange);
    color: var(--orange-dark);
    font-size: 9px;
    font-weight: 900;
}

.neo-price-card > del {
    margin-top: 10px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
}

.neo-price-card h2,
.neo-price-card h3 {
    margin: 14px 0 8px;
    color: var(--orange);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.neo-price-card h2 span,
.neo-price-card h3 span {
    color: var(--muted);
    font-size: 13px;
}

.neo-price-card > p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.neo-price-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.neo-price-card__meta span {
    padding: 6px 8px;
    border-radius: 999px;
    background: var(--soft-green);
    color: var(--green-dark);
    font-size: 9px;
    font-weight: 900;
}

.neo-price-card__limits {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.neo-price-card__limits span {
    min-height: 68px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #f8fafc;
    color: var(--muted);
    font-size: 9px;
    text-align: center;
}

.neo-price-card__limits b {
    display: block;
    color: var(--dark);
    font-size: 15px;
}

.neo-facturi-box {
    display: grid;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fafc;
    grid-template-columns: 38px 1fr;
    gap: 11px;
}

.neo-facturi-box > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: var(--soft-orange);
    color: var(--orange);
}

.neo-facturi-box.is-included {
    border-color: #bde6d3;
    background: var(--soft-green);
}

.neo-facturi-box.is-included > span {
    background: #fff;
    color: var(--green);
}

.neo-facturi-box strong {
    display: block;
    color: var(--dark);
    font-size: 11px;
}

.neo-facturi-box p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.5;
}

.neo-price-card ul {
    display: grid;
    margin: 20px 0;
    padding: 0;
    list-style: none;
    gap: 9px;
}

.neo-price-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.neo-price-card li svg {
    width: 15px;
    height: 15px;
    color: var(--green);
    flex: 0 0 auto;
}

.neo-price-card > .neo-button {
    width: 100%;
    margin-top: auto;
}

.neo-pricing-preview__action {
    margin-top: 34px;
    text-align: center;
}

.neo-pricing-preview__action a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
}

.neo-faq-layout {
    display: grid;
    max-width: 1050px;
    grid-template-columns: .75fr 1.25fr;
    gap: 65px;
}

.neo-faq-layout__copy h2 {
    margin: 15px 0 14px;
    color: var(--dark);
    font-size: 42px;
    line-height: 1.05;
}

.neo-faq-layout__copy p {
    color: var(--muted);
}

.neo-faq-layout__copy a {
    color: var(--orange);
    font-weight: 900;
}

.neo-faq {
    display: grid;
    gap: 10px;
}

.neo-faq details {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.neo-faq summary {
    cursor: pointer;
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
}

.neo-faq p {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.neo-page-hero {
    padding: 82px 0 58px;
}

.neo-page-hero__inner {
    max-width: 850px;
    text-align: center;
}

.neo-page-hero h1 {
    margin: 17px 0 16px;
    color: var(--dark);
    font-size: clamp(44px, 5.4vw, 68px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2.8px;
}

.neo-page-hero h1 em {
    display: block;
    color: var(--green);
    font-style: normal;
}

.neo-page-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.neo-billing-switch {
    display: inline-flex;
    margin-top: 28px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.neo-billing-switch button {
    min-height: 38px;
    padding: 0 15px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
}

.neo-billing-switch button.is-active {
    background: var(--dark);
    color: #fff;
}

.neo-pricing-page {
    padding-top: 44px;
}

.neo-empty-state {
    max-width: 650px;
    margin-inline: auto;
    padding: 50px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.neo-empty-state > span {
    display: grid;
    width: 64px;
    height: 64px;
    margin-inline: auto;
    place-items: center;
    border-radius: 18px;
    background: var(--soft-green);
    color: var(--green);
}

.neo-empty-state h2 {
    margin: 20px 0 10px;
    color: var(--dark);
}

.neo-empty-state p {
    color: var(--muted);
}

.neo-onboarding {
    padding: 72px 0 94px;
}

.neo-onboarding__grid {
    display: grid;
    max-width: 1120px;
    align-items: start;
    grid-template-columns: .82fr 1.18fr;
    gap: 64px;
}

.neo-onboarding__intro {
    position: sticky;
    top: 118px;
}

.neo-onboarding__intro h1 {
    margin: 16px 0 16px;
    color: var(--dark);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -2px;
}

.neo-onboarding__intro h1 em {
    display: block;
    color: var(--green);
    font-style: normal;
}

.neo-onboarding__intro > p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.neo-step-list {
    display: grid;
    margin-top: 32px;
    gap: 10px;
}

.neo-step-list article {
    display: grid;
    min-height: 78px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    grid-template-columns: 46px 1fr;
    gap: 12px;
}

.neo-step-list article > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 11px;
    background: #eef2f6;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
}

.neo-step-list article.is-active {
    border-color: #bde6d3;
    background: var(--soft-green);
}

.neo-step-list article.is-active > span {
    background: var(--green);
    color: #fff;
}

.neo-step-list div {
    display: flex;
    flex-direction: column;
}

.neo-step-list strong {
    color: var(--dark);
    font-size: 13px;
}

.neo-step-list small {
    color: var(--muted);
    font-size: 10px;
}

.neo-onboarding__promise {
    display: grid;
    margin-top: 18px;
    padding: 17px;
    border-radius: 14px;
    background: var(--dark);
    color: #fff;
    grid-template-columns: 36px 1fr;
    gap: 11px;
}

.neo-onboarding__promise > svg {
    width: 28px;
    height: 28px;
    color: var(--green);
}

.neo-onboarding__promise strong {
    font-size: 12px;
}

.neo-onboarding__promise p {
    margin: 5px 0 0;
    color: #d7d4e8;
    font-size: 10px;
    line-height: 1.55;
}

.neo-form-card {
    overflow: hidden;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.neo-form-card::before {
    display: block;
    height: 5px;
    margin: -32px -32px 28px;
    background:
        linear-gradient(90deg, var(--green), var(--orange));
    content: "";
}

.neo-form-card__head > span {
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.neo-form-card__head h2 {
    margin: 8px 0 8px;
    color: var(--dark);
    font-size: 28px;
}

.neo-form-card__head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.neo-form {
    display: grid;
    margin-top: 26px;
    gap: 18px;
}

.neo-form-grid {
    display: grid;
    gap: 14px;
}

.neo-form-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.neo-form label {
    display: grid;
    gap: 7px;
}

.neo-form label > span,
.neo-form legend {
    color: var(--dark);
    font-size: 11px;
    font-weight: 900;
}

.neo-form input,
.neo-form select,
.neo-form textarea,
.neo-footer-start input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--text);
    outline: none;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.neo-form input,
.neo-form select,
.neo-footer-start input {
    min-height: 48px;
    padding: 0 13px;
}

.neo-form textarea {
    min-height: 150px;
    padding: 13px;
    resize: vertical;
}

.neo-form input:focus,
.neo-form select:focus,
.neo-form textarea:focus,
.neo-footer-start input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(34, 181, 115, .10);
}

.neo-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.neo-form legend {
    margin-bottom: 10px;
}

.neo-plan-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.neo-plan-options label,
.neo-cycle-options label {
    position: relative;
    cursor: pointer;
}

.neo-plan-options input,
.neo-cycle-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.neo-plan-options label > span {
    display: flex;
    min-height: 88px;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    text-align: center;
    flex-direction: column;
    gap: 4px;
}

.neo-plan-options input:checked + span {
    border-color: var(--green);
    background: var(--soft-green);
    box-shadow: 0 0 0 3px rgba(34, 181, 115, .10);
}

.neo-plan-options strong {
    color: var(--dark);
    font-size: 12px;
}

.neo-plan-options small {
    color: var(--muted);
    font-size: 9px;
}

.neo-cycle-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.neo-cycle-options span {
    display: grid;
    min-height: 46px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
}

.neo-cycle-options input:checked + span {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}

.neo-consent {
    display: grid !important;
    align-items: start;
    grid-template-columns: 20px 1fr;
    gap: 10px !important;
}

.neo-consent input {
    width: 17px;
    height: 17px;
    min-height: 0;
    margin-top: 2px;
    accent-color: var(--green);
}

.neo-consent span {
    color: var(--muted) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1.5;
}

.neo-form-alert,
.neo-form-info {
    margin-top: 18px;
    padding: 13px;
    border-radius: 10px;
    font-size: 11px;
}

.neo-form-alert {
    border: 1px solid #fecdca;
    background: #fef3f2;
    color: var(--danger);
}

.neo-form-info {
    border: 1px solid var(--line);
    background: #f8fafc;
}

.neo-form-info strong {
    color: var(--dark);
}

.neo-form-info p {
    margin: 5px 0 0;
    color: var(--muted);
}

.neo-field-error {
    color: var(--danger);
    font-size: 9px;
    font-weight: 800;
}

.neo-field-error--block {
    display: block;
    margin-top: -10px;
}

.neo-form-security {
    color: var(--muted);
    font-size: 9px;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.neo-success {
    text-align: center;
}

.neo-success > span {
    display: grid;
    width: 62px;
    height: 62px;
    margin-inline: auto;
    place-items: center;
    border-radius: 18px;
    background: var(--soft-green);
    color: var(--green);
}

.neo-success > span svg {
    width: 28px;
    height: 28px;
}

.neo-success > small {
    display: block;
    margin-top: 18px;
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.neo-success h2 {
    margin: 8px 0 10px;
    color: var(--dark);
}

.neo-success p {
    color: var(--muted);
}

.neo-success dl {
    display: grid;
    margin: 24px 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.neo-success dl div {
    display: grid;
    min-height: 55px;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 120px 1fr;
    text-align: left;
}

.neo-success dl div:last-child {
    border-bottom: 0;
}

.neo-success dt {
    color: var(--muted);
    font-size: 10px;
}

.neo-success dd {
    margin: 0;
    color: var(--dark);
    font-size: 11px;
    font-weight: 900;
}

.neo-success__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.neo-contact__grid {
    display: grid;
    max-width: 1100px;
    align-items: start;
    grid-template-columns: .75fr 1.25fr;
    gap: 48px;
}

.neo-contact__options {
    display: grid;
    gap: 12px;
}

.neo-contact__options article {
    display: grid;
    min-height: 118px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    grid-template-columns: 50px 1fr;
    gap: 14px;
    box-shadow: var(--shadow-sm);
}

.neo-contact__options article > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 14px;
    background:
        linear-gradient(135deg, var(--soft-green), var(--soft-orange));
    color: var(--orange);
}

.neo-contact__options h2 {
    margin: 0;
    color: var(--dark);
    font-size: 16px;
}

.neo-contact__options p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.neo-contact__note {
    padding: 17px;
    border-radius: 14px;
    background: var(--dark);
    color: #fff;
}

.neo-contact__note strong {
    font-size: 11px;
}

.neo-contact__note p {
    margin: 5px 0 0;
    color: #d7d4e8;
    font-size: 10px;
}

.neo-page-hero--legal {
    padding-bottom: 44px;
}

.neo-legal {
    padding-top: 28px;
}

.neo-legal__grid {
    display: grid;
    max-width: 1040px;
    align-items: start;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 38px;
}

.neo-legal__nav {
    position: sticky;
    top: 110px;
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.neo-legal__nav a {
    min-height: 46px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.neo-legal__nav a:last-child {
    border-bottom: 0;
}

.neo-legal__nav a:hover {
    color: var(--orange);
}

.neo-legal__content {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.neo-legal__content > section {
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.neo-legal__content > section:last-child {
    border-bottom: 0;
}

.neo-legal__content h2 {
    margin: 0 0 12px;
    color: var(--dark);
    font-size: 24px;
}

.neo-legal__content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.legal-draft-notice {
    display: grid;
    margin-bottom: 10px;
    padding: 18px;
    border: 1px solid #f7c9ab;
    border-radius: 14px;
    background: var(--soft-orange);
    grid-template-columns: 38px 1fr;
    gap: 12px;
}

.legal-draft-notice > svg {
    color: var(--orange);
}

.legal-draft-notice strong {
    color: var(--dark);
    font-size: 12px;
}

.legal-draft-notice p {
    margin-top: 5px;
    font-size: 10px;
}

.neo-legal-table {
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.neo-legal-table > div {
    display: grid;
    min-height: 60px;
    align-items: center;
    padding: 0 13px;
    grid-template-columns: 1.2fr 1fr .8fr;
    gap: 10px;
}

.neo-legal-table strong {
    color: var(--dark);
    font-size: 10px;
}

.neo-legal-table span,
.neo-legal-table small {
    color: var(--muted);
    font-size: 9px;
}

.neo-footer-cta {
    margin: 40px auto 0;
    width: min(1160px, calc(100% - 48px));
    overflow: hidden;
    border-radius: 26px 26px 0 0;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(34, 181, 115, .22),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(243, 112, 33, .20),
            transparent 30%
        ),
        var(--dark);
    color: #fff;
}

.neo-footer-cta__inner {
    display: grid;
    width: 100%;
    padding: 48px;
    grid-template-columns: 1fr .85fr;
    gap: 50px;
}

.neo-footer-cta h2 {
    margin: 14px 0 13px;
    color: #fff;
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1.4px;
}

.neo-footer-cta p {
    margin: 0;
    color: #d7d4e8;
    line-height: 1.7;
}

.neo-footer-start {
    align-self: center;
}

.neo-footer-start label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.neo-footer-start > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.neo-footer-start input {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.neo-footer-start input::placeholder {
    color: #bdb8d4;
}

.neo-footer-start small {
    display: block;
    margin-top: 8px;
    color: #bdb8d4;
    font-size: 9px;
}

.neo-footer {
    padding: 54px 0 24px;
    background: var(--dark);
    color: #fff;
}

.neo-footer__grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    gap: 34px;
}

.neo-brand--footer .neo-brand__copy strong {
    color: #fff;
}

.neo-brand--footer .neo-brand__copy small {
    color: #bdb8d4;
}

.neo-footer__brand > p {
    max-width: 300px;
    margin: 18px 0;
    color: #d7d4e8;
    font-size: 12px;
    line-height: 1.7;
}

.neo-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    color: #d7d4e8;
    font-size: 9px;
    font-weight: 800;
}

.neo-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.neo-footer__column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.neo-footer__column > strong {
    margin-bottom: 7px;
    color: #fff;
    font-size: 12px;
}

.neo-footer__column a {
    color: #d7d4e8;
    font-size: 10px;
}

.neo-footer__column a:hover {
    color: var(--orange);
}

.neo-footer__bottom {
    display: flex;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    justify-content: space-between;
    gap: 20px;
    color: #bdb8d4;
    font-size: 9px;
}

.neo-cookie {
    position: fixed;
    z-index: 200;
    right: 18px;
    bottom: 18px;
    display: flex;
    max-width: 440px;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.neo-cookie > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.neo-cookie svg {
    flex: 0 0 auto;
    color: var(--orange);
}

.neo-cookie p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.neo-cookie a {
    color: var(--orange);
    font-weight: 900;
}

.neo-cookie button {
    min-height: 34px;
    flex: 0 0 auto;
    padding: 0 10px;
    border: 0;
    border-radius: 7px;
    background: var(--dark);
    color: #fff;
    cursor: pointer;
    font-size: 9px;
    font-weight: 900;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .55s ease,
        transform .55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .neo-nav-links {
        gap: 17px;
    }

    .neo-nav-actions .neo-button--dark {
        display: none;
    }

    .neo-console__panel[data-console-panel="overview"] {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .neo-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .neo-console__lower {
        grid-template-columns: 1fr;
    }

    .neo-bento-card--orders,
    .neo-bento-card--marketing {
        grid-column: span 12;
    }

    .neo-bento-card--automation,
    .neo-bento-card--storefront {
        grid-column: span 6;
    }

    .neo-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .neo-footer__grid {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .neo-announcement {
        display: none;
    }

    .neo-nav {
        min-height: 70px;
        grid-template-columns: auto auto;
    }

    .neo-nav-toggle {
        display: inline-flex;
        width: 48px;
        height: 42px;
        align-items: center;
        justify-self: end;
        justify-content: center;
        border: 1px solid var(--line);
        border-radius: 9px;
        background: #fff;
        flex-direction: column;
        gap: 4px;
    }

    .neo-nav-toggle span {
        width: 18px;
        height: 2px;
        background: var(--dark);
    }

    .neo-nav-toggle b {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .neo-nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 18px;
        left: 18px;
        display: none;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 15px;
        background: #fff;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        gap: 2px;
    }

    .neo-nav-links.is-open {
        display: flex;
    }

    .neo-nav-links a {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
    }

    .neo-nav-links a::after {
        display: none;
    }

    .neo-nav-links a:hover,
    .neo-nav-links a.is-current {
        background: var(--soft-green);
        color: var(--green-dark);
    }

    .neo-nav-actions {
        display: none;
    }

    .neo-hero {
        padding-top: 62px;
    }

    .neo-console__bar {
        grid-template-columns: 1fr auto;
    }

    .neo-console__tabs {
        display: none;
    }

    .neo-console__panel[data-console-panel="overview"] {
        grid-template-columns: 1fr;
    }

    .neo-console__sidebar {
        display: none;
    }

    .neo-console__workspace {
        padding: 18px;
    }

    .neo-console__panel {
        min-height: auto;
    }

    .neo-pillar-strip__grid {
        grid-template-columns: 1fr;
    }

    .neo-pillar-strip article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .neo-pillar-strip article:last-child {
        border-bottom: 0;
    }

    .neo-bento-card--catalog {
        grid-template-columns: 1fr;
    }

    .neo-bento-card--automation,
    .neo-bento-card--storefront {
        grid-column: span 12;
    }

    .neo-design-section__grid {
        grid-template-columns: 1fr;
    }

    .neo-design-section__copy {
        max-width: 760px;
        text-align: center;
    }

    .neo-theme-switch {
        justify-content: center;
    }

    .neo-integration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .neo-price-grid {
        grid-template-columns: 1fr;
    }

    .neo-price-card.is-featured {
        transform: none;
    }

    .neo-faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .neo-faq-layout__copy {
        text-align: center;
    }

    .neo-onboarding__grid,
    .neo-contact__grid {
        grid-template-columns: 1fr;
    }

    .neo-onboarding__intro {
        position: static;
        max-width: 760px;
        text-align: center;
    }

    .neo-onboarding__promise {
        text-align: left;
    }

    .neo-legal__grid {
        grid-template-columns: 1fr;
    }

    .neo-legal__nav {
        position: static;
        display: flex;
        overflow-x: auto;
    }

    .neo-legal__nav a {
        min-width: max-content;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .neo-footer-cta__inner {
        grid-template-columns: 1fr;
    }

    .neo-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .neo-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .neo-shell {
        width: min(100% - 28px, var(--shell));
    }

    .neo-brand__symbol {
        width: 38px;
        height: 38px;
    }

    .neo-brand__copy strong {
        font-size: 18px;
    }

    .neo-brand__copy small {
        display: none;
    }

    .neo-hero {
        padding: 48px 0;
    }

    .neo-hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .neo-hero__lead {
        font-size: 16px;
    }

    .neo-hero__actions,
    .neo-hero__proof {
        align-items: stretch;
        flex-direction: column;
    }

    .neo-hero__proof span {
        justify-content: center;
    }

    .neo-console {
        margin-top: 38px;
        border-radius: 18px;
    }

    .neo-console__bar {
        min-height: 64px;
        padding: 0 14px;
    }

    .neo-console__online {
        font-size: 9px;
    }

    .neo-console__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .neo-metric-grid {
        grid-template-columns: 1fr;
    }

    .neo-section {
        padding: 66px 0;
    }

    .neo-section-heading {
        margin-bottom: 32px;
    }

    .neo-section-heading h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .neo-bento {
        display: block;
    }

    .neo-bento-card {
        min-height: 0;
        margin-bottom: 14px;
        padding: 22px;
        border-radius: 20px;
    }

    .neo-bento-card__copy h3 {
        font-size: 24px;
    }

    .neo-catalog-ui {
        margin-top: 28px;
    }

    .neo-catalog-ui__row {
        grid-template-columns: 40px 1fr auto;
    }

    .neo-catalog-ui__row > span {
        width: 40px;
        height: 40px;
    }

    .neo-catalog-ui__row em {
        display: none;
    }

    .neo-order-mini {
        grid-template-columns: 1fr;
    }

    .neo-automation-flow {
        align-items: stretch;
        flex-direction: column;
    }

    .neo-automation-flow > i {
        width: 2px;
        height: 18px;
        margin-inline: auto;
    }

    .neo-design-section {
        padding: 66px 0;
    }

    .neo-design-section__copy h2 {
        font-size: 38px;
    }

    .neo-store-preview__header nav {
        display: none;
    }

    .neo-store-preview__hero {
        min-height: 230px;
        padding: 22px;
    }

    .neo-store-preview__grid,
    .neo-integration-grid,
    .neo-feature-grid {
        grid-template-columns: 1fr;
    }

    .neo-page-hero {
        padding: 58px 0 38px;
    }

    .neo-page-hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .neo-onboarding {
        padding: 48px 0 66px;
    }

    .neo-onboarding__intro h1 {
        font-size: 40px;
    }

    .neo-form-card {
        padding: 22px;
        border-radius: 18px;
    }

    .neo-form-card::before {
        margin: -22px -22px 22px;
    }

    .neo-form-grid--2,
    .neo-plan-options {
        grid-template-columns: 1fr;
    }

    .neo-success__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .neo-legal__content {
        padding: 22px;
    }

    .neo-footer-cta {
        width: calc(100% - 28px);
        border-radius: 20px 20px 0 0;
    }

    .neo-footer-cta__inner {
        padding: 30px 20px;
    }

    .neo-footer-cta h2 {
        font-size: 32px;
    }

    .neo-footer-start > div {
        grid-template-columns: 1fr;
    }

    .neo-footer__grid {
        grid-template-columns: 1fr;
    }

    .neo-footer__brand {
        grid-column: auto;
    }

    .neo-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .neo-cookie {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none;
        align-items: stretch;
        flex-direction: column;
    }

    .neo-cookie button {
        width: 100%;
    }
}

/* =========================================================
   FSPV COMMERCE — TRANSACTIONAL REGISTRATION V3
   ========================================================= */

.neo-password-hint {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.45;
}

.neo-consent a {
    color: var(--orange);
    font-weight: 900;
}

.neo-dev-verification {
    margin: 24px 0;
    padding: 18px;
    border: 1px solid #f7c9ab;
    border-radius: 14px;
    background: var(--soft-orange);
    text-align: left;
}

.neo-dev-verification strong {
    display: block;
    color: var(--dark);
    font-size: 12px;
}

.neo-dev-verification p {
    margin: 7px 0 15px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

.neo-verification-shell {
    max-width: 720px;
}

.neo-verification-error {
    text-align: center;
}

.neo-verification-error > span {
    display: grid;
    width: 62px;
    height: 62px;
    margin-inline: auto;
    place-items: center;
    border-radius: 18px;
    background: var(--soft-orange);
    color: var(--orange);
}

.neo-verification-error > small {
    display: block;
    margin-top: 18px;
    color: var(--orange-dark);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.neo-verification-error h1 {
    margin: 8px 0 10px;
    color: var(--dark);
    font-size: 30px;
}

.neo-verification-error p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}
