:root {
  --jws-blue: #276ff3;
  --jws-blue-dark: #164fbd;
  --jws-navy: #0d1f38;
  --jws-navy-soft: #172a45;
  --jws-ink: #172033;
  --jws-muted: #5e697b;
  --jws-line: #dfe4eb;
  --jws-soft: #f4f6f9;
  --jws-white: #ffffff;
  --jws-container: 1240px;
}

html.jws-enhanced {
  scroll-behavior: smooth;
}

body.jws-enhanced {
  margin: 0;
  overflow-x: hidden;
  background: var(--jws-white);
  color: var(--jws-ink);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body.jws-enhanced *,
body.jws-enhanced *::before,
body.jws-enhanced *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

body.jws-enhanced img {
  display: block;
  max-width: 100%;
}

body.jws-enhanced a {
  color: inherit;
  text-decoration: none;
}

.jws-legacy-hidden {
  display: none !important;
}

.jws-container {
  width: min(var(--jws-container), calc(100% - 64px));
  margin-inline: auto;
}

.jws-site-header {
  position: relative;
  z-index: 1200;
  width: 100%;
  background: var(--jws-white);
}

.jws-utility {
  height: 34px;
  color: #dbe6f8;
  background: var(--jws-navy);
  font-size: 12px;
  line-height: 34px;
}

.jws-utility__inner,
.jws-utility__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jws-utility__contacts {
  gap: 28px;
}

.jws-utility a {
  color: #eef4ff;
  transition: color 160ms ease;
}

.jws-utility a:hover {
  color: var(--jws-white);
}

.jws-nav-wrap {
  position: relative;
  z-index: 2;
  height: 82px;
  border-bottom: 1px solid rgba(13, 31, 56, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(13, 31, 56, 0.04);
}

.jws-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.jws-brand {
  display: flex;
  flex: 0 0 152px;
  align-items: center;
  height: 56px;
}

.jws-brand img {
  width: 142px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.jws-nav__panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.jws-nav__links {
  display: flex;
  align-items: stretch;
  height: 82px;
  margin-right: 28px;
}

.jws-nav__links a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 17px;
  color: #263247;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 160ms ease;
}

.jws-nav__links a::after {
  position: absolute;
  right: 17px;
  bottom: 0;
  left: 17px;
  height: 3px;
  background: var(--jws-blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.jws-nav__links a:hover,
.jws-nav__links a.is-active {
  color: var(--jws-blue);
}

.jws-nav__links a:hover::after,
.jws-nav__links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.jws-nav__actions,
.jws-language {
  display: flex;
  align-items: center;
}

.jws-nav__actions {
  gap: 22px;
}

.jws-language {
  gap: 7px;
  color: var(--jws-muted);
  font-size: 13px;
  white-space: nowrap;
}

.jws-language i {
  width: 1px;
  height: 12px;
  background: #b8c0cc;
}

.jws-language a:hover {
  color: var(--jws-blue);
}

.jws-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.jws-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--jws-navy);
  transition: transform 160ms ease, opacity 160ms ease;
}

.jws-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--jws-blue);
  border-radius: 4px;
  color: var(--jws-white) !important;
  background: var(--jws-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.jws-button:hover {
  border-color: var(--jws-blue-dark);
  background: var(--jws-blue-dark);
  transform: translateY(-1px);
}

.jws-button--small {
  min-width: 112px;
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.jws-button--light {
  border-color: var(--jws-white);
  color: var(--jws-navy) !important;
  background: var(--jws-white);
}

.jws-button--light:hover {
  border-color: #dce7f8;
  background: #eef4ff;
}

.jws-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--jws-blue) !important;
  font-size: 15px;
  font-weight: 700;
}

.jws-text-link span {
  transition: transform 160ms ease;
}

.jws-text-link:hover span {
  transform: translateX(4px);
}

.jws-main {
  display: block;
  width: 100%;
  min-height: 50vh;
  background: var(--jws-white);
}

.jws-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #eef2f7;
}

.jws-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.jws-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.91) 31%, rgba(255,255,255,0.24) 58%, rgba(13,31,56,0.08) 100%);
  content: "";
}

.jws-hero--home::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.84) 32%, rgba(255,255,255,0.14) 58%, rgba(13,31,56,0.12) 100%);
}

.jws-hero--home {
  background: #f5f7fa;
}

.jws-hero--home .jws-hero__image {
  top: 18px;
  right: auto;
  bottom: 108px;
  left: 50%;
  width: min(calc(100% - 64px), 1720px);
  height: calc(100% - 126px);
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center center;
}

.jws-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding-bottom: 54px;
}

.jws-hero__copy {
  width: 600px;
  padding-top: 22px;
}

.jws-eyebrow,
.jws-section-heading > span,
.jws-contact-cta span,
.jws-case > span,
.jws-contact-form__heading > span {
  display: inline-block;
  color: var(--jws-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.jws-hero h1 {
  max-width: 680px;
  margin: 18px 0 24px;
  color: var(--jws-navy);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.18;
}

.jws-hero__copy > p {
  max-width: 590px;
  margin: 0;
  color: #46556b;
  font-size: 18px;
  line-height: 1.85;
}

.jws-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.jws-hero__assurance {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(13, 31, 56, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.jws-hero__assurance .jws-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.jws-hero__assurance .jws-container > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 90px;
  padding: 18px 28px;
  border-left: 1px solid var(--jws-line);
}

.jws-hero__assurance .jws-container > div:last-child {
  border-right: 1px solid var(--jws-line);
}

.jws-hero__assurance strong {
  color: var(--jws-navy);
  font-size: 18px;
}

.jws-hero__assurance span {
  color: var(--jws-muted);
  font-size: 13px;
  line-height: 1.5;
}

.jws-section {
  position: relative;
  padding: 96px 0;
}

.jws-section--soft {
  background: var(--jws-soft);
}

.jws-section--dark {
  color: var(--jws-white);
  background: var(--jws-navy);
}

.jws-project-showcase {
  overflow: hidden;
  border-top: 1px solid oklch(0.9 0.012 255);
  border-bottom: 1px solid oklch(0.9 0.012 255);
  background: oklch(0.967 0.008 255);
}

.jws-section-heading {
  display: grid;
  grid-template-columns: 190px minmax(360px, 620px) 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 56px;
}

.jws-section-heading h2,
.jws-company-band__content h2,
.jws-selection-grid h2,
.jws-product-proof h2,
.jws-location-grid__content h2,
.jws-contact-info h2,
.jws-contact-form h2,
.jws-contact-cta h2 {
  margin: 0;
  color: var(--jws-navy);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.28;
}

.jws-section-heading p {
  margin: 0;
  color: var(--jws-muted);
  font-size: 15px;
  line-height: 1.8;
}

.jws-delivery .jws-section-heading {
  grid-template-columns: 160px minmax(0, 1fr);
  column-gap: 56px;
  row-gap: 14px;
  align-items: start;
  margin-bottom: 48px;
}

.jws-delivery .jws-section-heading > span {
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: 9px;
}

.jws-delivery .jws-section-heading h2,
.jws-delivery .jws-section-heading p {
  grid-column: 2;
}

.jws-delivery .jws-section-heading h2 {
  max-width: 920px;
}

.jws-delivery .jws-section-heading p {
  max-width: 680px;
}

.jws-section--dark .jws-section-heading h2,
.jws-section--dark .jws-section-heading p {
  color: var(--jws-white);
}

.jws-section--dark .jws-section-heading p {
  color: #b7c5d9;
}

.jws-product-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 64px;
  align-items: stretch;
}

.jws-product-lead__visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--jws-line);
  background: #f2f4f7;
}

.jws-product-lead__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 5% center;
}

.jws-product-lead__visual > span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 20px;
  color: var(--jws-white);
  background: var(--jws-blue);
  font-size: 13px;
  font-weight: 700;
}

.jws-product-lead__families {
  border-top: 1px solid var(--jws-line);
}

.jws-family-row {
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  gap: 18px;
  align-items: center;
  min-height: 108px;
  padding: 20px 12px;
  border-bottom: 1px solid var(--jws-line);
  transition: background 160ms ease, padding 160ms ease;
}

.jws-family-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--jws-soft);
}

.jws-family-row__number {
  color: #8b97a7;
  font-size: 13px;
  font-weight: 700;
}

.jws-family-row__content {
  display: grid;
  gap: 5px;
}

.jws-family-row__content strong {
  color: var(--jws-ink);
  font-size: 19px;
  line-height: 1.4;
}

