/* Refreshed header and first-screen treatment. Kept separate from legacy theme CSS. */
:root {
  --refresh-blue: #0d67c5;
  --refresh-blue-dark: #08498f;
  --refresh-orange: #ff8a16;
  --refresh-ink: #101820;
  --refresh-muted: #5f6b76;
}

/* Homepage FAQ and news refresh */
.home-section-heading { margin-bottom: 46px; text-align: center; }
.home-section-heading p { margin: 0 0 12px; color: var(--refresh-blue); font-size: 15px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.home-section-heading h2 { margin: 0; color: var(--refresh-ink); font-size: clamp(30px, 2.6vw, 42px); font-weight: 800; line-height: 1.16; }
.home-section-heading--light h2 { color: #fff; }
.home-section-heading--light p { color: #58a9ff; }
.home-refresh-button { display: inline-flex; min-width: 150px; height: 48px; align-items: center; justify-content: center; box-sizing: border-box; padding: 0 26px; color: #fff !important; background: var(--refresh-blue); border-radius: 2px; font-size: 14px; font-weight: 700; transition: background .2s, transform .2s; }
.home-refresh-button:hover { color: #fff; background: var(--refresh-blue-dark); transform: translateY(-2px); }

.home-faq-refresh { position: relative; padding: 76px 0 82px; overflow: hidden; background: #101a24 url('/static/upload/2022/11/12/202211129676.jpg') center / cover no-repeat; }
.home-faq-refresh__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 14, 21, .94), rgba(8, 18, 28, .77), rgba(7, 14, 21, .88)); }
.home-faq-refresh__inner { position: relative; z-index: 1; width: min(1220px, 86%); margin: 0 auto; text-align: center; }
.home-faq-refresh__list { margin-bottom: 34px; text-align: left; }
.home-faq-refresh__item { margin-bottom: 12px; background: #fff; box-shadow: 0 8px 28px rgba(0, 0, 0, .1); }
.home-faq-refresh__question { display: flex; width: 100%; min-height: 76px; align-items: center; justify-content: space-between; box-sizing: border-box; padding: 18px 28px; border: 0; color: #27333d; background: #fff; text-align: left; cursor: pointer; font-family: inherit; font-size: 19px; font-weight: 700; line-height: 1.45; }
.home-faq-refresh__question i { position: relative; width: 20px; height: 20px; flex: 0 0 20px; margin-left: 24px; }
.home-faq-refresh__question i:before,
.home-faq-refresh__question i:after { position: absolute; top: 9px; left: 2px; width: 16px; height: 2px; background: #56616a; content: ''; transition: transform .22s ease; }
.home-faq-refresh__question i:after { transform: rotate(90deg); }
.home-faq-refresh__item.is-open .home-faq-refresh__question i:after { transform: rotate(0); }
.home-faq-refresh__answer { padding: 24px 28px 30px; border-top: 1px solid #e1e5e8; color: #4d5964; background: #fff; }
.home-faq-refresh__answer[hidden] { display: none; }
.home-faq-refresh__answer p { margin: 0; font-size: 16px; line-height: 2; }

.home-news-refresh { padding: 78px 0 82px; overflow: hidden; background: #fff; }
.home-news-refresh__inner { width: min(1530px, 92%); margin: 0 auto; text-align: center; }
.home-news-refresh__slider { position: relative; margin-bottom: 48px; padding: 4px 0; text-align: left; }
.home-news-refresh__card { display: block; height: 100%; color: var(--refresh-ink); background: #f6f7f8; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.home-news-refresh__card:hover { color: var(--refresh-blue); box-shadow: 0 12px 32px rgba(16, 36, 56, .14); transform: translateY(-4px); }
.home-news-refresh__image { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #e9edf0; }
.home-news-refresh__image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.home-news-refresh__card:hover .home-news-refresh__image img { transform: scale(1.045); }
.home-news-refresh__meta { display: block; min-height: 142px; box-sizing: border-box; padding: 20px 20px 24px; }
.home-news-refresh__meta time { display: block; margin-bottom: 16px; color: #737d85; font-size: 14px; }
.home-news-refresh__meta strong { display: -webkit-box; overflow: hidden; color: #1d242a; font-size: 18px; font-weight: 700; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-news-refresh__card:hover .home-news-refresh__meta strong { color: var(--refresh-blue); }
.home-news-refresh__arrow { position: absolute; z-index: 3; top: 36%; display: flex; width: 56px; height: 56px; align-items: center; justify-content: center; margin-top: -28px; border: 0; border-radius: 50%; color: #1d2b36; background: #fff; box-shadow: 0 4px 18px rgba(12, 27, 40, .16); cursor: pointer; transition: color .2s, background .2s; }
.home-news-refresh__arrow:hover { color: #fff; background: var(--refresh-blue); }
.home-news-refresh__arrow i { font-size: 27px; }
.home-news-refresh__arrow--prev { left: 8px; }
.home-news-refresh__arrow--next { right: 8px; }

@media (max-width: 1024px) {
  .home-faq-refresh { padding: 64px 0 68px; }
  .home-faq-refresh__inner { width: 88%; }
  .home-news-refresh { padding: 64px 0 68px; }
  .home-news-refresh__inner { width: 88%; }
}

@media (max-width: 640px) {
  .home-section-heading { margin-bottom: 28px; }
  .home-section-heading p { margin-bottom: 8px; font-size: 12px; }
  .home-section-heading h2 { font-size: 29px; }
  .home-refresh-button { min-width: 132px; height: 44px; font-size: 13px; }
  .home-faq-refresh { padding: 50px 0 54px; }
  .home-faq-refresh__inner { width: 90%; }
  .home-faq-refresh__item { margin-bottom: 8px; }
  .home-faq-refresh__question { min-height: 62px; padding: 14px 17px; font-size: 15px; }
  .home-faq-refresh__question i { margin-left: 14px; }
  .home-faq-refresh__answer { padding: 17px 18px 20px; }
  .home-faq-refresh__answer p { font-size: 13px; line-height: 1.8; }
  .home-news-refresh { padding: 50px 0 54px; }
  .home-news-refresh__inner { width: 90%; }
  .home-news-refresh__slider { margin-bottom: 34px; }
  .home-news-refresh__meta { min-height: 122px; padding: 17px 16px 20px; }
  .home-news-refresh__meta time { margin-bottom: 11px; font-size: 12px; }
  .home-news-refresh__meta strong { font-size: 16px; }
  .home-news-refresh__arrow { width: 44px; height: 44px; margin-top: -22px; }
  .home-news-refresh__arrow i { font-size: 22px; }
  .home-news-refresh__arrow--prev { left: 6px; }
  .home-news-refresh__arrow--next { right: 6px; }
}

body.site-refresh { background: #fff; }
.site-refresh .waph2 { display: none !important; height: 0 !important; }

/* Success-case client wall */
.case-clients-refresh {
  padding: 20px 0 72px;
  background: #fff;
}
.case-clients-refresh__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #edf0f2;
  border-left: 1px solid #edf0f2;
  background: #fff;
}
.case-clients-refresh__item {
  position: relative;
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 24px 30px;
  border-right: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
  color: #27323b;
  background: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.case-clients-refresh__item:before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--refresh-blue);
  content: '';
  transform: translateX(-50%);
  transition: width .22s ease;
}
.case-clients-refresh__item:hover {
  z-index: 1;
  color: var(--refresh-blue);
  background: #f8fbfe;
  box-shadow: 0 12px 28px rgba(13, 103, 197, .09);
  transform: translateY(-2px);
}
.case-clients-refresh__item:hover:before { width: 100%; }

@media (max-width: 1200px) {
  .case-clients-refresh__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .case-clients-refresh { padding: 8px 0 48px; }
  .case-clients-refresh__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-clients-refresh__item { min-height: 112px; padding: 18px 14px; font-size: 14px; line-height: 1.6; }
}
@media (max-width: 420px) {
  .case-clients-refresh__grid { grid-template-columns: 1fr; }
  .case-clients-refresh__item { min-height: 88px; }
}

.top-strip {
  position: fixed;
  z-index: 1002;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  color: #dce5ee;
  background: #15191e;
  font-family: Arial, Helvetica, sans-serif;
}
.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
  font-size: 13px;
}
.top-strip__note { color: #eef4fa; letter-spacing: .15px; }
.top-strip__contacts { display: flex; align-items: center; gap: 28px; }
.top-strip a { color: #dce5ee; }
.top-strip a:hover { color: #fff; }
.top-strip i { margin-right: 7px; color: #aebac5; }

.page-header.refresh-header,
.page-header {
  top: 36px;
  height: 80px;
  min-height: 80px;
  padding: 0 max(28px, calc((100% - 1640px) / 2));
  box-sizing: border-box;
  background: #fff !important;
  box-shadow: 0 1px 0 rgba(10, 31, 51, .08);
}
.page-header:after { display: none; }
.page-header-zw { display: block !important; height: 116px !important; }
.page-logo { width: 175px; height: 80px; display: flex !important; align-items: center; flex: 0 0 175px; }
.page-logo .img,
.page-logo .img-w {
  position: static;
  width: 170px;
  height: auto !important;
  max-height: 62px;
  object-fit: contain;
  opacity: 1 !important;
}
.page-logo .img-w { display: none; }
.refresh-logo-fallback { display: none; color: var(--refresh-ink); font-size: 26px; font-weight: 800; letter-spacing: -.8px; }
.refresh-logo-fallback span { color: var(--refresh-blue); margin-left: 4px; }
.page-nav { gap: 4px; }
.page-nav .item { margin-right: 8px; }
.page-nav .link {
  height: 80px;
  padding: 0 13px;
  color: #101820 !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .15px;
  line-height: 80px;
}
.page-nav .item.on .link,
.page-nav .item:hover .link,
.page-nav .link:hover { color: var(--refresh-blue) !important; }
.page-nav .link:after { height: 3px; background: var(--refresh-blue); }
.page-subnav { top: 80px; width: 210px; border-top: 3px solid var(--refresh-blue); }
.page-subnav .slink { font-size: 14px; padding: 12px 16px; }
.refresh-tools {
  display: flex !important;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
  opacity: 1;
  visibility: visible;
}
.refresh-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 42px;
  color: #48545e !important;
  font-size: 18px;
}
.refresh-search:hover { color: var(--refresh-blue) !important; }
.refresh-language {
  position: relative;
  display: flex !important;
  align-items: center;
  height: 80px;
  opacity: 1 !important;
  visibility: visible !important;
}
.refresh-language__trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  height: 42px;
  color: #48545e !important;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 42px;
  overflow: visible !important;
}
.refresh-language__trigger > .fa-globe { font-size: 18px; }
.refresh-language__arrow { margin-left: -2px; font-size: 12px; transition: transform .2s ease; }
.refresh-language:hover .refresh-language__trigger,
.refresh-language:focus-within .refresh-language__trigger { color: var(--refresh-blue) !important; }
.refresh-language:hover .refresh-language__arrow,
.refresh-language:focus-within .refresh-language__arrow { transform: rotate(180deg); }
.refresh-language__menu {
  position: absolute;
  z-index: 1100;
  top: calc(100% - 9px);
  right: 0;
  width: 156px;
  padding: 8px;
  border-top: 3px solid var(--refresh-blue);
  background: #fff;
  box-shadow: 0 12px 30px rgba(12, 35, 55, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.refresh-language:hover .refresh-language__menu,
.refresh-language:focus-within .refresh-language__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.refresh-language__item {
  display: flex !important;
  align-items: center;
  min-height: 40px;
  padding: 4px 8px;
  box-sizing: border-box;
  color: #303b45 !important;
  font-size: 14px;
  line-height: 1.3;
  overflow: visible !important;
}
.refresh-language__item + .refresh-language__item { border-top: 1px solid #edf0f2; }
.refresh-language__item:hover { color: var(--refresh-blue) !important; background: #f4f8fc; }
.refresh-language__item img { width: 26px; height: 26px; flex: 0 0 26px; margin-right: 9px; object-fit: cover; }
.refresh-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 42px;
  padding: 0 18px;
  color: #fff !important;
  background: var(--refresh-blue);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
}
.refresh-contact:hover { background: var(--refresh-blue-dark); }

.hero-refresh {
  position: relative;
  width: 100%;
  height: min(650px, calc(100vh - 116px));
  min-height: 500px;
  overflow: hidden;
  background: #172d3c url('../images/n1.jpg') center / cover no-repeat;
}
.hero-refresh .swiper-wrapper,
.hero-refresh .swiper-slide { height: 100%; }
.hero-refresh__slide {
  position: relative;
  display: flex;
  align-items: center;
  background: #152d3c var(--hero-image) center / cover no-repeat;
}
.hero-refresh__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 17, 28, .86) 0%, rgba(4, 17, 28, .6) 42%, rgba(4, 17, 28, .16) 100%);
}
.hero-refresh__content {
  position: relative;
  z-index: 1;
  width: min(1640px, 100%);
  margin: 0 auto;
  padding: 0 9%;
  box-sizing: border-box;
  color: #fff;
}
.hero-refresh__eyebrow {
  margin: 0 0 18px;
  color: #70b9ff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.hero-refresh__content h1 {
  max-width: 720px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -.8px;
  line-height: 1.08;
  text-transform: uppercase;
}
.hero-refresh__summary {
  max-width: 570px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.7;
}
.hero-refresh__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  height: 52px;
  padding: 0 25px;
  color: #fff;
  background: var(--refresh-orange);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-refresh__cta:hover { background: #ff9e3f; color: #fff; }
.hero-refresh__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 52px !important;
  height: 52px !important;
  margin-top: -26px !important;
  border: 1px solid rgba(255,255,255,.65) !important;
  border-radius: 50%;
  color: #fff !important;
  background: rgba(8, 24, 36, .35) !important;
  cursor: pointer;
  opacity: .9;
}
.hero-refresh__arrow:after { display: none; }
.hero-refresh__arrow i { font-size: 25px; }
.hero-refresh__arrow--prev { left: 3.2%; }
.hero-refresh__arrow--next { right: 3.2%; }
.hero-refresh__arrow:hover { background: var(--refresh-blue) !important; border-color: var(--refresh-blue) !important; }
.hero-refresh__bottom {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 30px;
  left: 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.75);
  font-size: 10px;
  letter-spacing: 2px;
}
.hero-refresh__bottom .swiper-pagination { position: static; width: auto; text-align: left; }
.hero-refresh__bottom .swiper-pagination-bullet { width: 28px; height: 3px; margin: 0 4px 0 0; border-radius: 0; background: rgba(255,255,255,.45); opacity: 1; }
.hero-refresh__bottom .swiper-pagination-bullet-active { background: var(--refresh-orange); }
.hero-refresh__bottom > span i { margin-left: 9px; color: #fff; }

.product-categories-refresh { background: #fff; padding: 68px 0 54px; }
.product-categories-refresh__inner { width: min(1640px, 92%); margin: 0 auto; }
.product-categories-refresh__heading { text-align: center; margin-bottom: 42px; }
.product-categories-refresh__eyebrow { margin: 0 0 8px; color: var(--refresh-blue); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; }
.product-categories-refresh__heading h2 { margin: 0 0 8px; color: var(--refresh-ink); font-size: clamp(28px, 3vw, 42px); line-height: 1.15; text-transform: uppercase; }
.product-categories-refresh__heading span { color: var(--refresh-muted); font-size: 15px; }
.product-categories-refresh__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.product-category-refresh { display: flex; min-height: 198px; flex-direction: column; align-items: center; justify-content: center; padding: 24px 14px 18px; border: 1px solid #e5ebf1; color: var(--refresh-ink); background: #fff; text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s; }
.product-category-refresh:hover { border-color: #b9d7f5; box-shadow: 0 12px 28px rgba(13,103,197,.12); color: var(--refresh-blue); transform: translateY(-5px); }
.product-category-refresh__icon { display: flex; width: 86px; height: 86px; align-items: center; justify-content: center; margin-bottom: 15px; border-radius: 50%; color: var(--refresh-blue); background: #edf5fd; font-size: 31px; }
.category-icon--1 { color: #eb6c4c; background: #fff1ed; }.category-icon--2 { color: #f39c28; background: #fff7e8; }.category-icon--3 { color: #27a77b; background: #ecfaf5; }.category-icon--4 { color: #7566ca; background: #f2f0fd; }.category-icon--5 { color: #0d67c5; background: #edf5fd; }
.category-icon--1 i:before { content: "\f02b"; }.category-icon--2 i:before { content: "\f0c4"; }.category-icon--3 i:before { content: "\f1d8"; }.category-icon--4 i:before { content: "\f0ae"; }.category-icon--5 i:before { content: "\f0ad"; }
.product-category-refresh strong { font-size: 18px; font-weight: 700; line-height: 1.35; }
.product-category-refresh small { margin-top: 10px; color: #7a8793; font-size: 12px; opacity: 0; transform: translateY(4px); transition: opacity .25s, transform .25s; }
.product-category-refresh:hover small { opacity: 1; transform: translateY(0); }
.product-category-refresh small i { margin-left: 5px; }
.refresh-promo-grid { display: grid; width: min(1640px, 92%); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin: 0 auto 72px; }
.refresh-promo-card { position: relative; display: block; min-height: 260px; overflow: hidden; color: #fff; background: #152d3c var(--promo-image) center / cover no-repeat; }
.refresh-promo-card__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,14,23,.85), rgba(5,14,23,.15)); transition: background .25s; }
.refresh-promo-card__content { position: relative; z-index: 1; display: flex; max-width: 64%; height: 100%; flex-direction: column; justify-content: center; padding: 32px 40px; box-sizing: border-box; }
.refresh-promo-card__content b { color: #fff; font-size: clamp(23px, 2vw, 34px); line-height: 1.15; text-transform: uppercase; }
.refresh-promo-card__content em { display: -webkit-box; margin: 13px 0 20px; overflow: hidden; color: rgba(255,255,255,.82); font-size: 14px; font-style: normal; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.refresh-promo-card__content > span { align-self: flex-start; padding: 11px 16px; color: #fff; background: var(--refresh-orange); font-size: 12px; font-weight: 700; }
.refresh-promo-card__content > span i { margin-left: 8px; }
.refresh-promo-card:hover .refresh-promo-card__shade { background: linear-gradient(90deg, rgba(5,14,23,.92), rgba(5,14,23,.32)); }
.refresh-promo-card:hover .refresh-promo-card__content > span { background: var(--refresh-blue); }
.site-refresh .center > .index-pro1.index-pro2 { display: none; }
.site-refresh .refresh-promo-grid { display: none; }
.featured-products-refresh { padding: 70px 0 78px; background: #f7f8fa; }
.featured-products-refresh__inner { width: min(1640px, 92%); margin: 0 auto; }
.featured-products-refresh__heading { margin-bottom: 44px; text-align: center; }
.featured-products-refresh__eyebrow { margin: 0 0 9px; color: var(--refresh-blue); font-size: 12px; font-weight: 800; letter-spacing: 2.8px; }
.featured-products-refresh__heading h2 { margin: 0 0 10px; color: var(--refresh-ink); font-size: clamp(28px, 3vw, 42px); line-height: 1.15; text-transform: uppercase; }
.featured-products-refresh__heading span { color: var(--refresh-muted); font-size: 15px; }
.featured-products-refresh__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 38px; }
.featured-product-refresh { display: block; overflow: hidden; border: 1px solid #e2e5e8; color: var(--refresh-ink); background: #fff; transition: transform .25s, box-shadow .25s; }
.featured-product-refresh:hover { color: var(--refresh-ink); box-shadow: 0 14px 30px rgba(15, 31, 45, .12); transform: translateY(-5px); }
.featured-product-refresh__image { position: relative; height: 0; overflow: hidden; padding-top: 100%; background: #fff; }
.featured-product-refresh__image img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; transform: scale(.9); transition: transform .35s; }
.featured-product-refresh:hover .featured-product-refresh__image img { transform: scale(.98); }
.featured-product-refresh__meta { min-height: 128px; padding: 20px 18px 22px; box-sizing: border-box; text-align: center; background: #f1f1f1; }
.featured-product-refresh__meta span { display: block; margin-bottom: 17px; color: #687078; font-size: 15px; line-height: 1.3; }
.featured-product-refresh__meta strong { display: -webkit-box; overflow: hidden; color: #202428; font-size: 21px; font-weight: 700; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.featured-products-refresh__more { grid-column: 1 / -1; margin-top: -8px; text-align: center; }
.featured-products-refresh__more a { display: inline-flex; height: 44px; align-items: center; padding: 0 22px; color: #fff; background: var(--refresh-orange); font-size: 13px; font-weight: 700; transition: background .2s; }
.featured-products-refresh__more a:hover { color: #fff; background: var(--refresh-blue); }
.featured-products-refresh__more i { margin-left: 8px; }
.about-refresh { margin: 0; padding: 86px 0; overflow: visible; background: #fff; }
.about-refresh__inner { display: grid; width: min(1500px, 88%); grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr); gap: clamp(45px, 7vw, 120px); align-items: center; margin: 0 auto; }
.about-refresh__eyebrow { margin: 0 0 12px; color: var(--refresh-orange); font-size: 12px; font-weight: 800; letter-spacing: 2.8px; line-height: 1.3; }
.about-refresh__content h2 { margin: 0 0 14px; color: var(--refresh-ink); font-size: clamp(30px, 3vw, 42px); font-weight: 700; line-height: 1.2; }
.about-refresh__content > b { display: block; margin: 0 0 18px; color: var(--refresh-blue); font-size: 18px; font-weight: 600; line-height: 1.5; }
.about-refresh__description { color: #59636d; font-size: 16px; line-height: 1.8; }
.about-refresh__description p { margin: 0 0 16px; }
.about-refresh__description p:last-child { margin-bottom: 0; }
.about-refresh__button { display: inline-flex; height: 46px; align-items: center; margin-top: 28px; padding: 0 21px; color: #fff; background: var(--refresh-orange); font-size: 13px; font-weight: 700; transition: background .2s; }
.about-refresh__button:hover { color: #fff; background: var(--refresh-blue); }
.about-refresh__button i { margin-left: 9px; }
.about-refresh__media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #e8edf1; }
.about-refresh__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.about-refresh__media:hover img { transform: scale(1.04); }
.about-refresh__play { position: absolute; top: 50%; left: 50%; display: flex; width: 68px; height: 68px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: #fff; background: rgba(10, 24, 35, .56); transform: translate(-50%, -50%); transition: background .2s, transform .2s; }
.about-refresh__media:hover .about-refresh__play { background: var(--refresh-orange); transform: translate(-50%, -50%) scale(1.06); }
.about-refresh__play i { margin-left: 3px; font-size: 20px; }

@media (max-width: 1100px) {
  .page-header { padding: 0 22px; }
  .page-nav .link { padding: 0 7px; font-size: 13px; }
  .page-nav .item { margin-right: 2px; }
  .refresh-contact { min-width: 96px; padding: 0 12px; }
  .hero-refresh__content { padding: 0 12%; }
  .product-categories-refresh__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .featured-products-refresh__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .about-refresh__inner { grid-template-columns: minmax(0, 1fr) minmax(350px, .95fr); gap: 50px; }
}
@media (max-width: 1024px) {
  .top-strip__inner { padding: 0 18px; }
  .top-strip__note { font-size: 11px; }
  .top-strip__contacts { gap: 12px; }
  .page-header { top: 36px; height: 64px; min-height: 64px; padding: 0 18px; }
  .page-header-zw { height: 100px !important; }
  .page-logo { width: 150px; height: 64px; flex-basis: 150px; }
  .page-logo .img, .page-logo .img-w { width: 142px; max-height: 52px; }
  .page-header .other { margin-right: 48px; }
  .refresh-language { height: 64px; }
  .refresh-language__menu { top: calc(100% - 4px); }
  /* header 本身已位于顶部信息栏下方，按钮无需再次下移 */
  .page-header .mbnav-btn { top: 0; }
  /* head.html 中的旧版移动端占位会与 page-header-zw 重复 */
  .mbnav + .waph2 { display: none !important; height: 0 !important; }
  .hero-refresh { height: calc(100vh - 100px); min-height: 470px; }
  .hero-refresh__content { padding: 0 12%; }
  .hero-refresh__content h1 { font-size: clamp(38px, 6vw, 62px); }
}
@media (max-width: 640px) {
  .top-strip { height: 32px; }
  .top-strip__inner { padding: 0 14px; }
  .top-strip__note { display: none; }
  .top-strip__contacts { width: 100%; justify-content: space-between; gap: 8px; font-size: 11px; }
  .page-header { top: 32px; height: 62px; min-height: 62px; padding: 0 14px; }
  .page-header-zw { height: 94px !important; }
  .page-logo { height: 62px; width: 132px; flex-basis: 132px; }
  .page-logo .img, .page-logo .img-w { width: 126px; max-height: 46px; }
  .page-header .other { margin-right: 60px; }
  .refresh-tools { gap: 8px; }
  .refresh-contact { display: none; }
  .refresh-language { height: 62px; }
  .refresh-language__trigger { width: 38px; justify-content: center; gap: 0; }
  .refresh-language__trigger span,
  .refresh-language__arrow { display: none; }
  .refresh-language__menu { top: calc(100% - 4px); }
  .hero-refresh { height: calc(100svh - 94px); min-height: 500px; }
  .hero-refresh__slide { align-items: flex-end; padding-bottom: 98px; box-sizing: border-box; }
  .hero-refresh__shade { background: linear-gradient(0deg, rgba(4, 17, 28, .9) 0%, rgba(4, 17, 28, .5) 56%, rgba(4, 17, 28, .18) 100%); }
  .hero-refresh__content { padding: 0 11%; }
  .hero-refresh__eyebrow { margin-bottom: 12px; font-size: 10px; letter-spacing: 1px; }
  .hero-refresh__content h1 { margin-bottom: 12px; font-size: 38px; letter-spacing: -.3px; }
  .hero-refresh__summary { margin-bottom: 22px; font-size: 14px; line-height: 1.5; }
  .hero-refresh__cta { height: 46px; padding: 0 18px; font-size: 12px; }
  .hero-refresh__arrow { width: 38px !important; height: 38px !important; margin-top: -19px !important; }
  .hero-refresh__arrow i { font-size: 18px; }
  .hero-refresh__arrow--prev { left: 4%; }
  .hero-refresh__arrow--next { right: 4%; }
  .hero-refresh__bottom { right: 11%; bottom: 32px; left: 11%; }
  .hero-refresh__bottom > span { display: none; }
  .product-categories-refresh { padding: 46px 0 34px; }
  .product-categories-refresh__inner { width: 88%; }
  .product-categories-refresh__heading { margin-bottom: 26px; }
  .product-categories-refresh__heading h2 { font-size: 29px; }
  .product-categories-refresh__heading span { font-size: 13px; }
  .product-categories-refresh__grid { display: flex; gap: 12px; overflow-x: auto; padding: 3px 2px 15px; scroll-snap-type: x mandatory; }
  .product-category-refresh { min-width: 148px; min-height: 178px; scroll-snap-align: start; }
  .product-category-refresh__icon { width: 72px; height: 72px; margin-bottom: 12px; font-size: 26px; }
  .product-category-refresh strong { font-size: 15px; }
  .product-category-refresh small { opacity: 1; transform: none; font-size: 11px; }
  .refresh-promo-grid { display: flex; width: 88%; flex-direction: column; gap: 14px; margin-bottom: 42px; }
  .refresh-promo-card { min-height: 190px; }
  .refresh-promo-card__content { max-width: 80%; padding: 24px; }
  .refresh-promo-card__content b { font-size: 22px; }
  .featured-products-refresh { padding: 46px 0 52px; }
  .featured-products-refresh__inner { width: 88%; }
  .featured-products-refresh__heading { margin-bottom: 28px; }
  .featured-products-refresh__heading h2 { font-size: 29px; }
  .featured-products-refresh__heading span { font-size: 13px; }
  .featured-products-refresh__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .featured-product-refresh__meta { min-height: 104px; padding: 14px 10px 16px; }
  .featured-product-refresh__meta span { margin-bottom: 9px; font-size: 12px; }
  .featured-product-refresh__meta strong { font-size: 15px; line-height: 1.35; }
  .about-refresh { padding: 52px 0; }
  .about-refresh__inner { width: 88%; grid-template-columns: 1fr; gap: 30px; }
  .about-refresh__eyebrow { margin-bottom: 9px; font-size: 11px; letter-spacing: 2px; }
  .about-refresh__content h2 { margin-bottom: 12px; font-size: 29px; }
  .about-refresh__content > b { margin-bottom: 14px; font-size: 16px; }
  .about-refresh__description { font-size: 14px; line-height: 1.75; }
  .about-refresh__button { height: 44px; margin-top: 22px; font-size: 12px; }
  .about-refresh__media { aspect-ratio: 16 / 10; }
  .about-refresh__play { width: 58px; height: 58px; }
  .about-refresh__play i { font-size: 17px; }
}

/* Industrial packaging visual refresh, 2026-08 */
.hero-refresh {
  height: min(640px, calc(100vh - 116px));
  background-color: #071522;
}
.hero-refresh__slide { background-position: center center; }
.hero-refresh__shade {
  display: none;
}
.hero-refresh__content { padding-right: 45%; }
.hero-refresh__content h1 {
  max-width: 650px;
  font-size: clamp(40px, 4.1vw, 66px);
  line-height: 1.12;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .22);
}
.hero-refresh__content .hero-refresh__title--cn {
  max-width: none;
  margin-bottom: 20px;
  font-size: clamp(36px, 2.4vw, 46px);
  letter-spacing: -.5px;
  line-height: 1.18;
  white-space: nowrap;
}
.hero-refresh__content .hero-refresh__title--en {
  max-width: 680px;
  font-size: clamp(36px, 3.2vw, 54px);
  letter-spacing: -.5px;
  line-height: 1.12;
}
.hero-refresh__eyebrow { margin-bottom: 15px; }
.hero-refresh__summary { margin-bottom: 30px; }
.hero-refresh__summary { max-width: 540px; color: rgba(235, 244, 252, .84); }
.hero-refresh__cta { box-shadow: 0 10px 28px rgba(255, 138, 22, .2); }
.hero-refresh__cta i { transition: transform .22s ease; }
.hero-refresh__cta:hover i { transform: translateX(4px); }

.jiyun-services-refresh {
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(13, 103, 197, .055), transparent 28%),
    #fff;
}
.jiyun-services-refresh__inner { width: min(1500px, 90%); margin: 0 auto; }
.jiyun-services-refresh__heading { max-width: 820px; margin: 0 auto 54px; text-align: center; }
.jiyun-services-refresh__heading p { margin: 0 0 9px; color: var(--refresh-orange); font-size: 13px; font-weight: 800; letter-spacing: 2.4px; }
.jiyun-services-refresh__heading h2 { margin: 0; color: #174f9f; font-size: clamp(34px, 3vw, 50px); font-weight: 800; line-height: 1.25; letter-spacing: -.8px; }
.jiyun-services-refresh__heading > span { display: block; margin-top: 8px; color: #68737d; font-size: 20px; line-height: 1.65; }
.jiyun-services-refresh__heading > i { display: block; width: 122px; height: 4px; margin: 25px auto 0; background: linear-gradient(90deg, var(--refresh-blue) 0 50%, var(--refresh-orange) 50% 100%); }
.jiyun-services-refresh__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.jiyun-service-refresh { display: flex; min-width: 0; flex-direction: column; color: #202a33; background: #f1f3f5; box-shadow: 0 12px 36px rgba(17, 42, 66, .08); transition: box-shadow .28s ease, transform .28s ease; }
.jiyun-service-refresh:hover { color: #202a33; box-shadow: 0 22px 48px rgba(14, 55, 94, .16); transform: translateY(-7px); }
.jiyun-service-refresh__image { position: relative; display: block; aspect-ratio: 16 / 8.8; overflow: hidden; background: linear-gradient(145deg, #f8fbfd, #e7edf2); }
.jiyun-service-refresh__image:after { position: absolute; right: 0; bottom: 0; width: 84px; height: 3px; background: var(--refresh-orange); content: ''; }
.jiyun-service-refresh__image img { display: block; width: 100%; height: 100%; box-sizing: border-box; padding: 18px 28px; object-fit: contain; mix-blend-mode: multiply; transition: transform .38s ease; }
.jiyun-service-refresh:hover .jiyun-service-refresh__image img { transform: scale(1.025); }
.jiyun-service-refresh__image b { position: absolute; z-index: 2; top: 20px; left: 22px; color: rgba(13, 103, 197, .2); font-family: Arial, sans-serif; font-size: 34px; font-weight: 800; line-height: 1; }
.jiyun-service-refresh__body { display: flex; min-height: 254px; flex: 1; flex-direction: column; align-items: center; box-sizing: border-box; padding: 37px 42px 34px; text-align: center; transition: background .28s ease, color .28s ease; }
.jiyun-service-refresh__body strong { color: #27313a; font-size: clamp(21px, 1.65vw, 29px); font-weight: 800; line-height: 1.4; }
.jiyun-service-refresh__body > i { display: block; width: 54px; height: 3px; margin: 17px 0 16px; background: #174f9f; }
.jiyun-service-refresh__body em { display: -webkit-box; overflow: hidden; color: #65717b; font-size: 15px; font-style: normal; font-weight: 500; line-height: 1.9; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.jiyun-service-refresh__body small { display: flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 21px; color: #174f9f; font-size: 13px; font-weight: 800; letter-spacing: .4px; }
.jiyun-service-refresh__body small span { font-size: 19px; line-height: 1; transition: transform .2s ease; }
.jiyun-service-refresh:hover .jiyun-service-refresh__body small span { transform: translateX(4px); }
.jiyun-service-refresh:nth-child(2) .jiyun-service-refresh__body { color: #fff; background: linear-gradient(145deg, #175fbc, #104894); }
.jiyun-service-refresh:nth-child(2) .jiyun-service-refresh__body strong,
.jiyun-service-refresh:nth-child(2) .jiyun-service-refresh__body em,
.jiyun-service-refresh:nth-child(2) .jiyun-service-refresh__body small { color: #fff; }
.jiyun-service-refresh:nth-child(2) .jiyun-service-refresh__body > i { background: var(--refresh-orange); }

.product-categories-refresh { padding-top: 76px; }
.product-category-refresh { border-radius: 6px; }
.featured-products-refresh { background: #f3f6f9; }
.featured-product-refresh { border-color: #dfe7ed; border-radius: 6px; }
.featured-product-refresh__image { background: linear-gradient(145deg, #fff 15%, #f7fafc 100%); }
.featured-product-refresh__meta { border-top: 1px solid #e7edf2; background: #fff; }
.featured-product-refresh__meta span { color: #74818c; }

#nbanner {
  height: 420px;
  overflow: hidden;
  isolation: isolate;
  background-color: #071522;
  background-image: none;
  background-position: center center;
  background-size: cover;
}
#nbanner:before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 13, 23, .95) 0%, rgba(3, 15, 26, .78) 38%, rgba(4, 18, 31, .18) 72%, rgba(4, 18, 31, .08) 100%);
  content: '';
}
#nbanner:after {
  z-index: 0;
  background: linear-gradient(0deg, rgba(1, 9, 17, .4), transparent 50%);
}
#nbanner .nrc {
  z-index: 1;
  top: 0;
  bottom: auto;
  display: flex;
  height: 100%;
  align-items: center;
}
#nbanner .nrc > #body { width: 86%; }
#nbanner .lmmc { margin-bottom: 10px; }
#nbanner .lmmc dd {
  position: relative;
  padding: 0 0 16px;
  border-radius: 0;
  color: #fff;
  background: transparent;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1.2;
}
#nbanner .lmmc dd:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 3px;
  background: var(--refresh-orange);
  content: '';
}
#nbanner .lmmc dd:hover { color: #fff; background: transparent; }
#nbanner .lmmc dd:hover i { margin-left: 12px; }
#nbanner .nrc h4 {
  max-width: 620px;
  color: rgba(235, 244, 252, .78);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .hero-refresh__content { padding-right: 36%; }
  .jiyun-services-refresh { padding: 68px 0 74px; }
  .jiyun-services-refresh__inner { width: 92%; }
  .jiyun-services-refresh__grid { gap: 18px; }
  .jiyun-service-refresh__body { min-height: 238px; padding: 30px 24px 28px; }
  .jiyun-service-refresh__body em { font-size: 14px; }
  #nbanner { height: 340px; background-position: 58% center; }
  #nbanner .nrc { top: 0; bottom: auto; }
}

@media (max-width: 640px) {
  .hero-refresh__slide { background-position: 67% center; }
  .hero-refresh__shade { display: none; }
  .hero-refresh__content { padding-right: 11%; }
  .hero-refresh__content h1 { font-size: 34px; line-height: 1.16; }
  .hero-refresh__content .hero-refresh__title--cn,
  .hero-refresh__content .hero-refresh__title--en {
    max-width: 92%;
    margin-bottom: 13px;
    font-size: 31px;
    line-height: 1.18;
    white-space: normal;
  }
  .jiyun-services-refresh { padding: 50px 0 56px; }
  .jiyun-services-refresh__inner { width: 90%; }
  .jiyun-services-refresh__heading { margin-bottom: 34px; }
  .jiyun-services-refresh__heading p { font-size: 11px; letter-spacing: 1.8px; }
  .jiyun-services-refresh__heading h2 { font-size: 31px; letter-spacing: -.3px; }
  .jiyun-services-refresh__heading > span { margin-top: 9px; font-size: 14px; line-height: 1.7; }
  .jiyun-services-refresh__heading > i { width: 94px; height: 3px; margin-top: 18px; }
  .jiyun-services-refresh__grid { grid-template-columns: 1fr; gap: 18px; }
  .jiyun-service-refresh__image { aspect-ratio: 16 / 9; }
  .jiyun-service-refresh__image img { padding: 15px 22px; }
  .jiyun-service-refresh__body { min-height: 215px; padding: 28px 25px 25px; }
  .jiyun-service-refresh__body strong { font-size: 22px; }
  .jiyun-service-refresh__body em { font-size: 13px; line-height: 1.8; }
  #nbanner { height: 260px; background-position: 64% center; }
  #nbanner:before { background: linear-gradient(90deg, rgba(3, 13, 23, .93), rgba(3, 15, 26, .48)); }
  #nbanner .nrc { top: 0; bottom: auto; }
  #nbanner .lmmc { margin-bottom: 7px; }
  #nbanner .lmmc dd { padding-bottom: 11px; font-size: 25px; }
  #nbanner .lmmc dd:after { width: 42px; height: 2px; }
  #nbanner .nrc h4 { max-width: 78%; font-size: 13px; line-height: 1.55; }
}

/* Product images stay still on hover. */
#qtlist ul li:hover img,
#qtlist ul li a:hover img {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}
#qtlist ul li dd > span { display: none !important; }
.featured-product-refresh:hover .featured-product-refresh__image img {
  transform: scale(.9);
}
