

:root{
    --jp-ink:#141b24;
    --jp-muted:#687386;
    --jp-line:#e4e8ed;
    --jp-soft:#f6f8fa;
    --jp-width:1180px;
}


/* ============================================================
   PRODUCT MENU
============================================================ */

.jp-products-host{
    position:relative!important;
}

.jp-product-menu{
    position:absolute;
    top:calc(100% + 12px);
    left:0;
    width:290px;
    padding:10px;
    border:1px solid var(--jp-line);
    border-radius:15px;
    background:#fff;
    box-shadow:0 22px 55px rgba(18,25,34,.18);
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.18s ease;
    z-index:99999;
}

.jp-products-host:hover > .jp-product-menu,
.jp-products-host:focus-within > .jp-product-menu{
    opacity:1;
    visibility:visible;
    transform:none;
}

.jp-product-menu a{
    display:block;
    text-decoration:none!important;
    color:#202936!important;
}

.jp-menu-main{
    padding:13px 14px;
    font-weight:850;
    border-radius:9px;
}

.jp-menu-main:hover{
    background:#f3f5f7;
}

.jp-menu-sub{
    border-top:1px solid var(--jp-line);
    padding-top:6px;
    margin-top:6px;
}

.jp-menu-sub a{
    padding:11px 14px;
    border-radius:8px;
    font-size:14px;
}

.jp-menu-sub a:hover{
    background:#f7f8fa;
}


/* ============================================================
   GENERAL
============================================================ */

.jp-page{
    background:#fff;
    color:var(--jp-ink);
}

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

.jp-breadcrumb{
    padding:24px 0 5px;
    color:var(--jp-muted);
    font-size:14px;
}

.jp-breadcrumb a{
    color:inherit;
    text-decoration:none;
}