.jws-family-row__content small {
  color: var(--jws-muted);
  font-size: 13px;
  line-height: 1.6;
}

.jws-family-row__arrow {
  color: var(--jws-blue);
  font-size: 22px;
}

.jws-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cfd6df;
  border-bottom: 1px solid #cfd6df;
}

.jws-scenario {
  min-height: 278px;
  padding: 34px 28px;
  border-right: 1px solid #cfd6df;
}

.jws-scenario:last-child {
  border-right: 0;
}

.jws-scenario > span {
  color: var(--jws-blue);
  font-size: 13px;
  font-weight: 800;
}

.jws-scenario h3 {
  margin: 58px 0 14px;
  color: var(--jws-navy);
  font-size: 24px;
  line-height: 1.35;
}

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

.jws-company-band {
  padding: 112px 0;
}

.jws-company-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 72px;
  align-items: center;
}

.jws-company-band__media {
  min-height: 0;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.jws-company-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jws-company-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 24px 0;
  background: var(--jws-white);
}

.jws-company-band__content h2 {
  margin: 18px 0 24px;
}

.jws-company-band__content > p {
  max-width: 60ch;
  margin: 0;
  color: var(--jws-muted);
  font-size: 16px;
  line-height: 1.9;
}

.jws-company-band__content dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0;
  padding: 24px 0;
  border-top: 1px solid var(--jws-line);
  border-bottom: 1px solid var(--jws-line);
}

.jws-company-band__content dl div {
  padding: 0 20px;
  border-right: 1px solid var(--jws-line);
}

.jws-company-band__content dl div:first-child {
  padding-left: 0;
}

.jws-company-band__content dl div:last-child {
  border-right: 0;
}

.jws-company-band__content dt {
  color: var(--jws-navy);
  font-size: 20px;
  font-weight: 800;
}

.jws-company-band__content dd {
  margin: 5px 0 0;
  color: var(--jws-muted);
  font-size: 12px;
}

.jws-case-carousel {
  width: 100%;
  margin: 0 auto;
}

.jws-case-carousel__stage {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: 4px;
  background: #12253f;
  box-shadow: 0 16px 38px rgba(13, 31, 56, 0.1);
  touch-action: pan-y;
}

.jws-case-carousel__slide {
  position: relative;
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  visibility: hidden;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.012);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 420ms;
}

.jws-case-carousel__slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  transition-delay: 0s;
}

.jws-case-carousel__slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 38, 0.9) 0%, rgba(8, 20, 38, 0.54) 46%, rgba(8, 20, 38, 0.08) 74%),
    linear-gradient(180deg, rgba(8, 20, 38, 0.02) 50%, rgba(8, 20, 38, 0.64) 100%);
  content: "";
}

.jws-case-carousel__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
  transition: filter 320ms cubic-bezier(0.22, 1, 0.36, 1), transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.jws-case-carousel__slide:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.02);
}

.jws-case__copy {
  position: absolute;
  z-index: 2;
  right: 120px;
  bottom: 52px;
  left: 52px;
  max-width: 700px;
}

.jws-case__copy > span {
  color: #8db5ff;
  font-size: 12px;
  font-weight: 800;
}

.jws-case__copy h3 {
  max-width: 20em;
  margin: 12px 0 14px;
  color: var(--jws-white);
  font-size: 32px;
  line-height: 1.28;
}

.jws-case__copy p {
  max-width: 52em;
  margin: 0;
  color: #c9d5e7;
  font-size: 14px;
  line-height: 1.75;
}

.jws-case__copy small {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.jws-case-carousel__controls,
.jws-video-carousel__controls {
  position: absolute;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.jws-case-carousel__controls {
  right: 24px;
  bottom: 24px;
  gap: 8px;
}

.jws-case-carousel__controls button,
.jws-video-carousel__controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 3px;
  color: #fff;
  background: rgba(8, 20, 38, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: 19px;
  place-items: center;
  pointer-events: auto;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.jws-case-carousel__controls button:hover,
.jws-video-carousel__controls button:hover {
  border-color: var(--jws-blue);
  background: var(--jws-blue);
  transform: translateY(-1px);
}

.jws-case-carousel__controls button:focus-visible,
.jws-video-carousel__controls button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.jws-case-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
}

.jws-case-carousel__footer > span {
  color: var(--jws-muted);
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.jws-delivery__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--jws-line);
  border-bottom: 1px solid var(--jws-line);
  list-style: none;
}

.jws-delivery__steps li {
  min-height: 220px;
  padding: 30px 26px 34px;
  border-right: 1px solid var(--jws-line);
}

.jws-delivery__steps li:last-child {
  border-right: 0;
}

.jws-delivery__steps span {
  display: block;
  color: var(--jws-blue);
  font-size: 13px;
  font-weight: 800;
}

.jws-delivery__steps strong {
  display: block;
  margin-top: 36px;
  color: var(--jws-navy);
  font-size: 18px;
  line-height: 1.45;
}

.jws-delivery__steps p {
  max-width: 24em;
  margin: 10px 0 0;
  color: var(--jws-muted);
  font-size: 14px;
  line-height: 1.75;
}

.jws-contact-cta {
  padding: 64px 0;
  color: var(--jws-white);
  background: var(--jws-blue);
}

.jws-contact-cta .jws-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.jws-contact-cta span,
.jws-contact-cta h2,
.jws-contact-cta a {
  color: var(--jws-white);
}

.jws-contact-cta h2 {
  margin-top: 8px;
  font-size: 30px;
}

.jws-contact-cta .jws-container > div:last-child {
  display: flex;
  align-items: center;
  gap: 28px;
}

.jws-contact-cta .jws-container > div:last-child > a:first-child {
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.jws-service-contact {
  padding: 96px 0;
  border-top: 1px solid var(--jws-line);
  background: #f2f5f9;
}

.jws-service-contact__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: center;
}

.jws-service-contact__intro h2 {
  max-width: 520px;
  margin: 16px 0 20px;
  color: var(--jws-navy);
  font-size: 40px;
  line-height: 1.25;
}

.jws-service-contact__intro > p {
  max-width: 54ch;
  margin: 0 0 26px;
  color: var(--jws-muted);
  font-size: 15px;
  line-height: 1.9;
}

.jws-service-list,
.jws-company-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid #cdd6e2;
  border-bottom: 1px solid #cdd6e2;
}

.jws-service-list > div,
.jws-company-contact__grid > div {
  min-width: 0;
  min-height: 184px;
  padding: 30px 24px;
  border-right: 1px solid #cdd6e2;
}

.jws-service-list > div:last-child,
.jws-company-contact__grid > div:last-child {
  border-right: 0;
}

.jws-service-list dt,
.jws-company-contact__grid dt {
  color: var(--jws-blue);
  font-size: 12px;
  font-weight: 800;
}

.jws-service-list dd,
.jws-company-contact__grid dd {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 42px 0 0;
  color: var(--jws-navy);
  line-height: 1.5;
}

.jws-service-list a,
.jws-company-contact__grid a,
.jws-service-list strong,
.jws-company-contact__grid strong {
  overflow-wrap: anywhere;
  color: var(--jws-navy);
  font-size: 16px;
  font-weight: 800;
}

.jws-service-list dd > span,
.jws-company-contact__grid dd > span {
  color: var(--jws-muted);
  font-size: 12px;
}

.jws-company-contact {
  border-top: 1px solid var(--jws-line);
  background: #f5f7fa;
}

.jws-company-contact__grid {
  margin-top: 8px;
}

.jws-wechat-float {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 88px;
}

.jws-wechat-float__button {
  display: flex;
  width: 58px;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 8px 6px;
  border: 1px solid #d8e0eb;
  border-radius: 4px;
  color: var(--jws-navy);
  background: var(--jws-white);
  box-shadow: 0 12px 30px rgba(13, 31, 56, 0.13);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.jws-wechat-float__button:hover,
.jws-wechat-float.is-open .jws-wechat-float__button {
  border-color: #8eb0e7;
  box-shadow: 0 16px 34px rgba(13, 31, 56, 0.18);
  transform: translateY(-2px);
}

.jws-wechat-float__button > span:last-child {
  font-size: 12px;
  font-weight: 800;
}

.jws-wechat-float__icon {
  position: relative;
  width: 24px;
  height: 18px;
  border: 2px solid var(--jws-blue);
  border-radius: 50%;
}

.jws-wechat-float__icon::after {
  position: absolute;
  right: 1px;
  bottom: -5px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--jws-blue);
  transform: rotate(28deg);
  content: "";
}

