:root {
  --blue: #002f9f;
  --light-blue: #0094ff;
  --text: #333;
  --muted: #777;
  --line: #d9d9d9;
  --news-image-ratio: 856 / 514;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: #fff;
}

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

@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroPulse {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes arrowFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(45deg); opacity: .72; }
  50% { transform: translateX(-50%) translateY(12px) rotate(45deg); opacity: 1; }
}

@keyframes menuCardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes navLineFlow {
  from { background-position: 100% 50%; }
  to { background-position: 0 50%; }
}

@keyframes partnerLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.motion-fade,
.reveal-up,
.reveal-card {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}

.motion-fade.in-view,
.reveal-up.in-view,
.reveal-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up .action-section-title p,
.reveal-up .action-section-title h2,
.reveal-up .action-section-title span,
.reveal-up .action-company-kicker,
.reveal-up .action-company-copy h2,
.reveal-up .action-company-lead {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-up.in-view .action-section-title p,
.reveal-up.in-view .action-company-kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .08s;
}

.reveal-up.in-view .action-section-title h2,
.reveal-up.in-view .action-company-copy h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .18s;
}

.reveal-up.in-view .action-section-title span,
.reveal-up.in-view .action-company-lead {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .28s;
}

.reveal-card:nth-child(2) { transition-delay: .1s; }
.reveal-card:nth-child(3) { transition-delay: .18s; }
.reveal-card:nth-child(4) { transition-delay: .26s; }

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

  .motion-fade,
  .reveal-up,
  .reveal-card,
  .reveal-up .action-section-title p,
  .reveal-up .action-section-title h2,
  .reveal-up .action-section-title span,
  .reveal-up .action-company-kicker,
  .reveal-up .action-company-copy h2,
  .reveal-up .action-company-lead {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #c9c9c9;
  animation: headerDrop .55s ease both;
}

.header-inner {
  width: min(100%, 1640px);
  height: 95px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 0 20px;
}

.brand {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 300px;
  height: auto;
  display: block;
}

.main-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 2.1vw, 48px);
}

.nav-link {
  position: relative;
  border: 0;
  background: transparent;
  padding: 34px 0 31px;
  color: #6b6b6b;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active,
.nav-item.open .nav-link { color: var(--blue); }

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #29d8ff 18%, var(--blue) 50%, #29d8ff 82%, transparent);
  background-size: 220% 100%;
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: opacity .22s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after,
.nav-item.open .nav-link::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
  animation: navLineFlow 1.6s linear infinite;
}

.header-tools {
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}

.search-box {
  display: flex;
  width: 220px;
  height: 36px;
  border: 1px solid #777;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 10px;
  font-size: 16px;
}

.search-box button {
  width: 48px;
  border: 0;
  background: var(--blue);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.search-box svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
}

.tool-link {
  color: #121a36;
  font-size: 18px;
  white-space: nowrap;
}

.tool-divider {
  width: 1px;
  height: 20px;
  background: #121a36;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--blue);
}

.mobile-search-layer {
  display: none;
}

.mega-layer {
  position: absolute;
  left: 0;
  top: 95px;
  width: 100%;
  background: #fff;
  border-top: 1px solid #c9c9c9;
  box-shadow: 0 10px 22px rgb(0 0 0 / 4%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events: none;
}

.mega-layer.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-layer.show .mega-card,
.mega-layer.show .mega-solutions > a,
.mega-layer.show .mega-standards > section {
  animation: menuCardIn .42s ease both;
}

.mega-layer.show .mega-card:nth-child(2),
.mega-layer.show .mega-solutions > a:nth-child(2),
.mega-layer.show .mega-standards > section:nth-child(2) { animation-delay: .04s; }

.mega-layer.show .mega-card:nth-child(3),
.mega-layer.show .mega-solutions > a:nth-child(3),
.mega-layer.show .mega-standards > section:nth-child(3) { animation-delay: .08s; }

.mega-layer.show .mega-card:nth-child(4),
.mega-layer.show .mega-solutions > a:nth-child(4) { animation-delay: .12s; }

.mega-layer.show .mega-card:nth-child(5),
.mega-layer.show .mega-solutions > a:nth-child(5) { animation-delay: .16s; }

.mega-wrap {
  width: min(100%, 1630px);
  margin: 0 auto;
  padding: 45px 20px 58px;
}

.mega-products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 78px;
}

.mega-card img {
  width: 100%;
  height: 143px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}

.mega-card a:hover img,
.mega-solutions a:hover .solution-img {
  transform: translateY(-4px);
  filter: saturate(1.12) contrast(1.04);
}

.mega-card h3,
.mega-solutions h3,
.mega-standards h3 {
  margin: 26px 0 26px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: #2f2f2f;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.mega-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-card li {
  position: relative;
  padding: 8px 18px 8px 4px;
  color: #777;
  font-size: 16px;
  line-height: 1.45;
}

.mega-card li a {
  display: block;
}

.mega-card li::after {
  content: "›";
  position: absolute;
  right: 0;
  color: #d3d3d3;
}

.mega-card li.selected,
.mega-card li:hover { color: var(--blue); }

.mega-solutions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 80px;
  padding-top: 48px;
  padding-bottom: 110px;
}

.solution-img {
  height: 142px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .35s ease, filter .35s ease;
}

.solution-img.s1 { background-image: url("./assets/solution-1.jpg"); }
.solution-img.s2 { background-image: url("./assets/solution-2.jpg"); }
.solution-img.s3 { background-image: url("./assets/solution-3.jpg"); }
.solution-img.s4 { background-image: url("./assets/solution-4.jpg"); }
.solution-img.s5 { background-image: url("./assets/solution-5.jpg"); }

.mega-standards {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 100px;
  max-width: 1060px;
  padding-top: 28px;
  padding-bottom: 70px;
}

.mega-standards h3 {
  margin-top: 0;
  font-size: 22px;
}

.mega-standards p {
  margin: 0 0 16px;
  color: #7b7b7b;
  font-size: 18px;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 3800 / 1885;
  min-height: 520px;
  max-height: calc(100vh - 95px);
  margin: 0 auto;
  overflow: hidden;
  background: #00368f;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transform: scale(1);
  transition: opacity .6s ease;
}

.hero-slide.active {
  opacity: 1;
  animation: heroPulse 6s ease-in-out alternate infinite;
}

.slider-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.slider-dots button {
  width: 42px;
  height: 3px;
  border: 0;
  background: rgb(255 255 255 / 45%);
}

.slider-dots .on { background: #fff; }

.about-hero {
  position: relative;
  max-width: 1920px;
  aspect-ratio: 3801 / 1265;
  min-height: 350px;
  margin: 0 auto;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: url("./assets/about-banner.jpg") center top / cover no-repeat;
}

.down-mark {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: translateX(-50%) rotate(45deg);
  animation: arrowFloat 1.8s ease-in-out infinite;
}

.intro-section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 72px 24px 82px;
  background: #f5f5f5;
  text-align: center;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 52px;
  color: #777;
  font-size: 30px;
  line-height: 1;
}

