:root {
  --navy: #062b5d;
  --navy-2: #073a76;
  --navy-3: #021d42;
  --green: #2fa957;
  --green-dark: #238746;
  --ink: #08234d;
  --muted: #5b6d84;
  --line: #dbe5ef;
  --soft: #f4f8fc;
  --soft-2: #eef4fa;
  --white: #fff;
  --shadow: 0 14px 36px rgba(8, 35, 77, .08);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html.lang-loading body {
  opacity: 0;
}

html.lang-ready body {
  opacity: 1;
  transition: opacity .12s ease;
}

body {
  margin: 0;
  padding-top: 88px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  background: #fff;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

html {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button, input, select, textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html.lang-ready body {
    transition: none;
  }
}

.container {
  width: min(var(--max), calc(100% - 92px));
  margin: 0 auto;
}

.wide-section {
  width: min(1360px, calc(100% - 120px));
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  z-index: 50;
  transform: none !important;
  height: 88px;
  min-height: 88px;
  max-height: 88px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #edf2f8;
  box-shadow: 0 2px 16px rgba(7, 42, 90, .05);
}

.site-header .container {
  width: min(1680px, calc(100% - 96px));
}

.nav-wrap {
  height: 88px;
  min-height: 88px;
  max-height: 88px;
  display: grid;
  grid-template-columns: 260px 730px 140px 190px max-content;
  grid-auto-columns: max-content;
  align-items: center;
  justify-content: start;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 260px;
  height: 88px;
  min-width: 0;
  overflow: visible;
}

.brand-name {
  color: var(--navy);
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.brand-line {
  display: none;
  width: 1px;
  height: 38px;
  background: #b8c5d3;
  flex: 0 0 1px;
}

.brand-sub {
  display: none;
  color: #43546a;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: 0;
  width: 230px;
  flex: 0 0 230px;
  white-space: normal;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 88px;
  margin-left: 0;
  min-width: 0;
}

.nav-menu a {
  position: relative;
  flex: 0 0 96px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  color: #111927;
  white-space: nowrap;
  text-align: center;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-menu a.active {
  color: var(--navy);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
  width: 140px;
  height: 42px;
  margin-left: 0;
}

.language-switcher summary {
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.lang-current {
  height: 42px;
  width: 140px;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--navy);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(6,43,93,.28), rgba(47,169,87,.65)) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8, 35, 77, .08);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  user-select: none;
}

.nav-cta {
  width: 190px;
  height: 48px;
  min-height: 48px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 46px;
  margin-left: 30px;
}

.nav-social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe7f3;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(8, 35, 77, .08);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.nav-social-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nav-social-link:not(.is-disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(8, 35, 77, .13);
}

.nav-social-link.is-disabled {
  cursor: default;
  opacity: .42;
  filter: grayscale(1);
}

.lang-current::before {
  content: "◎";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.lang-current::after {
  content: none;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 70;
  min-width: 168px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(8, 35, 77, .16);
}

.lang-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 28px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}

.lang-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: #334962;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.lang-menu a span {
  color: #8696a8;
  font-size: 11px;
  font-weight: 900;
}

.lang-menu a:hover,
.lang-menu a.active {
  color: var(--navy);
  background: #f1f7fb;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-arrow {
  display: inline-block;
  margin-left: 3px;
  transform: translateY(0);
  font-size: 1.08em;
  line-height: 1;
}

.link-arrow {
  display: inline-block;
  margin-left: 5px;
  transform: translateY(-1px);
  font-size: 1.08em;
  line-height: 1;
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-navy {
  color: #fff;
  background: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-3);
}

.btn-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .72);
}

.btn-light {
  color: var(--navy);
  background: #f2f6fa;
}

@media (max-width: 1550px) {
  .site-header .container {
    width: min(100% - 56px, 1360px);
  }

  .nav-wrap {
    grid-template-columns: 220px 580px 116px 146px max-content;
    gap: 20px;
  }

  .brand {
    width: 220px;
  }

  .brand-name {
    font-size: 40px;
  }

  .brand-sub {
    width: 172px;
    flex-basis: 172px;
    font-size: 13px;
  }

  .nav-menu a {
    flex-basis: 76px;
    padding: 0 6px;
    font-size: 14px;
  }

  .language-switcher,
  .lang-current {
    width: 116px;
    min-width: 116px;
  }

  .language-switcher,
  .nav-cta {
    margin-left: 0;
  }

  .nav-cta {
    width: 146px;
  }

  .nav-socials {
    gap: 10px;
    margin-left: 24px;
  }

  .nav-social-link {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 1200px) {
  body {
    padding-top: 74px;
  }

  .site-header,
  .nav-wrap {
    height: 74px;
    min-height: 74px;
    max-height: 74px;
  }

  .site-header .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    grid-template-columns: 180px 460px 108px 132px max-content;
    gap: 14px;
  }

  .brand {
    width: 180px;
    height: 74px;
    gap: 10px;
  }

  .brand-name {
    font-size: 34px;
  }

  .brand-line {
    height: 32px;
  }

  .brand-sub {
    width: 130px;
    flex-basis: 130px;
    font-size: 11px;
    line-height: 1.22;
  }

  .nav-menu {
    height: 74px;
  }

  .nav-menu a {
    height: 74px;
    flex-basis: 62px;
    font-size: 12px;
    padding: 0 5px;
  }

  .nav-menu a::after {
    bottom: 16px;
  }

  .language-switcher,
  .lang-current {
    width: 108px;
    min-width: 108px;
  }

  .language-switcher,
  .nav-cta {
    margin-left: 0;
  }

  .lang-current {
    height: 38px;
    font-size: 12px;
    padding: 0 10px;
  }

  .nav-cta {
    width: 132px;
    height: 40px;
    min-height: 40px;
    font-size: 12px;
  }

  .nav-socials {
    gap: 8px;
    margin-left: 18px;
  }

  .nav-social-link {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 68px;
  }

  .site-header,
  .nav-wrap {
    height: 68px;
    min-height: 68px;
    max-height: 68px;
  }

  .site-header .container {
    width: min(100% - 18px, 940px);
  }

  .nav-wrap {
    grid-template-columns: 145px 350px 92px 104px max-content;
    gap: 8px;
  }

  .brand {
    width: 145px;
    height: 68px;
    gap: 8px;
  }

  .brand-name {
    font-size: 27px;
  }

  .brand-line {
    height: 28px;
  }

  .brand-sub {
    width: 88px;
    flex-basis: 88px;
    font-size: 9px;
    line-height: 1.18;
  }

  .nav-menu {
    height: 68px;
  }

  .nav-menu a {
    height: 68px;
    flex-basis: 50px;
    font-size: 10px;
    padding: 0 3px;
  }

  .language-switcher,
  .lang-current {
    width: 92px;
    min-width: 92px;
  }

  .language-switcher,
  .nav-cta {
    margin-left: 0;
  }

  .lang-current {
    height: 34px;
    gap: 6px;
    font-size: 10px;
  }

  .lang-current::before {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .nav-cta {
    width: 104px;
    height: 36px;
    min-height: 36px;
    font-size: 10px;
  }

  .nav-socials {
    gap: 6px;
    margin-left: 12px;
  }

  .nav-social-link {
    width: 30px;
    height: 30px;
  }
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 5px;
  color: var(--navy);
  font-weight: 900;
}

.hero {
  height: 660px;
  min-height: 660px;
  background: #eef3f8;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 49% 51%;
  height: 100%;
  min-height: inherit;
  min-height: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: calc(100% + 42px);
  height: 100%;
  min-height: 0;
  margin-right: -42px;
  color: #fff;
  padding: 54px 210px 36px clamp(72px, 8vw, 170px);
  background: linear-gradient(130deg, var(--navy-3), var(--navy) 64%, #093a78);
  clip-path: polygon(0 0, 92.5% 0, 100% 100%, 0 100%);
}

.hero-copy {
  padding-top: 54px;
}

.hero-copy .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #a7bad1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(42px, 3.75vw, 72px);
  line-height: 1.03;
  letter-spacing: 0;
  min-height: 3.1em;
}

.hero p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(17px, 1.35vw, 26px);
  line-height: 1.5;
  min-height: 3.05em;
}

:lang(en) .hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 3.05vw, 58px);
  line-height: 1.12;
  min-height: auto;
  overflow-wrap: normal;
}

:lang(en) .hero p {
  max-width: 720px;
  font-size: clamp(16px, 1.12vw, 21px);
  line-height: 1.55;
  min-height: auto;
}

:lang(en) .hero-actions {
  margin-top: 28px;
}

:lang(en) .hero-points,
html[lang="en"] .hero-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(840px, calc(100% - 82px));
  max-width: calc(100% - 82px);
}

:lang(en) .hero-point,
html[lang="en"] .hero-point {
  min-height: 86px;
  padding: 0 20px;
}

:lang(en) .hero-point strong,
html[lang="en"] .hero-point strong {
  max-width: 100%;
  font-size: clamp(12px, .78vw, 15px);
  line-height: 1.12;
  white-space: normal;
}

:lang(en) .hero-point span,
html[lang="en"] .hero-point span {
  max-width: 145px;
  margin-top: 7px;
  font-size: clamp(11px, .72vw, 13px);
  line-height: 1.3;
}

:lang(es) .hero h1 {
  max-width: 700px;
  font-size: clamp(36px, 3.15vw, 60px);
  line-height: 1.1;
  min-height: auto;
  overflow-wrap: normal;
}

:lang(es) .hero p {
  max-width: 640px;
  font-size: clamp(18px, 1.45vw, 28px);
  line-height: 1.42;
}

:lang(es) .hero-actions {
  margin-top: 26px;
}

:lang(es) .hero-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(840px, calc(100% - 82px));
  max-width: calc(100% - 82px);
}

:lang(es) .hero-point {
  min-height: 86px;
  padding: 0 20px;
}

:lang(es) .hero-point:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, .22);
}

:lang(es) .hero-point strong {
  max-width: 100%;
  font-size: clamp(12px, .78vw, 15px);
  line-height: 1.12;
  white-space: normal;
}

:lang(es) .hero-point span {
  max-width: 145px;
  margin-top: 7px;
  font-size: clamp(11px, .72vw, 13px);
  line-height: 1.3;
}

:lang(ru) .nav-menu a {
  font-size: 14px;
  padding: 0 6px;
}

:lang(ru) .hero h1 {
  max-width: 720px;
  font-size: clamp(34px, 2.95vw, 56px);
  line-height: 1.1;
  min-height: auto;
  overflow-wrap: normal;
}

:lang(ru) .hero p {
  max-width: 640px;
  font-size: clamp(17px, 1.25vw, 24px);
  line-height: 1.42;
}

:lang(ru) .hero-actions {
  margin-top: 24px;
}

:lang(ru) .hero-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(840px, calc(100% - 82px));
  max-width: calc(100% - 82px);
}

:lang(ru) .hero-point {
  min-height: 86px;
  padding: 0 18px;
}

:lang(ru) .hero-point strong {
  max-width: 100%;
  font-size: clamp(12px, .74vw, 14px);
  line-height: 1.12;
  white-space: normal;
}

:lang(ru) .hero-point span {
  max-width: 145px;
  margin-top: 7px;
  font-size: clamp(11px, .68vw, 13px);
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.hero-actions .btn {
  min-height: clamp(46px, 3vw, 60px);
  padding: 0 clamp(24px, 2.4vw, 48px);
  font-size: clamp(15px, 1.15vw, 22px);
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .8);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(840px, calc(100% - 82px));
  max-width: calc(100% - 82px);
  margin-top: auto;
  padding-top: 36px;
}

