/* Industrial rebuild layer for mucaiposuiji.com.cn.
   This file intentionally overrides the legacy theme without changing CMS data. */
:root {
  --jp-navy: #071b2f;
  --jp-blue: #113f67;
  --jp-steel: #5d6f82;
  --jp-slate: #162434;
  --jp-muted: #677586;
  --jp-line: #dfe6ee;
  --jp-soft: #f3f6f9;
  --jp-paper: #ffffff;
  --jp-amber: #d06f24;
  --jp-amber-dark: #ad5417;
  --jp-green: #537463;
  --jp-shadow: 0 18px 50px rgba(7, 27, 47, .12);
  --jp-radius: 0;
}

html,
body {
  min-width: 0;
  color: var(--jp-slate);
  background: var(--jp-soft);
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body .page {
  overflow: hidden;
  text-align: left;
  background: var(--jp-soft);
}

a {
  color: var(--jp-blue);
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

a:hover {
  color: var(--jp-amber);
}

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

.container {
  max-width: 1220px;
}

.text-center {
  text-align: left;
}

.text-secondary,
.text-primary,
.text-secondary-1 {
  color: var(--jp-slate) !important;
}

.border-btm {
  border-bottom: 1px solid var(--jp-line);
}

.sm,
hr.sm {
  width: 54px;
  height: 4px;
  margin: 16px 0 24px;
  background: var(--jp-amber);
  border: 0;
}

.btn,
.btn-link,
.jp-link {
  text-decoration: none;
}

.btn,
.jp-button,
.jp-inquiry a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  background: var(--jp-amber);
  border: 1px solid var(--jp-amber);
  color: #fff !important;
  font-weight: 800;
  letter-spacing: .02em;
}

.btn:hover,
.jp-button:hover,
.jp-inquiry a:hover {
  background: var(--jp-amber-dark);
  border-color: var(--jp-amber-dark);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Header */
.jp-site-header {
  position: relative;
  z-index: 30;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--jp-line);
  box-shadow: 0 10px 28px rgba(7, 27, 47, .07);
  margin-bottom: 0 !important;
}

.jp-scrolled .jp-site-header {
  box-shadow: 0 16px 38px rgba(7, 27, 47, .13);
}

.jp-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1220px, calc(100% - 30px));
  min-height: 88px;
  margin: 0 auto;
}

.jp-site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--jp-navy);
  text-decoration: none;
}

.jp-site-brand__logo {
  display: block;
  width: auto;
  max-width: 316px;
  max-height: 60px;
}

.jp-site-brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  white-space: nowrap;
}

.jp-site-brand__text strong {
  color: var(--jp-navy);
  font-size: 21px;
  font-weight: 900;
}

.jp-site-brand__text small {
  margin-top: 4px;
  color: var(--jp-muted);
  font-size: 12px;
  font-weight: 700;
}

.jp-site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.jp-site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--jp-slate);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
}

.jp-site-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--jp-amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s ease;
}

.jp-site-nav a:hover,
.jp-site-nav a.is-active {
  color: var(--jp-amber);
}

.jp-site-nav a:hover:after,
.jp-site-nav a.is-active:after {
  transform: scaleX(1);
}

.jp-site-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  background: var(--jp-navy);
  border: 0;
  cursor: pointer;
}

.jp-site-menu span,
.jp-site-menu span:before,
.jp-site-menu span:after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

.jp-site-menu span {
  position: relative;
}

.jp-site-menu span:before,
.jp-site-menu span:after {
  content: "";
  position: absolute;
  left: 0;
}

.jp-site-menu span:before {
  top: -7px;
}

.jp-site-menu span:after {
  top: 7px;
}

.jp-home-visual {
  position: relative;
  background: var(--jp-navy);
}

.jp-home-visual:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: #d7e1ea;
}

.jp-home-visual img {
  display: block;
  width: 100%;
  height: clamp(260px, 32vw, 480px);
  object-fit: contain;
  object-position: center;
  background: #eef2f5;
}

.jp-home-visual + main > .jp-section:first-child {
  padding-top: 22px;
}

.jp-home-visual + main > .jp-section:first-child + .well-5 {
  padding-top: 22px;
}

.jp-home-visual + main > .jp-section:first-child + .well-5 + .jp-section + .well-8 {
  padding-top: 22px;
}