.section-title strong {
  font-weight: 400;
}

.intro-section p {
  max-width: 980px;
  margin: 0 auto 12px;
  color: #8a8a8a;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.business-section {
  max-width: 1420px;
  margin: 0 auto;
  padding: 90px 24px 95px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.business-grid article {
  min-height: 260px;
  padding: 8px 50px 0;
  text-align: center;
  border-left: 1px solid #ddd;
  transition: transform .28s ease, background-color .28s ease, box-shadow .28s ease;
}

.business-grid article:first-child { border-left: 0; }

.business-grid article:hover {
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgb(0 80 180 / 5%), transparent 68%);
  box-shadow: 0 18px 34px rgb(0 42 120 / 8%);
}

.biz-icon {
  height: 92px;
  color: #002875;
  font-size: 58px;
  line-height: 92px;
  transition: transform .28s ease, color .28s ease;
}

.business-grid article:hover .biz-icon {
  color: var(--blue);
  transform: translateY(-4px) scale(1.06);
}

.business-grid h3 {
  margin: 10px 0 20px;
  color: #777;
  font-size: 17px;
  font-weight: 400;
}

.business-grid p {
  margin: 0;
  color: #8a8a8a;
  font-size: 14px;
  line-height: 2;
}

.mission-section {
  max-width: 1370px;
  margin: 0 auto;
  padding: 42px 24px 130px;
}

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

.mission-panel {
  position: relative;
  min-height: 385px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: transform .45s ease, box-shadow .45s ease;
}

.mission-panel::before,
.mission-panel::after {
  content: "";
  position: absolute;
  inset: 0;
}

.mission-panel::before {
  background: rgb(0 31 92 / 70%);
}

.mission-panel::after {
  background: radial-gradient(circle at 50% 44%, rgb(0 128 255 / 28%), transparent 34%);
  mix-blend-mode: screen;
}

.mission-panel-left {
  background-image: url("./assets/mission-bg.png");
}

.mission-panel-right {
  background-image: url("./assets/value-bg.png");
}

.mission-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgb(0 36 110 / 18%);
}

.mission-content {
  position: relative;
  z-index: 1;
  width: min(72%, 430px);
  color: #fff;
  text-align: center;
}

.mission-content h2 {
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.15;
}

.mission-content h3 {
  margin: 4px 0 48px;
  font-size: clamp(22px, 1.9vw, 31px);
  font-weight: 400;
  line-height: 1.15;
}

.mission-content p {
  margin: 0 0 10px;
  color: rgb(255 255 255 / 86%);
  font-size: 15px;
  line-height: 1.45;
}

.float-contact {
  position: fixed;
  right: 24px;
  top: 62%;
  z-index: 40;
  width: 66px;
  transform: translateY(-50%);
}

.float-contact a {
  display: grid;
  place-items: center;
  height: 66px;
  margin-bottom: 2px;
  background: var(--light-blue);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.site-footer {
  background: #041f55;
  color: #fff;
}

.product-page {
  background: #f4f4f4;
}

.partners-page {
  background: #e5e5e5;
}

.join-page {
  background: #fff;
}

.contact-page {
  background: #fff;
}

.new-home-page {
  background: #06142c;
}

.action-home-page {
  background: #fff;
}

.action-hero {
  position: relative;
  min-height: 620px;
  height: clamp(620px, calc(100vh - 95px), 920px);
  max-height: 920px;
  overflow: hidden;
  color: #fff;
  background: #06142c;
}

.action-hero-track,
.action-hero-slide,
.action-hero-slide picture {
  position: absolute;
  inset: 0;
}

.action-hero-slide {
  display: block;
  opacity: 0;
  transform: scale(1);
  transition: opacity .75s ease;
  pointer-events: none;
}

.action-hero-slide.active {
  opacity: 1;
  animation: heroPulse 7s ease-in-out alternate infinite;
  pointer-events: auto;
}

.action-hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.action-section-title p {
  margin: 0 0 18px;
  color: #29d8ff;
  font-size: 14px;
  font-weight: 700;
}

.action-product-main a,
.action-news-feature a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  min-width: 150px;
  height: 50px;
  padding: 0 24px;
  color: #fff;
  background: var(--blue);
  font-size: 16px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.action-product-main a:hover,
.action-news-feature a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgb(0 148 255 / 22%);
  background: #0040c9;
}

.action-hero-cta {
  position: absolute;
  left: 50%;
  bottom: 50px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 50px;
  padding: 0 28px;
  color: #fff;
  background: var(--blue);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 16px 32px rgb(0 47 159 / 28%);
  transform: translateX(-50%);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.action-hero-cta:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 20px 38px rgb(0 148 255 / 28%);
  background: #0040c9;
}

.action-partners {
  position: relative;
  min-height: 156px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #e4e9f1;
}

.action-partners::before,
.action-partners::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 150px;
  pointer-events: none;
}

.action-partners::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgb(255 255 255 / 0%));
}

.action-partners::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgb(255 255 255 / 0%));
}

.action-logo-track {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: max-content;
  animation: partnerLogoScroll 34s linear infinite;
}

.action-partners:hover .action-logo-track {
  animation-play-state: paused;
}

.action-logo-track a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 90px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 20px rgb(0 42 120 / 5%);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.action-logo-track img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.action-logo-track a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgb(0 47 159 / 12%);
  filter: saturate(1.08);
}

.action-company {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: stretch;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 90px 28px 78px;
  overflow: hidden;
}

.action-company::before {
  content: "";
  position: absolute;
  right: -140px;
  top: 84px;
  width: 360px;
  height: 360px;
  border: 1px solid rgb(0 148 255 / 16%);
  border-radius: 50%;
  pointer-events: none;
}

.action-company-media {
  position: relative;
  height: auto;
  min-height: 600px;
  overflow: hidden;
  background: #071d4a;
  box-shadow: 0 28px 70px rgb(0 42 120 / 14%);
  isolation: isolate;
}

.action-company-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 20 60 / 12%), rgb(0 20 60 / 66%)),
    linear-gradient(90deg, rgb(0 47 159 / 32%), transparent 58%);
  z-index: 1;
}

.action-company-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .7s ease;
}

.action-company:hover .action-company-media img {
  transform: scale(1.07);
}

.action-company-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 22px 26px;
  color: #fff;
  background: rgb(0 47 159 / 78%);
  border: 1px solid rgb(255 255 255 / 24%);
  backdrop-filter: blur(8px);
}

.action-company-badge strong {
  font-size: 56px;
  line-height: 1;
}

.action-company-badge span {
  font-size: 15px;
}

.action-company-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.action-company-kicker {
  margin: 0 0 12px;
  color: #29d8ff;
  font-size: 14px;
  font-weight: 700;
}

.action-company-copy h2 {
  margin: 0;
  color: #101828;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.16;
  white-space: nowrap;
}

.action-company-lead {
  margin: 18px 0 0;
  color: #5f6c7b;
  font-size: 18px;
  line-height: 1.65;
}

