:root {
    --njs-dark: #050914;
    --njs-dark-soft: #081220;
    --njs-panel: #0d1828;
    --njs-paper: #ffffff;
    --njs-cream: #f8f1e5;
    --njs-text: #07111f;
    --njs-muted: #526177;
    --njs-gold: #d89a24;
    --njs-gold-light: #ffd36a;
    --njs-line: rgba(15, 23, 42, .10);
    --njs-shadow: 0 30px 90px rgba(15, 23, 42, .12);
    --njs-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--njs-text);
    background: var(--njs-cream);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.njs-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    background: rgba(5, 9, 20, .92);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .32);
    backdrop-filter: blur(20px);
}

.njs-header-inner {
    width: min(var(--njs-max), calc(100% - 40px));
    min-height: 88px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.njs-logo img {
    display: block;
    width: 138px;
    max-height: 58px;
    object-fit: contain;
}

.njs-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.njs-navigation a {
    padding: 11px 15px;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 850;
}

.njs-navigation a:hover {
    color: var(--njs-gold-light);
    background: rgba(255, 255, 255, .07);
}

.njs-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.njs-language-switcher {
    height: 46px;
    padding: 0 15px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    background: rgba(255, 255, 255, .08);
    font-weight: 900;
}

.njs-language-switcher option {
    color: #111827;
}

.njs-header-quote,
.njs-button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 950;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.njs-header-quote,
.njs-button-gold {
    color: #07111f;
    background: linear-gradient(
        135deg,
        var(--njs-gold),
        var(--njs-gold-light)
    );
    box-shadow: 0 22px 60px rgba(216, 154, 36, .24);
}

.njs-button-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .07);
}

.njs-header-quote:hover,
.njs-button:hover {
    transform: translateY(-3px);
}

.njs-menu-toggle {
    display: none;
}

.njs-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(
            circle at 15% 16%,
            rgba(216, 154, 36, .20),
            transparent 29%
        ),
        radial-gradient(
            circle at 88% 14%,
            rgba(255, 211, 106, .13),
            transparent 34%
        ),
        linear-gradient(135deg, #050914, #07111f 52%, #11142a);
}

.njs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .42;
    background:
        linear-gradient(
            rgba(255, 255, 255, .045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .04) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
}

.njs-hero-grid {
    position: relative;
    z-index: 2;
    width: min(var(--njs-max), calc(100% - 40px));
    min-height: calc(100vh - 88px);
    margin: 0 auto;
    padding: 74px 0;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    gap: 65px;
}

.njs-eyebrow {
    width: fit-content;
    margin-bottom: 22px;
    padding: 10px 16px;
    color: var(--njs-gold-light);
    border: 1px solid rgba(216, 154, 36, .44);
    border-radius: 999px;
    background: rgba(216, 154, 36, .11);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.njs-hero h1 {
    max-width: 760px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(46px, 5.9vw, 82px);
    line-height: .96;
    letter-spacing: -.065em;
}

.njs-hero-description {
    max-width: 750px;
    margin-bottom: 30px;
    color: #dbe5f2;
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.7;
}

.njs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.njs-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.njs-hero-tags span {
    padding: 8px 13px;
    color: #dbe5f2;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    font-size: 14px;
    font-weight: 800;
}

.njs-browser-frame {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 34px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, .12),
        rgba(255, 255, 255, .05)
    );
    box-shadow: 0 40px 120px rgba(0, 0, 0, .44);
    transform: rotate(-1.3deg);
}

.njs-browser-top {
    padding: 12px 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.njs-browser-top strong {
    color: #fff;
}

.njs-browser-dots {
    display: flex;
    gap: 7px;
}

.njs-browser-dots span {
    width: 25px;
    height: 5px;
    border-radius: 999px;
    background: rgba(216, 154, 36, .70);
}

.njs-browser-content {
    min-height: 405px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 86% 10%,
            rgba(216, 154, 36, .20),
            transparent 35%
        ),
        linear-gradient(135deg, #07101d, #101827);
}

.njs-browser-content small {
    color: var(--njs-gold-light);
    font-weight: 900;
}

.njs-browser-content h2 {
    margin: 16px 0 28px;
    color: #fff;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.njs-browser-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.njs-browser-cards article {
    min-height: 110px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
}

.njs-browser-cards b {
    display: block;
    margin-bottom: 24px;
    color: var(--njs-gold-light);
}

.njs-browser-cards span {
    color: #fff;
    font-weight: 850;
}

.njs-page-content {
    min-height: 500px;
    padding: 86px 0;
    background:
        radial-gradient(
            circle at 92% 4%,
            rgba(216, 154, 36, .11),
            transparent 25%
        ),
        linear-gradient(180deg, #f7efe2, #fff);
}

.njs-page-content > * {
    width: min(var(--njs-max), calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

/* Imported NJS development content */

.njs35-wrap {
    width: min(var(--njs-max), calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
}

.njs35-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 35px;
    padding: 45px;
    border: 1px solid var(--njs-line);
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--njs-shadow);
}

.njs35-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--njs-gold),
        var(--njs-gold-light),
        transparent
    );
}

