:root {
  --blue: #0c82e9;
  --blue-dark: #0b67c8;
  --cyan: #16bdd6;
  --red: #c40012;
  --green: #62c96f;
  --ink: #20242a;
  --muted: #6c737d;
  --line: #e7eaf0;
  --soft: #f4f6fb;
  --panel: #eef8fc;
  --header: 120px;
  --max: 1540px;
  --wide: 1650px;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Yu Gothic", Meiryo, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(231, 235, 242, 0.72);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.header-inner {
  width: min(var(--max), calc(100% - 240px));
  min-height: var(--header);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 42px;
}

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

.brand-mark {
  position: relative;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(196, 0, 18, 0.14);
}

.brand-mark span,
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: #fff;
}

.brand-mark span,
.brand-mark::before {
  top: 12px;
  width: 12px;
  height: 34px;
  border-radius: 10px;
}

.brand-mark span {
  left: 14px;
}

.brand-mark::before {
  right: 14px;
}

.brand-mark::after {
  left: 14px;
  bottom: 12px;
  width: 32px;
  height: 17px;
  background: transparent;
  border: 11px solid #fff;
  border-top: 0;
  border-radius: 0 0 17px 17px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  justify-content: flex-start;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: var(--header);
  color: #111;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--blue);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 58px;
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% - 26px);
  transform: translate(-50%, 12px);
  min-width: 342px;
  padding: 22px 30px;
  background: #fff;
  border: 1px solid #f0f2f6;
  box-shadow: 0 26px 48px rgba(25, 45, 72, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 160ms ease;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px 28px;
}

.compact-menu {
  min-width: 150px;
  grid-template-columns: 1fr;
  text-align: center;
}

.solution-menu {
  width: min(680px, calc(100vw - 48px));
  min-width: 560px;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 14px 34px;
}

.dropdown a {
  color: #111;
  font-size: 0.95rem;
  white-space: nowrap;
}

.solution-menu a {
  line-height: 1.35;
  white-space: normal;
}

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

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.language-menu {
  position: relative;
  z-index: 2;
}