.action-company-points {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.action-company-points article {
  position: relative;
  padding: 20px 24px 20px 84px;
  border: 1px solid #e6ebf2;
  background: linear-gradient(90deg, #fff, #f7fbff);
  box-shadow: 0 12px 28px rgb(0 42 120 / 5%);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.action-company-points article:hover {
  transform: translateX(8px);
  border-color: rgb(0 47 159 / 28%);
  box-shadow: 0 18px 38px rgb(0 47 159 / 10%);
}

.action-company-points span {
  position: absolute;
  left: 24px;
  top: 22px;
  color: rgb(0 47 159 / 20%);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.action-company-points h3 {
  margin: 0 0 6px;
  color: #111;
  font-size: 21px;
  font-weight: 600;
}

.action-company-points p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.55;
}

.action-products,
.action-news {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 110px 28px;
}

.action-section-title {
  margin-bottom: 58px;
  text-align: center;
}

.action-section-title h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 600;
  line-height: 1.15;
}

.action-section-title.light h2 {
  color: #fff;
}

.action-product-list {
  display: grid;
  gap: 18px;
}

.action-product-list article {
  min-height: 260px;
  display: grid;
  grid-template-columns: 260px 1fr 360px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e6ebf2;
  box-shadow: 0 14px 34px rgb(0 42 120 / 6%);
  transition: transform .3s ease, box-shadow .3s ease;
}

.action-product-list article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgb(0 47 159 / 12%);
}

.action-product-visual {
  display: grid;
  place-items: center;
  padding: 26px;
  background: #f6f9fd;
}

.action-product-visual img {
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.action-product-main {
  padding: 34px 38px;
}

.action-product-main span {
  display: block;
  color: rgb(0 47 159 / 18%);
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.action-product-main h3 {
  margin: 18px 0 20px;
  color: #111;
  font-size: 28px;
  font-weight: 600;
}

.action-product-main ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  color: #667085;
  font-size: 16px;
  line-height: 1.6;
  list-style: none;
}

.action-product-main a {
  margin-top: 28px;
  min-width: 126px;
  height: 42px;
  font-size: 14px;
}

.action-product-apps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid #e6ebf2;
}

.action-product-apps a {
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #475467;
  font-size: 15px;
  border-right: 1px solid #e6ebf2;
  border-bottom: 1px solid #e6ebf2;
  transition: color .2s ease, background .2s ease;
}

.action-product-apps a:nth-child(2n) {
  border-right: 0;
}

.action-product-apps a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.action-product-apps a:hover {
  color: var(--blue);
  background: #f7fbff;
}

.action-solutions {
  width: min(100%, 1500px);
  margin: 0 auto;
  background: #fff;
  padding: 76px 28px 98px;
}

.action-solution-inner {
  width: 100%;
  margin: 0 auto;
}

.action-solution-inner .action-section-title {
  margin-bottom: 42px;
  text-align: center;
}

.action-solution-inner .action-section-title p {
  display: block;
  min-height: 0;
  margin: 0 0 14px;
  padding: 0;
  color: #29d8ff;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.action-solution-inner .action-section-title h2 {
  display: block;
  margin: 0;
  color: #20252b;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.12;
}

.action-solution-grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  min-height: 640px;
}

.action-solution-grid a {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 24px 60px rgb(0 0 0 / 18%);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.action-solution-grid a:first-child {
  grid-row: 1 / span 2;
  padding: 44px;
}

.action-solution-grid img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.64);
  transition: transform .45s ease;
}

.action-solution-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(0 47 159 / 0%), rgb(0 20 60 / 82%)),
    linear-gradient(90deg, rgb(0 47 159 / 26%), transparent 58%);
}

.action-solution-grid span {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.action-solution-grid a:first-child span {
  max-width: 520px;
  font-size: 34px;
  line-height: 1.15;
}

.action-solution-grid em {
  margin-top: 18px;
  color: #29d8ff;
  font-size: 14px;
  font-style: normal;
  opacity: .82;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.action-solution-grid a:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 76px rgb(0 0 0 / 26%);
  filter: saturate(1.12);
}

.action-solution-grid a:hover img {
  transform: scale(1.08);
}

.action-solution-grid a:hover em {
  opacity: 1;
  transform: translateY(0);
}

.action-news-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
}

.action-news-feature {
  padding: 48px;
  border-top: 4px solid var(--blue);
  background: #f6f9fd;
}

.action-news-feature span,
.action-news-list time {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}

.action-news-feature h3 {
  margin: 30px 0 20px;
  color: #111;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
}

.action-news-feature p {
  margin: 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.8;
}

.action-news-list a {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #e7ebf2;
  color: #344054;
  font-size: 18px;
  line-height: 1.65;
  transition: color .2s ease, transform .2s ease;
}

.action-news-list a:hover {
  color: var(--blue);
  transform: translateX(6px);
}

.action-cta {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  color: #fff;
  background: #031129;
}

.action-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(2 12 34 / 94%), rgb(0 47 159 / 70%), rgb(2 12 34 / 72%)),
    url("./assets/hero-blue.jpg") center / cover no-repeat;
  transform: scale(1.03);
  animation: heroPulse 9s ease-in-out infinite alternate;
}

.action-cta-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1500px);
  min-height: inherit;
  margin: 0 auto;
  padding: 72px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 72px;
  align-items: center;
}

.action-cta-copy p {
  margin: 0 0 16px;
  color: #29d8ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.action-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.24;
}

.action-cta-copy span {
  display: block;
  max-width: 680px;
  margin-top: 22px;
  color: rgb(255 255 255 / 78%);
  font-size: 18px;
  line-height: 1.75;
}

.action-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.action-cta-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 46px;
  padding: 0 22px;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 42%);
  font-size: 15px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.action-cta-links a:first-child {
  background: var(--blue);
  border-color: var(--blue);
}

.action-cta-links a:hover {
  transform: translateY(-3px);
  background: rgb(255 255 255 / 12%);
  border-color: rgb(255 255 255 / 70%);
}

.action-cta-links a:first-child:hover {
  background: #0040c9;
  border-color: #0040c9;
}

.action-cta-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 8%);
  backdrop-filter: blur(8px);
}