.jp-home-lead {
  margin-top: -62px;
  position: relative;
  z-index: 2;
}

.jp-home-lead__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 36px;
  padding: 42px;
  background: #fff;
  border-top: 6px solid var(--jp-amber);
  box-shadow: var(--jp-shadow);
}

.jp-home-lead h1 {
  max-width: 820px;
  margin: 0;
  color: var(--jp-navy);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.jp-home-lead p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--jp-muted);
  font-size: 17px;
  line-height: 1.85;
}

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

.jp-home-actions a:last-child {
  background: #fff;
  color: var(--jp-navy) !important;
  border-color: var(--jp-line);
}

.jp-home-actions a:last-child:hover {
  color: var(--jp-amber) !important;
  border-color: var(--jp-amber);
}

.jp-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: center;
}

.jp-fact {
  padding: 18px;
  background: var(--jp-soft);
  border-left: 3px solid var(--jp-amber);
}

.jp-fact strong {
  display: block;
  color: var(--jp-navy);
  font-size: 25px;
  line-height: 1.15;
}

.jp-fact span {
  display: block;
  margin-top: 7px;
  color: var(--jp-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Sections */
.jp-section,
.well-5,
.well-7,
.well-8,
.well-9,
.well-18,
.well-15,
.nymain {
  padding: 72px 0;
  background: #fff;
}

.jp-section + .jp-section,
.well-5 + .well-7,
.well-7 + .well-8 {
  border-top: 1px solid var(--jp-line);
}

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

.well-12 + .nymain {
  padding-top: 36px;
}

.jp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.jp-eyebrow {
  margin: 0 0 9px;
  color: var(--jp-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.jp-section h1,
.jp-section h2,
.jp-section h3,
.well-5 h1,
.well-5 h3,
.well-7 h1,
.well-7 h3,
.well-8 h1,
.well-8 h3,
.well-9 h1,
.well-9 h3,
.well-18 h1,
.well-18 h3,
.well-15 h1,
.well-15 h3,
.list_title,
.h2head strong {
  color: var(--jp-navy);
  font-weight: 900;
  letter-spacing: -.028em;
}

.jp-section h1,
.well-18 h1,
.well-15 h1 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.16;
}

.jp-section h2,
.well-5 h1,
.well-5 h3,
.well-7 h1,
.well-7 h3,
.well-8 h1,
.well-8 h3,
.well-9 h1,
.well-9 h3,
.list_title {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.jp-section-head p,
.inset-1 {
  color: var(--jp-muted);
  font-size: 16px;
  line-height: 1.85;
}

.jp-section-head p {
  margin: 0;
  flex: 1 1 720px;
  max-width: 920px;
  text-align: left;
}

.inset-1 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.jp-grid {
  display: grid;
  gap: 24px;
}

.jp-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jp-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jp-card,
.jp-category-card,
.jp-news-list article,
.blog-post,
.pro_con_ul li,
.flex-list li {
  background: var(--jp-paper);
  border: 1px solid var(--jp-line);
  box-shadow: 0 12px 32px rgba(7, 27, 47, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.jp-card:hover,
.jp-category-card:hover,
.jp-news-list article:hover,
.blog-post:hover,
.pro_con_ul li:hover,
.flex-list li:hover {
  transform: translateY(-5px);
  border-color: rgba(208, 111, 36, .45);
  box-shadow: var(--jp-shadow);
}

.jp-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dce4ec;
}

.jp-card__media img,
.flex-list li img,
.pro_con_ul img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.jp-card:hover .jp-card__media img,
.flex-list li:hover img,
.pro_con_ul li:hover img {
  transform: scale(1.045);
}

.jp-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jp-card__body h3,
.jp-news-list h3,
.blog-post__cnt h5 {
  margin: 0;
  color: var(--jp-navy);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.42;
}

.jp-card__body p,
.jp-news-list p,
.blog-post__cnt p {
  margin: 0;
  color: var(--jp-muted);
  font-size: 14px;
  line-height: 1.78;
}

.jp-link,
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--jp-blue);
  font-weight: 900;
}

.jp-category-card {
  min-height: 178px;
  padding: 26px;
  background: linear-gradient(135deg, #fff 0%, #f7fafc 100%);
}

.jp-category-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.jp-category-card p {
  margin: 0;
  color: var(--jp-muted);
  line-height: 1.8;
}

.jp-product-group {
  margin-top: 34px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--jp-line);
  box-shadow: 0 12px 34px rgba(7, 27, 47, .05);
}

.jp-product-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 30px;
}

.jp-product-nav a {
  padding: 9px 14px;
  background: #fff;
  border: 1px solid var(--jp-line);
  color: var(--jp-slate);
  font-weight: 800;
}

.jp-product-nav a:hover {
  background: var(--jp-navy);
  border-color: var(--jp-navy);
  color: #fff;
}

/* Legacy inner contact band, modernized instead of removed. */
.well-12 {
  padding: 22px 0;
  background: var(--jp-navy) !important;
  color: rgba(255, 255, 255, .86);
}

.jp-site-header + .well-12 {
  margin-top: 0 !important;
  padding-top: 12px;
  padding-bottom: 12px;
}

.well-12 + .well-18 {
  padding-top: 24px;
}

.page > header.mod-1 + .well-12 {
  display: none !important;
}

.well-12 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.well-12 .icon-lg {
  display: none;
}

.well-12 h2 {
  margin: 0;
  color: #fff !important;
  font-size: 24px;
  line-height: 1.35;
}

.well-12 a {
  color: #fff;
}

.well-12 p {
  max-width: 520px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

/* Lists and previews */
.flex-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.flex-list:before,
.flex-list:after {
  display: none;
}

.flex-list li {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  padding: 0;
  overflow: hidden;
}

.flex-list li > a:first-child {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dce4ec;
}

.flex-list h5 {
  margin: 0;
  padding: 18px;
  color: var(--jp-navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.blog {
  background: var(--jp-soft) !important;
  padding: 0 !important;
}

.blog > .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 15px;
}

.blog > .row > [class*="col-"] {
  float: none;
  width: auto;
  max-width: none;
  padding: 0;
}

.blog-post {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: start;
  height: 100%;
  overflow: hidden;
}

.blog-post > [class*="col-"] {
  float: none;
  width: auto;
  max-width: none;
  padding: 0;
}

.blog-post .bg-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0 !important;
  height: auto !important;
  background-size: cover;
  background-position: center;
}

.blog-post__cnt {
  min-height: 230px;
  padding: 28px;
  background: #fff;
}

.blog-post__cnt h5 {
  font-size: 20px;
}

.bg-primary {
  background: var(--jp-soft) !important;
}

/* Detail pages */
.well-15 {
  background: var(--jp-soft);
}

.well-15 > .container {
  max-width: 1060px;
  padding: 44px;
  background: #fff;
  border: 1px solid var(--jp-line);
  box-shadow: var(--jp-shadow);
}

.well-15--compact > .container {
  padding: 32px 36px;
}

.well-15--article h1 {
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.26;
  letter-spacing: -.02em;
}

.well-15 h1,
.well-15 h3.text-secondary {
  margin: 0 0 12px;
  color: var(--jp-navy) !important;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.pro_img {
  margin: 0 0 24px;
  text-align: center;
}

.pro_img img {
  display: block;
  max-width: 980px;
  width: 100%;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  box-sizing: border-box;
  margin: 0 auto;
  background: #f6f8fa;
}

.nr_left,
.about_profile_text,
.contact-info {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  color: var(--jp-slate);
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
}

.jp-copy-panel,
.jp-copy-card {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  color: var(--jp-slate);
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
}

.nr_left p,
.about_profile_text p {
  margin: 0 0 16px;
}

.nr_left img,
.about_profile_text img {
  max-width: 100%;
  height: auto !important;
}

.jp-detail-block {
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--jp-line);
}

.jp-section-head--stacked {
  display: block;
  text-align: center;
}

.jp-section-head--stacked > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.jp-section-head--stacked p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.jp-news-list article {
  padding: 22px;
}

.jp-news-list h3 {
  font-size: 18px;
}

.jp-title-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
}

.jp-title-list li {
  min-width: 0;
}

.jp-title-list a {
  display: block;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--jp-line);
  color: var(--jp-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  box-shadow: 0 10px 26px rgba(7, 27, 47, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.jp-title-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(208, 111, 36, .45);
  box-shadow: var(--jp-shadow);
  color: var(--jp-accent);
}

.jp-link--more {
  display: inline-flex;
  margin-top: 20px;
}

.jp-inquiry {
  position: relative;
  overflow: hidden;
  margin-top: 42px;
  padding: 34px;
  background: linear-gradient(135deg, var(--jp-navy), var(--jp-blue));
  color: #fff;
}

.jp-inquiry:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--jp-amber);
}

.jp-inquiry h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.jp-inquiry p {
  max-width: 760px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.85;
}

/* About */
.about_profile_text {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--jp-line);
  box-shadow: 0 12px 34px rgba(7, 27, 47, .06);
}