.hero-point {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  min-height: 86px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.hero-point:first-child {
  padding-right: 20px;
}

.hero-point .round-icon {
  display: none;
}

.hero-point:last-child {
  border-right: 0;
}

.round-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-bottom: 8px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.round-icon.solid {
  width: 62px;
  height: 62px;
  background: var(--navy);
  border: 5px solid #fff;
  box-shadow: 0 7px 16px rgba(5, 37, 79, .18);
}

.round-icon.green {
  color: var(--green);
  border-color: var(--green);
}

.hero-point strong {
  display: block;
  color: #fff;
  font-size: clamp(14px, 1vw, 19px);
  line-height: 1.18;
  white-space: nowrap;
}

.hero-point span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(12px, .94vw, 18px);
  line-height: 1.38;
  min-height: 2.76em;
  max-width: 150px;
  white-space: normal;
  overflow-wrap: break-word;
}

.hero-image {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin-left: -82px;
  clip-path: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel {
  overflow: hidden;
}

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: rgba(6, 43, 93, .66);
  box-shadow: 0 16px 34px rgba(8, 35, 77, .22);
  opacity: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .18s ease, background .18s ease, transform .18s ease;
}

.hero-carousel-arrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.hero-carousel-arrow-prev {
  left: clamp(52px, 5.2vw, 104px);
}

.hero-carousel-arrow-prev::before {
  transform: translateX(3px) rotate(225deg);
}

.hero-carousel-arrow-next {
  right: clamp(0px, 1.2vw, 24px);
}

.hero-carousel-arrow-next::before {
  transform: translateX(-3px) rotate(45deg);
}

.hero-carousel:hover .hero-carousel-arrow,
.hero-carousel-arrow:focus-visible {
  opacity: 1;
}

.hero-carousel-arrow:hover {
  background: rgba(6, 43, 93, .88);
  transform: translateY(-50%) scale(1.04);
}

.hero-full-carousel .hero-image {
  width: 100%;
  height: 100%;
  margin-left: 0;
  clip-path: none;
}

.hero-full-carousel .hero-carousel-dots {
  left: 50%;
  right: auto;
  bottom: 28px;
  transform: translateX(-50%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .8s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-carousel-dots {
  position: absolute;
  right: clamp(28px, 4vw, 78px);
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 24px rgba(8, 35, 77, .14);
  backdrop-filter: blur(8px);
}

.hero-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 43, 93, .35);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.hero-carousel-dots button.is-active {
  width: 26px;
  background: var(--navy);
}

.product-showcase-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(49, 102, 177, .16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(5, 42, 91, .08), transparent 32%),
    linear-gradient(120deg, #f9fcff 0%, #edf4fb 52%, #f8fbff 100%);
}

.product-showcase-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(36, 111, 190, .18) 1.1px, transparent 1.1px),
    linear-gradient(150deg, transparent 0 47%, rgba(255, 255, 255, .88) 47.2% 49.2%, transparent 49.5% 100%);
  background-size: 18px 18px, 100% 100%;
  background-position: right 42px top 46px, center;
  opacity: .55;
  pointer-events: none;
}

.product-showcase-hero::after {
  content: "";
  position: absolute;
  left: -20vw;
  right: -20vw;
  bottom: -172px;
  height: 282px;
  background: var(--navy);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}

.product-showcase-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  width: min(1680px, calc(100% - 120px));
  min-height: 690px;
  padding: 70px 0 122px;
}

.product-showcase-copy {
  max-width: 760px;
}

.product-showcase-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 3.8vw, 74px);
  line-height: 1.08;
  letter-spacing: 0;
}

.product-showcase-copy p {
  max-width: 670px;
  margin: 42px 0 0;
  color: #42536c;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.58;
}

.product-showcase-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 64px;
}

.product-showcase-point {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 0 20px;
  border-right: 1px solid rgba(5, 42, 91, .18);
}

.product-showcase-point:first-child {
  padding-left: 0;
}

.product-showcase-point:last-child {
  border-right: 0;
  padding-right: 0;
}

.product-showcase-point strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.product-showcase-point span {
  display: block;
  margin-top: 7px;
  color: #65758a;
  font-size: 14px;
  line-height: 1.4;
}

.product-collage {
  position: relative;
  height: 610px;
  min-width: 0;
  width: calc(100% + 96px);
  margin-left: -24px;
  margin-right: -72px;
}

.product-collage::before {
  content: "";
  position: absolute;
  inset: 38px 0 56px 0;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(217, 231, 246, .75), rgba(255, 255, 255, .28));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
  transform: skewX(-12deg);
}

.product-collage-card {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .88);
  border-radius: 10px;
  background: rgba(237, 246, 255, .62);
  box-shadow: 0 20px 42px rgba(5, 42, 91, .14);
  transform: skewX(-12deg);
}

.product-collage-image {
  position: absolute;
  inset: var(--product-inset, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(12deg);
  transform-origin: center;
}

.product-collage-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: var(--product-max-w, 84%);
  max-height: var(--product-max-h, 84%);
  object-fit: contain;
  object-position: center;
  transform: translate(var(--product-x, 0), var(--product-y, 0)) scale(var(--product-scale, 1));
  transform-origin: center;
}

.collage-bag {
  top: 8px;
  left: 3%;
  width: 30%;
  height: 42%;
  --product-max-w: 88%;
  --product-max-h: 78%;
  --product-scale: 1.08;
}

.collage-hepa {
  top: 28px;
  left: 36%;
  width: 32%;
  height: 42%;
  --product-max-w: 86%;
  --product-max-h: 78%;
  --product-scale: 1.08;
}

.collage-custom {
  left: 1%;
  bottom: 18px;
  width: 31%;
  height: 42%;
  --product-max-w: 84%;
  --product-max-h: 78%;
  --product-scale: 1.08;
}

.collage-medium {
  left: 34%;
  bottom: 2px;
  width: 31%;
  height: 40%;
  --product-max-w: 84%;
  --product-max-h: 78%;
  --product-scale: 1.08;
}

.collage-media {
  top: 29%;
  right: 1%;
  width: 28%;
  height: 40%;
  --product-max-w: 86%;
  --product-max-h: 72%;
  --product-scale: 1.05;
}

.section {
  padding: 54px 0;
}

.section.compact {
  padding: 36px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 23px;
}

.section-title.center {
  justify-content: center;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: 0;
}

.title-mark::after,
.center-mark::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 8px;
  background: var(--green);
}

.center-mark::after {
  margin-left: auto;
  margin-right: auto;
}

.view-link,
.text-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.cards-3,
.cards-4,
.cards-5,
.cards-6 {
  display: grid;
  gap: 18px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-5 { grid-template-columns: repeat(5, 1fr); }
.cards-6 { grid-template-columns: repeat(6, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(8, 35, 77, .035);
  overflow: hidden;
}

.category-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  padding: 26px 28px 22px;
}

.category-card img {
  width: 410px;
  height: 244px;
  object-fit: contain;
  justify-self: end;
  transform: translateX(22px);
}

.category-card h3,
.product-card h3,
.application-card h3,
.feature h3,
.article h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  min-height: 2.4em;
}

.category-card h3 {
  font-family: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}

.category-card p,
.product-card p,
.application-card p,
.feature p,
.article p {
  margin: 8px 0 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  min-height: 4.5em;
}

.category-card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.split-band {
  overflow: hidden;
}

.about-band {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 342px;
}

.band-copy {
  position: relative;
  z-index: 1;
  padding: 44px 82px 44px max(54px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: linear-gradient(130deg, var(--navy-3), var(--navy));
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.factory-band-section .about-band {
  background: #eef3f8;
}

.factory-band-section .band-copy {
  z-index: 2;
  width: calc(100% + 126px);
  height: 100%;
  margin-right: -126px;
  padding-right: 168px;
  background: linear-gradient(130deg, var(--navy-3), var(--navy) 64%, #093a78);
  clip-path: polygon(0 0, 91% 0, 100% 100%, 0 100%);
}

.band-copy .eyebrow {
  color: #c4d3e5;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.band-copy h2 {
  max-width: 440px;
  margin-top: 8px;
  color: #fff;
}

.band-copy p {
  max-width: 440px;
  color: rgba(255,255,255,.84);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  max-width: 420px;
  margin: 24px 0;
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
}

.stat span {
  color: rgba(255,255,255,.78);
  font-size: 11px;
}

.band-img {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 342px;
  overflow: hidden;
}

.band-img img,
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-carousel {
  isolation: isolate;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .8s ease, transform 1.2s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.carousel-dots {
  position: absolute;
  right: clamp(24px, 3vw, 58px);
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 24px rgba(8, 35, 77, .14);
  backdrop-filter: blur(8px);
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 43, 93, .35);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.carousel-dots button.is-active {
  width: 24px;
  background: var(--navy);
}

.app-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 17px;
}

.app-tile {
  position: relative;
  text-align: center;
  padding-top: 31px;
}

.app-tile .thumb {
  position: relative;
  height: 110px;
  overflow: hidden;
  border-radius: 4px;
}

.app-tile img {
  width: 145%;
  height: 145%;
  object-fit: cover;
  display: block;
  max-width: none;
  transform: translate(-34%, -26%);
}

.app-tile .round-icon {
  display: inline-grid;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0;
  place-items: center;
}

.app-tile .round-icon svg {
  width: 31px;
  height: 31px;
  overflow: visible;
}

.app-tile .round-icon svg * {
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-tile h3 {
  margin: 12px 0 0;
  font-size: 13px;
}

.oem-band {
  background: linear-gradient(100deg, #f3f7fb, #fff);
  padding: 42px 0;
}

.oem-grid {
  display: grid;
  grid-template-columns: 38% repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.oem-intro {
  padding: 28px 30px;
  background: linear-gradient(120deg, #edf4fb, #fff);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.oem-intro .eyebrow {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature {
  padding: 26px;
  background: #fff;
  border: 1px solid #e5edf4;
  border-radius: 7px;
}

.feature.inline {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 14px;
  align-items: start;
}

.feature .line-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--green);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.line-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--green);
  color: var(--green);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.product-mini {
  padding: 14px;
  text-align: center;
}

.product-mini img {
  width: 100%;
  height: 115px;
  object-fit: contain;
}

.product-mini h3 {
  margin: 8px 0 0;
  font-size: 13px;
}

.article {
  position: relative;
  display: flex;
  min-height: 218px;
  padding: 24px 24px 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.98));
}

.article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 76px;
  height: 4px;
  background: var(--green);
  border-radius: 0 0 4px 4px;
}

.article::after {
  content: "ARTICLE";
  position: absolute;
  right: 18px;
  bottom: 8px;
  color: rgba(6, 43, 93, .045);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.article-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
}

.article h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.28;
}

.article p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.62;
}

.article .text-link {
  margin-top: auto;
}

.label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 25px;
  padding: 0 10px;
  color: var(--navy);
  background: #eef5fb;
  border: 1px solid #d8e5f2;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-bar {
  padding: 34px 0 40px;
  color: #fff;
  background: #fff;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr auto;
  gap: 28px;
  align-items: center;
  min-height: 122px;
}

