:root {
  --color-primary: #dc0016;
  --color-primary-dark: #ba0013;
  --color-gold: #c7963a;
  --color-gold-dark: #b6842d;
  --color-text: #171717;
  --color-muted: #6f6f6f;
  --color-line: #dddddd;
  --container: 1200px;
  --shadow-soft: 0 18px 48px rgba(10, 10, 10, 0.08);
  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-text);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

body.has-video-modal {
  overflow: hidden;
}

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

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

template {
  display: none;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  padding-top: 30px;
}

.header-shell {
  width: min(calc(100% - 84px), 1440px);
}

.header-inner {
  display: grid;
  grid-template-columns: 176px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 106px;
}

.brand img {
  width: 106px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-top: 2px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  left: 50%;
  bottom: -44px;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
  content: "";
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.site-nav a.is-active {
  color: var(--color-primary);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header-service {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
}

.header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: transform var(--transition-fast);
}

.header-search:hover,
.header-search:focus-visible {
  transform: translateY(-1px);
}

.header-search-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.header-divider {
  height: 1px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero-section {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: #fff;
  background: #06090d;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

/*.hero-backdrop {*/
/*  background:*/
/*    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 38%, rgba(0, 0, 0, 0.06) 100%),*/
/*    url("https://placehold.co/1920x780") center center / cover no-repeat;*/
/*}*/

.hero-overlay {
  background:
    radial-gradient(circle at 18% 48%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-shell {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 780px;
  padding: 202px 0 86px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 540px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.hero-content h1 {
  margin: 0;
  font-size: 70px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy-en {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 300;
}

.hero-actions {
  margin-top: 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  gap: 16px;
  color: #fff;
  background: var(--color-primary);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ef0019;
  box-shadow: 0 16px 38px rgba(220, 0, 22, 0.24);
}

.button-white {
  gap: 14px;
  color: var(--color-primary);
  background: #fff;
}

.button-arrow {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.button-arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-58%, -50%) rotate(45deg);
  content: "";
}

.button-arrow-red {
  color: var(--color-primary);
}

.hero-video {
  position: absolute;
  right: 46px;
  bottom: 44px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.hero-video:hover,
.hero-video:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
}

.hero-video.is-playing .hero-video-icon {
  width: 18px;
  height: 18px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0 34%, transparent 34% 66%, rgba(0, 0, 0, 0.55) 66% 100%);
}

.hero-video-icon {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid rgba(0, 0, 0, 0.55);
}

.hero-video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.hero-video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-modal-video {
  width: min(100%, 1400px);
  max-height: calc(100vh - 64px);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.96);
  transition: transform 320ms ease;
}

.hero-video-modal.is-open .hero-modal-video {
  transform: scale(1);
}

.hero-video-modal-toggle {
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

.hero-video-modal-toggle .hero-video-icon {
  width: 18px;
  height: 18px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0 34%, transparent 34% 66%, rgba(0, 0, 0, 0.55) 66% 100%);
}

.section {
  padding: 78px 0;
}

.section-product {
  background: #efefef;
}

.section-solution {
  padding-bottom: 0;
}

.section-about {
  padding-top: 0;
  padding-bottom: 0;
}

.section-news,
.section-careers,
.site-footer {
  background: #ffffff;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section-heading h2,
.about-copy h2,
.careers-panel h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}

.section-heading h2 span,
.about-copy h2 span,
.careers-panel h2 span {
  margin-left: 10px;
}

.section-heading p {
  max-width: 820px;
  margin: 16px 0 0;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}

.section-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 28px;
  padding: 0 16px 0 18px;
  border-radius: 3px;
  background: var(--color-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.section-action-icon {
  position: relative;
  width: 13px;
  height: 13px;
  flex: none;
}

.section-action-icon::before,
.section-action-icon::after {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 1px;
  content: "";
}

.section-action-icon::before {
  left: 0;
  top: 0;
  box-shadow: 0 8px 0 #fff;
}

.section-action-icon::after {
  right: 0;
  top: 0;
  box-shadow: 0 8px 0 #fff;
}

.section-action:hover,
.section-action:focus-visible {
  background: var(--color-gold-dark);
}

.product-grid {
  display: grid;
  gap: 12px;
}

.product-grid-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 12px;
}

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

.product-card {
  background: #fff;
}

.product-card-featured {
  position: relative;
  min-height: 286px;
  border: 1px solid #e7e7e7;
  overflow: hidden;
}

.product-media-featured {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-media-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy {
  position: relative;
  z-index: 1;
  width: 42%;
  min-height: 286px;
  padding: 58px 34px 34px;
}

.product-subtitle {
  margin: 0 0 12px;
  color: #303030;
  font-size: 14px;
  font-weight: 700;
}

.product-copy h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.18;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-top: 24px;
  padding: 0 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.mini-link-outline {
  padding: 0 14px;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.product-note {
  position: absolute;
  bottom: 28px;
  left: 34px;
  margin: 0;
  color: #9f9f9f;
  font-size: 14px;
}

.product-card-compact {
  border: 1px solid #ededed;
}

.product-media-compact {
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: #fff;
}

.product-media-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-compact-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px 22px;
}

.product-type {
  margin: 0 0 6px;
  color: #aeaeae;
  font-size: 14px;
}

.product-compact-copy h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.solution-layout {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 600px;
  overflow: hidden;
}

.solution-layout-inner {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.solution-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.solution-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-menu {
  position: relative;
  z-index: 1;
  width: min(42%, 504px);
  min-height: 600px;
  margin-left: max(calc((100vw - var(--container)) / 2), 24px);
  background: #fff;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 0 36px;
  border-top: 1px solid #ececec;
}

.solution-item:first-child {
  border-top: 0;
}

.solution-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.solution-icon {
  position: relative;
  flex: none;
  width: 24px;
  height: 24px;
  border: 2px solid #111;
  border-radius: 5px;
}

.solution-icon-monitor {
  border-radius: 50%;
}

.solution-icon-link::after,
.solution-icon-system::after,
.solution-icon-target::after,
.solution-icon-drop::after,
.solution-icon-doc::after,
.solution-icon-monitor::after {
  position: absolute;
  inset: 5px;
  border-radius: 2px;
  background: #111;
  content: "";
}

.solution-icon-monitor::after {
  inset: auto 5px 4px;
  height: 3px;
}

.solution-icon-link::after {
  inset: 9px 3px;
  height: 2px;
}

.solution-icon-system::after {
  inset: 4px;
  background: linear-gradient(90deg, #111 0 30%, transparent 30% 38%, #111 38% 68%, transparent 68% 76%, #111 76% 100%);
}

.solution-icon-target::after {
  inset: 4px;
  border: 2px solid #111;
  background: transparent;
  border-radius: 50%;
}

.solution-icon-drop::after {
  inset: 4px 7px 5px;
  border-radius: 50% 50% 60% 60%;
}

.about-layout {
  display: grid;
  grid-template-columns: 57.5% 42.5%;
  width: 100vw;
  height: 580px;
  margin-left: calc(50% - 50vw);
  gap: 0;
}

.about-visual {
  height: 100%;
  overflow: hidden;
}

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

.about-panel {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  height: 100%;
  padding: 60px;
  background: var(--color-primary);
  color: #fff;
}

.about-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.68;
}

.about-copy .button {
  margin-top: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
  align-content: start;
  padding-top: 65px;
}

.about-stats strong {
  font-size: 60px;
  line-height: 0.88;
  font-weight: 800;
}

.about-stats span {
  margin-left: 6px;
  font-size: 18px;
  font-weight: 700;
}

.about-stats p {
  margin: 8px 0 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
}

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

.news-card {
  background: #f6f6f6;
}

.news-media {
  aspect-ratio: 1.2 / 0.78;
  overflow: hidden;
}

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

.news-copy {
  min-height: 224px;
  padding: 38px 38px 32px;
}

.news-copy h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.4;
}

.news-copy p {
  margin: 30px 0 0;
  color: #989898;
  font-size: 14px;
  line-height: 1.9;
}

.section-careers {
  padding-top: 10px;
}

.careers-layout {
  display: grid;
  grid-template-columns: 57.5% 42.5%;
  width: 100vw;
  height: 580px;
  margin-left: calc(50% - 50vw);
  gap: 0;
}

.careers-visual {
  height: 100%;
  overflow: hidden;
}

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

.careers-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(135deg, #dc0016 0%, #da0016 42%, #d94c14 100%);
  color: #fff;
}

.careers-panel::before,
.careers-panel::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.careers-panel::before {
  width: 520px;
  height: 520px;
  right: -40px;
  bottom: -120px;
  background: rgba(199, 146, 38, 0.82);
}

.careers-panel::after {
  width: 370px;
  height: 370px;
  left: 60px;
  bottom: -110px;
  background: rgba(199, 146, 38, 0.86);
}

.careers-panel-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 90px;
}

.careers-lead {
  margin: 14px 0 0;
  font-size: 17px;
  font-weight: 700;
}

.careers-description {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.72;
}

.career-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin-top: 60px;
}

.career-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 20px;
  border-radius: 9px;
  background: #fff;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.career-action-icon {
  flex: none;
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 6px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr auto;
  gap: 34px;
  align-items: center;
  padding: 0px 0 36px;
}

.footer-brand-logo {
  width: 196px;
  max-width: 100%;
}

.footer-contact {
  margin-top: 34px;
}

.footer-contact p {
  margin: 0 0 8px;
  color: #3a3a3a;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-sep {
  display: inline-block;
  width: 28px;
}

.footer-nav {
  display: grid;
  gap: 8px;
  justify-self: center;
}

.footer-nav a {
  color: #222;
  font-size: 16px;
  font-weight: 700;
}

.footer-qrs {
  display: flex;
  gap: 14px;
}

.footer-qr {
  display: block;
  width: 138px;
}

.footer-qr-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 204px;
  padding: 12px 10px 14px;
  border: 1px solid #d9d9d9;
  background: #fff;
}

.footer-qr-image {
  width: 116px;
  height: 116px;
  object-fit: cover;
}

.footer-qr-label {
  display: grid;
  gap: 2px;
  margin: 0;
  color: #222;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid #dedede;
  padding: 14px 0 18px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #7c7c7c;
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .site-nav {
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

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

  .news-grid {
    gap: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 0.8fr;
  }

  .footer-qrs {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding-top: 18px;
  }

  .header-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    position: relative;
    display: flex;
    gap: 18px;
  }

  .brand {
    width: 106px;
  }

  .brand img {
    width: 106px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header-tools,
  .header-divider {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(8, 10, 13, 0.92);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 18px;
    border-radius: 16px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-section,
  .hero-shell {
    min-height: 720px;
  }

  .hero-shell {
    padding: 160px 0 56px;
    align-items: center;
  }

  .hero-content {
    width: min(100%, 360px);
  }

  .eyebrow {
    font-size: 18px;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .hero-copy-en {
    font-size: 18px;
  }

  .hero-video {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .section-header {
    flex-direction: column;
  }

  .product-grid-featured,
  .news-grid,
  .career-actions,
  .about-layout,
  .careers-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .careers-layout {
    width: auto;
    height: auto;
    margin-left: 0;
  }

  .about-visual,
  .about-panel,
  .careers-visual,
  .careers-panel,
  .careers-panel-inner {
    height: auto;
  }

  .solution-layout {
    width: auto;
    margin-left: 0;
    min-height: 320px;
  }

  .solution-layout-inner {
    min-height: 320px;
  }

  .solution-scene {
    min-height: 320px;
  }

  .solution-menu {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }

  .about-panel,
  .careers-panel-inner {
    padding: 42px 26px;
  }

  .about-stats {
    gap: 28px 20px;
  }

  .news-copy {
    min-height: unset;
    padding: 28px 26px;
  }

  .footer-nav {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  /* .container {
    width: min(calc(100% - 28px), var(--container));
  } */

  .hero-section,
  .hero-shell {
    min-height: 640px;
  }

  .hero-shell {
    padding-top: 146px;
  }

  .hero-content {
    width: min(100%, 300px);
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .hero-content h1 {
    max-width: 7ch;
    font-size: 34px;
  }

  .hero-copy-en {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .product-grid-compact,
  .about-stats,
  .career-actions {
    grid-template-columns: 1fr;
  }

  .product-card-featured {
    min-height: auto;
  }

  .product-media-featured {
    position: relative;
    inset: auto;
    min-height: 220px;
  }

  .product-copy {
    width: 100%;
    min-height: auto;
    padding: 24px 20px 64px;
  }

  .product-copy h3,
  .section-heading h2,
  .about-copy h2,
  .careers-panel h2,
  .news-copy h3 {
    font-size: 22px;
  }

  .product-compact-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .solution-item {
    min-height: 72px;
    padding: 0 18px;
  }

  .solution-item h3 {
    font-size: 16px;
  }

  .about-stats strong {
    font-size: 48px;
  }

  .careers-panel::before {
    width: 320px;
    height: 320px;
    right: -50px;
  }

  .careers-panel::after {
    width: 220px;
    height: 220px;
    left: 12px;
  }

  .career-action {
    min-height: 62px;
    padding-inline: 20px;
    font-size: 16px;
  }

  .footer-brand-logo {
    width: 196px;
  }

  .footer-contact-sep {
    display: none;
  }

  .footer-qrs {
    flex-wrap: wrap;
  }

  .footer-qr {
    width: 132px;
  }
}
