:root {
  --icman-primary: #277e97;
  --icman-primary-dark: #2d6577;
  --icman-accent: #6bb8cb;
  --icman-ink: #10182d;
  --icman-text: #4e5969;
  --icman-muted: #7d8797;
  --icman-line: #dce5ef;
  --icman-soft: #f5f7f8;
  --icman-soft-blue: #edf7f9;
  --icman-white: #fff;
  --icman-glass-surface: rgba(255, 255, 255, .68);
  --icman-glass-tint: rgba(228, 243, 247, .64);
  --icman-glass-border: rgba(120, 177, 194, .42);
  --icman-action-text: #376d7d;
  --icman-action-hover: rgba(216, 238, 244, .84);
  --icman-shadow: 0 18px 50px rgba(30, 55, 92, .08);
  --icman-card-shadow: 0 12px 36px rgba(24, 48, 83, .07);
  --icman-radius: 18px;
  --icman-radius-sm: 12px;
  --icman-width: 1200px;
  --icman-transition: .28s cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1180px;
  margin: 0;
  overflow-x: hidden;
  background: #f8f8ff;
  color: var(--icman-text);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body,
body a,
body button,
body input,
body select,
body textarea {
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

body img {
  max-width: 100%;
}

.clear {
  clear: both;
}

.stitch-container {
  width: var(--icman-width);
  margin: 0 auto;
}

.stitch-page {
  min-height: 650px;
  padding: 44px 0 90px;
  background:
    radial-gradient(circle at 88% 4%, rgba(195, 229, 255, .34), transparent 24%),
    linear-gradient(180deg, #f8f8ff 0%, #fbfbff 100%);
}

.stitch-breadcrumb,
.blk.plc {
  width: var(--icman-width) !important;
  height: auto !important;
  margin: 0 auto 34px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #687487;
  font-size: 14px;
  line-height: 24px;
}

.p12-curmbs-1 {
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #687487 !important;
}

.p12-curmbs-1 b {
  color: var(--icman-primary);
  font-weight: 600;
}

.stitch-page-heading {
  margin: 0 0 34px;
}

.stitch-page-heading .eyebrow,
.home-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--icman-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stitch-page-heading .eyebrow::before,
.home-section-eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--icman-accent);
  content: "";
}

.stitch-page-heading h1,
.stitch-page-heading h2 {
  margin: 11px 0 8px;
  color: var(--icman-ink);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.stitch-page-heading p {
  max-width: 700px;
  margin: 0;
  color: #667085;
  font-size: 17px;
}

.stitch-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.stitch-main-card {
  border: 1px solid rgba(205, 218, 232, .8);
  border-radius: var(--icman-radius);
  background: var(--icman-white);
  box-shadow: var(--icman-card-shadow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  min-height: 106px;
  border-bottom: 1px solid #e7ebf2;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 4px 20px rgba(29, 49, 79, .04);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-topbar {
  height: 28px;
  border: 0;
  background: #f1f3ff;
  color: #657083;
  font-size: 12px;
  transition: background 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(210, 226, 237, .74);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 10px 28px rgba(29, 66, 94, .09);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
}

.site-header.is-scrolled .site-topbar {
  background: rgba(241, 243, 255, .68);
}

.site-topbar-inner {
  display: flex;
  width: var(--icman-width);
  height: 28px;
  margin: 0 auto;
  align-items: center;
  justify-content: flex-end;
}

.site-topbar-inner > span {
  display: none;
}

.topRight {
  float: none !important;
  color: #657083 !important;
}

.site-header-inner {
  display: flex !important;
  width: var(--icman-width) !important;
  height: 78px !important;
  margin: 0 auto !important;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.site-logo img {
  width: auto !important;
  max-width: 98px;
  height: 48px !important;
  object-fit: contain;
}

.site-brand-name {
  color: var(--icman-primary-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .06em;
  white-space: nowrap;
}

.site-nav {
  float: none !important;
  height: 78px !important;
}

.site-nav-list {
  display: flex !important;
  height: 78px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: stretch;
  gap: 4px;
}

.site-nav-list > li {
  float: none !important;
  display: flex;
  width: auto !important;
  height: 78px !important;
  align-items: stretch;
}

.site-nav-list > li > a {
  position: relative;
  display: flex !important;
  min-width: 74px;
  height: 78px !important;
  padding: 0 13px !important;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #2d3748 !important;
  font-size: 15px !important;
  font-weight: 500;
  line-height: 1.35 !important;
  text-align: center;
  transition: color var(--icman-transition);
}

/* Keep navigation feedback intentional instead of showing the browser's blue focus box. */
.site-header a:focus,
.site-header a:active,
.site-footer a:focus,
.site-footer a:active,
.toolbar dd:focus,
.toolbar dd:active,
.toolbar dd > a:focus,
.toolbar dd > a:active,
.toolbar dd > span:focus,
.toolbar dd > span:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.site-nav-list > li > a::after {
  position: absolute;
  right: 16px;
  bottom: 13px;
  left: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--icman-primary);
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity var(--icman-transition), transform var(--icman-transition);
}

.site-nav-list > li > a:hover,
.site-nav-list > li.current > a,
.site-nav-list > li.active > a {
  color: var(--icman-primary) !important;
}

.site-nav-list > li > a:hover::after,
.site-nav-list > li.current > a::after,
.site-nav-list > li.active > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav-list > li.nav-download {
  margin-left: 8px;
}

.site-nav-list > li.nav-download > a {
  min-width: 92px;
  height: 58px !important;
  margin: 10px 0;
  border: 1px solid var(--icman-glass-border) !important;
  border-radius: 9px !important;
  background: linear-gradient(135deg, var(--icman-glass-surface), var(--icman-glass-tint)) !important;
  color: var(--icman-action-text) !important;
  box-shadow: 0 8px 18px rgba(52, 111, 128, .08);
}

.site-nav-list > li.nav-download > a::after {
  display: none;
}

.site-nav-list > li.nav-download > a:hover {
  background: var(--icman-action-hover) !important;
  transform: translateY(-1px);
}

/* Shared left navigation */
.blk-xs {
  float: none !important;
  width: 280px !important;
  margin: 0 !important;
}

.p14-left-nav-1 {
  width: 100% !important;
  margin: 0 0 24px !important;
  padding: 10px !important;
  border: 1px solid rgba(207, 225, 237, .92) !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(239, 248, 255, .62)) !important;
  box-shadow: 0 14px 34px rgba(31, 77, 108, .08), inset 0 1px 0 rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
}

.p14-left-nav-1-tit {
  width: 100% !important;
  height: auto !important;
  margin: 0 0 7px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.p14-left-nav-1-tit h3 {
  display: flex !important;
  min-height: 64px !important;
  margin: 0 !important;
  padding: 16px 19px !important;
  align-items: center;
  border: 1px solid rgba(150, 209, 230, .48);
  border-radius: 14px;
  background: rgba(226, 245, 252, .58) !important;
  color: var(--icman-primary-dark) !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.p14-left-nav-1-tit h3::before {
  width: 7px;
  height: 7px;
  margin-right: 10px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--icman-accent);
  box-shadow: 0 0 0 5px rgba(35, 185, 225, .1);
  content: "";
}

.p14-left-nav-1-nav {
  display: grid;
  padding: 0 !important;
  gap: 3px;
}

.p14-left-nav-1-nav-one {
  position: relative;
  float: none !important;
  width: 100% !important;
  min-height: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid transparent !important;
  border-radius: 12px !important;
  background: transparent !important;
  transition:
    transform var(--icman-transition),
    background var(--icman-transition),
    border-color var(--icman-transition),
    box-shadow var(--icman-transition),
    color var(--icman-transition);
}

.p14-left-nav-1-nav-one:last-child {
  margin-bottom: 0 !important;
}

.p14-left-nav-1-nav-one::after {
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--icman-accent);
  content: "›";
  font-size: 27px;
  line-height: 1;
  transform: translateY(-54%);
  transition: transform var(--icman-transition);
  pointer-events: none;
  z-index: 2;
}

.p14-left-nav-1-nav-one h3,
.p14-left-nav-1-nav-one h3:hover,
.p14-left-nav-1-nav-one h3.sidenavcur {
  display: block !important;
  position: static !important;
  width: 100% !important;
  min-height: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.p14-left-nav-1-nav-one h3 a,
.p14-left-nav-1-nav-one h3 a:hover,
.p14-left-nav-1-nav-one h3 a:focus,
.p14-left-nav-1-nav-one h3 a:active {
  display: flex !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto !important;
  box-sizing: border-box;
  padding: 14px 45px 14px 18px !important;
  align-items: center;
  background: transparent !important;
  color: #44556a !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  cursor: pointer;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.p14-left-nav-1-nav-one:hover {
  border-color: rgba(126, 205, 233, .68) !important;
  background: rgba(255, 255, 255, .72) !important;
  box-shadow: 0 7px 16px rgba(31, 120, 164, .08);
  transform: translateX(3px);
}

.p14-left-nav-1-nav-one:hover::after {
  transform: translate(5px, -54%);
}

.p14-left-nav-1-nav-one:hover h3 a {
  color: var(--icman-primary) !important;
}

.p14-left-nav-1-nav-one.active,
.p14-left-nav-1-nav-one.current,
.p14-left-nav-1-nav-one.on {
  border-color: rgba(116, 204, 235, .72) !important;
  background: rgba(224, 246, 253, .78) !important;
  box-shadow: inset 3px 0 0 var(--icman-primary);
}

.p14-left-nav-1-nav-one.active h3 a,
.p14-left-nav-1-nav-one.current h3 a,
.p14-left-nav-1-nav-one.on h3 a {
  color: var(--icman-primary-dark) !important;
  font-weight: 700 !important;
}

.cbgg-01 {
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid #d6e3ef !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: var(--icman-card-shadow);
}

.cbgg-01 .tit {
  height: auto !important;
  padding: 23px 25px !important;
  border: 1px solid var(--icman-glass-border) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .7), rgba(224, 240, 244, .62)) !important;
  color: var(--icman-action-text) !important;
  font-size: 21px !important;
  font-weight: 700;
  line-height: 1.3 !important;
}

.cbgg-01 .tit i {
  display: block;
  margin-top: 5px;
  color: #72a8b7;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.leftlx {
  padding: 24px !important;
}

.leftlx,
.leftlx * {
  background: transparent !important;
  color: #667085 !important;
  font-size: 14px !important;
  line-height: 2 !important;
}

/* Buttons and pagination */
.modern-button,
.stitch-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: transform var(--icman-transition), box-shadow var(--icman-transition), background var(--icman-transition);
}

.modern-button-primary,
.stitch-button-primary {
  border-color: var(--icman-glass-border);
  background: linear-gradient(135deg, var(--icman-glass-surface), var(--icman-glass-tint));
  color: var(--icman-action-text) !important;
  box-shadow: 0 10px 24px rgba(52, 111, 128, .08);
}

.modern-button-outline,
.stitch-button-outline {
  border-color: #b6cede;
  background: #fff;
  color: var(--icman-primary) !important;
}

.modern-button:hover,
.stitch-button:hover {
  box-shadow: 0 13px 28px rgba(52, 111, 128, .11);
  transform: translateY(-2px);
}

.modern-button-primary:hover,
.stitch-button-primary:hover {
  background: var(--icman-action-hover);
}

.pagebar {
  width: 100%;
  margin: 50px 0 0 !important;
}

.pagination,
.download-pages,
.download-pages .page {
  display: flex !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination a,
.pagination span,
.download-pages a,
.download-pages span,
.download-pages strong {
  display: inline-flex !important;
  min-width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6e0eb !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #536173 !important;
  font-size: 14px;
  line-height: 1 !important;
}

.pagination a:hover,
.pagination .active,
.pagination .current,
.pagination .page-num-current,
.download-pages a:hover,
.download-pages .active,
.download-pages .current,
.download-pages .page-num-current,
.download-pages strong {
  border-color: var(--icman-glass-border) !important;
  background: var(--icman-glass-tint) !important;
  color: var(--icman-action-text) !important;
}

.stitch-empty,
.tac.text-secondary,
.download-empty {
  width: 100%;
  padding: 70px 24px !important;
  border: 1px dashed #cbd8e5;
  border-radius: var(--icman-radius);
  background: rgba(255, 255, 255, .65);
  color: #7b8797 !important;
  text-align: center;
}

/* Home */
.home-page {
  background: #fff;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: 680px;
  overflow: hidden;
  align-items: center;
  background:
    radial-gradient(circle at 78% 30%, rgba(95, 196, 239, .15), transparent 22%),
    radial-gradient(circle at 25% 5%, rgba(106, 99, 235, .09), transparent 24%),
    linear-gradient(145deg, #fff 0%, #f7f7ff 44%, #f0f7ff 100%);
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(35, 185, 225, .13);
  border-radius: 50%;
  content: "";
}

.home-hero::before {
  top: -250px;
  right: -120px;
}

.home-hero::after {
  bottom: -330px;
  left: -180px;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: 820px;
  margin: 0 auto;
  text-align: center;
}

.home-hero-badge {
  display: inline-flex;
  padding: 8px 18px;
  align-items: center;
  gap: 10px;
  border: 1px solid #b8dff0;
  border-radius: 30px;
  background: #dff2ff;
  color: var(--icman-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.home-hero-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--icman-primary);
  content: "";
}

.home-hero h1 {
  margin: 25px 0 15px;
  color: var(--icman-ink);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.12;
}

.home-hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--icman-primary);
  font-size: 47px;
}

.home-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #667085;
  font-size: 18px;
  line-height: 1.75;
}

