.tag-page-container{
  --jx-blue:#2166a8;
  --jx-blue-dark:#163f6e;
  --jx-navy:#14314f;
  --jx-amber:#e8871e;
  --jx-ink:#1f2933;
  --jx-grey:#5b6b7c;
  --jx-line:#e2e8f0;
  --jx-bg-soft:#f4f7fb;
  --jx-white:#ffffff;
  font-family:"Inter","Segoe UI",-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--jx-ink);
  background:var(--jx-bg-soft);
  -webkit-font-smoothing:antialiased;
}
.tag-page-container *{box-sizing:border-box;}
.tag-page-container img{max-width:100%;display:block;}

/* ---------- Hero (markup untouched, styling only) ---------- */
.tag-hero-section{
  background:linear-gradient(135deg,var(--jx-navy) 0%,var(--jx-blue) 100%);
  padding:64px 24px 56px;
  color:#fff;
}
.tag-title{
  font-size:34px;
  line-height:1.25;
  font-weight:800;
  max-width:1280px;
  margin:0 auto 10px;
  letter-spacing:-0.01em;
  text-align: center;
}
.hero-section-p{
  font-size:14px;
  color:rgba(255,255,255,.72);
  max-width:880px;
  margin:0 auto 28px;
  text-align: center;
}
.editor-content-1{
  max-width:1280px;
  margin:0 auto;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.18);
  border-radius:10px;
  padding:30px 34px 26px;
  max-height: 500px;
  overflow-y: scroll;
}
.editor-content-1 h4{color:#fff;border-bottom-color:var(--jx-amber);}
.editor-content-1 .jx-p{color:rgba(255,255,255,.86);}
.editor-content-1 .jx-btn{margin-top:6px;}

/* Hero CTA button - lives in the template now, not in the editor content */
.jx-hero-cta{max-width:1280px;margin:22px auto 20px;}
.jx-hero-cta .jx-btn{font-size:14.5px;padding:13px 30px;}

/* Inquiry form modal (pops up on CTA click, wraps the site's existing
   form code as-is - field names / action are untouched) */
.jx-modal{
  position:fixed;inset:0;background:rgba(20,49,79,.6);
  display:flex;align-items:center;justify-content:center;padding:24px;
  z-index:1000;opacity:0;visibility:hidden;transition:opacity .22s ease;
}
.jx-modal.jx-modal-open{opacity:1;visibility:visible;}
.jx-modal-dialog{
  background:#fff;border-radius:12px;max-width:560px;width:100%;
  padding:38px 36px 32px;position:relative;max-height:88vh;overflow-y:auto;
  transform:translateY(14px) scale(.97);transition:transform .22s ease;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}
.jx-modal.jx-modal-open .jx-modal-dialog{transform:translateY(0) scale(1);}
.jx-modal-close{
  position:absolute;top:14px;right:14px;width:32px;height:32px;border:none;
  background:var(--jx-bg-soft);border-radius:50%;color:var(--jx-navy);font-size:18px;
  cursor:pointer;line-height:1;display:flex;align-items:center;justify-content:center;
  transition:background .2s ease;
}
.jx-modal-close:hover{background:var(--jx-line);}
.jx-inquiry-title{color:var(--jx-navy);font-size:22px;font-weight:800;margin:0 0 6px;}
.jx-inquiry-sub{color:var(--jx-grey);font-size:13.5px;margin:0 0 22px;}
.jx-modal-dialog .grid.grid-2{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.jx-modal-dialog .grid.grid-2 .grid-span{grid-column:1 / -1;}
.jx-modal-dialog input[type="text"],
.jx-modal-dialog textarea{
  width:100%;border:1px solid var(--jx-line);border-radius:5px;padding:12px 14px;
  font-size:14px;font-family:inherit;color:var(--jx-ink);background:var(--jx-bg-soft);
  transition:border-color .2s ease,background .2s ease;
}
.jx-modal-dialog input[type="text"]:focus,
.jx-modal-dialog textarea:focus{outline:none;border-color:var(--jx-blue);background:#fff;}
.jx-modal-dialog textarea{min-height:100px;resize:vertical;}
.jx-modal-dialog input[type="submit"]{
  background:var(--jx-blue);color:#fff;border:none;border-radius:5px;padding:13px 0;width:100%;
  font-size:15px;font-weight:700;cursor:pointer;transition:background .2s ease;
}
.jx-modal-dialog input[type="submit"]:hover{background:var(--jx-blue-dark);}
@media (max-width:560px){
  .jx-modal-dialog{padding:32px 22px 26px;}
  .jx-modal-dialog .grid.grid-2{grid-template-columns:1fr;}
}

/* ---------- Related grid (markup untouched, styling only) ---------- */
.tag-page-container .content{max-width:1280px;margin:0 auto;padding:0 24px;}
.tag-page-container .content .grid.grid-3{
  list-style:none;margin:44px 0 0;padding:0;
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
}
.tag-page-container .content .column .box{
  background:#fff;border:1px solid var(--jx-line);border-radius:8px;overflow:hidden;
  transition:box-shadow .2s ease,transform .2s ease;
}
.tag-page-container .content .column .box:hover{
  box-shadow:0 10px 26px rgba(20,49,79,.12);transform:translateY(-2px);
}
.tag-page-container .content .column .img{display:block;aspect-ratio:4/3;overflow:hidden;background:#e6eff9;}
.tag-page-container .content .column .img img,
.tag-page-container .content .column .img svg{width:100%;height:100%;object-fit:cover;}
.tag-page-container .content .column .cont{padding:16px 18px 20px;}
.tag-page-container .content .column .title{
  color:var(--jx-navy);font-weight:600;text-decoration:none;font-size:15px;display:block;margin-bottom:5px;
}
.tag-page-container .content .column .title:hover{color:var(--jx-blue);}
.tag-page-container .content .column .des{margin:0;color:var(--jx-grey);font-size:13px;}

/* ---------- Content matrix layout ---------- */
.tag-page-container .content-matrix{
  max-width:1480px;margin:52px auto 0;padding:0 24px;
  display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:36px;align-items:start;
}
.tag-page-container .editor-module{
  background:#fff;border:1px solid var(--jx-line);border-radius:8px;
  padding:32px 34px;margin-bottom:26px;position:relative;
  transition:box-shadow .2s ease,transform .2s ease;
}
.tag-page-container .editor-module:hover{box-shadow:0 12px 30px rgba(20,49,79,.09);transform:translateY(-2px);}
.tag-page-container .editor-module h4{
  font-size:21px;font-weight:700;color:var(--jx-navy);margin:0 0 18px;
  padding-bottom:12px;border-bottom:2px solid var(--jx-blue);display:inline-block;
  padding-right:8px;max-width:calc(100% - 62px);
}

/* Small icon badge in the corner of every module - template-level decoration,
   not part of the imported content cells */
.jx-badge{
  position:absolute;top:28px;right:30px;width:42px;height:42px;border-radius:50%;
  background:var(--jx-bg-soft);border:1px solid var(--jx-line);color:var(--jx-blue);
  display:flex;align-items:center;justify-content:center;flex:none;
}
.jx-badge svg{width:20px;height:20px;}
.editor-whyus .jx-badge{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.28);color:#fff;}
@media (max-width:560px){.jx-badge{display:none;}.tag-page-container .editor-module h4{max-width:100%;}}

/* shared text elements */
.tag-page-container .jx-p{font-size:15px;line-height:1.75;color:#111213;margin:0 0 14px;}
.tag-page-container .jx-p:last-child{margin-bottom:0;}
.tag-page-container .jx-strong{color:var(--jx-navy);}
.tag-page-container .jx-link{color:var(--jx-blue);}

/* Specifications (det1) */
.tag-page-container .jx-table{width:100%;border-collapse:collapse;margin-top:2px;font-size:14px;}
.tag-page-container .jx-table .jx-th{
  text-align:left;background:var(--jx-navy);color:#fff;font-size:12.5px;
  letter-spacing:.02em;padding:11px 16px;
}
.tag-page-container .jx-table .jx-td{padding:11px 16px;border-bottom:1px solid var(--jx-line);color:var(--jx-ink);}
.tag-page-container .jx-table .jx-tr:nth-child(even) .jx-td{background:var(--jx-bg-soft);}

/* Applications (det2) */
.editor-applications .jx-ul{list-style:none;margin:4px 0 0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.editor-applications .jx-li{padding:16px 18px 16px 22px;border-left:3px solid var(--jx-blue);background:var(--jx-bg-soft);border-radius:0 6px 6px 0;transition:background .2s ease,border-color .2s ease;}
.editor-applications .jx-li:hover{background:#eaf1f8;border-left-color:var(--jx-amber);}
.editor-applications .jx-strong{display:block;font-size:14.5px;margin-bottom:6px;position:relative;padding-left:18px;}
.editor-applications .jx-strong::before{
  content:"";position:absolute;left:0;top:4px;width:8px;height:8px;background:var(--jx-blue);
  border-radius:2px;transform:rotate(45deg);
}
.editor-applications .jx-span{font-size:13.5px;color:var(--jx-grey);line-height:1.6;}

/* Manufacturing Capability (det3) */
.editor-manufacturing .jx-ul{list-style:none;margin:18px 0 0;padding:0;}
.editor-manufacturing .jx-li{position:relative;padding:8px 10px 8px 34px;margin-bottom:6px;font-size:14px;color:var(--jx-ink);border-radius:6px;transition:background .2s ease;}
.editor-manufacturing .jx-li:hover{background:var(--jx-bg-soft);}
.editor-manufacturing .jx-li:last-child{margin-bottom:0;}
.editor-manufacturing .jx-li::before{
  content:"\2713";position:absolute;left:8px;top:9px;width:16px;height:16px;border-radius:50%;
  background:var(--jx-blue);color:#fff;font-size:10px;font-weight:700;line-height:16px;text-align:center;
}
.editor-manufacturing .jx-span{font-size:14px;}

/* Customization & OEM/ODM (det4) */
.editor-customization .jx-ul{list-style:none;margin:18px 0 0;padding:0;}
.editor-customization .jx-li{position:relative;padding:8px 10px 8px 34px;margin-bottom:6px;font-size:14px;color:var(--jx-ink);border-radius:6px;transition:background .2s ease;}
.editor-customization .jx-li:hover{background:var(--jx-bg-soft);}
.editor-customization .jx-li:last-child{margin-bottom:0;}
.editor-customization .jx-li::before{
  content:"+";position:absolute;left:8px;top:6px;width:16px;height:16px;border-radius:50%;
  background:var(--jx-amber);color:#fff;font-weight:800;font-size:13px;line-height:16px;text-align:center;
}
.editor-customization .jx-span{font-size:14px;}

/* Ordering Process (det5) - the one intentionally "stepped" sequence */
.editor-ordering .jx-ul{list-style:none;margin:18px 0 0;padding:0;}
.editor-ordering .jx-li{display:flex;align-items:flex-start;gap:14px;padding:13px 0;border-bottom:1px dashed var(--jx-line);}
.editor-ordering .jx-li:last-child{border-bottom:none;padding-bottom:0;}
.editor-ordering .jx-li:first-child{padding-top:0;}
.editor-ordering .jx-strong{
  flex:0 0 60px;text-align:center;color:var(--jx-blue);background:var(--jx-bg-soft);
  border:1px solid var(--jx-blue);border-radius:20px;padding:4px 0;font-size:11.5px;font-weight:700;
  transition:background .2s ease,color .2s ease;
}
.editor-ordering .jx-li:hover .jx-strong{background:var(--jx-blue);color:#fff;}
.editor-ordering .jx-span{font-size:14px;color:var(--jx-ink);padding-top:3px;}

/* Sidebar: Advantage (det9 / new "Editor 10") - flat icon+label rows,
   sits directly above Why Choose Us. Icons are assigned purely by
   position (nth-child), so the content cell only ever needs plain
   text - no per-item markup to author for each new tag. */
.editor-advantage .jx-ul{list-style:none;margin:16px 0 0;padding:0;display:flex;flex-direction:column;gap:14px;}
.editor-advantage .jx-li{display:flex;align-items:center;gap:13px;}
.editor-advantage .jx-li::before{
  content:"";flex:0 0 36px;width:36px;height:36px;border-radius:50%;
  background-color:var(--jx-bg-soft);background-repeat:no-repeat;background-position:center;background-size:18px 18px;
}
.editor-advantage .jx-strong{font-size:14.5px;color:var(--jx-navy);font-weight:600;}
.editor-advantage .jx-li:nth-child(5n+1)::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon fill='%232166a8' points='13,2 3,14 11,14 9,22 21,10 13,10'/%3E%3C/svg%3E");}
.editor-advantage .jx-li:nth-child(5n+2)::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon fill='%232166a8' points='12,2 15,9.5 22,9.5 16.3,14.2 18.5,21.5 12,17.3 5.5,21.5 7.7,14.2 2,9.5 9,9.5'/%3E%3C/svg%3E");}
.editor-advantage .jx-li:nth-child(5n+3)::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232166a8' d='M12 2 4 5v6c0 5 3.4 9 8 11 4.6-2 8-6 8-11V5z'/%3E%3C/svg%3E");}
.editor-advantage .jx-li:nth-child(5n+4)::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon fill='%232166a8' points='6,3 18,3 22,9 12,21 2,9'/%3E%3C/svg%3E");}
.editor-advantage .jx-li:nth-child(5n+5)::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle fill='%232166a8' cx='12' cy='12' r='10'/%3E%3Cpolyline points='7,12 10.5,15.5 17,8' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}

/* Sidebar: Why Choose Us (det7)
   NOTE: this block intentionally uses a heavier selector
   (.editor-module.editor-whyus h4) so it wins over the generic
   ".editor-module h4" rule above - that specificity gap was the bug
   that made the heading render navy-on-navy (invisible) before. */
.tag-page-container .editor-module.editor-whyus{background:var(--jx-navy);border:none;color:#fff;}
.tag-page-container .editor-module.editor-whyus:hover{box-shadow:0 12px 30px rgba(20,49,79,.28);}
.tag-page-container .editor-module.editor-whyus h4{color:#fff;border-bottom-color:var(--jx-amber);}
.editor-whyus .jx-ul{list-style:none;margin:0;padding:0;}
.editor-whyus .jx-li{padding:15px 0 15px 30px;border-bottom:1px solid rgba(255,255,255,.14);position:relative;}
.editor-whyus .jx-li:last-child{border-bottom:none;}
.editor-whyus .jx-li::before{
  content:"";position:absolute;left:0;top:19px;width:16px;height:16px;border-radius:50%;
  background:var(--jx-amber);
}
.editor-whyus .jx-li::after{
  content:"";position:absolute;left:5.5px;top:23.5px;width:5px;height:8px;
  border-right:2px solid var(--jx-navy);border-bottom:2px solid var(--jx-navy);
  transform:rotate(45deg);
}
.editor-whyus .jx-strong{display:block;color:#fff;font-size:14px;margin-bottom:4px;}
.editor-whyus .jx-span{font-size:13px;color:rgba(255,255,255,.7);line-height:1.6;}

/* Sidebar: FAQ accordion (det6) */
.editor-module-faq{background:#fff;border:1px solid var(--jx-line);border-radius:8px;padding:30px 32px;position:relative;transition:box-shadow .2s ease;}
.editor-module-faq:hover{box-shadow:0 12px 30px rgba(20,49,79,.09);}
.editor-module-faq h4{font-size:21px;font-weight:700;color:var(--jx-navy);margin:0 0 6px;padding-bottom:12px;border-bottom:2px solid var(--jx-blue);display:inline-block;max-width:calc(100% - 62px);}
.editor-module-faq .jx-ul{list-style:none;margin:0;padding:0;}
.editor-module-faq .jx-faq-q{
  cursor:pointer;font-weight:600;color:var(--jx-navy);font-size:14px;line-height:1.5;
  padding:16px 30px 16px 0;position:relative;border-bottom:1px solid var(--jx-line);
}
.editor-module-faq .jx-faq-q:hover{color:var(--jx-blue);}
.editor-module-faq .jx-faq-q::after{
  content:"+";position:absolute;right:0;top:14px;font-size:19px;line-height:1;color:var(--jx-blue);
}
.editor-module-faq .jx-faq-item.jx-open .jx-faq-q::after{content:"\2212";}
.editor-module-faq .jx-faq-item.jx-open .jx-faq-q{border-bottom-color:transparent;}
.editor-module-faq .jx-faq-a{
  font-size:13.5px;color:var(--jx-grey);line-height:1.65;
  max-height:0;overflow:hidden;opacity:0;transition:max-height .25s ease,opacity .25s ease,padding .25s ease;
  padding:0;border-bottom:1px solid var(--jx-line);
}
.editor-module-faq .jx-faq-item:last-child .jx-faq-a{border-bottom:none;}
.editor-module-faq .jx-faq-item.jx-open .jx-faq-a{padding:0 0 16px;}

/* Related tags (det8, bottom "more-info") */
/* Related links (more-info > .editor-related) - written specifically for
   the current markup: a live {foreach} query outputting plain <a> tags,
   no wrapping <ul>/<li> and no extra classes on the links themselves. */
.tag-page-container .more-info{background:#fff;border-top:1px solid var(--jx-line);padding:44px 24px 56px;margin-top:16px;}
.tag-page-container .editor-related{max-width:1180px;margin:0 auto;}
.tag-page-container .editor-related a{
  display:inline-block;margin:0 10px 10px 0;padding:9px 20px;
  border:1.5px solid var(--jx-blue);border-radius:22px;color:var(--jx-blue);
  text-decoration:none;font-size:13.5px;font-weight:600;transition:all .2s ease;
}
.tag-page-container .editor-related a:hover{background:var(--jx-blue);color:#fff;}

/* CTA buttons used in Hero intro */
.tag-page-container .jx-btn{
  display:inline-block;padding:12px 26px;border-radius:4px;background:var(--jx-amber);
  color:#14314f;font-size:14px;font-weight:700;text-decoration:none;margin:4px 10px 4px 0;
  transition:background .2s ease,transform .2s ease;
}
.tag-page-container .jx-btn:hover{background:#fff;transform:translateY(-1px);}
.tag-page-container .jx-btn-outline{background:transparent;border:1.5px solid rgba(255,255,255,.6);color:#fff;}
.tag-page-container .jx-btn-outline:hover{background:rgba(255,255,255,.12);border-color:#fff;}

/* Responsive */
@media (max-width:900px){
  .tag-page-container .content-matrix{grid-template-columns:1fr;}
  .tag-page-container .content .grid.grid-3{grid-template-columns:1fr 1fr;}
  .editor-applications .jx-ul{grid-template-columns:1fr;}
}
@media (max-width:560px){
  .tag-page-container .content .grid.grid-3{grid-template-columns:1fr;}
  .tag-title{font-size:26px;}
  .tag-page-container .editor-module,.editor-module-faq{padding:24px 20px;}
}
.pt-100{
  padding-top: 50px;
  padding-bottom: 10px;
}
.jx-p1 {
  font-size: 15px;
  line-height: 1.75;
  color: #fefeff;
  margin: 0 0 14px;
}
.editor-content-1 h2 {
  font-size: 24px;
  color: #f9924c;
}