.cta-inner-simple {
  width: min(1040px, calc(100% - 92px));
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  min-height: 126px;
  padding: 30px 34px;
  background: linear-gradient(135deg, #062b5d 0%, #0a4388 100%);
  border-radius: 7px;
  box-shadow: 0 18px 42px rgba(8, 35, 77, .13);
}

.product-list-section + .cta-bar {
  padding-top: 22px;
}

html[lang="es"] .cta-inner-simple,
html[lang="ru"] .cta-inner-simple {
  width: min(1120px, calc(100% - 92px));
  grid-template-columns: 64px minmax(0, 1fr) minmax(220px, auto);
}

.cta-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.cta-inner h2,
.cta-inner p {
  color: #fff;
}

.cta-text-link {
  color: #fff;
  white-space: nowrap;
}

.cta-inner-simple h2 {
  margin: 0 0 8px;
  font-size: 29px;
  line-height: 1.15;
}

.cta-inner-simple p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.55;
}

.cta-green-btn {
  min-width: 138px;
  min-height: 44px;
  justify-content: center;
  white-space: normal;
  text-align: center;
  border-radius: 5px;
  font-size: 13px;
  box-shadow: 0 14px 26px rgba(47, 169, 87, .22);
}

.cta-green-btn span {
  display: inline-block;
  margin-left: 14px;
  font-size: 17px;
  line-height: 1;
  transform: translateY(-1px);
}

.contact-pill {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
}

.contact-pill .circle {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  font-weight: 900;
}

.footer {
  flex-shrink: 0;
  color: #d7e4f2;
  background: linear-gradient(135deg, #05264f, #062d61);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 46px;
  padding: 34px 0 22px;
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer h2 {
  font-size: 30px;
  margin: 0 0 12px;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 14px;
}

.footer-grid > div:first-child {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 24px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}

.footer-grid > div:first-child h2 {
  position: relative;
  z-index: 1;
  margin: 0;
}

.footer-grid > div:first-child h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--green);
  border-radius: 999px;
}

.footer-grid > div:first-child::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -62px;
  width: 152px;
  height: 152px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}

.footer p,
.footer a {
  color: #d4e1ef;
  font-size: 14px;
  line-height: 1.65;
}

.footer-grid > div:first-child p {
  max-width: 410px;
  font-size: 16px;
  line-height: 1.86;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-list p {
  margin: 0;
}

.footer-contact-list strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.footer-contact-list span {
  display: block;
}

.footer-contact-list span:first-of-type,
.footer-contact-list .footer-contact-link {
  white-space: nowrap;
}

.footer-contact-list .footer-contact-link {
  display: inline-block;
  margin: 0;
  color: #d4e1ef;
}

.footer a {
  display: block;
  margin: 3px 0;
}

.news-hero-section,
.article-hero-section {
  background:
    linear-gradient(90deg, rgba(246, 251, 255, .98) 0%, rgba(246, 251, 255, .88) 48%, rgba(235, 246, 255, .92) 100%);
}

.news-hero-inner {
  padding: 54px 0 42px;
}

.news-hero-inner h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
}

.news-hero-inner p {
  max-width: 720px;
  margin: 0;
  color: #435975;
  font-size: 18px;
  line-height: 1.8;
}

.news-list-section {
  padding: 34px 0 58px;
}

.news-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.news-category-filter button {
  min-height: 38px;
  padding: 0 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  border: 1px solid rgba(190, 211, 232, .96);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(8, 35, 77, .04);
}

:lang(en) .news-category-filter button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
  line-height: 1.15;
  white-space: normal;
}

.news-category-filter button.active,
.news-category-filter button:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.news-empty-message {
  display: none;
  max-width: 920px;
  margin: 20px 0 0;
  padding: 24px;
  color: #52657d;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  background: #f7fbff;
  border: 1px dashed #cbdced;
  border-radius: 8px;
}

.news-empty-message.is-visible {
  display: block;
}

.news-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  max-width: 920px;
  min-height: 44px;
  margin: 26px 0 0;
}

.news-pagination.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.news-pagination button {
  width: 48px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid #d7e4f2;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8, 35, 77, .045);
}

.news-pagination button.active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.news-pagination button:disabled {
  color: #9aabc0;
  background: #f8fbfe;
  cursor: default;
  box-shadow: none;
}

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

.news-card-large {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 30px;
  min-height: 238px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(214, 226, 240, .96);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(8, 35, 77, .06);
}

.news-card-compact {
  display: block;
  max-width: 920px;
  min-height: 0;
  margin: 0;
  padding: 20px 24px;
  box-shadow: 0 12px 32px rgba(8, 35, 77, .05);
}

.news-card-image {
  display: block;
  min-height: 196px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef6ff, #f9fcff);
  border-radius: 6px;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-image.is-missing::before,
.article-inline-image.is-missing::before {
  content: "图片待上传";
  min-height: inherit;
  display: grid;
  place-items: center;
  color: #7890aa;
  font-size: 14px;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(238, 246, 255, .96), rgba(249, 252, 255, .96));
  border: 1px dashed #c9d9eb;
  border-radius: 6px;
}

.news-card-body {
  align-self: center;
}

.news-card-date {
  display: block;
  margin-top: 12px;
  color: #315d8d;
  font-size: 14px;
  font-weight: 900;
}

.news-card-body h3 {
  margin: 12px 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}

.news-card-compact .news-card-body h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.32;
}

.news-card-body h3 a {
  color: inherit;
}

.news-card-body p {
  max-width: 820px;
  color: #4a617b;
  font-size: 15px;
  line-height: 1.75;
}

.news-card-compact .news-card-body p {
  max-width: 760px;
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.65;
}

.article-hero-grid {
  min-height: 460px;
  display: block;
  padding: 72px 0 64px;
}

.article-hero-copy {
  position: relative;
  max-width: 1040px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.article-back-link {
  width: fit-content;
  margin: 0 0 18px;
}

.article-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  color: #1f9d55;
  background: rgba(47, 169, 87, .12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.article-hero-copy h1 {
  max-width: 980px;
  margin: 22px 0 18px;
  color: var(--navy);
  font-size: clamp(36px, 3.7vw, 58px);
  line-height: 1.13;
  letter-spacing: 0;
}

.article-hero-copy p {
  max-width: 900px;
  margin: 0;
  color: #435975;
  font-size: 18px;
  line-height: 1.78;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #2e4664;
  background: #fff;
  border: 1px solid #d9e6f4;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.article-main-section {
  padding: 68px 0 32px;
  background: #fff;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 900px);
  justify-content: center;
  gap: 56px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 24px;
  padding: 22px;
  background: #f7fbff;
  border: 1px solid #dbe8f5;
  border-radius: 8px;
}

.article-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 17px;
}

.article-toc a {
  display: block;
  padding: 9px 0;
  color: #405873;
  border-top: 1px solid rgba(214, 226, 240, .72);
  font-size: 14px;
  line-height: 1.45;
}

.article-content {
  color: #29425f;
}

.article-content h2 {
  margin: 46px 0 18px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.28;
}

.article-content h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
}

.article-content p,
.article-content li {
  color: #405873;
  font-size: 17px;
  line-height: 2;
}

.article-content p {
  margin: 0 0 14px;
}

.article-content ul {
  margin: 10px 0 20px;
  padding-left: 22px;
}

.article-table-wrap {
  margin: 24px 0 26px;
  overflow-x: auto;
  border: 1px solid #dbe8f5;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(8, 35, 77, .05);
}

.article-table-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.article-table-wrap th,
.article-table-wrap td {
  padding: 15px 16px;
  border-bottom: 1px solid #e5eef7;
  border-right: 1px solid #e5eef7;
  color: #405873;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}

.article-table-wrap th {
  color: #fff;
  background: #0b376d;
  font-weight: 900;
}

.article-table-wrap tr:last-child td {
  border-bottom: 0;
}

.article-table-wrap th:last-child,
.article-table-wrap td:last-child {
  border-right: 0;
}

.article-text-link {
  color: #0b5fc2;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-inline-image {
  min-height: 300px;
  margin: 36px 0;
  overflow: hidden;
  background: #f2f8ff;
  border: 1px solid #dbe8f5;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(8, 35, 77, .055);
}

.article-inline-image img {
  width: 100%;
  max-height: 420px;
  display: block;
  object-fit: cover;
}

.article-inline-image figcaption {
  padding: 14px 18px;
  color: #647891;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.article-related-box {
  margin-top: 54px;
  padding: 28px;
  background: #f7fbff;
  border: 1px solid #dbe8f5;
  border-radius: 8px;
}

.article-related-box h2 {
  margin-top: 0;
}

.article-related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-related-links a {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #dbe8f5;
  border-radius: 7px;
  font-weight: 900;
}

.article-cta-bar {
  padding-top: 52px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 42px;
  align-items: start;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.caption {
  text-align: center;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

.stat-card-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #f7fbff;
  border: 1px solid #e6edf5;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 13px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
}

.stat-card strong sup {
  position: relative;
  top: -.35em;
  font-size: .58em;
  line-height: 0;
}

.stat-card span {
  font-size: 12px;
  color: var(--muted);
}

.stats-showcase {
  position: relative;
  overflow: hidden;
  padding: 48px 0 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(248, 252, 255, .94) 100%),
    radial-gradient(circle at 78% 12%, rgba(28, 91, 157, .08) 0 1.7px, transparent 1.9px) 0 0 / 13px 13px;
}

.stats-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(65vw, 1120px);
  height: 205px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 58%, rgba(28, 91, 157, .18) 0 2px, transparent 2.2px) 0 0 / 14px 14px,
    linear-gradient(90deg, transparent 0%, rgba(233, 241, 249, .78) 58%, rgba(226, 236, 247, .95) 100%);
  opacity: .46;
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 0 100%);
}

.stats-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(28, 91, 157, .08) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(180deg, transparent, rgba(233, 241, 249, .55));
  opacity: .45;
}

.stats-showcase .container {
  width: min(100% - 96px, 1700px);
  position: relative;
  z-index: 1;
}

.stats-title {
  font-size: 33px;
  line-height: 1.12;
  letter-spacing: 0;
}

.stats-title.title-mark::after {
  width: 82px;
  height: 5px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f5cbd 0 78%, transparent 78% 86%, var(--green) 86% 100%);
}

.stats-showcase .stat-card-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.2vw, 21px);
  margin-top: 34px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.stats-showcase .stat-card {
  position: relative;
  overflow: hidden;
  min-height: 242px;
  display: block;
  padding: clamp(22px, 1.35vw, 28px) clamp(21px, 1.35vw, 26px) 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)),
    radial-gradient(circle at 90% 100%, rgba(28, 91, 157, .05), transparent 58%);
  border: 1px solid rgba(214, 226, 240, .9);
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(8, 35, 77, .08);
}

.stats-showcase .stat-card::after {
  content: attr(data-ghost);
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(28, 91, 157, .08);
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.stats-showcase .line-icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 0 20px 5px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #173f96, var(--navy));
  border: 6px solid #f7fbff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #bad0ee, 0 8px 18px rgba(8, 35, 77, .11);
  font-size: 17px;
  font-weight: 900;
}

.stats-showcase .line-icon::before {
  content: "";
  position: absolute;
  inset: -11px;
  border: 2px solid rgba(31, 92, 189, .3);
  border-right-color: transparent;
  border-bottom-color: rgba(46, 178, 103, .45);
  border-radius: 50%;
}

.stats-showcase .line-icon::after {
  content: "";
  position: absolute;
  top: -7px;
  right: -6px;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 178, 103, .14);
}

