:root {
  --navy: #061a3c;
  --navy-2: #092b60;
  --blue: #1268d6;
  --cyan: #18d6ff;
  --teal: #23d3b3;
  --green: #31d27c;
  --gold: #f5b940;
  --red: #ff5151;
  --ink: #0c1728;
  --muted: #5b6d84;
  --line: #d9e5f2;
  --bg: #f5f8fc;
  --white: #ffffff;
  --container-main: 1440px;
  --container-reading: 1200px;
  --container-width: var(--container-main);
  --container-wide: 1680px;
  --container-scenario: 1520px;
  --container-service: 1480px;
  --header-height: clamp(66px, 4.8vw, 82px);
  --site-max: var(--container-main);
  --site-width: min(92vw, var(--site-max));
  --section-y: clamp(72px, 8vw, 120px);
  --section-x: max(18px, 4vw);
  --page-bg: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  --page-bg-solid: #f6faff;
  --section-space: 120px;
  --section-gap: 120px;
  --content-gap: 56px;
  --card-gap: 32px;
  --page-title: #102a43;
  --page-subtitle: #5b708a;
  --page-eyebrow: #6b7c93;
  --keyword-blue: #1677ff;
  --section-y-fluid: clamp(88px, 7.5vw, 120px);
  --section-x-fluid: max(16px, 4vw);
  --content-gap-fluid: clamp(34px, 4vw, 56px);
  --card-gap-fluid: clamp(18px, 2.1vw, 32px);
  --inner-page-top: clamp(56px, 4.6vw, 76px);
  --inner-page-bottom: clamp(68px, 5.6vw, 96px);
  --inner-title-gap: clamp(26px, 2.6vw, 36px);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  color: var(--ink);
  letter-spacing: 0px;
}

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

img {
  display: block;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.18s;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(20, 105, 220, 0.48);
  outline-offset: 3px;
}

#main-content {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.site-header {
  position: sticky;
  top: 0px;
  z-index: 50;
  display: flex;
  align-items: center;
  padding: 0px 36px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 229, 242, 0.85);
  backdrop-filter: blur(16px);
}

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

.brand img {
  object-fit: contain;
}

.brand strong {
  display: block;
  line-height: 1.2;
  font-weight: 600;
  color: rgb(11, 31, 56);
}

.brand small {
  display: block;
  margin-top: 4px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(96, 116, 141);
}

.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav a,
.nav-dropdown > a {
  color: rgb(33, 49, 72);
  padding: 8px 0px;
  border-bottom: 2px solid transparent;
  transition: color 0.22s, border-color 0.22s;
}

.nav {
  top: calc(var(--header-height) + 8px);
}

.nav a:hover,
.nav a.active,
.nav-dropdown:hover > a {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav a.active {
  font-weight: 800;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  width: 150px;
  padding: 8px;
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: rgba(15, 44, 92, 0.12) 0px 18px 42px;
  opacity: 0;
  pointer-events: none;
}


.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-bottom: 0px;
  border-radius: 6px;
  color: rgb(33, 49, 72);
}

.nav-dropdown-menu a:hover {
  background: rgb(242, 248, 255);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  border: 0px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  width: 42px;
  height: 38px;
}

.section {
  padding: 104px 48px;
}

.page-section {
  position: relative;
}

.page-section.section:not(.section-dark) {
  border-top: 1px solid rgba(15, 76, 148, 0.06);
}

.products-section,
.cases-section {
  background: rgb(255, 255, 255);
}


.contact-section {
  margin-top: 0px;
}

.section-dark {
  color: white;
  background: linear-gradient(135deg, rgb(6, 26, 60) 0%, rgb(8, 39, 85) 48%, rgb(11, 61, 124) 100%);
}

.eyebrow {
  margin: 0px 0px 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact h2{
  margin: 0px;
}

.section-dark p{
  color: rgba(255, 255, 255, 0.78);
}


.overview-grid article {
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 16px;
  box-shadow: rgba(15, 44, 92, 0.06) 0px 14px 36px;
}

.overview-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: rgb(255, 255, 255);
  font-weight: 900;
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 76, 148));
  margin-bottom: 18px;
}

.overview-grid h3 {
  margin: 0px 0px 12px;
  color: rgb(11, 31, 58);
  font-size: 18px;
  line-height: 1.4;
}

.overview-grid p {
  margin: 0px;
  color: rgb(83, 101, 122);
  font-size: 14px;
  line-height: 1.8;
}

.overview-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.home-cta-section {
  padding: 88px 48px;
}

.home-cta-inner {
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-cta-inner h2 {
  margin: 0px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
}

.home-cta-inner p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0px 0px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.news-section {
  min-height: calc(-164px + 100vh);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 110px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(rgba(7, 38, 82, 0), rgb(248, 250, 252) 92%);
}

.hero-grid {
  position: absolute;
  inset: 0px;
  opacity: 0.1;
  background-image: linear-gradient(rgba(24, 214, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 214, 255, 0.16) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(900px) rotateX(58deg) translateY(120px) scale(1.2);
  transform-origin: center bottom;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin: 0px;
  display: grid;
}

.hero-eyebrow {
  margin: 24px 0px 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(202, 241, 255, 0.92);
}

.hero-lead {
  margin: 26px 0px 0px;
  letter-spacing: 0.01em;
}

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

.btn {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 800;
}

.btn.primary {
  background: linear-gradient(135deg, rgb(7, 83, 199), rgb(19, 152, 239));
  color: white;
  box-shadow: rgba(18, 104, 214, 0.34) 0px 16px 38px;
}

.btn.secondary {
  border-color: rgba(210, 226, 244, 0.34);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px inset;
}

.btn.secondary:hover {
  border-color: rgba(24, 214, 255, 0.56);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(24, 214, 255, 0.12));
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-row a {
  border: 1px solid rgba(24, 214, 255, 0.32);
  background: rgba(24, 214, 255, 0.08);
  border-radius: 8px;
  padding: 9px 12px;
  color: rgb(197, 245, 255);
  transition: transform 0.22s, background 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.trust-row a:hover {
  transform: translateY(-2px);
  background: rgba(24, 214, 255, 0.18);
  border-color: rgba(24, 214, 255, 0.72);
  box-shadow: rgba(24, 214, 255, 0.12) 0px 10px 24px;
}

.dashboard {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(149, 210, 255, 0.34);
  background: rgba(4, 20, 49, 0.82);
  box-shadow: rgba(0, 0, 0, 0.34) 0px 34px 76px, rgba(16, 118, 255, 0.13) 0px 18px 34px, rgba(255, 255, 255, 0.08) 0px 0px 0px 1px inset;
  transition: transform 0.32s, box-shadow 0.32s, border-color 0.32s;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 42%), radial-gradient(circle at 18% 0%, rgba(24, 214, 255, 0.18), transparent 36%);
}

.dashboard::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: -28px;
  height: 34px;
  z-index: -2;
  border-radius: 50%;
  background: rgba(0, 10, 28, 0.36);
  filter: blur(22px);
}

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

.dash-top,
.screen-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(97, 178, 255, 0.22);
  padding-bottom: 12px;
}

.status-dot {
  color: var(--green);
}

.dash-top .status-dot {
  color: rgba(202, 216, 232, 0.68);
  font-size: 12px;
  font-weight: 600;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0px;
}

.dash-metrics div {
  border: 1px solid rgba(70, 172, 255, 0.24);
  background: linear-gradient(135deg, rgba(18, 104, 214, 0.28), rgba(11, 45, 92, 0.72));
  border-radius: 8px;
  padding: 13px;
}

.dash-metrics b {
  display: block;
  color: var(--cyan);
}

.dash-metrics span {
  color: rgb(155, 181, 213);
  font-size: 12px;
}

.dash-metrics .warn {
  color: var(--gold);
}

.dash-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.command-visual {
  border: 1px solid rgba(70, 172, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(4, 20, 49, 0.7);
}


.solution-tabs,
.product-menu {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.solution-tabs button,
.product-menu button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: rgb(36, 52, 75);
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
  transition: background 0.22s, border-color 0.22s, color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.solution-tabs button.active,
.product-menu button.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.solution-tabs button:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 123, 226, 0.55);
}

.solution-stage p,
.solution-stage li {
  color: var(--muted);
  line-height: 1.78;
  text-align: left;
}

.solution-stage ul {
  margin: 22px 0px 0px;
  padding: 0px;
  display: grid;
}

.solution-stage li {
  position: relative;
  list-style: none;
  padding-left: 18px;
}

.solution-stage li::before {
  position: absolute;
  left: 0px;
  top: 0.82em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: rgba(24, 123, 226, 0.1) 0px 0px 0px 4px;
}


.stage-visual::before {
  position: absolute;
  inset: 0px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(rgba(6, 20, 46, 0.05), rgba(6, 20, 46, 0.42)), radial-gradient(circle at 50% 15%, rgba(24, 214, 255, 0.16), transparent 40%);
}

#solutions {
  background: rgb(243, 247, 251);
}

#solutions .eyebrow {
  color: rgb(164, 175, 189);
  font-size: 11px;
  font-weight: 400;
}


.product-layout {
  margin: 0px auto;
  display: grid;
}

.product-menu {
  flex-direction: column;
  justify-content: start;
  margin: 0px;
}

.product-menu button {
  text-align: left;
}

.product-screen {
  color: white;
  background: rgb(7, 29, 66);
  border-radius: 8px;
  border: 1px solid rgba(18, 104, 214, 0.35);
  padding: 18px;
}

.product-image-frame {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(70, 172, 255, 0.28);
  background: rgb(3, 21, 47);
  box-shadow: rgba(255, 255, 255, 0.04) 0px 0px 0px 1px inset, rgba(0, 11, 28, 0.28) 0px 18px 38px;
}

.product-image-frame img {
  display: block;
  aspect-ratio: 16 / 9;
}

.screen-title strong {
  font-size: 24px;
}

.screen-title span {
  color: rgb(136, 223, 255);
  font-size: 13px;
}

.hardware-grid {
  width: min(1240px, 100%);
  margin: 24px auto 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hardware-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgb(249, 252, 255);
}

.hardware-grid span {
  color: var(--blue);
  font-weight: 900;
}

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

.hardware-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.service-flow {
  margin: 0px auto;
  display: grid;
}

.service-flow div,
.case-grid article{
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-flow div {
  min-height: 306px;
  padding: 34px 28px 32px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 20px;
  box-shadow: rgba(15, 44, 92, 0.06) 0px 14px 36px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service-flow div::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(22, 119, 255), rgba(22, 119, 255, 0));
  opacity: 0.75;
  transition: opacity 0.25s;
}

.service-flow div:hover {
  transform: translateY(-6px);
  box-shadow: rgba(15, 44, 92, 0.13) 0px 24px 56px;
}

.service-flow div:hover::before {
  opacity: 1;
}

.service-flow b {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: white;
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 76, 148));
  border-radius: 50%;
  margin: 0px auto;
  outline: rgba(22, 119, 255, 0.08) solid 6px;
  box-shadow: rgba(22, 119, 255, 0.25) 0px 10px 24px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-flow div:hover b {
  transform: scale(1.05);
  box-shadow: rgba(22, 119, 255, 0.32) 0px 14px 30px;
}

.service-flow strong {
  display: block;
  width: 100%;
  margin: 24px auto 12px;
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
  color: rgb(11, 31, 58);
  font-weight: 800;
}

.service-flow p {
  width: min(100%, 205px);
  max-width: 205px;
  color: rgb(83, 101, 122);
  font-size: 15px;
  line-height: 1.9;
  margin: 18px auto 0px;
  text-align: left;
}

.service-summary {
  width: min(1380px, 100% - 64px);
  margin: 32px auto 0px;
  padding: 22px 32px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(247, 251, 255) 50%, rgb(255, 255, 255) 100%);
  color: rgb(51, 74, 102);
  font-weight: 700;
  text-align: center;
  box-shadow: rgba(15, 44, 92, 0.06) 0px 14px 36px;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.7;
  white-space: nowrap;
}

.summary-line + .summary-line {
  margin-top: 12px;
}

.flow-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0px 13px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: 999px;
  background: rgba(22, 119, 255, 0.08);
  color: rgb(22, 119, 255);
  font-weight: 800;
}

.flow-arrow {
  color: rgba(22, 119, 255, 0.55);
  font-weight: 800;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  padding: 0px 2px;
  border: 0px;
  border-radius: 0px;
  background: transparent;
  color: rgb(15, 76, 148);
  font-weight: 800;
}

.result-separator {
  color: rgba(22, 119, 255, 0.42);
  font-weight: 700;
}


.case-grid {
  margin: 0px auto;
  display: grid;
}

.case-grid .case-card {
  min-height: 420px;
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: rgba(15, 44, 92, 0.06) 0px 14px 36px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.case-grid .case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 119, 255, 0.32);
  box-shadow: rgba(15, 44, 92, 0.12) 0px 24px 56px;
}

.case-image-wrap {
  background: linear-gradient(rgb(244, 249, 255) 0%, rgb(234, 244, 255) 100%);
  border-radius: 18px 18px 0px 0px;
  display: grid;
  place-items: center;
}

.case-image {
  display: block;
}

.case-content {
  padding: 22px 24px 26px;
}