.action-cta-stats article {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.action-cta-stats article:last-child {
  border-right: 0;
}

.action-cta-stats strong {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.action-cta-stats span {
  margin-top: 14px;
  color: rgb(255 255 255 / 74%);
  font-size: 14px;
  line-height: 1.5;
}

.home-fullpage {
  background: #fff;
}

.home-screen {
  position: relative;
  min-height: calc(100vh - 95px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-screen-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 92px 28px;
}

.home-hero-screen {
  color: #fff;
  background: #06142c;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(2 12 34 / 90%), rgb(2 18 48 / 58), rgb(2 12 34 / 20)),
    url("./assets/hero-blue.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.home-hero-content {
  max-width: 1500px;
}

.home-kicker,
.home-section-head span {
  margin: 0 0 18px;
  color: #33d7ff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero-content h1 {
  margin: 0;
  max-width: 850px;
  color: #fff;
  font-size: clamp(46px, 5vw, 86px);
  font-weight: 700;
  line-height: 1.08;
}

.home-lead {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: 21px;
  line-height: 1.75;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 46px;
}

.home-primary,
.home-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 52px;
  padding: 0 24px;
  font-size: 16px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.home-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgb(0 126 255 / 20%);
}

.home-secondary {
  border: 1px solid rgb(255 255 255 / 48%);
  color: #fff;
}

.home-primary:hover,
.home-secondary:hover {
  transform: translateY(-3px);
}

.home-section-head {
  margin-bottom: 54px;
  text-align: center;
}

.home-section-head.align-left {
  text-align: left;
}

.home-section-head h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 600;
  line-height: 1.15;
}

.home-feature-grid,
.home-product-grid,
.home-case-grid {
  display: grid;
  gap: 28px;
}

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

.home-feature-grid article {
  min-height: 390px;
  padding: 44px 38px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid #e4ebf5;
  box-shadow: 0 12px 30px rgb(0 42 120 / 6%);
  transition: transform .3s ease, box-shadow .3s ease;
}

.home-feature-grid article:hover,
.home-product-grid article:hover,
.home-case-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgb(0 47 159 / 12%);
}

.home-feature-grid span {
  color: rgb(0 47 159 / 18%);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.home-feature-grid h3 {
  margin: 42px 0 18px;
  color: #111;
  font-size: 28px;
  font-weight: 600;
}

.home-feature-grid p,
.home-about-layout p,
.home-contact-layout p {
  color: #667085;
  font-size: 17px;
  line-height: 1.8;
}

.home-feature-grid a,
.home-product-grid a,
.home-case-grid a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.home-product-screen {
  background: #f4f7fb;
}

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

.home-product-grid article {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6ebf2;
  transition: transform .3s ease, box-shadow .3s ease;
}

.home-product-grid img {
  width: 100%;
  height: 255px;
  object-fit: contain;
  padding: 34px;
  background: #fff;
}

.home-product-grid div {
  padding: 0 34px 38px;
}

.home-product-grid strong {
  display: block;
  color: #111;
  font-size: 24px;
  line-height: 1.35;
}

.home-product-grid p,
.home-case-grid p {
  margin: 16px 0 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.75;
}

.home-case-screen {
  background: linear-gradient(135deg, #071d4a, #031129);
}

.home-case-screen .home-section-head h2 {
  color: #fff;
}

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

.home-case-grid article {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 320px;
  padding: 42px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 16%);
  transition: transform .3s ease, box-shadow .3s ease;
}

.home-case-grid img {
  width: 100%;
  background: #fff;
}

.home-case-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}

.home-case-grid p {
  color: rgb(255 255 255 / 72%);
}

.home-case-grid a {
  color: #44d7ff;
}

.home-about-layout,
.home-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.home-about-layout img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  box-shadow: 0 22px 46px rgb(0 42 120 / 13%);
}

.home-about-layout .home-primary {
  margin-top: 36px;
}

.home-contact-screen {
  background: #f5f8fc;
}

.home-contact-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  color: #101828;
  font-size: 20px;
  font-weight: 600;
}

.home-cta-form {
  padding: 42px;
  background: #fff;
  border-top: 3px solid var(--blue);
  box-shadow: 0 16px 40px rgb(0 42 120 / 10%);
}

.home-cta-form input,
.home-cta-form textarea {
  width: 100%;
  margin-bottom: 18px;
  border: 1px solid #d8dfeb;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 15px;
  outline: 0;
}

.home-cta-form input {
  height: 50px;
  padding: 0 16px;
}

.home-cta-form textarea {
  resize: vertical;
  padding: 14px 16px;
}

.home-cta-form button {
  width: 100%;
  height: 52px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.contact-map-section {
  position: relative;
  max-width: 1920px;
  min-height: 1160px;
  margin: 0 auto;
  overflow: hidden;
  background: url("./assets/contact-map.jpg") center top / cover no-repeat;
}

.contact-info-panel {
  position: absolute;
  top: 0;
  left: 10.7%;
  width: 600px;
  min-height: 100%;
  padding: 142px 86px 90px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(0 0 0 / 5%);
}

.contact-office {
  padding: 62px 0 54px;
  border-top: 1px solid #777;
  color: #111;
}

.contact-office:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-headquarters {
  padding-bottom: 76px;
}

.contact-office h2 {
  margin: 0 0 38px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-office h3 {
  margin: 18px 0 18px;
  color: #111;
  font-size: 24px;
  font-weight: 700;
}

.contact-office p {
  margin: 0 0 15px;
  color: #111;
  font-size: 20px;
  line-height: 1.45;
}

.pin {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  background: #f41d12;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: #fff;
  border-radius: 50%;
}

.message-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 90px 24px 120px;
}

.message-heading {
  margin-bottom: 38px;
  text-align: center;
}

.message-heading h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: 34px;
  font-weight: 500;
}

.message-heading p {
  margin: 0;
  color: #6d6d6d;
  font-size: 16px;
}

.message-form {
  padding: 48px;
  background: linear-gradient(180deg, #fff, #f7f9fd);
  border-top: 3px solid var(--blue);
  box-shadow: 0 10px 28px rgb(0 34 110 / 8%);
}

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

.message-form label {
  display: block;
}

.message-form span {
  display: block;
  margin-bottom: 10px;
  color: #222;
  font-size: 15px;
  font-weight: 600;
}

.message-form input,
.message-form textarea {
  width: 100%;
  border: 1px solid #d6dce8;
  outline: none;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.message-form input {
  height: 48px;
  padding: 0 16px;
}

.message-form textarea {
  resize: vertical;
  padding: 14px 16px;
}

.message-form input:focus,
.message-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(0 47 159 / 10%);
}

.message-textarea {
  margin-top: 28px;
}

.message-form button {
  min-width: 170px;
  height: 48px;
  margin-top: 32px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.message-form button:hover {
  transform: translateY(-2px);
  background: #0040bf;
  box-shadow: 0 10px 24px rgb(0 47 159 / 20%);
}

.join-hero {
  position: relative;
  max-width: 1920px;
  aspect-ratio: 3800 / 1545;
  min-height: 420px;
  margin: 0 auto;
  overflow: hidden;
  background: url("./assets/join-hero.jpg") center top / cover no-repeat;
}

.join-hero::after {
  display: none;
}

.join-hero-text {
  display: none;
}

.join-hero-text h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.join-hero-text span {
  display: block;
  width: 76px;
  height: 76px;
  margin: 72px 0 0 118px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  animation: joinArrowFloat 1.9s ease-in-out infinite;
}

@keyframes joinArrowFloat {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: .78; }
  50% { transform: translateY(14px) rotate(45deg); opacity: 1; }
}

.jobs-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 44px 24px 310px;
}

.jobs-table {
  border: 1px solid #e1e1e1;
  border-top: 3px solid var(--blue);
}