.njs35-kicker {
    width: fit-content;
    margin-bottom: 20px;
    padding: 9px 14px;
    color: #8c5c06;
    border: 1px solid rgba(216, 154, 36, .30);
    border-radius: 999px;
    background: #fff6e2;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.njs35-section h2 {
    margin: 0 0 18px;
    color: var(--njs-text);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.njs35-section p {
    color: var(--njs-muted);
    font-size: 17px;
    line-height: 1.8;
}

.njs35-grid,
.njs35-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.njs35-card,
.njs35-step,
.njs35-panel {
    padding: 27px;
    border: 1px solid var(--njs-line);
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #fffaf2);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .075);
}

.njs35-card {
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.njs35-card:hover {
    transform: translateY(-7px);
    border-color: rgba(216, 154, 36, .37);
    box-shadow: 0 30px 78px rgba(216, 154, 36, .16);
}

.njs35-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: linear-gradient(135deg, #fff7e6, #efd49a);
    font-size: 25px;
}

.njs35-card h3,
.njs35-step h3,
.njs35-panel h3 {
    margin: 0 0 10px;
    color: var(--njs-text);
}

.njs35-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    margin-top: 28px;
}

.njs35-panel.dark {
    color: #fff;
    border-color: rgba(255, 255, 255, .12);
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(216, 154, 36, .24),
            transparent 38%
        ),
        linear-gradient(135deg, #07111f, #111827);
}

.njs35-panel.dark h3,
.njs35-panel.dark p,
.njs35-panel.dark li {
    color: #fff;
}

.njs35-list {
    padding: 0;
    list-style: none;
}

.njs35-list li {
    position: relative;
    margin: 12px 0;
    padding-left: 28px;
    color: var(--njs-muted);
}

.njs35-list li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    color: #9b6507;
    font-weight: 950;
}

.njs35-step b {
    width: 37px;
    height: 37px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c5c06;
    border-radius: 50%;
    background: #fff3d8;
}

.njs35-cta {
    margin-bottom: 35px;
    padding: 46px;
    color: #fff;
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(216, 154, 36, .25),
            transparent 38%
        ),
        linear-gradient(135deg, #07111f, #111827);
    box-shadow: 0 30px 85px rgba(0, 0, 0, .22);
}

.njs35-cta h2,
.njs35-cta p {
    color: #fff;
}

.njs35-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.njs35-btn {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 950;
}

.njs35-btn.primary {
    color: #07111f;
    background: linear-gradient(
        135deg,
        var(--njs-gold),
        var(--njs-gold-light)
    );
}

.njs35-btn.secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .07);
}

.njs35-faq details {
    margin-top: 12px;
    padding: 20px 22px;
    border: 1px solid var(--njs-line);
    border-radius: 17px;
    background: #fff;
}

.njs35-faq summary {
    cursor: pointer;
    color: var(--njs-text);
    font-weight: 950;
}

.njs-global-cta {
    margin-top: 38px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(216, 154, 36, .23),
            transparent 36%
        ),
        linear-gradient(135deg, #050914, #101827);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .24);
}

.njs-global-cta h2 {
    margin: 10px 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -.05em;
}

.njs-global-cta p {
    color: #dbe5f2;
}

.njs-basic-article {
    padding: 45px;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--njs-shadow);
}

.njs-footer {
    padding: 48px 0;
    color: #cbd5e1;
    background:
        radial-gradient(
            circle at 86% 5%,
            rgba(216, 154, 36, .20),
            transparent 34%
        ),
        linear-gradient(135deg, #050914, #07111f);
}

.njs-footer-inner {
    width: min(var(--njs-max), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
    gap: 35px;
}

.njs-footer-logo {
    width: 125px;
}

.njs-footer a {
    color: #fff;
    text-decoration: none;
}

.njs-floating-whatsapp {
    position: fixed;
    z-index: 1200;
    right: 20px;
    bottom: 20px;
    min-height: 58px;
    padding: 9px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #06111f;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #48ed84);
    box-shadow: 0 24px 70px rgba(37, 211, 102, .42);
    text-decoration: none;
    font-weight: 950;
}

.njs-floating-whatsapp small {
    font-size: 11px;
}

.njs-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .70s ease,
        transform .70s ease;
}

.njs-reveal.njs-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1020px) {
    .njs-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .njs-browser-frame {
        transform: none;
    }

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

    .njs35-split {
        grid-template-columns: 1fr;
    }

    .njs-footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .njs-header-inner {
        min-height: 74px;
        grid-template-columns: auto auto 1fr;
        gap: 12px;
    }

    .njs-logo img {
        width: 108px;
    }

    .njs-menu-toggle {
        width: 42px;
        height: 42px;
        padding: 9px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 12px;
        background: rgba(255, 255, 255, .07);
    }

    .njs-menu-toggle span {
        width: 100%;
        height: 2px;
        display: block;
        background: #fff;
    }

    .njs-navigation {
        position: absolute;
        top: 74px;
        right: 14px;
        left: 14px;
        padding: 14px;
        display: none;
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 18px;
        background: #07111f;
        box-shadow: 0 24px 70px rgba(0, 0, 0, .40);
    }

    .njs-navigation.is-open {
        display: flex;
    }

    .njs-header-actions {
        justify-content: flex-end;
    }

    .njs-header-quote {
        display: none;
    }

    .njs-language-switcher {
        height: 42px;
        padding: 0 10px;
    }

    .njs-hero-grid,
    .njs-page-content > *,
    .njs35-wrap,
    .njs-footer-inner {
        width: min(100% - 28px, var(--njs-max));
    }

    .njs-hero-grid {
        padding: 56px 0;
    }

    .njs-hero h1 {
        font-size: clamp(39px, 12vw, 56px);
    }

    .njs-browser-frame {
        padding: 13px;
        border-radius: 23px;
    }

    .njs-browser-content {
        min-height: auto;
        padding: 21px;
    }

    .njs-browser-cards,
    .njs35-grid,
    .njs35-process {
        grid-template-columns: 1fr;
    }

    .njs35-section,
    .njs35-cta,
    .njs-global-cta,
    .njs-basic-article {
        padding: 25px;
        border-radius: 23px;
    }

    .njs-global-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .njs-floating-whatsapp {
        right: 11px;
        bottom: 11px;
        min-height: 53px;
        padding: 8px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }

    .njs-reveal {
        opacity: 1;
        transform: none;
    }
}