.case-title {
  margin: 0px;
  min-height: 34px;
  color: rgb(11, 31, 58);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  word-break: keep-all;
  white-space: nowrap;
}

.case-desc {
  margin: 14px 0px 0px;
  color: rgb(83, 101, 122);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}

.case-grid .case-more-card {
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(244, 249, 255) 100%);
  border-style: dashed;
  border-color: rgba(22, 119, 255, 0.28);
}

.case-more-visual {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.14), transparent 62%), linear-gradient(rgb(244, 249, 255) 0%, rgb(234, 244, 255) 100%);
  border-radius: 18px 18px 0px 0px;
}

.case-more-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 76, 148));
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 700;
  box-shadow: rgba(22, 119, 255, 0.25) 0px 18px 36px;
}

.case-more-visual span {
  color: rgba(15, 76, 148, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.case-more-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: rgb(22, 119, 255);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s;
}

.case-more-card:hover .case-more-link {
  transform: translateX(4px);
}

.case-more-card .case-content {
  text-align: center;
}

.contact {
  padding-bottom: 72px;
}

.contact-layout {
  margin: 0px auto;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-list a,
.contact-list span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label,
.contact-form .form-field {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.contact-form .form-field {
  align-content: start;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 8px;
  padding: 12px;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"],
.contact-form select[aria-invalid="true"] {
  border-color: rgba(255, 126, 126, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 92, 92, 0.14);
}

.form-field-error {
  min-height: 18px;
  color: rgb(255, 184, 184);
  font-size: 12px;
  line-height: 1.45;
}

.form-privacy {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.form-required-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.form-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 8px 10px;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.6;
}

.form-consent input {
  appearance: auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: initial;
  border-radius: 3px;
  background: initial;
  box-shadow: none;
  accent-color: var(--blue);
}

.form-consent label {
  display: block;
  color: inherit;
}

.form-consent a {
  color: rgb(174, 215, 255);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.privacy-section {
  min-height: 70vh;
}

.privacy-document {
  width: min(88%, var(--container-reading));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 20px;
  background: var(--white);
  box-shadow: rgba(15, 44, 92, 0.07) 0 20px 52px;
}

.privacy-document section + section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 76, 148, 0.1);
}

.privacy-document h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(20px, 2vw, 26px);
}

.privacy-document p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.privacy-document a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-document .privacy-updated {
  margin-top: 30px;
  color: rgb(107, 124, 147);
  font-size: 14px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.6;
}

.form-status:empty {
  display: none;
}

.form-status.is-loading {
  color: rgb(219, 235, 255);
  background: rgba(22, 119, 255, 0.14);
}

.form-status.is-success {
  color: rgb(218, 255, 230);
  background: rgba(24, 169, 87, 0.18);
  border: 1px solid rgba(86, 220, 137, 0.28);
}

.form-status.is-error {
  color: rgb(255, 225, 225);
  background: rgba(214, 61, 61, 0.18);
  border: 1px solid rgba(255, 126, 126, 0.3);
}

.form-backup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
}

.form-backup[hidden] {
  display: none;
}

.form-backup a,
.form-wechat-fallback {
  color: rgb(255, 255, 255);
  font-weight: 800;
}

.form-wechat-fallback {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

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

.qr-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.qr-box img {
  width: 98px;
  height: 98px;
  background: white;
  border-radius: 8px;
  padding: 4px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: rgb(194, 212, 234);
  background: rgb(4, 20, 46);
}

.footer strong {
  color: white;
  display: block;
  margin-bottom: 4px;
}

.footer p {
  margin: 0px;
  font-size: 13px;
}

.wechat-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  border: 0px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  padding: 13px 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: rgba(18, 104, 214, 0.32) 0px 16px 34px;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
}

.wechat-float:hover {
  transform: translateY(-4px);
  background: rgb(15, 125, 240);
  box-shadow: rgba(18, 104, 214, 0.42) 0px 22px 42px;
}

.modal {
  position: fixed;
  inset: 0px;
  display: none;
  z-index: 100;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0px;
  background: rgba(0, 0, 0, 0.72);
}

.modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 920px);
  max-height: 88vh;
  background: white;
  border-radius: 8px;
  padding: 16px;
}

.modal-panel img {
  max-height: 82vh;
  margin: 0px auto;
}

.modal-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 34px;
  border: 0px;
  border-radius: 8px;
  color: white;
  background: var(--navy);
  font-size: 22px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s, transform 0.7s;
}

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

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

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

.hero .dashboard {
  transform: translateY(0px);
  transform-origin: center center;
}

.hero .dashboard:hover {
  transform: translateY(-6px);
  border-color: rgba(149, 210, 255, 0.52);
  box-shadow: rgba(0, 0, 0, 0.34) 0px 36px 90px, rgba(22, 119, 255, 0.2) 0px 0px 60px, rgba(255, 255, 255, 0.12) 0px 0px 0px 1px inset;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0px 24px;
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height, 72px) + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
  }

  .nav-dropdown {
    display: block;
  }

  .nav-dropdown > a {
    border-bottom: 2px solid transparent;
  }

  .nav-dropdown-menu {
    border: 0px;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  

  

  

  .home-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-menu {
    flex-direction: row;
  }
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    height: 66px;
    padding: 0px 14px;
  }

  .brand {
    min-width: 0px;
  }

  .section {
    padding: 72px 18px;
  }

  

  .home-cta-section {
    padding: 72px 18px;
  }

  .home-cta-inner h2 {
    font-size: 28px;
  }

  .trust-row a {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .hero .dashboard,
.hero .dashboard:hover {
    transform: none;
    box-shadow: rgba(0, 0, 0, 0.32) 0px 28px 64px, rgba(16, 118, 255, 0.12) 0px 16px 30px, rgba(255, 255, 255, 0.08) 0px 0px 0px 1px inset;
  }

  .dash-top {
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }

  .dash-top .status-dot {
    display: none;
  }

  .dash-metrics b {
    font-size: 24px;
  }

  .dash-metrics,
  .dash-main,
  .hardware-grid,
  .case-grid,
  .service-flow,
  .contact-form{
    grid-template-columns: 1fr;
  }

  .service-summary {
    width: 100%;
    white-space: normal;
    padding: 18px 16px;
  }

  .summary-line {
    flex-wrap: wrap;
    white-space: normal;
    gap: 7px;
    font-size: 14px;
  }

  .flow-tag {
    height: 28px;
    padding: 0px 11px;
  }

  .result-tag {
    padding: 4px 10px;
  }

  .service-flow {
    gap: 18px;
  }

  .service-flow div {
    min-height: auto;
    padding: 28px 24px 26px 88px;
  }

  .service-flow div::before {
    left: 88px;
    right: 24px;
  }

  .service-flow b {
    position: absolute;
    left: 22px;
    top: 28px;
    width: 48px;
    height: 48px;
    margin: 0px;
  }

  .service-flow strong {
    margin: 2px 0px 10px;
    text-align: center;
    font-size: 18px;
  }

  .service-flow p {
    width: min(100%, 260px);
    max-width: 260px;
    margin: 12px auto 0px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
  }

  .solution-stage,
  .product-layout,
  .hardware-grid,
  .case-grid,
  .service-flow,
  .contact-layout{
    width: 100%;
    max-width: 100%;
  }

  .solution-stage {
    overflow: hidden;
  }

  .stage-visual {
    overflow: hidden;
  }

  .command-visual,
.command-visual img {
    min-height: 0px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px;
  }
}

#solutions {
  padding-top: 144px;
  padding-bottom: 144px;
}

.solution-tabs {
  margin-bottom: 42px;
}

.solution-copy {
  justify-self: start;
}

.solution-stage ul {
  margin-top: 30px;
  gap: 12px;
}

.solution-stage li {
  display: grid;
  grid-template-columns: 8px max-content minmax(0px, 1fr);
  align-items: start;
  column-gap: 9px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.75;
  transition: background 0.2s;
}

.solution-stage li::before {
  content: none;
}

.solution-stage li strong {
  color: var(--blue);
  white-space: nowrap;
  font-weight: 900;
}

.solution-stage li span:last-child {
  color: rgb(78, 96, 117);
  min-width: 0px;
}

.solution-stage li:hover {
  background: rgba(24, 123, 226, 0.055);
}

.stage-visual {
  aspect-ratio: auto;
}

@media (max-width: 1180px) {
  .solution-stage {
    gap: 30px;
    min-height: 0px;
  }

  .solution-copy {
    max-width: 100%;
    min-height: 0px;
  }

  .solution-stage h3,
.solution-desc {
    max-width: 100%;
  }

  .stage-visual {
    height: auto;
    min-height: 300px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  #solutions {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .solution-tabs {
    justify-content: flex-start;
    margin: 0px -18px 28px;
    padding: 0px 18px 8px;
  }

  .solution-tabs button {
    width: 132px;
    min-width: 132px;
    padding: 12px 0px;
    font-size: 14px;
  }

  .solution-stage {
    padding: 24px 18px;
    border-radius: 10px;
    gap: 24px;
  }

  .solution-stage h3 {
    font-size: 24px;
    line-height: 1.32;
    margin-bottom: 20px;
  }

  .solution-stage ul {
    margin-top: 22px;
    gap: 8px;
  }

  .solution-stage li {
    grid-template-columns: 8px 1fr;
    column-gap: 9px;
    padding: 9px 8px;
  }

  .solution-stage li strong,
.solution-stage li span:last-child {
    grid-column: 2;
  }

  .stage-visual {
    min-height: 210px;
  }
}

.solutions-section {
  position: relative;
  padding: 112px 0px 128px;
  overflow: hidden;
}

.solutions-section::before {
  content: "";
  position: absolute;
  inset: 0px;
  pointer-events: none;
  opacity: 0.34;
  background-image: linear-gradient(rgba(15, 76, 148, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 76, 148, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(transparent, rgb(0, 0, 0) 18%, rgb(0, 0, 0) 82%, transparent);
}

.solutions-shell {
  position: relative;
  z-index: 1;
  margin: 0px auto;
}

.solution-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0px auto 44px;
  padding-bottom: 16px;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}

.solution-tabs::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: min(720px, 100%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(22, 119, 255, 0.22), transparent);
}

.solution-tabs::-webkit-scrollbar {
  display: none;
}

.solution-tabs button {
  position: relative;
  width: 166px;
  min-width: 166px;
  height: 50px;
  padding: 0px 18px;
  border: 1px solid rgba(15, 76, 148, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: rgb(18, 48, 83);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: rgba(15, 44, 92, 0.04) 0px 8px 22px;
  transition: transform 0.24s, border-color 0.24s, box-shadow 0.24s, background 0.24s, color 0.24s;
}

.solution-tabs button::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -17px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.24s, box-shadow 0.24s;
}

.solution-tabs button:hover:not(.active) {
  transform: translateY(-3px);
  border-color: rgba(22, 119, 255, 0.46);
  background: rgb(248, 251, 255);
  color: rgb(15, 76, 148);
  box-shadow: rgba(15, 76, 148, 0.1) 0px 16px 34px;
}

.solution-tabs button.active {
  border-color: transparent;
  background: linear-gradient(135deg, rgb(15, 76, 148) 0%, rgb(22, 119, 255) 100%);
  color: rgb(255, 255, 255);
  box-shadow: rgba(22, 119, 255, 0.22) 0px 14px 32px;
}

.solution-tabs button.active::before {
  background: rgb(22, 119, 255);
  box-shadow: rgba(22, 119, 255, 0.55) 0px 0px 16px;
}

.solution-stage {
  position: relative;
  margin: 0px auto;
  border: 1px solid rgba(15, 76, 148, 0.1);
  border-radius: 20px;
  background: radial-gradient(circle at 84% 14%, rgba(22, 119, 255, 0.1), transparent 28%), linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
  box-shadow: rgba(15, 44, 92, 0.1) 0px 20px 60px;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
}

.solution-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(22, 119, 255, 0.1), transparent 28%, transparent 72%, rgba(0, 166, 214, 0.1));
  opacity: 0.32;
}

.solution-stage:hover {
  transform: translateY(-4px);
  box-shadow: rgba(15, 44, 92, 0.14) 0px 28px 78px;
}

.solution-stage.is-switching {
  opacity: 0;
  transform: translateY(12px);
}

.solution-copy,
.stage-visual {
  position: relative;
  z-index: 1;
}

.solution-copy {
  width: 100%;
  flex-direction: column;
  justify-content: center;
}

.solution-stage h3 {
  color: rgb(9, 23, 42);
  font-size: clamp(30px, 2.15vw, 34px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0px;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  text-wrap: balance;
}

.solution-capabilities {
  display: grid;
  gap: 16px;
}

.capability-item {
  display: grid;
  align-items: start;
  border: 1px solid rgba(15, 76, 148, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: rgba(15, 44, 92, 0.043) 0px 10px 28px;
  transition: transform 0.22s, border-color 0.22s, background 0.22s, box-shadow 0.22s;
}

.capability-item:hover {
  transform: translateX(4px);
  border-color: rgba(22, 119, 255, 0.24);
  background: rgba(239, 247, 255, 0.92);
  box-shadow: rgba(15, 76, 148, 0.08) 0px 14px 34px;
}

.capability-index {
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, rgb(15, 76, 148), rgb(22, 119, 255));
  font-size: 13px;
  font-weight: 900;
  box-shadow: rgba(22, 119, 255, 0.22) 0px 10px 22px;
}

.capability-item strong {
  display: block;
  color: rgb(15, 76, 148);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.capability-item p {
  margin: 7px 0px 0px;
  word-break: normal;
}

.stage-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  border: 0px;
  border-radius: 0px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  contain: none;
}

.stage-visual::before {
  content: none;
}

.stage-visual img {
  display: block;
  transition: transform 0.3s, filter 0.3s;
}

.solution-stage:hover .stage-visual img {
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.03);
}