.jws-wechat-float__panel {
  position: absolute;
  right: 72px;
  bottom: 0;
  width: 286px;
  padding: 24px;
  border: 1px solid #d8e0eb;
  border-radius: 4px;
  color: var(--jws-navy);
  background: var(--jws-white);
  box-shadow: 0 20px 48px rgba(13, 31, 56, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.jws-wechat-float.is-open .jws-wechat-float__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.jws-wechat-float__panel small {
  display: block;
  color: var(--jws-blue);
  font-size: 12px;
  font-weight: 800;
}

.jws-wechat-float__panel strong {
  display: block;
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.5;
}

.jws-wechat-float__panel p {
  margin: 12px 0 16px;
  color: var(--jws-muted);
  font-size: 13px;
  line-height: 1.7;
}

.jws-wechat-float__panel a {
  color: var(--jws-blue);
  font-size: 13px;
  font-weight: 800;
}

.jws-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  background: var(--jws-navy);
}

.jws-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jws-page-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 56, 0.64);
  content: "";
}

.jws-page-hero .jws-container {
  position: relative;
  z-index: 2;
}

.jws-page-hero h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  color: var(--jws-white);
  font-size: 46px;
  line-height: 1.25;
}

.jws-page-hero p {
  max-width: 650px;
  margin: 0;
  color: #d7e2f2;
  font-size: 17px;
  line-height: 1.8;
}

.jws-page-hero--product > img {
  object-position: center;
}

.jws-page-hero--product::after {
  background: linear-gradient(90deg, rgba(13,31,56,0.94) 0%, rgba(13,31,56,0.8) 42%, rgba(13,31,56,0.16) 76%);
}

.jws-page-hero--company > img {
  object-position: center 42%;
}

.jws-page-hero--company::after {
  background: linear-gradient(90deg, rgba(13,31,56,0.92) 0%, rgba(13,31,56,0.72) 48%, rgba(13,31,56,0.18) 100%);
}

.jws-page-hero--contact > img {
  object-position: center 48%;
}

.jws-family-index {
  border-top: 1px solid var(--jws-line);
}

.jws-family-index__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 146px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--jws-line);
  transition: background 160ms ease;
}

.jws-family-index__item:hover {
  background: var(--jws-soft);
}

.jws-family-index__item > span {
  color: var(--jws-blue);
  font-size: 14px;
  font-weight: 800;
}

.jws-family-index__item h2 {
  margin: 0;
  color: var(--jws-navy);
  font-size: 24px;
  line-height: 1.35;
}

.jws-family-index__item p {
  margin: 8px 0 0;
  color: var(--jws-muted);
  font-size: 14px;
}

.jws-family-index__item > a {
  color: var(--jws-blue);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.jws-product-catalog {
  border-top: 1px solid oklch(0.9 0.012 255);
  border-bottom: 1px solid oklch(0.9 0.012 255);
  background: oklch(0.967 0.008 255);
}

.jws-product-browser {
  padding: clamp(52px, 6vw, 84px) 0 clamp(76px, 8vw, 112px);
  background: oklch(0.985 0.004 255);
}

.jws-catalog-intro {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: 38px;
}

.jws-catalog-intro h1 {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--jws-navy);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.16;
  text-wrap: balance;
}

.jws-category-picker {
  position: relative;
  width: min(100%, 820px);
}

.jws-category-menu {
  position: relative;
  z-index: 30;
  width: 100%;
}

.jws-category-menu > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 10px;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 14px 22px;
  border: 1px solid oklch(0.76 0.055 255);
  border-radius: 4px;
  color: var(--jws-navy);
  background: oklch(0.965 0.018 255);
  cursor: pointer;
  list-style: none;
  transition: border-color 180ms cubic-bezier(0.22, 1, 0.36, 1), color 180ms cubic-bezier(0.22, 1, 0.36, 1), background 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.jws-category-menu > summary::-webkit-details-marker {
  display: none;
}

.jws-category-menu > summary:hover {
  border-color: var(--jws-blue);
  color: var(--jws-blue-dark);
  background: oklch(0.95 0.028 255);
  box-shadow: 0 8px 24px oklch(0.38 0.09 255 / 0.1);
}

.jws-category-menu__value {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.jws-category-menu__value small {
  color: var(--jws-blue);
  font-size: 10px;
  font-weight: 800;
}

.jws-category-menu__value strong {
  overflow: hidden;
  color: currentColor;
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jws-category-menu > summary > em {
  color: oklch(0.47 0.03 255);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.jws-category-menu > summary i {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.jws-category-menu[open] > summary {
  border-color: var(--jws-navy);
  color: oklch(0.985 0.004 255);
  background: var(--jws-navy);
  box-shadow: 0 10px 28px oklch(0.2 0.05 255 / 0.16);
}

.jws-category-menu[open] .jws-category-menu__value small,
.jws-category-menu[open] > summary > em {
  color: oklch(0.83 0.045 255);
}

.jws-category-menu[open] > summary i {
  transform: translateY(2px) rotate(225deg);
}

.jws-category-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 100%;
  padding: 24px 26px 22px;
  border: 1px solid oklch(0.86 0.018 255);
  border-radius: 4px;
  background: oklch(0.99 0.003 255);
  box-shadow: 0 22px 55px oklch(0.22 0.035 255 / 0.16);
}

.jws-category-menu__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.jws-category-menu__header > div {
  display: grid;
  gap: 5px;
}

.jws-category-menu__header span {
  color: var(--jws-blue);
  font-size: 11px;
  font-weight: 800;
}

.jws-category-menu__header strong {
  color: var(--jws-navy);
  font-size: 21px;
}

.jws-category-menu__header > small {
  color: var(--jws-muted);
  font-size: 12px;
}

.jws-product-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid oklch(0.89 0.012 255);
}

.jws-product-tabs a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  min-height: 58px;
  padding: 0 10px;
  border-bottom: 1px solid oklch(0.9 0.012 255);
  color: oklch(0.43 0.025 255);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms cubic-bezier(0.22, 1, 0.36, 1), background 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.jws-product-tabs a > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jws-product-tabs a:hover,
.jws-product-tabs a.is-active {
  color: var(--jws-blue-dark);
  background: oklch(0.965 0.016 255);
}

.jws-product-tabs small {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
  align-items: center;
  margin-left: 12px;
  color: oklch(0.59 0.018 255);
  font-size: 11px;
  font-weight: 700;
}

.jws-product-tabs em {
  color: var(--jws-blue);
  font-size: 10px;
  font-style: normal;
}

.jws-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.jws-catalog-toolbar > span {
  color: var(--jws-navy);
  font-size: 17px;
  font-weight: 800;
}

.jws-catalog-toolbar > small {
  color: var(--jws-muted);
  font-size: 13px;
}

.jws-product-results {
  position: relative;
}

.jws-product-results::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--jws-blue);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.jws-product-results.is-updating::before {
  animation: jws-catalog-progress 1.1s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  opacity: 1;
}

@keyframes jws-catalog-progress {
  0% { transform: scaleX(0); }
  55% { transform: scaleX(0.72); }
  100% { transform: scaleX(1); }
}

.jws-video-evidence {
  overflow: hidden;
  border-top: 1px solid #dce3ec;
  border-bottom: 1px solid #dce3ec;
  background: #f5f7fa;
}

.jws-video-evidence .jws-section-heading {
  width: 100%;
  margin-right: auto;
  margin-bottom: 36px;
  margin-left: auto;
}

.jws-video-carousel {
  width: 100%;
  margin: 0 auto;
}

.jws-video-carousel__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d7dfe9;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(13, 31, 56, 0.08);
}

.jws-video-carousel__body.has-playlist {
  grid-template-columns: minmax(0, 1fr) 336px;
}

.jws-video-carousel__stage {
  position: relative;
  display: grid;
  overflow: hidden;
  min-width: 0;
  background: #fff;
  container-type: inline-size;
  touch-action: pan-y;
}

.jws-video-carousel__body.has-playlist .jws-video-carousel__stage {
  border-right: 1px solid #d7dfe9;
}

@media (min-width: 961px) {
  .jws-video-carousel__body.has-playlist .jws-video-carousel__stage {
    padding-top: 14px;
  }

  .jws-video-carousel__body.has-playlist .jws-video-carousel__controls {
    top: calc(14px + 28.125cqi);
  }
}

.jws-video-carousel__slide {
  grid-area: 1 / 1;
  min-width: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 360ms;
}