.language-switch {
  min-width: 130px;
  height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 25px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(12, 130, 233, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.language-switch:hover {
  background: var(--blue-dark);
}

.language-switch::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease, margin 160ms ease;
}

.language-menu.is-open .language-switch::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.language-switch-current {
  font-weight: 700;
}

.language-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 160px;
  padding: 8px;
  background: #fff;
  border: 1px solid #eef1f6;
  box-shadow: 0 22px 42px rgba(25, 45, 72, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-menu.is-open .language-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #1b2430;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  white-space: nowrap;
}

.language-option:hover,
.language-option:focus-visible {
  background: #f4f8fc;
  color: var(--blue);
  outline: none;
}

.language-option.is-active {
  color: var(--blue);
  background: #eef7ff;
}

.language-option-short {
  font-size: 0.78rem;
  font-weight: 700;
  color: currentColor;
}

.contact-hero p span:last-child,
.contact-info p span:last-child,
.footer-contact p {
  white-space: pre-line;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: #111;
}

.hero {
  min-height: calc(100vh - var(--header));
  padding: 0;
  background: #fff;
}

.hero-media {
  position: relative;
  width: min(var(--wide), calc(100% - 256px));
  margin: 0 auto;
  overflow: hidden;
  max-height: 1000px;
  transition: max-height 420ms ease, opacity 320ms ease, transform 420ms ease;
  -webkit-animation: heroVideoIn 760ms ease both;
          animation: heroVideoIn 760ms ease both;
}

.hero-media img {
  width: 100%;
  height: min(calc(100vh - var(--header)), 790px);
  min-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero-ring,
.hero-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
}

.hero-ring {
  border: 4px solid rgba(255, 255, 255, 0.95);
  border-right-color: rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.hero-close {
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  cursor: pointer;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-close span,
.hero-close span::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero-close span {
  transform: rotate(45deg);
}

.hero-close span::before {
  left: 0;
  top: 0;
  transform: rotate(90deg);
}

.hero-close:hover,
.hero-close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  outline: 0;
  transform: rotate(90deg) scale(1.06);
}

.hero.is-closed {
  min-height: 0;
  overflow: hidden;
}

.hero.is-closed .hero-media {
  max-height: 0;
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

.section {
  position: relative;
  padding: 110px 0;
  scroll-margin-top: var(--header);
}

.content-shell,
.section-heading,
.solution-feature,
.solution-grid,
.about-block,
.values-block,
.cert-section,
.clients,
.news-grid,
.contact-content {
  width: min(var(--max), calc(100% - 240px));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.section-heading span {
  color: #363a42;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 300;
}

.section-heading h2 {
  margin: 8px 0 6px;
  color: var(--blue);
  font-size: 3rem;
  line-height: 1.1;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #303740;
  font-weight: 700;
}

.section-heading b {
  position: absolute;
  right: 10%;
  top: 0;
  z-index: -1;
  color: #f0f2f9;
  font-size: 15rem;
  line-height: 0.8;
  font-weight: 800;
}

.offset-heading {
  margin-bottom: 42px;
}

.scenario-map {
  position: relative;
  width: min(1120px, calc(100% - 240px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.scenario-map::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 92px;
  z-index: 0;
  border-top: 2px dashed #dfe5ed;
}

.scenario-map article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.scenario-map img {
  width: 164px;
  height: 164px;
  margin: 0 auto 22px;
  border: 8px solid #fff;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 16px 36px rgba(31, 55, 84, 0.14);
}

.scenario-map h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.scenario-map p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.solution-overview {
  overflow: hidden;
  background: #fff;
}

.solution-overview::before {
  content: "";
  position: absolute;
  left: -160px;
  top: 260px;
  width: 520px;
  height: 660px;
  background: #f4f7fb;
  transform: skewY(-7deg);
}

.solution-overview::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 210px;
  width: 500px;
  height: 680px;
  background: var(--blue);
  -webkit-clip-path: polygon(28% 0, 100% 0, 100% 100%, 15% 100%, 0 70%, 22% 48%, 0 24%);
          clip-path: polygon(28% 0, 100% 0, 100% 100%, 15% 100%, 0 70%, 22% 48%, 0 24%);
}

.solution-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 70px;
  align-items: center;
  min-height: 420px;
}

.feature-visual img {
  width: 100%;
  aspect-ratio: 2.5 / 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-weight: 700;
}

.feature-copy h3 {
  margin: 0 0 18px;
  color: #000;
  font-size: 2.25rem;
  line-height: 1.2;
}

.feature-copy p:not(.eyebrow) {
  margin: 0 0 28px;
  color: #343b46;
}

.pill-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 23px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
}

.pill-link:hover {
  color: var(--blue);
  background: #fff;
}

.pill-link.small {
  min-height: 38px;
  padding: 0 22px;
  font-size: 0.9rem;
}

.solution-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}

.solution-card {
  min-height: 230px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--panel);
  border: 1px solid #e3edf4;
  transition: 180ms ease;
}

.solution-card:nth-child(odd) {
  color: #fff;
  background: linear-gradient(145deg, #14b8d7, #0797dc);
  border-color: transparent;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(26, 53, 82, 0.13);
}

.line-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: currentColor;
  border: 3px solid currentColor;
  border-radius: 10px;
}

.line-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.solution-card p {
  margin: 0;
  color: inherit;
  opacity: 0.78;
}

.solution-carousel-section {
  padding-bottom: 96px;
}

.solution-carousel-section::before {
  left: -165px;
  top: 0;
  width: 320px;
  height: 320px;
  border-radius: 0 0 100% 0;
  background: #f1f2f4;
  transform: none;
}

.solution-carousel-section::after {
  right: -118px;
  top: 0;
  width: 425px;
  height: 760px;
  background: linear-gradient(145deg, #1188ef 0%, #2c65ef 100%);
  -webkit-clip-path: polygon(26% 0, 100% 0, 100% 100%, 73% 82%, 59% 63%, 35% 39%, 20% 27%, 16% 10%);
          clip-path: polygon(26% 0, 100% 0, 100% 100%, 73% 82%, 59% 63%, 35% 39%, 20% 27%, 16% 10%);
}

.solution-carousel {
  position: relative;
  z-index: 1;
  width: min(1680px, calc(100% - 80px));
  margin: 56px auto 0;
}

.solution-carousel-stage {
  position: relative;
  min-height: 456px;
}

.solution-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.solution-slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.solution-slide-media {
  min-width: 0;
  display: block;
}

.solution-slide-media img {
  width: 100%;
  height: auto;
  max-height: 560px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.solution-slide-copy {
  width: min(100%, 690px);
  padding-right: 120px;
}

.solution-slide-copy h3 {
  margin: 0;
  color: #000;
  font-size: clamp(2rem, 2.1vw, 2.55rem);
  line-height: 1.18;
}

.solution-slide-copy h3 a {
  color: inherit;
}

.solution-title-rule {
  display: block;
  width: 28px;
  height: 2px;
  margin: 18px 0 20px;
  background: #0f1720;
}

.solution-slide-subtitle {
  margin: 0 0 6px;
  color: #111;
  font-weight: 700;
}

.solution-slide-copy p:not(.solution-slide-subtitle) {
  margin: 0;
  color: #303740;
  line-height: 2;
}

.solution-slide-meta {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 34px;
  line-height: 1;
}

.solution-current {
  color: #1b72f3;
  font-size: 1.9rem;
  font-style: italic;
}

.solution-total {
  color: #c1c7cf;
  font-size: 1.9rem;
  font-style: italic;
}

.solution-carousel-link {
  min-width: 190px;
  margin-top: 56px;
  font-weight: 700;
}

.solution-carousel-controls {
  position: absolute;
  right: 4.5%;
  top: 48%;
  z-index: 2;
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.solution-carousel-arrow {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #cfd3d7;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.solution-carousel-arrow + .solution-carousel-arrow {
  background: #9eaab7;
}

.solution-carousel-arrow span {
  margin-top: -4px;
  font-size: 2rem;
  line-height: 1;
}

.solution-carousel-arrow:hover,
.solution-carousel-arrow:focus-visible {
  background: var(--blue);
  outline: 0;
  transform: translateY(-2px);
}

.solution-detail-hero {
  overflow: hidden;
  background: #fff;
}

.solution-detail-hero .subpage-hero {
  min-height: 560px;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
}

.solution-detail-hero .subpage-copy h2 {
  color: var(--blue);
  font-size: 3.55rem;
}

.solution-detail-hero .subpage-copy p {
  max-width: 700px;
  color: #313841;
  font-size: 1.05rem;
  line-height: 2;
}

.solution-detail-hero .subpage-hero img {
  height: auto;
  max-height: 520px;
  -o-object-fit: contain;
     object-fit: contain;
}

.solution-detail-section {
  overflow: hidden;
  padding-top: 72px;
  background: #f7f9fc;
}

.solution-detail-layout {
  width: min(var(--max), calc(100% - 240px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.solution-side-nav,
.solution-detail-panel,
.solution-related a {
  background: #fff;
  border: 1px solid #e9edf4;
}

.solution-side-nav {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--header) + 24px);
  padding: 28px 24px;
}

.solution-side-nav h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 1.25rem;
}

.solution-side-nav a {
  display: block;
  padding: 12px 0;
  color: #303740;
  border-top: 1px solid #edf1f5;
}

.solution-side-nav a:hover,
.solution-side-nav a.is-active {
  color: var(--blue);
}

.solution-detail-panel {
  padding: clamp(34px, 4vw, 64px);
}

.solution-detail-panel h2 {
  margin: 0 0 18px;
  color: #000;
  font-size: 2.45rem;
  line-height: 1.2;
}

.solution-detail-panel > p:not(.eyebrow) {
  margin: 0 0 32px;
  color: #343b46;
  line-height: 2;
}

.solution-detail-image {
  width: 100%;
  max-height: 520px;
  margin: 34px 0;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}

.solution-detail-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.solution-detail-points li {
  position: relative;
  min-height: 60px;
  padding: 16px 18px 16px 42px;
  color: #28313c;
  background: #f2f7fd;
}

.solution-detail-points li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 25px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.solution-detail-panel h3,
.solution-related h2 {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 400;
}

.solution-detail-scenes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.solution-detail-scenes span {
  padding: 8px 18px;
  color: var(--blue);
  background: #edf6ff;
  border: 1px solid #d5e9fb;
}

.solution-related {
  width: min(var(--max), calc(100% - 240px));
  margin: 76px auto 0;
}

.solution-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.solution-related a {
  display: grid;
  gap: 14px;
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-related a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(28, 50, 82, 0.12);
}

.solution-related img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.solution-related strong {
  color: #111;
  font-size: 1rem;
}

.cases-section {
  background: #f1f1f7;
}

.cases-section h2,
.clients h2,
.cert-section h2,
.values-block h2 {
  margin: 0 0 36px;
  color: #000;
  font-size: 2.1rem;
  font-weight: 400;
}

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

.case-card {
  position: relative;
  background: transparent;
  box-shadow: none;
}

.case-media,
.news-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.case-card img {
  width: 100%;
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1), -webkit-filter 260ms ease;
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1), filter 260ms ease;
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1), filter 260ms ease, -webkit-filter 260ms ease;
}

.case-hover-title {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
  pointer-events: none;
}

.case-hover-title::after {
  content: "";
  width: 190px;
  max-width: 72%;
  height: 1px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.case-card h3 {
  min-height: 64px;
  margin: 18px 20px 8px;
  font-size: 1rem;
  font-weight: 500;
}

.case-card .case-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px;
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid #dcdfe7;
}

.case-card .case-more::after {
  content: ">";
  color: #9aa2ad;
  font-size: 1.25rem;
  transition: transform 180ms ease, color 180ms ease;
}

.official-app-page {
  overflow: hidden;
  background: #fff;
}

.official-app-scene {
  scroll-margin-top: var(--header);
}

.official-app-scene + .official-app-scene {
  padding-top: 16px;
}

.official-app-hero {
  min-height: 314px;
  display: flex;
  align-items: center;
  background-image: var(--app-hero-image);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.official-app-hero-copy,
.official-app-body {
  width: min(1360px, calc(100% - 400px));
  margin: 0 auto;
}

.official-app-hero-copy h1 {
  margin: 18px 0 20px;
  color: #000;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 500;
}

.official-app-hero-copy p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #000;
  font-size: 0.92rem;
}

.official-app-hero-copy strong {
  font-weight: 500;
}

.official-app-body {
  padding: 44px 0 108px;
}

.official-app-summary {
  margin: 0 0 34px;
  color: #0066ff;
  font-size: 1rem;
  line-height: 2.5;
  font-weight: 800;
}

.app-office-overview {
  width: min(1290px, 100%);
  margin: 28px auto 116px;
}

.app-office-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 92px;
}

.app-office-value {
  display: grid;
  grid-template-rows: auto auto;
  gap: 80px;
}

.app-office-value-copy {
  min-height: 140px;
}