.stats-showcase .stat-card strong {
  color: #123c9c;
  display: block;
  font-size: clamp(36px, 2.45vw, 50px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.stats-showcase .stat-card strong sup {
  top: -.48em;
  font-size: .34em;
}

.stats-showcase .stat-label {
  display: block;
  margin-top: 15px;
  color: #07172c;
  font-size: clamp(16px, .9vw, 18px);
  line-height: 1.28;
  font-weight: 900;
}

.stats-showcase .stat-label::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin: 10px 0 11px;
  background: var(--green);
  border-radius: 999px;
}

.stats-showcase .stat-desc {
  display: block;
  max-width: 165px;
  color: #6b778c;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.legacy-website-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(247, 251, 255, .96) 100%);
  border: 1px solid rgba(214, 226, 240, .95);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(8, 35, 77, .065);
}

.legacy-website-main {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.legacy-website-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: block;
  background: #0b376d;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(8, 35, 77, .16);
}

.legacy-website-icon::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
}

.legacy-website-icon::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 31px;
  height: 2px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 -10px 0 rgba(255, 255, 255, .5), 0 10px 0 rgba(255, 255, 255, .5);
}

.legacy-website-copy > span {
  display: block;
  margin-bottom: 4px;
  color: #2faa57;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}

.legacy-website-copy strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.legacy-website-copy p {
  max-width: 900px;
  margin: 8px 0 0;
  color: #53677f;
  font-size: 15px;
  line-height: 1.7;
}

.legacy-website-copy em {
  display: inline-block;
  margin-top: 8px;
  color: #315d8d;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.legacy-website-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(6, 43, 93, .2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(8, 35, 77, .13);
}

.legacy-website-action:hover {
  color: #fff;
  background: #0f4d93;
  transform: translateY(-1px);
}

.capability-grid {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 40px;
  align-items: start;
}

.cap-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.workshop-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e4f1;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(8, 35, 77, .06);
}

.workshop-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2.28 / 1;
  object-fit: cover;
}

.workshop-card-body {
  padding: 18px 20px 21px;
}

.workshop-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.workshop-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 34px;
  padding-top: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1c5b9d;
}

.step {
  position: relative;
  text-align: center;
}