.jws-video-carousel__slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.jws-video-carousel__slide > .jws-video-player {
  border-radius: 0;
}

.jws-video-player {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  background: #081426;
}

.jws-video-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #081426;
}

.jws-video-player__cover {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  color: #fff;
  background: #081426;
}

.jws-video-player__cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 38, 0.02) 42%, rgba(8, 20, 38, 0.82) 100%);
  content: "";
}

.jws-video-player__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.jws-video-player__cover:hover img {
  transform: scale(1.015);
}

.jws-video-player__action {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.jws-video-player__action strong {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(4, 14, 30, 0.72);
}

.jws-video-player__play {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(4, 14, 30, 0.22);
}

.jws-video-player__play::after {
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--jws-blue);
  content: "";
  transform: translate(-38%, -50%);
}

.jws-video-player.is-started .jws-video-player__cover {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.jws-video-player__duration {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  color: #fff;
  background: rgba(8, 20, 38, 0.78);
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}

.jws-video-evidence__copy {
  min-height: 148px;
  padding: 28px 30px 32px;
}

.jws-video-evidence__copy > span,
.jws-video-library__copy > span {
  color: var(--jws-blue);
  font-size: 12px;
  font-weight: 800;
}

.jws-video-evidence__copy h3 {
  margin: 10px 0 12px;
  color: var(--jws-navy);
  font-size: 27px;
  line-height: 1.4;
}

.jws-video-evidence__copy p,
.jws-video-library__copy p {
  margin: 0;
  color: var(--jws-muted);
  font-size: 14px;
  line-height: 1.85;
}

.jws-video-carousel__controls {
  top: 28.125cqi;
  right: 18px;
  left: 18px;
  transform: translateY(-50%);
}

.jws-video-carousel__playlist {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #f8fafc;
}

.jws-video-carousel__selectors {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 14px;
  scroll-padding: 14px;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scrollbar-color: #aebbc9 transparent;
  scrollbar-width: thin;
}

.jws-video-carousel__selector,
.jws-video-carousel__more {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: 78px;
  width: 100%;
  min-width: 0;
  min-height: 78px;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d4dde8;
  border-radius: 3px;
  color: var(--jws-navy);
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 31, 56, 0.045);
  font: inherit;
  scroll-snap-align: start;
  text-align: left;
  text-decoration: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.jws-video-carousel__selector {
  cursor: pointer;
}

.jws-video-carousel__selector::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--jws-blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.jws-video-carousel__selector:hover,
.jws-video-carousel__selector.is-active,
.jws-video-carousel__more:hover {
  border-color: #99b8e8;
  box-shadow: 0 12px 28px rgba(13, 31, 56, 0.09);
  transform: translateX(2px);
}

.jws-video-carousel__selector.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.jws-video-carousel__selector:focus-visible,
.jws-video-carousel__more:focus-visible {
  z-index: 1;
  outline: 2px solid var(--jws-blue);
  outline-offset: 2px;
}

.jws-video-carousel__selector img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #dfe5ed;
}

.jws-video-carousel__selector > span,
.jws-video-carousel__more > span:last-child {
  display: grid;
  align-content: center;
  min-width: 0;
  gap: 5px;
  padding: 10px 12px;
}

.jws-video-carousel__selector small,
.jws-video-carousel__more > span:last-child small {
  color: var(--jws-blue);
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.jws-video-carousel__selector strong,
.jws-video-carousel__more > span:last-child strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--jws-navy);
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.jws-video-carousel__more {
  background: #f2f6fc;
}

.jws-video-carousel__more-visual {
  display: grid;
  height: 100%;
  align-content: center;
  justify-items: center;
  gap: 5px;
  color: #dce9ff;
  background: var(--jws-navy);
}

.jws-video-carousel__more-visual small {
  color: #9fc0f7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.jws-video-carousel__more-visual i {
  color: #f8fbff;
  font-size: 22px;
  font-style: normal;
  line-height: 1;
}

.jws-page-hero--videos img {
  object-position: center 48%;
}

.jws-page-hero--videos h1 {
  text-wrap: balance;
}

.jws-video-library {
  border-bottom: 1px solid #dce3ec;
  background: #fff;
}

.jws-video-library__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 34px;
}

.jws-video-library__item {
  min-width: 0;
  padding-top: 18px;
  border-top: 3px solid var(--jws-navy);
}

.jws-video-library__copy {
  padding: 25px 2px 0;
}

.jws-video-library__copy h2 {
  margin: 10px 0 13px;
  color: var(--jws-navy);
  font-size: 24px;
  line-height: 1.4;
}

.jws-video-library__copy small {
  display: block;
  margin-top: 16px;
  color: #738197;
  font-size: 12px;
}

.jws-product-videos {
  border-top: 1px solid #dce3ec;
  background: #f5f7fa;
}

@media (max-width: 960px) {
  .jws-video-carousel__body.has-playlist {
    grid-template-columns: minmax(0, 1fr);
  }

  .jws-video-carousel__body.has-playlist .jws-video-carousel__stage {
    border-right: 0;
    border-bottom: 1px solid #d7dfe9;
  }

  .jws-video-carousel__selectors {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
  }

  .jws-video-carousel__selector,
  .jws-video-carousel__more {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(74px, 1fr);
    width: auto;
    min-height: 0;
    flex-basis: calc((100% - 24px) / 3);
  }

  .jws-video-carousel__selector:hover,
  .jws-video-carousel__selector.is-active,
  .jws-video-carousel__more:hover {
    transform: translateY(-2px);
  }

  .jws-video-carousel__selector img,
  .jws-video-carousel__more-visual {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .jws-video-library__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .jws-page-hero--videos h1 {
    max-width: 12em;
    font-size: 30px;
  }

  .jws-video-evidence__copy {
    min-height: 0;
    padding: 22px 20px 25px;
  }

  .jws-video-evidence__copy h3 {
    font-size: 22px;
  }

  .jws-video-evidence .jws-section-heading {
    margin-bottom: 28px;
  }

  .jws-video-carousel__selectors {
    gap: 10px;
    padding: 12px 12px 14px;
    scroll-padding: 12px;
  }

  .jws-video-carousel__selector,
  .jws-video-carousel__more {
    flex-basis: 210px;
    min-width: 210px;
  }

  .jws-video-library__grid {
    gap: 42px;
  }

  .jws-video-library__copy h2 {
    font-size: 21px;
  }

  .jws-video-player__duration {
    top: 10px;
    right: 10px;
  }

  .jws-video-player__action {
    left: 14px;
    bottom: 13px;
    gap: 10px;
  }

  .jws-video-player__play {
    width: 40px;
    height: 40px;
  }

  .jws-video-carousel__controls {
    right: 10px;
    left: 10px;
  }

  .jws-video-carousel__controls button,
  .jws-case-carousel__controls button {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jws-video-carousel__slide,
  .jws-video-carousel__selector,
  .jws-video-carousel__selector::after,
  .jws-video-carousel__more,
  .jws-case-carousel__slide,
  .jws-case-carousel__controls button,
  .jws-video-carousel__controls button,
  .jws-video-player__cover img {
    transition: none;
  }

  .jws-product-results.is-updating::before {
    animation: none;
    transform: scaleX(1);
  }
}

.jws-product-guidance {
  border-top: 1px solid oklch(0.91 0.01 255);
}

.jws-product-loading {
  display: grid;
  place-items: center;
  min-height: 430px;
  color: var(--jws-navy);
  text-align: center;
}

.jws-product-loading > span {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 2px solid oklch(0.86 0.025 255);
  border-top-color: var(--jws-blue);
  border-radius: 50%;
  animation: jws-spin 800ms linear infinite;
}

.jws-product-loading strong {
  font-size: 18px;
}

.jws-product-loading p {
  margin: 4px 0 0;
  color: var(--jws-muted);
  font-size: 13px;
}

@keyframes jws-spin {
  to { transform: rotate(360deg); }
}

.jws-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  margin-bottom: 38px;
  color: var(--jws-muted);
  font-size: 13px;
}

.jws-breadcrumb a:hover {
  color: var(--jws-blue);
}

.jws-breadcrumb span:last-child {
  overflow: hidden;
  color: var(--jws-ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jws-product-detail {
  padding: 32px 0 clamp(72px, 8vw, 108px);
  background: oklch(0.985 0.004 255);
}

.jws-product-detail__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.jws-product-detail__media {
  display: grid;
  place-items: center;
  min-height: 560px;
  margin: 0;
  padding: clamp(32px, 4vw, 58px);
  border: 1px solid oklch(0.91 0.01 255);
  border-radius: 4px;
  background: oklch(0.97 0.008 255);
}

.jws-product-detail__media img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.jws-product-detail__summary h1 {
  margin: 16px 0 22px;
  color: var(--jws-navy);
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.jws-product-detail__summary > p {
  max-width: 62ch;
  margin: 0;
  color: var(--jws-muted);
  font-size: 16px;
  line-height: 1.9;
}

.jws-product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 0;
  border-top: 1px solid oklch(0.89 0.012 255);
}

.jws-product-facts > div {
  display: grid;
  grid-template-columns: minmax(88px, 0.72fr) minmax(0, 1.28fr);
  gap: 12px;
  padding: 14px 10px 14px 0;
  border-bottom: 1px solid oklch(0.9 0.01 255);
}

.jws-product-facts > div:nth-child(odd) {
  margin-right: 22px;
}

.jws-product-facts dt,
.jws-product-facts dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.jws-product-facts dt {
  color: var(--jws-muted);
}

.jws-product-facts dd {
  overflow-wrap: anywhere;
  color: var(--jws-navy);
  font-weight: 700;
}

.jws-product-detail__actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 36px;
}

.jws-product-detail__content {
  border-top: 1px solid oklch(0.91 0.01 255);
}

.jws-product-detail__content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: clamp(56px, 7vw, 104px);
  align-items: start;
}

.jws-product-detail__content h2 {
  max-width: 720px;
  margin: 16px 0 22px;
  color: var(--jws-navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
}

.jws-product-detail__lede,
.jws-product-richtext {
  max-width: 72ch;
  color: var(--jws-muted);
  line-height: 1.95;
}

.jws-product-richtext {
  margin-top: 28px;
}

.jws-product-richtext p,
.jws-product-richtext ul,
.jws-product-richtext ol,
.jws-product-richtext table {
  margin: 0 0 20px;
}

.jws-product-richtext ul,
.jws-product-richtext ol {
  padding-left: 22px;
}

.jws-product-richtext table {
  width: 100%;
  border-collapse: collapse;
}

.jws-product-richtext td,
.jws-product-richtext th {
  padding: 12px;
  border: 1px solid oklch(0.88 0.012 255);
  text-align: left;
}

.jws-product-detail__aside {
  position: sticky;
  top: 24px;
  padding: 32px;
  border: 1px solid oklch(0.89 0.016 255);
  border-radius: 4px;
  background: oklch(0.965 0.015 255);
}

.jws-product-detail__aside > span {
  color: var(--jws-blue);
  font-size: 12px;
  font-weight: 800;
}

.jws-product-detail__aside h2 {
  margin: 12px 0 16px;
  font-size: 24px;
}

.jws-product-detail__aside p {
  margin: 0 0 24px;
  color: var(--jws-muted);
  font-size: 14px;
  line-height: 1.85;
}

.jws-related-products .jws-product-card__body {
  min-height: 174px;
}

.jws-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 20px;
}

.jws-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid oklch(0.9 0.012 255);
  border-radius: 4px;
  background: var(--jws-white);
  box-shadow: 0 10px 28px rgba(13, 31, 56, 0.06);
  transition: border-color 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1), transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.jws-product-card:hover {
  border-color: oklch(0.77 0.09 255);
  box-shadow: 0 18px 38px rgba(13, 31, 56, 0.12);
  transform: translateY(-3px);
}