.app-office-value-copy span {
  display: block;
  margin-bottom: 14px;
  color: #333;
  font-size: 2.25rem;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.app-office-value-copy h3 {
  margin: 0 0 26px;
  color: #1b2027;
  font-size: 1.12rem;
  line-height: 1.3;
  font-weight: 800;
}

.app-office-value-copy p {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
  line-height: 1.8;
}

.app-office-value img {
  width: 100%;
  aspect-ratio: 384 / 240;
  -o-object-fit: cover;
     object-fit: cover;
}

.app-office-systems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 30px;
}

.app-system-card img {
  width: 100%;
  aspect-ratio: 560 / 420;
  -o-object-fit: cover;
     object-fit: cover;
}

.app-system-card h3 {
  margin: 20px 0 14px;
  color: #000;
  font-size: 1.18rem;
  line-height: 1.4;
  font-weight: 800;
}

.app-system-card p {
  margin: 0;
  color: #838792;
  font-size: 0.9rem;
  line-height: 2;
}

.app-building-overview {
  width: min(1025px, 100%);
  margin: 24px auto 112px;
}

.app-building-pains h2,
.app-building-values h2 {
  margin: 0 0 84px;
  color: #0077eb;
  text-align: center;
  line-height: 1.2;
  font-weight: 800;
}

.app-building-pains h2 {
  font-size: 1.55rem;
}

.app-pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 120px;
}

.app-pain-card img {
  width: 100%;
  aspect-ratio: 384 / 240;
  -o-object-fit: cover;
     object-fit: cover;
}

.app-pain-card h3 {
  margin: 18px 0 24px;
  color: #333;
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 800;
}

.app-pain-card p {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
  line-height: 1.8;
}

.app-building-values h2 {
  margin-bottom: 70px;
  font-size: 2.25rem;
}

.building-value-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(380px, 564px) minmax(260px, 1fr);
  align-items: center;
  gap: 58px;
  margin-bottom: 82px;
}

.building-value-panel > img {
  width: 100%;
  box-shadow: 0 18px 34px rgba(37, 66, 116, 0.12);
}

.building-value-list {
  display: grid;
  gap: 76px;
}

.building-value-list.left {
  text-align: right;
}

.building-value-item {
  position: relative;
}

.building-value-item span {
  position: absolute;
  top: -34px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2447df;
  box-shadow: 0 0 9px rgba(36, 71, 223, 0.8);
}

.building-value-list.left .building-value-item span {
  right: 8px;
}

.building-value-list.right .building-value-item span {
  left: 8px;
}

.building-value-item h3 {
  margin: 0 0 8px;
  color: #0077eb;
  font-size: 1.28rem;
  line-height: 1.3;
  font-weight: 800;
}

.building-value-item p {
  margin: 0;
  color: #85889b;
  font-size: 0.9rem;
  line-height: 1.8;
}

.app-management-image {
  width: min(1306px, 100%);
  margin: 0 auto;
}

.scene-value {
  background: #fff;
}

.value-heading {
  position: relative;
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.value-heading span {
  position: absolute;
  left: -70px;
  top: -74px;
  z-index: -1;
  color: #f1f3f9;
  font-size: 10rem;
  line-height: 1;
  font-weight: 800;
}

.value-heading h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 2.1rem;
}

.value-heading p {
  margin: 0;
  color: var(--muted);
}

.value-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card-grid article {
  min-height: 250px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #eef7fb;
}

.value-card-grid article:nth-child(odd) {
  color: #fff;
  background: var(--blue);
}