.jobs-head,
.job-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr .9fr 1fr;
  align-items: center;
  min-height: 136px;
  padding: 0 58px;
  column-gap: 28px;
}

.jobs-head {
  min-height: 130px;
  color: #202020;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
}

.job-row {
  width: 100%;
  border: 0;
  border-top: 1px solid #e0e0e0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  min-height: 138px;
  color: #111;
  font-size: 17px;
  font-weight: 600;
}

.job-row:hover {
  background: #f7f8fa;
}

.job-item.is-open .job-row {
  background: #f0f1f3;
}

.job-detail {
  display: none;
  padding: 52px 76px 92px;
  border-top: 1px solid #e0e0e0;
  color: #111;
}

.job-item.is-open .job-detail {
  display: block;
}

.job-detail h2 {
  margin: 0 0 42px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
}

.job-detail h3 {
  margin: 28px 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.job-detail p {
  margin: 0;
  max-width: 820px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.partners-main {
  max-width: 1340px;
  margin: 0 auto;
  padding: 92px 24px 210px;
}

.partner-group {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 76px;
  align-items: center;
  padding: 0 0 92px;
  margin: 0 0 92px;
  border-bottom: 1px solid #cfcfcf;
}

.partner-group:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.partner-type {
  display: flex;
  justify-content: center;
  padding-top: 0;
}

.partner-type img {
  width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 34px;
}

.partner-logos a {
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 8%);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.partner-logos a:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 8px rgb(0 0 0 / 8%);
  filter: saturate(1.08);
}

.partner-logos img {
  width: 100%;
  aspect-ratio: 690 / 282;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.category-hero {
  position: relative;
  max-width: 1920px;
  height: 548px;
  margin: 0 auto;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 25 78 / 32%), transparent 62%);
}

.category-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1500px);
  height: 100%;
  margin: 0 auto;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.category-eyebrow {
  width: fit-content;
  min-width: 265px;
  padding: 10px 24px;
  border: 1px solid rgb(255 255 255 / 88%);
  border-radius: 4px;
  color: rgb(255 255 255 / 94%);
  font-size: 28px;
  line-height: 1.15;
  text-align: center;
}

.category-hero h1 {
  margin: 32px 0 18px;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.category-hero ul {
  margin: 0;
  padding-left: 24px;
  color: rgb(255 255 255 / 72%);
  font-size: 23px;
  line-height: 1.75;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.category-main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 128px 28px 140px;
}

.category-title {
  margin: 0 0 34px;
  color: #252525;
  font-size: 26px;
  font-weight: 400;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 44px;
  margin-bottom: 90px;
  color: #575757;
  font-size: 15px;
}

.category-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #575757;
  transition: color .2s ease;
}

.category-tabs a:hover {
  color: var(--blue);
}

.category-tabs a.active {
  padding: 5px 16px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  color: var(--blue);
  font-weight: 700;
}

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

.product-card {
  position: relative;
  min-height: 470px;
  padding: 34px 48px 42px;
  background: #fff;
  box-shadow: 0 8px 26px rgb(0 0 0 / 4%);
  overflow: hidden;
  transition: transform .32s ease, box-shadow .32s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgb(0 46 130 / 12%);
}

.product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 16px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.product-card h2 {
  margin: 26px 0 0;
  color: #111;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
}

.product-card p {
  margin: 34px 0 0;
  max-width: 350px;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.9;
}

.product-card img {
  position: absolute;
  right: 44px;
  bottom: 108px;
  max-width: 44%;
  max-height: 250px;
  object-fit: contain;
  transition: transform .34s ease;
}

.product-card:hover img {
  transform: translateX(8px) scale(1.03);
}

.product-more {
  position: absolute;
  right: 48px;
  bottom: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #606060;
  font-size: 14px;
}

.product-more::before {
  content: "+";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid #777;
  border-radius: 50%;
  color: #555;
  font-size: 18px;
  line-height: 1;
}

.product-card.featured {
  grid-column: span 3;
}

.product-card.tall {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 944px;
}

.product-grid-auto .product-card.featured {
  grid-column: span 4;
}

.product-card.compact {
  grid-column: span 2;
}

.product-card.tall img {
  left: 50%;
  right: auto;
  bottom: 135px;
  max-width: 70%;
  max-height: 650px;
  transform: translateX(-50%);
}

.product-card.tall:hover img {
  transform: translateX(-50%) translateY(-8px) scale(1.02);
}

.product-card.compact img {
  left: 50%;
  right: auto;
  bottom: 120px;
  max-width: 72%;
  max-height: 205px;
  transform: translateX(-50%);
}

.product-card.compact:hover img {
  transform: translateX(-50%) translateY(-6px) scale(1.03);
}

.footer-inner {
  position: relative;
  max-width: 1540px;
  min-height: 330px;
  margin: 0 auto;
  padding: 72px 20px 45px;
}

.footer-logo {
  width: 250px;
  filter: brightness(0) invert(1);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgb(255 255 255 / 28%);
}

.footer-inner nav a {
  padding: 0 32px;
  border-left: 1px solid rgb(255 255 255 / 55%);
  color: rgb(255 255 255 / 88%);
  font-size: 14px;
}

.footer-inner nav a:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-copy {
  margin-top: 70px;
  color: rgb(255 255 255 / 85%);
  font-size: 13px;
}

.qr {
  position: absolute;
  right: 20px;
  top: 176px;
  width: 118px;
  height: 118px;
  padding: 0;
  background: #fff;
}

.qr img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1500px) {
  .header-inner {
    gap: 24px;
  }

  .brand {
    flex-basis: 280px;
  }

  .brand img {
    width: 270px;
  }

  .main-nav {
    gap: clamp(16px, 1.55vw, 28px);
  }

  .header-tools {
    flex-basis: 320px;
  }
}