.jp-about-video {
  margin: 0 0 18px;
  text-align: center;
}

.jp-about-video video {
  display: block;
  width: 100%;
  max-width: 980px;
  height: auto;
  margin: 0 auto;
  background: #000;
}

.jp-copy-page {
  display: grid;
  gap: 28px;
}

.jp-copy-page--service {
  gap: 18px;
}

.jp-copy-panel {
  padding: 32px 34px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
  border: 1px solid var(--jp-line);
  box-shadow: 0 12px 32px rgba(7, 27, 47, .06);
}

.jp-copy-page--service > h1,
.jp-contact-page > h1 {
  text-align: center;
}

.jp-copy-page--service > hr.sm,
.jp-contact-page > hr.sm {
  margin: 8px auto 12px;
}

.jp-contact-page > .inset-1 {
  margin-top: -2px;
  margin-bottom: 2px;
  text-align: center;
}

.jp-copy-panel p:last-child,
.jp-copy-card p:last-child,
.jp-copy-card ul:last-child {
  margin-bottom: 0;
}

.jp-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.jp-copy-grid--service {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jp-copy-grid--service-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jp-copy-card {
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--jp-line);
  box-shadow: 0 12px 30px rgba(7, 27, 47, .06);
}

.jp-copy-card--full {
  grid-column: 1 / -1;
}