.step::before {
  content: attr(data-step);
  position: absolute;
  top: -27px;
  left: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.step h3 {
  margin: 18px 0 5px;
  font-size: 13px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.two-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel-soft {
  padding: 28px;
  background: #f8fbfe;
  border: 1px solid #e6edf4;
  border-radius: 8px;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 25px;
  color: #40536a;
  font-size: 13px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 900;
}

.map-art {
  height: 185px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 40%, #2d75bc 0 11px, transparent 12px),
    radial-gradient(circle at 44% 54%, #2d75bc 0 8px, transparent 9px),
    radial-gradient(circle at 63% 35%, #2d75bc 0 13px, transparent 14px),
    radial-gradient(circle at 78% 58%, #2d75bc 0 9px, transparent 10px),
    linear-gradient(135deg, #f4f8fc, #e9f1fa);
}

.service-capabilities .container {
  width: min(1420px, calc(100% - 120px));
}

.oem-export-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.service-feature-card {
  display: flex;
  flex-direction: column;
  padding: 36px 42px 28px;
  min-height: 430px;
  background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
  border: 1px solid #d9e6f2;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 35, 77, .06);
}

.service-feature-card h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 1.9vw, 36px);
  line-height: 1.12;
  color: var(--navy);
}

.service-feature-card > p {
  margin: 0;
  color: #223c5c;
  font-size: 17px;
  line-height: 1.7;
}

.service-card-layout {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(210px, .82fr) minmax(300px, 1.18fr);
  gap: 26px;
  align-items: start;
  margin-top: 24px;
}

.export-layout {
  grid-template-columns: minmax(220px, .72fr) minmax(360px, 1.28fr);
}

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

.service-feature-list li {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  color: #102f5f;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px dashed #cbd9e8;
}

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

.service-list-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--navy-2);
}

.service-list-icon::before,
.service-list-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.service-list-icon::before {
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.service-list-icon.ruler::before {
  height: 7px;
  top: 8px;
  border-radius: 3px;
  transform: rotate(-35deg);
}

.service-list-icon.grid::before {
  border-radius: 3px;
  box-shadow: inset 0 -5px 0 rgba(7, 58, 118, .16), inset -5px 0 0 rgba(7, 58, 118, .16);
}

.service-list-icon.tag::before {
  transform: rotate(-35deg);
}

.service-list-icon.tag::after {
  width: 4px;
  height: 4px;
  top: 7px;
  left: 8px;
  background: currentColor;
  border-radius: 50%;
}

.service-list-icon.user::before {
  width: 8px;
  height: 8px;
  top: 3px;
  left: 8px;
  border-radius: 50%;
}

.service-list-icon.user::after {
  width: 16px;
  height: 9px;
  left: 4px;
  bottom: 3px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 4px 4px;
}

.service-list-icon.flask::before {
  width: 9px;
  height: 14px;
  left: 7px;
  top: 5px;
  border-radius: 3px 3px 7px 7px;
}

.service-list-icon.flask::after {
  width: 8px;
  height: 2px;
  left: 8px;
  top: 3px;
  background: currentColor;
}

.service-list-icon.shield::before {
  border-radius: 8px 8px 12px 12px;
  transform: perspective(20px) rotateX(12deg);
}

.service-list-icon.globe::before {
  border-radius: 50%;
}

.service-list-icon.globe::after {
  inset: 7px 4px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 50%;
}

.service-list-icon.price::before {
  transform: rotate(-35deg);
}

.service-list-icon.price::after {
  width: 8px;
  height: 2px;
  top: 11px;
  left: 8px;
  background: currentColor;
}

.service-list-icon.clock::before {
  border-radius: 50%;
}

.service-list-icon.clock::after {
  width: 8px;
  height: 7px;
  left: 11px;
  top: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.service-list-icon.document::before {
  border-radius: 3px;
}

.service-list-icon.document::after {
  width: 10px;
  height: 2px;
  left: 7px;
  top: 10px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.service-list-icon.support::before {
  width: 16px;
  height: 11px;
  left: 4px;
  top: 7px;
  border-radius: 10px;
}

.service-list-icon.support::after {
  width: 4px;
  height: 8px;
  left: 3px;
  top: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.process-box,
.export-visual-box {
  position: relative;
  overflow: hidden;
  padding: 24px 28px;
  min-height: 238px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid #cfdceb;
  border-radius: 8px;
}

.process-box h3 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 20px;
}

.export-visual-box h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.process-diagram {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 18px 14px;
  align-items: start;
}

.process-diagram em,
.export-flow em {
  color: var(--navy-2);
  font-style: normal;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  align-self: start;
  line-height: 1;
}

.process-diagram em {
  display: none;
}

.export-flow em {
  padding-top: 11px;
}

.process-diagram em::before,
.export-flow em::before {
  content: ">";
}

.process-item,
.export-flow-step {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  text-align: center;
}

.process-item span,
.export-flow-step span {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy-2);
  background: #eef5ff;
  border: 1px solid #a9c3e2;
  border-radius: 50%;
  font-weight: 900;
}

.flow-icon {
  color: var(--navy-2);
}

.flow-number {
  color: var(--navy-2);
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1;
  box-sizing: border-box;
  padding-top: 2px;
}

.flow-icon::before,
.flow-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.flow-icon.chat::before {
  width: 22px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.flow-icon.chat::after {
  width: 7px;
  height: 7px;
  left: 16px;
  bottom: 13px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(42deg);
}

.flow-icon.file::before,
.flow-icon.clipboard::before {
  width: 18px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.flow-icon.file::after,
.flow-icon.clipboard::after {
  width: 11px;
  height: 2px;
  left: 18px;
  top: 21px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.flow-icon.gear::before {
  width: 22px;
  height: 22px;
  border: 3px dotted currentColor;
  border-radius: 50%;
}

.flow-icon.gear::after {
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
}

.flow-icon.truck::before {
  width: 24px;
  height: 14px;
  left: 10px;
  top: 17px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.flow-icon.truck::after {
  width: 5px;
  height: 5px;
  left: 16px;
  bottom: 12px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 17px 0 0 currentColor;
}

.flow-icon.box::before {
  width: 22px;
  height: 18px;
  border: 2px solid currentColor;
  transform: rotate(45deg) skew(-8deg, -8deg);
}

.flow-icon.box::after {
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: rotate(35deg);
}

.flow-icon.factory::before {
  width: 24px;
  height: 18px;
  left: 11px;
  bottom: 13px;
  border: 2px solid currentColor;
}

.flow-icon.factory::after {
  width: 8px;
  height: 26px;
  left: 15px;
  top: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  box-shadow: 14px 8px 0 -2px currentColor;
}

.flow-icon.globe::before {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.flow-icon.globe::after {
  width: 12px;
  height: 24px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 50%;
}

.process-item strong,
.export-flow-step strong {
  max-width: 112px;
  color: #203a5a;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.service-pills span {
  min-width: 126px;
  padding: 8px 17px;
  color: var(--navy-2);
  background: #fff;
  border: 1px solid #cfdceb;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.export-visual-box {
  min-height: 270px;
  padding: 24px 28px;
}

.world-map-dots {
  position: absolute;
  top: 20px;
  left: 42%;
  right: 24px;
  height: 86px;
  opacity: .45;
  background:
    radial-gradient(circle at 18% 38%, #2f7dc4 0 2px, transparent 2.5px),
    radial-gradient(circle at 28% 30%, #2f7dc4 0 2px, transparent 2.5px),
    radial-gradient(circle at 41% 43%, #2f7dc4 0 2px, transparent 2.5px),
    radial-gradient(circle at 55% 34%, #2f7dc4 0 2px, transparent 2.5px),
    radial-gradient(circle at 70% 46%, #2f7dc4 0 2px, transparent 2.5px),
    radial-gradient(circle at 83% 37%, #2f7dc4 0 2px, transparent 2.5px),
    radial-gradient(circle, #2f7dc4 0 1px, transparent 1.5px);
  background-size: 72px 42px, 84px 48px, 76px 44px, 88px 52px, 72px 44px, 86px 50px, 9px 9px;
  border-radius: 50%;
}

.export-flow {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.export-flow-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.export-flow-step {
  min-width: 0;
}

.export-flow em {
  display: none;
}

.export-flow-step span {
  width: 44px;
  height: 44px;
}

.export-flow-step strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 12px;
}

.mission-band {
  position: relative;
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 360px;
  background: #f2f6fa;
}

.mission-band::after {
  display: none;
}

.mission-band .band-copy {
  z-index: 2;
  width: calc(100% + 156px);
  height: 100%;
  margin-right: -156px;
  padding: 58px 180px 56px max(72px, calc((100vw - 1460px) / 2 + 42px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(130deg, #021d42 0%, #062b5d 66%, #073a76 100%);
  clip-path: polygon(0 0, 89% 0, 100% 100%, 0 100%);
}

.mission-band .band-copy h2 {
  max-width: 420px;
  margin: 0 0 18px;
  font-size: clamp(28px, 2.1vw, 36px);
  line-height: 1.18;
}

.mission-band .band-copy p {
  max-width: 430px;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.mission-band .band-img {
  min-height: 360px;
}

.mission-band .band-img img {
  object-position: center;
}

.mission-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.mission-values span {
  position: relative;
  padding: 0 17px;
  white-space: nowrap;
}

.mission-values span:first-child {
  padding-left: 0;
}

.mission-values span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .55);
  transform: translateY(-50%);
}

.partnership {
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0a3e7d);
  border-radius: 8px;
}

.partnership h2 {
  color: #fff;
}

.container.products-layout {
  width: min(1640px, calc(100% - 72px));
}

.products-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.products-layout aside {
  margin-top: 132px;
}

.sidebar-card {
  overflow: hidden;
  min-height: 680px;
  background: #fff;
  border: 1px solid rgba(214, 226, 240, .96);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(8, 35, 77, .07);
}

.sidebar-title {
  display: flex;
  align-items: center;
  min-height: 132px;
  padding: 32px 38px;
  color: #fff;
  background: linear-gradient(135deg, #062b5d 0%, #0b4085 100%);
}

.sidebar-title strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.sidebar-title em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.category-menu {
  padding: 28px 20px;
}

.category-menu button {
  position: relative;
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 0 48px 0 30px;
  color: #263f5c;
  background: #fff;
  border: 0;
  border-radius: 7px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.category-menu button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: .62;
  transform: translateY(-50%) rotate(45deg);
}

.category-menu button + button {
  margin-top: 10px;
}

.category-menu button.active,
.category-menu button:hover {
  color: var(--navy);
  background: linear-gradient(90deg, #f4f8fe 0%, #fff 100%);
  font-weight: 900;
}

.category-menu button.active {
  box-shadow: inset 4px 0 0 #1967d2;
}

.side-cta {
  margin-top: 28px;
  padding: 26px 22px;
  background: #f9fcff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.product-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.product-head-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  color: #263f5c;
  font-weight: 700;
}

.product-view-switch {
  display: flex;
  gap: 10px;
}

.product-view-switch button {
  width: 54px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #2e4664;
  background: #fff;
  border: 1px solid #d7e4f2;
  border-radius: 7px;
  cursor: pointer;
}

.product-view-switch button.active {
  color: #0a4ca4;
  border-color: #2e80ee;
  box-shadow: 0 8px 18px rgba(32, 112, 219, .12);
}

.product-view-switch span {
  display: block;
  width: 19px;
  height: 19px;
}

.product-view-switch [data-product-view="grid"] span {
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 7px 7px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 0 / 7px 7px no-repeat,
    linear-gradient(currentColor, currentColor) 0 12px / 7px 7px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 12px / 7px 7px no-repeat;
}

.product-view-switch [data-product-view="list"] span {
  background:
    linear-gradient(currentColor, currentColor) 0 2px / 19px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 0 8px / 19px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 0 14px / 19px 3px no-repeat;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-tabs button {
  min-width: 96px;
  min-height: 46px;
  padding: 0 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: #52637a;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(8, 35, 77, .035);
}

.filter-tabs button.active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.product-list-main {
  min-height: 888px;
}

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

@media (min-width: 1101px) {
  .product-list-section .products-layout {
    min-height: 1040px;
  }

  .product-list-main {
    height: auto;
    min-height: 1040px;
  }

  .product-list-section .product-grid:not(.product-grid-list) {
    min-height: 820px;
    align-content: start;
  }

  .product-list-section .product-grid.product-grid-list {
    min-height: 820px;
    align-content: start;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .product-list-section .product-grid:not(.product-grid-list) {
    min-height: 740px;
    align-content: start;
  }

  .product-list-section .product-grid.product-grid-list {
    min-height: 740px;
    align-content: start;
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 22px 24px 26px;
  overflow: hidden;
  border-color: rgba(214, 226, 240, .95);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(8, 35, 77, .055);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.product-card:hover {
  border-color: rgba(46, 128, 238, .38);
  box-shadow: 0 22px 46px rgba(8, 35, 77, .09);
}

.product-card img {
  flex: 0 0 auto;
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.product-card h3 {
  color: var(--navy);
  font-size: 21px;
  min-height: auto;
  overflow-wrap: anywhere;
}

.product-card p {
  max-width: 86%;
  margin: 12px 0 20px;
  color: #526982;
  font-size: 15px;
  line-height: 1.65;
  min-height: 3.3em;
  overflow-wrap: anywhere;
}

:lang(en) .product-card h3,
:lang(en) .news-card-large h3,
:lang(en) .article h3,
:lang(en) .app-body h3 {
  overflow-wrap: anywhere;
}

:lang(en) .category-card h3 {
  max-width: 180px;
  font-size: 16px;
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
}

:lang(en) .news-card-large h3,
:lang(en) .article h3 {
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.28;
}

:lang(en) .news-card-large p,
:lang(en) .article p,
:lang(en) .app-body p {
  overflow-wrap: anywhere;
}

:lang(en) .category-card p {
  max-width: 180px;
  font-size: 12px;
  line-height: 1.42;
  overflow-wrap: normal;
  word-break: normal;
}

:lang(en) .news-card-date,
:lang(en) .view-link {
  white-space: normal;
}

:lang(en) .category-card .text-link {
  font-size: 12px;
  white-space: nowrap;
}

:lang(en) .category-card > div {
  width: 170px;
  min-width: 0;
}

:lang(en) .category-card,
html[lang="en"] .category-card {
  grid-template-columns: 170px minmax(0, 1fr);
  column-gap: 16px;
}

:lang(en) .category-card img {
  width: min(100%, 230px);
  height: 204px;
  justify-self: center;
  transform: translateX(0);
}

html[lang="en"] .category-card img {
  width: min(100%, 230px);
  height: 204px;
  justify-self: center;
  transform: translateX(0);
}

:lang(es) .category-card h3 {
  max-width: 138px;
  font-size: 14px;
  line-height: 1.12;
  min-height: 2.25em;
  overflow-wrap: anywhere;
}

:lang(es) .category-card p {
  max-width: 138px;
  font-size: 11px;
  line-height: 1.38;
  min-height: 4.15em;
  overflow-wrap: anywhere;
}

:lang(es) .category-card .text-link {
  max-width: 138px;
  font-size: 11px;
}

:lang(es) .category-card > div {
  width: 138px;
  min-width: 0;
}

:lang(es) .category-card,
html[lang="es"] .category-card {
  grid-template-columns: 150px minmax(0, 1fr);
  column-gap: 14px;
}

:lang(es) .category-card img {
  width: min(100%, 230px);
  height: 204px;
  justify-self: center;
  transform: translateX(0);
}

html[lang="es"] .category-card img {
  width: min(100%, 230px);
  height: 204px;
  justify-self: center;
  transform: translateX(0);
}

:lang(ru) .product-card h3,
:lang(ru) .news-card-large h3,
:lang(ru) .article h3,
:lang(ru) .category-card h3,
:lang(ru) .app-body h3,
:lang(ru) .solution-product-card h3 {
  overflow-wrap: anywhere;
}

:lang(ru) .news-card-large h3,
:lang(ru) .article h3 {
  font-size: clamp(19px, 1.35vw, 23px);
  line-height: 1.3;
}

:lang(ru) .news-card-large p,
:lang(ru) .article p,
:lang(ru) .category-card p,
:lang(ru) .app-body p,
:lang(ru) .solution-product-card p {
  overflow-wrap: anywhere;
}

:lang(ru) .news-card-date,
:lang(ru) .text-link,
:lang(ru) .view-link {
  white-space: normal;
}

:lang(ru) .category-card,
html[lang="ru"] .category-card {
  grid-template-columns: 155px minmax(0, 1fr);
  column-gap: 14px;
}

:lang(ru) .category-card > div,
html[lang="ru"] .category-card > div {
  width: 155px;
  min-width: 0;
}

:lang(ru) .category-card img,
html[lang="ru"] .category-card img {
  width: min(100%, 230px);
  height: 204px;
  justify-self: center;
  transform: translateX(0);
}

:lang(ru) .product-detail-copy h1,
:lang(ru) .product-detail-copy h1.product-title-compact {
  max-width: 720px;
  font-size: clamp(38px, 3.4vw, 58px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

:lang(ru) .solution-hero h1 {
  font-size: clamp(30px, 2.35vw, 44px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

:lang(ru) .article-hero-copy h1 {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.product-card .text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  min-height: 28px;
  color: var(--navy);
  font-size: 15px;
}

.product-grid.product-grid-list {
  grid-template-columns: 1fr;
}

.product-grid.product-grid-list .product-card {
  min-height: 220px;
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 28px;
  align-items: center;
}

.product-grid.product-grid-list .product-card img {
  grid-row: 1 / 4;
  height: 180px;
  margin: 0;
}

.product-grid.product-grid-list .product-card p {
  max-width: 720px;
  min-height: 0;
}

.product-grid.product-grid-list .product-card .text-link {
  align-self: start;
  margin-top: 0;
}

.product-pagination {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 28px 0 56px;
  min-height: 44px;
}

.product-pagination.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.product-pagination button {
  width: 48px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid #d7e4f2;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8, 35, 77, .045);
}

.product-pagination button.active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.product-pagination button:disabled {
  color: #9aabc0;
  background: #f8fbfe;
  cursor: default;
  box-shadow: none;
}

.product-card-image-slot {
  display: block;
  width: 100%;
  height: 220px;
  margin-bottom: 15px;
  background:
    radial-gradient(circle at 50% 44%, rgba(92, 156, 223, .1), transparent 34%),
    linear-gradient(180deg, #f7fbff, #eef5fc);
  border: 1px dashed #d3e1ef;
  border-radius: 8px;
}

.choice-band {
  margin-top: 48px;
  padding: 34px 42px;
  background: #f1f6fb;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}

.choice-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 22px;
}

.application-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.application-card {
  cursor: pointer;
}

.application-card .app-body {
  padding: 24px;
  position: relative;
}

.application-card .round-icon {
  display: none;
}

.stage-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  align-items: stretch;
}

.stage-card {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 210px;
  height: 100%;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-sizing: border-box;
}

.stage-card::after {
  content: ">";
  position: absolute;
  right: -26px;
  top: 50%;
  color: var(--navy);
  font-size: 28px;
  transform: translateY(-50%);
}

.stage-card:last-child::after {
  content: "";
}

.stage-no {
  position: absolute;
  left: 22px;
  top: -12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.stage-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  justify-self: center;
  align-self: center;
}

.notice {
  margin-top: 22px;
  padding: 16px;
  text-align: center;
  color: #536780;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.contact-showcase-hero {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(circle at 16% 18%, rgba(42, 126, 224, .34), transparent 34%),
    linear-gradient(138deg, #052352 0%, #073168 62%, #064180 100%);
}

.contact-hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 360px;
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 40px 100px;
  text-align: center;
  color: #fff;
  background: transparent;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

.contact-hero-copy::before {
  display: none;
}

.contact-hero-copy .eyebrow {
  margin: 0 0 22px;
  color: rgba(218, 231, 247, .88);
  font-size: 13px;
  font-weight: 700;
}

.contact-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 4.6vw, 76px);
  line-height: 1.06;
  letter-spacing: 0;
}

.contact-title-line {
  width: 58px;
  height: 5px;
  margin: 24px 0 28px;
  background: #2d8cff;
  border-radius: 999px;
  box-shadow: 24px 0 0 rgba(45, 140, 255, .35);
}

.contact-hero-copy p {
  max-width: 510px;
  margin: 26px 0 0;
  color: rgba(238, 246, 255, .94);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 600;
}

.contact-methods {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr 1.02fr;
  margin-top: -58px;
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(8, 35, 77, .12);
}

.method {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 154px;
  padding: 36px 42px;
  border-right: 1px solid var(--line);
  align-items: start;
}

.method:last-child {
  border-right: 0;
}

.method h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
}

.method p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.method strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
  word-break: break-word;
}

.method strong + strong {
  margin-top: 4px;
}

.method[href^="mailto:"] strong {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  font-size: 15px;
}

.contact-why-section {
  padding: 48px 0 52px;
  background: #fff;
}

.contact-why-section h2,
.contact-promise-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.12;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(250px, 1.32fr);
  gap: 14px;
  margin-top: 28px;
  align-items: stretch;
}

.contact-choice-card,
.contact-export-panel {
  min-height: 270px;
  border-radius: 8px;
}

.contact-choice-card {
  padding: 34px 32px;
  background: #fff;
  border: 1px solid rgba(206, 220, 236, .95);
}

.contact-choice-card h3,
.contact-export-panel h3,
.contact-promise-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.contact-choice-card p {
  margin: 30px 0 0;
  color: #3f536d;
  font-size: 16px;
  line-height: 1.85;
}

.contact-export-panel {
  padding: 34px 36px;
  color: #fff;
  background: linear-gradient(135deg, #052650 0%, #062f64 58%, #073b79 100%);
  box-shadow: 0 18px 38px rgba(6, 40, 86, .12);
}

.contact-export-panel h3 {
  color: #fff;
  margin-bottom: 28px;
}

.contact-export-panel p {
  margin: 0;
  padding: 13px 0;
  color: rgba(255, 255, 255, .94);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.contact-export-panel p:last-child {
  border-bottom: 0;
}

.contact-promise-section {
  padding: 52px 0 64px;
  background: #f6f9fd;
}

.contact-promise-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 186px;
  margin-top: 28px;
  background: #fff;
  border: 1px solid rgba(206, 220, 236, .95);
  border-radius: 8px;
  overflow: hidden;
}

.contact-promise-item {
  padding: 36px 58px;
  border-right: 1px solid rgba(206, 220, 236, .95);
}

.contact-promise-item:last-child {
  border-right: 0;
}

.contact-promise-item p {
  margin: 24px 0 0;
  color: #3f536d;
  font-size: 16px;
  line-height: 1.85;
}

@media (max-width: 1180px) {
  .contact-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-export-panel {
    grid-column: 1 / -1;
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .contact-choice-grid,
  .contact-promise-panel {
    grid-template-columns: 1fr;
  }

  .contact-choice-card,
  .contact-export-panel {
    min-height: auto;
    padding: 28px 24px;
  }

  .contact-promise-item {
    padding: 30px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(206, 220, 236, .95);
  }

  .contact-promise-item:last-child {
    border-bottom: 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
}

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

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

label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #cfdbe8;
  border-radius: 4px;
  color: #1c2f47;
  background: #fff;
  outline: 0;
}

textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(6, 43, 93, .1);
}

.form-note {
  margin-top: 14px;
  color: #607289;
  font-size: 12px;
}

.location-card {
  padding: 0;
  overflow: hidden;
}

.location-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.location-map-accurate {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.6)),
    linear-gradient(0deg, rgba(194, 211, 230, .28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 211, 230, .28) 1px, transparent 1px),
    #edf3f9;
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.location-map-accurate::before,
.location-map-accurate::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 130%;
  height: 34px;
  background: rgba(188, 202, 219, .35);
  transform: rotate(-18deg);
}

.location-map-accurate::before {
  top: 58px;
  left: -18%;
}

.location-map-accurate::after {
  bottom: 42px;
  left: -14%;
  transform: rotate(14deg);
}

.location-pin {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
  background: var(--navy);
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 26px rgba(8, 35, 77, .18);
}

.location-pin::after {
  content: "";
  position: absolute;
  inset: 18px;
  background: #fff;
  border-radius: 999px;
}

.location-map-accurate strong,
.location-map-accurate em {
  position: relative;
  z-index: 2;
  display: block;
  color: var(--navy);
}

.location-map-accurate strong {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 900;
}

.location-map-accurate em {
  max-width: 360px;
  margin-top: 6px;
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
}

.location-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 22px;
}

.support-strip {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 26px 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 8px;
}

.support-strip h2,
.support-strip h3 {
  color: #fff;
  margin: 0;
}

.sales-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 34px;
  align-items: center;
}

.faq-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.faq-item {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.faq-answer {
  display: none;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-item.open .faq-answer {
  display: block;
}

.why-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

.export-card {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.export-card h3 {
  color: #fff;
}

.export-card .check-list li {
  color: #fff;
}

.export-card .check-list li::before {
  color: #fff;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 18px;
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}

.promise-row .feature {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.promise-row .feature:last-child {
  border-right: 0;
}

.contact-cta {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
  gap: 38px;
  padding: 30px 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 8px 8px 0 0;
}

.contact-cta h2 {
  color: #fff;
}

.contact-cta img {
  height: 145px;
  object-fit: contain;
}

.hidden {
  display: none !important;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  display: none;
  transform: translateX(-50%);
  padding: 13px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.toast.show {
  display: block;
}

html body .site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  transform: none !important;
}

@media (max-width: 1100px) {
  .container { width: min(100% - 40px, var(--max)); }
  .container.products-layout {
    width: min(100% - 40px, var(--max));
  }
  .products-layout {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 30px;
  }
  .products-layout aside {
    margin-top: 128px;
  }
  .sidebar-card {
    min-height: 620px;
  }
  .sidebar-title {
    min-height: 104px;
    padding: 24px 22px;
  }
  .sidebar-title strong {
    font-size: 21px;
  }
  .category-menu button {
    gap: 12px;
    padding-right: 34px;
  }
  .hero {
    min-height: 590px;
  }
  .hero-grid {
    grid-template-columns: 54% 46%;
  }
  .hero-copy {
    width: calc(100% + 35px);
    margin-right: -35px;
    padding: 42px 92px 30px clamp(36px, 5vw, 70px);
  }
  .hero h1,
  .hero p {
    max-width: 500px;
  }
  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 0;
    width: min(520px, calc(100% - 46px));
    max-width: calc(100% - 46px);
    padding-top: 24px;
  }
  .hero-point {
    min-height: 64px;
    padding: 0 26px;
  }
  .hero-image {
    margin-left: -18px;
    clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%);
  }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-5 { grid-template-columns: repeat(3, 1fr); }
  .cards-6, .app-strip { grid-template-columns: repeat(3, 1fr); }
  .product-list-main {
    min-height: auto;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.product-grid-list .product-card {
    grid-template-columns: 220px 1fr;
  }
  .cta-inner-simple {
    width: min(100% - 40px, 1040px);
  }
  .stage-row { grid-template-columns: repeat(2, 1fr); }
  .stage-card::after { display: none; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .service-capabilities .container { width: min(100% - 40px, var(--max)); }
  .oem-export-grid { grid-template-columns: 1fr; }
  .stats-showcase .stat-card-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats-showcase .stat-card { min-height: 280px; }
}

@media (max-width: 820px) {
  .site-header { height: auto; }
  .nav-wrap {
    height: 68px;
    display: flex;
    justify-content: space-between;
  }
  .brand { min-width: 0; }
  .brand-name { font-size: 30px; }
  .brand-line, .brand-sub, .nav-cta, .nav-socials { display: none; }
  .language-switcher {
    width: auto;
    margin-left: 0;
  }
  .lang-current {
    width: auto;
    min-width: 94px;
  }
  .mobile-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 13px 0; }
  .nav-menu a::after { bottom: 7px; width: 42px; right: auto; }
  .hero-grid,
  .about-band,
  .mission-band,
  .intro-grid,
  .capability-grid,
  .two-panel,
  .service-card-layout,
  .export-layout,
  .products-layout,
  .contact-grid,
  .sales-grid,
  .why-grid,
  .promise-grid,
  .contact-cta,
  .oem-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .products-layout aside {
    margin-top: 0;
  }
  .hero-copy, .band-copy {
    clip-path: none;
    padding: 42px 24px 30px;
    width: 100%;
    margin-right: 0;
  }
  .mission-band::after { display: none; }
  .mission-band .band-copy {
    clip-path: none;
    width: 100%;
    margin-right: 0;
    padding: 42px 24px 34px;
  }
  .mission-band .band-img {
    min-height: 260px;
  }
  .hero-image {
    min-height: 260px;
    margin-left: 0;
    clip-path: none;
  }
  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
  }
  .cards-3,
  .cards-4,
  .cards-5,
  .cards-6,
  .stat-card-row,
  .timeline,
  .contact-methods,
  .support-strip,
  .faq-row,
  .promise-row,
  .choice-steps {
    grid-template-columns: 1fr;
  }
  .category-card { grid-template-columns: 1fr; }
  .category-card img { justify-self: start; margin-top: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .product-head {
    flex-direction: column;
  }
  .product-head-actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid.product-grid-list .product-card {
    display: block;
    min-height: 0;
  }
  .product-grid.product-grid-list .product-card img {
    height: 170px;
    margin: 0 auto 20px;
  }
  .product-pagination {
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-inner-simple {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 24px;
  }
  .cta-badge {
    width: 48px;
    height: 48px;
    border-width: 3px;
  }
  .cta-green-btn {
    width: max-content;
  }
  .contact-hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .contact-hero-copy {
    padding: 42px 24px 72px;
    border-bottom-right-radius: 0;
  }
  .contact-hero-copy h1 {
    font-size: 42px;
  }
  .contact-methods { margin-top: -44px; }
  .method, .stat-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .method:last-child, .stat-card:last-child { border-bottom: 0; }
  .stats-showcase { padding: 46px 0 52px; }
  .stats-showcase .stat-card-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }
  .stats-showcase .stat-card {
    min-height: 245px;
    padding: 30px 30px 28px;
    border-right: 1px solid rgba(214, 226, 240, .9);
    border-bottom: 1px solid rgba(214, 226, 240, .9);
  }
  .stats-title { font-size: 31px; }
  .stats-showcase .stat-card strong { font-size: 54px; }
  .legacy-website-note {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }
  .legacy-website-main {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }
  .legacy-website-icon {
    width: 54px;
    height: 54px;
  }
  .legacy-website-icon::before {
    inset: 14px;
  }
  .legacy-website-icon::after {
    left: 15px;
    right: 15px;
    top: 26px;
  }
  .legacy-website-action {
    width: fit-content;
  }
  .form-grid { grid-template-columns: 1fr; }
  .cap-list { grid-template-columns: 1fr; padding-left: 0; border-left: 0; }
  .workshop-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .partnership { grid-template-columns: 1fr; }
  .service-feature-card { padding: 28px 24px; }
  .process-diagram,
  .export-flow,
  .export-flow-row { grid-template-columns: 1fr; }
  .process-diagram em,
  .export-flow em { display: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-points { grid-template-columns: 1fr; }
  .section { padding: 38px 0; }
  .app-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-cta { padding: 24px; }
}

@media (max-width: 1180px) {
  .product-showcase-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 0 86px;
  }

  .product-showcase-copy {
    max-width: 780px;
  }

  .product-collage {
    height: 500px;
    margin-top: 36px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .product-showcase-hero {
    min-height: auto;
  }

  .product-showcase-inner {
    width: min(100% - 32px, var(--max));
    padding: 42px 0 76px;
  }

  .product-showcase-copy h1 {
    font-size: 38px;
  }

  .product-showcase-copy p {
    margin-top: 24px;
    font-size: 17px;
  }

  .product-showcase-points {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .product-showcase-point {
    padding: 0;
    border-right: 0;
  }

  .product-collage {
    height: 420px;
  }

  .product-collage-card {
    border-width: 3px;
  }

}

.applications-showcase-hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 92px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #fbfdff 0%, #eef5fb 48%, #f8fbff 100%);
}

.applications-showcase-hero::before {
  content: "";
  position: absolute;
  inset: -18% -8% auto 12%;
  height: 78%;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0) 58%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0) 68%);
  transform: skewX(-18deg);
  pointer-events: none;
}

.applications-showcase-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .36;
  background-image: radial-gradient(rgba(32, 93, 159, .2) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  pointer-events: none;
}

.applications-showcase-wrap {
  position: relative;
  z-index: 1;
  width: min(1760px, calc(100vw - 56px));
  max-width: none;
}

.applications-showcase-intro {
  max-width: 820px;
  margin: 0 auto 66px;
  text-align: center;
}

.applications-showcase-intro .eyebrow {
  display: none;
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.applications-showcase-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.05;
  font-weight: 900;
}

.applications-showcase-intro p {
  display: none;
  margin: 22px auto 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.applications-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.applications-feature-card {
  position: relative;
  isolation: isolate;
  min-height: 525px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 22px 42px rgba(8, 43, 77, .18);
}

.applications-feature-card:nth-child(2) {
  transform: translateY(-34px);
}

.applications-feature-card:nth-child(3) {
  transform: translateY(26px);
}

.applications-feature-card:nth-child(4) {
  transform: translateY(-12px);
}

.applications-feature-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(.9) contrast(1.04);
}

.applications-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 37, 79, .12) 0%, rgba(5, 47, 95, .48) 46%, rgba(3, 37, 78, .96) 100%),
    linear-gradient(0deg, rgba(2, 42, 88, .52), rgba(2, 42, 88, 0) 52%);
}

.applications-feature-icon {
  position: absolute;
  left: 42px;
  top: 38%;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 18px 32px rgba(3, 31, 68, .22);
}

.applications-feature-icon svg {
  width: 46px;
  height: 46px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.applications-feature-copy {
  position: absolute;
  left: 42px;
  right: 34px;
  bottom: 42px;
  color: #fff;
}

.applications-feature-mark {
  display: none;
}

.applications-feature-copy h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(25px, 1.65vw, 32px);
  line-height: 1.12;
  font-weight: 900;
  color: #fff;
  overflow-wrap: anywhere;
}

.applications-feature-copy p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.58;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .applications-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .applications-feature-card,
  .applications-feature-card:nth-child(2),
  .applications-feature-card:nth-child(3),
  .applications-feature-card:nth-child(4) {
    transform: none;
  }
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .applications-feature-copy {
    left: 34px;
    right: 24px;
    bottom: 42px;
  }

  .applications-feature-icon {
    left: 34px;
  }

  .applications-feature-copy h2 {
    font-size: 27px;
    line-height: 1.12;
  }
}

@media (max-width: 760px) {
  .applications-showcase-hero {
    padding: 46px 0 58px;
  }

  .applications-showcase-intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .applications-showcase-intro h1 {
    font-size: 36px;
  }

  .applications-showcase-intro p {
    font-size: 17px;
  }

  .applications-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .applications-feature-card {
    min-height: 420px;
  }

  .applications-feature-icon {
    left: 30px;
    width: 78px;
    height: 78px;
  }

  .applications-feature-icon svg {
    width: 38px;
    height: 38px;
  }

  .applications-feature-copy {
    left: 30px;
    right: 26px;
    bottom: 34px;
  }

  .applications-feature-copy h2 {
    font-size: 28px;
  }
}

.solution-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 252, 255, .98) 0%, rgba(239, 247, 253, .96) 38%, rgba(233, 243, 251, .78) 64%, rgba(232, 242, 250, .42) 100%),
    radial-gradient(circle at 10% 12%, rgba(47, 169, 87, .08), transparent 28%),
    linear-gradient(135deg, #f8fcff 0%, #eef5fb 100%);
}

.solution-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, .96) 0%, rgba(248, 252, 255, .72) 34%, rgba(248, 252, 255, .18) 58%, transparent 76%),
    linear-gradient(180deg, rgba(255, 255, 255, .48), transparent 42%);
  pointer-events: none;
}

.solution-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 39% minmax(0, 61%);
  gap: 0;
  align-items: center;
  min-height: 520px;
  padding: 0;
}

.solution-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 92px 0 98px;
  margin-left: 0;
}

.solution-kicker,
.solution-section-title span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: var(--green-dark);
  background: rgba(47, 169, 87, .1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.solution-hero h1 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 2.75vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.solution-hero p {
  max-width: 520px;
  margin: 20px 0 0;
  color: #42536c;
  font-size: 16px;
  line-height: 1.72;
}

.solution-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.solution-primary-btn {
  min-height: 52px;
  padding: 0 32px;
  font-size: 14px;
}

.solution-back-link {
  margin-bottom: 22px;
  background: rgba(255, 255, 255, .82);
}

.solution-hero-image {
  position: relative;
  overflow: hidden;
  height: 520px;
  margin-left: 72px;
  margin-right: calc((100vw - min(100vw - 72px, var(--max))) / -2);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.solution-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, .9) 0%, rgba(248, 252, 255, .44) 26%, transparent 48%),
    linear-gradient(180deg, rgba(248, 252, 255, .16), rgba(248, 252, 255, .18));
  pointer-events: none;
}

.solution-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solution-section {
  padding: 72px 0;
}

.solution-section.compact {
  padding-top: 56px;
}

.solution-soft-band {
  background: #f4f8fc;
}

.solution-pain-band {
  padding: 70px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(40, 112, 207, .08), transparent 34%),
    linear-gradient(180deg, #f5f9fd 0%, #eef5fb 100%);
}

.solution-pain-panel {
  max-width: 1540px;
  padding: 74px 72px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .88) 100%);
  border: 1px solid rgba(222, 233, 244, .9);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(12, 47, 90, .08);
}

.solution-pain-panel .solution-section-title {
  position: relative;
  max-width: 440px;
  margin-bottom: 0;
  padding-top: 34px;
}

.solution-pain-panel .solution-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 4px;
  background: #1f66d1;
}

.solution-pain-panel .solution-section-title::after {
  content: "";
  display: block;
  width: 104px;
  height: 3px;
  margin-top: 34px;
  background: rgba(196, 212, 229, .7);
}

.solution-pain-panel .solution-section-title h2 {
  margin-top: 0;
  font-size: clamp(42px, 4.1vw, 66px);
  line-height: 1.18;
}

.solution-pain-panel .solution-section-title p {
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.65;
}

.solution-section-title {
  max-width: 760px;
  margin-bottom: 30px;
}

.solution-section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.solution-section-title h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 1.18;
}

.solution-section-title p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.solution-section-title.light span {
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

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

.solution-mini-card,
.solution-stage-card,
.solution-product-card {
  border: 1px solid rgba(214, 226, 240, .95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 35, 77, .045);
}

.solution-mini-card {
  min-height: 150px;
  padding: 24px 24px 22px;
}

.solution-mini-card strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.solution-mini-card p {
  margin: 13px 0 0;
  color: #5a6c83;
  font-size: 14px;
  line-height: 1.62;
}

.solution-two-col {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 56px;
  align-items: center;
}

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

.solution-problem-list div {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 26px 30px 26px 86px;
  color: #233a57;
  background: #fff;
  border: 1px solid rgba(227, 236, 246, .75);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(24, 61, 103, .07);
  font-size: 21px;
  font-weight: 800;
}

.solution-problem-list div::before {
  content: "!";
  position: absolute;
  left: 38px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  color: #fff;
  background: linear-gradient(135deg, #2574d8 0%, #0b4ca7 100%);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(31, 102, 209, .22);
  font-size: 23px;
  font-weight: 900;
  line-height: 34px;
  text-align: center;
}

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

.solution-stage-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 30px 28px 28px;
}

.solution-stage-card::after {
  content: ">";
  position: absolute;
  right: -20px;
  top: 50%;
  color: var(--navy);
  font-size: 25px;
  font-weight: 900;
  transform: translateY(-50%);
}

.solution-stage-card:last-child::after {
  content: none;
}

.solution-stage-no {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.solution-stage-card img {
  width: 100%;
  height: 150px;
  margin: 18px 0 20px;
  object-fit: contain;
}

.solution-stage-card h3,
.solution-product-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.solution-stage-card p,
.solution-product-card p {
  margin: 14px 0 0;
  color: #5b6d84;
  font-size: 14px;
  line-height: 1.66;
}

.solution-stage-card strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: #203956;
  font-size: 13px;
  line-height: 1.55;
}

.solution-product-band {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

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

.solution-product-card {
  display: block;
  min-height: 332px;
  padding: 26px 26px 24px;
}

.solution-product-card img {
  width: 100%;
  height: 150px;
  margin-bottom: 22px;
  object-fit: contain;
}

.solution-custom-grid {
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 56px;
  align-items: center;
}

.solution-custom-image {
  padding: 24px;
  background: #f4f8fc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-custom-image img {
  width: 100%;
  height: 360px;
  object-fit: contain;
}

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

.solution-tag-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 17px;
  color: var(--navy);
  background: #f4f8fc;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.solution-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 35, 77, .04);
}

.solution-param-table {
  width: 100%;
  border-collapse: collapse;
}

.solution-param-table th,
.solution-param-table td {
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.55;
}

.solution-param-table tr:last-child th,
.solution-param-table tr:last-child td {
  border-bottom: 0;
}

.solution-param-table th {
  width: 240px;
  color: var(--navy);
  background: #f4f8fc;
  font-weight: 900;
}

.solution-param-table td {
  color: #4e6077;
}

.solution-advantage-band {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
}

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

.solution-advantage-grid div {
  min-height: 174px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
}

.solution-advantage-grid strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.solution-advantage-grid p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.62;
}

.solution-cta {
  padding: 42px 0;
  background: #f4f8fc;
}

.solution-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 40px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}

.solution-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
}

.solution-cta p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
}

@media (max-width: 1180px) {
  .solution-two-col,
  .solution-custom-grid {
    grid-template-columns: 1fr;
  }

  .solution-pain-panel {
    padding: 56px 40px;
  }

  .solution-pain-panel .solution-section-title {
    max-width: 680px;
    margin-bottom: 30px;
  }

  .solution-hero-grid {
    grid-template-columns: 44% minmax(0, 56%);
  }

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

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

@media (max-width: 760px) {
  .solution-hero::after {
    background: linear-gradient(180deg, rgba(248, 252, 255, .94) 0%, rgba(248, 252, 255, .76) 100%);
  }

  .solution-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 42px 0 34px;
  }

  .solution-hero-copy {
    padding: 0;
    margin-left: 0;
  }

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

  .solution-hero-image {
    height: 260px;
    margin: 0 calc((100vw - 100%) / -2);
    border-radius: 0;
  }

  .solution-hero-image img {
    height: 100%;
  }

  .solution-section {
    padding: 48px 0;
  }

  .solution-pain-band {
    padding: 42px 0;
  }

  .solution-pain-panel {
    padding: 38px 22px;
  }

  .solution-pain-panel .solution-section-title {
    padding-top: 24px;
  }

  .solution-pain-panel .solution-section-title h2 {
    font-size: 34px;
  }

  .solution-pain-panel .solution-section-title p {
    margin-top: 22px;
    font-size: 16px;
  }

  .solution-problem-list div {
    min-height: 82px;
    padding: 20px 20px 20px 66px;
    font-size: 17px;
  }

  .solution-problem-list div::before {
    left: 24px;
    width: 30px;
    height: 30px;
    font-size: 19px;
    line-height: 30px;
  }

  .solution-system-grid,
  .solution-problem-list,
  .solution-stage-grid,
  .solution-product-grid,
  .solution-tag-grid,
  .solution-advantage-grid,
  .solution-cta-inner {
    grid-template-columns: 1fr;
  }

  .solution-stage-card::after {
    content: none;
  }

  .solution-param-table th,
  .solution-param-table td {
    display: block;
    width: 100%;
  }

  .solution-cta-inner {
    padding: 28px 24px;
  }
}

.product-detail-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(47, 169, 87, .1), transparent 22%),
    radial-gradient(circle at 70% 42%, rgba(78, 153, 235, .16), transparent 26%),
    linear-gradient(115deg, #fbfdff 0%, #eff7ff 55%, #f9fcff 100%);
}

.product-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background:
    linear-gradient(18deg, transparent 28%, rgba(131, 186, 241, .34) 28.2%, transparent 29%),
    linear-gradient(20deg, transparent 34%, rgba(131, 186, 241, .3) 34.2%, transparent 35%),
    linear-gradient(22deg, transparent 40%, rgba(131, 186, 241, .25) 40.2%, transparent 41%);
  pointer-events: none;
}

.product-detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 34px;
  align-items: center;
  min-height: 540px;
  padding: 46px 0 22px;
}