.stage-visual-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 76, 148, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: rgb(77, 96, 119);
}

.stage-visual-meta span {
  color: rgb(122, 139, 160);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stage-visual-meta strong {
  color: rgb(15, 76, 148);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  .solutions-shell {
    width: min(1240px, 100% - 64px);
  }
}

@media (max-width: 1080px) {
  .solution-stage {
    grid-template-columns: minmax(0px, 1fr) minmax(0px, 1fr);
    gap: 30px;
    padding: 40px 34px;
  }

  .solution-copy {
    max-width: 100%;
  }

  .capability-item {
    grid-template-columns: 38px minmax(0px, 1fr);
  }

  .capability-index {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 820px) {
  .solutions-section {
    padding: 86px 0px 96px;
  }

  

  .solution-tabs {
    margin: 0px -18px 30px;
    padding: 0px 18px 16px;
  }

  .solution-tabs::after {
    left: 18px;
    width: calc(100% - 36px);
    transform: none;
  }

  .solution-tabs button {
    width: 150px;
    min-width: 150px;
    height: 48px;
    font-size: 15px;
  }

  .solution-stage {
    grid-template-columns: 1fr;
    min-height: 0px;
  }

  .solution-copy {
    min-height: 0px;
  }

  .solution-stage h3 {
    font-size: 26px;
  }

  .stage-visual-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .solutions-shell {
    width: calc(100% - 28px);
  }

  .solution-stage {
    border-radius: 16px;
  }

  .solution-stage h3 {
    font-size: 24px;
  }

  .solution-capabilities {
    gap: 12px;
    margin-top: 24px;
  }

  .capability-item {
    min-height: 0px;
    padding: 13px 12px;
  }

  .capability-item strong {
    font-size: 15px;
  }

  .capability-item p {
    font-size: 13px;
  }
}

.solution-stage {
  align-items: stretch;
}

.solution-stage h3 {
  max-width: 920px;
  margin: 0px auto;
  text-align: center;
}

.solution-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
}

.solution-copy {
  max-width: none;
  display: block;
}

.solution-capabilities {
  margin-top: 0px;
}

.capability-item {
  min-height: 82px;
}

@media (max-width: 1280px) {
  .solution-stage {
    padding: 46px 44px 50px;
    gap: 30px;
  }

  .solution-body {
    gap: 40px;
  }
}

@media (max-width: 1080px) {
  .solution-body {
    grid-template-columns: minmax(0px, 1fr) minmax(0px, 1fr);
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .solution-stage {
    gap: 24px;
  }

  .solution-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stage-visual {
    order: 2;
  }

  .solution-copy {
    order: 1;
  }

  .solution-stage h3,
.solution-desc {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .solution-stage {
    padding: 26px 18px;
  }
}


.solution-stage {
  padding-left: 58px;
  padding-right: 58px;
}

.solution-body {
  grid-template-columns: minmax(520px, 0.95fr) minmax(560px, 1.05fr);
  gap: 52px;
}

.solution-copy {
  min-width: 0px;
}

.solution-capabilities {
  width: 100%;
}

.capability-item {
  width: 100%;
  min-width: 520px;
  grid-template-columns: 46px minmax(0px, 1fr);
  gap: 14px;
  padding: 14px 18px;
}

.capability-index {
  width: 46px;
  height: 46px;
}

.capability-item strong {
  white-space: nowrap;
}

.capability-item p {
  color: rgb(95, 111, 133);
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
  overflow-wrap: normal;
}

@media (max-width: 1380px) {
  .solutions-shell {
    width: min(1320px, 100% - 56px);
  }

  .solution-stage {
    width: min(1240px, 100%);
    padding-left: 46px;
    padding-right: 46px;
  }

  .solution-body {
    grid-template-columns: minmax(500px, 0.95fr) minmax(520px, 1.05fr);
    gap: 44px;
  }

  .capability-item {
    min-width: 500px;
  }
}

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

  .capability-item {
    min-width: 0px;
  }
}

@media (max-width: 720px) {
  .solutions-shell {
    width: calc(100% - 28px);
  }

  .capability-item p {
    white-space: normal;
  }
}

#products {
  position: relative;
  overflow: hidden;
}

#products::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 250px;
  width: min(1340px, 100% - 96px);
  height: 620px;
  transform: translateX(-50%);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(238, 247, 255, 0.86), rgba(255, 255, 255, 0.72));
  box-shadow: rgba(15, 44, 92, 0.07) 0px 34px 90px;
  pointer-events: none;
}

#products .product-layout,
#products .hardware-grid {
  position: relative;
  z-index: 1;
}

#products .product-layout {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(248, 252, 255, 0.92), rgba(238, 247, 255, 0.78));
  box-shadow: rgba(15, 44, 92, 0.08) 0px 34px 90px;
}

#products .product-menu {
  flex-flow: row;
  border: 0px;
  border-radius: 0px;
  background: transparent;
  box-shadow: none;
}

.product-menu-kicker {
  display: none;
}

#products .product-menu button {
  position: relative;
  flex: 0 0 auto;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s, color 0.25s;
}

#products .product-menu button:hover,
#products .product-menu button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 119, 255, 0.45);
  background: rgb(242, 248, 255);
  box-shadow: rgba(15, 76, 148, 0.09) 0px 10px 26px;
}

#products .product-menu button.active::before {
  display: none;
}

#products .product-screen {
  box-shadow: rgba(15, 44, 92, 0.14) 0px 24px 60px;
  transition: transform 0.28s, box-shadow 0.28s, opacity 0.28s;
}

#products .product-screen:hover {
  transform: translateY(-3px);
  box-shadow: rgba(15, 44, 92, 0.18) 0px 30px 74px;
}

#products .product-screen.is-switching,
#products .hardware-grid.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

#products .screen-title {
  justify-content: space-between;
}

#products .product-image-frame {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(70, 172, 255, 0.3);
  box-shadow: rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset, rgba(0, 12, 35, 0.34) 0px 24px 60px;
}

#products .product-image-frame::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -18px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(rgba(15, 44, 92, 0.28), transparent 70%);
  pointer-events: none;
}

#products .product-image-frame img {
  transition: opacity 0.3s, transform 0.3s, filter 0.3s;
}

#products .product-screen.is-switching .product-image-frame img {
  opacity: 0;
  transform: translateY(8px);
}

#products .hardware-grid {
  grid-template-columns: 1fr;
  transition: opacity 0.28s, transform 0.28s;
}

#products .hardware-grid article {
  position: relative;
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 18px;
  box-shadow: rgba(15, 44, 92, 0.06) 0px 14px 36px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

#products .hardware-grid article::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 24px;
  right: 24px;
  opacity: 0.72;
}

#products .hardware-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 119, 255, 0.35);
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(245, 250, 255) 100%);
  box-shadow: rgba(15, 44, 92, 0.12) 0px 22px 52px;
}

#products .hardware-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 76, 148));
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow: rgba(22, 119, 255, 0.22) 0px 10px 24px;
  transition: transform 0.25s, filter 0.25s, box-shadow 0.25s;
}

#products .hardware-grid article:hover span {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: rgba(22, 119, 255, 0.28) 0px 14px 30px;
}

#products .hardware-grid h3 {
  color: rgb(11, 31, 58);
  font-weight: 800;
}

#products .feature-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
}

#products .feature-tags em {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(22, 119, 255, 0.08);
  color: rgb(15, 76, 148);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 1024px) {
  #products .product-menu {
    display: flex;
    flex-flow: row;
    justify-content: center;
    overflow-x: auto;
  }

  #products .product-menu button {
    min-width: 190px;
    text-align: center;
  }
}

@media (max-width: 720px) {
  #products::before {
    width: calc(100% - 24px);
    top: 210px;
  }

  #products .product-layout,
#products .hardware-grid {
    width: calc(100% - 28px);
  }

  #products .product-menu {
    display: flex;
    flex-flow: row;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  #products .product-menu-kicker {
    display: none;
  }

  

  #products .hardware-grid {
    margin-top: 28px;
    gap: 14px;
  }

  #products .hardware-grid article {
    min-height: 0px;
  }

  #products .hardware-grid h3 {
    white-space: normal;
  }
}

html {
  scroll-padding-top: calc(var(--header-height) + 14px);
}

.site-header {
  padding-inline: clamp(18px, 3vw, 48px);
  gap: clamp(12px, 1.6vw, 24px);
}

.brand {
  min-width: clamp(230px, 20vw, 320px);
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand strong {
  font-size: clamp(17px, 1.05vw, 20px);
}

.brand small {
  font-size: 12px;
}

.nav {
  gap: clamp(10px, 1.25vw, 20px);
}

.nav a,
.nav-dropdown > a {
  font-size: clamp(12px, 0.85vw, 14px);
}

.page-section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section,
.solutions-section,
.products-section,
.service-section,
.cases-section,
.contact-section,
.news-section{
  padding-block: var(--section-y);
  padding-inline: var(--section-x);
}

.contact h2{
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.16;
}

.command-visual,
.product-image-frame,
.stage-visual,
.case-image-wrap{
  min-width: 0px;
}

.command-visual img,
.stage-visual img,
#products .product-image-frame img,
.product-image-frame img,
.case-image,
.modal-panel img{
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}


.dash-metrics b {
  font-size: clamp(20px, 1.7vw, 30px);
}


.overview-grid article {
  min-height: clamp(168px, 13vw, 210px);
  padding: clamp(20px, 1.8vw, 28px);
}

.solutions-shell {
  margin-inline: auto;
}

.solution-stage {
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(32px, 4.5vw, 72px);
}

.solution-copy {
  min-height: 0px;
}

.stage-visual{
  height: auto;
  min-height: 0px;
}

.stage-visual {
  justify-content: center;
}

.stage-visual img {
  border-radius: 16px;
  background: rgb(6, 26, 58);
}

#products .product-layout {
  margin-inline: auto;
}

#products .product-menu {
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

#products .product-menu button {
  padding-inline: clamp(16px, 1.5vw, 24px);
}

#products .product-image-frame {
  overflow: hidden;
}

.service-flow,
.case-grid{
  margin-inline: auto;
}

.case-image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}


.contact-layout {
  margin-inline: auto;
}

@media (max-width: 1366px) {
  :root {
    --section-y: clamp(66px, 7vw, 104px);
  }

}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 24px;
  }

  .solution-stage,
#products .product-layout,
.product-layout,
.contact-layout {
    grid-template-columns: 1fr;
  }

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

  
}

@media (max-width: 820px) {
  :root {
    --site-width: min(92vw, 720px);
    --section-y: clamp(58px, 10vw, 86px);
  }

  .site-header {
    height: var(--header-height);
  }

  .service-flow,
  .case-grid{
    grid-template-columns: 1fr;
  }

  .solutions-shell,
#products .product-layout,
.product-layout,
.contact-layout {
    width: var(--site-width);
  }

  .solution-stage,
#products .product-layout {
    padding: clamp(20px, 5vw, 30px);
    border-radius: 18px;
  }

  .solution-tabs {
    justify-content: flex-start;
  }

  .capability-item {
    grid-template-columns: 38px minmax(0px, 1fr);
  }

  .contact-layout {
    gap: 28px;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 66px;
    --site-width: calc(100vw - 32px);
    --section-x: 16px;
  }

  .brand {
    min-width: 0px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .dash-metrics {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}

body {
  background: var(--page-bg-solid);
}

.page-layout {
  background: var(--page-bg);
}

.page-layout > .page-section.section:not(.section-dark),
.page-layout > .solutions-section,
.page-layout > .products-section,
.page-layout > .service-section,
.page-layout > .cases-section,
.page-layout > .news-section,
.page-layout > .home-overview-section{
  padding-block: var(--section-space);
  padding-inline: 0px;
  background: var(--page-bg);
  border-top: 0px;
}

.page-layout > .page-section.section-dark {
  padding-block: var(--section-space);
}

#products,
.solutions-section,
.service-section,
.cases,
.news-section,
.home-overview-section,
.home-solutions-overview,
.home-service-overview,
.section-split,
.certs{
  background: var(--page-bg) !important;
}

#products::before,
.solutions-section::before {
  display: none !important;
}

.contact-copy h2{
  margin: 0px 0px 20px;
  color: var(--page-title);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0px;
}

.contact-copy > p:not(.eyebrow){
  max-width: 760px;
  margin: 0px auto;
  color: var(--page-subtitle);
  font-size: clamp(17px, 1.1vw, 18px);
  line-height: 1.8;
  font-weight: 400;
}

.section-dark .contact-copy .eyebrow{
  color: rgba(210, 230, 255, 0.76);
}

.section-dark .contact-copy h2{
  color: rgb(255, 255, 255);
}

.section-dark .contact-copy > p:not(.eyebrow){
  color: rgba(255, 255, 255, 0.78);
}


.contact-copy > p:not(.eyebrow) {
  margin-left: 0px;
  margin-right: 0px;
}


.service-flow,
.case-grid{
  gap: var(--card-gap);
}

.case-grid .case-card,
.overview-grid article,
.service-flow div,
#products .hardware-grid article{
  background: rgb(255, 255, 255);
}