.home-hero-actions {
  display: flex;
  margin-top: 36px;
  justify-content: center;
  gap: 16px;
}

.home-section {
  width: 100% !important;
  margin: 0 !important;
  padding: 95px 0 !important;
  background: #fff !important;
}

.home-about {
  display: grid !important;
  width: var(--icman-width) !important;
  margin: 0 auto !important;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.home-about-content {
  float: none !important;
  width: auto !important;
  padding: 0 !important;
}

.home-about-media {
  position: relative;
  float: none !important;
  width: auto !important;
  height: 440px;
  padding: 14px;
  overflow: visible;
  border: 1px solid #dce7f1;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--icman-shadow);
}

.home-about-media::before {
  position: absolute;
  top: -18px;
  right: 26px;
  z-index: -1;
  width: 82%;
  height: 90%;
  border: 1px solid #8eddf2;
  border-radius: 20px;
  content: "";
}

.home-about-media img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 13px;
  object-fit: cover;
}

.home-section-heading {
  margin: 0 0 26px !important;
}

.home-section-heading h2 {
  margin: 10px 0 0 !important;
  color: var(--icman-ink) !important;
  font-size: 43px !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
}

.home-about-copy {
  max-height: none;
  overflow: visible;
  color: #5f6c7c;
  font-size: 16px;
  line-height: 2;
}