.product-series-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 20px;
  color: var(--green-dark);
  background: rgba(47, 169, 87, .1);
  border: 1px solid rgba(47, 169, 87, .2);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8, 35, 77, .06);
  font-size: 15px;
  font-weight: 900;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(6, 43, 93, .16);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8, 35, 77, .055);
  font-size: 14px;
  font-weight: 900;
}

.product-back-link span {
  display: inline-block;
  margin-right: 5px;
  line-height: 1;
  transform: translateY(-1px);
}

.product-detail-copy h1 {
  margin: 22px 0 0;
  color: var(--navy);
  font-size: clamp(54px, 5vw, 88px);
  line-height: 1;
  letter-spacing: 0;
}

.product-detail-copy h1.product-title-compact {
  max-width: 680px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.08;
}

.product-title-line {
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 16px;
  background: var(--green);
  border-radius: 999px;
}

.product-detail-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #304863;
  font-size: 18px;
  line-height: 1.65;
}

.product-standard-row {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  min-height: 54px;
  margin-top: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e5f2;
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(8, 35, 77, .055);
}

.product-standard-row span,
.product-standard-row strong {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.product-standard-row span {
  border-right: 1px solid #d9e5f2;
}

.product-hero-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin-top: 16px;
}

.product-hero-specs div {
  min-height: 88px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid #dce7f3;
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(8, 35, 77, .05);
}