@media (max-width: 820px) {
  :root {
    --section-space: 88px;
    --section-gap: 88px;
    --content-gap: 40px;
    --card-gap: 22px;
  }

  .contact-copy h2{
    font-size: clamp(32px, 8vw, 44px);
  }

  .contact-copy > p:not(.eyebrow){
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  :root {
    --section-space: 72px;
    --section-gap: 72px;
    --content-gap: 34px;
    --card-gap: 18px;
  }

  .contact-copy{
    width: calc(-32px + 100vw);
  }
}


.page-title .eyebrow,
.page-layout .page-title .eyebrow,
.section-dark .page-title .eyebrow {
  display: block;
  margin: 0px 0px 14px;
  padding: 0px;
  color: rgb(107, 124, 147);
  background: transparent;
  border: 0px;
  box-shadow: none;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-title h1,
.page-title h2,
.page-layout .page-title h1,
.page-layout .page-title h2,
#products .page-title h1,
#products .page-title h2,
#service .page-title h1,
#service .page-title h2,
.solutions-shell > .page-title h1,
.solutions-shell > .page-title h2,
.contact-copy.page-title h1,
.contact-copy.page-title h2 {
  display: block;
  max-width: 960px;
  margin: 0px auto 20px;
  color: rgb(16, 42, 67);
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap-style: balance;
}

.page-title h1 span,
.page-title h2 span {
  color: inherit;
}

.page-title p,
.page-layout .page-title p,
#products .page-title p,
#service .page-title p,
.solutions-shell > .page-title p,
.contact-copy.page-title p,
.section-dark .page-title p {
  max-width: 760px;
  margin: 0px auto;
  color: rgb(91, 112, 138);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}

.section-dark .page-title h1,
.section-dark .page-title h2,
.contact-section.section-dark .page-title h1,
.contact-section.section-dark .page-title h2 {
  color: rgb(255, 255, 255);
}

.section-dark .page-title p,
.contact-section.section-dark .page-title p {
  color: rgba(255, 255, 255, 0.78);
}


.contact-copy.page-title .contact-list {
  text-align: left;
}

.page-layout > .page-section.section:not(.section-dark),
.page-layout > .solutions-section,
.page-layout > .products-section,
.page-layout > .service-section,
.page-layout > .cases-section,
.page-layout > .news-section{
  padding-top: 120px;
  padding-bottom: 120px;
}

#products .product-layout,
.solution-tabs,
.service-flow,
.case-grid{
  margin-top: 0px;
}

@media (max-width: 820px) {
  .page-title,
.page-layout .page-title,
.solutions-shell > .page-title,
.contact-copy.page-title {
    width: min(92vw, 960px);
    margin-bottom: 40px;
  }

  .page-title h1,
.page-title h2,
.page-layout .page-title h1,
.page-layout .page-title h2 {
    font-size: clamp(32px, 8vw, 44px);
  }

  .page-title p,
.page-layout .page-title p {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .page-title,
.page-layout .page-title,
.solutions-shell > .page-title,
.contact-copy.page-title {
    width: calc(-32px + 100vw);
    margin-bottom: 34px;
  }
}

.solutions-section .solutions-shell {
  width: min(92vw, var(--container-main));
  max-width: var(--container-main);
  margin: 0px auto;
}

.solutions-section .page-title {
  width: min(92vw, 1280px);
  margin: 0px auto 56px;
  text-align: center;
}

.solutions-section .page-title h1 {
  max-width: 1280px;
  white-space: nowrap;
}

.solutions-section .page-title p {
  max-width: none;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.solutions-section .solution-tabs {
  padding: 8px 0px 22px;
  gap: 18px;
}

.solutions-section .solution-tabs::after {
  display: none;
}

.solutions-section .solution-tabs button {
  width: 174px;
  height: 52px;
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: rgb(16, 42, 67);
}

.solutions-section .solution-tabs button::before {
  display: none;
}

.solutions-section .solution-tabs button:hover:not(.active),
.solutions-section .solution-tabs button:focus-visible:not(.active) {
  transform: translateY(-2px);
  border-color: rgba(22, 119, 255, 0.28);
  background: rgb(255, 255, 255);
  color: rgb(15, 76, 148);
  box-shadow: rgba(15, 76, 148, 0.1) 0px 16px 32px;
}

.solutions-section .solution-tabs button.active {
  border-color: transparent;
  background: linear-gradient(135deg, rgb(18, 104, 214), rgb(22, 119, 255));
  color: rgb(255, 255, 255);
  box-shadow: rgba(22, 119, 255, 0.22) 0px 14px 30px;
}


.solutions-section .solution-stage h3 {
  max-width: 1040px;
  margin: 0px auto 18px;
  text-align: center;
  white-space: nowrap;
}

.solutions-section .solution-body {
  position: relative;
  z-index: 1;
}

.solutions-section .solution-copy {
  width: 100%;
  max-width: none;
  min-width: 0px;
}

.solutions-section .capability-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
}

.solutions-section .stage-visual {
  width: 100%;
  min-width: 0px;
}

@media (max-width: 1380px) {
  .solutions-section .page-title h1 {
    font-size: clamp(40px, 3.6vw, 56px);
  }

  .solutions-section .page-title p {
    font-size: 16px;
  }

  .solutions-section .solution-stage h3,
.solutions-section .solution-desc {
    white-space: normal;
  }
}

@media (max-width: 1080px) {
  .solutions-section .page-title h1,
.solutions-section .page-title p {
    white-space: normal;
  }

  .solutions-section .solution-body {
    grid-template-columns: 1fr;
  }

  .solutions-section .stage-visual {
    order: 2;
  }

  .solutions-section .solution-copy {
    order: 1;
  }
}

@media (max-width: 820px) {
  .solutions-section .solution-tabs {
    width: min(92vw, 720px);
    overflow-x: auto;
    justify-content: flex-start;
    padding: 8px 2px 18px;
  }

  .solutions-section .solution-tabs button {
    width: 150px;
    min-width: 150px;
  }

  .solutions-section .solution-stage {
    width: min(92vw, 720px);
    padding: 28px 22px;
  }
}

#products.products-section {
  padding-top: clamp(96px, 10vw, 120px);
}

#products .page-title {
  max-width: 1080px;
}

#products .page-title h1.product-title-line {
  line-height: 1.15;
  white-space: nowrap;
}

#products .page-title h1.product-title-line .title-accent {
  display: inline-block;
  margin: 0px 0.18em;
  color: rgb(22, 119, 255);
}

#products .product-menu {
  display: flex;
  align-items: center;
}

#products .product-menu::after,
#products .product-menu button::before {
  display: none;
}

#products .product-menu-kicker {
  display: none;
}

#products .product-menu button {
  width: auto;
  padding: 0px 28px;
  border: 1px solid rgba(15, 76, 148, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: rgb(16, 42, 67);
  box-shadow: rgba(15, 44, 92, 0.06) 0px 10px 26px;
  transform: none;
}

#products .product-menu button:hover:not(.active),
#products .product-menu button:focus-visible:not(.active) {
  transform: translateY(-2px);
  border-color: rgba(22, 119, 255, 0.28);
  background: rgb(255, 255, 255);
  color: rgb(15, 76, 148);
  box-shadow: rgba(15, 76, 148, 0.1) 0px 16px 32px;
}

#products .product-menu button.active {
  border-color: transparent;
  background: linear-gradient(135deg, rgb(18, 104, 214), rgb(22, 119, 255));
  color: rgb(255, 255, 255);
  box-shadow: rgba(22, 119, 255, 0.22) 0px 14px 30px;
}

#products .hardware-grid article {
  overflow: hidden;
}

#products .hardware-grid article::before {
  inset: 22px auto 22px 0px;
  width: 4px;
  height: auto;
  border-radius: 0px 999px 999px 0px;
  background: linear-gradient(rgb(22, 119, 255) 0%, rgba(22, 119, 255, 0.16) 100%);
}

#products .hardware-grid span {
  left: 26px;
  top: 24px;
}

@media (max-width: 1380px) {
  #products .page-title h1.product-title-line {
    font-size: clamp(38px, 3.45vw, 52px);
  }

  #products .product-layout {
    width: min(90vw, 1240px);
  }
}

@media (max-width: 1120px) {
  #products .page-title h1.product-title-line {
    white-space: normal;
  }

  #products .product-menu {
    width: min(92vw, 100%);
    justify-content: flex-start;
    overflow-x: auto;
  }

  #products .product-menu button {
    min-width: 210px;
  }
}

@media (max-width: 720px) {
  #products .product-layout {
    width: min(92vw, 720px);
  }

  #products .product-menu button {
    min-width: 190px;
    height: 48px;
    padding: 0px 22px;
  }

  #products .hardware-grid article {
    padding: 22px 22px 20px 78px;
  }

  #products .hardware-grid span {
    left: 22px;
    top: 22px;
  }
}

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

html,
body {
  width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

img {
  height: auto;
  object-fit: contain;
}

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

.page-layout {
  width: 100%;
  min-width: 0px;
  overflow-x: clip;
}

.page-layout > .page-section,
.page-layout > .page-section.section:not(.section-dark),
.page-layout > .solutions-section,
.page-layout > .products-section,
.page-layout > .service-section,
.page-layout > .cases-section,
.page-layout > .contact-section,
.page-layout > .news-section,
.page-layout > .home-overview-section{
  width: 100%;
  padding: var(--section-y-fluid) 0;
  min-height: 0px;
}

.page-title,
.page-layout .page-title,
.contact-copy.page-title{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--content-gap-fluid);
}


.solutions-shell,
.solution-tabs,
.solution-stage,
#products .product-layout,
.product-layout,
.service-flow,
.case-grid,
.contact-layout,
.home-cta-inner{
  width: var(--site-width);
  max-width: var(--site-max);
  margin-left: auto;
  margin-right: auto;
}

.home-page .hero.section-dark {
  min-height: clamp(680px, 82vh, 900px);
  height: auto;
  padding: clamp(72px, 8vh, 120px) 0px;
  display: flex;
  align-items: center;
}

.home-page .hero-inner {
  width: 88%;
  max-width: 1600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: clamp(56px, 5.5vw, 104px);
}

.home-page .hero-copy,
.home-page .dashboard {
  min-width: 0px;
}