.jp-copy-card h2 {
  margin: 0 0 16px;
  color: var(--jp-navy);
  font-size: 24px;
  font-weight: 900;
}

.jp-copy-card p {
  margin: 0 0 14px;
}

.jp-copy-list {
  margin: 0;
  padding-left: 20px;
  color: var(--jp-slate);
}

.jp-copy-list li + li {
  margin-top: 10px;
}

.jp-copy-subhead {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.jp-copy-subhead h2 {
  margin: 0;
  color: var(--jp-navy);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.2;
}

.jp-copy-subhead p {
  max-width: none;
  width: 100%;
  margin: 0;
  color: var(--jp-muted);
  line-height: 1.85;
}

.jp-copy-grid--triptych {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jp-copy-card--media {
  overflow: hidden;
}

.jp-copy-card--media img {
  display: block;
  width: calc(100% + 60px);
  max-width: calc(100% + 60px);
  margin: -28px -30px 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about_profile_text h3 {
  margin: 30px 0 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--jp-line);
  color: var(--jp-navy);
  font-size: 28px;
  font-weight: 900;
}

.about_profile_text h4 {
  margin: 24px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--jp-amber);
  color: var(--jp-navy);
  font-size: 21px;
  font-weight: 900;
}

.about_profile_text ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 20px;
  padding: 18px;
  background: var(--jp-soft);
  border: 1px solid var(--jp-line);
}

.about_profile_text li {
  list-style-position: inside;
  color: var(--jp-slate);
  line-height: 1.65;
}

.about_profile_list_title {
  margin-top: 14px;
  color: var(--jp-navy);
  font-weight: 900;
}

.list_title {
  margin: 56px 0 24px;
}

.pro_con_ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.pro_con_ul:before,
.pro_con_ul:after {
  display: none;
}

.pro_con_ul li {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  overflow: hidden;
}

.pro_con_ul a {
  display: block;
  color: var(--jp-slate);
}

.pro_con_ul img {
  display: block;
  height: auto !important;
  object-fit: contain;
}

.pro_con_ul li:hover img {
  transform: none;
}

.pro_con_ul .font {
  display: block !important;
  padding: 12px !important;
  color: var(--jp-slate) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  max-height: none !important;
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: initial !important;
  text-align: center !important;
}

.parallax-container {
  background: var(--jp-navy);
}

/* Solution page */
.nymain .box,
.scd_m {
  max-width: 1220px;
  margin: 0 auto;
}

.wapf,
.solution_case_intro {
  margin-bottom: 30px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--jp-line);
  box-shadow: 0 12px 34px rgba(7, 27, 47, .06);
}