.jws-product-card__media {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid oklch(0.92 0.009 255);
  background: oklch(0.985 0.004 255);
  aspect-ratio: 1;
}

.jws-product-card__media img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.jws-product-card:hover .jws-product-card__media img {
  transform: scale(1.035);
}

.jws-product-card__body {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 20px 20px 22px;
}

.jws-product-card__body > span {
  color: var(--jws-blue);
  font-size: 12px;
  font-weight: 800;
}

.jws-product-card h2 {
  display: -webkit-box;
  min-height: 76px;
  margin: 10px 0 18px;
  overflow: hidden;
  color: var(--jws-navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.jws-product-card h2 a:hover,
.jws-product-card__link:hover {
  color: var(--jws-blue-dark);
}

.jws-product-card__body > p {
  display: -webkit-box;
  margin: -6px 0 16px;
  overflow: hidden;
  color: var(--jws-muted);
  font-size: 13px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.jws-product-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--jws-blue);
  font-size: 13px;
  font-weight: 800;
}

.jws-selection-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: start;
}

.jws-selection-grid h2 {
  margin: 18px 0 24px;
}

.jws-selection-grid > div:first-child > p {
  margin: 0;
  color: var(--jws-muted);
  line-height: 1.9;
}

.jws-selection-list {
  border-top: 1px solid #cfd6df;
}

.jws-selection-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  min-height: 92px;
  padding: 24px 0;
  border-bottom: 1px solid #cfd6df;
}

.jws-selection-list strong {
  color: var(--jws-navy);
}

.jws-selection-list span {
  color: var(--jws-muted);
}

.jws-product-proof__grid,
.jws-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 72px;
  align-items: center;
}

.jws-product-proof img,
.jws-location-grid__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.jws-product-proof h2,
.jws-location-grid__content h2 {
  margin: 18px 0 24px;
}

.jws-product-proof p,
.jws-location-grid__content > p {
  margin: 0 0 32px;
  color: var(--jws-muted);
  line-height: 1.9;
}

.jws-company-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: start;
}

.jws-company-intro .jws-section-heading {
  display: block;
  margin: 0;
}

.jws-company-intro .jws-section-heading > span {
  margin-bottom: 18px;
}

.jws-company-intro__copy {
  padding-top: 38px;
  border-top: 1px solid var(--jws-line);
}

.jws-company-intro__copy p {
  margin: 0 0 22px;
  color: var(--jws-muted);
  font-size: 17px;
  line-height: 2;
}

.jws-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cfd6df;
  border-bottom: 1px solid #cfd6df;
}

.jws-capability-grid article {
  min-height: 280px;
  padding: 32px 26px;
  border-right: 1px solid #cfd6df;
}

.jws-capability-grid article:last-child {
  border-right: 0;
}

.jws-capability-grid span {
  color: var(--jws-blue);
  font-size: 13px;
  font-weight: 800;
}

.jws-capability-grid h3 {
  margin: 58px 0 14px;
  color: var(--jws-navy);
  font-size: 20px;
}

.jws-capability-grid p {
  margin: 0;
  color: var(--jws-muted);
  font-size: 14px;
  line-height: 1.8;
}

.jws-location {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 4px 18px;
  padding: 22px 0;
  border-top: 1px solid var(--jws-line);
}

.jws-location:last-child {
  border-bottom: 1px solid var(--jws-line);
}

.jws-location strong {
  grid-row: span 2;
  color: var(--jws-navy);
}

.jws-location p,
.jws-location span {
  margin: 0;
}

.jws-location p {
  color: var(--jws-ink);
}

.jws-location span {
  color: var(--jws-muted);
  font-size: 13px;
}

.jws-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #344860;
  border-bottom: 1px solid #344860;
}

.jws-values__grid > div {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 36px;
  border-right: 1px solid #344860;
}

.jws-values__grid > div:last-child {
  border-right: 0;
}

.jws-values__grid strong {
  color: var(--jws-white);
  font-size: 20px;
}

.jws-values__grid span {
  color: #b7c5d9;
  font-size: 14px;
}

.jws-subnav {
  border-bottom: 1px solid var(--jws-line);
  background: var(--jws-white);
}

.jws-subnav .jws-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
}

.jws-subnav a {
  position: relative;
  min-width: 150px;
  padding: 23px 28px 21px;
  color: var(--jws-muted);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.jws-subnav a::after {
  position: absolute;
  right: 28px;
  bottom: -1px;
  left: 28px;
  height: 2px;
  background: transparent;
  content: "";
}

.jws-subnav a:hover,
.jws-subnav a.is-active {
  color: var(--jws-blue);
}

.jws-subnav a.is-active::after {
  background: var(--jws-blue);
}

.jws-page-hero--news > img,
.jws-page-hero--factory > img {
  object-position: center 52%;
}

.jws-page-hero--cases > img {
  object-position: center 58%;
}

.jws-page-hero--news::after,
.jws-page-hero--cases::after,
.jws-page-hero--factory::after,
.jws-page-hero--quality::after {
  background: linear-gradient(90deg, rgba(13,31,56,0.94) 0%, rgba(13,31,56,0.7) 52%, rgba(13,31,56,0.2) 100%);
}

.jws-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 64px;
  align-items: start;
}