.home-page .hero-title,
.home-page .hero h1.hero-title {
  font-size: clamp(42px, 3.05vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  gap: clamp(8px, 1vw, 14px);
}

.home-page .hero-eyebrow,
.home-page .hero .hero-eyebrow {
  max-width: none;
  margin-top: clamp(20px, 2.2vw, 32px);
  font-size: clamp(12px, 0.75vw, 15px);
  line-height: 1.35;
}

.home-page .hero-lead {
  max-width: min(660px, 100%);
  margin-top: clamp(18px, 2vw, 30px);
  font-size: clamp(16px, 0.95vw, 19px);
  line-height: 1.85;
}

.home-page .hero-actions,
.home-page .trust-row {
  margin-top: clamp(22px, 2.4vw, 36px);
}

.home-page .dashboard {
  width: 100%;
  max-width: 820px;
  justify-self: end;
  padding: clamp(14px, 1.35vw, 22px);
  border-radius: clamp(16px, 1.4vw, 22px);
}

.home-page .command-visual {
  width: 100%;
  min-width: 0px;
  height: auto;
  aspect-ratio: 1500 / 825;
}

.home-page .command-visual img,
.home-page .dashboard img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.command-visual img,
.dashboard img,
.stage-visual img,
#products .product-image-frame img,
.product-image-frame img,
.case-image{
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.solution-stage,
.solutions-section .solution-stage {
  width: min(92vw, 1320px);
  max-width: 1320px;
  min-height: 0px;
  display: block;
  padding: clamp(28px, 3.8vw, 56px);
  overflow: hidden;
}

#products .product-layout,
.product-layout {
  width: min(92vw, 1320px);
  max-width: 1320px;
  grid-template-columns: minmax(320px, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(24px, 3vw, 44px);
}

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

.service-flow {
  grid-template-columns: repeat(5, minmax(0px, 1fr));
}

.contact-section.section-dark,
.page-layout > .contact-section.section-dark {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(72px, 7vw, 120px) 0px;
}

@supports (height: 100dvh) {
  .contact-section.section-dark,
.page-layout > .contact-section.section-dark { min-height: calc(100dvh - var(--header-height)); }
}

.contact-layout {
  width: var(--site-width);
  max-width: min(1280px, var(--site-max));
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  min-width: 0px;
}

.contact-copy.page-title,
.contact-copy {
  width: 100%;
  max-width: 640px;
  margin: 0px;
  text-align: left;
}

.contact-copy.page-title h1,
.contact-copy.page-title h2,
.contact-copy.page-title p {
  margin-left: 0px;
  margin-right: 0px;
  text-align: left;
}

.contact-form {
  width: 100%;
  min-width: 0px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: clamp(12px, 1.2vw, 16px);
  padding: clamp(20px, 2vw, 28px);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  min-width: 0px;
  max-width: 100%;
}

.footer {
  width: 100%;
  padding: clamp(20px, 2vw, 28px) max(24px, calc((100vw - var(--site-max)) / 2));
}

@media (min-width: 1920px) {
  :root {
    --site-max: var(--container-main);
    --site-width: min(92vw, var(--site-max));
  }

  .home-page .hero-inner {
    width: 84%;
    max-width: 1680px;
  }

  .home-page .dashboard {
    max-width: 864px;
  }
}

@media (max-width: 1440px) {
  :root {
    --site-width: min(92vw, var(--site-max));
  }

  .page-title h1,
.page-title h2,
.page-layout .page-title h1,
.page-layout .page-title h2 {
    font-size: clamp(38px, 3.5vw, 56px);
  }
}

@media (max-width: 1439px) {
  .home-page .hero-inner {
    width: 90%;
    max-width: 1320px;
    grid-template-columns: minmax(380px, 0.95fr) minmax(440px, 1.05fr);
    gap: 48px;
  }

  .home-page .dashboard {
    max-width: 760px;
  }
}

@media (max-width: 1366px) {
  #products .product-layout,
.product-layout,
.solution-stage,
.solutions-section .solution-stage {
    width: min(90vw, 1240px);
  }
}

@media (max-width: 1024px) {
  :root {
    --site-width: min(92vw, 960px);
    --section-y-fluid: clamp(76px, 9vw, 104px);
  }

  .contact-layout,
.solutions-section .solution-body,
#products .product-layout,
.product-layout {
    grid-template-columns: 1fr;
  }

  .home-page .hero.section-dark {
    min-height: auto;
    padding-block: 80px 64px;
  }

  .home-page .hero-inner {
    width: 90%;
    max-width: 960px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-page .hero-copy {
    max-width: 760px;
  }

  .home-page .dashboard {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    justify-self: center;
  }

  .contact-layout {
    align-items: start;
  }

  .contact-copy.page-title,
.contact-copy {
    max-width: 760px;
  }

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

@media (max-width: 768px) {
  :root {
    --site-width: min(92vw, 720px);
    --section-y-fluid: clamp(68px, 11vw, 88px);
  }

  .site-header {
    min-height: 66px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .contact-section.section-dark,
.page-layout > .contact-section.section-dark {
    min-height: auto;
  }

  .home-page .hero.section-dark {
    padding-block: 56px 48px;
  }

  .home-page .hero-grid {
    display: none;
  }

  .home-page .hero-inner {
    width: 92%;
    max-width: none;
    gap: 36px;
  }

  .home-page .hero-title,
.home-page .hero h1.hero-title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .home-page .hero-lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .home-page .hero-actions,
.home-page .trust-row {
    gap: 12px;
  }

  

  .contact-form {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }

  .case-grid,
  .service-flow{
    grid-template-columns: 1fr;
  }

  .solutions-section .solution-tabs,
#products .product-menu {
    width: var(--site-width);
    max-width: var(--site-width);
    justify-content: flex-start;
    overflow-x: auto;
    padding: 8px 2px 18px;
  }

  .solutions-section .solution-stage,
#products .product-layout,
.product-layout {
    width: var(--site-width);
    padding: clamp(22px, 5vw, 32px);
  }

  .footer {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 480px) {
  :root {
    --site-width: calc(100vw - 32px);
    --section-y-fluid: 64px;
  }

  .page-title,
  .page-layout .page-title,
  .contact-copy.page-title{
    width: var(--site-width);
  }

  .hero-actions .btn,
.home-cta-inner .btn,
.contact-form .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .qr-box {
    align-items: flex-start;
  }
}

.page-layout > .page-section:not(.hero):not(.contact-section),
.page-layout > .products-section,
.page-layout > .solutions-section,
.page-layout > .service-section,
.page-layout > .cases-section,
.page-layout > .news-section {
  padding-top: var(--inner-page-top);
  padding-bottom: var(--inner-page-bottom);
}

.page-title,
.page-layout .page-title,
.solutions-shell > .page-title,
.contact-copy.page-title{
  width: min(92vw, 1180px);
  max-width: 1180px;
  margin: 0 auto var(--inner-title-gap);
  padding: 0px;
  text-align: center;
}

.page-title .eyebrow,
.page-layout .page-title .eyebrow{
  margin: 0px 0px 10px;
  color: rgb(107, 124, 147);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-title h1,
.page-title h2,
.page-layout .page-title h1,
.page-layout .page-title h2,
#products .page-title h1,
#products .page-title h2,
#service .page-title h1,
#service .page-title h2,
.solutions-shell > .page-title h1,
.solutions-shell > .page-title h2{
  max-width: 1180px;
  margin: 0px auto 14px;
  color: rgb(16, 42, 67);
  font-size: clamp(38px, 3.15vw, 54px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0px;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.page-title h1 .title-highlight,
.page-title h2 .title-highlight,
.page-title h1 .title-accent,
.page-title h2 .title-accent{
  color: rgb(22, 119, 255);
}

.page-title p,
.page-layout .page-title p,
#products .page-title p,
#service .page-title p,
.solutions-shell > .page-title p{
  width: auto;
  max-width: min(1120px, 100%);
  margin: 0px auto;
  color: rgb(91, 112, 138);
  font-size: clamp(16px, 1vw, 17px);
  line-height: 1.72;
  font-weight: 500;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

#products .page-title {
  margin-bottom: 32px;
}

#products .page-title h1.product-title-line {
  max-width: 1180px;
  font-size: clamp(38px, 3.05vw, 52px);
}

#products .product-layout {
  margin-top: 0px;
}

.solutions-section .page-title,
.solutions-shell > .page-title {
  max-width: 1280px;
}

.cases-section .case-grid,
.case-grid,
.service-flow{
  margin-top: 0px;
}

@media (min-width: 1181px) {
  .page-title p,
  .page-layout .page-title p,
  #products .page-title p,
  .solutions-shell > .page-title p{
    white-space: nowrap;
  }

  #service .page-title p {
    max-width: 1040px;
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  :root {
    --inner-page-top: clamp(64px, 8vw, 84px);
    --inner-page-bottom: clamp(64px, 8vw, 92px);
    --inner-title-gap: 32px;
  }

  .page-title h1,
  .page-title h2,
  .page-layout .page-title h1,
  .page-layout .page-title h2{
    font-size: clamp(34px, 6vw, 46px);
  }

  .page-title p,
  .page-layout .page-title p{
    white-space: normal;
  }
}

@media (max-width: 768px) {
  :root {
    --inner-page-top: 60px;
    --inner-page-bottom: 72px;
    --inner-title-gap: 28px;
  }

  .page-title h1,
  .page-title h2,
  .page-layout .page-title h1,
  .page-layout .page-title h2{
    font-size: clamp(30px, 8vw, 40px);
  }

  .page-title p,
  .page-layout .page-title p{
    font-size: 15px;
    line-height: 1.72;
  }
}

body:not(.home-page) .page-layout > .page-section,
body:not(.home-page) .page-layout > .products-section,
body:not(.home-page) .page-layout > .solutions-section,
body:not(.home-page) .page-layout > .service-section,
body:not(.home-page) .page-layout > .cases-section,
body:not(.home-page) .page-layout > .news-section{
  padding-top: var(--inner-page-top) !important;
  padding-bottom: var(--inner-page-bottom) !important;
}

body:not(.home-page) .page-layout > .authority-combined-section {
  padding-top: clamp(72px, 8vh, 108px) !important;
  padding-bottom: clamp(72px, 8vh, 108px) !important;
}

body:not(.home-page) .page-title,
body:not(.home-page) .page-layout .page-title,
body:not(.home-page) .solutions-shell > .page-title,
body:not(.home-page) #products .page-title,
body:not(.home-page) #service .page-title {
  width: min(92vw, 1180px);
  max-width: 1180px;
  margin: 0 auto var(--inner-title-gap);
  text-align: center;
}

body:not(.home-page) .page-title .eyebrow {
  margin-bottom: 10px;
}

body:not(.home-page) .page-title h1,
body:not(.home-page) .page-title h2,
body:not(.home-page) #products .page-title h1,
body:not(.home-page) #products .page-title h2,
body:not(.home-page) #service .page-title h1,
body:not(.home-page) #service .page-title h2,
body:not(.home-page) .solutions-shell > .page-title h1,
body:not(.home-page) .solutions-shell > .page-title h2 {
  max-width: 1180px;
  margin-bottom: 14px;
  font-size: clamp(38px, 3.05vw, 52px);
  line-height: 1.14;
  text-align: center;
}

body:not(.home-page) .page-title p,
body:not(.home-page) #products .page-title p,
body:not(.home-page) #service .page-title p,
body:not(.home-page) .solutions-shell > .page-title p {
  max-width: min(1120px, 100%);
  font-size: clamp(16px, 1vw, 17px);
  line-height: 1.72;
  text-align: center;
}

body:not(.home-page) #products .product-layout,
body:not(.home-page) .solutions-section .solution-stage,
body:not(.home-page) .case-grid,
body:not(.home-page) .authority-combined-grid,
body:not(.home-page) .service-flow{
  margin-top: 0px;
}

.authority-combined-section {
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(246, 250, 255) 100%);
}

.authority-combined-section .page-title {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.authority-combined-grid {
  width: min(92vw, var(--container-main));
  max-width: var(--container-main);
  margin: 0px auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.authority-column {
  min-width: 0px;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(15, 76, 148, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: rgba(15, 44, 92, 0.07) 0px 24px 60px;
}

.authority-column-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(18px, 2vw, 26px);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 76, 148, 0.09);
}

.authority-column-head span {
  order: 2;
  color: rgb(138, 154, 176);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
}

.authority-column-head h2 {
  margin: 0px;
  color: rgb(16, 42, 67);
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.2;
  font-weight: 800;
}

.authority-partner-grid,
.authority-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: clamp(16px, 1.6vw, 22px);
}

.authority-card {
  min-width: 0px;
  border: 1px solid rgba(15, 76, 148, 0.13);
  border-radius: 18px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(15, 44, 92, 0.055) 0px 16px 36px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

a.authority-card {
  color: inherit;
  text-decoration: none;
}

.authority-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 119, 255, 0.24);
  box-shadow: rgba(15, 44, 92, 0.09) 0px 22px 46px;
}

.authority-partner-card {
  min-height: clamp(190px, 18vw, 238px);
  padding: clamp(18px, 1.6vw, 24px);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
}

.authority-partner-card img {
  width: 100%;
  height: clamp(80px, 8vw, 120px);
  max-width: 150px;
  object-fit: contain;
}

.authority-partner-card strong {
  color: rgb(11, 31, 58);
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.38;
  font-weight: 800;
}

.authority-partner-card span,
.authority-cert-card span {
  color: rgb(22, 119, 255);
  font-size: clamp(13px, 0.82vw, 14px);
  line-height: 1.45;
}

.authority-cert-card {
  cursor: pointer;
  padding: clamp(14px, 1.3vw, 18px);
  display: grid;
  align-content: start;
  gap: 12px;
  text-align: center;
  font: inherit;
}

.authority-cert-card img {
  width: 100%;
  height: clamp(160px, 16vw, 220px);
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
  background: rgb(248, 251, 255);
}

.authority-cert-card span {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(83, 101, 122);
  font-weight: 700;
}

.authority-action-card {
  position: relative;
  overflow: hidden;
}

.authority-action-card::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: radial-gradient(circle at 24% 18%, rgba(34, 184, 255, 0.14), transparent 34%), linear-gradient(135deg, rgba(22, 119, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.9;
  pointer-events: none;
}

.authority-action-card > * {
  position: relative;
  z-index: 1;
}

.authority-action-icon {
  width: clamp(80px, 8vw, 120px);
  height: clamp(80px, 8vw, 120px);
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(238, 247, 255) 0%, rgb(255, 255, 255) 100%);
  border: 1px solid rgba(22, 119, 255, 0.16);
  box-shadow: rgba(22, 119, 255, 0.12) 0px 18px 34px;
}

.authority-action-icon svg {
  width: clamp(38px, 3.4vw, 52px);
  height: clamp(38px, 3.4vw, 52px);
  fill: none;
  stroke: rgb(22, 119, 255);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.authority-cert-more {
  min-height: 100%;
  justify-items: center;
  align-content: center;
  gap: 12px;
}

.authority-cert-more .authority-action-icon {
  width: clamp(96px, 10vw, 142px);
  height: clamp(160px, 16vw, 220px);
  border-radius: 14px;
}

.authority-cert-more .authority-action-icon svg {
  width: clamp(44px, 4vw, 62px);
  height: clamp(44px, 4vw, 62px);
}

.authority-action-card:hover .authority-action-icon {
  transform: translateY(-2px);
  border-color: rgba(34, 184, 255, 0.32);
  box-shadow: rgba(22, 119, 255, 0.18) 0px 22px 42px, rgba(34, 184, 255, 0.16) 0px 0px 24px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

@media (max-width: 1024px) {
  .authority-combined-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .authority-column-head {
    display: block;
  }

  .authority-column-head span {
    display: block;
    margin-top: 8px;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .authority-partner-grid,
.authority-cert-grid {
    grid-template-columns: 1fr;
  }

  .authority-column {
    padding: 18px;
    border-radius: 20px;
  }
}

body:not(.home-page) #products.products-section {
  padding-top: clamp(52px, 6vh, 78px) !important;
}

body:not(.home-page) #products .page-title {
  margin-bottom: clamp(22px, 2.6vw, 32px) !important;
}

#products .product-menu {
  padding: 0px;
  gap: clamp(14px, 1.4vw, 22px);
  margin-bottom: clamp(20px, 2vw, 28px) !important;
}

#products .product-menu button {
  height: clamp(46px, 3.5vw, 56px);
  border-radius: 12px;
}

#products .product-menu button:hover {
  border-color: rgba(22, 119, 255, 0.28);
}

#products .hardware-grid {
  margin-top: 0px;
}

#products .hardware-grid article {
  border-top: 1px solid rgba(15, 76, 148, 0.1);
}