@media (max-width: 1360px) {
  .header-inner { gap: 22px; height: 86px; }
  .brand { flex-basis: 250px; }
  .brand img { width: 240px; }
  .main-nav { gap: 20px; }
  .nav-link { font-size: 16px; padding: 34px 0 32px; }
  .header-tools { flex-basis: 290px; }
  .search-box { width: 178px; }
  .mega-layer { top: 86px; }
  .mega-products,
  .mega-solutions { gap: 34px; }
  .hero-slider { max-height: calc(100vh - 86px); }
  .home-screen { min-height: calc(100vh - 86px); }
  .action-hero {
    min-height: 560px;
    height: clamp(560px, calc(100vh - 86px), 820px);
    max-height: 820px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    height: 76px;
    justify-content: space-between;
    gap: 16px;
  }

  .brand {
    flex: 0 0 auto;
    order: 1;
  }

  .brand img { width: 210px; }

  .mobile-toggle {
    display: block;
    order: 3;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 12px 24px rgb(0 0 0 / 8%);
  }

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

  .site-header.search-open .mobile-search-layer {
    display: block;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 18px 28px;
    text-align: left;
  }

  .header-tools {
    order: 2;
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    min-width: 0;
  }

  .search-box {
    order: 1;
    width: 34px;
    height: 34px;
    border: 0;
  }

  .search-box input { display: none; }

  .search-box button {
    width: 34px;
    background: transparent;
  }

  .search-box svg {
    width: 25px;
    height: 25px;
    stroke: var(--blue);
  }

  .login-link { order: 2; }
  .lang-link { order: 3; }
  .tool-divider { display: none; }
  .tool-link { font-size: 16px; }

  .mobile-search-layer {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 16px 20px;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 12px 24px rgb(0 0 0 / 8%);
  }

  .mobile-search-form {
    display: flex;
    width: 100%;
    height: 42px;
    border: 1px solid #9a9a9a;
    background: #fff;
  }

  .mobile-search-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 14px;
    color: #333;
    font-size: 15px;
  }

  .mobile-search-form button {
    width: 52px;
    border: 0;
    background: var(--blue);
    display: grid;
    place-items: center;
  }

  .mobile-search-form svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
  }

  .mega-layer {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
  }

  .mega-layer.show { display: block; }

  .mega-products,
  .mega-solutions,
  .mega-standards {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 28px 24px 38px;
  }

  .hero-slider {
    min-height: 440px;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .hero-slide {
    background-size: cover;
  }

  .business-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .business-grid article:nth-child(3) { border-left: 0; }
  .mission-panel { min-height: 320px; }
  .mission-content { width: min(84%, 360px); }
  .mission-content h3 { margin-bottom: 30px; }
  .action-hero {
    min-height: calc(100vh - 76px);
    height: calc(100vh - 76px);
    max-height: none;
  }
  .action-partners {
    min-height: 138px;
  }
  .action-logo-track a {
    width: 190px;
    height: 78px;
  }
  .action-company {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 68px 24px 58px;
  }
  .action-company-media {
    height: 420px;
    min-height: 0;
  }
  .action-product-list article {
    grid-template-columns: 220px 1fr;
  }
  .action-product-apps {
    grid-column: 1 / -1;
    min-height: 92px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #e6ebf2;
    border-left: 0;
  }
  .action-product-apps a {
    border-bottom: 0;
  }
  .action-product-apps a:nth-child(2n) {
    border-right: 1px solid #e6ebf2;
  }
  .action-product-apps a:last-child {
    border-right: 0;
  }
  .action-solution-grid {
    min-height: 560px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .action-solution-grid a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }
  .action-news-layout {
    grid-template-columns: 1fr;
  }
  .action-cta-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 24px;
  }
  .action-cta-stats {
    max-width: 680px;
  }
  .home-screen { min-height: auto; }
  .home-screen-inner { padding: 76px 24px; }
  .home-feature-grid,
  .home-product-grid,
  .home-case-grid,
  .home-about-layout,
  .home-contact-layout { grid-template-columns: 1fr; }
  .home-feature-grid article { min-height: 270px; }
  .home-case-grid article { grid-template-columns: 170px 1fr; }
  .category-hero {
    height: 430px;
  }
  .join-hero {
    min-height: 360px;
  }
  .contact-map-section {
    min-height: 900px;
  }
  .contact-info-panel {
    left: 5%;
    width: 500px;
    padding: 90px 56px 70px;
  }
  .contact-office h2,
  .contact-office h3 {
    font-size: 22px;
  }
  .contact-office p {
    font-size: 17px;
  }
  .message-section {
    padding: 72px 24px 95px;
  }
  .message-form {
    padding: 36px;
  }
  .jobs-section {
    padding: 36px 24px 140px;
  }
  .jobs-head,
  .job-row {
    grid-template-columns: 1.8fr 1fr 1fr .7fr 1fr;
    min-height: 98px;
    padding: 0 26px;
    column-gap: 16px;
  }
  .job-detail {
    padding: 42px 42px 70px;
  }
  .partners-main {
    padding: 64px 24px 120px;
  }
  .partner-group {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 34px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .partner-type { padding-top: 0; }
  .partner-type img {
    width: 130px;
    height: auto;
  }
  .partner-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .category-hero-content {
    padding: 0 28px;
  }
  .category-main {
    padding: 78px 24px 90px;
  }
  .category-tabs {
    margin-bottom: 50px;
    gap: 16px 24px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-card,
  .product-card.featured,
  .product-card.tall,
  .product-card.compact {
    grid-column: auto;
    grid-row: auto;
    min-height: 520px;
  }
  .product-card img,
  .product-card.tall img,
  .product-card.compact img {
    left: 50%;
    right: auto;
    bottom: 104px;
    max-width: 72%;
    max-height: 250px;
    transform: translateX(-50%);
  }
  .product-card:hover img,
  .product-card.tall:hover img,
  .product-card.compact:hover img {
    transform: translateX(-50%) translateY(-6px) scale(1.03);
  }
  .float-contact { display: none; }
}

@media (max-width: 640px) {
  .header-inner {
    height: 64px;
    padding: 0 14px;
    gap: 8px;
  }

  .brand img { width: 170px; }
  .header-tools { gap: 9px; }
  .tool-link { font-size: 14px; }
  .search-box,
  .search-box button {
    width: 28px;
    height: 28px;
  }
  .search-box svg {
    width: 22px;
    height: 22px;
  }
  .mobile-toggle {
    width: 34px;
    height: 34px;
    padding: 6px;
  }
  .mobile-toggle span {
    margin: 5px 0;
  }
  .main-nav { top: 64px; }
  .mobile-search-layer {
    top: 64px;
    padding: 13px 14px;
  }
  .mobile-search-form {
    height: 40px;
  }
  .mega-products,
  .mega-solutions,
  .mega-standards { grid-template-columns: 1fr; }

  .mega-card img,
  .solution-img { height: 120px; }

  .action-hero {
    min-height: calc(100vh - 64px);
    height: calc(100vh - 64px);
  }
  .action-hero-cta {
    left: 50%;
    bottom: 50px;
    width: auto;
    transform: translateX(-50%);
  }
  .action-hero-cta:hover {
    transform: translateX(-50%) translateY(-3px);
  }
  .action-partners {
    min-height: 112px;
    gap: 16px;
  }
  .action-partners::before,
  .action-partners::after {
    width: 54px;
  }
  .action-logo-track {
    gap: 16px;
    animation-duration: 24s;
  }
  .action-logo-track a {
    width: 156px;
    height: 64px;
  }
  .action-company {
    padding: 48px 18px 42px;
    gap: 30px;
  }
  .action-company::before {
    display: none;
  }
  .action-company-media {
    height: 300px;
    min-height: 0;
  }
  .action-company-badge {
    left: 18px;
    bottom: 18px;
    padding: 16px 18px;
  }
  .action-company-badge strong {
    font-size: 40px;
  }
  .action-company-copy h2 {
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .action-company-lead {
    font-size: 15px;
    line-height: 1.75;
  }
  .action-company-points article {
    padding: 24px 22px;
  }
  .action-company-points span {
    position: static;
    display: block;
    margin-bottom: 14px;
    font-size: 30px;
  }
  .action-products,
  .action-news {
    padding: 64px 18px;
  }
  .action-solutions {
    padding: 46px 18px 64px;
  }
  .action-solution-inner .action-section-title {
    margin-bottom: 34px;
  }
  .action-solution-inner .action-section-title h2 {
    font-size: 24px;
  }
  .action-section-title {
    margin-bottom: 34px;
    text-align: left;
  }
  .action-section-title h2 {
    font-size: 34px;
  }
  .action-product-list article {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .action-product-visual {
    min-height: 210px;
  }
  .action-product-main {
    padding: 30px 24px;
  }
  .action-product-main span {
    font-size: 46px;
  }
  .action-product-main h3 {
    font-size: 24px;
  }
  .action-product-main ul,
  .action-product-apps,
  .action-news-list a {
    grid-template-columns: 1fr;
  }
  .action-product-apps {
    min-height: 0;
  }
  .action-product-apps a,
  .action-product-apps a:nth-child(2n) {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid #e6ebf2;
  }
  .action-product-apps a:last-child {
    border-bottom: 0;
  }
  .action-solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .action-solution-grid a,
  .action-solution-grid a:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
    padding: 26px 22px;
  }
  .action-solution-grid a:first-child span {
    font-size: 26px;
  }
  .action-news-feature {
    padding: 30px 24px;
  }
  .action-news-feature h3 {
    font-size: 24px;
  }
  .action-news-list a {
    gap: 8px;
    padding: 22px 0;
    font-size: 16px;
  }
  .action-cta {
    min-height: auto;
  }
  .action-cta-inner {
    padding: 52px 18px;
    gap: 34px;
  }
  .action-cta-copy h2 {
    font-size: 26px;
  }
  .action-cta-copy span {
    font-size: 15px;
  }
  .action-cta-links {
    display: grid;
  }
  .action-cta-links a {
    width: 100%;
  }
  .action-cta-stats {
    grid-template-columns: 1fr;
  }
  .action-cta-stats article {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
  }
  .action-cta-stats article:last-child {
    border-bottom: 0;
  }

  .hero-slider {
    min-height: 420px;
    aspect-ratio: auto;
  }

  .hero-slide {
    background-size: auto 100%;
    background-position: 44% top;
  }

  .about-hero {
    min-height: 260px;
    aspect-ratio: auto;
  }

  .about-bg {
    background-size: auto 100%;
    background-position: center top;
  }

  .home-screen-inner { padding: 58px 18px; }
  .home-hero-screen { min-height: 620px; }
  .home-hero-content h1 { font-size: 38px; }
  .home-lead,
  .home-feature-grid p,
  .home-about-layout p,
  .home-contact-layout p { font-size: 15px; }
  .home-actions { display: grid; }
  .home-primary,
  .home-secondary { width: 100%; }
  .home-section-head {
    margin-bottom: 34px;
    text-align: left;
  }
  .home-feature-grid article { padding: 30px 24px; }
  .home-feature-grid span { font-size: 46px; }
  .home-feature-grid h3 {
    margin-top: 26px;
    font-size: 24px;
  }
  .home-product-grid article { min-height: auto; }
  .home-product-grid img { height: 220px; }
  .home-case-grid article {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .home-about-layout,
  .home-contact-layout { gap: 34px; }
  .home-about-layout img { min-height: 260px; }
  .home-cta-form { padding: 24px 18px; }

  .intro-section { padding: 46px 20px 54px; }
  .section-title { gap: 12px; margin-bottom: 30px; font-size: 24px; }
  .business-section { padding: 58px 18px 60px; }
  .business-grid { grid-template-columns: 1fr; }
  .business-grid article {
    border-left: 0;
    border-top: 1px solid #ddd;
    padding: 26px 20px 0;
  }
  .business-grid article:first-child { border-top: 0; }
  .mission-section { padding: 24px 18px 70px; }
  .mission-grid { grid-template-columns: 1fr; gap: 4px; }
  .mission-panel { min-height: 300px; }
  .mission-content h3 { margin-bottom: 24px; }
  .mission-content p { font-size: 14px; }
  .category-hero {
    height: 360px;
    background-position: center;
  }
  .join-hero {
    min-height: 260px;
    background-position: center top;
  }
  .contact-map-section {
    min-height: 0;
    padding: 260px 16px 32px;
    background-position: center top;
  }
  .contact-info-panel {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 0;
    padding: 30px 24px;
  }
  .contact-office {
    padding: 36px 0 32px;
  }
  .contact-headquarters {
    padding-bottom: 42px;
  }
  .contact-office h2,
  .contact-office h3 {
    font-size: 19px;
  }
  .contact-office p {
    font-size: 15px;
  }
  .pin {
    width: 26px;
    height: 26px;
    margin-bottom: 20px;
  }
  .pin::after {
    inset: 8px;
  }
  .message-section {
    padding: 50px 16px 70px;
  }
  .message-heading h2 {
    font-size: 27px;
  }
  .message-heading p {
    font-size: 14px;
    line-height: 1.7;
  }
  .message-form {
    padding: 24px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .message-form button {
    width: 100%;
  }
  .jobs-section {
    padding: 28px 16px 80px;
  }
  .jobs-table {
    border-top-width: 2px;
  }
  .jobs-head {
    display: none;
  }
  .job-row {
    display: block;
    min-height: 0;
    padding: 22px 18px;
    font-size: 15px;
  }
  .job-row div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }
  .job-row div:last-child {
    border-bottom: 0;
  }
  .job-row div::before {
    content: attr(role);
    display: none;
  }
  .job-row div:nth-child(1)::before { content: "招聘职位"; }
  .job-row div:nth-child(2)::before { content: "职位类别"; }
  .job-row div:nth-child(3)::before { content: "工作地点"; }
  .job-row div:nth-child(4)::before { content: "招聘人数"; }
  .job-row div:nth-child(5)::before { content: "发布时间"; }
  .job-row div::before {
    display: inline;
    color: #777;
    font-weight: 400;
    flex: 0 0 78px;
  }
  .job-detail {
    padding: 30px 18px 46px;
  }
  .job-detail h2 {
    margin-bottom: 26px;
    font-size: 24px;
  }
  .job-detail p {
    font-size: 13px;
    line-height: 1.55;
  }
  .partners-main {
    padding: 42px 16px 76px;
  }
  .partner-group {
    display: block;
    padding-bottom: 42px;
    margin-bottom: 42px;
  }
  .partner-type {
    justify-content: flex-start;
    padding: 0;
    margin-bottom: 22px;
  }
  .partner-type img {
    width: 112px;
    height: auto;
  }
  .partner-logos {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-eyebrow {
    min-width: 190px;
    padding: 8px 16px;
    font-size: 20px;
  }
  .category-hero h1 {
    margin-top: 22px;
    font-size: 25px;
  }
  .category-hero ul {
    font-size: 17px;
    line-height: 1.8;
  }
  .category-main {
    padding: 48px 16px 70px;
  }
  .category-title {
    margin-bottom: 24px;
    font-size: 23px;
  }
  .category-tabs {
    margin-bottom: 34px;
    gap: 12px 16px;
    font-size: 14px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .product-card,
  .product-card.featured,
  .product-card.tall,
  .product-card.compact {
    min-height: 450px;
    padding: 28px 24px 38px;
  }
  .product-card h2 {
    font-size: 24px;
  }
  .product-card p {
    margin-top: 24px;
    font-size: 14px;
  }
  .product-more {
    right: 24px;
    bottom: 32px;
  }
  .site-footer { text-align: center; }
  .footer-inner { min-height: auto; padding: 46px 20px; }
  .footer-logo { width: 210px; margin: 0 auto; }
  .footer-inner nav { justify-content: center; row-gap: 14px; }
  .footer-inner nav a { padding: 0 14px; }
  .footer-copy { margin-top: 34px; line-height: 1.8; }
  .qr { position: static; margin: 30px auto 0; }
}

.action-products {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 95px);
  margin: 0;
  padding: 0;
  display: flex;
  background: #031129;
}

.action-products .action-product-list {
  width: 100%;
  flex: 1;
  display: flex;
  gap: 0;
  min-height: inherit;
}

.action-product-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  color: #fff;
  isolation: isolate;
  transition: flex .55s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}

.action-product-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.78) saturate(.98);
  transition: transform .48s ease, filter .35s ease;
}

.action-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(0 47 159 / 0%) 12%, rgb(0 18 52 / 88%) 100%),
    linear-gradient(90deg, rgb(0 47 159 / 26%), rgb(0 0 0 / 0%));
}