.value-card-grid svg {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card-grid h3 {
  margin: 0 0 10px;
}

.value-card-grid p {
  min-height: 66px;
  margin: 0 0 20px;
  color: inherit;
  opacity: 0.8;
}

.value-card-grid a {
  min-width: 96px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 17px;
  color: inherit;
  border: 1px solid currentColor;
}

.page-section {
  padding-top: 0;
}

.subpage-hero {
  width: min(var(--wide), calc(100% - 240px));
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: 46px;
  align-items: center;
}

.subpage-copy h2 {
  margin: 0 0 12px;
  color: #3d4148;
  font-size: 4rem;
  line-height: 1.08;
}

.subpage-copy p {
  margin: 8px 0;
  font-size: 1.42rem;
  line-height: 1.45;
}

.subpage-hero img {
  width: 100%;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  justify-self: end;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 110px;
}

.pill-row a {
  min-width: 124px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #fff;
  background: var(--blue);
}

.breadcrumb {
  width: min(var(--max), calc(100% - 240px));
  margin: 20px auto 36px;
  color: #8a9098;
  text-align: right;
  font-size: 0.92rem;
}

.solutions-hero-section {
  overflow: hidden;
  padding-bottom: 18px;
}

.solutions-hero {
  width: min(1710px, calc(100% - 240px));
  min-height: 520px;
  grid-template-columns: minmax(360px, 0.43fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.solutions-hero .subpage-copy {
  padding-top: 62px;
}

.solutions-hero .subpage-copy h2 {
  color: #3d4148;
  font-size: clamp(3.4rem, 4.2vw, 4.55rem);
  font-weight: 800;
}

.solutions-hero .subpage-copy p {
  margin-top: 22px;
  color: #3d4148;
  font-size: 1.55rem;
}

.solutions-hero img {
  width: calc(100% + 64px);
  max-width: none;
  height: auto;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right top;
     object-position: right top;
  clip-path: inset(0 0 0 64px);
  transform: translateX(-64px);
}

.solution-showcase-section {
  padding-top: 22px;
  padding-bottom: 118px;
  background: #fff;
}

.solution-showcase {
  position: relative;
  width: min(1350px, calc(100% - 240px));
  margin: 0 auto;
}

.solution-showcase-stage {
  position: relative;
  height: clamp(470px, 40vw, 620px);
  overflow: hidden;
  background: #eef2f6;
}

.solution-showcase-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.solution-showcase-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.solution-showcase-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.solution-showcase-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.solution-showcase-copy {
  position: absolute;
  left: 28px;
  top: 0;
  z-index: 2;
  width: min(620px, calc(100% - 56px));
  min-height: 184px;
  padding: 26px 30px 30px;
  display: grid;
  align-content: start;
  gap: 14px;
  color: #fff;
  background: var(--blue);
}

.solution-showcase-copy strong {
  font-size: clamp(2rem, 2.4vw, 2.42rem);
  line-height: 1.2;
  font-weight: 500;
}

.solution-showcase-copy span {
  max-width: 560px;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-showcase-thumbs {
  position: absolute;
  left: 66px;
  right: 66px;
  bottom: 31px;
  z-index: 3;
  display: flex;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  scroll-behavior: smooth;
}

.solution-showcase-thumb {
  flex: 0 0 calc((100% - 90px) / 6);
  height: 120px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: rgba(8, 20, 34, 0.56);
  cursor: pointer;
}

.solution-showcase-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.48;
  -webkit-filter: saturate(0.8);
          filter: saturate(0.8);
  transition: opacity 180ms ease, transform 260ms ease, -webkit-filter 180ms ease;
  transition: opacity 180ms ease, transform 260ms ease, filter 180ms ease;
  transition: opacity 180ms ease, transform 260ms ease, filter 180ms ease, -webkit-filter 180ms ease;
}

.solution-showcase-thumb.is-active {
  border-color: #fff;
}

.solution-showcase-thumb.is-active img,
.solution-showcase-thumb:hover img,
.solution-showcase-thumb:focus-visible img {
  opacity: 1;
  -webkit-filter: saturate(1);
          filter: saturate(1);
  transform: scale(1.04);
}

.solution-showcase-thumb:focus-visible {
  outline: 3px solid rgba(12, 130, 233, 0.55);
  outline-offset: 3px;
}

.solution-showcase-controls {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 64px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.solution-showcase-arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  pointer-events: auto;
  transition: background 180ms ease, transform 180ms ease;
}

.solution-showcase-arrow span {
  margin-top: -3px;
  font-size: 2.35rem;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.solution-showcase-arrow:hover,
.solution-showcase-arrow:focus-visible {
  background: var(--blue-dark);
  outline: 0;
  transform: translateY(-2px);
}

.about-block {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 40px;
}

.about-block img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1.45 / 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.muted-title {
  margin: 0 0 18px;
  color: #6f737b;
  font-size: 1.5rem;
}

.about-block h2,
.about-block h3 {
  color: var(--blue);
}

.about-block h2 {
  margin: 0 0 48px;
  font-size: 2.35rem;
  font-weight: 400;
}

.about-block h3 {
  margin: 0 0 18px;
  font-size: 2rem;
  font-weight: 400;
}

.about-block p {
  color: #626870;
}

.values-block {
  margin-top: 90px;
  color: #111;
}

.values-block h2 {
  margin-top: 70px;
  margin-bottom: 18px;
  color: var(--blue);
}

.values-block strong {
  color: #f01818;
}

.value-list strong {
  color: #000;
}

.value-list p {
  margin: 20px 0;
}

.cert-section {
  margin-top: 90px;
}

.cert-section h2,
.clients h2 {
  color: var(--blue);
}

.cert-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.42fr;
  gap: 90px;
  align-items: center;
}

.cert-grid img {
  width: 100%;
  border: 1px solid #ddd;
  -o-object-fit: cover;
     object-fit: cover;
}

.clients {
  margin-top: 100px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px dashed #d6d6d6;
  border-left: 1px dashed #d6d6d6;
}

.client-grid span {
  min-height: 150px;
  display: grid;
  place-items: center;
  color: #174aa6;
  border-right: 1px dashed #d6d6d6;
  border-bottom: 1px dashed #d6d6d6;
  font-size: 1.55rem;
  font-weight: 800;
}

.client-grid span:nth-child(4n),
.client-grid span:nth-child(9),
.client-grid span:nth-child(12) {
  color: #111;
}

.client-grid span:nth-child(5),
.client-grid span:nth-child(10) {
  color: #d40000;
}

.about-hero-section {
  overflow: hidden;
  padding-bottom: 46px;
}

.about-hero {
  width: min(1710px, calc(100% - 240px));
  grid-template-columns: minmax(360px, 0.43fr) minmax(0, 1fr);
  align-items: start;
  min-height: 560px;
}

.about-hero .subpage-copy {
  padding-top: 118px;
}

.about-hero .subpage-copy h2 {
  font-size: 4.15rem;
  font-weight: 800;
}

.about-hero .subpage-copy p {
  margin-top: 26px;
  color: #1f2933;
  font-size: 1.55rem;
}

.about-hero img {
  height: auto;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right top;
     object-position: right top;
}

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

.about-hero-actions a {
  min-width: 126px;
  height: 50px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 25px;
  background: var(--blue);
  box-shadow: 0 14px 24px rgba(12, 130, 233, 0.18);
}

.about-hero-actions a:hover {
  background: var(--blue-dark);
}

.about-section {
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  left: -220px;
  top: 44px;
  width: 360px;
  height: 520px;
  border-radius: 0 100% 100% 0;
  background: #f1f2f4;
}

.about-section > * {
  position: relative;
  z-index: 1;
}

.about-video-wrap {
  width: min(1500px, calc(100% - 240px));
  margin: 58px auto 0;
  background: #02030a;
}

.about-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  max-height: 720px;
  background: #02030a;
}

.values-block {
  padding-top: 86px;
  border-top: 2px solid #111;
}

.values-block h2 {
  color: var(--blue);
  font-size: 2.35rem;
  font-weight: 400;
}

.values-block p {
  margin: 0 0 24px;
  line-height: 2.35;
}

.value-list {
  margin-top: 34px;
}

.cert-grid {
  margin-top: 40px;
  grid-template-columns: minmax(320px, 455px) minmax(560px, 778px);
  justify-content: space-around;
}

.cert-grid img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.client-grid span {
  padding: 0;
  background: #fff;
}

.client-grid span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.news-card {
  position: relative;
  padding: 0 0 2px;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.news-card time {
  display: block;
  color: #c8c8c8;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.news-card img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1), -webkit-filter 260ms ease;
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1), filter 260ms ease;
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1), filter 260ms ease, -webkit-filter 260ms ease;
}

.news-card h3 {
  margin: 28px 0 16px;
  font-size: 1.12rem;
  transition: color 180ms ease;
}

.news-card p {
  margin: 0 0 22px;
  color: #707782;
}

.news-card .pill-link {
  align-self: flex-start;
  margin-top: auto;
}

.official-news-page {
  overflow: hidden;
}

.official-news-page .page-section {
  padding-bottom: 0;
}

.official-news-page .subpage-hero {
  align-items: start;
}

.official-news-page .subpage-copy {
  padding-top: 132px;
}

.official-news-page .subpage-copy p {
  margin-top: 4px;
}

.official-news-page .subpage-hero img {
  align-self: start;
  height: 484px;
}

.official-news-page .breadcrumb {
  margin-top: 18px;
  margin-bottom: 0;
}

.official-news-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.official-news-section::before,
.official-news-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.official-news-section::before {
  left: -214px;
  top: 14px;
  width: 350px;
  height: 520px;
  border-radius: 0 52% 52% 0;
  background: #ededed;
}

.official-news-section::after {
  right: -312px;
  top: 368px;
  width: 560px;
  height: 760px;
  border-radius: 58% 0 0 58% / 50% 0 0 50%;
  background: var(--blue);
}

.official-news-inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 400px));
  margin: 0 auto;
}

.official-news-inner h2 {
  margin: 0 0 44px;
  color: #1f232b;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
}

.official-news-list {
  display: grid;
  gap: 100px;
}

.official-news-item {
  display: grid;
  grid-template-columns: minmax(0, 750px) minmax(360px, 1fr);
  align-items: center;
  gap: 74px;
}

.official-news-item.is-reversed {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 750px);
}

.official-news-item.is-reversed .official-news-media {
  grid-column: 2;
}

.official-news-item.is-reversed .official-news-copy {
  grid-column: 1;
  grid-row: 1;
}

.official-news-media {
  display: block;
  overflow: hidden;
}