.solutions-section .page-title .eyebrow {
  color: rgb(107, 124, 147) !important;
  font-size: 13px !important;
  letter-spacing: 0.16em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.solutions-section .solution-tabs {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.solutions-section .solution-tabs button {
  scroll-margin-inline: 12px;
}

.solutions-section .solution-tabs button:hover {
  border-color: rgba(22, 119, 255, 0.22);
}

.solutions-section .stage-visual img {
  display: block;
}

.solutions-section .stage-visual-meta {
  margin-top: 12px;
  border: 1px solid rgba(15, 76, 148, 0.08);
  color: rgb(83, 101, 122);
}

.service-flow div::before {
  display: none;
}

.service-flow div {
  border-top: 1px solid rgba(15, 76, 148, 0.11);
  background: radial-gradient(circle at 50% 0px, rgba(22, 119, 255, 0.08), transparent 38%), rgb(255, 255, 255);
}

.service-flow div:hover {
  border-color: rgba(22, 119, 255, 0.24);
}

.home-page .home-solutions-overview .overview-grid article {
  padding: clamp(24px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.home-page .home-solutions-overview .overview-grid span {
  display: none;
}

.home-page .home-solutions-overview .overview-grid h3 {
  margin: 0px 0px 14px;
  text-align: center;
}

.home-page .home-solutions-overview .overview-grid p {
  text-align: center;
}

.home-cta-inner p br {
  display: block;
}

@media (max-width: 1024px) {
  .solutions-section .stage-visual img {
    height: auto;
    min-height: 0px;
  }
}

@media (max-width: 720px) {
  #products .product-layout {
    padding: 24px 18px 30px;
  }

  #products .product-menu {
    justify-content: flex-start;
  }

  
}

.solutions-section .stage-visual {
  gap: 0px;
  padding: clamp(18px, 1.6vw, 24px);
  background: linear-gradient(rgb(8, 35, 77) 0%, rgb(6, 26, 58) 100%);
  border: 1px solid rgba(120, 190, 255, 0.22);
  box-shadow: rgba(15, 44, 92, 0.18) 0px 28px 70px;
  overflow: hidden;
}

.solutions-section .stage-visual::before {
  display: none;
}

.solutions-section .stage-visual-meta {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0px 0px clamp(14px, 1.2vw, 18px);
  border-width: 0px 0px 1px;
  border-style: none none solid;
  border-color: currentcolor currentcolor rgba(120, 190, 255, 0.18);
  border-image: none;
  border-radius: 0px;
  background: transparent;
  box-shadow: none;
}

.solutions-section .stage-visual-meta span {
  color: rgb(126, 230, 255);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: none;
}

.solutions-section .stage-visual-meta strong {
  color: rgb(255, 255, 255);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.solutions-section .stage-visual img {
  max-height: clamp(300px, 30vw, 520px);
  object-position: center center;
  border-radius: 12px;
  background: rgb(6, 26, 58);
}

.solutions-section .solution-stage:hover .stage-visual img {
  transform: none;
}

#products .product-screen {
  border-radius: 18px;
  background: linear-gradient(rgb(8, 35, 77) 0%, rgb(6, 26, 58) 100%);
  border: 1px solid rgba(120, 190, 255, 0.22);
}

#products .screen-title {
  padding-bottom: clamp(14px, 1.2vw, 18px);
  border-bottom: 1px solid rgba(120, 190, 255, 0.18);
}

#products .screen-title span {
  font-weight: 700;
}

#products .product-image-frame {
  background: rgb(6, 26, 58);
}

@media (max-width: 720px) {
  .solutions-section .stage-visual-meta,
#products .screen-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .solutions-section .stage-visual-meta strong,
#products .screen-title strong {
    text-align: left;
  }
}

#products .product-layout {
  display: grid;
  gap: clamp(18px, 2vw, 28px) clamp(28px, 3vw, 44px);
  width: min(92vw, var(--container-main));
  max-width: var(--container-main);
  padding: clamp(28px, 3vw, 44px);
}

#products .product-menu {
  grid-column: 1 / -1;
}

#products .hardware-grid {
  width: 100%;
  flex-direction: column;
  margin: 0px;
  align-self: stretch;
}

#products .hardware-grid article {
  flex: 1 1 0px;
  border-left: 1px solid rgba(15, 76, 148, 0.12);
}

#products .hardware-grid article::before {
  display: none !important;
}

#products .hardware-grid span {
  position: static;
  transform: none;
}

#products .hardware-grid p {
  text-align: left;
}

#products .feature-tags em {
  min-height: 24px;
  padding: 4px 10px;
  line-height: 1.25;
}

#products .product-screen {
  min-height: 0px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: clamp(20px, 1.8vw, 26px);
}

#products .product-image-frame {
  flex: 1 1 auto;
  min-height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(14px, 1.2vw, 18px);
}

#products .product-image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 1180px) {
  #products .product-image-frame img {
    height: auto;
  }
}

#products .product-menu {
  width: min(100%, 1120px) !important;
  margin: 0px auto clamp(18px, 2vw, 26px) !important;
  justify-content: center !important;
  overflow: visible !important;
}

#products .product-menu button {
  min-width: clamp(190px, 14vw, 255px) !important;
  text-align: center !important;
}

#products .screen-title {
  display: grid;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

#products .screen-title span {
  grid-column: 2;
  justify-self: end;
  max-width: none;
  color: rgb(86, 220, 255);
  font-size: clamp(13px, 0.86vw, 16px);
  line-height: 1.25;
  white-space: nowrap;
  text-align: right;
}

#products .screen-title strong {
  grid-area: 1 / 1;
  color: rgb(255, 255, 255);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.2;
  white-space: nowrap;
}

.contact-section.section-dark {
  padding-block: clamp(56px, 7vh, 88px) !important;
}

.contact-section .contact-layout {
  position: relative;
  z-index: 1;
  width: min(92vw, 1280px) !important;
  max-width: 1280px !important;
  margin: 0px auto !important;
  display: grid !important;
  grid-template-columns: minmax(0px, 1fr) minmax(0px, 1fr) !important;
  gap: 48px !important;
  align-items: stretch !important;
}

.contact-section .contact-copy.page-title,
.contact-section .contact-copy {
  justify-self: end;
  width: 100% !important;
  max-width: 620px !important;
  margin: 0px !important;
  text-align: left !important;
}

.contact-section .contact-copy.page-title .eyebrow {
  text-align: left !important;
}

.contact-section .contact-copy.page-title h1 {
  color: rgb(255, 255, 255);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.12;
  margin: 0px 0px 20px !important;
  max-width: 620px !important;
  text-align: left !important;
}

.contact-section .contact-copy.page-title p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px !important;
  margin: 0px 0px clamp(24px, 3vw, 34px) !important;
  text-align: left !important;
}

.contact-section .contact-list {
  width: 100%;
}

.contact-section .contact-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  justify-self: start;
  align-self: stretch;
}

@media (max-width: 1180px) {
  #products .product-menu {
    justify-content: flex-start !important;
    overflow-x: auto !important;
  }

  #products .screen-title {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #products .screen-title span,
#products .screen-title strong {
    grid-area: auto;
    justify-self: start;
    text-align: left;
    white-space: normal;
  }

  .contact-section .contact-layout {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .contact-section .contact-copy.page-title,
.contact-section .contact-copy,
.contact-section .contact-form {
    max-width: 760px !important;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .contact-section .contact-copy.page-title h1 {
    font-size: clamp(32px, 10vw, 44px);
  }
}

.solutions-section .solution-tabs {
  width: min(92vw, 820px) !important;
  margin: 0px auto clamp(18px, 2vw, 28px) !important;
  justify-content: center !important;
  overflow: visible !important;
}

.solutions-section .solution-tabs button {
  min-width: clamp(150px, 10.5vw, 190px) !important;
  border-color: rgba(15, 76, 148, 0.12) !important;
  box-shadow: rgba(15, 44, 92, 0.06) 0px 12px 30px !important;
}

.solutions-section .solution-tabs button:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(22, 119, 255, 0.24) !important;
}

.solutions-section .solution-body {
  display: grid !important;
  grid-template-columns: minmax(330px, 0.78fr) minmax(620px, 1.22fr) !important;
  align-items: stretch !important;
  gap: clamp(28px, 3vw, 48px) !important;
}

.solutions-section .solution-copy {
  display: flex !important;
  min-height: 0px !important;
}

.solutions-section .solution-capabilities {
  width: 100% !important;
  height: clamp(440px, 36vw, 600px) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: clamp(12px, 1.15vw, 18px) !important;
  margin: 0px !important;
}

.solutions-section .capability-item {
  flex: 1 1 0px !important;
  min-width: 0px !important;
  min-height: 0px !important;
  padding: clamp(16px, 1.45vw, 24px) clamp(18px, 1.8vw, 28px) !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0px, 1fr) !important;
  align-items: center !important;
  column-gap: 16px !important;
}

.solutions-section .capability-index {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
}

.solutions-section .capability-item strong {
  font-size: clamp(17px, 1.1vw, 20px) !important;
  line-height: 1.32 !important;
  white-space: normal !important;
}

.solutions-section .capability-item p {
  margin-top: 7px !important;
  font-size: clamp(14px, 0.9vw, 15px) !important;
  line-height: 1.58 !important;
  white-space: normal !important;
}

.solutions-section .stage-visual {
  height: clamp(440px, 36vw, 600px) !important;
  min-height: 0px !important;
  display: grid !important;
  grid-template-rows: auto minmax(0px, 1fr) !important;
  align-self: stretch !important;
  border-radius: 20px !important;
}

.solutions-section .stage-visual-meta {
  min-height: clamp(72px, 5vw, 96px) !important;
  padding: clamp(18px, 1.8vw, 28px) clamp(22px, 2.4vw, 34px) !important;
}

.solutions-section .stage-visual-meta span {
  white-space: nowrap !important;
}

.solutions-section .stage-visual-meta strong {
  white-space: nowrap !important;
  text-align: right !important;
}

.solutions-section .stage-visual img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0px !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
}

@media (max-width: 1180px) {
  .solutions-section .solution-tabs {
    width: min(92vw, 760px) !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding-bottom: 6px !important;
  }

  .solutions-section .solution-body {
    grid-template-columns: 1fr !important;
  }

  .solutions-section .solution-capabilities,
.solutions-section .stage-visual {
    height: auto !important;
  }

  .solutions-section .solution-capabilities {
    min-height: 0px !important;
  }

  .solutions-section .capability-item {
    flex: 0 0 auto !important;
    min-height: 92px !important;
  }

  .solutions-section .stage-visual img {
    height: auto !important;
  }
}

@media (max-width: 640px) {
  .solutions-section .solution-stage {
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .solutions-section .capability-item {
    grid-template-columns: 42px minmax(0px, 1fr) !important;
    padding: 16px !important;
  }

  .solutions-section .capability-index {
    width: 38px !important;
    height: 38px !important;
  }

  .solutions-section .stage-visual-meta {
    align-items: flex-start !important;
    flex-direction: column !important;
    min-height: 0px !important;
  }

  .solutions-section .stage-visual-meta strong {
    white-space: normal !important;
    text-align: left !important;
  }
}

#products .screen-title span {
  display: none !important;
}

#products .screen-title strong {
  grid-column: 1 !important;
}

#products .product-layout {
  grid-template-columns: minmax(400px, 0.82fr) minmax(620px, 1.18fr) !important;
  align-items: stretch !important;
}

#products .hardware-grid {
  height: clamp(430px, 36vw, 560px) !important;
  display: grid !important;
  grid-template-rows: repeat(3, minmax(0px, 1fr)) !important;
  gap: 18px !important;
}

#products .hardware-grid article {
  min-height: 0px !important;
  height: 100% !important;
  display: grid !important;
  grid-template-columns: 56px minmax(0px, 1fr) !important;
  grid-template-rows: auto auto auto !important;
  align-content: center !important;
  align-items: center !important;
  gap: 8px 20px !important;
  padding: 22px 28px !important;
}

#products .hardware-grid span {
  grid-area: 1 / 1 / span 3 !important;
  width: 46px !important;
  height: 46px !important;
  align-self: center !important;
}

#products .hardware-grid h3 {
  grid-column: 2 !important;
  margin: 0px !important;
  font-size: clamp(19px, 1.22vw, 22px) !important;
  line-height: 1.3 !important;
  white-space: normal !important;
  max-width: none !important;
  width: 100% !important;
}

#products .hardware-grid p {
  grid-column: 2 !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0px !important;
  font-size: clamp(14px, 0.92vw, 16px) !important;
  line-height: 1.6 !important;
  color: rgb(91, 112, 138) !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  text-wrap: pretty !important;
}