.jws-news-feature__media,
.jws-news-item__media,
.jws-case-library__media {
  display: block;
  overflow: hidden;
  background: #dfe5ed;
}

.jws-news-feature__media img,
.jws-news-item__media img,
.jws-case-library__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.jws-news-feature__media:hover img,
.jws-news-item__media:hover img,
.jws-case-library__media:hover img {
  transform: scale(1.025);
}

.jws-news-feature__media {
  aspect-ratio: 16 / 10;
}

.jws-news-feature__copy {
  padding-top: 26px;
}

.jws-news-feature time,
.jws-news-item time,
.jws-case-library__item time {
  color: var(--jws-blue);
  font-size: 12px;
  font-weight: 800;
}

.jws-news-feature h2 {
  margin: 12px 0 15px;
  color: var(--jws-navy);
  font-size: 28px;
  line-height: 1.45;
}

.jws-news-feature p,
.jws-news-item p,
.jws-case-library__item p {
  color: var(--jws-muted);
  line-height: 1.8;
}

.jws-news-feature p {
  margin: 0 0 22px;
  font-size: 15px;
}

.jws-news-list {
  border-top: 1px solid var(--jws-line);
}

.jws-news-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--jws-line);
}

.jws-news-item__media {
  aspect-ratio: 4 / 3;
}

.jws-news-item h2 {
  margin: 6px 0 7px;
  color: var(--jws-navy);
  font-size: 16px;
  line-height: 1.5;
}

.jws-news-item p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.jws-news-feature h2 a:hover,
.jws-news-item h2 a:hover,
.jws-case-library__item h2 a:hover {
  color: var(--jws-blue);
}

.jws-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
}

.jws-pagination a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--jws-line);
  color: var(--jws-muted);
  font-size: 13px;
  font-weight: 800;
}

.jws-pagination a:hover,
.jws-pagination a.is-active {
  border-color: var(--jws-blue);
  color: var(--jws-white);
  background: var(--jws-blue);
}

.jws-empty-state {
  padding: 48px 0;
  border-top: 1px solid var(--jws-line);
  border-bottom: 1px solid var(--jws-line);
  color: var(--jws-muted);
}

.jws-case-library {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.jws-case-library__item {
  min-width: 0;
}

.jws-case-library__media {
  position: relative;
  aspect-ratio: 4 / 3;
}

.jws-case-library__media > span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--jws-white);
  background: var(--jws-blue);
  font-size: 12px;
  font-weight: 800;
}

.jws-case-library__item > div {
  padding: 24px 2px 0;
}

.jws-case-library__item h2 {
  min-height: 58px;
  margin: 9px 0 12px;
  color: var(--jws-navy);
  font-size: 19px;
  line-height: 1.5;
}

.jws-case-library__item p {
  min-height: 50px;
  margin: 0 0 18px;
  font-size: 13px;
}

.jws-case-method,
.jws-factory-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: start;
}

.jws-case-method .jws-section-heading,
.jws-factory-intro .jws-section-heading {
  display: block;
  margin: 0;
}

.jws-factory-intro__copy {
  padding-top: 34px;
  border-top: 1px solid var(--jws-line);
}

.jws-factory-intro__copy p {
  margin: 0 0 20px;
  color: var(--jws-muted);
  font-size: 16px;
  line-height: 1.95;
}

.jws-factory-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 205px;
  gap: 16px;
}

.jws-factory-gallery figure {
  position: relative;
  grid-column: span 3;
  margin: 0;
  overflow: hidden;
  background: #dfe5ed;
}

.jws-factory-gallery figure:first-child {
  grid-column: span 6;
  grid-row: span 2;
}

.jws-factory-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jws-factory-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 16px 14px;
  color: var(--jws-white);
  background: linear-gradient(transparent, rgba(8, 22, 39, 0.82));
  font-size: 13px;
  font-weight: 700;
}

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

.jws-certificate-grid figure {
  margin: 0;
  border: 1px solid var(--jws-line);
  background: var(--jws-white);
}

.jws-certificate-grid figure > div {
  display: grid;
  aspect-ratio: 3 / 4;
  padding: 18px;
  place-items: center;
  background: #f5f7fa;
}

.jws-certificate-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jws-certificate-grid figcaption {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 14px 16px;
  border-top: 1px solid var(--jws-line);
}

.jws-certificate-grid figcaption span {
  color: var(--jws-blue);
  font-size: 12px;
  font-weight: 800;
}

.jws-certificate-grid figcaption strong {
  color: var(--jws-navy);
  font-size: 14px;
  line-height: 1.45;
}

.jws-article-hero {
  padding: 88px 0 82px;
  color: var(--jws-white);
  background: var(--jws-navy);
}

.jws-article-hero .jws-container > a {
  display: inline-block;
  margin-bottom: 46px;
  color: #aabbd1;
  font-size: 13px;
  font-weight: 700;
}

.jws-article-hero .jws-container > a:hover {
  color: var(--jws-white);
}

.jws-article-hero span {
  display: block;
  color: #67a0ff;
  font-size: 13px;
  font-weight: 800;
}

.jws-article-hero h1 {
  max-width: 980px;
  margin: 16px 0 24px;
  font-size: 44px;
  line-height: 1.35;
}

.jws-article-hero time {
  color: #9fb0c7;
  font-size: 13px;
}

.jws-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 84px;
  align-items: start;
}

.jws-article__content {
  min-width: 0;
}

.jws-article__content > figure {
  margin: 0 0 46px;
}

.jws-article__content > figure img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.jws-article__body {
  color: #3f4b5e;
  font-size: 17px;
  line-height: 2;
}

.jws-article__body p {
  margin: 0 0 24px;
}

.jws-article__body h2,
.jws-article__body h3 {
  margin: 38px 0 16px;
  color: var(--jws-navy);
  line-height: 1.45;
}

.jws-article__aside {
  position: sticky;
  top: 24px;
  padding: 32px;
  border-top: 3px solid var(--jws-blue);
  background: var(--jws-soft);
}

.jws-article__aside > span {
  color: var(--jws-blue);
  font-size: 12px;
  font-weight: 800;
}

.jws-article__aside h2 {
  margin: 12px 0 16px;
  color: var(--jws-navy);
  font-size: 22px;
  line-height: 1.45;
}

.jws-article__aside > p {
  margin: 0 0 24px;
  color: var(--jws-muted);
  font-size: 13px;
  line-height: 1.8;
}

.jws-article__aside dl {
  margin: 28px 0 0;
  border-top: 1px solid var(--jws-line);
}

.jws-article__aside dl > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--jws-line);
}

.jws-article__aside dt {
  color: var(--jws-muted);
  font-size: 11px;
}

.jws-article__aside dd {
  margin: 5px 0 0;
  color: var(--jws-navy);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.jws-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 88px;
  align-items: start;
}

.jws-contact-info h2 {
  margin: 16px 0 14px;
}

.jws-contact-info > p {
  margin: 0 0 34px;
  color: var(--jws-muted);
}

.jws-contact-info dl {
  margin: 0 0 32px;
  border-top: 1px solid var(--jws-line);
}

.jws-contact-info dl > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 60px;
  padding: 17px 0;
  border-bottom: 1px solid var(--jws-line);
}

.jws-contact-info dt {
  color: var(--jws-muted);
  font-size: 13px;
}

.jws-contact-info dd {
  margin: 0;
  color: var(--jws-navy);
  font-weight: 700;
}

.jws-contact-info dd a:hover {
  color: var(--jws-blue);
}

.jws-contact-address {
  padding: 18px 0;
}

.jws-contact-address strong {
  color: var(--jws-navy);
}

.jws-contact-address p {
  margin: 5px 0 0;
  color: var(--jws-muted);
}

.jws-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 44px;
  border: 1px solid var(--jws-line);
  border-radius: 6px;
  background: var(--jws-soft);
}

.jws-contact-form__heading,
.jws-field--full,
.jws-contact-form__submit {
  grid-column: 1 / -1;
}

.jws-contact-form__heading {
  margin-bottom: 8px;
}

.jws-contact-form h2 {
  margin: 8px 0 8px;
  font-size: 30px;
}

.jws-contact-form__heading p {
  margin: 0;
  color: var(--jws-muted);
  font-size: 13px;
}

.jws-field {
  display: grid;
  gap: 8px;
}

.jws-field > span {
  color: #334057;
  font-size: 13px;
  font-weight: 700;
}