.home-about-copy * {
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.home-section-actions {
  margin-top: 30px;
}

.home-news-section {
  background: #fbfbff !important;
}

.home-news-inner {
  width: var(--icman-width);
  margin: 0 auto;
}

.home-news-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.modern-text-link {
  color: var(--icman-primary) !important;
  font-size: 14px;
  font-weight: 600;
}

.home-news-grid {
  display: grid;
  margin-top: 38px;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home-news-card,
.news-card,
.solution-card,
.product-card,
.download-card {
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: var(--icman-radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(30, 52, 83, .045);
  transition:
    transform var(--icman-transition),
    border-color var(--icman-transition),
    box-shadow var(--icman-transition);
}

.home-news-card:hover,
.news-card:hover,
.solution-card:hover,
.product-card:hover,
.download-card:hover {
  border-color: #69cce8;
  box-shadow: 0 18px 42px rgba(19, 150, 194, .14);
  transform: translateY(-7px) scale(1.012);
}

.home-news-image,
.news-card-image,
.solution-card-image,
.product-card-image {
  display: block;
  height: 210px;
  overflow: hidden;
  background: #eef2f8;
}

.home-news-image img,
.news-card-image img,
.solution-card-image img,
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.home-news-card:hover img,
.news-card:hover img,
.solution-card:hover img,
.product-card:hover img {
  transform: scale(1.055);
}

.home-news-body {
  padding: 26px;
}

.home-news-body time,
.news-card time {
  color: #798697;
  font-size: 12px;
  letter-spacing: .05em;
}

.home-news-body h3 {
  min-height: 60px;
  margin: 12px 0 11px;
  color: var(--icman-ink);
  font-size: 20px;
  line-height: 1.5;
}

.home-news-body p {
  height: 56px;
  margin: 0;
  overflow: hidden;
  color: #6f7a89;
  font-size: 14px;
  line-height: 2;
}

.home-news-more {
  display: inline-flex;
  margin-top: 23px;
  color: var(--icman-primary) !important;
  font-size: 14px;
  font-weight: 600;
}

.home-partners-section {
  position: relative;
  overflow: hidden;
}

.home-partners-heading {
  width: var(--icman-width);
  margin: 0 auto 42px !important;
  text-align: center;
}

.home-partners-heading p {
  margin: 12px 0 0;
  color: #6d7887;
}

.partner-marquee {
  width: 100%;
  margin: 14px 0;
  overflow: hidden;
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 18px;
}

.partner-logo-group {
  display: flex;
  gap: 18px;
}

.partner-logo {
  position: relative;
  display: block;
  width: 200px;
  height: 123px;
  overflow: hidden;
  /* Logo 图本身已有留白；此处不再额外套一层卡片，避免“框中框”。 */
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.partner-logo::before {
  position: absolute;
  inset: 0;
  background-image: var(--partner-sprite);
  background-position: var(--logo-x) var(--logo-y);
  background-repeat: no-repeat;
  background-size: 500% 600%;
  content: "";
  image-rendering: auto;
}

.partner-logo:hover {
  transform: translateY(-4px) scale(1.025);
  filter: saturate(1.05);
}

.partner-track-left {
  animation: partner-left 42s linear infinite;
}

.partner-track-right {
  animation: partner-right 42s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.home-partners-action {
  margin-top: 38px;
  text-align: center;
}

@keyframes partner-left {
  to { transform: translateX(calc(-50% - 9px)); }
}

@keyframes partner-right {
  from { transform: translateX(calc(-50% - 9px)); }
  to { transform: translateX(0); }
}

/* Listing pages */
.listing-hero {
  padding: 10px 0 38px;
}

.listing-hero .stitch-page-heading {
  margin: 0;
}

.listing-eyebrow-solution {
  display: none;
}

.section-24 .listing-eyebrow-news {
  display: none;
}

.section-24 .listing-eyebrow-solution {
  display: inline-block;
}

.news-category-tabs {
  display: none;
}

.news-center-description {
  display: none;
}

.section-46 .listing-description {
  display: none;
}

.section-46 .news-center-description {
  display: block;
}

.section-46 .news-category-tabs {
  display: flex;
  margin: 0 0 46px;
  padding-bottom: 24px;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border-bottom: 1px solid #dfe5ee;
}

.section-46 .news-category-tabs a {
  display: inline-flex;
  min-height: 44px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccd8e4;
  border-radius: 999px;
  background: #fff;
  color: #536174;
  font-size: 13px;
  transition:
    color var(--icman-transition),
    border-color var(--icman-transition),
    background var(--icman-transition),
    transform var(--icman-transition);
}

.section-46 .news-category-tabs a:first-child,
.section-46 .news-category-tabs a:hover {
  border-color: var(--icman-primary);
  background: var(--icman-primary);
  color: #fff;
  transform: translateY(-2px);
}

.section-46 .stitch-layout {
  display: block;
}

.section-46 .stitch-sidebar {
  display: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.section-46 .news-grid {
  grid-template-rows: repeat(2, 248px);
  grid-auto-rows: 430px;
}

.section-46 .news-card {
  position: relative;
}

.section-46 .news-card:first-child {
  min-height: 524px;
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: #0c1d2f;
}

.section-46 .news-card:first-child .news-card-image {
  position: absolute;
  inset: 0;
  height: 100%;
}

.section-46 .news-card:first-child .news-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 524px;
  padding: 48px;
  justify-content: flex-end;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(4, 16, 29, .02) 15%, rgba(4, 16, 29, .88) 100%);
}

.section-46 .news-card:first-child time,
.section-46 .news-card:first-child h2,
.section-46 .news-card:first-child h2 a,
.section-46 .news-card:first-child p,
.section-46 .news-card:first-child .card-link {
  color: #fff !important;
}

.section-46 .news-card:first-child h2 {
  max-width: 720px;
  margin: 14px 0;
  font-size: 32px;
  line-height: 1.35;
}

.section-46 .news-card:first-child p {
  max-width: 720px;
  height: auto;
  max-height: 62px;
  color: rgba(255, 255, 255, .78) !important;
}

.section-46 .news-card:first-child .card-link {
  width: 130px;
}

.section-46 .news-card:nth-child(2),
.section-46 .news-card:nth-child(3) {
  min-height: 248px;
}

.section-46 .news-card:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.section-46 .news-card:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

.section-46 .news-card:nth-child(2) .news-card-image,
.section-46 .news-card:nth-child(3) .news-card-image {
  display: none;
}

.section-46 .news-card:nth-child(2) .news-card-body,
.section-46 .news-card:nth-child(3) .news-card-body {
  display: flex;
  height: 100%;
  padding: 25px 28px;
  flex-direction: column;
}

.section-46 .news-card:nth-child(2) h2,
.section-46 .news-card:nth-child(3) h2 {
  font-size: 21px;
}

.section-46 .news-card:nth-child(2) p,
.section-46 .news-card:nth-child(3) p {
  height: 54px;
}

.section-46 .news-card:nth-child(2) .card-link,
.section-46 .news-card:nth-child(3) .card-link {
  margin-top: auto;
}

.section-46 .news-card:nth-child(n + 4) .news-card-image {
  height: 190px;
}

.section-46 .news-card:nth-child(n + 4) .news-card-body {
  display: flex;
  min-height: 238px;
  flex-direction: column;
}

.section-46 .news-card:nth-child(n + 4) .card-link {
  margin-top: auto;
}

.news-card-body,
.solution-card-body,
.product-card-body {
  padding: 25px 25px 27px;
}

.news-card h2,
.solution-card h2,
.product-card h2 {
  margin: 9px 0 10px;
  color: var(--icman-ink);
  font-size: 20px;
  line-height: 1.45;
}

.news-card p,
.solution-card p,
.product-card p {
  height: 58px;
  margin: 0;
  overflow: hidden;
  color: #6c7787;
  font-size: 14px;
  line-height: 2;
}

.card-link {
  display: flex;
  margin-top: 23px;
  align-items: center;
  justify-content: space-between;
  color: var(--icman-primary) !important;
  font-size: 14px;
  font-weight: 600;
}

.card-link span {
  font-size: 22px;
  transition: transform var(--icman-transition);
}

.news-card:hover .card-link span,
.solution-card:hover .card-link span,
.product-card:hover .card-link span {
  transform: translateX(5px);
}

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

.solution-card-image {
  height: 260px;
}

.section-24 .news-card-image {
  height: 240px;
}

.section-24 .news-card-body time {
  display: inline-flex;
  width: auto;
  min-height: 26px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  background: #e7f7fc;
  color: #1189b7;
  font-size: 0;
  font-weight: 700;
  letter-spacing: .06em;
}

.section-24 .news-card-body time::after {
  content: "APPLICATION";
  font-size: 11px;
}

/* Product list */
.product-list-header {
  display: flex;
  margin-bottom: 34px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #d8e1eb;
  padding-bottom: 25px;
}

.product-list-header .stitch-page-heading {
  margin: 0;
}

.product-sort {
  min-width: 180px;
  height: 48px;
  padding: 0 15px;
  border: 1px solid #ccd8e4;
  border-radius: 9px;
  background: #fff;
  color: #4d5969;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  min-height: 455px;
}

.product-card-image {
  height: 235px;
}

.product-card-body {
  display: flex;
  min-height: 220px;
  flex-direction: column;
}

.product-card-body h2 {
  font-size: 22px;
}

.product-card-body p {
  height: 58px;
}

.product-card .card-link {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e1e7ee;
}

/* Article/detail */
.article-card {
  padding: 48px 55px;
}

.article-title {
  margin: 0;
  color: var(--icman-ink);
  font-size: 38px;
  line-height: 1.25;
  text-align: center;
}

.article-meta {
  margin: 15px 0 36px;
  padding-bottom: 23px;
  border-bottom: 1px solid #e1e7ef;
  color: #8a93a1;
  font-size: 13px;
  text-align: center;
}

.article-content,
.about-content,
.product-richtext {
  color: #465469;
  font-size: 16px;
  line-height: 2;
}

.article-content img,
.about-content img,
.product-richtext img {
  height: auto !important;
  margin: 16px auto;
  border-radius: 12px;
}

.article-content table,
.about-content table,
.product-richtext table {
  max-width: 100% !important;
}

.article-navigation,
.product-navigation {
  display: grid;
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid #e0e7ef;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: #59677a;
  font-size: 14px;
}

.article-navigation > :last-child,
.product-navigation > :last-child {
  text-align: right;
}

/* Product detail */
.product-detail-hero {
  display: grid;
  padding: 38px;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
}

.product-gallery {
  min-width: 0;
}

.product-main-image {
  height: 430px;
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: 16px;
  background: #f4f6fa;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumbnails {
  display: grid;
  margin-top: 13px;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.product-thumbnail {
  height: 72px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid #dbe4ed;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-summary {
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  justify-content: center;
}

.product-summary .eyebrow {
  color: var(--icman-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.product-summary h1 {
  margin: 13px 0 16px;
  color: var(--icman-ink);
  font-size: 42px;
  line-height: 1.2;
}

.product-summary p {
  margin: 0;
  color: #647184;
  font-size: 17px;
  line-height: 1.9;
}

.product-summary-actions {
  display: flex;
  margin-top: 30px;
  gap: 12px;
}

.product-download-button[hidden] {
  display: none !important;
}

.product-content-card {
  margin-top: 28px;
  padding: 50px 55px;
}

.product-section-title {
  margin: 0 0 26px;
  color: var(--icman-ink);
  font-size: 28px;
}

.product-section-title span {
  display: block;
  margin-top: 5px;
  color: var(--icman-primary);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* About / partner / contact */
.about-card {
  padding: 46px 52px;
}

.about-card .about-content {
  min-height: 380px;
}

.partner-variant,
.contact-variant {
  display: none;
}

.sort-39 .default-variant,
.sort-19 .default-variant {
  display: none;
}

.sort-39 .partner-variant,
.sort-19 .contact-variant {
  display: block;
}

.about-contact-card {
  padding: 27px;
}

.partner-page-heading,
.download-page-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.partner-content-card {
  padding: 42px;
}

.partner-content-card img {
  display: block;
  width: 100%;
  height: auto !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 40px;
}

.contact-panel {
  padding: 38px;
}

.contact-panel h2 {
  margin: 0 0 28px;
  color: var(--icman-ink);
  font-size: 26px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid #e4eaf1;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--icman-soft-blue);
  color: var(--icman-primary);
}

.contact-list strong {
  display: block;
  margin-bottom: 3px;
  color: #7d8795;
  font-size: 12px;
}

.contact-list span,
.contact-list a {
  color: #344054;
  line-height: 1.7;
}

.contact-map {
  min-height: 560px;
  padding: 20px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100% !important;
  height: 520px !important;
  border: 0 !important;
  border-radius: 13px;
}

.contact-map .about-content img {
  display: block;
  width: 240px !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 24px auto !important;
  border: 0 !important;
  border-radius: 10px;
  object-fit: contain;
}

.contact-location-card {
  min-width: 0;
  overflow: hidden;
}

.contact-location-visual {
  padding: 18px 18px 0;
  background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
}

.contact-location-visual img {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
  border-radius: 14px;
  background: #eef8ff;
  object-fit: cover;
}

.contact-location-body {
  padding: 28px 32px 32px;
}

.contact-location-label {
  color: var(--icman-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.contact-location-body h2 {
  margin: 6px 0 8px;
  color: var(--icman-ink);
  font-size: 27px;
}

.contact-location-body > p {
  margin: 0;
  color: #344054;
  line-height: 1.8;
}

.contact-location-body .contact-location-note {
  margin-top: 6px;
  color: #7d8795;
  font-size: 13px;
}

.contact-location-actions {
  display: flex;
  margin-top: 23px;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-copy-button {
  border: 1px solid #cbd9e6;
  background: #fff;
  color: var(--icman-primary-dark);
  cursor: pointer;
}

.contact-copy-button:hover,
.contact-copy-button:focus-visible {
  border-color: var(--icman-accent);
  color: var(--icman-primary);
  transform: translateY(-2px);
}

.contact-copy-button.is-success {
  border-color: #79cba7;
  background: #effbf5;
  color: #18734c;
}

.contact-original-content {
  margin-top: 36px;
  padding: 34px 38px;
}

.contact-original-heading {
  display: flex;
  margin-bottom: 18px;
  padding-bottom: 14px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4eaf1;
}

.contact-original-heading span {
  color: var(--icman-ink);
  font-size: 20px;
  font-weight: 700;
}

.contact-original-heading small {
  color: #8a94a3;
}

.contact-original-content .about-content {
  color: #4e5969;
}

.contact-original-content .about-content img {
  display: block;
  width: 180px !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 18px auto !important;
  border: 0 !important;
  object-fit: contain;
}

/* Message */
.message-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: stretch;
}

.message-intro {
  display: flex;
  padding: 20px 0;
  flex-direction: column;
}

.message-intro h1 {
  margin: 18px 0 20px;
  color: var(--icman-ink);
  font-size: 54px;
  line-height: 1.18;
}

.message-intro > p {
  max-width: 470px;
  margin: 0;
  color: #5f6c7e;
  font-size: 17px;
  line-height: 2;
}

.message-contact-mini {
  display: grid;
  margin-top: auto;
  gap: 14px;
}

.message-contact-item {
  padding: 22px 24px;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #fff;
}

.message-contact-item strong {
  display: block;
  color: #6d7888;
  font-size: 13px;
}

.message-contact-item span {
  display: block;
  margin-top: 4px;
  color: var(--icman-primary);
  font-size: 21px;
  font-weight: 700;
}

.message-form-card {
  padding: 45px 48px;
}

.stitch-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid #d8e0eb;
  border-radius: 10px;
  outline: 0;
  background: #f6f7ff;
  color: #344054;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field input,
.form-field select {
  height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 190px;
  padding: 15px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #64c7e5;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(35, 185, 225, .1);
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  margin-top: 4px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-consent {
  color: #7b8492;
  font-size: 12px;
  line-height: 1.6;
}

.form-submit {
  min-width: 145px;
  height: 50px;
  border: 1px solid var(--icman-glass-border);
  border-radius: 9px;
  background: linear-gradient(135deg, var(--icman-glass-surface), var(--icman-glass-tint));
  color: var(--icman-action-text);
  box-shadow: 0 8px 18px rgba(52, 111, 128, .07);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Download center */
.download-center {
  width: var(--icman-width) !important;
  margin: 0 auto !important;
  padding: 65px 0 95px !important;
  color: var(--icman-text) !important;
}

.download-page-heading h1 {
  margin: 0;
  color: var(--icman-ink);
  font-size: 48px;
  line-height: 1.2;
}

.download-page-heading p {
  margin: 15px auto 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.8;
}

.download-filter {
  display: grid !important;
  margin: 0 0 42px !important;
  padding: 20px !important;
  border: 1px solid #dbe5ef;
  border-radius: 16px;
  background: #fff !important;
  box-shadow: var(--icman-card-shadow);
  grid-template-columns: 250px minmax(0, 1fr) auto auto;
  gap: 12px !important;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.download-filter:focus-within {
  border-color: rgba(113, 200, 229, .86);
  background: rgba(255, 255, 255, .72) !important;
  box-shadow: 0 16px 36px rgba(26, 111, 155, .1), inset 0 1px 0 rgba(255, 255, 255, .76);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
}

.download-filter select,
.download-filter input {
  width: 100% !important;
  height: 50px !important;
  padding: 0 15px !important;
  border: 1px solid #d5dfe9 !important;
  border-radius: 9px;
  outline: 0;
  background: #f8f9ff !important;
  color: #4e5969;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.download-filter select:focus,
.download-filter input:focus {
  border-color: #51badc !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 0 0 4px rgba(35, 185, 225, .12);
}

.download-filter button,
.download-filter a {
  display: inline-flex;
  min-width: 104px !important;
  height: 50px !important;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  line-height: 1 !important;
}

.download-filter button {
  border: 1px solid var(--icman-glass-border);
  background: linear-gradient(135deg, var(--icman-glass-surface), var(--icman-glass-tint)) !important;
  color: var(--icman-action-text) !important;
  box-shadow: 0 8px 18px rgba(52, 111, 128, .07);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.download-filter button:hover,
.download-filter button:focus-visible {
  background: var(--icman-action-hover) !important;
  box-shadow: 0 11px 22px rgba(52, 111, 128, .11);
  transform: translateY(-1px);
}

.download-filter button:active {
  transform: translateY(0) scale(.985);
}

.download-filter a {
  border: 1px solid #d5dfe9 !important;
  background: #fff !important;
  color: #556274 !important;
}

.download-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

.download-card {
  position: relative;
  display: block;
  min-height: 350px;
  height: 350px !important;
  padding: 0;
  overflow: hidden !important;
  background: #e8edf3;
}

.download-card-cover {
  position: absolute !important;
  inset: 0;
  z-index: 1;
  display: block !important;
  width: auto;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #e8edf3 !important;
}

.download-card-cover img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .42s ease;
}

.download-card:hover .download-card-cover img {
  transform: scale(1.05);
}

.download-card-overlay {
  position: absolute !important;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 185px;
  padding: 74px 24px 22px !important;
  flex-direction: column;
  color: #fff !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(8, 19, 35, 0) 0%, rgba(8, 19, 35, .32) 28%, rgba(8, 19, 35, .9) 100%) !important;
}

.download-card-meta {
  display: flex !important;
  margin-bottom: 7px;
  align-items: center;
  justify-content: space-between !important;
  gap: 8px !important;
  color: rgba(255, 255, 255, .92) !important;
  font-size: 12px !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .45) !important;
}

.download-card-category,
.download-card-type {
  display: inline-flex;
  min-width: 44px !important;
  padding: 3px 8px !important;
  border: 1px solid rgba(255, 255, 255, .48) !important;
  border-radius: 12px !important;
  background: rgba(5, 18, 34, .18) !important;
  color: #fff !important;
  font-size: 11px !important;
  line-height: 1.4;
}

.download-card-title {
  margin: 0 0 14px !important;
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .64) !important;
}

.download-card-bottom {
  display: flex !important;
  margin-top: auto;
  padding-top: 13px !important;
  align-items: center;
  gap: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, .25) !important;
  backdrop-filter: blur(4px) !important;
}

.download-card-file {
  flex: 1;
  overflow: hidden;
  color: rgba(255, 255, 255, .86) !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .45) !important;
}

.download-card-action {
  display: inline-flex;
  width: auto;
  height: auto;
  padding: 8px 13px !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .64) !important;
  border-radius: 7px !important;
  background: rgba(255, 255, 255, .13) !important;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 20px;
  pointer-events: auto;
  transition: background .2s ease, border-color .2s ease;
}

.download-card-action:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, .27) !important;
}

.download-card-action i {
  margin-right: 5px !important;
  font-size: 14px;
}

/* Footer and toolbar */
.site-footer {
  border-top: 1px solid #e1e7f0;
  background: #f1f3ff;
  color: #566276;
}

.site-footer-main {
  display: grid;
  width: var(--icman-width);
  margin: 0 auto;
  padding: 68px 0 58px;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 72px;
}

.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-footer-brand strong {
  color: var(--icman-primary-dark);
  font-size: 21px;
}

.site-footer-intro {
  margin: 18px 0 0;
  color: #657184;
  font-size: 14px;
  line-height: 1.9;
}

.site-footer-phone {
  display: block;
  margin-top: 20px;
  color: var(--icman-primary);
  font-size: 31px;
  letter-spacing: .02em;
}

.site-footer-consult {
  display: inline-flex;
  min-width: 170px;
  min-height: 43px;
  margin-top: 16px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #b9dce9;
  border-radius: 999px;
  background: #fff;
  color: var(--icman-primary) !important;
  font-size: 14px;
  font-weight: 700;
}

.site-footer-company-meta {
  margin-top: 24px;
}

.site-footer-company-meta p {
  margin: 7px 0;
  color: #687487;
  font-size: 12px;
  line-height: 1.65;
}

.site-footer-navigation {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.site-footer-column h3 a {
  color: var(--icman-ink);
}

.site-footer h3 {
  margin: 0 0 20px;
  color: var(--icman-ink);
  font-size: 15px;
}

.site-footer-links {
  display: grid;
  gap: 12px;
}

.site-footer-links a {
  color: #647084;
  font-size: 14px;
}

.site-footer-links a:hover {
  color: var(--icman-primary);
}

.site-footer-contact p {
  margin: 0 0 12px;
  color: #647084;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer-qr {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5dfeb;
  border-radius: 10px;
  background: #fff;
  color: var(--icman-primary);
  font-size: 24px;
}

.site-footer-bottom {
  display: flex;
  width: var(--icman-width);
  min-height: 68px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dfe5ee;
  color: #778294;
  font-size: 12px;
}

.site-footer-bottom a {
  color: #778294;
}

.toolbar {
  position: fixed !important;
  top: auto !important;
  right: 22px !important;
  bottom: 28px !important;
  z-index: 90 !important;
  display: grid !important;
  width: 50px !important;
  margin: 0 !important;
  gap: 10px;
}

.toolbar dd {
  position: relative !important;
  float: none !important;
  width: 50px !important;
  height: 50px !important;
  margin: 0 !important;
  overflow: visible !important;
  border: 1px solid #d9e4ee !important;
  border-radius: 11px !important;
  background: #fff !important;
  box-shadow: 0 8px 22px rgba(30, 52, 84, .1);
  cursor: pointer;
  transition: transform var(--icman-transition), border-color var(--icman-transition);
}

.toolbar dd:hover {
  border-color: #65c8e5 !important;
  transform: translateY(-3px);
}

.toolbar dd i {
  display: none !important;
}

.toolbar dd > span,
.toolbar dd > a {
  display: flex !important;
  width: 50px !important;
  height: 50px !important;
  padding: 0 !important;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: var(--icman-primary) !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.toolbar dd > a:focus-visible {
  outline: none !important;
}

.toolbar .qq > span::before,
.toolbar .qq > a::before {
  content: "✉";
  font-size: 20px;
}

.toolbar .tel > span::before {
  content: "☎";
  font-size: 20px;
}

.toolbar .top > span::before {
  content: "↑";
  font-size: 23px;
}

.toolbar .box {
  position: absolute;
  top: 0;
  right: 60px;
  display: none;
  width: 210px;
  padding: 14px 18px;
  border: 1px solid #d9e4ee;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--icman-shadow);
  color: #5f6b7c;
}

.toolbar .tel:hover .box {
  display: block;
}

.toolbar .box p {
  margin: 0;
  color: #7b8795;
  font-size: 12px;
}

.toolbar .box h3 {
  margin: 4px 0 0;
  color: var(--icman-primary);
  font-size: 18px;
}

#LR_User_Icon1 {
  display: none !important;
}

@media (max-width: 1280px) {
  :root {
    --icman-width: 1080px;
  }

  body {
    min-width: 1100px;
  }

  .site-logo {
    width: auto !important;
  }

  .site-nav-list > li > a {
    min-width: 66px;
    padding: 0 9px !important;
    font-size: 14px !important;
  }
}

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