#products .feature-tags {
  grid-column: 2 !important;
  margin: 0px !important;
  gap: 8px !important;
}

#products .product-screen {
  height: clamp(430px, 36vw, 560px) !important;
}

@media (max-width: 1180px) {
  #products .product-layout {
    grid-template-columns: 1fr !important;
  }

  #products .hardware-grid,
#products .product-screen {
    height: auto !important;
  }

  #products .hardware-grid {
    grid-template-rows: none !important;
  }

  #products .hardware-grid article {
    min-height: 124px !important;
  }
}

@media (max-width: 640px) {
  #products .hardware-grid article {
    grid-template-columns: 42px minmax(0px, 1fr) !important;
    padding: 18px !important;
    column-gap: 14px !important;
  }

  #products .hardware-grid span {
    width: 38px !important;
    height: 38px !important;
  }
}

.nav-dropdown {
  isolation: isolate;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}

.nav-dropdown-menu {
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.18s 0.08s, transform 0.18s 0.08s, visibility 0.18s 0.08s;
  top: 100% !important;
  margin-top: 0px !important;
  z-index: 1000 !important;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0px) !important;
}

.nav-dropdown-menu a.active {
  color: var(--blue);
  background: rgb(238, 247, 255);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown > a {
    align-items: center;
    justify-content: space-between;
    display: flex !important;
  }

  .nav-dropdown > a::after {
    content: "⌄";
    font-size: 14px;
    color: rgb(107, 124, 147);
    transition: transform 0.2s;
  }

  .nav-dropdown.open > a::after {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    display: none !important;
    position: static !important;
    width: 100% !important;
    margin-top: 6px !important;
    padding: 6px 0px 6px 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }
}

.news-section {
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(246, 250, 255) 100%);
}

.news-shell {
  width: min(92vw, var(--container-main));
  max-width: var(--container-main);
  margin: 0px auto;
}

.news-card img {
  width: 100%;
  display: block;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  color: rgb(22, 119, 255);
  background: rgb(238, 247, 255);
  font-size: 13px;
  font-weight: 800;
}

.news-card time,
.insight-card dd {
  color: rgb(107, 124, 147);
  font-size: 14px;
}

.news-card p,
.insight-card p,
.news-empty p {
  color: rgb(91, 112, 138);
  line-height: 1.75;
}

.news-card a,
.insight-card a,
.standards-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 10px;
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 76, 148));
  font-weight: 800;
  text-decoration: none;
}

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

.news-card,
.insight-card,
.standards-card,
.news-empty,
.standard-filters,
.news-toolbar {
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 18px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(15, 44, 92, 0.06) 0px 18px 52px;
}

.news-card {
  overflow: hidden;
}

.news-card img {
  height: clamp(170px, 13vw, 220px);
  object-fit: cover;
}

.news-card div {
  padding: 22px;
}

.news-card h3,
.insight-card h2 {
  margin: 14px 0px 10px;
  color: rgb(16, 42, 67);
  font-size: clamp(19px, 1.25vw, 23px);
  line-height: 1.35;
}

.news-toolbar,
.standard-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  gap: 18px;
  padding: 20px;
  margin-bottom: 28px;
}

.news-toolbar {
  grid-template-columns: minmax(320px, 520px);
}

.news-toolbar label,
.standard-filters label {
  display: grid;
  gap: 8px;
  color: rgb(16, 42, 67);
  font-weight: 800;
}

.news-toolbar input,
.standard-filters input,
.standard-filters select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(15, 76, 148, 0.16);
  border-radius: 12px;
  padding: 0px 14px;
  color: rgb(16, 42, 67);
  background: rgb(248, 251, 255);
}

.insight-list {
  display: grid;
  gap: 20px;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.insight-card {
  padding: clamp(22px, 2vw, 30px);
}

.insight-card[hidden] {
  display: none;
}

.insight-card-featured {
  display: grid;
}

.insight-content {
  min-width: 0px;
}

.insight-preview {
  margin: 0px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 148, 0.1);
  border-radius: 16px;
  background: rgb(244, 249, 255);
  box-shadow: rgba(255, 255, 255, 0.72) 0px 0px 0px 1px inset;
}

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

.insight-card > div:first-child {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.insight-card dl {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0px 0px;
}

.insight-card dt {
  color: rgb(107, 124, 147);
  font-size: 13px;
}

.insight-card dd {
  margin: 2px 0px 0px;
  color: rgb(16, 42, 67);
  font-weight: 800;
}

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

.standards-table th,
.standards-table td {
  border-bottom: 1px solid rgba(15, 76, 148, 0.1);
  text-align: left;
  color: rgb(77, 96, 120);
}

.standards-table th {
  color: rgb(16, 42, 67);
  background: rgb(238, 247, 255);
  font-weight: 900;
}

.standards-table td:first-child {
  color: rgb(16, 42, 67);
  font-weight: 800;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.status-tag.current {
  color: rgb(4, 120, 87);
  background: rgb(232, 255, 245);
}

.news-empty {
  margin-top: 32px;
  padding: 28px;
  text-align: center;
}

.news-empty strong {
  display: block;
  color: rgb(16, 42, 67);
  font-size: 22px;
}

.company-news-content[hidden],
.news-pagination[hidden],
.news-detail[hidden],
.news-detail-cover[hidden],
.news-card img[hidden] {
  display: none;
}

.news-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.news-categories button {
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid rgba(15, 76, 148, 0.14);
  border-radius: 999px;
  color: rgb(62, 83, 109);
  background: rgb(255, 255, 255);
  font-weight: 800;
  cursor: pointer;
}

.news-categories button:hover,
.news-categories button.active {
  color: rgb(255, 255, 255);
  border-color: rgb(22, 119, 255);
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 76, 148));
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.news-pagination button {
  min-width: 92px;
  height: 38px;
  border: 1px solid rgba(22, 119, 255, 0.2);
  border-radius: 10px;
  color: rgb(15, 76, 148);
  background: rgb(255, 255, 255);
  font-weight: 800;
  cursor: pointer;
}

.news-pagination button:not(:disabled):hover {
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 76, 148));
}

.news-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.news-pagination span {
  color: rgb(91, 112, 138);
  font-weight: 800;
}

.industry-page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.news-pagination .industry-page-number {
  min-width: 38px;
  width: 38px;
  padding: 0;
}

.news-pagination .industry-page-number.active {
  color: rgb(255, 255, 255);
  border-color: rgb(22, 119, 255);
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 76, 148));
}

.news-detail-shell {
  width: min(92vw, 1000px);
  margin: 0 auto;
}

.news-detail-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgb(15, 76, 148);
  font-weight: 800;
  text-decoration: none;
}

.news-detail-back::before {
  content: "←";
  margin-right: 8px;
}

.news-detail {
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 24px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(15, 44, 92, 0.08) 0 24px 70px;
}

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

.news-detail-header .news-tag {
  margin-right: 12px;
}

.news-detail-header time {
  color: rgb(107, 124, 147);
  font-size: 14px;
}

.news-detail-header h1 {
  margin: 22px 0 16px;
  color: rgb(16, 42, 67);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.25;
}

.news-detail-header p {
  margin: 0 auto;
  max-width: 760px;
  color: rgb(91, 112, 138);
  line-height: 1.8;
}

.news-detail-cover {
  margin: 36px 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgb(238, 247, 255);
}

.news-detail-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.news-detail-body {
  color: rgb(50, 72, 98);
  font-size: 17px;
  line-height: 1.95;
}

.news-detail-body p {
  margin: 0 0 1.2em;
}

.news-detail-source {
  margin-top: 30px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 14px;
  background: rgb(245, 249, 254);
  color: rgb(96, 115, 139);
  font-size: 14px;
}

.news-detail-source a {
  flex: 0 0 auto;
  color: rgb(15, 95, 202);
  font-weight: 800;
}

@media (max-width: 640px) {
  .news-detail-source {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 1180px) {
  .news-grid,
.standard-filters {
    grid-template-columns: 1fr;
  }

  .insight-card-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-grid {
    gap: 20px;
  }

  .news-categories {
    justify-content: flex-start;
  }

  .news-detail {
    padding: 22px 18px;
    border-radius: 18px;
  }
}

.contact-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.contact-float .phone-float,
.contact-float .wechat-float,
.contact-float .platform-float {
  position: static;
  min-width: 104px;
  border: 0px;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: rgba(18, 104, 214, 0.26) 0px 16px 34px;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
}

.contact-float .phone-float {
  color: rgb(15, 76, 148);
  background: rgb(255, 255, 255);
  border: 1px solid rgba(22, 119, 255, 0.18);
}

.contact-float .wechat-float {
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 125, 240));
}

.contact-float .platform-float {
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, rgb(18, 192, 106), rgb(8, 169, 90));
}

.contact-float .phone-float:hover,
.contact-float .wechat-float:hover,
.contact-float .platform-float:hover {
  transform: translateY(-3px);
  box-shadow: rgba(18, 104, 214, 0.36) 0px 22px 42px;
}

.modal-info {
  padding: clamp(32px, 5vw, 54px);
  text-align: center;
}

.modal.platform-modal-open .modal-panel {
  width: min(92vw, 980px);
  border-radius: 18px;
  padding: clamp(14px, 2vw, 20px);
  box-shadow: rgba(5, 18, 38, 0.28) 0px 32px 90px;
}

.modal.platform-modal-open .modal-panel img {
  display: block;
  width: 100%;
  max-height: min(72vh, 620px);
  object-fit: contain;
  border-radius: 16px;
  background: rgb(255, 255, 255);
}

.platform-modal-tip {
  margin-top: 14px;
  text-align: center;
}

.platform-modal-tip strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  color: rgb(11, 37, 69);
  font-weight: 900;
}

.platform-modal-tip p {
  margin: 8px auto 0px;
  max-width: 680px;
  color: rgb(83, 101, 122);
  line-height: 1.7;
  font-size: 15px;
}

.phone-modal span {
  display: block;
  margin-bottom: 12px;
  color: rgb(107, 124, 147);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.phone-modal strong {
  display: block;
  color: rgb(16, 42, 67);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.phone-modal p {
  margin: 16px 0px 24px;
  color: rgb(91, 112, 138);
}

.phone-modal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0px 24px;
  border-radius: 10px;
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 125, 240));
  font-weight: 900;
}

.contact-section .contact-layout {
  align-items: stretch !important;
}

.contact-section .contact-copy.page-title,
.contact-section .contact-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-section .contact-copy.page-title p {
  margin-bottom: 0px !important;
  line-height: 1.75;
}

.contact-section .contact-offer {
  width: min(100%, 480px);
  margin: clamp(34px, 5vh, 56px) 0px 28px;
  text-align: left;
}

.contact-section .contact-offer > strong {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.5;
}

.contact-section .contact-offer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 10px;
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.contact-section .contact-offer li {
  min-width: 0px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 194, 255, 0.24);
  border-radius: 8px;
  color: rgba(238, 247, 255, 0.9);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.contact-section .contact-list {
  margin-top: auto !important;
}

.contact-section .contact-form {
  align-self: stretch;
}

@media (max-width: 1180px) {
  .contact-section .contact-layout {
    gap: 36px !important;
    align-items: start !important;
  }

  .contact-section .contact-copy.page-title,
.contact-section .contact-copy {
    height: auto;
  }

  .contact-section .contact-offer {
    width: min(100%, 520px);
    margin-top: 32px;
  }

  .contact-section .contact-list {
    margin-top: 0px !important;
  }

  .contact-section .contact-form {
    align-self: start;
  }
}

@media (max-width: 640px) {
  .contact-float {
    right: 14px;
    bottom: 14px;
  }

  .contact-float .phone-float,
.contact-float .wechat-float,
.contact-float .platform-float {
    min-width: 92px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .modal.platform-modal-open .modal-panel {
    width: min(94vw, 980px);
    padding: 12px;
  }

  .platform-modal-tip p {
    font-size: 14px;
  }
}

.insight-card a[target="_blank"]::after {
  content: "↗";
  margin-left: 6px;
  font-size: 13px;
}

.news-toolbar {
  align-items: center;
  display: flex !important;
  justify-content: flex-end !important;
  padding: 18px 22px !important;
  border-color: rgba(107, 124, 147, 0.18) !important;
}

.news-toolbar label {
  width: min(100%, 640px);
  grid-template-columns: auto minmax(280px, 1fr);
  align-items: center;
  white-space: nowrap;
  display: grid !important;
  gap: 14px !important;
}

.news-toolbar input {
  min-height: 44px !important;
}

.insight-card-featured > .insight-content {
  min-width: 0px;
}

@media (min-width: 1181px) {
  .insight-card-featured > .insight-content {
    min-height: clamp(250px, 19vw, 330px);
  }
}

.footer p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

#products .screen-title {
  grid-template-columns: 1fr !important;
}

#products .screen-title strong {
  max-width: 100%;
  justify-self: end !important;
  text-align: right !important;
}

.standards-card {
  overflow-x: auto;
}

.standards-table {
  min-width: 1320px;
  table-layout: auto;
}

.standards-table th,
.standards-table td {
  padding: 14px 16px;
  white-space: nowrap;
  vertical-align: middle;
}

.standards-table th:first-child,
.standards-table td:first-child {
  width: 32%;
  min-width: 360px;
  white-space: normal;
  line-height: 1.55;
}