.product-hero-specs span,
.product-hero-specs em,
.product-advantage-strip em {
  display: block;
  font-style: normal;
}

.product-hero-specs span {
  color: #526b87;
  font-size: 13px;
  font-weight: 900;
}

.product-hero-specs strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.12;
}

.product-hero-specs em {
  margin-top: 4px;
  color: #596d82;
  font-size: 13px;
  font-weight: 700;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.product-detail-primary {
  min-height: 56px;
  padding: 0 34px;
  font-size: 15px;
}

.product-btn-arrow {
  display: inline-block;
  margin-left: 12px;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  transform: translateY(-1px);
}

.product-detail-file {
  font-size: 14px;
}

.product-detail-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-detail-visual img {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 940px;
  height: 550px;
  object-fit: contain;
  transform: translateX(-3%) scale(1.3);
  transform-origin: center;
}

.product-detail-visual.is-empty::after {
  content: "";
  position: relative;
  z-index: 3;
  display: block;
  width: min(560px, 76%);
  height: 330px;
}

.product-halo {
  position: absolute;
  left: 9%;
  top: 1%;
  z-index: 1;
  width: min(450px, 54vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(149, 198, 247, .48), rgba(255, 255, 255, .14));
  border: 1px solid rgba(255, 255, 255, .65);
}

.product-platform {
  position: absolute;
  left: 9%;
  bottom: 22px;
  z-index: 2;
  width: min(500px, 56vw);
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(125, 185, 242, .42));
  border: 4px solid rgba(255, 255, 255, .75);
  box-shadow: 0 18px 30px rgba(55, 128, 212, .18);
}

