:root {
    --np-navy: #0d1b3d;
    --np-navy-2: #071534;
    --np-teal: #0fa68c;
    --np-teal-dark: #078572;
    --np-charcoal: #222b33;
    --np-muted: #65728a;
    --np-line: #e5eaf2;
    --np-soft: #f7f9fc;
    --np-white: #ffffff;
    --np-shadow: 0 20px 55px rgba(13, 27, 61, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing-body {
    margin: 0;
    background: #ffffff;
    color: var(--np-navy);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.landing-header {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--np-line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
}

.nav-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand-link {
    color: var(--np-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.landing-logo-img {
    max-height: 48px;
    max-width: 184px;
    object-fit: contain;
}

.landing-logo-dark-img {
    filter: none;
}

.icon-box i,
.line-icon i,
.ecosystem-grid span i,
.whatsapp-float i,
.hero-float-card i {
    font-size: 1rem;
    line-height: 1;
}

.np-mark {
    width: 44px;
    height: 42px;
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    transform: skewY(-1deg);
}

.np-mark span,
.np-mark i,
.np-mark b {
    display: block;
    background: var(--np-navy);
    clip-path: polygon(0 0, 100% 32%, 100% 100%, 0 68%);
}

.np-mark i {
    background: var(--np-teal);
    clip-path: polygon(26% 0, 100% 0, 100% 100%, 26% 68%);
}

.np-mark b {
    grid-column: 1 / 3;
    background: linear-gradient(90deg, var(--np-navy) 0 48%, var(--np-teal) 48% 100%);
    clip-path: polygon(0 0, 100% 45%, 100% 100%, 0 56%);
}

.np-word {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    line-height: 1;
    font-size: 1.58rem;
    letter-spacing: -.03em;
}

.np-word strong { color: var(--np-navy); font-weight: 800; }
.np-word em { color: var(--np-teal); font-style: normal; font-weight: 800; }
.np-word small {
    flex-basis: 100%;
    color: var(--np-charcoal);
    font-size: .38rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-top: 3px;
    font-weight: 800;
}

.landing-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
}

.landing-nav a {
    color: var(--np-navy);
    font-size: .9rem;
    font-weight: 750;
    text-decoration: none;
    padding: 8px 0;
}

.landing-nav a:hover { color: var(--np-teal); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn { border-radius: 6px; font-weight: 800; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
.btn-light-outline { border: 1px solid #cbd5e1; color: var(--np-navy); background: #fff; padding: 0 18px; }
.btn-light-outline:hover { border-color: var(--np-navy); color: var(--np-navy); }
.btn-teal { background: var(--np-teal); color: #fff; border: 1px solid var(--np-teal); padding: 0 18px; }
.btn-teal:hover { background: var(--np-teal-dark); border-color: var(--np-teal-dark); color: #fff; }
.nav-toggle { display: none; border: 1px solid var(--np-line); background: #fff; width: 42px; height: 42px; font-weight: 900; }

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 34px 0 54px;
    background:
        radial-gradient(circle at 88% 12%, rgba(15,166,140,.10), transparent 26%),
        radial-gradient(circle at 10% 8%, rgba(36,99,235,.06), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.hero-media-layer,
.hero-overlay,
.hero-noise {
    position: absolute;
    inset: 0;
}

.hero-media-layer { pointer-events: none; }
.hero-bg-video,
.hero-bg-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.06) contrast(1.04);
}
.hero-bg-poster {
    opacity: .54;
}
.hero-bg-video {
    opacity: .58;
}
.hero-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,.70) 0%, rgba(255,255,255,.62) 38%, rgba(255,255,255,.44) 66%, rgba(255,255,255,.60) 100%);
}
.hero-noise {
    background-image: radial-gradient(rgba(13,27,61,.035) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .22;
}
.hero-shell {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(13,27,61,.06);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(255,255,255,.78));
    backdrop-filter: blur(6px);
    box-shadow: 0 30px 80px rgba(13,27,61,.08);
    padding: 42px;
}
.hero-grid {
    display: grid;
    grid-template-columns: .93fr 1.07fr;
    gap: 38px;
    align-items: center;
}
.pill {
    display: inline-flex;
    align-items: center;
    background: rgba(15,166,140,.12);
    color: var(--np-teal-dark);
    padding: 7px 18px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
    margin-bottom: 18px;
}
.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 5.55rem);
    line-height: .94;
    font-weight: 900;
    letter-spacing: -.065em;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hero-copy h1 span { display: block; }
.hero-copy h1 .accent-line {
    color: var(--np-teal);
    text-shadow: 0 10px 34px rgba(15,166,140,.14);
}
.hero-copy p {
    margin: 24px 0 0;
    color: #43516a;
    max-width: 560px;
    font-size: 1.06rem;
    line-height: 1.72;
    font-weight: 550;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn-hero-primary { background: var(--np-teal); color: #fff; min-height: 56px; padding: 0 24px; border: 1px solid var(--np-teal); box-shadow: 0 14px 35px rgba(15,166,140,.24); }
.btn-hero-primary:hover { color: #fff; background: var(--np-teal-dark); }
.btn-hero-secondary { background: #fff; color: var(--np-navy); border: 1px solid #cbd5e1; min-height: 56px; padding: 0 22px; }
.play-dot { width: 18px; height: 18px; border: 2px solid var(--np-navy); border-radius: 50%; position: relative; }
.play-dot::after { content: ''; position: absolute; left: 6px; top: 4px; border-left: 6px solid var(--np-navy); border-top: 4px solid transparent; border-bottom: 4px solid transparent; }
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
    max-width: 620px;
}
.trust-row div { display: flex; align-items: center; gap: 9px; color: var(--np-muted); font-size: .83rem; font-weight: 750; }
.trust-icon {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(15,166,140,.28);
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: var(--np-teal);
    background: rgba(15,166,140,.08);
}
.hero-visual { min-height: 560px; position: relative; }
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(14px);
    opacity: .8;
}
.hero-glow-a {
    width: 240px;
    height: 240px;
    right: 12%;
    top: 0;
    background: radial-gradient(circle, rgba(15,166,140,.16) 0%, rgba(15,166,140,0) 72%);
}
.hero-glow-b {
    width: 220px;
    height: 220px;
    left: 10%;
    bottom: 6%;
    background: radial-gradient(circle, rgba(36,99,235,.12) 0%, rgba(36,99,235,0) 72%);
}
.hero-image-stack {
    position: absolute;
    inset: 12px 0 0;
    min-height: 530px;
}
.hero-panel-image {
    position: absolute;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(13,27,61,.10);
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(13,27,61,.18);
}
.hero-panel-back {
    width: 84%;
    height: 410px;
    right: 0;
    top: 34px;
    z-index: 1;
    opacity: .96;
}
.hero-panel-middle {
    width: 62%;
    height: 300px;
    left: 0;
    top: 146px;
    z-index: 2;
    transform: rotate(-1.6deg);
}
.hero-panel-front {
    width: 50%;
    height: 246px;
    right: 22px;
    bottom: 0;
    z-index: 3;
    transform: rotate(1.2deg);
}
.hero-float-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(13,27,61,.08);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(13,27,61,.10);
    padding: 12px 14px;
    backdrop-filter: blur(8px);
}
.hero-float-card i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(15,166,140,.12);
    color: var(--np-teal-dark);
    font-size: 1.1rem;
}
.hero-float-card strong { display: block; font-size: 1rem; color: var(--np-navy); }
.hero-float-card small { color: var(--np-muted); font-weight: 700; }
.hero-float-card-top { top: 24px; left: 22px; }
.hero-float-card-bottom { right: 18px; bottom: 56px; }


.module-section,
.operations-section,
.why-section,
.ecosystem-section,
.plans-section,
.social-section,
.faq-section { padding: 46px 0; }
.section-head { margin-bottom: 24px; }
.section-head h2 { margin: 0; font-size: clamp(1.55rem, 2.6vw, 2.3rem); font-weight: 900; letter-spacing: -.04em; }
.section-head p { margin: 6px 0 0; color: var(--np-muted); font-weight: 650; }
.centered { text-align: center; }
.compact-left { display: flex; justify-content: space-between; align-items: end; gap: 16px; }

.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.module-card,
.op-stack article,
.best-card,
.sales-card,
.plan-card,
.testimonial-card,
.stat-card,
.faq-grid details,
.ecosystem-grid article {
    background: #fff;
    border: 1px solid var(--np-line);
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(13,27,61,.05);
}
.module-card { min-height: 132px; padding: 18px; display: flex; gap: 14px; }
.icon-box { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; background: var(--np-navy); color: #fff; border-radius: 7px; font-size: .95rem; font-weight: 900; letter-spacing: -.02em; }
.icon-box.dark { background: var(--np-navy-2); }
.icon-box span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .68rem;
    line-height: 1;
}

.module-card h3 { font-size: 1rem; margin: 0 0 5px; font-weight: 900; }
.module-card p { margin: 0 0 12px; color: var(--np-muted); font-size: .86rem; line-height: 1.45; }
.module-card a,
.addons-copy a,
.op-stack a,
.best-card a { color: var(--np-teal-dark); text-decoration: none; font-weight: 900; font-size: .82rem; }

.addons-section { padding: 42px 0; background: #fbfcff; border-top: 1px solid var(--np-line); border-bottom: 1px solid var(--np-line); }
.addons-grid-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: stretch; }
.addons-copy { padding: 18px 0; }
.addons-copy span { color: var(--np-teal); font-weight: 900; }
.addons-copy h2 { margin: 8px 0 10px; font-size: 1.9rem; line-height: 1.1; font-weight: 900; letter-spacing: -.04em; }
.addons-copy p { color: var(--np-muted); line-height: 1.6; font-weight: 600; }
.addons-row { display: grid; grid-auto-flow: column; grid-auto-columns: 188px; gap: 14px; overflow-x: auto; padding: 6px 2px 14px; scrollbar-width: thin; }
.addon-card { background: #fff; border: 1px solid var(--np-line); border-radius: 13px; padding: 18px; box-shadow: 0 12px 30px rgba(13,27,61,.07); min-height: 238px; display: flex; flex-direction: column; }
.addon-card h3 { font-size: .98rem; margin: 14px 0 6px; font-weight: 900; }
.addon-card p { color: var(--np-muted); line-height: 1.42; font-size: .84rem; flex: 1; }
.addon-card strong { display: block; color: var(--np-navy); margin: 4px 0 12px; }
.btn-mini { background: var(--np-teal); color: #fff; border-radius: 6px; min-height: 34px; font-size: .78rem; }
.btn-mini:hover { color: #fff; background: var(--np-teal-dark); }

.operations-section { background: #fff; }
.operations-grid { display: grid; grid-template-columns: .85fr 1.35fr 1.1fr .85fr; gap: 16px; align-items: stretch; }
.op-stack { display: grid; gap: 16px; }
.op-stack article { padding: 18px; }
.op-stack h3,
.best-card h3 { font-size: 1rem; margin: 12px 0 6px; font-weight: 900; }
.op-stack p { margin: 0 0 14px; color: var(--np-muted); font-size: .86rem; line-height: 1.48; }
.sales-card { padding: 22px; }
.sales-head span { display: block; color: var(--np-muted); font-weight: 800; }
.sales-head strong { display: inline-block; font-size: 1.5rem; margin-top: 5px; }
.sales-head em { color: var(--np-teal); font-style: normal; font-weight: 900; margin-left: 12px; }
.sales-bars { height: 218px; margin: 20px 0; border: 1px solid var(--np-line); border-radius: 11px; display: flex; align-items: end; gap: 16px; padding: 24px; background: #fbfcff; }
.sales-bars i { flex: 1; display: block; background: #2463eb; border-radius: 8px 8px 0 0; }
.sales-bars i:nth-child(1) { height: 32%; }
.sales-bars i:nth-child(2) { height: 44%; }
.sales-bars i:nth-child(3) { height: 58%; }
.sales-bars i:nth-child(4) { height: 48%; }
.sales-bars i:nth-child(5) { height: 72%; }
.sales-bars i:nth-child(6) { height: 86%; }
.sales-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sales-mini div { background: #fbfcff; border: 1px solid var(--np-line); border-radius: 10px; padding: 12px; }
.sales-mini b { display: block; font-size: 1.2rem; }
.sales-mini small { color: var(--np-muted); font-weight: 750; }
.best-card { padding: 20px; }
.best-card div { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid #f0f3f8; }
.best-card div span { width: 32px; height: 32px; background: linear-gradient(135deg, #f1e8d8, #ffffff); border: 1px solid #e8d7c0; border-radius: 8px; }
.best-card strong { font-size: .86rem; }
.best-card em { font-style: normal; color: var(--np-navy); font-weight: 850; font-size: .82rem; }
.best-card a { display: inline-block; margin-top: 12px; }

.why-section { background: #fbfcff; border-top: 1px solid var(--np-line); border-bottom: 1px solid var(--np-line); }
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.why-grid article { text-align: center; padding: 8px 10px; }
.line-icon { width: 38px; height: 38px; display: grid; place-items: center; margin: 0 auto 10px; color: var(--np-navy); border: 1px solid #d8e0ec; border-radius: 9px; font-size: .92rem; font-weight: 900; }
.why-grid h3 { margin: 0 0 4px; font-size: .9rem; font-weight: 900; }
.why-grid p { margin: 0; color: var(--np-muted); font-size: .78rem; line-height: 1.42; }

.ecosystem-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.ecosystem-grid article { text-align: center; padding: 18px 10px; min-height: 100px; }
.ecosystem-grid span { width: 32px; height: 32px; border: 1px solid #d8e0ec; border-radius: 8px; display: grid; place-items: center; margin: 0 auto 10px; font-size: .9rem; font-weight: 900; }
.ecosystem-grid p { margin: 0; color: var(--np-navy); font-size: .84rem; font-weight: 750; line-height: 1.3; }

.plans-section { background: #fbfcff; }
.plans-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.plan-card { padding: 24px; position: relative; display: flex; flex-direction: column; min-height: 370px; }
.plan-card.popular { border-color: var(--np-teal); box-shadow: 0 16px 42px rgba(15,166,140,.16); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--np-teal); color: #fff; padding: 5px 20px; border-radius: 999px; font-size: .72rem; font-weight: 900; white-space: nowrap; }
.plan-card-head { min-height: 104px; }
.plan-card h3 { margin: 0; font-size: 1.18rem; font-weight: 900; }
.plan-card p { color: var(--np-muted); font-weight: 650; margin: 8px 0 0; line-height: 1.45; }
.plan-price { margin-top: 14px; min-height: 48px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; }
.plan-price strong { font-size: 2rem; font-weight: 950; letter-spacing: -.05em; }
.plan-price span { color: var(--np-muted); font-weight: 800; margin-left: 5px; }
.plan-feature-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; flex: 1; align-content: start; }
.plan-feature-list li { color: #384660; font-size: .9rem; font-weight: 650; position: relative; padding-left: 20px; line-height: 1.35; }
.plan-feature-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--np-teal); }
.plan-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.plan-actions .btn { width: 100%; min-height: 42px; padding-left: 12px; padding-right: 12px; }
.btn-plan { border: 1px solid #cbd5e1; color: var(--np-navy); background: #fff; }
.btn-plan:hover { border-color: var(--np-navy); color: var(--np-navy); }
.plan-note { text-align: center; color: var(--np-muted); font-weight: 650; margin: 22px 0 0; }
.landing-plan-modal[hidden] { display: none; }
.landing-plan-modal { position: fixed; inset: 0; z-index: 120; background: rgba(13, 27, 61, .58); padding: 24px; display: flex; align-items: flex-start; justify-content: center; overflow: auto; }
.landing-plan-modal-panel { width: min(760px, 100%); background: #fff; border: 1px solid var(--np-line); border-radius: 18px; box-shadow: 0 24px 70px rgba(13,27,61,.28); padding: 24px; position: relative; margin: auto 0; }
.landing-plan-modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border: 1px solid #d7deea; background: #fff; color: var(--np-navy); border-radius: 9px; font-size: 1.3rem; line-height: 1; font-weight: 800; }
.plan-modal-head { padding-right: 44px; }
.plan-modal-head span { display: inline-flex; color: var(--np-teal-dark); background: rgba(15,166,140,.1); border: 1px solid rgba(15,166,140,.2); border-radius: 999px; padding: 5px 12px; font-size: .75rem; font-weight: 900; }
.plan-modal-head h2 { margin: 12px 0 6px; color: var(--np-navy); font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 950; letter-spacing: -.04em; }
.plan-modal-head p { margin: 0; color: var(--np-muted); font-weight: 650; line-height: 1.55; }
.plan-modal-price-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 20px 0 14px; }
.plan-modal-price-row div,
.plan-modal-capacity article { border: 1px solid #e2e8f0; background: #fbfcff; border-radius: 12px; padding: 14px; }
.plan-modal-price-row b,
.plan-modal-capacity span { display: block; color: var(--np-muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 900; }
.plan-modal-price-row strong { display: block; margin-top: 4px; color: var(--np-navy); font-size: 1.25rem; font-weight: 950; }
.plan-modal-capacity { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 20px; }
.plan-modal-capacity strong { display: block; color: var(--np-navy); font-size: .96rem; line-height: 1.3; margin-top: 5px; }
.plan-modal-section h3 { margin: 0 0 12px; color: var(--np-navy); font-size: 1rem; font-weight: 950; }
.plan-modal-addons { display: grid; gap: 10px; max-height: 300px; overflow: auto; padding-right: 4px; }
.plan-modal-addon { border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 14px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: start; }
.plan-modal-addon strong { color: var(--np-navy); font-size: .94rem; }
.plan-modal-addon p { margin: 4px 0 0; color: var(--np-muted); font-size: .84rem; line-height: 1.45; font-weight: 650; }
.plan-modal-addon span { color: var(--np-teal-dark); background: rgba(15,166,140,.1); border-radius: 999px; padding: 5px 10px; font-size: .72rem; font-weight: 900; white-space: nowrap; }
.plan-modal-empty { border: 1px dashed #cbd5e1; background: #fbfcff; border-radius: 12px; padding: 14px; color: var(--np-muted); font-weight: 700; }
.plan-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.plan-modal-actions .btn { min-width: 150px; }

.social-section { background: #ffffff; }
.social-proof-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 22px;
    align-items: stretch;
}
.stat-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.stat-card {
    padding: 22px 18px;
    min-height: 136px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    width: 86px;
    height: 86px;
    right: -36px;
    bottom: -42px;
    border-radius: 50%;
    background: rgba(20, 184, 166, .12);
}
.stat-card strong { display: block; color: var(--np-teal); font-size: 1.82rem; font-weight: 950; letter-spacing: -.04em; line-height: 1; }
.stat-card span { color: var(--np-navy); font-weight: 850; margin-top: 10px; line-height: 1.28; }
.testimonial-slider {
    position: relative;
    min-width: 0;
    padding: 0 44px;
}
.testimonial-viewport {
    overflow: hidden;
    border-radius: 13px;
}
.testimonial-track {
    display: flex;
    gap: 16px;
    align-items: stretch;
    transition: transform 1.45s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}
.testimonial-slide {
    flex: 0 0 calc((100% - 32px) / 3);
}
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    border: 1px solid var(--np-line);
    background: #ffffff;
    color: var(--np-navy);
    display: grid;
    place-items: center;
    box-shadow: 0 16px 38px rgba(13, 27, 61, .12);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.testimonial-nav:hover {
    background: var(--np-navy);
    color: #ffffff;
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 18px 42px rgba(13, 27, 61, .18);
}
.testimonial-nav:disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}
.testimonial-nav-prev { left: 0; }
.testimonial-nav-next { right: 0; }
.testimonial-card {
    padding: 22px;
    min-height: 286px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--np-teal), rgba(36,99,235,.82));
}
.testimonial-card-top {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e6edf7, #d5fff5);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--np-navy);
    font-weight: 950;
    letter-spacing: -.03em;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-card strong { display: block; font-size: .96rem; font-weight: 900; color: var(--np-navy); }
.testimonial-card small { color: var(--np-muted); font-weight: 750; }
.testimonial-stars {
    display: inline-flex;
    gap: 3px;
    color: #f59e0b;
    font-size: .95rem;
    margin-bottom: 12px;
}
.testimonial-card p {
    color: #27364f;
    font-weight: 650;
    line-height: 1.58;
    margin: 0;
    flex: 1;
}
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 18px; }
.faq-grid details { padding: 0; overflow: hidden; }
.faq-grid summary { list-style: none; padding: 18px 20px; cursor: pointer; font-weight: 900; display: flex; justify-content: space-between; gap: 16px; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after { content: '+'; color: var(--np-muted); font-weight: 900; }
.faq-grid details[open] summary::after { content: '–'; }
.faq-grid p { margin: 0; color: var(--np-muted); line-height: 1.55; padding: 0 20px 18px; }

.cta-section { padding: 28px 0 0; }
.cta-card {
    background: var(--np-navy);
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 34px 42px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    box-shadow: 0 18px 55px rgba(13,27,61,.25);
}
.cta-score {
    min-width: 184px;
    min-height: 132px;
    padding: 20px 22px;
    border: 1px solid rgba(255,255,255,.28);
    border-top: 2px solid rgba(20,184,166,.72);
    border-radius: 14px;
    background: transparent;
    box-shadow: 0 18px 44px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cta-score strong {
    display: block;
    color: #ffffff;
    font-size: clamp(2.35rem, 4vw, 3.65rem);
    font-weight: 950;
    letter-spacing: -.06em;
    line-height: .95;
    text-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.cta-score span {
    display: block;
    color: #e8fff9;
    font-size: .9rem;
    font-weight: 850;
    line-height: 1.25;
    margin: 10px auto 0;
    max-width: 158px;
}
.cta-card h2 { font-size: 1.9rem; margin: 0 0 8px; font-weight: 900; letter-spacing: -.04em; }
.cta-card p { margin: 0; color: #d5deed; line-height: 1.6; max-width: 700px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: end; }
.btn-outline-white { border: 1px solid rgba(255,255,255,.45); color: #fff; background: transparent; padding: 0 18px; }
.btn-outline-white:hover { color: #fff; border-color: #fff; }

.landing-footer { background: var(--np-navy-2); color: #fff; padding: 34px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr repeat(4, 1fr); gap: 34px; }
.footer-brand p,
.footer-grid p { color: #b9c4d8; line-height: 1.55; }
.brand-link.light .np-word strong,
.brand-link.light .np-word small { color: #fff; }
.footer-grid h3 { font-size: .94rem; margin: 0 0 14px; font-weight: 900; }
.footer-grid a { display: block; color: #b9c4d8; text-decoration: none; margin-bottom: 10px; font-size: .9rem; font-weight: 650; }
.footer-grid a:hover { color: #fff; }
.social-dots,
.social-links { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.social-dots span,
.social-links a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); border-radius: 9px; opacity: 1; display: grid; place-items: center; color: #ffffff; margin: 0; font-size: 1.05rem; }
.social-links a:hover { border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.14); color: #ffffff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 26px; padding-top: 18px; color: #b9c4d8; display: flex; justify-content: space-between; gap: 16px; font-size: .84rem; font-weight: 650; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 54px; height: 54px; background: #1fbf74; color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 950; text-decoration: none; box-shadow: 0 14px 35px rgba(31,191,116,.32); font-size: 1.35rem; }

@media (max-width: 1150px) {
    .module-grid { grid-template-columns: repeat(2, 1fr); }
    .operations-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .ecosystem-grid { grid-template-columns: repeat(4, 1fr); }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .social-proof-grid { grid-template-columns: 1fr; }
    .stat-column { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .testimonial-slide { flex-basis: calc((100% - 16px) / 2); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
    .nav-toggle { display: grid; place-items: center; margin-left: auto; }
    .landing-nav,
    .nav-actions {
        display: none;
        position: absolute;
        left: 24px;
        right: 24px;
        top: 72px;
        background: #fff;
        border: 1px solid var(--np-line);
        box-shadow: var(--np-shadow);
        padding: 18px;
    }
    .landing-nav.is-open { display: grid; gap: 8px; }
    .nav-actions.is-open { display: grid; top: 300px; }
    .hero-shell { padding: 32px 26px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 510px; }
    .hero-panel-back { width: 92%; }
    .hero-panel-middle { width: 68%; }
    .hero-panel-front { width: 56%; }
    .cta-card { grid-template-columns: 1fr; }
    .cta-score { max-width: 220px; }
    .cta-actions { justify-content: start; }
}

@media (max-width: 720px) {
    .landing-container { width: min(100% - 28px, 1180px); }
    .hero-section { padding-top: 22px; }
    .hero-shell { border-radius: 22px; padding: 24px 18px; }
    .trust-row { grid-template-columns: repeat(2, 1fr); }
    .module-grid,
    .operations-grid,
    .why-grid,
    .ecosystem-grid,
    .stat-column,
    .faq-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .plan-card { padding: 16px; min-height: auto; }
    .plan-price strong { font-size: 1.55rem; }
    .plan-feature-list { gap: 8px; margin: 14px 0; }
    .plan-feature-list li { font-size: .82rem; padding-left: 16px; }
    .plan-feature-list li::before { width: 7px; height: 7px; top: 6px; }
    .plan-card-head { min-height: auto; }
    .plan-actions,
    .plan-modal-price-row,
    .plan-modal-capacity { grid-template-columns: 1fr; }
    .landing-plan-modal { padding: 12px; }
    .landing-plan-modal-panel { padding: 20px 16px; border-radius: 14px; }
    .plan-modal-addon { grid-template-columns: 1fr; }
    .plan-modal-actions { display: grid; grid-template-columns: 1fr; }
    .plan-modal-actions .btn { width: 100%; }
    .addons-grid-wrap { grid-template-columns: 1fr; }

    .testimonial-slider { padding: 0 42px; }
    .testimonial-slide { flex-basis: 100%; }
    .testimonial-nav { width: 36px; height: 36px; }
    .stat-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .social-proof-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 440px; }
    .hero-image-stack { min-height: 390px; inset: 4px 0 0; }
    .hero-panel-back { width: 96%; height: 280px; top: 30px; }
    .hero-panel-middle { width: 70%; height: 210px; top: 122px; }
    .hero-panel-front { width: 64%; height: 190px; right: 4px; bottom: 0; }
    .hero-float-card { position: relative; top: auto; left: auto; right: auto; bottom: auto; margin: 14px 0 0; }
    .cta-card { padding: 28px 22px; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
    .stat-column { grid-template-columns: 1fr; }
    .testimonial-slider { padding: 0 34px; }
}

.addons-catalog-wrap {
    display: grid;
    gap: 24px;
}

.addons-catalog-head span {
    color: var(--np-teal);
    font-weight: 900;
}

.addons-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.catalog-addon-card {
    min-height: 100%;
    padding: 14px;
    gap: 12px;
}

.addon-card-media {
    height: 138px;
    border-radius: 11px;
    background: #f1f5f9;
    border: 1px solid var(--np-line);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.addon-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.addon-card-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.landing-addon-modal[hidden] {
    display: none;
}

.landing-addon-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(13, 27, 61, .62);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: auto;
}

.landing-addon-modal-panel {
    width: min(980px, 100%);
    background: #fff;
    border: 1px solid var(--np-line);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(13,27,61,.28);
    padding: 24px;
    position: relative;
    margin: auto 0;
}

.addon-modal-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: stretch;
}

.addon-modal-gallery {
    display: grid;
    gap: 12px;
    align-content: start;
}

.addon-modal-image-wrap {
    position: relative;
    min-height: 360px;
    border-radius: 16px;
    border: 1px solid var(--np-line);
    background: #f8fafc;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.addon-modal-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform .22s ease;
}

.addon-modal-image-wrap:hover img {
    transform: scale(1.25);
}

.addon-modal-icon {
    width: 86px;
    height: 86px;
    border-radius: 18px;
    background: var(--np-navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 2.4rem;
}

.addon-modal-slider-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.addon-modal-slider-actions button {
    width: 38px;
    height: 38px;
    border: 1px solid #d7deea;
    background: #fff;
    color: var(--np-navy);
    border-radius: 9px;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 900;
}

.addon-modal-slider-actions span {
    color: var(--np-muted);
    font-weight: 900;
    min-width: 74px;
    text-align: center;
}

.addon-modal-copy {
    padding-right: 42px;
}

.addon-modal-copy > span {
    display: inline-flex;
    color: var(--np-teal-dark);
    background: rgba(15,166,140,.1);
    border: 1px solid rgba(15,166,140,.2);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: .75rem;
    font-weight: 900;
}

.addon-modal-copy h2 {
    margin: 12px 0 6px;
    color: var(--np-navy);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 950;
    letter-spacing: -.04em;
}

.addon-modal-copy p {
    color: var(--np-muted);
    font-weight: 650;
    line-height: 1.55;
}

.addon-modal-copy strong[data-addon-modal-price] {
    display: inline-flex;
    margin: 4px 0 16px;
    color: var(--np-navy);
    background: #fbfcff;
    border: 1px solid var(--np-line);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 950;
}

.addon-modal-details {
    color: #334155;
    font-size: .95rem;
    line-height: 1.6;
}

.addon-modal-details ul,
.addon-modal-details ol {
    padding-left: 20px;
}

.addon-modal-details p,
.addon-modal-details div {
    margin: 0 0 10px;
}

.addon-modal-details p:last-child,
.addon-modal-details div:last-child,
.addon-modal-details ul:last-child,
.addon-modal-details ol:last-child {
    margin-bottom: 0;
}

@media (max-width: 1060px) {
    .addons-catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .addons-catalog-grid,
    .addon-modal-grid {
        grid-template-columns: 1fr;
    }

    .addon-modal-copy {
        padding-right: 0;
    }

    .addon-modal-image-wrap,
    .addon-modal-image-wrap img {
        min-height: 260px;
    }
}

@media (max-width: 560px) {
    .addons-catalog-grid {
        grid-template-columns: 1fr;
    }

    .landing-addon-modal {
        padding: 12px;
    }

    .landing-addon-modal-panel {
        padding: 20px 16px;
        border-radius: 14px;
    }
}

.addons-catalog-page { padding-top: 128px; min-height: 76vh; }
.addons-catalog-page .addons-catalog-head h1 { margin: 8px 0 12px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.02; color: #10202f; letter-spacing: -.05em; }
.addons-catalog-page .catalog-addon-card h2 { font-size: 1.08rem; margin: 0 0 8px; color: #10202f; }
@media (max-width: 720px) { .addons-catalog-page { padding-top: 104px; } }

/* v71 landing motion and catalog adjustments */
section[id], article[id] { scroll-margin-top: 96px; }

.hero-panel-image {
    will-change: translate, transform;
    transition: transform .42s ease, box-shadow .42s ease, border-color .42s ease;
    animation: heroPanelFloat 7s ease-in-out infinite;
}
.hero-panel-middle { animation-delay: -1.1s; }
.hero-panel-front { animation-delay: -2.2s; }
.hero-float-card { animation: heroPanelFloat 6.5s ease-in-out infinite; }
.hero-float-card-bottom { animation-delay: -1.6s; }
.hero-panel-back:hover { transform: scale(1.06); box-shadow: 0 34px 88px rgba(13,27,61,.22); border-color: rgba(15,166,140,.22); }
.hero-panel-middle:hover { transform: rotate(-1.6deg) scale(1.06); box-shadow: 0 34px 88px rgba(13,27,61,.22); border-color: rgba(15,166,140,.22); }
.hero-panel-front:hover { transform: rotate(1.2deg) scale(1.06); box-shadow: 0 34px 88px rgba(13,27,61,.22); border-color: rgba(15,166,140,.22); }
@keyframes heroPanelFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -10px; }
}

.addons-row {
    display: block;
    overflow: hidden;
    padding: 6px 0 14px;
    scrollbar-width: none;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
}
.addons-row::-webkit-scrollbar { display: none; }
.addons-marquee-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: addonsMarquee 34s linear infinite;
}
.addons-marquee:hover .addons-marquee-track { animation-play-state: paused; }
.addon-card-compact {
    width: 188px;
    min-height: 214px;
    flex: 0 0 188px;
    padding: 18px;
}
.addon-card-compact .icon-box {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    font-size: 1.15rem;
}
.addon-card-compact h3 { margin-top: 13px; }
.addon-card-compact p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.38em;
    flex: initial;
}
.addon-card-compact strong { margin-top: auto; }
@keyframes addonsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.plan-card {
    box-shadow: 0 16px 42px rgba(13,27,61,.09);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 58px rgba(13,27,61,.14);
    border-color: rgba(15,166,140,.28);
}
.plan-card.popular:hover { box-shadow: 0 26px 64px rgba(15,166,140,.22); }

.modules-catalog-page { padding-top: 128px; min-height: 76vh; background: #fbfcff; }
.modules-catalog-wrap { display: grid; gap: 24px; }
.modules-catalog-head span { color: var(--np-teal); font-weight: 900; }
.modules-catalog-head h1 { margin: 8px 0 12px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.02; color: #10202f; letter-spacing: -.05em; }
.modules-catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.module-page-card {
    background: #fff;
    border: 1px solid var(--np-line);
    border-radius: 14px;
    box-shadow: 0 16px 42px rgba(13,27,61,.08);
    padding: 22px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    min-height: 210px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.module-page-card:hover,
.module-page-card:target {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(13,27,61,.13);
    border-color: rgba(15,166,140,.34);
}
.module-page-card .icon-box { width: 54px; height: 54px; flex-basis: 54px; font-size: 1.18rem; }
.module-page-card h2 { margin: 0 0 8px; color: var(--np-navy); font-size: 1.2rem; font-weight: 950; }
.module-page-card p { margin: 0 0 16px; color: var(--np-muted); line-height: 1.55; font-weight: 650; }

.catalog-addon-card { scroll-margin-top: 110px; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.catalog-addon-card:hover,
.catalog-addon-card:target { transform: translateY(-6px); box-shadow: 0 24px 58px rgba(13,27,61,.13); border-color: rgba(15,166,140,.34); }

@media (max-width: 980px) {
    .modules-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .modules-catalog-page { padding-top: 104px; }
    .modules-catalog-grid { grid-template-columns: 1fr; }
    .module-page-card { grid-template-columns: 1fr; }
    .addons-row { mask-image: none; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-panel-image,
    .hero-float-card,
    .addons-marquee-track { animation: none; }
    .addons-row { overflow-x: auto; }
}
