:root {
  --ink: #17212b;
  --ink-soft: #4c5967;
  --navy: #10283d;
  --navy-deep: #0a1b2b;
  --blue: #1767b7;
  --blue-dark: #0d4f91;
  --red: #d9232e;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --line: #dce2e7;
  --line-dark: #31485b;
  --shadow: 0 16px 40px rgba(10, 27, 43, 0.12);
  --container: 1280px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.12; font-weight: 680; letter-spacing: 0; }
h1 { font-size: 72px; }
h2 { font-size: 50px; }
h3 { font-size: 21px; }
p { color: var(--ink-soft); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.site-main { min-height: 60vh; }
.section { padding: 82px 0; }
.section--soft { background: var(--soft); }
.section--dark { color: white; background: var(--navy-deep); }
.section--dark h2, .section--dark h3, .section--dark p { color: white; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 99999; padding: 10px 16px; background: white; }
.skip-link:focus { top: 12px; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow--light { color: #9fc9ef; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--blue); }
.button--primary:hover { color: white; background: var(--blue-dark); }
.button--dark { color: white; background: var(--navy); }
.button--dark:hover { color: white; background: var(--navy-deep); }
.button--light { color: var(--navy); background: white; }
.button--light:hover { color: white; background: var(--red); }
.button--outline { color: var(--ink); border-color: #b9c2ca; background: transparent; }
.button--outline:hover { color: white; border-color: var(--navy); background: var(--navy); }
.button--ghost { color: white; border-color: rgba(255,255,255,.65); background: rgba(10,27,43,.2); }
.button--ghost:hover { border-color: white; background: rgba(10,27,43,.55); }
.button--header { min-height: 42px; color: white; background: var(--blue); }
.button--large { min-height: 56px; padding-inline: 28px; }
.button--full { width: 100%; }
.icon-button {
  display: inline-grid;
  width: 42px; height: 42px;
  flex: 0 0 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  cursor: pointer;
}
.icon-button svg { width: 19px; height: 19px; }
.icon-button:hover { color: var(--blue); border-color: var(--blue); }
.icon-button--light { color: white; border-color: rgba(255,255,255,.55); background: rgba(7,24,38,.35); }
.text-link, .text-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}
.text-link svg, .text-button svg { width: 17px; height: 17px; transition: transform .2s ease; }
.text-link:hover svg, .text-button:hover svg { transform: translateX(4px); }

/* Header */
.announcement { position: relative; z-index: 101; color: white; background: var(--navy-deep); }
.announcement__inner { display: flex; height: 34px; align-items: center; justify-content: space-between; gap: 24px; font-size: 12px; }
.announcement__slides { position: relative; min-width: 0; flex: 1; height: 20px; overflow: hidden; }
.announcement__slides span { position: absolute; inset: 0; opacity: 0; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease; }
.announcement__slides span.is-active { opacity: 1; transform: none; }
.announcement a { display: inline-flex; align-items: center; gap: 6px; color: white; font-weight: 700; }
.announcement svg { width: 14px; }
.site-header { position: relative; z-index: 100; width: 100%; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); transition: background-color .25s ease, box-shadow .25s ease; }
.home .site-header { position: absolute; top: 34px; border-bottom-color: rgba(255,255,255,.22); background: rgba(9,27,42,.2); }
.site-header.is-sticky { position: fixed; top: 0; background: rgba(255,255,255,.98); box-shadow: 0 8px 26px rgba(10,27,43,.1); }
.site-header__inner { display: flex; height: var(--header-height); align-items: center; gap: 28px; }
.brand { width: 172px; flex: 0 0 172px; }
.brand img { width: 100%; height: 52px; object-fit: contain; }
.home .site-header:not(.is-sticky) .brand { padding: 5px 10px; background: rgba(255,255,255,.9); }
.desktop-nav { min-width: 0; flex: 1; }
.primary-menu, .primary-menu ul { margin: 0; padding: 0; list-style: none; }
.primary-menu { display: flex; align-items: center; justify-content: center; gap: 2px; }
.primary-menu > li { position: relative; }
.primary-menu > li > a {
  display: flex;
  height: var(--header-height);
  align-items: center;
  padding: 0 13px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}
.home .site-header:not(.is-sticky) .primary-menu > li > a { color: white; }
.primary-menu > li > a::after { position: absolute; right: 13px; bottom: 18px; left: 13px; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-menu > li:hover > a::after, .primary-menu > .current-menu-item > a::after, .primary-menu > .current-menu-ancestor > a::after { transform: scaleX(1); }
.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 300px;
  padding: 12px;
  border-top: 3px solid var(--blue);
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.primary-menu li:hover > .sub-menu, .primary-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.primary-menu .sub-menu a { display: flex; align-items: center; justify-content: space-between; min-height: 42px; padding: 8px 10px; color: var(--ink); font-size: 13px; line-height: 1.35; }
.primary-menu .sub-menu a:hover { color: var(--blue); background: var(--soft); }
.primary-menu .sub-menu .sub-menu { top: -3px; left: calc(100% + 4px); }
.primary-menu .menu-mega > .sub-menu {
  left: clamp(-300px, -20vw, -120px);
  display: grid;
  width: min(1040px, calc(100vw - 64px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px 24px;
  padding: 24px;
}
.primary-menu .menu-mega > .sub-menu > li > a { min-height: auto; padding-block: 8px; color: var(--navy); font-size: 14px; font-weight: 760; }
.primary-menu .menu-mega > .sub-menu .sub-menu { position: static; display: block; width: auto; padding: 0; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
.primary-menu .menu-mega > .sub-menu .sub-menu a { min-height: 32px; padding: 4px 10px; color: var(--ink-soft); font-size: 12px; }
.primary-menu .ast-menu-toggle, .primary-menu .sub-menu a > .ast-icon, .primary-menu .sub-menu .ast-header-navigation-arrow { display: none !important; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language { font-size: 12px; font-weight: 800; }
.menu-toggle { display: none; }
.mobile-panel, .page-scrim { display: none; }
.search-overlay { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 24px; background: rgba(8,22,34,.96); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-overlay__close { position: absolute; top: 28px; right: 28px; color: white; border-color: rgba(255,255,255,.4); background: transparent; }
.search-overlay form { width: min(760px, 100%); }
.search-overlay label { display: block; margin-bottom: 18px; color: white; font-size: clamp(26px, 4vw, 46px); font-weight: 680; line-height: 1.2; }
.search-overlay__field { display: flex; gap: 10px; }
.search-overlay input { width: 100%; height: 58px; padding: 0 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 4px; color: white; background: rgba(255,255,255,.08); outline: 0; }

/* Home hero */
.hero-slider { position: relative; height: clamp(480px, 41.6667vw, 800px); color: white; background: var(--navy); overflow: hidden; }
.hero-slider__track, .hero-slide { position: absolute; inset: 0; }
.hero-slide { display: grid; align-items: center; opacity: 0; visibility: hidden; transform: scale(1.012); transition: opacity .7s ease, visibility .7s ease, transform 6s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-slide__artwork { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide__shade { display: none; }
.hero-slide__content { display: none; position: relative; z-index: 1; }
.hero-slide__content > * { opacity: 0; transform: translateY(18px); }
.hero-slide.is-active .hero-slide__content > * { animation: juye-hero-copy-in .68s ease forwards; }
.hero-slide.is-active .hero-slide__content > :nth-child(2) { animation-delay: .08s; }
.hero-slide.is-active .hero-slide__content > :nth-child(3) { animation-delay: .16s; }
.hero-slide.is-active .hero-slide__content > :nth-child(4) { animation-delay: .24s; }
.hero-slide__content h1 { width: min(800px, 78%); margin-bottom: 22px; color: white; }
.hero-slide__content > p:not(.eyebrow) { width: min(680px, 75%); margin-bottom: 30px; color: rgba(255,255,255,.84); font-size: 18px; }
.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-slider__controls { display: none; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 38px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.hero-dots button.is-active { background: white; }
.hero-arrows { display: flex; gap: 8px; }
.category-dock { position: relative; z-index: 5; margin-top: 0; }
.category-dock__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); background: var(--blue); box-shadow: var(--shadow); }
.category-dock__item { display: grid; min-height: 116px; grid-template-columns: 62px 1fr 22px; align-items: center; gap: 14px; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.22); color: white; transition: background-color .2s ease; }
.category-dock__item:last-child { border-right: 0; }
.category-dock__item:hover { color: white; background: var(--navy); }
.category-dock__item img { width: 62px; height: 62px; object-fit: contain; background: white; }
.category-dock__item strong, .category-dock__item small { display: block; }
.category-dock__item strong { font-size: 14px; line-height: 1.3; }
.category-dock__item small { margin-top: 6px; color: rgba(255,255,255,.7); font-size: 11px; }
.category-dock__item svg { width: 18px; }
.split-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: center; gap: 72px; }
.split-layout--intro { grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); }
.intro-media { position: relative; }
.intro-media > img { width: 100%; min-height: 520px; object-fit: cover; }
.intro-media__badge { position: absolute; right: -24px; bottom: -24px; display: flex; width: 180px; height: 150px; flex-direction: column; justify-content: center; padding: 24px; color: white; background: var(--red); }
.intro-media__badge strong { font-size: 42px; line-height: 1; }
.intro-media__badge span { margin-top: 10px; font-size: 12px; line-height: 1.35; }
.intro-copy h2 { margin-bottom: 24px; }
.intro-copy p { font-size: 17px; }
.inline-links { display: flex; align-items: center; gap: 22px; margin-top: 30px; }
.stats-band { color: white; background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.stats-grid > div { display: flex; min-height: 154px; flex-direction: column; justify-content: center; padding: 24px 34px; border-right: 1px solid var(--line-dark); }
.stats-grid > div:last-child { border-right: 0; }
.stats-grid strong { color: white; font-size: 42px; line-height: 1; }
.stats-grid strong::after { content: "+"; color: var(--red); font-size: 24px; }
.stats-grid span { margin-top: 12px; color: #b8c7d3; font-size: 13px; }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading > p:last-child { font-size: 17px; }
.section-heading--split { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 28px; }
.section-heading--split > div:first-child { max-width: 760px; }
.section-heading__actions { display: flex; align-items: center; gap: 8px; }
.product-rail { display: grid; grid-auto-columns: minmax(282px, 1fr); grid-auto-flow: column; gap: 18px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; scroll-snap-type: x mandatory; }
.product-rail::-webkit-scrollbar { display: none; }
.product-card { min-width: 0; border: 1px solid var(--line); background: white; scroll-snap-align: start; transition: box-shadow .22s ease, transform .22s ease; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product-card__image { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #f7f8f9; }
.product-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-card__image img { transform: scale(1.035); }
.product-card__view { position: absolute; right: 12px; bottom: 12px; display: grid; width: 38px; height: 38px; place-items: center; color: white; background: var(--navy); opacity: 0; transform: translateY(5px); transition: opacity .2s ease, transform .2s ease; }
.product-card:hover .product-card__view { opacity: 1; transform: none; }
.product-card__view svg { width: 17px; }
.product-card__body { display: flex; min-height: 200px; flex-direction: column; padding: 22px; }
.product-card__eyebrow { min-height: 20px; margin-bottom: 10px; color: var(--blue); font-size: 11px; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.product-card__eyebrow a:hover { text-decoration: underline; }
.product-card h3 { display: -webkit-box; margin-bottom: 22px; font-size: 18px; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.product-card__meta > span { color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.why-section { color: white; background: var(--navy-deep); }
.why-section .section-heading h2, .why-section .section-heading p { color: white; }
.advantage-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.advantage { position: relative; min-height: 320px; padding: 34px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.advantage > span { position: absolute; top: 24px; right: 24px; color: #5e7181; font-size: 12px; }
.advantage > svg { width: 34px; height: 34px; margin-bottom: 38px; color: #8cc3f0; }
.advantage h3 { color: white; }
.advantage p { margin-bottom: 0; color: #b8c7d3; font-size: 14px; }
.video-feature__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 64px; }
.video-feature__copy h2 { margin-bottom: 20px; }
.video-poster { position: relative; display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; overflow: hidden; }
.video-poster img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.video-poster::after { position: absolute; inset: 0; background: rgba(7,24,38,.2); content: ""; transition: background-color .2s ease; }
.video-poster:hover::after { background: rgba(7,24,38,.36); }
.video-poster > span { position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; width: 74px; height: 74px; place-items: center; color: white; background: var(--red); transform: translate(-50%,-50%); }
.video-poster svg { width: 28px; height: 28px; fill: white; }
.application-section { background: var(--soft); }
.application-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.application-grid--compact { grid-template-columns: repeat(3, minmax(0,1fr)); }
.application-tile { position: relative; display: block; min-height: 320px; overflow: hidden; background: var(--navy); }
.application-tile img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; opacity: .86; transition: transform .4s ease, opacity .3s ease; }
.application-tile:hover img { opacity: .66; transform: scale(1.03); }
.application-tile > span { position: absolute; right: 0; bottom: 0; left: 0; display: flex; min-height: 74px; align-items: center; justify-content: space-between; padding: 18px 24px; color: white; background: rgba(8,25,39,.84); }
.application-tile strong { color: white; font-size: 20px; }
.application-tile svg { width: 21px; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.news-card { border: 1px solid var(--line); background: white; }
.news-card__image { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--soft); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card__image img { transform: scale(1.03); }
.news-card__body { padding: 24px; }
.news-card time, .news-row time { color: var(--blue); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.news-card h3 { min-height: 80px; margin: 12px 0 20px; font-size: 20px; line-height: 1.32; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 86px; }
.faq-intro { position: sticky; top: 110px; align-self: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item > button { display: flex; width: 100%; min-height: 86px; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 4px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.accordion__item > button > span { display: flex; flex-direction: column; color: var(--ink); font-weight: 680; }
.accordion__item > button small { margin-bottom: 4px; color: var(--blue); font-size: 11px; font-weight: 750; text-transform: uppercase; }
.accordion__item > button svg { width: 20px; flex: 0 0 20px; transition: transform .25s ease; }
.accordion__item.is-open > button svg { transform: rotate(45deg); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.accordion__panel > p { min-height: 0; margin: 0; overflow: hidden; }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__panel > p { padding: 0 44px 26px 4px; }
.video-modal, .image-lightbox { position: fixed; inset: 0; z-index: 700; display: grid; place-items: center; padding: 56px; background: rgba(5,17,27,.95); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.video-modal.is-open, .image-lightbox.is-open { opacity: 1; visibility: visible; }
.video-modal video { width: min(1100px, 100%); max-height: 82vh; background: black; }
.video-modal__close, .image-lightbox > .icon-button { position: absolute; top: 22px; right: 22px; color: white; border-color: rgba(255,255,255,.5); background: transparent; }

/* Inner pages */
.inner-hero { position: relative; display: grid; min-height: 390px; align-items: end; background-image: var(--hero-image); background-position: center; background-size: cover; }
.inner-hero::before { position: absolute; inset: 0; background: rgba(7,24,38,.64); content: ""; }
.inner-hero__inner { position: relative; z-index: 1; padding-block: 100px 62px; }
.inner-hero h1 { max-width: 920px; margin-bottom: 20px; color: white; font-size: clamp(38px, 5vw, 62px); }
.breadcrumbs { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.78); font-size: 13px; }
.breadcrumbs a:hover { color: white; }
.breadcrumbs svg { width: 14px; }
.image-frame { margin: 0; overflow: hidden; }
.image-frame img { width: 100%; min-height: 480px; object-fit: cover; }
.principle-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle-grid article { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.principle-grid svg { width: 30px; height: 30px; margin-bottom: 54px; color: var(--blue); }
.principle-grid p { margin-bottom: 0; font-size: 14px; }
.vision-band { color: white; background: var(--red); }
.vision-band__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; background: rgba(255,255,255,.25); }
.vision-band__grid > div { padding: 52px; background: var(--red); }
.vision-band h2 { margin: 0; color: white; font-size: clamp(28px,3vw,43px); }
.timeline { position: relative; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 117px; width: 1px; background: var(--line); content: ""; }
.timeline__item { position: relative; display: grid; grid-template-columns: 118px 1fr; gap: 62px; padding-bottom: 72px; }
.timeline__item::before { position: absolute; top: 10px; left: 111px; width: 13px; height: 13px; border: 3px solid white; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); content: ""; }
.timeline__item > strong { color: var(--blue); font-size: 24px; }
.timeline__item h2 { margin-bottom: 8px; font-size: 28px; }
.timeline__item p { max-width: 800px; margin: 0; }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; }
.check-list svg { width: 18px; color: var(--blue); }
.factory-gallery { display: grid; height: 440px; grid-template-columns: 1.2fr .8fr .8fr; gap: 2px; }
.factory-gallery img { width: 100%; height: 100%; object-fit: cover; }
.video-wide { display: grid; grid-template-columns: .55fr 1.45fr; align-items: center; gap: 64px; }
.video-wide video { width: 100%; max-height: 640px; background: black; }
.certificate-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 84px; }
.certificate-viewer { margin: 0; padding: 28px; background: var(--soft); }
.certificate-viewer img { width: 100%; max-height: 720px; object-fit: contain; box-shadow: 0 8px 26px rgba(10,27,43,.12); }
.detail-list { margin: 32px 0; border-top: 1px solid var(--line); }
.detail-list > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.detail-list strong { color: var(--blue); }
.detail-list span { color: var(--ink-soft); }
.solution-list { border-top: 1px solid var(--line); }
.solution-row { display: grid; grid-template-columns: 60px 220px 1fr 28px; align-items: center; gap: 26px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.solution-row:hover { color: var(--blue); }
.solution-row__number { color: var(--blue); font-size: 12px; font-weight: 800; }
.solution-row img { width: 220px; height: 130px; object-fit: cover; }
.solution-row strong, .solution-row small { display: block; }
.solution-row strong { margin-bottom: 8px; font-size: 24px; }
.solution-row small { max-width: 680px; color: var(--ink-soft); font-size: 14px; }
.process-list { display: grid; gap: 18px; margin: 30px 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.process-list > li > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.process-list strong { display: block; margin-bottom: 4px; }
.process-list p { margin: 0; font-size: 14px; }
.case-grid { display: grid; gap: 64px; }
.case-card { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 62px; }
.case-card:nth-child(even) img { order: 2; }
.case-card img { width: 100%; min-height: 410px; object-fit: cover; }
.case-card h2 { font-size: 34px; }
.video-page { display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 60px; }
.video-page video { width: 100%; background: black; }
.download-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 84px; }
.catalog-cover { position: relative; display: block; padding: 20px; background: var(--soft); }
.catalog-cover img { width: 100%; }
.catalog-cover > span { position: absolute; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 8px; padding: 13px 18px; color: white; background: var(--navy); font-size: 13px; font-weight: 700; }
.faq-page { display: grid; grid-template-columns: .65fr 1.35fr; gap: 86px; }
.faq-page > aside { position: sticky; top: 110px; align-self: start; }
.service-steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-steps article { min-height: 240px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-steps span { color: var(--blue); font-size: 12px; font-weight: 800; }
.service-steps h3 { margin-top: 68px; }
.service-steps p { margin: 0; font-size: 14px; }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; }
.contact-methods { display: grid; gap: 12px; margin: 34px 0; }
.contact-methods a { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-methods svg { width: 22px; color: var(--blue); }
.contact-methods span, .contact-methods small { display: block; }
.contact-methods small { color: var(--ink-soft); font-size: 11px; text-transform: uppercase; }
.address-block { display: flex; gap: 14px; padding: 20px; color: white; background: var(--navy); }
.address-block svg { width: 22px; flex: 0 0 22px; }
.address-block p { margin: 0; color: white; font-size: 13px; }
.contact-form-panel { padding: 34px; border: 1px solid var(--line); background: var(--soft); }
.inquiry-form { display: grid; gap: 17px; }
.inquiry-form .form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.inquiry-form label { display: grid; gap: 6px; color: var(--ink); font-size: 12px; font-weight: 700; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; border: 1px solid #bfc8d0; border-radius: 3px; color: var(--ink); background: white; outline: 0; }
.inquiry-form input, .inquiry-form select { height: 48px; padding: 0 13px; }
.inquiry-form textarea { min-height: 122px; padding: 12px 13px; resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,103,183,.12); }
.profile-options { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0; padding: 0; border: 0; }
.profile-options legend { width: 100%; margin-bottom: 2px; color: var(--ink); font-size: 12px; font-weight: 700; }
.profile-options label { display: inline-flex; align-items: center; grid-template-columns: none; gap: 7px; color: var(--ink-soft); font-weight: 550; cursor: pointer; }
.profile-options input { width: 16px; height: 16px; margin: 0; padding: 0; accent-color: var(--blue); box-shadow: none !important; }
.form-notice { margin-bottom: 20px; padding: 14px 16px; border-left: 3px solid var(--blue); background: white; }
.form-notice--success { border-left-color: #2d8d5d; color: #1b6944; }
.prose-content { max-width: 860px; }
.prose-content p { font-size: 17px; }
.prose-content h2 { margin-top: 46px; }
.prose-content img { margin: 32px 0; }

/* Catalog */
.juye-catalog-hero .inner-hero { min-height: 270px; }
.juye-catalog-hero .inner-hero__inner { padding-block: 72px 38px; }
.juye-catalog-hero .inner-hero h1 { margin-bottom: 12px; font-size: clamp(38px,4vw,54px); }
.juye-catalog-intro { border-bottom: 1px solid var(--line); }
.juye-catalog-intro .elementor-widget-text-editor p { max-width: 900px; margin: 0; color: var(--ink-soft); font-size: 15px; }
.catalog-intro { border-bottom: 1px solid var(--line); }
.catalog-intro p { max-width: 900px; margin: 0; padding: 28px 0; }
.catalog-layout { display: grid; grid-template-columns: 280px minmax(0,1fr); align-items: start; gap: 38px; }
.catalog-filter { position: sticky; top: 100px; border: 1px solid var(--line); background: white; }
.catalog-filter__head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--line); }
.catalog-filter__head h2 { margin: 0; font-size: 20px; }
.catalog-filter__head .icon-button { display: none; }
.catalog-filter form { padding: 20px; }
.catalog-search { display: grid; gap: 7px; margin-bottom: 24px; font-size: 12px; font-weight: 700; }
.catalog-search__field { position: relative; display: block; }
.catalog-search input { width: 100%; height: 44px; padding: 0 38px 0 12px; border: 1px solid var(--line); border-radius: 3px; }
.catalog-search svg { position: absolute; top: 13px; right: 12px; width: 17px; }
.catalog-filter fieldset { display: grid; gap: 2px; margin: 0 0 22px; padding: 20px 0 0; border: 0; border-top: 1px solid var(--line); }
.catalog-filter legend { padding: 0 0 12px; font-size: 13px; font-weight: 800; }
.filter-radio { display: flex; align-items: flex-start; gap: 9px; padding: 7px 0; cursor: pointer; }
.filter-radio input { margin-top: 5px; accent-color: var(--blue); }
.filter-radio > span { display: flex; width: 100%; justify-content: space-between; gap: 8px; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.filter-radio small { color: #87939e; }
.filter-reset { display: block; margin-top: 12px; color: var(--blue); font-size: 12px; text-align: center; }
.catalog-toolbar { position: sticky; top: 0; z-index: 35; display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); }
.catalog-toolbar > div { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: 13px; }
.catalog-toolbar strong { color: var(--ink); }
.catalog-toolbar select { height: 38px; padding: 0 34px 0 10px; border: 1px solid var(--line); border-radius: 3px; background: white; }
.catalog-toolbar__controls { display: flex; align-items: center; gap: 12px; }
.catalog-layout .filter-open { display: none !important; min-height: 38px; padding-inline: 12px; }
.view-toggle { display: flex; border: 1px solid var(--line); }
.view-toggle button { display: grid; width: 37px; height: 36px; place-items: center; padding: 0; border: 0; border-right: 1px solid var(--line); background: white; cursor: pointer; }
.view-toggle button:last-child { border-right: 0; }
.view-toggle button.is-active { color: white; background: var(--navy); }
.view-toggle svg { width: 17px; }
.product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.product-grid--four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.product-grid--three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.product-grid.is-list { grid-template-columns: 1fr; }
.product-grid.is-list .product-card { display: grid; grid-template-columns: 260px 1fr; }
.product-grid.is-list .product-card__image { aspect-ratio: 1 / 1; }
.product-grid.is-list .product-card__body { min-height: 260px; }
.pagination { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 42px; }
.pagination .page-numbers { display: inline-grid; min-width: 40px; height: 40px; place-items: center; padding: 0 12px; border: 1px solid var(--line); }
.pagination .page-numbers.current { color: white; border-color: var(--navy); background: var(--navy); }
.empty-state { display: grid; min-height: 420px; place-items: center; align-content: center; padding: 40px; border: 1px solid var(--line); text-align: center; }
.empty-state > svg { width: 42px; height: 42px; margin-bottom: 20px; color: var(--blue); }
.empty-state h2 { margin-bottom: 10px; font-size: 28px; }

/* Product detail */
.product-breadcrumb { border-bottom: 1px solid var(--line); background: var(--soft); }
.product-breadcrumb .container { display: flex; min-height: 48px; align-items: center; gap: 8px; color: var(--ink-soft); font-size: 12px; }
.product-breadcrumb svg { width: 13px; }
.product-detail { padding: 40px 0 56px; }
.product-detail__grid { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(400px,.96fr); align-items: start; gap: 44px; }
.product-gallery { display: grid; grid-template-columns: 76px minmax(0,1fr); gap: 13px; }
@media (min-width: 901px) {
  .single-product .product-gallery { position: sticky; top: 102px; align-self: start; }
}
.product-gallery__thumbs { display: grid; align-content: start; gap: 10px; }
.product-gallery__thumbs button { width: 76px; height: 76px; padding: 4px; border: 1px solid var(--line); background: white; cursor: pointer; }
.product-gallery__thumbs button.is-active { border-color: var(--navy); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__main { position: relative; display: block; width: 100%; aspect-ratio: 1.08 / 1; padding: 0; border: 1px solid #edf0f2; background: #fbfbfc; cursor: zoom-in; overflow: hidden; }
.product-gallery__main > img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__main > span { position: absolute; right: 16px; bottom: 16px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); background: white; }
.product-gallery__main svg { width: 19px; }
.product-summary { position: static; min-width: 0; }
.product-summary__category { margin-bottom: 10px; color: var(--blue); font-size: 12px; font-weight: 750; text-transform: uppercase; }
.product-summary h1 { margin-bottom: 18px; font-size: clamp(28px,2.25vw,36px); line-height: 1.18; }
.model-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.model-row span { color: var(--ink-soft); font-size: 13px; }
.model-row strong { padding: 7px 12px; border: 1px solid var(--navy); font-size: 13px; }
.product-quote { display: grid; gap: 3px; margin-bottom: 18px; padding: 14px 16px; border-left: 3px solid var(--blue); background: var(--soft); }
.product-quote span { color: var(--ink-soft); font-size: 11px; font-weight: 750; text-transform: uppercase; }
.product-quote strong { color: var(--ink); font-size: 17px; }
.product-quote small { color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.product-summary__description { margin: 18px 0 0; padding-top: 17px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.benefit-list { display: grid; gap: 0; margin: 0 0 18px; padding: 0; list-style: none; }
.benefit-list li { display: flex; align-items: center; gap: 10px; min-height: 30px; color: var(--ink-soft); font-size: 12px; }
.benefit-list svg { width: 17px; flex: 0 0 17px; color: var(--blue); }
.product-summary__actions { display: grid; gap: 8px; }
.product-summary__actions form { margin: 0; }
.product-summary__actions .button {
  display: flex !important;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center !important;
  text-align: center;
}
.product-summary__extended { margin-top: 24px; border-top: 1px solid var(--line); }
.summary-detail-block { padding: 28px 0; border-bottom: 1px solid var(--line); }
.summary-detail-block__eyebrow { margin: 0 0 8px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.product-summary .summary-detail-block h2 { margin: 0 0 20px; color: var(--ink); font-size: 22px; line-height: 1.32; }
.summary-process { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.summary-process li { display: grid; grid-template-columns: 30px minmax(0,1fr); align-items: center; gap: 12px; min-height: 48px; border-bottom: 1px solid #edf0f2; }
.summary-process li:last-child { border-bottom: 0; }
.summary-process li > span { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid #b8d5eb; border-radius: 50%; color: var(--blue); font-size: 11px; font-weight: 800; }
.summary-process p { margin: 0; color: var(--ink); font-size: 13px; line-height: 1.45; }
.summary-spec-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.summary-spec-grid > div { min-width: 0; min-height: 92px; padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.summary-spec-grid dt { margin-bottom: 6px; color: var(--ink-soft); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.summary-spec-grid dd { margin: 0; color: var(--ink); font-size: 12px; font-weight: 650; line-height: 1.45; overflow-wrap: anywhere; }
.summary-detail-block--checklist ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.summary-detail-block--checklist li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.summary-detail-block--checklist svg { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 2px; color: var(--blue); }
.response-note { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; font-size: 12px; }
.response-note svg { width: 15px; }
.product-tabs-nav { position: sticky; top: 82px; z-index: 40; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); }
.product-tabs-nav .container { display: flex; gap: 34px; overflow-x: auto; }
.single-product .product-tabs-nav button { position: relative; height: 62px; padding: 0; border: 0; border-radius: 0; color: var(--ink) !important; background: transparent !important; box-shadow: none !important; font-size: 13px; font-weight: 700; white-space: nowrap; cursor: pointer; }
.single-product .product-tabs-nav button:hover,
.single-product .product-tabs-nav button:focus,
.single-product .product-tabs-nav button.is-active { color: var(--blue) !important; background: transparent !important; }
.single-product .product-tabs-nav button:focus-visible { outline: 2px solid var(--blue); outline-offset: -4px; }
.product-tabs-nav button::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--blue); content: ""; transform: scaleX(0); }
.product-tabs-nav button.is-active::after { transform: scaleX(1); }
.product-tab-panel { scroll-margin-top: 144px; }
.product-overview { display: grid; grid-template-columns: 1fr .82fr; gap: 64px; }
.feature-stack { border-top: 1px solid var(--line); }
.feature-stack article { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature-stack svg { width: 26px; flex: 0 0 26px; color: var(--blue); }
.feature-stack h3 { margin-bottom: 5px; font-size: 18px; }
.feature-stack p { margin: 0; font-size: 14px; }
.specification-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 56px; }
.spec-list { margin: 30px 0 0; border-top: 1px solid var(--line); }
.spec-list > div { display: grid; grid-template-columns: 140px 1fr; padding: 13px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--ink-soft); font-size: 12px; }
.spec-list dd { margin: 0; font-weight: 650; }
.catalog-spec-image { position: relative; display: block; width: 100%; padding: 0; border: 1px solid var(--line); background: white; cursor: zoom-in; }
.catalog-spec-image img { width: 100%; }
.catalog-spec-image span { position: absolute; right: 12px; bottom: 12px; display: flex; align-items: center; gap: 7px; padding: 10px 14px; color: white; background: var(--navy); font-size: 12px; font-weight: 700; }
.support-split { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.support-split > div { max-width: 760px; }
.image-lightbox img { max-width: min(1200px, 92vw); max-height: 88vh; object-fit: contain; }

/* News/search/404 */
.news-index { display: grid; gap: 0; border-top: 1px solid var(--line); }
.news-row { display: grid; grid-template-columns: 380px 1fr; align-items: center; gap: 44px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.news-row__image { aspect-ratio: 16/10; overflow: hidden; background: var(--soft); }
.news-row__image img { width: 100%; height: 100%; object-fit: cover; }
.news-row h2 { margin: 10px 0 14px; font-size: 30px; }
.article-detail__inner { max-width: 920px; }
.article-meta { display: flex; gap: 20px; margin-bottom: 26px; color: var(--ink-soft); font-size: 12px; text-transform: uppercase; }
.article-hero-image { margin: 0 0 42px; }
.article-hero-image img { width: 100%; max-height: 620px; object-fit: cover; }
.article-share { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 48px; padding: 24px; color: white; background: var(--navy); }
.juye-search-results { max-width: 940px; }
.search-result { padding: 28px 0; border-bottom: 1px solid var(--line); }
.search-result > span { color: var(--blue); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.search-result h2 { margin: 8px 0 12px; font-size: 28px; }
body.search.search-results,
body.search.search-no-results { width: 100%; max-width: none; }
body.search #page,
body.search #content,
body.search #primary { width: 100%; max-width: none; }
body.search #content { padding: 0; background: var(--soft); }
body.search #primary { margin: 0; padding: 0; }
.juye-search-hero { padding: 64px 0 54px; color: white; background: var(--navy); }
.juye-search-hero h1 { max-width: 920px; margin-bottom: 10px; color: white; font-size: 52px; }
.juye-search-count { margin: 0 0 28px; color: #b8c7d3; }
.juye-search-page-form { display: grid; width: min(660px,100%); min-height: 52px; grid-template-columns: minmax(0,1fr) auto; border: 1px solid rgba(255,255,255,.38); border-radius: 4px; background: white; overflow: hidden; }
.juye-search-page-form input { width: 100%; min-width: 0; padding: 0 17px; border: 0; color: var(--ink); background: white; outline: 0; }
.juye-search-page-form button { display: inline-flex; min-width: 116px; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; border: 0; color: white; background: var(--blue); font-weight: 700; cursor: pointer; }
.juye-search-page-form button:hover { background: var(--blue-dark); }
.juye-search-page-form svg { width: 17px; height: 17px; }
body.search #main { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; padding: 64px 0 96px; }
body.search #main > .ast-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
body.search #main article.ast-article-post { float: none; width: auto; margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 4px; background: white; overflow: hidden; }
body.search #main article .ast-article-inner { height: 100%; padding: 0; border: 0; background: white; box-shadow: none; }
body.search #main article .post-content { display: flex; height: 100%; flex-direction: column; padding: 0 22px 24px; }
body.search #main .ast-blog-featured-section { margin: 0 -22px 20px; }
body.search #main .post-thumb,
body.search #main .post-thumb a { display: block; margin: 0; }
body.search #main .post-thumb img { width: 100%; aspect-ratio: 4 / 3; padding: 22px; background: #f8fafc; object-fit: contain; }
body.search #main article:not(.has-post-thumbnail) .post-content::before { display: grid; aspect-ratio: 4 / 3; place-items: center; margin: 0 -22px 20px; color: #86a1b6; background: linear-gradient(135deg,#edf3f7,#f8fafc); content: "JUYE"; font-size: 24px; font-weight: 750; }
body.search #main .entry-title { margin: 0 0 12px; font-size: 21px; line-height: 1.25; }
body.search #main .entry-title a { color: var(--ink); }
body.search #main .entry-title a:hover { color: var(--blue); }
body.search #main .entry-meta { display: none; }
body.search #main .ast-excerpt-container { color: var(--ink-soft); font-size: 13px; }
body.search #main .ast-excerpt-container p { display: -webkit-box; margin-bottom: 18px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
body.search #main .read-more { margin-top: auto; }
body.search #main .read-more a { display: inline-flex; align-items: center; color: var(--blue); font-size: 13px; font-weight: 700; }
body.search #main .ast-pagination { grid-column: 1 / -1; }
body.search #main .no-results { grid-column: 1 / -1; padding: 52px; border: 1px solid var(--line); background: white; }
.not-found { display: grid; min-height: 680px; place-items: center; padding: 100px 0; text-align: center; background: var(--soft); }
.not-found .container > span { display: block; color: var(--blue); font-size: clamp(92px,18vw,220px); font-weight: 800; line-height: .8; }
.not-found h1 { margin-bottom: 14px; font-size: clamp(36px,5vw,62px); }
.not-found .container > div { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }

/* Footer and overlays */
.footer-cta { color: white; background: var(--blue); }
.footer-cta__inner { display: flex; min-height: 270px; align-items: center; justify-content: space-between; gap: 40px; }
.footer-cta__inner > div { max-width: 760px; }
.footer-cta h2 { margin-bottom: 12px; color: white; }
.footer-cta p { margin: 0; color: rgba(255,255,255,.82); }
.site-footer { color: #c6d2dc; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .9fr .8fr .8fr 1.2fr; gap: 46px; padding-top: 76px; padding-bottom: 62px; }
.footer-grid h3 { margin-bottom: 20px; color: white; font-size: 15px; }
.footer-grid ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-grid li a { color: #aebfcd; font-size: 12px; }
.footer-grid li a:hover { color: white; }
.footer-brand img { width: 185px; height: 56px; padding: 7px 10px; object-fit: contain; background: white; }
.footer-brand p { max-width: 240px; margin-top: 18px; color: #aebfcd; font-size: 13px; }
.footer-socials { display: flex; gap: 8px; margin-top: 24px; }
.footer-socials a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line-dark); }
.footer-socials a:hover { color: white; border-color: var(--blue); background: var(--blue); }
.footer-socials svg { width: 17px; }
.footer-contact { display: grid; align-content: start; gap: 13px; }
.footer-contact > a, .footer-contact > p { display: flex; gap: 9px; margin: 0; color: #aebfcd; font-size: 12px; line-height: 1.5; }
.footer-contact svg { width: 16px; flex: 0 0 16px; color: #83bde9; }
.footer-bottom { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line-dark); color: #8295a4; font-size: 11px; }
.modal { position: fixed; inset: 0; z-index: 750; display: grid; place-items: center; padding: 24px; background: rgba(5,17,27,.78); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__dialog { width: min(700px,100%); max-height: calc(100vh - 48px); padding: 30px; background: white; overflow-y: auto; box-shadow: var(--shadow); }
.modal__head { display: flex; align-items: start; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.modal__head h2 { margin: 0; font-size: 30px; }
.modal__head .eyebrow { margin-bottom: 8px; }
.contact-rail {
  position: fixed;
  top: 50%;
  left: clamp(14px, 2vw, 30px);
  z-index: 620;
  width: 58px;
  padding: 7px 5px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 29px;
  background: rgba(9,27,42,.78);
  box-shadow: 0 14px 34px rgba(7,24,38,.2);
  opacity: 0;
  transform: translate(-12px,-50%);
  backdrop-filter: blur(8px);
  transition: opacity .36s ease, transform .36s ease, background-color .2s ease;
}
.contact-rail.is-ready { opacity: 1; transform: translate(0,-50%); }
.contact-rail:hover, .contact-rail:focus-within { background: rgba(9,27,42,.94); }
.contact-rail__toggle { display: none; }
.contact-rail__items { display: grid; gap: 2px; }
.contact-rail__item {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 23px;
  color: white;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.contact-rail__item:hover, .contact-rail__item:focus-visible { color: white; background: var(--blue); transform: translateX(2px); outline: none; }
.contact-rail__icon { display: grid; place-items: center; }
.contact-rail__icon svg { width: 22px; height: 22px; stroke-width: 2.2; }
.contact-rail__label {
  position: absolute;
  top: 50%;
  left: calc(100% + 13px);
  display: block;
  width: max-content;
  min-width: 190px;
  max-width: 250px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(7px,-50%);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.contact-rail__item:hover .contact-rail__label,
.contact-rail__item:focus-visible .contact-rail__label { opacity: 1; visibility: visible; transform: translate(0,-50%); }
.contact-rail__label small, .contact-rail__label strong { display: block; text-align: left; }
.contact-rail__label small { margin-bottom: 2px; color: var(--blue); font-size: 10px; font-weight: 800; line-height: 1.3; text-transform: uppercase; }
.contact-rail__label strong { color: var(--ink); font-size: 12px; font-weight: 700; line-height: 1.4; }
.contact-rail__label--qr { width: 184px; padding: 12px; }
.contact-rail__label--qr img { display: block; width: 158px; height: auto; margin-top: 9px; border: 1px solid var(--line); background: white; }
.juye-dealer-cta { padding: 34px 24px; color: white; background: #073967; }
.juye-dealer-cta__inner { display: grid; justify-items: center; text-align: center; }
.juye-dealer-cta h2 { margin: 0; color: white; font-size: clamp(24px,2.2vw,34px); letter-spacing: 0; text-transform: uppercase; }
.juye-dealer-cta p { max-width: 1120px; margin: 13px auto 0; color: rgba(255,255,255,.92); font-size: 14px; line-height: 1.75; }
.juye-dealer-cta .elementor-heading-title { color: white; }
.juye-dealer-cta .elementor-widget-text-editor { max-width: 1120px; text-align: center; }
.juye-dealer-cta__button { width: auto; margin-top: 8px; }
button.juye-dealer-cta__button,
.juye-dealer-cta__button .elementor-button { min-width: 132px; padding: 12px 24px; border: 1px solid rgba(255,255,255,.38); border-radius: 0; color: #073967; background: #d8e7f2; font-size: 12px; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: color .2s ease, background-color .2s ease, transform .2s ease; }
button.juye-dealer-cta__button:hover,
button.juye-dealer-cta__button:focus-visible,
.juye-dealer-cta__button .elementor-button:hover,
.juye-dealer-cta__button .elementor-button:focus-visible { color: #073967; background: white; transform: translateY(-2px); outline: none; }
.juye-factory-showcase { padding: 76px 24px 86px; background: white; }
.juye-factory-showcase__heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.juye-factory-showcase__heading h2 { margin: 0; color: #084eb8; font-size: clamp(34px,3.4vw,52px); letter-spacing: 0; text-transform: uppercase; }
.juye-factory-showcase__heading p { margin: 10px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.juye-factory-grid { display: grid; width: 100%; max-width: 980px; height: clamp(540px,52vw,680px); margin-right: auto; margin-left: auto; grid-template-columns: repeat(3,minmax(0,1fr)); grid-template-rows: repeat(12,minmax(0,1fr)); gap: 14px; }
.juye-factory-grid__item { min-width: 0; margin: 0; overflow: hidden; background: var(--soft); }
.juye-factory-grid__item--1 { grid-column: 1; grid-row: 1 / 9; }
.juye-factory-grid__item--2 { grid-column: 1; grid-row: 9 / 13; }
.juye-factory-grid__item--3 { grid-column: 2; grid-row: 1 / 6; }
.juye-factory-grid__item--4 { grid-column: 2; grid-row: 6 / 13; }
.juye-factory-grid__item--5 { grid-column: 3; grid-row: 1 / 8; }
.juye-factory-grid__item--6 { grid-column: 3; grid-row: 8 / 13; }
.juye-factory-grid__item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.juye-factory-grid__item:hover img { transform: scale(1.035); }
.juye-factory-grid--elementor.e-con { display: grid !important; width: 100%; max-width: 980px; height: clamp(540px,52vw,680px); margin-right: auto; margin-left: auto; grid-template-columns: repeat(3,minmax(0,1fr)); grid-template-rows: repeat(12,minmax(0,1fr)); gap: 14px !important; }
.juye-factory-grid--elementor.e-con > .e-con-inner { display: grid !important; width: 100%; max-width: 980px; height: clamp(540px,52vw,680px); margin-right: auto; margin-left: auto; grid-template-columns: repeat(3,minmax(0,1fr)); grid-template-rows: repeat(12,minmax(0,1fr)); gap: 14px !important; }
.juye-factory-grid--elementor > .e-con-inner > .elementor-widget-image { min-width: 0; min-height: 0; height: 100%; overflow: hidden; background: var(--soft); }
.juye-factory-grid--elementor .elementor-widget-image .elementor-widget-container { height: 100%; }
.juye-factory-grid--elementor .elementor-widget-image img { display: block; width: 100%; height: 100% !important; object-fit: cover; transition: transform .65s ease; }
.mobile-product-actions { display: none; }
.back-to-top { position: fixed; right: 20px; bottom: 22px; z-index: 90; display: grid; width: 46px; height: 46px; place-items: center; padding: 0; border: 1px solid var(--line); color: var(--ink); background: white; opacity: 0; visibility: hidden; cursor: pointer; transition: opacity .2s ease, visibility .2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; }
.back-to-top svg { width: 18px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease var(--reveal-delay, 0ms), transform .55s ease var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes juye-hero-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Elementor-first site templates */
.juye-site-core .site-content > .ast-container,
.juye-site-core.ast-page-builder-template .site-content > .ast-container,
.juye-site-core .site-content .ast-container {
  display: block;
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}
.juye-site-core #primary,
.juye-site-core .site-main,
.juye-site-core article.page,
.juye-site-core article.product {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.juye-site-core .widget-area { display: none; }
.juye-site-core .elementor-page .elementor > .e-con,
.juye-site-core .elementor-location-single > .elementor > .e-con,
.juye-site-core .elementor-location-archive > .elementor > .e-con { width: 100%; max-width: none; }
.elementor-page .site-main > .elementor,
.elementor-location-single,
.elementor-location-archive { width: 100%; }
.elementor-widget-juye-page-hero > .elementor-widget-container,
.elementor-widget-juye-hero-slider > .elementor-widget-container,
.elementor-widget-juye-category-dock > .elementor-widget-container,
.elementor-widget-juye-product-hero > .elementor-widget-container,
.elementor-widget-juye-product-nav > .elementor-widget-container,
.elementor-widget-juye-product-overview > .elementor-widget-container,
.elementor-widget-juye-product-specifications > .elementor-widget-container,
.elementor-widget-juye-product-applications > .elementor-widget-container,
.elementor-widget-juye-product-support > .elementor-widget-container,
.elementor-widget-juye-related-products > .elementor-widget-container,
.elementor-widget-juye-post-detail > .elementor-widget-container { margin: 0; }
.elementor-location-header { position: sticky; top: 0; z-index: 500; width: 100%; }
.home .elementor-location-header { position: absolute; inset: 0 0 auto; }
.home .elementor-location-header.is-sticky { position: fixed; inset: 0 0 auto; }
.elementor-location-header.is-sticky .juye-elementor-announcement { display: none !important; }
.juye-elementor-header-wrap { position: relative; width: 100%; gap: 0 !important; z-index: 500; }
.juye-elementor-announcement { transition: opacity .2s ease, transform .2s ease; }
.juye-elementor-announcement.is-dismissed { display: none !important; }
.juye-elementor-announcement > .e-con-inner { align-items: center !important; gap: 12px !important; }
.juye-elementor-announcement > .e-con-inner > .e-con { min-height: 24px; padding: 0 !important; }
.juye-elementor-announcement p { margin: 0; color: white; font-size: 11px; }
.juye-announcement-rotator { position: relative; height: 18px; color: white; overflow: hidden; }
.juye-announcement-rotator > span { position: absolute; inset: 0; opacity: 0; transform: translateY(8px); transition: opacity .28s ease, transform .28s ease; }
.juye-announcement-rotator > span.is-active { opacity: 1; transform: none; }
.juye-elementor-announcement .elementor-button { height: 24px !important; min-height: 24px !important; padding: 3px 0 !important; background: transparent !important; box-sizing: border-box !important; font-size: 11px; }
.juye-announcement-actions { align-items: center !important; justify-content: flex-end !important; flex-wrap: nowrap !important; gap: 8px !important; }
.juye-announcement-actions > .e-con-inner { flex-wrap: nowrap !important; gap: 8px !important; }
.juye-announcement-actions .elementor-widget-button,
.juye-announcement-actions .elementor-widget-html { height: 24px !important; line-height: 0 !important; }
.juye-announcement-close {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 24px;
  padding: 0;
  color: white;
  border: 0;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}
.juye-announcement-close:hover,
.juye-announcement-close:focus-visible { background: rgba(255,255,255,.12); }
.juye-announcement-close svg { width: 14px; height: 14px; }
.juye-elementor-header-language { position: relative; z-index: 530; overflow: visible !important; }
.juye-gtranslate,
.juye-gtranslate .elementor-widget-container,
.juye-gtranslate .elementor-shortcode,
.juye-gtranslate .gtranslate_wrapper { width: 100%; }
.juye-gtranslate .elementor-shortcode { line-height: 1; }
.juye-gtranslate .gt_switcher {
  position: relative !important;
  width: 100% !important;
  overflow: visible !important;
  font-family: inherit !important;
}
.juye-gtranslate .gt_selected {
  width: 100% !important;
  border: 1px solid rgba(23,33,43,.18) !important;
  border-radius: 4px !important;
  background: rgba(10,27,43,.035) !important;
  box-shadow: none !important;
}
.juye-gtranslate .gt_selected a {
  display: flex !important;
  width: 100% !important;
  min-height: 48px;
  align-items: center;
  padding: 0 10px !important;
  color: var(--ink) !important;
  box-sizing: border-box !important;
  font-size: 12px !important;
  font-weight: 650;
  line-height: 1.2;
}
.juye-gtranslate .gt_selected a::after { top: 50% !important; right: 9px !important; transform: translateY(-50%); }
.juye-gtranslate .gt_option {
  position: absolute !important;
  top: calc(100% + 6px);
  right: 0;
  width: 220px !important;
  max-height: min(520px, calc(100vh - 120px)) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  border: 1px solid var(--line) !important;
  border-radius: 4px !important;
  background: white !important;
  box-shadow: 0 18px 44px rgba(10,27,43,.18) !important;
  z-index: 9999;
}
.juye-gtranslate .gt_option[style*="display: block"] { height: auto !important; }
.juye-gtranslate .gt_option a {
  display: flex !important;
  min-height: 38px;
  align-items: center;
  padding: 7px 12px !important;
  color: var(--ink) !important;
  background: white !important;
  box-sizing: border-box !important;
  font-size: 13px !important;
  font-weight: 550;
  line-height: 1.2 !important;
}
.juye-gtranslate .gt_option a:hover,
.juye-gtranslate .gt_option a:focus-visible,
.juye-gtranslate .gt_option a.selected { color: var(--blue) !important; background: #f2f6fa !important; }
.juye-gtranslate .gt_switcher img { width: 22px !important; height: auto !important; margin-right: 8px !important; object-fit: cover; }
.juye-gtranslate select.gt_selector {
  width: 100%;
  min-height: 48px;
  padding: 0 34px 0 10px;
  color: var(--ink);
  border: 1px solid rgba(23,33,43,.18);
  border-radius: 4px;
  background: rgba(10,27,43,.035);
  font: 650 12px/1.2 inherit;
}
.home .juye-gtranslate .gt_selected { border-color: rgba(255,255,255,.42) !important; background: rgba(7,24,38,.24) !important; backdrop-filter: blur(10px); }
.home .juye-gtranslate .gt_selected a { color: white !important; }
.home .juye-gtranslate select.gt_selector { color: white; border-color: rgba(255,255,255,.42); background: rgba(7,24,38,.24); backdrop-filter: blur(10px); }
.juye-elementor-header-main { border-bottom: 1px solid var(--line); box-shadow: 0 5px 18px rgba(10,27,43,.06); transition: background-color .2s ease, box-shadow .2s ease; }
.home .juye-elementor-header-main { border-bottom-color: rgba(255,255,255,.28); background: rgba(7,24,38,.22) !important; box-shadow: none; backdrop-filter: blur(7px); }
.home .juye-elementor-header-main .elementor-nav-menu--main > ul > li > .elementor-item { color: white !important; text-shadow: 0 1px 12px rgba(0,0,0,.34); }
.juye-elementor-header-main .juye-elementor-header-logo .elementor-widget-theme-site-logo,
.juye-elementor-header-main .juye-elementor-header-logo .elementor-widget-image { padding: 0; background: transparent !important; }
.home .juye-elementor-header-main .juye-elementor-header-logo .elementor-widget-theme-site-logo,
.home .juye-elementor-header-main .juye-elementor-header-logo .elementor-widget-image { padding: 0; background: transparent !important; }
.juye-elementor-header-main .juye-elementor-header-logo img { max-height: 52px; object-fit: contain; }
.elementor-location-header.is-sticky .juye-elementor-header-main { border-bottom-color: var(--line); background: rgba(255,255,255,.98) !important; box-shadow: 0 8px 24px rgba(10,27,43,.1); backdrop-filter: blur(12px); }
.home .elementor-location-header.is-sticky .juye-elementor-header-main .elementor-nav-menu--main .elementor-item { color: var(--ink) !important; }
.home .elementor-location-header.is-sticky .juye-gtranslate .gt_selected { border-color: rgba(23,33,43,.18) !important; background: rgba(10,27,43,.035) !important; }
.home .elementor-location-header.is-sticky .juye-gtranslate .gt_selected a { color: var(--ink) !important; }
.home .elementor-location-header.is-sticky .juye-gtranslate select.gt_selector { color: var(--ink); border-color: rgba(23,33,43,.18); background: rgba(10,27,43,.035); }
.home .elementor-location-header.is-sticky .elementor-search-form__container { border-color: rgba(23,33,43,.16); background: rgba(10,27,43,.035); }
.home .elementor-location-header.is-sticky .elementor-search-form__input { color: var(--ink); }
.home .elementor-location-header.is-sticky .elementor-search-form__input::placeholder { color: #74808c; }
.home .elementor-location-header.is-sticky .elementor-search-form__submit { color: var(--navy) !important; border-left-color: rgba(23,33,43,.12); }
.juye-elementor-header-main .elementor-nav-menu--main .elementor-item { min-height: 50px; font-size: 14px; font-weight: 650; }
.juye-elementor-header-main .elementor-nav-menu--dropdown { border-top: 3px solid var(--blue); box-shadow: var(--shadow); }
.juye-elementor-header-main .elementor-nav-menu--dropdown a { min-height: 42px; font-size: 13px; }
.juye-elementor-header-main .juye-elementor-header-search { padding: 10px 0 !important; }
.juye-elementor-header-main .juye-elementor-header-search .elementor-widget-search-form,
.juye-elementor-header-main .juye-elementor-header-search .elementor-search-form { width: 100%; height: 50px; }
.juye-elementor-header-main .elementor-search-form__container {
  min-height: 50px;
  border: 1px solid rgba(23,33,43,.16);
  border-radius: 4px;
  background: rgba(10,27,43,.035);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.juye-elementor-header-main .elementor-search-form__input {
  min-width: 0;
  padding: 0 10px !important;
  color: var(--ink);
  background: transparent !important;
  font-size: 13px;
}
.juye-elementor-header-main .elementor-search-form__input::placeholder { color: #74808c; opacity: 1; }
.juye-elementor-header-main .elementor-search-form__submit {
  width: 42px !important;
  min-width: 42px;
  padding: 0 !important;
  color: var(--navy) !important;
  border-left: 1px solid rgba(23,33,43,.12);
  background: transparent !important;
}
.juye-elementor-header-main .elementor-search-form__submit svg { width: 16px; height: 16px; fill: currentColor; }
.home .juye-elementor-header-main .elementor-search-form__container { border-color: rgba(255,255,255,.42); background: rgba(7,24,38,.24); }
.home .juye-elementor-header-main .elementor-search-form__input { color: white; }
.home .juye-elementor-header-main .elementor-search-form__input::placeholder { color: rgba(255,255,255,.78); }
.home .juye-elementor-header-main .elementor-search-form__submit { color: white !important; border-left-color: rgba(255,255,255,.28); }
.juye-elementor-header-main .elementor-button { min-height: 42px; border-radius: 4px; }
.juye-el-section { padding: 72px 24px !important; }
.juye-el-section > .e-con-inner,
.juye-el-columns > .e-con-inner,
.juye-home-stats > .e-con-inner,
.juye-elementor-footer-main > .e-con-inner { display: flex !important; width: 100%; }
.juye-el-section > .e-con-inner,
.juye-home-stats > .e-con-inner,
.juye-elementor-footer-main > .e-con-inner { max-width: 1280px; margin-right: auto; margin-left: auto; }
.juye-el-section > .e-con-inner { flex-direction: column; padding: 0 !important; }
.juye-el-columns > .e-con-inner { flex-direction: row; padding: 0 !important; }
.juye-home-why { background: #0a1b2b; }
.juye-el-columns > .e-con-inner > .juye-el-column { min-width: 0; }
.juye-el-section .elementor-widget-heading h1,
.juye-el-section .elementor-widget-heading h2,
.juye-el-section .elementor-widget-heading h3 { margin: 0; }
.juye-el-section .elementor-widget-text-editor p:last-child { margin-bottom: 0; }
.juye-el-section .elementor-widget-image img,
.juye-el-section .elementor-widget-image-box img { width: 100%; }
.juye-el-section .elementor-image-box-img { width: 100% !important; margin: 0 !important; }
.juye-el-section .elementor-image-box-title { margin: 18px 0 8px; font-size: 21px; }
.juye-el-section .elementor-image-box-description { color: var(--ink-soft); }
.juye-home-about-media .elementor-widget-text-editor { position: relative; z-index: 2; width: calc(100% - 40px); margin: -66px 20px 0; padding: 18px 20px; background: rgba(10,27,43,.96); }
.juye-home-about-media .elementor-widget-text-editor .elementor-widget-container { padding: 0; background: transparent; }
.juye-home-about-media .elementor-widget-text-editor p { margin: 0; color: white; }
.juye-home-about-media .elementor-widget-text-editor strong,
.juye-home-about-media .elementor-widget-text-editor span { display: block; }
.juye-home-about-media .elementor-widget-text-editor strong { font-size: 15px; }
.juye-home-about-media .elementor-widget-text-editor span { margin-top: 4px; color: #b8c7d3; font-size: 12px; line-height: 1.45; }
.juye-home-why .elementor-widget-text-editor p,
.juye-home-why .elementor-icon-box-description { color: #b8c7d3 !important; }
.juye-home-why .elementor-icon-box-title { color: white !important; }
.juye-home-why .juye-el-columns > .e-con-inner { gap: 0 !important; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.juye-home-why .juye-el-columns > .e-con-inner > .juye-el-column { min-height: 204px; padding: 26px !important; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.juye-manufacturing-proof .elementor-image-box-img { width: 100% !important; margin: 0 !important; overflow: hidden; }
.juye-manufacturing-proof .elementor-image-box-img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .35s ease; }
.juye-manufacturing-proof .juye-el-column:hover .elementor-image-box-img img { transform: scale(1.025); }
.juye-manufacturing-proof .elementor-image-box-title { margin-top: 16px; font-size: 18px; }
.juye-manufacturing-proof .elementor-image-box-description { font-size: 13px; }
.juye-home-proof .juye-proof-certificate { padding: 26px !important; border: 1px solid var(--line); background: #f8fafb; }
.juye-home-proof .juye-proof-certificate .elementor-widget-image img { max-height: 520px; object-fit: contain; filter: drop-shadow(0 10px 24px rgba(10,27,43,.1)); }
.juye-home-proof .juye-proof-copy { align-self: center; }
.juye-home-proof .juye-proof-points > .e-con-inner { gap: 0 !important; border-top: 1px solid var(--line); }
.juye-home-proof .juye-proof-points .juye-el-column { min-height: 152px; padding: 22px 20px !important; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.juye-home-proof .juye-proof-points .juye-el-column:first-child { border-left: 1px solid var(--line); }
.juye-home-proof .juye-proof-points .elementor-icon-box-title { margin-top: 8px; font-size: 16px; }
.juye-home-proof .juye-proof-points .elementor-icon-box-description { font-size: 12px; line-height: 1.5; }
.juye-home-cases .juye-el-columns > .e-con-inner { gap: 18px !important; }
.juye-home-cases .juye-el-column { border: 1px solid var(--line); background: white; transition: box-shadow .24s ease, transform .24s ease; }
.juye-home-cases .juye-el-column:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.juye-home-cases .elementor-widget-image-box { height: 100%; }
.juye-home-cases .elementor-image-box-wrapper { height: 100%; }
.juye-home-cases .elementor-image-box-img { aspect-ratio: 4 / 3; overflow: hidden; }
.juye-home-cases .elementor-image-box-img img { height: 100%; object-fit: cover; transition: transform .4s ease; }
.juye-home-cases .juye-el-column:hover .elementor-image-box-img img { transform: scale(1.035); }
.juye-home-cases .elementor-image-box-content { padding: 4px 20px 22px; }
.juye-home-cases .elementor-image-box-title { font-size: 18px; line-height: 1.3; }
.juye-home-cases .elementor-image-box-description { font-size: 13px; line-height: 1.55; }
.juye-el-section .elementor-icon-box-wrapper { height: 100%; }
.juye-el-section .elementor-icon-box-title { margin: 14px 0 8px; font-size: 19px; }
.juye-el-section .elementor-accordion-item { border-color: var(--line) !important; }
.juye-el-section .elementor-tab-title { padding: 22px 4px !important; font-size: 15px; font-weight: 700; }
.juye-el-section .elementor-tab-content { padding: 0 4px 22px !important; border-top: 0 !important; }
.juye-el-timeline-item { border-bottom: 1px solid var(--line); }
.juye-elementor-footer-cta p { margin: 0; color: #d7e8f7; }
.juye-elementor-footer-inquiry { scroll-margin-top: 90px; }
.juye-elementor-footer-inquiry { padding-block: 56px !important; }
.juye-elementor-footer-inquiry > .e-con-inner { padding: 0 !important; }
.juye-elementor-footer-inquiry > .e-con-inner { align-items: flex-start !important; }
.juye-elementor-footer-inquiry .elementor-heading-title { margin: 0; }
.juye-elementor-footer-inquiry .elementor-widget-text-editor p { max-width: 420px; margin-bottom: 0; color: var(--ink-soft); }
.juye-elementor-footer-inquiry .inquiry-form { gap: 14px; }
.juye-elementor-footer-inquiry .inquiry-form textarea { min-height: 104px; }
.juye-project-form-anchor { position: relative; top: -90px; height: 0; visibility: hidden; }
.juye-elementor-footer-main .elementor-heading-title { font-size: 15px; }
.juye-elementor-footer-main { padding: 46px 24px 24px !important; }
.juye-elementor-footer-main > .e-con-inner { padding: 0 !important; }
.juye-elementor-footer-main .elementor-nav-menu--main .elementor-nav-menu { display: flex; align-items: flex-start; flex-direction: column; }
.juye-elementor-footer-main .elementor-nav-menu--main .elementor-item { min-height: 30px; padding: 4px 0; color: #aebfcd; font-size: 12px; line-height: 1.35; }
.juye-elementor-footer-main .elementor-nav-menu--main .elementor-item:hover { color: white; }
.juye-elementor-footer-main .elementor-icon-list-text { color: #aebfcd; font-size: 12px; }
.juye-elementor-footer-main .juye-el-columns > .e-con-inner > .juye-el-column:first-child .elementor-widget-text-editor p {
  color: #aebfcd !important;
}
.juye-elementor-footer-main .elementor-social-icon {
  width: 34px;
  height: 34px;
  color: #d7e8f7 !important;
  border: 1px solid #426079;
  border-radius: 3px;
  background: transparent !important;
}
.juye-elementor-footer-main .elementor-social-icon:hover { color: white !important; border-color: #78b9ee; background: #1767b7 !important; }
.juye-elementor-footer-main .elementor-social-icon svg { width: 15px; height: 15px; fill: currentColor !important; }
.juye-elementor-footer-main .elementor-social-icon path { fill: currentColor !important; }
.elementor-editor-active .reveal { opacity: 1; transform: none; }

@media (min-width: 901px) {
  .home .hero-slider { height: calc(clamp(480px, 41.6667vw, 800px) + 95px); }
  .home .hero-slide__artwork { top: 95px; height: calc(100% - 95px); }
}

@media (min-width: 1025px) {
  .juye-elementor-header-main > .e-con-inner { flex-wrap: nowrap !important; }
  .juye-elementor-header-main > .e-con-inner > .juye-elementor-header-logo {
    --width: 172px !important;
    width: 172px !important;
    flex: 0 0 172px !important;
  }
  .juye-elementor-header-main > .e-con-inner > .juye-elementor-header-nav {
    --width: auto !important;
    width: auto !important;
    flex: 1 1 auto !important;
    min-width: 0;
  }
  .juye-elementor-header-main > .e-con-inner > .juye-elementor-header-language {
    --width: 132px !important;
    width: 132px !important;
    flex: 0 0 132px !important;
  }
  .juye-elementor-header-main > .e-con-inner > .juye-elementor-header-search {
    --width: 178px !important;
    width: 178px !important;
    flex: 0 0 178px !important;
  }
  .juye-elementor-header-main .elementor-nav-menu--main > ul { position: static !important; flex-wrap: nowrap !important; }
  .juye-elementor-header-main .elementor-nav-menu--main > ul > li > .elementor-item {
    padding-right: 8px !important;
    padding-left: 8px !important;
    font-size: 13px;
  }
  .juye-el-columns > .e-con-inner { flex-wrap: nowrap !important; }
  .juye-el-columns > .e-con-inner > .juye-el-column {
    --width: auto !important;
    width: auto !important;
    flex: 1 1 0 !important;
  }
  .juye-elementor-header-main .elementor-nav-menu--main,
  .juye-elementor-header-main .elementor-widget-nav-menu,
  .juye-elementor-header-main .juye-elementor-header-nav { position: static !important; }
  .juye-elementor-header-main .elementor-nav-menu--main > ul > li { position: relative !important; }
  .juye-elementor-header-main .elementor-nav-menu--main > ul > .menu-item-has-children > .sub-menu {
    display: block !important;
    top: 100% !important;
    padding: 12px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .juye-elementor-header-main .elementor-nav-menu--main > ul > .menu-item-has-children > .sub-menu {
    right: auto !important;
    left: 5px !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: calc(100vw - 48px);
    padding: 12px 0;
  }
  .juye-elementor-header-main .elementor-nav-menu--main > ul > .menu-item-has-children > .sub-menu > li,
  .juye-elementor-header-main .elementor-nav-menu--main > ul > .menu-item-has-children > .sub-menu > li > a {
    width: 100% !important;
    min-width: 0 !important;
  }
  .juye-elementor-header-main .elementor-nav-menu--main > ul > .menu-item-has-children > .sub-menu > li > a {
    justify-content: flex-start;
    padding: 12px 8px !important;
    border-left: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
  .juye-elementor-header-main .elementor-nav-menu--dropdown .ast-icon,
  .juye-elementor-header-main .elementor-nav-menu--dropdown .ast-header-navigation-arrow { display: none !important; }
  .juye-elementor-header-main .elementor-nav-menu--main > ul > .menu-item-has-children:hover > .sub-menu,
  .juye-elementor-header-main .elementor-nav-menu--main > ul > .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  /* Older imported menus can still carry this class until the refresh tool runs. */
  .juye-elementor-header-main .menu-mega > .sub-menu > li > .sub-menu {
    display: none !important;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .juye-elementor-header-main > .e-con-inner > .juye-elementor-header-search { display: none !important; }
}

@media (max-width: 1180px) {
  :root { --container: 1080px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .header-actions { margin-left: auto; }
  .language { display: none; }
  .mobile-panel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 620; display: flex; width: min(430px,92vw); flex-direction: column; padding: 22px; background: white; transform: translateX(105%); transition: transform .28s ease; overflow-y: auto; }
  .mobile-panel.is-open { transform: none; }
  .page-scrim { position: fixed; inset: 0; z-index: 610; display: block; background: rgba(5,17,27,.65); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
  .page-scrim.is-open { opacity: 1; visibility: visible; }
  .mobile-panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
  .mobile-panel__head img { width: 165px; height: 50px; object-fit: contain; }
  .mobile-menu, .mobile-menu ul { margin: 0; padding: 0; list-style: none; }
  .mobile-menu > li { border-bottom: 1px solid var(--line); }
  .mobile-menu a { display: flex; min-height: 50px; align-items: center; padding: 8px 4px; font-size: 14px; font-weight: 680; }
  .mobile-menu .menu-item-has-children { position: relative; }
  .mobile-menu .submenu-toggle { position: absolute; top: 5px; right: 0; display: grid; width: 40px; height: 40px; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
  .mobile-menu .submenu-toggle svg { width: 17px; transition: transform .2s ease; }
  .mobile-menu .is-submenu-open > .submenu-toggle svg { transform: rotate(180deg); }
  .mobile-menu .sub-menu { display: none; padding: 0 0 10px 14px; border-left: 2px solid var(--blue); }
  .mobile-menu .is-submenu-open > .sub-menu { display: block; }
  .mobile-menu .sub-menu a { min-height: 38px; padding: 6px 10px; color: var(--ink-soft); font-size: 12px; font-weight: 550; }
  .mobile-menu .ast-menu-toggle, .mobile-menu .ast-icon, .mobile-menu .ast-header-navigation-arrow { display: none !important; }
  .mobile-panel__contact { display: grid; gap: 10px; margin-top: auto; padding-top: 30px; }
  .mobile-panel__contact a { display: flex; align-items: center; gap: 9px; font-size: 12px; }
  .mobile-panel__contact svg { width: 17px; color: var(--blue); }
  .category-dock__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .category-dock__item:nth-child(2) { border-right: 0; }
  .category-dock__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .advantage-grid, .principle-grid, .service-steps { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.2fr repeat(2,1fr); }
  .footer-contact { grid-column: span 2; }
  .product-grid, .product-grid--four { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .catalog-layout { grid-template-columns: 250px minmax(0,1fr); }
}

@media (max-width: 1024px) {
  .juye-factory-grid,
  .juye-factory-grid--elementor.e-con,
  .juye-factory-grid--elementor.e-con > .e-con-inner { height: auto; grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: none; }
  .juye-factory-grid__item--1,
  .juye-factory-grid__item--2,
  .juye-factory-grid__item--3,
  .juye-factory-grid__item--4,
  .juye-factory-grid__item--5,
  .juye-factory-grid__item--6 { grid-column: auto; grid-row: auto; }
  .juye-factory-grid__item,
  .juye-factory-grid--elementor > .e-con-inner > .elementor-widget-image { height: 280px; }
  .juye-elementor-header-main .juye-elementor-header-search { display: none !important; }
  .juye-elementor-header-main .elementor-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    color: var(--navy);
    border-radius: 4px;
    background: rgba(255,255,255,.94);
  }
  .contact-rail {
    top: auto;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: 14px;
    width: 52px;
    padding: 4px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    backdrop-filter: blur(10px);
  }
  .contact-rail.is-ready { opacity: 1; transform: none; }
  .contact-rail__toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 3px;
    color: white;
    background: var(--blue);
    cursor: pointer;
  }
  .contact-rail__toggle svg { width: 21px; height: 21px; }
  .contact-rail__items {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    width: 244px;
    gap: 2px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 4px;
    background: var(--navy-deep);
    box-shadow: 0 18px 44px rgba(5,17,27,.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .contact-rail.is-open .contact-rail__items { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .contact-rail__item { display: flex; width: 100%; height: 48px; justify-content: flex-start; gap: 11px; padding: 0 10px; border-radius: 3px; }
  .contact-rail__item:hover, .contact-rail__item:focus-visible { transform: none; }
  .contact-rail__icon { width: 28px; flex: 0 0 28px; }
  .contact-rail__icon svg { width: 20px; height: 20px; }
  .contact-rail__label {
    position: static;
    display: block;
    min-width: 0;
    max-width: none;
    padding: 0;
    border: 0;
    color: white;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .contact-rail__item:hover .contact-rail__label,
  .contact-rail__item:focus-visible .contact-rail__label { transform: none; }
  .contact-rail__label small { color: #9fc9ef; font-size: 9px; }
  .contact-rail__label strong { color: white; font-size: 11px; white-space: nowrap; }
  .contact-rail__label--qr img { display: none; }
  .single-product .contact-rail { bottom: calc(84px + env(safe-area-inset-bottom)); }
}

@media (min-width: 768px) and (max-width: 1024px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  .juye-el-columns > .e-con-inner {
    flex-wrap: wrap !important;
  }
  .juye-el-columns > .e-con-inner > .juye-el-column {
    --width: calc(50% - 21px) !important;
    width: calc(50% - 21px) !important;
    flex: 0 0 calc(50% - 21px) !important;
  }
  .juye-elementor-header-main { padding-inline: 24px !important; }
  .juye-elementor-header-main > .e-con-inner { flex-wrap: nowrap !important; }
  .juye-elementor-header-main .juye-elementor-header-logo {
    --width: auto !important;
    width: auto !important;
    flex: 1 1 auto !important;
  }
  .juye-elementor-header-main .juye-elementor-header-nav,
  .juye-elementor-header-main .juye-elementor-header-search {
    --width: 46px !important;
    width: 46px !important;
    flex: 0 0 46px !important;
  }
  .juye-elementor-header-main .juye-elementor-header-language {
    --width: 132px !important;
    width: 132px !important;
    flex: 0 0 132px !important;
  }
  .juye-elementor-header-main .juye-elementor-header-nav { order: 3; }
  .juye-elementor-header-main .juye-elementor-header-language { order: 2; }
  .home .juye-elementor-header-main .juye-elementor-header-logo .elementor-widget-theme-site-logo {
    width: 190px;
    max-width: 190px;
  }
  .juye-elementor-footer-main .juye-el-columns > .e-con-inner > .juye-el-column {
    --width: calc(50% - 21px) !important;
    width: calc(50% - 21px) !important;
    flex-basis: calc(50% - 21px) !important;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  .juye-elementor-header-main > .e-con-inner { flex-wrap: nowrap !important; }
  .juye-elementor-header-main .juye-elementor-header-logo {
    --width: auto !important;
    width: auto !important;
    flex: 1 1 auto !important;
  }
  .juye-elementor-header-main .juye-elementor-header-nav,
  .juye-elementor-header-main .juye-elementor-header-search {
    --width: 44px !important;
    width: 44px !important;
    flex: 0 0 44px !important;
  }
  .juye-elementor-header-main .juye-elementor-header-language {
    --width: 116px !important;
    width: 116px !important;
    flex: 0 0 116px !important;
  }
  .juye-elementor-header-main .juye-elementor-header-nav { order: 3; }
  .juye-elementor-header-main .juye-elementor-header-language { order: 2; }
  .juye-elementor-header-main .elementor-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    color: var(--navy);
    background: rgba(255,255,255,.94);
  }
  .home .juye-elementor-header-main .elementor-menu-toggle {
    color: white;
    background: rgba(7,24,38,.34);
  }
  .home .elementor-location-header.is-sticky .juye-elementor-header-main .elementor-menu-toggle {
    color: var(--navy);
    background: rgba(255,255,255,.94);
  }
  .juye-elementor-header-main .elementor-nav-menu__container.elementor-nav-menu--dropdown {
    border-top: 3px solid var(--blue);
    background: white !important;
  }
  .juye-elementor-header-main .elementor-nav-menu__container.elementor-nav-menu--dropdown > ul > li > a {
    padding: 10px 18px !important;
    color: var(--ink) !important;
    background: white !important;
    font-size: 14px;
  }
  .juye-elementor-header-main .elementor-nav-menu__container.elementor-nav-menu--dropdown > ul > li > a.elementor-item-active {
    color: var(--blue) !important;
    background: #eef5fb !important;
  }
  .juye-elementor-header-main .elementor-nav-menu--dropdown .sub-arrow { margin-left: auto; }
  .juye-search-hero { padding: 48px 0 42px; }
  .juye-search-hero h1 { font-size: 38px; }
  .juye-search-page-form button { min-width: 54px; padding: 0 16px; }
  .juye-search-page-form button span { display: none; }
  body.search #main { width: min(calc(100% - 30px), var(--container)); padding: 42px 0 72px; }
  body.search #main > .ast-row { grid-template-columns: minmax(0,1fr) !important; }
  .juye-el-columns > .e-con-inner {
    flex-wrap: wrap !important;
  }
  .juye-el-columns > .e-con-inner > .juye-el-column {
    --width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
  }
}

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .juye-el-section { padding: 64px 24px !important; }
  .home .elementor-location-header { position: sticky; inset: auto; top: 0; }
  .home .elementor-location-header.is-sticky { position: fixed; inset: 0 0 auto; }
  .home .juye-elementor-header-main {
    border-bottom-color: var(--line);
    background: rgba(255,255,255,.98) !important;
    box-shadow: 0 5px 18px rgba(10,27,43,.06);
    backdrop-filter: blur(12px);
  }
  .home .juye-gtranslate .gt_selected { border-color: rgba(23,33,43,.18) !important; background: rgba(10,27,43,.035) !important; }
  .home .juye-gtranslate .gt_selected a { color: var(--ink) !important; }
  .home .juye-gtranslate select.gt_selector { color: var(--ink); border-color: rgba(23,33,43,.18); background: rgba(10,27,43,.035); }
  .hero-slider { height: clamp(400px, 41.6667vw, 480px); }
  .hero-slide__content h1 { width: min(820px,95%); }
  .hero-slide__content > p:not(.eyebrow) { width: min(680px,92%); }
  .split-layout, .split-layout--intro, .video-feature__grid, .certificate-layout, .video-page, .download-layout, .contact-layout, .product-overview, .specification-layout { grid-template-columns: 1fr; gap: 46px; }
  .intro-media__badge { right: 16px; bottom: 16px; }
  .faq-layout, .faq-page { grid-template-columns: 1fr; gap: 46px; }
  .faq-intro, .faq-page > aside { position: static; }
  .application-grid { grid-template-columns: 1fr; }
  .application-grid--compact { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .news-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .video-feature__copy { order: 2; }
  .vision-band__grid { grid-template-columns: 1fr; }
  .case-card, .case-card:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .case-card:nth-child(even) img { order: 0; }
  .video-wide { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  body.search #main > .ast-row { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .catalog-filter { position: fixed; top: 0; right: 0; bottom: 0; z-index: 650; width: min(360px,92vw); transform: translateX(105%); transition: transform .25s ease; overflow-y: auto; }
  .catalog-filter.is-open { transform: none; }
  .catalog-filter__head .icon-button { display: inline-grid; }
  .catalog-layout .filter-open { display: inline-flex !important; }
  .product-detail__grid { grid-template-columns: 1fr; gap: 44px; }
  .product-summary { position: static; }
  .product-tabs-nav { top: 82px; }
  .news-row { grid-template-columns: 300px 1fr; gap: 28px; }
  .footer-cta__inner { min-height: 300px; }
  .juye-elementor-footer-inquiry > .e-con-inner {
    flex-direction: column !important;
    gap: 32px !important;
  }
  .juye-elementor-footer-inquiry > .e-con-inner > .e-con {
    --width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
  }
  .juye-factory-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: repeat(3,260px); }
  .juye-factory-grid__item--1, .juye-factory-grid__item--4 { grid-row: auto; }
}

@media (max-width: 640px) {
  :root { --header-height: 68px; }
  body { font-size: 15px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .juye-dealer-cta { padding: 30px 15px; }
  .juye-dealer-cta p { font-size: 13px; line-height: 1.65; }
  .juye-factory-showcase { padding: 52px 15px 60px; }
  .juye-factory-showcase__heading { margin-bottom: 24px; }
  .juye-factory-grid,
  .juye-factory-grid--elementor.e-con,
  .juye-factory-grid--elementor.e-con > .e-con-inner { grid-template-columns: 1fr; grid-template-rows: none; gap: 10px !important; }
  .juye-factory-grid__item,
  .juye-factory-grid--elementor > .e-con-inner > .elementor-widget-image { height: 250px; }
  .section { padding: 48px 0; }
  .juye-el-section { padding: 48px 15px !important; }
  .announcement__inner { justify-content: center; }
  .announcement__slides { text-align: center; }
  .announcement a { display: none; }
  .brand { width: 128px; flex-basis: 128px; }
  .brand img { height: 42px; }
  .header-actions > .button--header { display: none !important; }
  .header-actions { flex: 0 0 auto; gap: 6px; }
  .header-actions .icon-button { width: 38px; height: 38px; flex-basis: 38px; }
  .hero-slider { height: min(520px, calc(41.6667vw + 250px)); }
  .hero-slide { display: block; }
  .hero-slide__artwork { height: auto; aspect-ratio: 12 / 5; object-fit: contain; background: white; }
  .hero-slide__content { display: flex; top: 41.6667vw; bottom: 0; min-height: 250px; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 20px; padding-bottom: 20px; }
  .hero-slide__content .eyebrow { margin-bottom: 8px; }
  .hero-slide__content h1 { width: 100%; margin-bottom: 10px; font-size: 28px; line-height: 1.18; }
  .hero-slide__content > p:not(.eyebrow) { width: 100%; margin-bottom: 16px; font-size: 13px; line-height: 1.5; }
  .hero-slide__actions { align-items: stretch; flex-direction: column; }
  .hero-slide__actions .button { min-height: 42px; width: fit-content; padding: 0 16px; }
  .hero-slider__controls { bottom: 72px; }
  .category-dock { margin-top: 0; }
  .category-dock__grid { grid-template-columns: 1fr; }
  .category-dock__item { min-height: 92px; grid-template-columns: 54px 1fr 20px; padding: 14px 16px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .category-dock__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .category-dock__item img { width: 54px; height: 54px; }
  .intro-media > img { min-height: 330px; }
  .intro-media__badge { width: 150px; height: 118px; padding: 18px; }
  .intro-media__badge strong { font-size: 34px; }
  .inline-links { align-items: flex-start; flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .stats-grid > div { min-height: 125px; padding: 20px; border-bottom: 1px solid var(--line-dark); }
  .stats-grid > div:nth-child(2) { border-right: 0; }
  .stats-grid strong { font-size: 34px; }
  .section-heading--split { align-items: flex-start; flex-direction: column; }
  .section-heading__actions .button { display: none; }
  .product-rail { grid-auto-columns: 82%; }
  .advantage-grid, .principle-grid, .service-steps { grid-template-columns: 1fr; }
  .advantage { min-height: 245px; }
  .advantage > svg { margin-bottom: 40px; }
  .application-tile, .application-tile img { min-height: 250px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card h3 { min-height: 0; }
  .inner-hero { min-height: 330px; }
  .inner-hero__inner { padding-block: 90px 46px; }
  .inner-hero h1 { font-size: 38px; }
  .factory-gallery { height: auto; grid-template-columns: 1fr; }
  .factory-gallery img { height: 260px; }
  .timeline::before { left: 72px; }
  .timeline__item { grid-template-columns: 72px 1fr; gap: 30px; padding-bottom: 48px; }
  .timeline__item::before { left: 66px; }
  .timeline__item > strong { font-size: 18px; }
  .solution-row { grid-template-columns: 34px 90px 1fr; gap: 12px; }
  .solution-row > svg { display: none; }
  .solution-row img { width: 90px; height: 80px; }
  .solution-row strong { font-size: 16px; }
  .solution-row small { display: none; }
  .application-grid--compact { grid-template-columns: 1fr; }
  .inquiry-form .form-grid { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 22px; }
  .juye-catalog-hero .inner-hero { min-height: 220px; }
  .juye-catalog-hero .inner-hero__inner { padding-block: 68px 28px; }
  .juye-catalog-hero .inner-hero h1 { margin-bottom: 8px; font-size: 36px; }
  .juye-catalog-intro { padding-block: 14px !important; }
  .juye-catalog-section { padding-block: 18px 58px !important; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; gap: 9px; min-height: 98px; padding: 10px 0 12px; }
  .catalog-toolbar__controls { width: 100%; justify-content: space-between; }
  .product-grid:not(.is-list), .product-grid--three:not(.is-list), .product-grid--four:not(.is-list) { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .product-card__view { display: none; }
  .product-card__body { min-height: 184px; padding: 12px; }
  .product-card__eyebrow { display: -webkit-box; min-height: 26px; margin-bottom: 8px; font-size: 9px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
  .product-card h3 { margin-bottom: 12px; font-size: 14px; line-height: 1.3; -webkit-line-clamp: 4; }
  .product-card__meta { gap: 4px; padding-top: 8px; }
  .product-card__meta > span { min-width: 0; font-size: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .product-card__meta .text-button { width: 34px; height: 34px; flex: 0 0 34px; justify-content: center; font-size: 0; }
  .product-card__meta .text-button svg { width: 16px; height: 16px; }
  .product-grid.is-list .product-card { grid-template-columns: 120px 1fr; }
  .product-grid.is-list .product-card__body { min-height: 180px; padding: 16px; }
  .product-grid.is-list .product-card h3 { font-size: 15px; }
  .product-grid.is-list .product-card__eyebrow { display: none; }
  .product-grid.is-list .product-card__meta .text-button { width: auto; height: auto; flex: 0 0 auto; font-size: 12px; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery__thumbs { grid-template-columns: repeat(3,72px); order: 2; }
  .product-gallery__thumbs button { width: 72px; height: 72px; }
  .product-summary h1 { font-size: 30px; }
  .product-summary__actions { align-items: stretch; flex-direction: column; }
  .product-tabs-nav .container { gap: 24px; }
  .product-tabs-nav { top: 68px; }
  .spec-list > div { grid-template-columns: 110px 1fr; }
  .news-row { grid-template-columns: 1fr; }
  .news-row h2 { font-size: 24px; }
  .article-share, .support-split, .footer-cta__inner { align-items: flex-start; flex-direction: column; }
  .footer-cta__inner { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 36px 24px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
  .search-overlay__field { flex-direction: column; }
  .modal { padding: 10px; }
  .modal__dialog { max-height: calc(100vh - 20px); padding: 20px; }
  .modal__head h2 { font-size: 25px; }
  .video-modal, .image-lightbox { padding: 18px; }
  .mobile-product-actions { position: fixed; right: 0; bottom: 0; left: 0; z-index: 100; display: grid; min-height: 70px; grid-template-columns: minmax(0,1fr) 48px; align-items: center; gap: 8px; padding: 9px 15px calc(9px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 -8px 24px rgba(10,27,43,.1); opacity: 0; pointer-events: none; transform: translateY(110%); transition: opacity .2s ease, transform .2s ease; }
  .mobile-product-actions.is-visible { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-product-actions form { margin: 0; }
  .mobile-product-actions .button { width: 100%; min-height: 48px; }
  .mobile-product-actions .icon-button { width: 48px; height: 48px; color: white; border-color: #1d9e5b; background: #1d9e5b; }
  body.is-locked .mobile-product-actions { opacity: 0; pointer-events: none; transform: translateY(110%); }
  .single-product .back-to-top { bottom: 82px; }
  .single-product .elementor-location-footer { padding-bottom: calc(70px + env(safe-area-inset-bottom)); background: var(--navy-deep); }
  .juye-elementor-announcement > .e-con-inner,
  .juye-elementor-announcement { min-height: 28px; }
  .juye-elementor-announcement { padding: 2px 12px !important; }
  .juye-elementor-announcement > .e-con-inner { flex-wrap: nowrap !important; justify-content: space-between !important; gap: 4px !important; }
  .juye-elementor-announcement > .e-con-inner > .e-con:first-child {
    --width: calc(100% - 32px) !important;
    display: flex !important;
    width: calc(100% - 32px) !important;
    flex: 1 1 calc(100% - 32px) !important;
    min-width: 0;
  }
  .juye-announcement-rotator { width: 100%; height: 16px; font-size: 10px; white-space: nowrap; }
  .juye-announcement-rotator > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .juye-elementor-announcement > .e-con-inner > .juye-announcement-actions {
    --width: 28px !important;
    display: flex !important;
    width: 28px !important;
    flex: 0 0 28px !important;
    justify-content: flex-end !important;
  }
  .juye-announcement-actions .elementor-widget-button { display: none; }
  .juye-gtranslate .gt_selected a,
  .juye-gtranslate select.gt_selector { min-height: 42px; padding-left: 7px !important; font-size: 11px !important; }
  .juye-gtranslate .gt_switcher img { width: 18px !important; margin-right: 5px !important; }
  .juye-gtranslate .gt_option {
    position: fixed !important;
    top: 94px;
    right: 12px;
    width: min(260px, calc(100vw - 24px)) !important;
    max-height: calc(100vh - 112px) !important;
  }
  .juye-elementor-header-main { min-height: 66px !important; padding: 8px 15px !important; }
  .juye-elementor-header-main .juye-elementor-header-logo img { max-height: 42px; }
  .juye-elementor-header-main .juye-elementor-header-search { display: none !important; }
  .juye-elementor-header-main .elementor-nav-menu--dropdown { position: fixed; top: 96px; right: 0; left: 0; max-height: calc(100vh - 96px); overflow-y: auto; }
  .elementor-location-header.is-sticky .juye-gtranslate .gt_option { top: 74px; max-height: calc(100vh - 92px) !important; }
  .elementor-location-header.is-sticky .juye-elementor-header-main .elementor-nav-menu--dropdown { top: 66px; max-height: calc(100vh - 66px); }
  .juye-elementor-footer-cta { align-items: flex-start !important; flex-direction: column !important; }
  .juye-elementor-footer-inquiry { padding: 48px 15px !important; }
  .juye-elementor-footer-main { padding-inline: 15px !important; }
  .juye-el-columns > .e-con-inner {
    flex-wrap: wrap !important;
  }
  .juye-el-columns > .e-con-inner > .juye-el-column {
    --width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
  }
  .juye-elementor-footer-main .juye-el-columns > .e-con-inner { gap: 32px 18px !important; }
  .juye-elementor-footer-main .juye-el-columns > .e-con-inner > .juye-el-column {
    --width: calc(50% - 9px) !important;
    width: calc(50% - 9px) !important;
    flex: 0 0 calc(50% - 9px) !important;
  }
  .juye-elementor-footer-main .juye-el-columns > .e-con-inner > .juye-el-column:first-child {
    --width: 100% !important;
    width: 100% !important;
    flex-basis: 100% !important;
  }
  .juye-home-stats > .e-con-inner { gap: 0 !important; }
  .juye-home-stats > .e-con-inner > .juye-el-column {
    --width: 50% !important;
    width: 50% !important;
    flex: 0 0 50% !important;
    min-height: 132px;
    justify-content: center;
    padding: 18px 6px !important;
  }
  .juye-home-stats > .e-con-inner > .juye-el-column:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .juye-home-stats > .e-con-inner > .juye-el-column:nth-child(odd) { border-right: 1px solid var(--line-dark); }
  .juye-home-stats .elementor-counter-number-wrapper { font-size: 34px !important; line-height: 1.05; }
  .juye-home-stats .elementor-counter-title { font-size: 12px; line-height: 1.35; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