.jp-kicker{
    color:var(--accent,#ef6c27);
    font-size:12px;
    font-weight:900;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.jp-section{
    padding:78px 0;
}

.jp-soft{
    background:var(--jp-soft);
}

.jp-head{
    max-width:780px;
    margin-bottom:34px;
}

.jp-head h2{
    margin:10px 0 12px;
    font-size:clamp(32px,4vw,48px);
    line-height:1.08;
    letter-spacing:-.035em;
}

.jp-head p{
    color:var(--jp-muted);
    line-height:1.75;
}


/* ============================================================
   HERO
============================================================ */

.jp-hero{
    padding:55px 0 75px;
}

.jp-hero-grid{
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:62px;
    align-items:center;
}

.jp-hero h1{
    margin:14px 0 18px;
    font-size:clamp(44px,6vw,74px);
    line-height:1;
    letter-spacing:-.05em;
}

.jp-headline{
    font-size:24px;
    font-weight:750;
    line-height:1.4;
    margin:0 0 16px;
}

.jp-description{
    color:#536070;
    font-size:17px;
    line-height:1.75;
}

.jp-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.jp-btn{
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 21px;
    border-radius:999px;
    text-decoration:none!important;
    font-weight:850;
}

.jp-primary{
    background:var(--accent,#ef6c27);
    color:#fff!important;
}

.jp-secondary{
    border:1px solid #ccd3da;
    background:#fff;
    color:var(--jp-ink)!important;
}

.jp-visual{
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    border-radius:30px;
    border:1px solid var(--jp-line);
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(80,110,180,.13),
            transparent 38%
        ),
        linear-gradient(145deg,#fbfcfd,#edf1f5);
}

.jp-visual img{
    width:88%;
    height:88%;
    object-fit:contain;
    filter:drop-shadow(0 28px 32px rgba(20,28,38,.16));
}

.jp-model-tag{
    position:absolute;
    left:20px;
    bottom:20px;
    padding:10px 15px;
    border-radius:999px;
    background:#fff;
    box-shadow:0 10px 28px rgba(20,28,38,.12);
    font-size:13px;
    font-weight:900;
}


/* ============================================================
   QUICK SPECS
============================================================ */

.jp-quick{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid var(--jp-line);
    border-radius:20px;
    overflow:hidden;
}

.jp-quick-item{
    padding:22px;
    border-right:1px solid var(--jp-line);
}

.jp-quick-item:last-child{
    border-right:none;
}

.jp-quick-item small{
    display:block;
    color:var(--jp-muted);
    font-size:11px;
    font-weight:850;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.jp-quick-item strong{
    display:block;
    margin-top:8px;
    font-size:18px;
}


/* ============================================================
   FEATURE GRID
============================================================ */

.jp-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.jp-feature{
    padding:25px;
    border-radius:20px;
    border:1px solid var(--jp-line);
    background:#fff;
}

.jp-number{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#f2f4f7;
    color:var(--accent);
    font-weight:900;
}

.jp-feature h3{
    margin:24px 0 9px;
    font-size:20px;
}

.jp-feature p{
    margin:0;
    color:var(--jp-muted);
    line-height:1.7;
    font-size:14px;
}


/* ============================================================
   PROTECTION FLOW
============================================================ */

.jp-flow{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.jp-step{
    min-height:200px;
    padding:25px;
    border-radius:20px;
    background:#151d27;
    color:#fff;
}

.jp-step span{
    color:var(--accent);
    font-size:12px;
    font-weight:900;
}

.jp-step h3{
    margin:34px 0 9px;
    font-size:21px;
}

.jp-step p{
    color:#c7d0d9;
    font-size:14px;
    line-height:1.65;
}


/* ============================================================
   SPECS TABLE
============================================================ */

.jp-spec-layout{
    display:grid;
    grid-template-columns:.75fr 1.25fr;
    gap:44px;
}

.jp-spec-copy h2{
    margin:10px 0 15px;
    font-size:44px;
    letter-spacing:-.035em;
}

.jp-spec-copy p{
    color:var(--jp-muted);
    line-height:1.75;
}

.jp-table{
    border:1px solid var(--jp-line);
    border-radius:20px;
    overflow:hidden;
}

.jp-row{
    display:grid;
    grid-template-columns:220px 1fr;
    border-bottom:1px solid var(--jp-line);
}

.jp-row:last-child{
    border-bottom:none;
}

.jp-row b,
.jp-row span{
    padding:17px 19px;
}

.jp-row b{
    background:#fafafa;
}

.jp-row span{
    color:#4d5968;
}


/* ============================================================
   APPLICATIONS
============================================================ */

.jp-app-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.jp-app{
    min-height:160px;
    padding:24px;
    display:flex;
    align-items:flex-end;
    border-radius:19px;
    border:1px solid var(--jp-line);
    background:linear-gradient(145deg,#fff,#f2f5f8);
    font-size:20px;
    font-weight:850;
}


/* ============================================================
   OEM
============================================================ */

.jp-oem{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:38px;
    padding:42px;
    border-radius:28px;
    background:#151d27;
    color:#fff;
}

.jp-oem h2{
    margin:10px 0 15px;
    font-size:clamp(32px,4vw,48px);
}

.jp-oem p{
    color:#c7d0d9;
    line-height:1.75;
}

.jp-oem-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.jp-oem-item{
    padding:18px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.05);
}


/* ============================================================
   FAQ
============================================================ */

.jp-faq details{
    margin-bottom:10px;
    padding:0 20px;
    border:1px solid var(--jp-line);
    border-radius:16px;
    background:#fff;
}

.jp-faq summary{
    padding:20px 0;
    cursor:pointer;
    font-weight:850;
}

.jp-faq p{
    color:var(--jp-muted);
    line-height:1.7;
    margin:0 0 20px;
}


/* ============================================================
   CARDS
============================================================ */

.jp-card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:19px;
}

.jp-card{
    overflow:hidden;
    border-radius:22px;
    border:1px solid var(--jp-line);
    background:#fff;
}

.jp-card-image{
    height:270px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(145deg,#fafbfd,#edf1f5);
}

.jp-card-image img{
    width:86%;
    height:86%;
    object-fit:contain;
}

.jp-card-body{
    padding:23px;
}

.jp-card-body small{
    color:var(--accent,#ef6c27);
    font-size:11px;
    font-weight:900;
    letter-spacing:.09em;
}

.jp-card-body h3{
    margin:9px 0;
    font-size:24px;
}

.jp-card-body p{
    color:var(--jp-muted);
    line-height:1.65;
    font-size:14px;
}

.jp-link{
    display:inline-block;
    margin-top:14px;
    color:var(--jp-ink)!important;
    text-decoration:none!important;
    font-weight:850;
}


/* ============================================================
   CATEGORY
============================================================ */

.jp-category-hero{
    padding:62px 0 50px;
}

.jp-category-hero h1{
    margin:12px 0 16px;
    font-size:clamp(42px,5vw,68px);
    letter-spacing:-.045em;
}

.jp-category-hero p{
    max-width:760px;
    color:var(--jp-muted);
    font-size:18px;
    line-height:1.75;
}


/* ============================================================
   PRODUCT TREE
============================================================ */

.jp-tree{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:20px;
}

.jp-tree-root{
    padding:30px;
    border-radius:22px;
    background:#151d27;
    color:#fff;
}

.jp-tree-root strong{
    display:block;
    margin-top:28px;
    font-size:32px;
    line-height:1.1;
}

.jp-branches{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.jp-branch{
    padding:23px;
    border:1px solid var(--jp-line);
    border-radius:20px;
}

.jp-branch h3{
    margin:0 0 14px;
    font-size:21px;
}

.jp-branch a{
    display:block;
    padding:8px 0;
    color:#536071;
    text-decoration:none;
}


/* ============================================================
   CTA
============================================================ */

.jp-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
    padding:45px;
    border-radius:28px;
    border:1px solid var(--jp-line);
    background:linear-gradient(135deg,#f5f8fb,#fff);
}

.jp-cta h2{
    margin:0 0 10px;
    font-size:clamp(30px,4vw,46px);
}

.jp-cta p{
    color:var(--jp-muted);
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:980px){

    .jp-hero-grid,
    .jp-spec-layout,
    .jp-oem,
    .jp-tree{
        grid-template-columns:1fr;
    }

    .jp-feature-grid,
    .jp-flow,
    .jp-app-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .jp-card-grid,
    .jp-branches{
        grid-template-columns:repeat(2,1fr);
    }

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

}


@media(max-width:640px){

    .jp-wrap{
        width:calc(100% - 28px);
    }

    .jp-hero{
        padding:38px 0 54px;
    }

    .jp-visual{
        min-height:380px;
    }

    .jp-feature-grid,
    .jp-flow,
    .jp-app-grid,
    .jp-card-grid,
    .jp-branches,
    .jp-oem-grid,
    .jp-quick{
        grid-template-columns:1fr;
    }

    .jp-row{
        grid-template-columns:1fr;
    }

    .jp-oem,
    .jp-cta{
        padding:27px;
    }

    .jp-cta{
        display:block;
    }

    .jp-product-menu{
        position:fixed;
        left:15px;
        right:15px;
        top:90px;
        width:auto;
    }

}