.product-air-lines {
  position: absolute;
  inset: 12% -8% 10% 10%;
  z-index: 0;
  opacity: .58;
  background:
    repeating-linear-gradient(16deg, transparent 0 18px, rgba(129, 184, 239, .32) 19px, transparent 21px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 84%, transparent 100%);
}

.product-advantage-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 18px;
  padding: 22px 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
  border-radius: 10px;
  box-shadow: 0 20px 42px rgba(5, 42, 91, .18);
}

.product-advantage-strip div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  min-height: 72px;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.product-advantage-strip div:last-child {
  border-right: 0;
}

.product-advantage-strip strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.product-advantage-strip em {
  margin-top: 8px;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

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

.product-detail-section.compact {
  padding-top: 34px;
}

.product-detail-title h2,
.product-use-grid h2,
.product-detail-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.18;
}

.product-detail-title p,
.product-use-grid p,
.product-detail-cta p {
  margin: 14px 0 0;
  color: #5b6d84;
  font-size: 15px;
  line-height: 1.7;
}

.product-standard-badge {
  width: 92px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #5a9bd8;
  border: 4px solid #3f78ac;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
  font-size: 17px;
  font-weight: 900;
}

.product-tech-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0) 0 28%, rgba(255, 255, 255, .75) 28.2%, transparent 29%),
    radial-gradient(circle at 92% 10%, rgba(92, 156, 223, .12), transparent 24%),
    linear-gradient(180deg, #eef5fc 0%, #f7fbff 100%);
}

.product-tech-section::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 18px;
  width: 360px;
  height: 220px;
  opacity: .45;
  background-image: radial-gradient(rgba(6, 43, 93, .16) 2px, transparent 2px);
  background-size: 16px 16px;
  transform: skewX(-18deg);
  pointer-events: none;
}

.product-detail-title.center {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.product-detail-title.center h2 {
  font-size: clamp(40px, 3.4vw, 58px);
  font-weight: 900;
}

.product-detail-title.center h2::after {
  content: "";
  display: block;
  width: 112px;
  height: 7px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), #2b8bf0);
}

.product-detail-title.center p {
  margin-top: 28px;
  font-size: 20px;
  color: #596a80;
}

.product-param-panel {
  position: relative;
  z-index: 1;
  padding: 26px 34px 40px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(220, 232, 245, .92);
  border-radius: 22px;
  box-shadow: 0 26px 54px rgba(8, 35, 77, .14);
}

.product-param-panel + .product-param-panel {
  margin-top: 24px;
}

.product-param-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.product-param-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 310px;
  min-height: 58px;
  padding: 0 34px 0 26px;
  color: var(--navy);
  background: linear-gradient(105deg, #f8fbff 0%, #e8f2ff 72%, transparent 72%);
  border-radius: 12px 0 0 12px;
  font-size: 25px;
  font-weight: 900;
}

.product-param-tab span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2b8bf0, var(--navy));
  border-radius: 8px;
  box-shadow: 0 10px 18px rgba(43, 139, 240, .2);
  font-size: 18px;
}

.product-param-note {
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
}

.product-param-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid rgba(214, 226, 240, .95);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.product-param-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: center;
}

.product-param-table th,
.product-param-table td {
  padding: 27px 16px;
  border: 2px solid #fff;
  font-size: 20px;
  line-height: 1.35;
}

.product-param-table th {
  color: #fff;
  background: linear-gradient(180deg, #1763c2, #0d4f9e);
  font-weight: 900;
}

.product-param-table td {
  color: #0f253f;
  background: linear-gradient(180deg, #f8fbff, #eef5fc);
  font-weight: 700;
}

.product-param-table tr:nth-child(odd) td {
  background: linear-gradient(180deg, #eef6ff, #dfeaf7);
}

.product-tech-note {
  margin: 22px auto 0;
  max-width: 1180px;
  padding: 18px 22px;
  color: #405873;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(214, 226, 240, .95);
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.75;
}

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

.product-spec-card {
  min-height: 166px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 35, 77, .035);
}

.product-spec-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
}

.product-spec-card p {
  margin: 13px 0 0;
  color: #5b6d84;
  font-size: 14px;
  line-height: 1.62;
}

.product-use-band {
  background: #f4f8fc;
}

.product-use-grid {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 40px;
  align-items: center;
}

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

.product-use-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.product-detail-cta {
  padding: 42px 0;
  background: #fff;
}

.product-detail-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
  border-radius: 8px;
}

.product-detail-cta h2 {
  color: #fff;
}

.product-detail-cta p {
  max-width: 740px;
  color: rgba(255, 255, 255, .78);
}

@media (max-width: 1180px) {
  .product-detail-grid,
  .product-use-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    min-height: auto;
  }

  .product-hero-specs,
  .product-advantage-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-visual {
    min-height: 470px;
  }

  .product-detail-visual img {
    transform: scale(1.24);
  }

  .product-advantage-strip div:nth-child(2) {
    border-right: 0;
  }

  .product-advantage-strip div:nth-child(-n + 2) {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .product-advantage-strip div:nth-child(n + 3) {
    padding-top: 18px;
  }

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

}

@media (max-width: 760px) {
  .product-detail-grid {
    gap: 30px;
    min-height: auto;
    padding: 42px 0 28px;
  }

  .product-detail-copy h1 {
    margin-top: 20px;
    font-size: 42px;
  }

  .product-detail-copy p {
    font-size: 16px;
  }

  .product-series-pill {
    min-height: 30px;
    padding: 0 15px;
    font-size: 13px;
  }

  .product-standard-row {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .product-standard-row span,
  .product-standard-row strong {
    height: 44px;
    justify-content: center;
  }

  .product-standard-row span {
    border-right: 0;
    border-bottom: 1px solid #d9e5f2;
  }

  .product-hero-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-hero-specs div {
    min-height: 96px;
    padding: 15px 13px;
  }

  .product-hero-specs strong {
    font-size: 17px;
  }

  .product-detail-visual {
    min-height: 330px;
    padding: 0;
  }

  .product-detail-visual img {
    height: 360px;
    transform: scale(1.18);
  }

  .product-halo {
    left: 7%;
    top: 12%;
    width: 300px;
  }

  .product-platform {
    left: 8%;
    bottom: 18px;
    width: 310px;
    height: 42px;
  }

  .product-air-lines {
    display: none;
  }

  .product-advantage-strip {
    grid-template-columns: 1fr;
    margin-bottom: 14px;
    padding: 8px 18px;
  }

  .product-advantage-strip div {
    grid-template-columns: 1fr;
    min-height: 68px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .product-advantage-strip div:nth-child(-n + 2),
  .product-advantage-strip div:nth-child(n + 3) {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .product-advantage-strip div:last-child {
    border-bottom: 0;
  }

  .product-advantage-strip strong {
    font-size: 15px;
  }

  .product-advantage-strip em {
    font-size: 12px;
  }

  .product-detail-section {
    padding: 44px 0;
  }

  .product-detail-title.center {
    margin-bottom: 26px;
  }

  .product-detail-title.center h2 {
    font-size: 36px;
  }

  .product-detail-title.center p {
    margin-top: 18px;
    font-size: 16px;
  }

  .product-param-panel {
    padding: 18px 14px 22px;
    border-radius: 14px;
  }

  .product-param-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .product-param-tab {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 20px;
  }

  .product-param-tab span {
    width: 32px;
    height: 32px;
  }

  .product-param-note {
    font-size: 14px;
  }

  .product-param-table th,
  .product-param-table td {
    padding: 18px 12px;
    font-size: 15px;
  }

  .product-hero-intro,
  .product-spec-grid,
  .product-use-list,
  .product-detail-cta-inner {
    grid-template-columns: 1fr;
  }

  .product-use-list span {
    justify-content: flex-start;
  }

  .product-detail-cta-inner {
    padding: 28px 24px;
  }
}