.official-news-media img {
  width: 100%;
  aspect-ratio: 1000 / 519;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.official-news-item:hover .official-news-media img,
.official-news-item:focus-within .official-news-media img {
  transform: scale(1.04);
}

.official-news-copy {
  max-width: 650px;
}

.official-news-date {
  display: inline-block;
  margin-bottom: 24px;
  color: #2f3339;
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.official-news-copy h3 {
  margin: 0 0 18px;
  color: #11151b;
  font-size: 1.55rem;
  line-height: 1.28;
  font-weight: 800;
}

.official-news-copy h3 a {
  color: inherit;
}

.official-news-copy p {
  max-width: 640px;
  margin: 0 0 36px;
  color: #707782;
  font-size: 1rem;
  line-height: 2;
}

.official-news-more {
  width: 170px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #fff;
  background: var(--blue);
  font-size: 0.95rem;
  transition: background 180ms ease, transform 180ms ease;
}

.official-news-more:hover,
.official-news-more:focus-visible {
  background: var(--blue-dark);
  outline: 0;
  transform: translateY(-2px);
}

.official-news-item.is-emphasis .official-news-copy h3 {
  color: var(--blue);
  font-size: 1.9rem;
  line-height: 1.15;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 92px;
  color: #1f232b;
  font-size: 0.96rem;
}

.news-pagination a,
.news-pagination button,
.news-pagination span {
  min-width: 18px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-pagination button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.news-pagination button:disabled {
  color: #9ba3ad;
  cursor: default;
}

.news-pagination .is-active {
  width: 42px;
  color: #fff;
  background: #555;
}

.detail-page {
  background: #fff;
}

.official-news-detail .site-header {
  position: -webkit-sticky;
  position: sticky;
}

.official-news-detail .news-detail-main {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.official-news-detail .news-detail-main::before {
  content: "";
  position: absolute;
  left: -250px;
  top: 132px;
  width: 380px;
  height: 620px;
  border-radius: 0 380px 380px 0;
  background: #eee;
  z-index: 0;
}

.official-news-detail .news-detail-main::after {
  content: "";
  position: absolute;
  right: -250px;
  bottom: 28px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--blue);
  z-index: 0;
}

.news-detail-layout {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 300px));
  margin: 0 auto;
  padding: 72px 0 122px;
}

.news-detail-breadcrumb {
  margin-bottom: 84px;
  color: #87909d;
  font-size: 0.95rem;
  text-align: right;
}

.news-detail-breadcrumb span {
  color: #999;
}

.news-detail-section-title {
  margin: 0 0 44px;
  color: #333;
  font-size: 2.18rem;
  line-height: 1.2;
  font-weight: 400;
}

.news-detail-shell {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.news-detail-head {
  text-align: center;
}

.news-detail-head h1 {
  margin: 0;
  color: #111;
  font-size: 1.62rem;
  line-height: 1.45;
  font-weight: 500;
}

.news-detail-meta {
  margin-top: 24px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: auto auto auto auto 1fr;
  gap: 32px;
  align-items: center;
  color: #1f2c3d;
  font-size: 0.9rem;
  text-align: left;
  border-top: 1px solid #d8dde4;
}

.news-detail-views {
  justify-self: end;
}

.news-detail-body {
  margin-top: 30px;
  color: #243143;
  font-size: 1rem;
  line-height: 2.25;
}

.news-detail-body p {
  margin: 0 0 13px;
}

.news-detail-body span {
  font-size: inherit !important;
  line-height: inherit !important;
}

.news-detail-nav {
  margin-top: 42px;
  padding: 22px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-bottom: 1px solid #d8dde4;
}

.news-detail-nav a,
.news-detail-none {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #111;
  font-size: 0.9rem;
}

.news-detail-nav a:nth-child(2),
.news-detail-nav .news-detail-none:nth-child(2) {
  justify-content: flex-end;
  text-align: right;
}

.news-detail-nav span {
  color: #111;
}

.news-detail-nav strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.news-detail-nav a:hover,
.news-detail-nav a:focus-visible {
  color: var(--blue);
}

.news-detail-none {
  color: #8c949f;
}

.news-related-grid {
  margin-top: 118px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 82px;
  padding-right: 70px;
}

.news-related-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}

.news-related-media {
  overflow: hidden;
}

.news-related-card img {
  width: 100%;
  height: 188px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.news-related-card:hover img,
.news-related-card:focus-within img {
  transform: scale(1.08);
}

.news-related-card h3 {
  margin: 8px 0 14px;
  color: #111;
  font-size: 1.12rem;
  line-height: 1.45;
  font-weight: 500;
}

.news-related-card p {
  margin: 0 0 20px;
  color: #7c8490;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-related-card time {
  color: #8a929d;
  font-size: 0.92rem;
}

/* Fallback for stale cached detail HTML: restyle it to the official text-only layout. */
.detail-page:not(.official-news-detail) .news-detail-main {
  position: relative;
  overflow: hidden;
}

.detail-page:not(.official-news-detail) .news-detail-main::before {
  content: "";
  position: absolute;
  left: -250px;
  top: 132px;
  width: 380px;
  height: 620px;
  border-radius: 0 380px 380px 0;
  background: #eee;
}

.detail-page:not(.official-news-detail) .news-detail-hero {
  width: min(var(--max), calc(100% - 300px));
  margin: 0 auto;
  padding: 72px 0 122px;
}

.detail-page:not(.official-news-detail) .breadcrumb {
  width: auto;
  margin: 0 0 84px;
  color: #87909d;
  text-align: right;
}

.detail-page:not(.official-news-detail) .news-detail-shell {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.detail-page:not(.official-news-detail) .news-detail-shell::before {
  content: "新闻中心";
  display: block;
  margin: 0 0 44px;
  color: #333;
  font-size: 2.18rem;
  line-height: 1.2;
  font-weight: 400;
}

.detail-page:not(.official-news-detail) .news-detail-head .eyebrow,
.detail-page:not(.official-news-detail) .news-detail-cover,
.detail-page:not(.official-news-detail) .news-detail-summary,
.detail-page:not(.official-news-detail) .news-detail-back {
  display: none !important;
}

.detail-page:not(.official-news-detail) .news-detail-head h1 {
  margin: 0;
  font-size: 1.62rem;
  line-height: 1.45;
  font-weight: 500;
}

.contact-section {
  padding-bottom: 120px;
}

.contact-hero .subpage-copy p {
  color: #000;
  font-size: 1.28rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 90px;
  align-items: start;
}

.contact-info {
  padding: 48px 20px;
}

.contact-info h2 {
  margin: 0;
  color: #777;
  font-size: 2rem;
  font-weight: 400;
}

.contact-info .rule {
  width: 28px;
  height: 2px;
  margin: 14px 0 52px;
  background: #333;
}

.contact-info h3 {
  margin: 0 0 42px;
  font-size: 1.35rem;
  font-weight: 500;
}

.contact-info p {
  margin: 22px 0;
  color: #3e434a;
}

.message-form {
  padding: 52px 80px 78px;
  background: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 72px 0 72px 0;
}

.message-form h2 {
  margin: 0 0 28px;
  color: #333;
  font-size: 2rem;
}

.message-form input,
.message-form textarea {
  width: 100%;
  margin: 0 0 20px;
  padding: 14px 20px;
  border: 1px solid #d0d0d0;
  background: #fff;
  outline: none;
  resize: vertical;
}

.message-form input:focus,
.message-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 130, 233, 0.1);
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr 132px;
  align-items: stretch;
}

.captcha-code {
  height: 57px;
  border: 1px solid #d0d0d0;
  border-left: 0;
  color: #008b79;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.submit-btn {
  width: 214px;
  min-height: 46px;
  margin-top: 10px;
  color: #fff;
  background: var(--blue);
  border: 0;
  cursor: pointer;
}

.floating-actions {
  position: fixed;
  right: 26px;
  top: 58%;
  z-index: 70;
  display: grid;
  gap: 16px;
}

.floating-actions a {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  align-content: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(12, 130, 233, 0.22);
}

.floating-actions svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-actions b {
  margin-top: 2px;
  font-size: 0.76rem;
  line-height: 1;
}

.site-footer {
  padding: 82px 0 72px;
  background: #f6f6f7;
}

.footer-grid {
  width: min(var(--max), calc(100% - 240px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 1.05fr 0.7fr 1.15fr;
  gap: 54px;
}

.footer-grid h2 {
  margin: 22px 0 42px;
  font-size: 1.25rem;
}

.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin: 13px 0;
  color: #333;
}

.footer-grid a:hover {
  color: var(--blue);
}

.footer-brand .brand-mark {
  width: 82px;
  height: 82px;
}

.footer-brand .brand-mark span,
.footer-brand .brand-mark::before {
  top: 17px;
  height: 46px;
  width: 16px;
}

.footer-brand .brand-mark span {
  left: 19px;
}

.footer-brand .brand-mark::before {
  right: 19px;
}

.footer-brand .brand-mark::after {
  left: 19px;
  bottom: 17px;
  width: 44px;
  height: 22px;
  border-width: 15px;
  border-top: 0;
}

.footer-brand p {
  margin: 0 0 26px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.socials span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
}

.socials span:nth-child(1) {
  background: var(--green);
}

.socials span:nth-child(2) {
  background: var(--cyan);
}

.socials span:nth-child(3) {
  background: #2d9fe8;
}

.footer-contact img {
  width: 90px;
  height: 90px;
  margin: 22px 0 6px;
}

.footer-contact p {
  color: #555;
}

.footer-contact .copyright {
  margin-top: 18px;
  color: #777;
  font-size: 0.88rem;
}

.site-footer,
.site-footer * {
  animation-delay: 0ms !important;
  transition-delay: 0ms !important;
}

@media (max-width: 1360px) {
  .header-inner,
  .content-shell,
  .section-heading,
  .solution-feature,
  .solution-grid,
  .about-block,
  .values-block,
  .cert-section,
  .clients,
  .news-grid,
  .contact-content,
  .subpage-hero,
  .breadcrumb,
  .news-detail-shell,
  .footer-grid {
    width: calc(100% - 96px);
  }

  .hero-media,
  .scenario-map {
    width: calc(100% - 96px);
  }

  .main-nav {
    gap: 28px;
  }
}

@media (max-width: 1180px) {
  :root {
    --header: 88px;
  }

  .header-inner {
    grid-template-columns: auto auto auto;
    gap: 18px;
  }

  .nav-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .language-menu {
    order: 2;
  }

  .language-switch {
    min-width: 108px;
    height: 44px;
    padding: 0 18px;
  }

  .main-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: 0;
    overflow: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transition: max-height 220ms ease;
    box-shadow: 0 24px 42px rgba(28, 46, 70, 0.12);
  }

  body.nav-open .main-nav {
    max-height: calc(100vh - var(--header));
  }

  .nav-link {
    height: auto;
    padding: 16px 28px;
    border-top: 1px solid #f0f2f6;
  }

  .nav-link::after {
    display: none;
  }

  .dropdown {
    position: static;
    min-width: 0;
    padding: 10px 28px 18px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: #f8fafc;
  }

  .compact-menu {
    text-align: left;
  }

  .scenario-map,
  .solution-grid,
  .case-grid,
  .news-grid,
  .value-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-feature,
  .subpage-hero,
  .about-block,
  .contact-content,
  .cert-grid {
    grid-template-columns: 1fr;
  }

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

  .subpage-hero img {
    height: 380px;
  }

  .pill-row {
    margin-top: 42px;
  }

  .solution-overview::after {
    opacity: 0.12;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header: 76px;
  }

  body {
    font-size: 15px;
  }

  .header-inner,
  .content-shell,
  .section-heading,
  .solution-feature,
  .solution-grid,
  .about-block,
  .values-block,
  .cert-section,
  .clients,
  .news-grid,
  .contact-content,
  .subpage-hero,
  .breadcrumb,
  .news-detail-shell,
  .footer-grid,
  .hero-media,
  .scenario-map {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: var(--header);
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-mark span,
  .brand-mark::before {
    top: 11px;
    height: 30px;
    width: 11px;
  }

  .brand-mark span {
    left: 13px;
  }

  .brand-mark::before {
    right: 13px;
  }

  .brand-mark::after {
    left: 12px;
    bottom: 10px;
    width: 28px;
    height: 15px;
    border-width: 10px;
    border-top: 0;
  }

  .language-switch {
    min-width: 92px;
    padding: 0 12px;
  }

  .language-switch-label {
    display: none;
  }

  .language-dropdown {
    min-width: 142px;
  }

  .hero-media {
    width: 100%;
  }

  .hero-media img {
    height: min(calc(100vh - var(--header)), 640px);
    min-height: 520px;
    -o-object-position: center;
       object-position: center;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    min-height: 150px;
  }

  .section-heading span {
    font-size: 1.65rem;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .section-heading b {
    right: 0;
    font-size: 8rem;
  }

  .scenario-map,
  .solution-grid,
  .case-grid,
  .news-grid,
  .value-card-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .scenario-map::before {
    display: none;
  }

  .solution-feature {
    gap: 26px;
  }

  .feature-copy h3,
  .subpage-copy h2 {
    font-size: 2.25rem;
  }

  .subpage-copy p,
  .contact-hero .subpage-copy p {
    font-size: 1.02rem;
  }

  .subpage-hero {
    gap: 28px;
    min-height: auto;
    padding-top: 34px;
  }

  .news-detail-hero {
    padding-top: 42px;
  }

  .news-detail-shell {
    padding: 34px 20px 42px;
  }

  .news-detail-meta,
  .news-detail-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .news-detail-layout {
    width: calc(100% - 32px);
    padding: 44px 0 76px;
  }

  .news-detail-breadcrumb {
    margin-bottom: 42px;
    text-align: left;
  }

  .news-detail-section-title {
    margin-bottom: 32px;
    font-size: 1.9rem;
  }

  .news-detail-head h1 {
    font-size: 1.35rem;
  }

  .news-detail-meta {
    gap: 10px;
  }

  .news-detail-views {
    justify-self: start;
  }

  .news-detail-nav a:nth-child(2),
  .news-detail-nav .news-detail-none:nth-child(2) {
    justify-content: flex-start;
    text-align: left;
  }

  .news-related-grid,
  .news-related-card {
    grid-template-columns: 1fr;
  }

  .news-related-grid {
    margin-top: 56px;
    gap: 38px;
  }

  .official-news-detail .news-detail-main::before,
  .official-news-detail .news-detail-main::after {
    opacity: 0.16;
  }

  .news-detail-summary {
    padding: 20px;
  }

  .subpage-hero img {
    height: 260px;
  }

  .breadcrumb {
    text-align: left;
  }

  .case-card img,
  .news-card img {
    height: 220px;
  }

  .about-block {
    gap: 24px;
  }

  .cert-grid {
    gap: 24px;
  }

  .message-form {
    padding: 34px 20px 42px;
    border-radius: 36px 0 36px 0;
  }

  .captcha-row {
    grid-template-columns: 1fr 104px;
  }

  .floating-actions {
    right: 12px;
    gap: 10px;
  }

  .floating-actions a {
    width: 52px;
    height: 52px;
  }

  .floating-actions svg {
    width: 20px;
    height: 20px;
  }

  .site-footer {
    padding: 56px 0;
  }

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

/* Authorized static clone overrides using the original Hongzhu media assets. */
.brand-logo {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.brand strong {
  display: none;
}

.hero-media .hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 852 / 480;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background: #111;
}

.scenario-official {
  width: min(1500px, calc(100% - 180px));
  margin: -40px auto 0;
}

.scenario-official img {
  width: 100%;
  height: auto;
}

.intro-section .scenario-map {
  display: none;
}

.section-more {
  width: min(var(--max), calc(100% - 240px));
  margin: 34px auto 0;
  text-align: center;
}

.footer-logo {
  width: 82px;
  height: 82px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.news-home {
  overflow: hidden;
}

.news-home::before {
  content: "";
  position: absolute;
  left: -220px;
  top: -30px;
  width: 580px;
  height: 780px;
  border-radius: 0 50% 50% 0;
  background: var(--blue);
  z-index: 0;
}

.news-home .content-shell {
  position: relative;
  z-index: 1;
}

.news-home h2 {
  margin: 0 0 54px;
  color: #111;
  font-size: 2.1rem;
  font-weight: 400;
}

.solution-feature .feature-visual img {
  aspect-ratio: 1.58 / 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 300ms ease var(--reveal-delay, 0ms),
    transform 340ms cubic-bezier(0.2, 0.78, 0.2, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.scenario-official.reveal,
.solution-feature.reveal {
  transform: translateY(26px) scale(0.992);
}

.scenario-official.reveal.is-visible,
.solution-feature.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.solution-card,
.case-card,
.news-card,
.value-card-grid article {
  transition:
    opacity 300ms ease var(--reveal-delay, 0ms),
    transform 340ms cubic-bezier(0.2, 0.78, 0.2, 1) var(--reveal-delay, 0ms),
    box-shadow 180ms ease;
}

.case-card:hover img,
.case-card:focus-within img,
.news-card:hover img,
.news-card:focus-within img {
  transform: scale(1.08);
}

.case-card:hover .case-media::after,
.case-card:focus-within .case-media::after,
.case-card:hover .case-hover-title,
.case-card:focus-within .case-hover-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-media .hero-video {
  transform-origin: center;
}

@-webkit-keyframes heroVideoIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroVideoIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-media *,
  .reveal,
  .solution-card,
  .case-card,
  .news-card,
  .value-card-grid article {
    -webkit-animation: none !important;
            animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1360px) {
  .scenario-official,
  .section-more {
    width: calc(100% - 96px);
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .hero-media .hero-video {
    height: auto;
    min-height: 0;
  }

  .intro-section .scenario-map {
    display: grid;
  }

  .scenario-official {
    display: none;
  }

  .section-more {
    width: calc(100% - 32px);
  }

  .news-home::before {
    left: -310px;
    opacity: 0.18;
  }

  .footer-logo {
    width: 74px;
    height: 74px;
  }
}

/* Original-site contact rail and footer share interactions. */
.floating-actions {
  top: 58%;
  right: 24px;
  gap: 18px;
  overflow: visible;
}

.floating-action {
  position: relative;
  width: 66px;
  height: 66px;
}

.floating-actions .floating-link {
  position: relative;
  width: 66px;
  height: 66px;
  display: block;
  color: #fff;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.float-icon,
.float-value {
  position: absolute;
  right: 0;
  top: 50%;
  color: #fff;
  background: #0c82e9;
  box-shadow: 0 16px 28px rgba(12, 130, 233, 0.2);
  transition: opacity 220ms ease, transform 220ms ease;
}

.float-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.float-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-icon b {
  max-width: 54px;
  margin: 0;
  color: inherit;
  font-size: 12px;
  line-height: 1.08;
  text-align: center;
  font-weight: 700;
}

.float-value {
  min-width: 202px;
  height: 60px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 16px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scaleX(0.35);
  transform-origin: right center;
  z-index: 3;
}

.floating-email .float-value {
  min-width: 238px;
}

.floating-action:hover .float-value,
.floating-action:focus-within .float-value {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.floating-action:hover .float-icon,
.floating-action:focus-within .float-icon {
  opacity: 0;
  transform: translateY(-50%) scale(0.72);
}

.socials {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.socials .social-action {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.socials .social-action:hover,
.socials .social-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(31, 123, 206, 0.2);
  outline: 0;
}

.socials .social-action svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.socials .social-wechat {
  background: #61c84f;
}

.socials .social-qq,
.socials .social-link {
  background: #2aa8e9;
}

.socials .social-popover,
.socials .social-toast {
  position: absolute;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  color: #333;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 20;
}

.socials .social-popover {
  bottom: calc(100% + 12px);
  padding: 12px;
  min-width: 116px;
  text-align: center;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(24, 44, 74, 0.15);
}

.socials .social-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1px solid #e7eaf0;
  border-bottom: 1px solid #e7eaf0;
  transform: translateX(-50%) rotate(45deg);
}

.socials .social-popover img {
  width: 88px;
  height: 88px;
  margin: 0 auto 6px;
  -o-object-fit: cover;
     object-fit: cover;
}

.socials .social-popover small {
  display: block;
  color: #666;
}

.socials .social-wechat:hover .social-popover,
.socials .social-wechat:focus-visible .social-popover,
.socials .social-wechat.is-open .social-popover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.socials .social-toast {
  top: calc(100% + 9px);
  padding: 6px 9px;
  color: #fff;
  white-space: nowrap;
  background: rgba(20, 34, 54, 0.9);
  border-radius: 4px;
}

.socials .social-link.is-copied .social-toast {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 760px) {
  .floating-actions {
    right: 12px;
    gap: 10px;
  }

  .floating-action,
  .floating-actions .floating-link,
  .float-icon {
    width: 54px;
    height: 54px;
  }

  .float-icon svg {
    width: 22px;
    height: 22px;
  }

  .float-icon b {
    max-width: 46px;
    font-size: 11px;
  }

  .float-value {
    display: none;
  }

  .floating-action:hover .float-icon,
  .floating-action:focus-within .float-icon {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@media (max-width: 1180px) {
  .solution-carousel {
    width: calc(100% - 96px);
    margin-top: 42px;
  }

  .solution-carousel-stage {
    min-height: 0;
  }

  .solution-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .solution-slide-copy {
    width: 100%;
    padding-right: 0;
  }

  .solution-carousel-controls {
    right: 0;
    top: 44%;
  }
}

@media (max-width: 760px) {
  .solution-carousel-section {
    padding-bottom: 76px;
  }

  .solution-carousel-section::before {
    left: -100px;
    width: 180px;
    height: 180px;
  }

  .solution-carousel-section::after {
    right: -150px;
    width: 250px;
    height: 520px;
    opacity: 0.08;
  }

  .solution-carousel {
    width: calc(100% - 32px);
    margin-top: 28px;
  }

  .solution-slide {
    gap: 22px;
  }

  .solution-slide-media img {
    max-height: 300px;
  }

  .solution-slide-copy h3 {
    font-size: 1.85rem;
  }

  .solution-title-rule {
    margin: 14px 0 16px;
  }

  .solution-slide-copy p:not(.solution-slide-subtitle) {
    line-height: 1.85;
  }

  .solution-slide-copy {
    padding-right: 72px;
  }

  .solution-slide-meta {
    margin-top: 24px;
  }

  .solution-current,
  .solution-total {
    font-size: 1.55rem;
  }

  .solution-carousel-link {
    min-width: 164px;
    margin-top: 32px;
  }

  .solution-carousel-controls {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
    transform: none;
  }

  .solution-carousel-arrow {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-slide,
  .solution-carousel-arrow,
  .solution-showcase-slide,
  .solution-showcase-thumb img,
  .solution-showcase-arrow {
    transition: none !important;
  }
}

@media (max-width: 1360px) {
  .solutions-hero,
  .solution-showcase,
  .about-hero,
  .about-video-wrap,
  .solution-detail-layout,
  .solution-related {
    width: calc(100% - 96px);
  }

  .solution-showcase-thumbs {
    left: 58px;
    right: 58px;
    gap: 12px;
  }

  .solution-showcase-thumb {
    flex-basis: calc((100% - 60px) / 6);
    height: 104px;
  }

  .about-hero-actions {
    margin-top: 150px;
  }
}

@media (max-width: 1180px) {
  .solutions-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
  }

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

  .solutions-hero img {
    max-height: 380px;
  }

  .solution-showcase-section {
    padding-top: 0;
  }

  .solution-showcase-stage {
    height: 560px;
  }

  .solution-showcase-thumbs {
    left: 58px;
    right: 58px;
  }

  .solution-showcase-thumb {
    flex-basis: calc((100% - 24px) / 3);
  }

  .about-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .about-hero-actions {
    margin-top: 42px;
  }

  .about-video-wrap {
    width: calc(100% - 96px);
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: center;
  }

  .cert-grid img {
    max-width: 760px;
  }

  .solution-detail-hero .subpage-hero,
  .solution-detail-layout {
    grid-template-columns: 1fr;
  }

  .solution-side-nav {
    position: static;
  }

  .solution-side-nav a {
    display: inline-flex;
    margin-right: 18px;
  }

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

@media (max-width: 760px) {
  .solutions-hero,
  .solution-showcase,
  .about-hero,
  .about-video-wrap,
  .solution-detail-layout,
  .solution-related {
    width: calc(100% - 32px);
  }

  .solutions-hero-section {
    padding-bottom: 0;
  }

  .solutions-hero .subpage-copy {
    padding-top: 34px;
  }

  .solutions-hero .subpage-copy h2 {
    font-size: 2.8rem;
  }

  .solutions-hero .subpage-copy p {
    font-size: 1.06rem;
  }

  .solutions-hero img {
    max-height: 260px;
  }

  .solution-showcase-section {
    padding-top: 0;
    padding-bottom: 76px;
  }

  .solution-showcase-stage {
    height: auto;
    min-height: 0;
    overflow: visible;
    background: #fff;
  }

  .solution-showcase-slide {
    position: static;
    display: none;
    transform: none;
  }

  .solution-showcase-slide.is-active {
    display: block;
  }

  .solution-showcase-slide img {
    height: 300px;
  }

  .solution-showcase-slide::after {
    display: none;
  }

  .solution-showcase-copy {
    position: static;
    width: 100%;
    min-height: 0;
    padding: 22px 20px;
  }

  .solution-showcase-copy strong {
    font-size: 1.75rem;
  }

  .solution-showcase-copy span {
    -webkit-line-clamp: 3;
    line-height: 1.8;
  }

  .solution-showcase-thumbs {
    position: static;
    margin-top: 14px;
    gap: 10px;
  }

  .solution-showcase-thumb {
    flex-basis: 42%;
    height: 86px;
  }

  .solution-showcase-controls {
    position: static;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
    pointer-events: auto;
  }

  .solution-showcase-arrow {
    width: 46px;
    height: 46px;
  }

  .about-hero .subpage-copy {
    padding-top: 34px;
  }

  .about-hero .subpage-copy h2 {
    font-size: 2.9rem;
  }

  .about-hero .subpage-copy p {
    font-size: 1.05rem;
  }

  .about-hero-actions {
    gap: 14px;
    margin-top: 28px;
  }

  .about-hero-actions a {
    min-width: 112px;
    height: 44px;
    padding: 0 20px;
  }

  .about-section::before {
    left: -190px;
    opacity: 0.45;
  }

  .about-video {
    aspect-ratio: 16 / 9;
  }

  .values-block {
    padding-top: 52px;
  }

  .values-block h2 {
    font-size: 2rem;
  }

  .values-block p {
    line-height: 2;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-grid span {
    min-height: 116px;
  }

  .solution-detail-hero .subpage-copy h2 {
    font-size: 2.35rem;
  }

  .solution-detail-hero .subpage-copy p {
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .solution-detail-panel {
    padding: 26px 18px;
  }

  .solution-detail-panel h2 {
    font-size: 1.9rem;
  }

  .solution-detail-points,
  .solution-related-grid {
    grid-template-columns: 1fr;
  }

  .solution-detail-points li {
    min-height: 0;
  }

  .solution-side-nav {
    padding: 22px 18px;
  }

  .solution-side-nav a {
    display: block;
    margin-right: 0;
  }
}

@media (max-width: 1360px) {
  .official-app-hero-copy,
  .official-app-body {
    width: calc(100% - 160px);
  }

  .app-office-values,
  .app-office-systems {
    gap: 28px;
  }

  .app-pain-grid {
    gap: 24px;
  }

  .building-value-panel {
    gap: 36px;
  }

  .official-news-inner {
    width: calc(100% - 160px);
  }

  .official-news-item,
  .official-news-item.is-reversed {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }
}

@media (max-width: 1180px) {
  .official-app-hero {
    min-height: 280px;
  }

  .official-app-hero-copy,
  .official-app-body {
    width: calc(100% - 96px);
  }

  .app-office-values,
  .app-office-systems,
  .app-pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-office-value {
    gap: 34px;
  }

  .building-value-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .building-value-list,
  .building-value-list.left {
    text-align: left;
  }

  .building-value-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .building-value-panel > img {
    max-width: 680px;
    margin: 0 auto;
  }

  .official-news-page .subpage-copy {
    padding-top: 0;
  }

  .official-news-page .subpage-hero img {
    height: 380px;
  }

  .official-news-inner {
    width: calc(100% - 96px);
  }

  .official-news-section::after {
    opacity: 0.16;
  }

  .official-news-copy h3 {
    font-size: 1.35rem;
  }

  .official-news-item.is-emphasis .official-news-copy h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 760px) {
  .official-app-scene + .official-app-scene {
    padding-top: 0;
  }

  .official-app-hero {
    min-height: 230px;
    background-position: 58% top;
  }

  .official-app-hero-copy,
  .official-app-body {
    width: calc(100% - 32px);
  }

  .official-app-hero-copy h1 {
    max-width: 280px;
    margin-bottom: 16px;
    font-size: 2rem;
  }

  .official-app-hero-copy p {
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 0.82rem;
  }

  .official-app-body {
    padding: 36px 0 68px;
  }

  .official-app-summary {
    line-height: 2;
  }

  .app-office-overview,
  .app-building-overview {
    margin-bottom: 64px;
  }

  .app-office-values,
  .app-office-systems,
  .app-pain-grid,
  .building-value-list {
    grid-template-columns: 1fr;
  }

  .app-office-values {
    margin-bottom: 64px;
  }

  .app-office-value {
    gap: 20px;
  }

  .app-office-value-copy {
    min-height: 0;
  }

  .app-building-pains h2,
  .app-building-values h2 {
    margin-bottom: 36px;
  }

  .app-pain-grid {
    margin-bottom: 70px;
  }

  .building-value-panel {
    margin-bottom: 56px;
  }

  .building-value-item span {
    display: none;
  }

  .official-news-page .subpage-hero {
    min-height: 0;
  }

  .official-news-page .subpage-copy {
    padding-top: 0;
  }

  .official-news-section {
    padding: 56px 0 72px;
  }

  .official-news-section::before {
    left: -260px;
    top: 12px;
    opacity: 0.35;
  }

  .official-news-section::after {
    display: none;
  }

  .official-news-inner {
    width: calc(100% - 32px);
  }

  .official-news-inner h2 {
    margin-bottom: 28px;
    font-size: 1.85rem;
  }

  .official-news-list {
    gap: 56px;
  }

  .official-news-item,
  .official-news-item.is-reversed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .official-news-item.is-reversed .official-news-media,
  .official-news-item.is-reversed .official-news-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .official-news-date {
    margin-bottom: 14px;
    font-size: 1.05rem;
  }

  .official-news-copy h3,
  .official-news-item.is-emphasis .official-news-copy h3 {
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .official-news-copy p {
    margin-bottom: 24px;
    line-height: 1.85;
  }

  .official-news-more {
    width: 148px;
    height: 46px;
  }

  .news-pagination {
    gap: 14px;
    margin-top: 58px;
    font-size: 0.9rem;
  }

  .news-pagination a,
  .news-pagination button,
  .news-pagination span {
    height: 38px;
  }

  .news-pagination .is-active {
    width: 38px;
  }
}