.standards-table th:nth-child(2),
.standards-table td:nth-child(2) {
  min-width: 150px;
}

.standards-table th:nth-child(3),
.standards-table td:nth-child(3) {
  min-width: 190px;
}

.standards-table th:nth-child(4),
.standards-table td:nth-child(4),
.standards-table th:nth-child(5),
.standards-table td:nth-child(5) {
  min-width: 112px;
}

.standards-table th:nth-child(6),
.standards-table td:nth-child(6) {
  min-width: 78px;
  text-align: center;
}

.standards-table th:nth-child(7),
.standards-table td:nth-child(7) {
  min-width: 96px;
}

.standards-table th:nth-child(8),
.standards-table td:nth-child(8) {
  width: 92px;
  min-width: 92px;
  text-align: center;
  vertical-align: middle;
}

.standards-table a {
  min-width: 64px;
  height: 38px;
  min-height: 38px;
  padding: 0px 16px;
  white-space: nowrap;
}

.standards-table td:nth-child(8) a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
}

.standard-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid rgba(15, 76, 148, 0.1);
}

.standard-pagination[hidden] {
  display: none;
}

.standard-pagination button {
  min-width: 92px;
  height: 38px;
  border: 1px solid rgba(22, 119, 255, 0.2);
  border-radius: 10px;
  background: rgb(255, 255, 255);
  color: rgb(15, 76, 148);
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s;
}

.standard-pagination button:not(:disabled):hover {
  color: rgb(255, 255, 255);
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 76, 148));
  box-shadow: rgba(22, 119, 255, 0.18) 0px 12px 24px;
}

.standard-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.standard-page-info {
  color: rgb(91, 112, 138);
  font-weight: 800;
}

.news-standards-page .page-title p {
  max-width: 1120px;
  white-space: nowrap;
}

@media (max-width: 1180px) {

  #products .screen-title strong {
    justify-self: start !important;
    text-align: left !important;
  }
}

@media (max-width: 768px) {
  .news-toolbar {
    justify-content: stretch !important;
  }

  .news-toolbar label {
    width: 100%;
    grid-template-columns: 1fr;
    white-space: normal;
  }

  .news-standards-page .page-title p {
    white-space: normal;
  }
}

.home-page .home-solutions-overview .overview-grid {
  width: 88%;
  max-width: var(--container-scenario);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0px, 1fr));
  gap: clamp(18px, 1.5vw, 28px);
  align-items: stretch;
}

.home-page .home-solutions-overview .overview-grid article.scenario-card {
  width: 100%;
  min-width: 0px;
  height: 100%;
  min-height: clamp(224px, 14vw, 242px);
  padding: clamp(22px, 1.65vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(15, 76, 148, 0.12);
  background: linear-gradient(rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.96)), rgb(255, 255, 255);
  box-shadow: rgba(15, 44, 92, 0.055) 0px 14px 34px;
  transition: transform 0.24s, border-color 0.24s, box-shadow 0.24s;
}

.home-page .home-solutions-overview .overview-grid article.scenario-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 119, 255, 0.34);
  box-shadow: rgba(15, 44, 92, 0.11) 0px 22px 46px;
}

.scenario-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  width: 100%;
  margin-bottom: 22px;
}

.scenario-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: rgb(247, 251, 255);
  color: rgb(22, 119, 255);
  box-shadow: rgba(22, 119, 255, 0.08) 0px 12px 24px;
}

.scenario-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-icon-image {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  flex: 0 0 auto;
  transform-origin: center;
}

.scenario-icon-proton,
.scenario-icon-governance {
  transform: scale(2.2);
}

.scenario-icon-nuclear {
  transform: scale(2.68);
}

.scenario-icon-radiotherapy {
  transform: scale(2.83);
}

.home-page .home-solutions-overview .overview-grid .scenario-card h3 {
  margin: 0px 0px clamp(14px, 1.2vw, 16px);
  width: 100%;
  min-height: 0px;
  color: rgb(11, 31, 58);
  font-size: clamp(18px, 1.05vw, 20px);
  line-height: 1.35;
  text-align: center;
  word-break: keep-all;
}

.home-page .home-solutions-overview .overview-grid .scenario-card p {
  margin: 0px;
  width: 100%;
  color: rgb(83, 101, 122);
  font-size: clamp(13px, 0.82vw, 14px);
  line-height: 1.7;
  text-align: center;
}

.scenario-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 8px;
  margin-top: auto;
  padding-top: clamp(14px, 1.2vw, 18px);
}

.home-page .home-solutions-overview .overview-grid .scenario-tags span {
  width: auto;
  height: auto;
  margin: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(22, 119, 255, 0.08);
  color: rgb(22, 119, 255);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  box-shadow: none;
}

@media (max-width: 1200px) {
  .home-page .home-solutions-overview .overview-grid {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
  }

  .home-page .home-solutions-overview .overview-grid article.scenario-card {
    min-height: 230px;
  }
}

.home-service-overview {
  padding-bottom: clamp(120px, 9vw, 160px);
  background: radial-gradient(circle at 78% 48%, rgba(22, 119, 255, 0.12), transparent 34%), linear-gradient(rgb(247, 251, 255) 0%, rgb(238, 246, 255) 100%);
}

.home-service-overview .page-title {
  margin-bottom: clamp(34px, 4vw, 52px);
}

.home-service-overview .page-title p {
  max-width: 980px;
}

.service-loop-panel {
  width: 86%;
  max-width: var(--container-service);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(520px, 1.6fr);
  gap: clamp(36px, 4vw, 72px);
  align-items: stretch;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(15, 76, 148, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.92)), rgb(255, 255, 255);
  box-shadow: rgba(15, 44, 92, 0.09) 0px 28px 70px;
  overflow: hidden;
  position: relative;
}

.service-loop-panel::before {
  content: "";
  position: absolute;
  inset: 0px;
  pointer-events: none;
  background-image: linear-gradient(rgba(22, 119, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 119, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent 0%, rgb(0, 0, 0) 36%, rgb(0, 0, 0) 100%);
}

.service-loop-intro,
.service-loop-visual {
  position: relative;
  z-index: 1;
}

.service-loop-visual {
  min-width: 0px;
}

.service-loop-visual img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.service-loop-intro {
  padding: clamp(8px, 1vw, 12px) 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-loop-intro span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgb(22, 119, 255);
  background: rgba(22, 119, 255, 0.09);
  border: 1px solid rgba(22, 119, 255, 0.15);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.service-loop-intro h2,
.service-loop-intro h3 {
  margin: 0px;
  color: rgb(11, 31, 58);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.25;
  font-weight: 900;
}

.service-loop-intro p {
  margin: 18px 0px 28px;
  color: rgb(83, 101, 122);
  font-size: 16px;
  line-height: 1.85;
}

.home-page .home-service-overview + .home-cta-section {
  margin-top: clamp(42px, 5vw, 78px);
}

@media (max-width: 1200px) {
  .service-loop-panel {
    grid-template-columns: 1fr;
  }

  .service-loop-intro {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .home-page .home-solutions-overview .overview-grid,
.service-loop-panel {
    width: 92%;
  }

  .home-page .home-solutions-overview .overview-grid {
    grid-template-columns: 1fr;
  }
}

.solutions-section .solution-stage {
  width: min(92vw, var(--container-main)) !important;
  max-width: var(--container-main) !important;
  margin: 0px auto !important;
  padding: clamp(28px, 3vw, 44px) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(142, 190, 230, 0.16) !important;
}


.solutions-section .solution-stage > .solution-tabs {
  width: min(780px, 100%) !important;
  margin: 0px auto clamp(32px, 3.2vw, 48px) !important;
  padding: 0px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0px, 1fr)) !important;
  gap: clamp(12px, 1.3vw, 18px) !important;
  justify-content: center !important;
  border: 0px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.solutions-section .solution-stage > .solution-tabs::after,
.solutions-section .solution-stage > .solution-tabs button::before {
  content: none !important;
}

.solutions-section .solution-stage > .solution-tabs button {
  width: 100% !important;
  min-width: 0px !important;
  height: clamp(52px, 4vw, 60px) !important;
  margin: 0px !important;
  border-radius: 13px !important;
  border: 1px solid rgba(15, 76, 148, 0.12) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: rgb(11, 31, 58) !important;
  box-shadow: rgba(15, 44, 92, 0.055) 0px 10px 28px !important;
  font-size: clamp(15px, 1vw, 17px) !important;
  font-weight: 900 !important;
  transform: none !important;
}

.solutions-section .solution-stage > .solution-tabs button:hover,
.solutions-section .solution-stage > .solution-tabs button:focus-visible {
  border-color: rgba(22, 119, 255, 0.28) !important;
  box-shadow: rgba(15, 44, 92, 0.08) 0px 14px 32px !important;
  transform: translateY(-2px) !important;
}

.solutions-section .solution-stage > .solution-tabs button.active {
  border-color: transparent !important;
  color: rgb(255, 255, 255) !important;
  background: linear-gradient(135deg, rgb(22, 119, 255), rgb(15, 111, 232)) !important;
  box-shadow: rgba(22, 119, 255, 0.22) 0px 16px 34px !important;
}

.solutions-section .solution-stage .solution-body {
  margin: 0px !important;
}

@media (max-width: 768px) {
  .solutions-section .solution-stage > .solution-tabs {
    grid-template-columns: repeat(2, minmax(0px, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .solutions-section .solution-stage > .solution-tabs {
    grid-template-columns: 1fr !important;
  }
}

.news-toolbar {
  background: rgb(255, 255, 255);
  border-color: rgba(15, 76, 148, 0.1);
}

.news-toolbar input,
.standard-filters input,
.standard-filters select {
  font-weight: 500 !important;
}

.news-toolbar input {
  border-color: rgba(15, 76, 148, 0.14) !important;
  box-shadow: none !important;
}

.news-toolbar input::placeholder,
.standard-filters input::placeholder {
  color: rgb(154, 170, 187);
  font-weight: 400;
}

.insight-card-featured {
  grid-template-columns: minmax(0px, 1fr) minmax(260px, 34%);
  gap: clamp(24px, 3vw, 44px);
}

.insight-card-featured > .insight-content {
  min-height: clamp(210px, 16vw, 270px);
}

.insight-card {
  display: flex;
  flex-direction: column;
}

.insight-card-featured {
  align-items: stretch;
}

.insight-card-featured > .insight-content,
.insight-card:not(.insight-card-featured) {
  display: flex;
  flex-direction: column;
}

.insight-card > p,
.insight-card-featured .insight-content > p {
  flex: 1 1 auto;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 76, 148, 0.1);
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: rgb(91, 112, 138);
  font-size: 14px;
  line-height: 1.6;
}

.insight-meta strong {
  color: rgb(107, 124, 147);
  font-weight: 700;
}

.insight-card .insight-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 36px;
  margin-top: 0px;
  padding: 0px 16px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 10px;
  background: rgb(238, 247, 255);
  box-shadow: none;
  color: rgb(22, 119, 255);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s;
}

.insight-card .insight-action:hover {
  transform: translateY(-2px);
  border-color: rgb(22, 119, 255);
  background: rgb(22, 119, 255);
  color: rgb(255, 255, 255);
  box-shadow: rgba(22, 119, 255, 0.18) 0px 10px 22px;
}

.insight-card .insight-action[target="_blank"]::after {
  content: "";
}

.insight-preview {
  width: 100%;
  max-width: 520px;
  min-height: clamp(150px, 12vw, 210px);
  justify-self: end;
}

.standard-filters {
  background: linear-gradient(rgb(247, 251, 255) 0%, rgb(238, 247, 255) 100%);
  border-color: rgba(22, 119, 255, 0.16);
  box-shadow: rgba(15, 44, 92, 0.06) 0px 16px 38px;
}

.standard-filters label {
  padding: 12px;
  border: 1px solid rgba(15, 76, 148, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.standard-filters input,
.standard-filters select {
  background: rgb(255, 255, 255) !important;
  border-color: rgba(15, 76, 148, 0.14) !important;
  box-shadow: none !important;
}

.standard-filters input:focus,
.standard-filters select:focus,
.news-toolbar input:focus {
  border-color: rgba(22, 119, 255, 0.36);
  box-shadow: rgba(22, 119, 255, 0.08) 0px 0px 0px 4px;
}

@media (max-width: 900px) {
  .insight-card-featured {
    grid-template-columns: 1fr;
  }

  .insight-preview {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .insight-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .insight-card .insight-action {
    width: 100%;
  }
}

.solutions-section .solution-stage {
  border-color: rgba(120, 171, 215, 0.08) !important;
  background: radial-gradient(circle at 82% 18%, rgba(218, 241, 255, 0.44) 0%, rgba(241, 249, 255, 0.26) 40%, rgba(255, 255, 255, 0) 70%), linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 253, 255, 0.96) 48%, rgba(241, 248, 255, 0.68) 100%) !important;
  box-shadow: rgba(15, 44, 92, 0.043) 0px 36px 96px, rgba(22, 119, 255, 0.024) 0px 12px 36px, rgba(255, 255, 255, 0.96) 0px 1px 0px inset !important;
}

.solutions-section .solution-stage::before,
.solutions-section .solution-stage::after {
  content: none !important;
  display: none !important;
}