.action-product-card span {
  position: absolute;
  left: 32px;
  top: 32px;
  color: rgb(255 255 255 / 30%);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.action-product-card ul {
  width: min(100%, 360px);
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  list-style: none;
  opacity: .76;
  transform: translateY(16px);
  transition: opacity .28s ease, transform .28s ease;
}

.action-product-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(255 255 255 / 86%);
  font-size: 15px;
  line-height: 1.45;
}

.action-product-card li::before {
  content: "";
  width: 18px;
  height: 2px;
  flex: 0 0 auto;
  background: #29d8ff;
}

.action-product-card h2 {
  margin: 0;
  max-width: 360px;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.28;
}

.action-product-list:hover .action-product-card {
  flex: .72 1 0;
  filter: saturate(.82);
}

.action-product-list .action-product-card:hover {
  flex: 2.45 1 0;
  filter: saturate(1.12);
}

.action-product-card:hover img {
  transform: scale(1.08);
  filter: brightness(.88) saturate(1.08);
}

.action-product-card:hover ul {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1360px) {
  .action-products {
    min-height: calc(100vh - 86px);
  }
}

@media (max-width: 1024px) {
  .action-products .action-product-list {
    flex-wrap: wrap;
    min-height: 560px;
  }

  .action-product-card,
  .action-product-list:hover .action-product-card,
  .action-product-list .action-product-card:hover {
    flex: 1 1 calc(50% - 1px);
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .action-products {
    min-height: calc(100vh - 64px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .action-products .action-product-list {
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: 0;
  }

  .action-product-card,
  .action-product-list:hover .action-product-card,
  .action-product-list .action-product-card:hover {
    flex: 0 0 auto;
    min-height: 300px;
    padding: 28px 24px;
  }

  .action-product-card span {
    left: 24px;
    top: 24px;
    font-size: 38px;
  }

  .action-product-card h2 {
    font-size: 24px;
  }

  .action-product-card ul {
    margin-bottom: 18px;
    transform: none;
    opacity: 1;
  }

  .action-product-card li {
    font-size: 14px;
  }
}

.action-news {
  width: min(100%, 1500px);
  padding: 76px 28px 98px;
  background: #fff;
}

.action-news .action-section-title {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
}

.action-news .action-section-title p {
  display: block;
  min-height: 0;
  margin: 0 0 14px;
  padding: 0;
  color: #29d8ff;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.action-news .action-section-title h2 {
  position: relative;
  display: block;
  color: #20252b;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.12;
  background: none;
}

.action-news .action-section-title span {
  display: block;
  max-width: 610px;
  margin: 28px auto 0;
  color: #667085;
  font-size: 18px;
  line-height: 1.75;
}

.action-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, .96fr);
  gap: 28px;
}

.action-news-feature,
.action-news-list a {
  overflow: hidden;
  border: 1px solid #edf0f3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 10px rgb(16 24 40 / 7%);
  transition: transform .28s ease, box-shadow .28s ease;
}

.action-news-feature {
  padding: 0;
  border-top: 1px solid #edf0f3;
}

.action-news-feature:hover,
.action-news-list a:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgb(16 24 40 / 11%);
}