.scd_m > .solution_case_intro:first-child {
  margin-top: 15px;
  padding-top: 18px;
}

.solution_case_intro > .wapcs:first-child {
  margin-top: 12px;
}

.scd_m > .wapf {
  margin-top: 10px !important;
  margin-bottom: 10px;
}

.solution_case_intro .wapf_tit,
.wapf_tit,
.h2head strong {
  display: block;
  margin: 0 0 20px;
  color: var(--jp-navy) !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

.h2head {
  margin-bottom: 22px;
  border-left: 5px solid var(--jp-amber);
  padding-left: 16px;
}

.wapcen,
.wapcenf {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.wapleft,
.wapright,
.wapfleft,
.wapfright {
  float: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

.wapleft a,
.wapfleft a,
.wapright,
.wapfright {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dce4ec;
}

.wapleft img,
.wapright video,
.wapfleft img,
.wapfright img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  padding: 0 !important;
  border: 0 !important;
}

.wapcs {
  margin-top: 24px;
  color: var(--jp-slate);
  font-size: 16px;
  line-height: 1.85;
}

.wapcs h3 {
  color: var(--jp-navy);
  font-size: 22px;
  font-weight: 900;
}

.wapcs p {
  margin: 10px 0;
  line-height: 1.85 !important;
}

.wapxc ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.wapxc li {
  overflow: hidden;
  background: #dce4ec;
}

.wapxc li a {
  display: block;
  overflow: visible;
}

.wapxc img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Contact and footer */
.contact-info {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--jp-line);
  box-shadow: 0 12px 34px rgba(7, 27, 47, .06);
}

.jp-home-contact-block {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
}

.jp-home-contact-block--contact {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .9fr);
  align-items: start;
}

.jp-contact-page {
  display: grid;
  gap: 18px;
}

.jp-contact-hero {
  display: flex;
  align-items: stretch;
  gap: 4%;
}

.jp-contact-info-panel {
  flex: 0 0 50%;
  max-width: 50%;
  display: grid;
  gap: 16px;
  padding: 28px 34px;
}

.jp-contact-panel-head {
  display: grid;
  gap: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--jp-line);
}

.jp-contact-panel-head h2 {
  margin: 0;
  color: var(--jp-navy);
  font-size: 24px;
  font-weight: 900;
}

.jp-contact-panel-head p {
  margin: 0;
  color: var(--jp-slate);
  line-height: 1.9;
}

.jp-contact-company {
  display: grid;
  gap: 0;
  padding: 0;
}

.jp-contact-company strong {
  color: var(--jp-navy);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 900;
}

.jp-contact-company span {
  color: var(--jp-muted);
  line-height: 1.8;
}

.jp-contact-plain {
  display: grid;
  gap: 8px;
  padding-top: 6px;
}

.jp-contact-plain p {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  color: var(--jp-slate);
  font-size: 17px;
  line-height: 1.75;
}

.jp-contact-plain__wide {
  grid-template-columns: 108px 1fr;
}

.jp-contact-plain span {
  color: var(--jp-muted);
  font-weight: 700;
}

.jp-contact-plain strong,
.jp-contact-plain a {
  color: var(--jp-navy);
  font-weight: 700;
}

.jp-contact-nowrap {
  white-space: nowrap;
}

.jp-contact-remark {
  padding: 16px 20px;
  background: #f7fafc;
  border: 1px solid var(--jp-line);
  box-shadow: none;
}

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

.jp-contact-remark strong {
  color: var(--jp-slate);
  font-weight: 700;
}

.jp-home-contact-media {
  flex: 1 1 46%;
  overflow: hidden;
  background: #edf2f6;
  border: 1px solid var(--jp-line);
  box-shadow: 0 12px 28px rgba(7, 27, 47, .08);
}

.jp-home-contact-media--tall {
  min-width: 0;
}

.jp-home-contact-media--tall img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.jp-home-contact-media img {
  display: block;
  width: 100%;
  height: auto;
}

.jp-contact-list {
  margin: 0;
}

.jp-contact-list dt {
  margin: 0 0 8px;
}

.jp-contact-list dd {
  margin: 0 0 12px;
  color: var(--jp-slate);
  line-height: 1.9;
}

.jp-contact-list dd:last-child {
  margin-bottom: 0;
}

.rd-mailform {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--jp-line);
  box-shadow: 0 12px 34px rgba(7, 27, 47, .06);
}