.jws-field input,
.jws-field textarea {
  width: 100%;
  border: 1px solid #d2d9e3;
  border-radius: 3px;
  outline: 0;
  color: var(--jws-ink);
  background: var(--jws-white);
  font: inherit;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.jws-field input {
  height: 48px;
  padding: 0 14px;
}

.jws-field textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.jws-field input:focus,
.jws-field textarea:focus {
  border-color: var(--jws-blue);
  box-shadow: 0 0 0 3px rgba(39, 111, 243, 0.12);
}

.jws-contact-form__submit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.jws-contact-form__submit span {
  color: var(--jws-muted);
  font-size: 13px;
}

.jws-contact-form__submit .is-success {
  color: #167548;
}

.jws-contact-form__submit .is-error {
  color: #b42318;
}

.jws-contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.jws-footer {
  color: #c7d2e2;
  background: #0a1728;
}

.jws-footer__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.55fr 1.4fr;
  gap: 72px;
  padding-top: 68px;
  padding-bottom: 58px;
}

.jws-footer__brand img {
  width: 138px;
  height: 54px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.jws-footer__brand strong {
  display: block;
  color: var(--jws-white);
  font-size: 16px;
}

.jws-footer__brand p {
  max-width: 340px;
  margin: 12px 0 0;
  color: #8fa0b7;
  font-size: 13px;
  line-height: 1.8;
}

.jws-footer__column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.jws-footer__column h2 {
  margin: 0 0 13px;
  color: var(--jws-white);
  font-size: 15px;
}

.jws-footer__column a,
.jws-footer__column p {
  color: #9baac0;
  font-size: 13px;
  line-height: 1.7;
}

.jws-footer__column p {
  margin: 0;
}

.jws-footer__column a:hover {
  color: var(--jws-white);
}

.jws-footer__bottom {
  border-top: 1px solid #203049;
  color: #7788a0;
  font-size: 12px;
}

.jws-footer__bottom .jws-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 1180px) {
  .jws-container {
    width: min(var(--jws-container), calc(100% - 40px));
  }

  .jws-nav__links {
    margin-right: 16px;
  }

  .jws-hero--home .jws-hero__image {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: 62% center;
  }

  .jws-nav__links a {
    padding: 0 10px;
    font-size: 14px;
  }

  .jws-nav__links a::after {
    right: 10px;
    left: 10px;
  }

  .jws-nav__actions {
    gap: 14px;
  }

  .jws-section-heading {
    grid-template-columns: 150px minmax(320px, 1fr) minmax(260px, 0.8fr);
  }

  .jws-company-band__content {
    padding: 16px 0;
  }

  .jws-company-band__grid {
    gap: 48px;
  }

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

@media (max-width: 960px) {
  .jws-utility {
    display: none;
  }

  .jws-nav-wrap,
  .jws-nav {
    height: 72px;
  }

  .jws-brand {
    flex-basis: 132px;
    height: 50px;
  }

  .jws-brand img {
    width: 126px;
    height: 48px;
  }

  .jws-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .jws-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .jws-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .jws-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .jws-nav__panel {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 16px 20px 22px;
    border-top: 1px solid var(--jws-line);
    background: var(--jws-white);
    box-shadow: 0 18px 30px rgba(13, 31, 56, 0.12);
  }

  .jws-nav__panel.is-open {
    display: block;
  }

  .jws-nav__links {
    display: grid;
    height: auto;
    margin: 0 0 16px;
  }

  .jws-nav__links a {
    min-height: 46px;
    padding: 0 8px;
    border-bottom: 1px solid var(--jws-line);
  }

  .jws-nav__links a::after {
    display: none;
  }

  .jws-nav__actions {
    justify-content: space-between;
  }

  .jws-hero,
  .jws-hero__inner {
    min-height: 600px;
  }

  .jws-hero::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 52%, rgba(255,255,255,0.44) 100%);
  }

  .jws-hero__copy {
    width: 68%;
  }

  .jws-hero h1 {
    font-size: 44px;
  }

  .jws-section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .jws-delivery .jws-section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .jws-delivery .jws-section-heading > span {
    grid-row: auto;
    padding-top: 0;
  }

  .jws-delivery .jws-section-heading h2,
  .jws-delivery .jws-section-heading p {
    grid-column: auto;
  }

  .jws-section-heading p {
    max-width: 660px;
  }

  .jws-product-lead,
  .jws-company-band__grid,
  .jws-selection-grid,
  .jws-product-proof__grid,
  .jws-company-intro,
  .jws-case-method,
  .jws-factory-intro,
  .jws-location-grid,
  .jws-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .jws-news-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .jws-case-library,
  .jws-certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .jws-article__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .jws-article__aside {
    position: static;
  }

  .jws-product-lead__visual {
    min-height: 480px;
  }

  .jws-company-band__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .jws-company-band__content {
    min-height: 0;
    padding: 0;
  }

  .jws-scenario-grid,
  .jws-capability-grid,
  .jws-delivery__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .jws-scenario:nth-child(2),
  .jws-capability-grid article:nth-child(2),
  .jws-delivery__steps li:nth-child(2) {
    border-right: 0;
  }

  .jws-scenario:nth-child(-n+2),
  .jws-capability-grid article:nth-child(-n+2),
  .jws-delivery__steps li:nth-child(-n+2) {
    border-bottom: 1px solid #cfd6df;
  }

  .jws-case-carousel__slide {
    min-height: 460px;
  }

  .jws-footer__grid {
    grid-template-columns: 1fr 0.6fr 1.4fr;
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .jws-container {
    width: calc(100% - 32px);
  }

  .jws-hero {
    min-height: 650px;
  }

  .jws-hero__image {
    object-position: 62% center;
  }

  .jws-hero::after {
    background: rgba(255, 255, 255, 0.86);
  }

  .jws-hero__inner {
    align-items: flex-start;
    min-height: 555px;
    padding-top: 74px;
    padding-bottom: 120px;
  }

  .jws-hero__copy {
    width: 100%;
    padding-top: 0;
  }

  .jws-hero h1 {
    margin: 14px 0 18px;
    font-size: 36px;
  }

  .jws-hero__copy > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .jws-hero__actions {
    gap: 20px;
    margin-top: 26px;
  }

  .jws-hero__assurance .jws-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .jws-hero__assurance .jws-container > div {
    display: block;
    min-height: 94px;
    padding: 16px 10px;
    text-align: center;
  }

  .jws-hero__assurance strong,
  .jws-hero__assurance span {
    display: block;
  }

  .jws-hero__assurance strong {
    font-size: 14px;
  }

  .jws-hero__assurance span {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.35;
  }

  .jws-section {
    padding: 60px 0;
  }

  .jws-subnav .jws-container {
    width: 100%;
    min-height: 58px;
  }

  .jws-subnav a {
    min-width: 0;
    flex: 1;
    padding: 20px 8px 18px;
    font-size: 13px;
  }

  .jws-subnav a::after {
    right: 12px;
    left: 12px;
  }

  .jws-section-heading {
    margin-bottom: 36px;
  }

  .jws-section-heading h2,
  .jws-company-band__content h2,
  .jws-selection-grid h2,
  .jws-product-proof h2,
  .jws-location-grid__content h2,
  .jws-contact-info h2,
  .jws-contact-form h2 {
    font-size: 30px;
  }

  .jws-product-lead__visual {
    min-height: 360px;
  }

  .jws-family-row {
    grid-template-columns: 34px 1fr 22px;
    gap: 12px;
    min-height: 112px;
    padding: 18px 4px;
  }

  .jws-family-row__content strong {
    font-size: 16px;
  }

  .jws-scenario-grid,
  .jws-capability-grid,
  .jws-delivery__steps,
  .jws-case-grid,
  .jws-values__grid {
    grid-template-columns: 1fr;
  }

  .jws-scenario,
  .jws-capability-grid article,
  .jws-delivery__steps li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
    min-height: 0;
    padding: 24px 4px;
    border-right: 0;
    border-bottom: 1px solid #cfd6df;
  }

  .jws-values__grid > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #cfd6df;
  }

  .jws-scenario:last-child,
  .jws-capability-grid article:last-child,
  .jws-delivery__steps li:last-child,
  .jws-values__grid > div:last-child {
    border-bottom: 0;
  }

  .jws-scenario h3,
  .jws-capability-grid h3,
  .jws-delivery__steps strong {
    align-self: start;
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
  }

  .jws-scenario p,
  .jws-capability-grid p,
  .jws-delivery__steps p {
    grid-column: 2;
    margin-top: 7px;
  }

  .jws-company-band {
    padding: 72px 0;
  }

  .jws-company-band__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .jws-company-band__content dl {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .jws-company-band__content dl div,
  .jws-company-band__content dl div:first-child {
    padding: 0;
    border-right: 0;
  }

  .jws-case-carousel__slide {
    min-height: 500px;
  }

  .jws-case-carousel__slide::after {
    background:
      linear-gradient(180deg, rgba(8, 20, 38, 0.08) 22%, rgba(8, 20, 38, 0.94) 82%),
      linear-gradient(90deg, rgba(8, 20, 38, 0.45), rgba(8, 20, 38, 0.08));
  }

  .jws-case__copy {
    right: 20px;
    bottom: 84px;
    left: 20px;
  }

  .jws-case__copy h3 {
    margin: 10px 0 12px;
    font-size: 25px;
  }

  .jws-case__copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .jws-case__copy small {
    margin-top: 18px;
  }

  .jws-case-carousel__controls {
    right: 18px;
    bottom: 18px;
  }

  .jws-case-carousel__footer {
    padding-top: 16px;
  }

  .jws-contact-cta {
    padding: 52px 0;
  }

  .jws-contact-cta .jws-container,
  .jws-contact-cta .jws-container > div:last-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .jws-contact-cta h2 {
    font-size: 26px;
  }

  .jws-page-hero {
    min-height: 390px;
  }

  .jws-page-hero h1 {
    font-size: 36px;
  }

  .jws-page-hero p {
    font-size: 15px;
  }

  .jws-page-hero--news > img,
  .jws-page-hero--cases > img,
  .jws-page-hero--factory > img,
  .jws-page-hero--quality > img {
    object-position: center;
  }

  .jws-article-hero {
    padding: 58px 0 54px;
  }

  .jws-article-hero .jws-container > a {
    margin-bottom: 32px;
  }

  .jws-article-hero h1 {
    margin-top: 12px;
    font-size: 31px;
    line-height: 1.4;
  }

  .jws-article__content > figure {
    margin-bottom: 32px;
  }

  .jws-article__body {
    font-size: 15px;
    line-height: 1.9;
  }

  .jws-article__aside {
    padding: 26px 22px;
  }

  .jws-news-feature h2 {
    font-size: 23px;
  }

  .jws-news-item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
  }

  .jws-news-item h2 {
    margin-bottom: 0;
    font-size: 15px;
  }

  .jws-news-item p {
    display: none;
  }

  .jws-case-library {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .jws-case-library__item h2,
  .jws-case-library__item p {
    min-height: 0;
  }

  .jws-factory-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 10px;
  }

  .jws-factory-gallery figure {
    grid-column: span 1;
  }

  .jws-factory-gallery figure:first-child {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .jws-factory-gallery figcaption {
    padding: 28px 10px 10px;
    font-size: 11px;
  }

  .jws-certificate-grid {
    gap: 10px;
  }

  .jws-certificate-grid figure > div {
    padding: 10px;
  }

  .jws-certificate-grid figcaption {
    grid-template-columns: 24px 1fr;
    gap: 5px;
    min-height: 66px;
    padding: 10px;
  }

  .jws-certificate-grid figcaption strong {
    font-size: 12px;
  }

  .jws-family-index__item {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 24px 4px;
  }

  .jws-family-index__item h2 {
    font-size: 19px;
  }

  .jws-family-index__item > a {
    grid-column: 2;
  }

  .jws-product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .jws-product-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 142px;
  }

  .jws-product-card__media {
    height: 100%;
    border-right: 1px solid oklch(0.92 0.009 255);
    border-bottom: 0;
    aspect-ratio: auto;
  }

  .jws-product-card__media img {
    padding: 12px;
  }

  .jws-product-card__body {
    min-height: 142px;
    padding: 14px 14px 15px;
  }

  .jws-product-card__body > span {
    font-size: 11px;
  }

  .jws-product-card h2 {
    min-height: 0;
    margin: 6px 0 10px;
    font-size: 15px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .jws-product-card__body > p {
    display: none;
  }

  .jws-product-card__link {
    font-size: 12px;
  }

  .jws-product-pagination {
    margin-top: 36px;
  }

  .jws-selection-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .jws-product-proof__grid,
  .jws-location-grid,
  .jws-company-intro,
  .jws-contact-grid {
    gap: 36px;
  }

  .jws-company-intro__copy {
    padding-top: 28px;
  }

  .jws-company-intro__copy p {
    font-size: 15px;
  }

  .jws-location {
    grid-template-columns: 1fr;
  }

  .jws-contact-form {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .jws-field,
  .jws-field--full,
  .jws-contact-form__submit {
    grid-column: 1;
  }

  .jws-contact-form__submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .jws-footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .jws-footer__bottom .jws-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 960px) {
  .jws-catalog-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .jws-product-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jws-product-detail__lead,
  .jws-product-detail__content-grid {
    grid-template-columns: 1fr;
  }

  .jws-product-detail__media {
    min-height: 460px;
  }

  .jws-product-detail__aside {
    position: static;
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .jws-product-browser {
    padding: 38px 0 64px;
  }

  .jws-catalog-intro {
    margin-bottom: 26px;
  }

  .jws-catalog-intro h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .jws-category-picker {
    width: 100%;
  }

  .jws-category-menu > summary {
    min-height: 74px;
    padding-inline: 16px;
  }

  .jws-category-menu__panel {
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: 100%;
    max-height: calc(100vh - 190px);
    padding: 20px 18px;
    overflow-y: auto;
  }

  .jws-category-menu__header strong {
    font-size: 19px;
  }

  .jws-category-menu__header > small {
    display: none;
  }

  .jws-product-tabs {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .jws-product-tabs a {
    min-height: 52px;
    padding-inline: 8px;
  }

  .jws-catalog-toolbar {
    min-height: 64px;
  }

  .jws-catalog-toolbar > span {
    font-size: 15px;
  }

  .jws-catalog-toolbar > small {
    font-size: 12px;
  }

  .jws-product-detail {
    padding: 22px 0 64px;
  }

  .jws-breadcrumb {
    margin-bottom: 24px;
  }

  .jws-product-detail__lead {
    gap: 34px;
  }

  .jws-product-detail__media {
    min-height: 320px;
    padding: 24px;
  }

  .jws-product-detail__summary h1 {
    margin: 12px 0 18px;
    font-size: 30px;
  }

  .jws-product-detail__summary > p {
    font-size: 14px;
  }

  .jws-product-facts {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .jws-product-facts > div:nth-child(odd) {
    margin-right: 0;
  }

  .jws-product-detail__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .jws-product-detail__content-grid {
    gap: 48px;
  }

  .jws-product-detail__aside {
    padding: 26px 22px;
  }
}

@media (max-width: 420px) {
  .jws-brand {
    flex-basis: 118px;
  }

  .jws-brand img {
    width: 112px;
  }

  .jws-hero h1,
  .jws-page-hero h1 {
    font-size: 32px;
  }

  .jws-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .jws-button {
    min-width: 142px;
  }

  .jws-hero__assurance span {
    display: none;
  }

  .jws-hero__assurance .jws-container > div {
    min-height: 62px;
  }
}

@media (max-width: 960px) {
  .jws-service-contact__layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .jws-service-list > div,
  .jws-company-contact__grid > div {
    min-height: 164px;
    padding-inline: 20px;
  }
}

@media (max-width: 720px) {
  .jws-service-contact {
    padding: 64px 0;
  }

  .jws-service-contact__intro h2 {
    font-size: 30px;
  }

  .jws-service-list,
  .jws-company-contact__grid {
    grid-template-columns: 1fr;
  }

  .jws-service-list > div,
  .jws-company-contact__grid > div {
    min-height: 0;
    padding: 24px 4px;
    border-right: 0;
    border-bottom: 1px solid #cdd6e2;
  }

  .jws-service-list > div:last-child,
  .jws-company-contact__grid > div:last-child {
    border-bottom: 0;
  }

  .jws-service-list dd,
  .jws-company-contact__grid dd {
    margin-top: 16px;
  }

  .jws-wechat-float {
    display: none;
  }

  .jws-wechat-float__button {
    width: 52px;
    min-height: 58px;
  }

  .jws-wechat-float__panel {
    right: 0;
    bottom: 68px;
    width: min(286px, calc(100vw - 32px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html.jws-enhanced {
    scroll-behavior: auto;
  }

  body.jws-enhanced *,
  body.jws-enhanced *::before,
  body.jws-enhanced *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