.action-news-feature img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--news-image-ratio);
  display: block;
  object-fit: contain;
  background: #f6f9fd;
  filter: saturate(.88) contrast(.96);
}

.action-news-feature div {
  padding: 20px 22px 22px;
}

.action-news-feature p,
.action-news-list time {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.action-news-feature i,
.action-news-list i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9aa7b5;
}

.action-news-feature p::after,
.action-news-list time::after {
  color: #006456;
}

.action-news-feature h3 {
  margin: 12px 0 12px;
  color: #101828;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
}

.action-news-feature span {
  display: block;
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.75;
}

.action-news-feature a,
.action-news-list strong {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  color: #111;
  background: transparent;
  min-width: 0;
  height: auto;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease, gap .2s ease;
}

.action-news-feature a:hover,
.action-news-list a:hover strong {
  color: var(--blue);
  gap: 18px;
  transform: none;
  box-shadow: none;
  background: transparent;
}

.action-news-list {
  display: grid;
  gap: 14px;
}

.action-news-list a {
  display: grid;
  grid-template-columns: 300px minmax(250px, 1fr);
  gap: 0;
  height: 182px;
  padding: 0;
  border-bottom: 1px solid #edf0f3;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.action-news-list a:hover {
  color: inherit;
  transform: translateY(-5px);
}

.action-news-list img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: var(--news-image-ratio);
  display: block;
  object-fit: contain;
  background: #f6f9fd;
  filter: saturate(.86) contrast(.96);
}

.action-news-list div {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.action-news-list span {
  display: block;
  margin-top: 8px;
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.38;
}

.action-news-list p {
  margin: 8px 0 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.action-news-list strong {
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .action-news {
    padding: 62px 24px 78px;
  }

  .action-news-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .action-news {
    padding: 46px 18px 64px;
  }

  .action-news .action-section-title {
    margin-bottom: 38px;
  }

  .action-news .action-section-title h2 {
    font-size: 24px;
  }

  .action-news-feature div {
    padding: 26px 22px;
  }

  .action-news-list div {
    padding: 15px;
  }

  .action-news-feature h3 {
    font-size: 23px;
  }

  .action-news-list a {
    grid-template-columns: 1fr;
    height: auto;
  }

  .action-news-list img {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .action-news-list span {
    font-size: 18px;
    line-height: 1.45;
  }

  .action-news-list p {
    font-size: 13px;
  }
}