.form-input,
.form-control,
input[type="text"],
input[type="email"],
textarea {
  border-radius: 0 !important;
}

footer .well {
  padding: 38px 0 30px;
  background: var(--jp-navy);
}

.jp-footer-info {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.jp-footer-info__item {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.8;
}

.jp-footer-info__item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.jp-footer-info__item a {
  color: rgba(255, 255, 255, .88);
}

footer .rights,
footer .rights a {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.8;
}

/* Small motion layer */
.jp-reveal {
  opacity: 0;
  transform: translateY(14px);
}

.jp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}

@media (max-width: 1199px) {
  .jp-site-header__inner {
    gap: 18px;
  }

  .jp-site-brand {
    gap: 10px;
  }

  .jp-site-brand__text strong {
    font-size: 18px;
  }

  .jp-site-brand__text small {
    display: none;
  }

  .jp-site-nav {
    gap: 10px;
  }

  .jp-site-nav a {
    font-size: 15px;
  }

  .jp-grid--4,
  .flex-list,
  .jp-news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pro_con_ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .jp-title-list,
  .jp-copy-grid,
  .jp-copy-grid--service,
  .jp-copy-grid--service-wide,
  .jp-copy-grid--triptych {
    grid-template-columns: 1fr;
  }

  .jp-home-contact-block {
    grid-template-columns: 1fr;
  }

  .jp-contact-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .jp-contact-plain p {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 0 !important;
  }

  .jp-site-header__inner {
    position: relative;
    min-height: 78px;
  }

  .jp-site-brand__logo {
    max-width: 252px;
    max-height: 48px;
  }

  .jp-site-brand__text strong {
    font-size: 18px;
  }

  .jp-site-menu {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .jp-site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 14px;
    background: #fff;
    border-top: 1px solid var(--jp-line);
    box-shadow: var(--jp-shadow);
  }

  .jp-menu-open .jp-site-nav {
    display: flex;
  }

  .jp-site-nav a {
    min-height: 42px;
    border-bottom: 1px solid var(--jp-line);
  }

  .jp-site-nav a:after {
    display: none;
  }

  .jp-home-lead {
    margin-top: 0;
  }

  .jp-home-lead__panel,
  .wapcen,
  .wapcenf {
    grid-template-columns: 1fr;
  }

  .well-12 .container {
    display: block;
  }

  .well-12 p {
    margin-top: 8px;
  }

}

@media (max-width: 767px) {
  .jp-home-visual img {
    height: 220px;
  }

  .jp-home-visual + main > .jp-section:first-child {
    padding-top: 14px;
  }

  .jp-home-visual + main > .jp-section:first-child + .well-5 {
    padding-top: 14px;
  }

  .jp-home-visual + main > .jp-section:first-child + .well-5 + .jp-section + .well-8 {
    padding-top: 14px;
  }

  .jp-home-lead__panel,
  .well-15 > .container,
  .about_profile_text,
  .wapf,
  .solution_case_intro {
    padding: 22px;
  }

  .jp-section,
  .well-5,
  .well-7,
  .well-8,
  .well-9,
  .well-18,
  .well-15,
  .nymain {
    padding: 44px 0;
  }

  .well-12 + .nymain {
    padding-top: 22px;
  }

  .jp-section-head {
    display: block;
  }

  .jp-section-head p {
    margin-top: 12px;
  }

  .jp-grid--4,
  .jp-grid--3,
  .flex-list,
  .jp-news-list,
  .jp-title-list,
  .blog > .row,
  .about_profile_text ul,
  .wapxc ul,
  .jp-copy-grid {
    grid-template-columns: 1fr;
  }

  .jp-facts,
  .pro_con_ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-post {
    grid-template-columns: 1fr;
  }

  .jp-footer-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jp-copy-panel,
  .jp-copy-card {
    padding: 22px;
  }

  .jp-copy-card--media img {
    width: calc(100% + 44px);
    max-width: calc(100% + 44px);
    margin: -22px -22px 18px;
  }

  .wapxc li a {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .jp-site-brand__logo {
    max-width: 204px;
    max-height: 42px;
  }

  .jp-site-brand {
    gap: 8px;
  }

  .jp-site-brand__text strong {
    font-size: 16px;
  }

  .jp-facts,
  .pro_con_ul {
    grid-template-columns: 1fr;
  }
}
