:root {
  --ink: #102233;
  --text: #2d4050;
  --muted: #667989;
  --paper: #f5f8fb;
  --panel: #ffffff;
  --line: #dbe6ee;
  --deep: #071b2d;
  --deep-2: #12324c;
  --accent: #087ea4;
  --accent-bright: #28c7d4;
  --accent-soft: #e3f6fa;
  --blue: #175a9a;
  --blue-soft: #e7f0fa;
  --gold: #58728a;
  --gold-soft: #edf3f8;
  --shadow: 0 28px 70px rgba(7, 27, 45, 0.13);
  --shadow-soft: 0 14px 40px rgba(7, 27, 45, 0.08);
  --radius: 6px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
[id^="campus-"],
[id^="ops-"] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
}

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

.nowrap {
  white-space: nowrap;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(8, 126, 164, 0.42);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 7.2vw;
  color: #ffffff;
  background: transparent;
  border-bottom: 0;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
  backdrop-filter: saturate(120%) blur(0);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 16px rgba(15, 36, 43, 0.08);
  backdrop-filter: saturate(130%) blur(12px);
}

.brand {
  display: inline-flex;
  min-width: 312px;
  height: 54px;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: opacity 220ms ease;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: 82px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.28));
  transition: height 220ms ease, opacity 220ms ease;
}

.brand-text {
  display: grid;
  gap: 1px;
  color: currentColor;
  line-height: 1.1;
  transition: color 220ms ease;
}

.brand-text strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-header.is-scrolled .brand {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo {
  filter: none;
}

.site-header.is-scrolled .brand-text {
  color: var(--ink);
}

.site-header.is-scrolled .brand-text small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 34px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  height: 82px;
  align-items: center;
  padding: 0;
  color: currentColor;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  opacity: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

/* Stable bilingual desktop navigation slots. */
.site-nav > .nav-link,
.site-nav .nav-dropdown-trigger,
.site-nav .language-switch {
  justify-content: center;
  flex: 0 0 auto;
  text-align: center;
}

.site-nav [data-nav-label] {
  width: 88px;
}

.site-nav .language-switch {
  width: 34px;
  margin-left: 0;
  padding-left: 0 !important;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a[aria-disabled="true"] {
  cursor: pointer;
}

.site-header:not(.is-scrolled) .site-nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.42);
}

.site-nav .nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  opacity: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.site-header:not(.is-scrolled) .site-nav .nav-link::after {
  background: #ffb13b;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .nav-link[aria-current="page"] {
  font-weight: 800;
}

.site-header.is-scrolled .site-nav a:hover {
  color: #111f24;
}

.site-header.is-scrolled .site-nav .nav-link::after {
  background: var(--accent);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  height: 82px;
  align-items: center;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  z-index: 20;
  display: grid;
  width: 204px;
  padding: 8px;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    rgba(55, 76, 224, 0.38);
  box-shadow: 0 16px 36px rgba(34, 44, 150, 0.22);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

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

.site-header.is-scrolled .nav-submenu {
  border-color: rgba(62, 87, 208, 0.14);
  background:
    linear-gradient(135deg, rgba(244, 246, 255, 0.98), rgba(255, 255, 255, 0.98)),
    #ffffff;
  box-shadow: 0 16px 34px rgba(24, 31, 96, 0.12);
}

.site-nav .nav-submenu a {
  display: flex;
  height: auto;
  min-height: 42px;
  align-items: center;
  padding: 10px 12px;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
  white-space: normal;
}

.site-nav .nav-submenu a:hover,
.site-header:not(.is-scrolled) .site-nav .nav-submenu a:hover,
.site-header.is-scrolled .site-nav .nav-submenu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  text-shadow: none;
}

.site-header.is-scrolled .site-nav .nav-submenu a {
  color: #27315f;
}

.site-header.is-scrolled .site-nav .nav-submenu a:hover {
  color: #3e57d0;
  background: rgba(62, 87, 208, 0.08);
}

.language-switch {
  margin-left: clamp(0px, 0.6vw, 8px);
  padding-left: clamp(18px, 1.7vw, 28px) !important;
  border-left: 0;
  font-size: 15px !important;
}

.language-switch small {
  margin-left: 4px;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.72;
}

.site-header.is-scrolled .language-switch {
  border-left-color: transparent;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(16, 34, 51, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--line);
  background: white;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.enterprise-hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
  padding: 132px clamp(22px, 6vw, 92px) 128px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 68%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    linear-gradient(135deg, rgba(44, 90, 221, 0.94) 0%, rgba(78, 76, 221, 0.94) 45%, rgba(119, 85, 232, 0.94) 100%),
    linear-gradient(135deg, #2354c8, #7b68ee);
  background-size: 190px 170px, 260px 220px, 220px 210px, auto, auto;
}

@media (min-width: 1061px) {
  .enterprise-hero {
    min-height: clamp(760px, 100vh, 1040px);
    padding-top: 104px;
    padding-bottom: 64px;
  }

  .hero-inner {
    transform: translateY(-70px);
  }

  .banner-image {
    transform: translateY(-12px);
  }
}

@media (min-width: 1800px) {
  .enterprise-hero {
    min-height: clamp(660px, 80vh, 840px);
    padding-top: 96px;
    padding-bottom: 52px;
  }

  .hero-inner {
    transform: translateY(-42px);
  }

  .hero-visual,
  .banner-image {
    min-height: 390px;
  }

  .banner-image {
    transform: translateY(18px);
  }

  .banner-image img {
    width: min(100%, 540px);
  }
}

.enterprise-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.08) 49% 49.2%, transparent 49.2% 100%),
    linear-gradient(0deg, transparent 0 49%, rgba(255, 255, 255, 0.08) 49% 49.2%, transparent 49.2% 100%);
  background-size: 96px 96px;
  opacity: 0.34;
  pointer-events: none;
}

.enterprise-hero::after {
  position: absolute;
  inset: auto 0 -1px;
  z-index: 3;
  height: clamp(92px, 11vw, 172px);
  content: "";
  background: var(--paper);
  clip-path: ellipse(88% 86% at 50% 112%);
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
}

.hero-background::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 75%, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px);
  background-size: 280px 220px, 310px 260px, 240px 210px;
  opacity: 0.72;
}

.hero-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at 18% 70%, rgba(255, 152, 0, 0.12), transparent 34%),
    linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 42% 42.15%, transparent 42.15% 100%);
  opacity: 0.92;
  animation: heroLightShift 9s ease-in-out infinite alternate;
}

.plane {
  position: absolute;
  display: block;
  border: 0;
  pointer-events: none;
}

.plane-one {
  right: -18vw;
  top: 5%;
  width: 64vw;
  height: 42vh;
  min-height: 320px;
  background:
    linear-gradient(112deg, transparent 0 12%, rgba(255, 255, 255, 0.14) 32%, rgba(255, 152, 0, 0.08) 54%, transparent 79%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 60%);
  filter: blur(0.2px);
  clip-path: polygon(6% 54%, 24% 24%, 52% 9%, 81% 20%, 100% 43%, 91% 72%, 61% 54%, 33% 52%, 12% 75%);
  opacity: 0.74;
  transform: perspective(1100px) rotateX(54deg) rotateZ(-8deg);
}

.plane-two {
  left: -18vw;
  top: 34%;
  width: 58vw;
  height: 44vh;
  min-height: 300px;
  background:
    linear-gradient(128deg, transparent 0 18%, rgba(255, 255, 255, 0.13) 42%, rgba(255, 255, 255, 0.08) 60%, transparent 84%);
  clip-path: polygon(0 38%, 24% 19%, 56% 24%, 86% 44%, 100% 61%, 73% 64%, 39% 56%, 10% 74%);
  opacity: 0.72;
  transform: perspective(950px) rotateX(64deg) rotateZ(8deg);
}

.plane-three {
  left: 11%;
  bottom: 20%;
  width: 82vw;
  height: 170px;
  border: 0;
  border-radius: 50%;
  background:
    linear-gradient(92deg, transparent 0%, rgba(255, 255, 255, 0.24) 34%, rgba(255, 152, 0, 0.15) 54%, transparent 78%);
  filter: blur(12px);
  opacity: 0.72;
  transform: rotate(-6deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1140px);
  max-width: 1140px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.74fr);
  gap: clamp(28px, 3.8vw, 52px);
  align-items: center;
  text-align: left;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.enterprise-hero .eyebrow,
.case-band .eyebrow,
.contact-section .eyebrow,
.solution-panel .eyebrow {
  color: var(--accent);
}

.enterprise-hero .eyebrow {
  color: var(--accent);
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(8, 126, 164, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.enterprise-hero h1 {
  max-width: 700px;
  margin-right: 0;
  margin-bottom: 24px;
  margin-left: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.28;
  font-weight: 900;
  text-shadow: 0 18px 42px rgba(24, 30, 92, 0.24);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.mobile-title-break {
  display: inline;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.28;
}

.hero-lede {
  max-width: 620px;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.95;
}

.hero-lede span {
  display: inline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 4px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  overflow: hidden;
  color: #7b68ee;
  border: 0;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(35, 38, 112, 0.22);
}

.btn-primary span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #3e57d0;
  transition: width 0.48s ease-in-out, height 0.48s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.btn-primary:hover {
  color: #ffffff;
  background: #3e57d0;
}

.btn-ghost {
  color: rgba(235, 250, 255, 0.9);
  border: 1px solid rgba(226, 207, 158, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-play {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
}

.hero-play strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
}

.hero-play small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.play-circle {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42);
  animation: playPulse 1.8s infinite;
}

.play-circle::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #7b68ee;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.banner-image {
  position: relative;
  min-height: 430px;
  transform: translateY(10px);
  animation: heroFloat 4.8s ease-in-out infinite alternate;
}

.banner-image::before {
  display: none;
}

.banner-image::after {
  display: none;
}

.banner-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 600px);
  aspect-ratio: auto;
  margin-left: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.visual-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 16px;
  color: #203069;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(28, 34, 102, 0.22);
  font-size: 14px;
  font-weight: 900;
}

.visual-card-top {
  top: 12%;
  left: 6%;
}

.visual-card-bottom {
  right: 2%;
  bottom: 17%;
}

.creative-shape {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 4;
  height: clamp(54px, 6.2vw, 90px);
  background:
    radial-gradient(75% 115% at 48% 100%, var(--paper) 0 58%, transparent 59%),
    radial-gradient(40% 90% at 85% 100%, var(--paper) 0 58%, transparent 59%),
    radial-gradient(38% 82% at 12% 100%, var(--paper) 0 58%, transparent 59%);
  pointer-events: none;
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes heroFloat {
  from {
    transform: translate3d(0, 10px, 0);
  }

  to {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes heroLightShift {
  from {
    opacity: 0.72;
    transform: translate3d(-1.2%, 0, 0);
  }

  to {
    opacity: 0.96;
    transform: translate3d(1.2%, -0.8%, 0);
  }
}

.link-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 8px 18px;
  color: var(--accent);
  border: 1px solid rgba(8, 126, 164, 0.24);
  border-radius: 999px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.link-button:hover {
  color: #ffffff;
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

.link-button-light {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #00a7a7, #087ea4);
}

.link-button-light:hover {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #087ea4, #00a7a7);
}

.section {
  padding: 112px clamp(20px, 5vw, 70px);
  scroll-margin-top: 90px;
}

.section-kicker,
.about-hero,
.about-capabilities,
.business-grid,
.case-band,
.solution-panel,
.solution-points,
.process-list,
.contact-inner {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(40, 199, 212, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f8f7 100%);
}

.about-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(8, 126, 164, 0.42), transparent);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: stretch;
}

.section-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 820px;
  margin-bottom: 26px;
}

.about-copy p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
}

.about-copy .lead {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.72;
}

.about-profile {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.4vw, 42px);
  color: var(--ink);
  background:
    linear-gradient(145deg, #ffffff, #eef8fb),
    linear-gradient(90deg, rgba(8, 126, 164, 0.05) 1px, transparent 1px);
  background-size: auto, 38px 38px;
  border: 1px solid rgba(8, 126, 164, 0.12);
  box-shadow: var(--shadow-soft);
}

.profile-top span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-top strong {
  display: block;
  font-size: 24px;
  line-height: 1.35;
}

.profile-numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 44px 0;
}

.profile-numbers article {
  padding-top: 18px;
  border-top: 1px solid rgba(8, 126, 164, 0.14);
}

.profile-numbers strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 38px);
  line-height: 1;
  white-space: nowrap;
}

.profile-numbers span,
.about-profile p {
  color: var(--muted);
}

.about-profile p {
  margin-bottom: 0;
}

.about-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-soft);
}

.about-capabilities article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.about-capabilities article:hover {
  background: #f9fcfb;
  transform: translateY(-3px);
}

.line-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border: 1px solid rgba(8, 126, 164, 0.24);
  background:
    linear-gradient(135deg, rgba(8, 126, 164, 0.1), rgba(40, 199, 212, 0.08)),
    #f7fbfd;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
  box-sizing: border-box;
}

.icon-campus::before {
  left: 11px;
  top: 14px;
  width: 26px;
  height: 20px;
  border: 2px solid var(--accent);
  border-top: 0;
}

.icon-campus::after {
  left: 10px;
  top: 10px;
  width: 28px;
  height: 14px;
  border: 2px solid var(--accent);
  border-bottom: 0;
  transform: skewX(-18deg);
}

.icon-platform::before,
.icon-system::before {
  left: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent);
}

.icon-platform::after,
.icon-system::after {
  left: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent-bright);
}

.icon-engineering::before,
.icon-ops::before {
  left: 11px;
  top: 18px;
  width: 26px;
  height: 14px;
  border: 2px solid var(--accent);
}

.icon-engineering::after,
.icon-ops::after {
  left: 16px;
  top: 12px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent-bright);
  border-radius: 50%;
}

.icon-local::before,
.icon-solution::before {
  left: 13px;
  top: 11px;
  width: 22px;
  height: 26px;
  border: 2px solid var(--accent);
  border-radius: 14px 14px 14px 0;
  transform: rotate(-45deg);
}

.icon-local::after,
.icon-solution::after {
  left: 20px;
  top: 18px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent-bright);
  border-radius: 50%;
}

.icon-portal::before {
  left: 11px;
  top: 13px;
  width: 26px;
  height: 22px;
  border: 2px solid var(--accent);
}

.icon-portal::after {
  left: 17px;
  top: 20px;
  width: 14px;
  height: 2px;
  background: var(--accent-bright);
  box-shadow: 0 6px 0 var(--accent-bright);
}

.icon-dev::before {
  left: 12px;
  top: 17px;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

.icon-dev::after {
  right: 12px;
  top: 17px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent-bright);
  border-top: 2px solid var(--accent-bright);
  transform: rotate(45deg);
}

.icon-network::before {
  left: 13px;
  top: 13px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.icon-network::after {
  left: 23px;
  top: 10px;
  width: 2px;
  height: 28px;
  background: var(--accent-bright);
  box-shadow: -10px 14px 0 -1px var(--accent-bright), 10px 14px 0 -1px var(--accent-bright);
}

.icon-desktop::before,
.icon-classroom::before {
  left: 10px;
  top: 12px;
  width: 28px;
  height: 20px;
  border: 2px solid var(--accent);
}

.icon-desktop::after,
.icon-classroom::after {
  left: 18px;
  top: 34px;
  width: 12px;
  height: 2px;
  background: var(--accent-bright);
  box-shadow: 0 -4px 0 var(--accent-bright);
}

.icon-library::before {
  left: 12px;
  top: 13px;
  width: 8px;
  height: 24px;
  border: 2px solid var(--accent);
  box-shadow: 12px 0 0 -2px #f7fbfd, 12px 0 0 0 var(--accent-bright);
}

.icon-library::after {
  left: 10px;
  top: 35px;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.icon-server::before {
  left: 11px;
  top: 11px;
  width: 26px;
  height: 26px;
  border: 2px solid var(--accent);
  box-shadow: inset 0 8px 0 rgba(8, 126, 164, 0.1), inset 0 16px 0 rgba(40, 199, 212, 0.12);
}

.icon-server::after {
  right: 15px;
  top: 17px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 8px 0 var(--accent-bright);
}

.icon-software::before {
  left: 11px;
  top: 12px;
  width: 26px;
  height: 24px;
  border: 2px solid var(--accent);
}

.icon-software::after {
  left: 16px;
  top: 18px;
  width: 16px;
  height: 2px;
  background: var(--accent-bright);
  box-shadow: 0 6px 0 var(--accent-bright), 0 12px 0 var(--accent-bright);
}

.about-capabilities strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 21px;
  white-space: nowrap;
}

.about-capabilities p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-kicker {
  display: flex;
  max-width: 920px;
  margin: 0 auto 50px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-kicker p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  text-align: center;
}

.section-kicker > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker h2 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  text-wrap: balance;
}

.business-section {
  background:
    linear-gradient(180deg, #eef5fb 0%, var(--paper) 100%);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.business-entry {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.business-entry::after,
.case-item::after,
.featured-platform::after,
.service-row::after,
.product-group::after,
.solution-points article::after,
.process-guarantees article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transform: scaleX(0.7);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.business-entry:hover,
.case-item:hover,
.featured-platform:hover,
.service-row:hover,
.product-group:hover,
.solution-points article:hover,
.process-guarantees article:hover {
  background: #fbfdfc;
  transform: translateY(-3px);
}

.business-entry:hover::after,
.case-item:hover::after,
.featured-platform:hover::after,
.service-row:hover::after,
.product-group:hover::after,
.solution-points article:hover::after,
.process-guarantees article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.business-entry:last-child {
  border-right: 0;
}

.entry-index {
  margin-bottom: 48px;
}

.business-entry p,
.service-row p,
.solution-points p,
.process-list p,
.case-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.business-entry a {
  display: inline-flex;
  margin-top: 30px;
  color: var(--accent);
  font-weight: 900;
}

.case-band {
  position: relative;
  display: block;
  max-width: none;
  padding: 104px clamp(24px, 5vw, 70px);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 167, 167, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #eef8fa 100%);
}

.case-copy h2 {
  color: var(--ink);
}

.case-copy {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.case-copy h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-wrap: balance;
}

.case-copy p:not(.eyebrow),
.contact-inner p,
.solution-panel p {
  color: var(--muted);
}

.case-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.solution-tabs,
.product-tabs {
  display: flex;
  max-width: var(--max);
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 42px;
}

.solution-tabs span,
.product-tabs span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--accent);
  border: 1px solid rgba(8, 126, 164, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 27, 45, 0.05);
}

.solution-tabs span:first-child,
.product-tabs span:first-child {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, #00a7a7, #087ea4);
}

.case-list {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  background: transparent;
}

.case-item {
  position: relative;
  overflow: hidden;
  min-height: 284px;
  padding: 30px;
  border: 1px solid rgba(8, 126, 164, 0.12);
  background: white;
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.case-item span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 900;
}

.case-item h3 {
  color: var(--ink);
}

.case-item p {
  color: var(--muted);
}

.case-item:hover {
  border-color: rgba(8, 126, 164, 0.28);
  box-shadow: 0 20px 48px rgba(7, 27, 45, 0.11);
}

.systems-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 167, 167, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
}

.products-heading {
  display: flex;
  max-width: 960px;
  margin: 0 auto 30px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.products-heading > span,
.feature-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.products-heading h2 {
  margin-bottom: 16px;
  text-wrap: balance;
}

.products-heading p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  text-align: center;
  text-wrap: pretty;
}

.products-feature {
  display: block;
  max-width: var(--max);
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
}

.product-hero-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 288px;
  padding: clamp(30px, 4vw, 48px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-align: center;
  border: 1px solid rgba(8, 126, 164, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 20%, rgba(40, 199, 212, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef9fb 100%);
  box-shadow: var(--shadow-soft);
}

.product-hero-card::after {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: clamp(18px, 4vw, 44px);
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(8, 126, 164, 0.12);
  transform: rotate(45deg);
}

.product-hero-card h3 {
  max-width: 760px;
  margin-top: 22px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  text-wrap: balance;
}

.product-hero-card p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  text-align: center;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}

.feature-tags span {
  padding: 8px 12px;
  color: var(--accent);
  border: 1px solid rgba(8, 126, 164, 0.16);
  border-radius: 999px;
  background: #ffffff;
  font-size: 14px;
  white-space: nowrap;
}

.featured-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
  background: transparent;
  box-shadow: none;
}

.featured-platform {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 248px;
  padding: 30px;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border: 1px solid rgba(8, 126, 164, 0.12);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.featured-platform > span {
  display: block;
  margin-bottom: 0;
}

.featured-platform strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}

.featured-platform p {
  margin-bottom: 0;
  color: var(--muted);
}

.featured-platform .link-button {
  grid-column: 2;
  justify-self: start;
  margin-top: 4px;
}

.product-matrix {
  display: grid;
  max-width: var(--max);
  margin: 34px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
  box-shadow: none;
}

.product-group {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(8, 126, 164, 0.12);
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 28px rgba(7, 27, 45, 0.06);
  transition: background 180ms ease, transform 180ms ease;
}

.product-group > span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.product-group article {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.product-group strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.service-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(29, 95, 148, 0.12), transparent 24%),
    linear-gradient(180deg, #eef5fb 0%, #ffffff 100%);
}

.service-intro,
.service-layout,
.service-guarantees {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.service-intro {
  display: flex;
  max-width: 960px;
  margin-bottom: 50px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-intro > span,
.service-promise > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-intro h2 {
  margin-bottom: 16px;
  text-wrap: balance;
}

.service-intro p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  text-align: center;
  text-wrap: pretty;
}

.service-layout {
  display: block;
  background: transparent;
  box-shadow: none;
}

.service-promise {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 280px;
  padding: clamp(30px, 4vw, 46px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-align: center;
  background:
    radial-gradient(circle at 80% 30%, rgba(40, 199, 212, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef9fb);
  border: 1px solid rgba(8, 126, 164, 0.12);
  box-shadow: var(--shadow-soft);
}

.service-promise h3 {
  max-width: 740px;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.2;
  text-wrap: balance;
}

.service-promise p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.service-grid-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.service-row {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  padding: 28px;
  background: white;
  transition: background 180ms ease, transform 180ms ease;
}

.service-row span {
  display: block;
  margin-bottom: 34px;
}

.service-row h3 {
  margin-bottom: 12px;
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-guarantees {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.service-guarantees article {
  min-height: 128px;
  padding: 24px;
  background: white;
}

.service-guarantees strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.service-guarantees span {
  color: var(--muted);
}

.solution-section {
  display: grid;
  gap: 34px;
  background: white;
}

.solution-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  padding: clamp(30px, 5vw, 58px);
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(40, 199, 212, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef8fb);
  border: 1px solid rgba(8, 126, 164, 0.12);
  box-shadow: var(--shadow-soft);
}

.solution-panel h2 {
  color: var(--ink);
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-wrap: balance;
}

.solution-panel p {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.solution-points article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: background 180ms ease, transform 180ms ease;
}

.solution-points strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.process-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.process-heading,
.process-layout {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.process-heading {
  display: flex;
  max-width: 960px;
  margin-bottom: 50px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-heading > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-heading h2 {
  margin-bottom: 16px;
  text-wrap: balance;
}

.process-heading p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  text-align: center;
  text-wrap: pretty;
}

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

.process-list {
  display: grid;
  gap: 1px;
  padding: 0;
  list-style: none;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.process-list li {
  display: grid;
  grid-template-columns: 80px minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: 118px;
  padding: 24px;
  background: white;
  transition: background 180ms ease;
}

.process-list li:hover {
  background: #fbfdfc;
}

.process-list span {
  display: block;
  color: var(--accent);
  font-weight: 900;
}

.process-list strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-guarantees {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.process-guarantees article {
  position: relative;
  overflow: hidden;
  min-height: 146px;
  padding: 24px;
  background: white;
  transition: background 180ms ease, transform 180ms ease;
}

.process-guarantees strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.process-guarantees p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding: 104px clamp(20px, 5vw, 70px);
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 18%, rgba(40, 199, 212, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef8fb 100%);
  scroll-margin-top: 90px;
}

.contact-inner h2 {
  color: var(--ink);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.contact-box p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(8, 126, 164, 0.12);
  background: #ffffff;
}

.contact-box p {
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-box p:hover {
  border-color: rgba(8, 126, 164, 0.24);
  background: #f9fdfe;
}

.contact-box span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  padding: 24px clamp(20px, 5vw, 70px);
  color: #66777d;
  background: #e9efec;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  color: #2d8b74;
}

/* Cohesive enterprise system: lighter surfaces, quieter shadows, consistent section rhythm. */
.section,
.case-band,
.contact-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.about-section,
.business-section,
.case-band,
.systems-section,
.service-section,
.solution-section,
.process-section,
.contact-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
}

.business-section,
.service-section,
.process-section {
  background:
    linear-gradient(180deg, #f3f8fc 0%, #ffffff 100%);
}

.about-section::before,
.business-entry::after,
.case-item::after,
.featured-platform::after,
.service-row::after,
.product-group::after,
.solution-points article::after,
.process-guarantees article::after,
.product-hero-card::after {
  display: none;
}

.section-kicker,
.case-copy,
.products-heading,
.service-intro,
.process-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.section-kicker > span,
.products-heading > span,
.service-intro > span,
.process-heading > span,
.section-label,
.feature-label,
.service-promise > span,
.case-item span,
.product-group > span,
.contact-box span,
.profile-top span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.section-kicker h2,
.case-copy h2,
.products-heading h2,
.service-intro h2,
.process-heading h2,
.solution-panel h2,
.about-copy h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.22;
}

.business-grid,
.about-capabilities,
.case-list,
.featured-platforms,
.product-matrix,
.service-grid-list,
.service-guarantees,
.solution-points,
.process-guarantees {
  gap: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-profile,
.business-entry,
.case-item,
.product-hero-card,
.featured-platform,
.product-group,
.service-promise,
.service-row,
.service-guarantees article,
.solution-panel,
.solution-points article,
.process-list,
.process-list li,
.process-guarantees article,
.contact-box p {
  border: 1px solid rgba(8, 126, 164, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(7, 27, 45, 0.06);
}

.business-entry,
.about-capabilities article,
.service-row,
.process-list li {
  border-right: 1px solid rgba(8, 126, 164, 0.12);
  border-bottom: 1px solid rgba(8, 126, 164, 0.12);
}

.business-entry:hover,
.case-item:hover,
.featured-platform:hover,
.service-row:hover,
.product-group:hover,
.solution-points article:hover,
.process-guarantees article:hover,
.about-capabilities article:hover {
  border-color: rgba(8, 126, 164, 0.22);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 27, 45, 0.08);
  transform: translateY(-2px);
}

.solution-tabs span,
.product-tabs span,
.feature-tags span,
.link-button,
.btn {
  border-radius: 6px;
}

.solution-tabs span,
.product-tabs span {
  min-height: 40px;
  box-shadow: none;
}

.product-hero-card,
.service-promise,
.solution-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 252, 0.96));
}

.product-hero-card h3,
.service-promise h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.line-icon {
  border-radius: 6px;
  background: #f4fafc;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1260px) {
  .enterprise-hero {
    min-height: 100vh;
  }
}

@media (max-width: 1060px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: flex;
    width: 100% !important;
    height: auto;
    min-height: auto;
    padding: 13px;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-dropdown {
    display: grid;
    height: auto;
  }

  .nav-dropdown-trigger {
    width: 100%;
  }

  .nav-submenu {
    position: static;
    width: auto;
    padding: 0 0 6px 14px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav .nav-submenu a {
    min-height: 44px;
    padding: 9px 12px;
    color: var(--ink);
  }

  .language-switch {
    margin-left: 0;
    padding-left: 13px !important;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .nav-toggle {
    display: block;
  }

  .enterprise-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 118px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .banner-image {
    min-height: 360px;
  }

  .banner-image img {
    width: min(100%, 560px);
    margin-right: auto;
    margin-left: auto;
  }

  .plane-one {
    right: -32vw;
    width: 92vw;
  }

  .plane-two {
    left: -34vw;
    width: 80vw;
  }

  .section-kicker,
  .service-intro,
  .process-heading,
  .about-hero,
  .case-band,
  .service-layout,
  .process-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .business-grid,
  .about-capabilities,
  .featured-platforms,
  .product-matrix,
  .service-grid-list,
  .service-guarantees,
  .process-guarantees,
  .solution-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-entry {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .business-entry:last-child {
    border-bottom: 0;
  }

  .entry-index {
    margin-bottom: 28px;
  }

  .about-capabilities article {
    min-height: 190px;
  }

  .line-icon,
  .about-capabilities span {
    margin-bottom: 30px;
  }

}

@media (max-width: 680px) {
  .site-header {
    height: 68px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
    height: 46px;
    padding: 6px 9px;
    gap: 7px;
  }

  .brand-logo {
    height: 28px;
    max-width: 56px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
    gap: 8px;
  }

  .brand-text strong {
    font-size: 13px;
  }

  .brand-text small {
    display: none;
  }

  .site-nav {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .enterprise-hero {
    min-height: auto;
    padding: 108px 18px 96px;
  }

  .enterprise-hero::before {
    inset: -10% -34% auto -34%;
    height: 58%;
    opacity: 0.66;
  }

  .enterprise-hero::after {
    height: 64px;
    opacity: 1;
  }

  .hero-background::before {
    background-size: 220px 190px, 260px 220px, 260px 210px, auto, auto, 64px 64px, 64px 64px;
    opacity: 0.56;
  }

  .plane-one,
  .plane-two {
    opacity: 0.48;
  }

  .plane-three {
    left: -18%;
    bottom: 24%;
    width: 132vw;
    opacity: 0.52;
  }

  h1,
  .enterprise-hero h1 {
    max-width: 100%;
    font-size: 31px;
    line-height: 1.22;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .hero-title-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mobile-title-break {
    display: block;
  }

  h2 {
    font-size: 31px;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.8;
    word-break: break-all;
  }

  .hero-lede span {
    display: block;
  }

  .hero-actions {
    width: 100%;
    align-items: flex-start;
    gap: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-play {
    width: 100%;
  }

  .hero-visual,
  .banner-image {
    min-height: 300px;
  }

  .banner-image img {
    width: min(100%, 300px);
    margin-right: auto;
    margin-left: auto;
  }

  .section {
    padding: 76px 18px;
  }

  .about-copy .lead {
    font-size: 19px;
  }

  .about-profile,
  .product-hero-card,
  .service-promise,
  .solution-panel {
    min-height: auto;
  }

  .product-hero-card::after {
    width: 96px;
    height: 96px;
  }

  .case-band {
    padding: 70px 18px;
  }

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

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

  .featured-platform .link-button {
    grid-column: auto;
  }

  .service-grid-list,
  .service-guarantees,
  .featured-platforms,
  .process-guarantees,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-promise {
    min-height: auto;
  }

  .service-row {
    min-height: auto;
  }

  .service-row span,
  .line-icon {
    margin-bottom: 22px;
  }

  .about-capabilities {
    grid-template-columns: 1fr;
  }

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

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

  .process-list li {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .process-list span {
    margin-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Reference template section restyle: Techvia-inspired lower-page system. */
:root {
  --ref-purple: #7b68ee;
  --ref-blue: #3e57d0;
  --ref-orange: #ff9800;
  --ref-navy: #0b0b31;
  --ref-dark: #202438;
  --ref-body: #5f5f5f;
  --ref-grey: #fafbfc;
  --ref-card-shadow: 0 7px 25px rgba(123, 104, 238, 0.12);
  --ref-card-shadow-hover: 0 14px 36px rgba(123, 104, 238, 0.2);
}

main {
  background: #ffffff;
}

body,
p {
  color: var(--ref-body);
}

h2,
h3,
.about-profile strong,
.business-entry h3,
.featured-platform strong,
.product-group strong,
.service-guarantees strong,
.solution-points strong,
.process-list strong,
.process-guarantees strong {
  color: var(--ref-navy);
}

.section,
.case-band,
.contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-section,
.systems-section,
.solution-section {
  background: #ffffff !important;
}

.business-section,
.case-band,
.service-section,
.process-section {
  background: var(--ref-grey) !important;
}

.about-hero,
.about-capabilities,
.section-kicker,
.business-grid,
.case-copy,
.case-list,
.products-heading,
.products-feature,
.product-matrix,
.service-intro,
.service-layout,
.service-guarantees,
.solution-panel,
.solution-points,
.process-heading,
.process-layout,
.contact-inner {
  max-width: 1140px;
}

.section-kicker,
.case-copy,
.products-heading,
.service-intro,
.process-heading {
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  text-align: center;
}

.section-kicker > span,
.products-heading > span,
.service-intro > span,
.process-heading > span,
.section-label,
.feature-label,
.service-promise > span,
.case-item span,
.product-group > span,
.contact-section .eyebrow,
.solution-panel .eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--ref-orange);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.section-kicker h2,
.case-copy h2,
.products-heading h2,
.service-intro h2,
.process-heading h2,
.solution-panel h2,
.about-copy h2,
.contact-section h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ref-navy);
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.35;
}

.about-copy h2,
.contact-section h2,
.solution-panel h2 {
  margin-left: 0;
}

.section-kicker p,
.case-copy p,
.products-heading p,
.service-intro p,
.process-heading p,
.about-copy p,
.solution-panel p,
.contact-section p {
  max-width: 760px;
  color: var(--ref-body);
  font-size: 16px;
  line-height: 1.85;
}

.section-kicker p,
.case-copy p,
.products-heading p,
.service-intro p,
.process-heading p {
  margin-right: auto;
  margin-left: auto;
}

.about-hero {
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}

.about-copy {
  position: relative;
}

.about-copy .lead {
  color: #4f4f5f;
  font-size: 18px;
  font-weight: 600;
}

.about-profile {
  position: relative;
  overflow: hidden;
  padding: 42px 36px;
  border: 0;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(82, 90, 101, 0.1);
}

.about-profile::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: "";
  background: var(--ref-purple);
}

.profile-top span {
  color: var(--ref-orange);
}

.profile-numbers {
  gap: 16px;
  margin: 28px 0;
}

.profile-numbers article {
  border: 1px solid rgba(123, 104, 238, 0.16);
  border-radius: 5px;
  background: #fafbfc;
}

.profile-numbers strong {
  color: var(--ref-purple);
}

.about-capabilities,
.business-grid,
.case-list,
.featured-platforms,
.product-matrix,
.service-grid-list,
.service-guarantees,
.solution-points,
.process-guarantees {
  gap: 30px;
}

.about-capabilities article,
.business-entry,
.case-item,
.featured-platform,
.product-group,
.service-row,
.service-guarantees article,
.solution-points article,
.process-guarantees article {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), var(--ref-card-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-capabilities article::before,
.business-entry::before,
.case-item::before,
.featured-platform::before,
.product-group::before,
.service-row::before,
.solution-points article::before,
.process-guarantees article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--ref-purple), var(--ref-blue));
}

.about-capabilities article:hover,
.business-entry:hover,
.case-item:hover,
.featured-platform:hover,
.product-group:hover,
.service-row:hover,
.solution-points article:hover,
.process-guarantees article:hover {
  transform: translateY(-8px);
  box-shadow: var(--ref-card-shadow-hover);
}

.line-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(123, 104, 238, 0.1);
}

.line-icon::before,
.line-icon::after {
  border-color: var(--ref-purple);
}

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

.business-entry {
  min-height: 330px;
  padding: 42px 34px;
  text-align: left;
}

.business-entry a,
.link-button {
  color: var(--ref-purple);
  font-weight: 800;
}

.business-entry a:hover,
.link-button:hover {
  color: #ffffff;
}

.case-band {
  color: var(--ref-body);
}

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

.case-item {
  min-height: 280px;
  padding: 34px 26px;
}

.solution-tabs,
.product-tabs {
  justify-content: center;
  gap: 12px;
  margin-bottom: 42px;
}

.solution-tabs span,
.product-tabs span,
.feature-tags span {
  border: 1px solid rgba(123, 104, 238, 0.16);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(123, 104, 238, 0.08);
}

.solution-tabs span:first-child,
.product-tabs span:first-child,
.feature-tags span:first-child {
  color: #ffffff;
  border-color: var(--ref-purple);
  background: var(--ref-purple);
}

.product-hero-card {
  overflow: hidden;
  min-height: 360px;
  padding: 52px 46px;
  color: #ffffff;
  border: 0;
  border-radius: 5px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, var(--ref-purple), var(--ref-blue)) !important;
  box-shadow: 0 12px 32px rgba(123, 104, 238, 0.22);
}

.product-hero-card h3,
.product-hero-card p,
.product-hero-card .feature-label {
  color: #ffffff;
}

.product-hero-card p {
  opacity: 0.9;
}

.product-hero-card .link-button-light {
  color: var(--ref-purple);
  background: #ffffff;
}

.featured-platform {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  padding: 26px 28px;
}

.featured-platform .link-button,
.case-item .link-button,
.product-hero-card .link-button,
.business-entry a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 0;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 7px 25px rgba(123, 104, 238, 0.18);
  transition: color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}

.featured-platform .link-button:hover,
.case-item .link-button:hover,
.product-hero-card .link-button:hover,
.business-entry a:hover {
  background: var(--ref-purple);
  transform: translateY(-2px);
}

.product-matrix {
  margin-top: 44px;
}

.product-group {
  padding: 30px 26px;
}

.product-group article {
  border-left: 3px solid rgba(123, 104, 238, 0.45);
  background: #fafbfc;
}

.service-layout {
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  align-items: start;
}

.service-promise,
.solution-panel {
  border: 0;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(123, 104, 238, 0.94), rgba(62, 87, 208, 0.94)) !important;
  box-shadow: 0 12px 32px rgba(123, 104, 238, 0.2);
}

.service-promise h3,
.service-promise p,
.service-promise > span,
.solution-panel h2,
.solution-panel p,
.solution-panel .eyebrow {
  color: #ffffff;
}

.service-promise p,
.solution-panel p {
  opacity: 0.9;
}

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

.service-row {
  min-height: 245px;
  padding: 34px 28px;
}

.service-guarantees {
  margin-top: 36px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-guarantees article {
  min-height: 122px;
  padding: 24px;
  border-top: 3px solid var(--ref-purple);
}

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

.solution-panel {
  padding: 58px 54px;
}

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

.solution-points article,
.process-guarantees article {
  padding: 32px 28px;
}

.process-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.7fr);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 22px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  min-height: auto;
  padding: 28px 30px;
  border: 0;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), var(--ref-card-shadow);
}

.process-list li span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 50%;
  background: var(--ref-purple);
  font-weight: 900;
}

.process-list li strong {
  margin-top: 2px;
  font-size: 20px;
}

.process-list li p {
  grid-column: 2;
  margin: -18px 0 0;
}

.process-guarantees {
  grid-template-columns: 1fr;
}

.contact-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 22%, rgba(123, 104, 238, 0.22), transparent 28%),
    linear-gradient(135deg, var(--ref-dark), #1e2134) !important;
}

.contact-inner {
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.contact-section h2,
.contact-section p,
.contact-section .eyebrow {
  color: #ffffff;
}

.contact-section p {
  opacity: 0.9;
}

.contact-box {
  display: grid;
  gap: 16px;
}

.contact-box p {
  margin: 0;
  padding: 22px 24px;
  color: #ececec;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--ref-purple);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.contact-box span {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.site-footer {
  color: #ececec;
  background: #1e2134;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1060px) {
  .business-grid,
  .case-list,
  .service-guarantees,
  .solution-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-layout,
  .process-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section,
  .case-band,
  .contact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-kicker,
  .case-copy,
  .products-heading,
  .service-intro,
  .process-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-kicker h2,
  .case-copy h2,
  .products-heading h2,
  .service-intro h2,
  .process-heading h2,
  .solution-panel h2,
  .about-copy h2,
  .contact-section h2 {
    font-size: 28px;
  }

  .business-grid,
  .case-list,
  .featured-platforms,
  .product-matrix,
  .service-grid-list,
  .service-guarantees,
  .solution-points,
  .process-guarantees {
    grid-template-columns: 1fr;
  }

  .featured-platform,
  .process-list li {
    grid-template-columns: 1fr;
  }

  .process-list li p {
    grid-column: auto;
    margin-top: 0;
  }

  .product-hero-card,
  .service-promise,
  .solution-panel,
  .about-profile {
    padding: 32px 24px;
  }

  .business-entry,
  .case-item,
  .service-row,
  .product-group,
  .solution-points article,
  .process-guarantees article {
    min-height: auto;
    padding: 28px 24px;
  }
}

@media (min-width: 1500px) {
  .enterprise-hero {
    padding-right: clamp(110px, 8vw, 170px);
    padding-left: clamp(110px, 8vw, 170px);
  }

  .hero-inner {
    width: min(100%, 1420px);
    max-width: 1420px;
    grid-template-columns: minmax(620px, 1fr) minmax(480px, 0.82fr);
    gap: clamp(92px, 7vw, 150px);
  }

  .enterprise-hero h1 {
    max-width: 800px;
    font-size: clamp(50px, 3vw, 60px);
    line-height: 1.22;
  }

  .hero-lede {
    max-width: 720px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 30px;
    margin-top: 44px;
  }

  .btn {
    min-height: 56px;
    padding-right: 38px;
    padding-left: 38px;
  }

  .hero-visual,
  .banner-image {
    min-height: 510px;
  }

  .banner-image img {
    width: min(100%, 640px);
  }
}

@media (min-width: 1900px) {
  .hero-inner {
    width: min(100%, 1600px);
    max-width: 1600px;
    grid-template-columns: minmax(720px, 1fr) minmax(560px, 0.78fr);
    gap: clamp(130px, 8.5vw, 210px);
  }

  .enterprise-hero h1 {
    max-width: 880px;
    font-size: clamp(58px, 2.7vw, 66px);
  }

  .hero-lede {
    max-width: 780px;
    font-size: 19px;
  }

  .hero-visual,
  .banner-image {
    min-height: 560px;
  }

  .banner-image img {
    width: min(100%, 700px);
  }
}

/* Strict Techvia-style module copy for lower pages. */
.container {
  width: min(100% - 40px, 1140px);
  margin-right: auto;
  margin-left: auto;
}

.section-padding,
.section,
.case-band,
.contact-section {
  padding: 100px 0;
}

.pt-50 {
  padding-top: 50px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.bg-grey,
.business-section,
.case-band,
.service-section,
.process-section {
  background: #fafbfc !important;
}

.about-section,
.systems-section,
.solution-section {
  background: #ffffff !important;
}

.section-title,
.section-kicker,
.case-copy,
.products-heading,
.service-intro,
.process-heading {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-title h6,
.about-content h6,
.overview-content h6,
.service-promise h6,
.section-label {
  display: block;
  margin: 0 0 10px;
  color: #ff9800;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.section-title h2,
.about-content h2,
.overview-content h2,
.tab-solution-content h3,
.hire-content h2 {
  color: #0b0b31;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.35;
}

.section-title p,
.about-content p,
.overview-content p,
.tab-solution-content p,
.hire-content p {
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.8;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  gap: 58px;
  align-items: center;
  max-width: none;
}

.about-content .lead {
  color: #3d3d50;
  font-size: 17px;
  font-weight: 600;
}

.about-section .skills {
  margin-top: 30px;
}

.about-section .skills .skill-item {
  margin-bottom: 22px;
}

.about-section .skills .skill-item h6 {
  margin: 0 0 10px;
  color: #0b0b31;
  font-size: 16px;
  font-weight: 700;
}

.about-section .skills .skill-item h6 em {
  float: right;
  color: #7b68ee;
  font-style: normal;
}

.about-section .skills .skill-item p {
  margin: 0;
  color: #536879;
  font-size: 15px;
  line-height: 1.75;
}

.about-section .skills .skill-progress {
  height: 6px;
  border-radius: 30px;
  background: #e9ecef;
}

.about-section .skills .skill-progress .progres {
  height: 100%;
  border-radius: 30px;
  background: #7b68ee;
}

.about-btn-box {
  margin-top: 34px;
}

.about-btn-box .about-layout-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 4px 0 0;
  color: #1f4fd8;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.about-btn-box .about-layout-link::before {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(47, 99, 244, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 36%, #ffffff 0 2px, transparent 3px),
    radial-gradient(circle at 66% 64%, #ffffff 0 2px, transparent 3px),
    linear-gradient(135deg, #2f63f4, #68d7ff);
  box-shadow: 0 10px 24px rgba(47, 99, 244, 0.22);
  content: "";
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-btn-box .about-layout-link::after {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.82;
  transform: rotate(45deg) scale(0.7);
  transition: transform 180ms ease, opacity 180ms ease;
}

.about-btn-box .about-layout-link span {
  display: none;
}

.about-btn-box .about-layout-link:hover {
  color: #0b79df;
  transform: translateX(2px);
}

.about-btn-box .about-layout-link:hover::before {
  box-shadow: 0 14px 30px rgba(47, 99, 244, 0.28);
  transform: translateY(-1px) rotate(-8deg);
}

.about-btn-box .about-layout-link:hover::after {
  opacity: 1;
  transform: translateX(3px) rotate(45deg) scale(0.7);
}

.about-image {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-image > img,
.overview-image img,
.overview-image-2 img,
.tab-image img {
  display: block;
  width: 100%;
  border-radius: 3px;
}

.about-image .sub-content {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: min(82%, 318px);
  align-items: center;
  gap: 16px;
  padding: 15px;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 7px 25px rgba(123, 104, 238, 0.18);
}

.about-image .sub-content img {
  width: 92px;
  height: 86px;
  object-fit: cover;
  border-radius: 3px;
}

.about-image .content-info h3 {
  margin: 0 0 2px;
  color: #7b68ee;
  font-size: 34px;
  line-height: 1;
}

.about-image .content-info span {
  display: block;
  color: #0b0b31;
  font-weight: 700;
}

.about-image .profile-numbers {
  display: none;
}

.about-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 70px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-capabilities article,
.single-services-item,
.featured-platform,
.product-group,
.process-guarantees article {
  padding: 35px 30px;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-capabilities article:hover,
.single-services-item:hover,
.featured-platform:hover,
.product-group:hover,
.process-guarantees article:hover {
  transform: translateY(-10px);
  box-shadow: 5px 10px 25px 2px rgba(82, 90, 101, 0.16);
}

.about-capabilities strong,
.single-services-item h3,
.featured-platform strong,
.product-group strong,
.process-guarantees strong {
  display: block;
  color: #0b0b31;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.about-capabilities p,
.single-services-item p,
.featured-platform p,
.product-group article,
.process-guarantees p {
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.75;
}

.services-grid,
.business-grid,
.service-grid-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.services-icon {
  min-height: 66px;
  margin-bottom: 22px;
}

.services-icon .line-icon {
  width: 58px;
  height: 58px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 152, 0, 0.11);
}

.services-icon .line-icon::before,
.services-icon .line-icon::after {
  border-color: #ff9800;
}

.services-btn-link {
  margin-top: 22px;
}

.services-link,
.business-entry a,
.link-button {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  margin: 0;
  padding: 0 0 3px;
  color: #ff9800;
  border: 0;
  border-bottom: 2px solid #ff9800;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 15px;
  font-weight: 800;
}

.services-link:hover,
.business-entry a:hover,
.link-button:hover {
  color: #7b68ee;
  border-color: #7b68ee;
  background: transparent;
  transform: none;
}

.solutions-list-tab .tabs,
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 0 45px;
  padding: 0;
  list-style: none;
}

.solutions-list-tab .tabs li,
.product-tabs span {
  display: block;
}

.solutions-list-tab .tabs li a,
.solutions-list-tab .tabs li button,
.product-tabs span {
  display: flex;
  min-width: 150px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: #0b0b31;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 7px 25px rgba(123, 104, 238, 0.14);
  font-size: 16px;
  font-weight: 800;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.solutions-list-tab .tabs li button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.solutions-list-tab .tabs li.current a,
.solutions-list-tab .tabs li.current button,
.solutions-list-tab .tabs li:hover a,
.solutions-list-tab .tabs li:hover button,
.product-tabs span:first-child,
.product-tabs span:hover {
  color: #ffffff;
  background: #3e57d0;
  transform: translateY(-3px);
}

.tab_content {
  position: relative;
}

.tab .tabs_item {
  display: none;
}

.tab .tabs_item.is-active {
  display: grid;
}

.case-list {
  max-width: none;
  margin: 0;
}

.case-item {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.case-item:hover {
  transform: none;
  box-shadow: none;
}

.tab-solution-content {
  padding: 10px 0;
}

.tab-solution-content span {
  display: block;
  margin-bottom: 10px;
  color: #ff9800;
  font-size: 16px;
  font-weight: 800;
}

.tab-solution-content h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 36px);
}

.tab-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.tab-list li {
  position: relative;
  padding-left: 30px;
  color: #5f5f5f;
  font-weight: 600;
}

.tab-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background: #7b68ee;
}

.tab-list li::after {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 7px;
  height: 11px;
  content: "";
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tab-image img {
  min-height: 320px;
  object-fit: cover;
}

.products-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 45px;
  align-items: center;
  max-width: none;
}

.product-hero-card {
  position: relative;
  overflow: visible;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

.product-hero-card .feature-tags {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  max-width: calc(100% - 36px);
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tags span {
  min-height: 34px;
  padding: 6px 12px;
  color: #ffffff;
  border: 0;
  border-radius: 3px;
  background: #7b68ee;
  box-shadow: 0 7px 18px rgba(35, 38, 112, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.featured-platforms {
  display: grid;
  gap: 18px;
}

.featured-platform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 20px;
  align-items: center;
  padding: 24px 26px;
}

.featured-platform strong,
.featured-platform p {
  grid-column: 1;
}

.featured-platform .link-button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.product-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: none;
  margin: 60px 0 0;
  background: transparent;
  box-shadow: none;
}

.product-group {
  min-height: 260px;
}

.product-group > span {
  display: block;
  margin-bottom: 20px;
  color: #ff9800;
  font-size: 16px;
  font-weight: 800;
}

.product-group article {
  padding: 12px 0;
  border-top: 1px solid #eef0f4;
  background: transparent;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: 30px;
  max-width: none;
}

.service-promise,
.solution-panel {
  padding: 40px 34px;
  border: 0;
  border-radius: 3px;
  background: #ffffff !important;
  box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
  text-align: left;
}

.service-promise h3,
.solution-panel h2 {
  color: #0b0b31;
  font-size: clamp(27px, 2.7vw, 35px);
}

.service-promise p,
.solution-panel p {
  color: #5f5f5f;
}

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

.service-row {
  min-height: 245px;
}

.service-guarantees,
.solution-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: none;
  margin: 36px 0 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.service-guarantees article,
.solution-points article {
  position: relative;
  padding: 22px 18px 22px 24px;
  border-left: 3px solid #7b68ee;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.1);
}

.solution-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 32px;
  max-width: none;
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 6px 18px;
  padding: 24px 26px;
  border: 0;
  border-left: 3px solid #7b68ee;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.1);
}

.process-list li span {
  grid-row: 1 / span 2;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 50%;
  background: #7b68ee;
  font-weight: 900;
}

.process-list li strong {
  color: #0b0b31;
  font-size: 19px;
}

.process-list li p {
  grid-column: 2;
  margin: 0;
  color: #5f5f5f;
}

.process-guarantees {
  display: grid;
  gap: 18px;
}

.customer-logo-section {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  padding-bottom: 86px;
  background: #f7f9fc;
}

.customer-logo-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(47, 99, 244, 0.08), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(104, 215, 255, 0.12), transparent 30%);
  content: "";
  pointer-events: none;
}

.customer-logo-section .container {
  position: relative;
  z-index: 1;
}

.customer-logo-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.customer-logo-heading h2 {
  color: var(--home-primary);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.customer-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.customer-logo-card {
  display: grid;
  width: min(360px, 100%);
  min-height: 118px;
  place-items: center;
  padding: 24px 34px;
  border: 1px solid rgba(47, 99, 244, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(15, 35, 75, 0.08);
}

.customer-logo-card-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: #172742;
}

.customer-logo-card img {
  display: block;
  max-width: 230px;
  max-height: 72px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .customer-logo-section {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .customer-logo-heading {
    margin-bottom: 24px;
  }

  .customer-logo-card {
    width: 100%;
    min-height: auto;
    padding: 22px;
  }

  .customer-logo-card img {
    max-width: 210px;
    max-height: 66px;
  }
}

.contact-section.hire-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #ffffff;
  background:
    linear-gradient(rgba(20, 20, 54, 0.86), rgba(20, 20, 54, 0.86)),
    url("image/reference-choose-2.jpg") center/cover no-repeat !important;
}

.hire-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(15, 18, 48, 0.18);
}

.hire-content,
.contact-inner {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.hire-content .eyebrow,
.hire-content h2,
.hire-content p {
  color: #ffffff;
}

.hire-content .eyebrow {
  color: #ff9800;
  font-weight: 800;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.contact-box p {
  margin: 0;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.86);
  text-align: left;
}

.contact-box span {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .about-hero,
  .products-feature,
  .service-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .about-capabilities,
  .services-grid,
  .business-grid,
  .service-grid-list,
  .product-matrix,
  .service-guarantees,
  .solution-points,
  .contact-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 1140px);
  }

  .section-padding,
  .section,
  .case-band,
  .contact-section {
    padding: 76px 0;
  }

  .section-title,
  .section-kicker,
  .case-copy,
  .products-heading,
  .service-intro,
  .process-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-title h2,
  .about-content h2,
  .overview-content h2,
  .tab-solution-content h3,
  .hire-content h2 {
    font-size: 28px;
  }

  .about-capabilities,
  .services-grid,
  .business-grid,
  .service-grid-list,
  .product-matrix,
  .service-guarantees,
  .solution-points,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .about-image .sub-content {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .solutions-list-tab .tabs,
  .product-tabs {
    gap: 12px;
    justify-content: flex-start;
  }

  .solutions-list-tab .tabs li a,
  .solutions-list-tab .tabs li button,
  .product-tabs span {
    min-width: calc(50vw - 28px);
    min-height: 50px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .featured-platform,
  .process-list li {
    grid-template-columns: 1fr;
  }

  .featured-platform .link-button,
  .process-list li p {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-section.hire-section {
    padding: 86px 0;
  }

  .contact-box p {
    text-align: left;
  }
}

/* Fix solution tabs layout: the tab content must not inherit the old 4-card case grid. */
.solutions-list-tab .tab_content.case-list {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 0;
  grid-template-columns: none;
}

.solutions-list-tab .tabs_item.case-item {
  width: 100%;
  min-width: 0;
}

.solutions-list-tab .tabs_item.case-item.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.solutions-list-tab .tab-solution-content {
  min-width: 0;
}

.solutions-list-tab .tab-solution-content h3,
.solutions-list-tab .tab-solution-content p,
.solutions-list-tab .tab-list li {
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

@media (max-width: 1060px) {
  .solutions-list-tab .tabs_item.case-item.is-active {
    grid-template-columns: 1fr;
  }
}

/* Final polish: clearer section reveal, unified Techvia controls, and product filtering. */
.section .reveal,
.case-band .reveal,
.contact-section .reveal {
  opacity: 1;
  transform: none;
}

.section .reveal.is-visible,
.case-band .reveal.is-visible,
.contact-section .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.section-title h6,
.about-content h6,
.overview-content h6,
.service-promise h6,
.tab-solution-content span,
.product-group > span,
.hire-content .eyebrow {
  color: #ff9800;
  letter-spacing: 0;
}

.about-capabilities article,
.single-services-item,
.featured-platform,
.product-group,
.service-guarantees article,
.solution-points article,
.process-list li,
.process-guarantees article {
  border-radius: 3px;
  box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
}

.product-tabs button {
  display: flex;
  min-width: 150px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: #0b0b31;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 7px 25px rgba(123, 104, 238, 0.14);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.product-tabs button:hover,
.product-tabs button.is-active {
  color: #ffffff;
  background: #3e57d0;
  box-shadow: 0 10px 26px rgba(62, 87, 208, 0.24);
  transform: translateY(-3px);
}

.product-tabs span {
  display: none;
}

[data-product-category] {
  transition: opacity 0.24s ease, transform 0.24s ease;
}

[data-product-category].is-hidden {
  display: none !important;
}

.featured-platform:not(.is-hidden),
.product-group:not(.is-hidden) {
  animation: productFilterIn 0.26s ease both;
}

@keyframes productFilterIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (max-width: 680px) {
  .product-tabs button {
    min-width: calc(50vw - 28px);
    min-height: 50px;
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* Service section final layout: balanced module instead of left-card/right-stack split. */
.service-section .container {
  width: min(100% - 40px, 1140px);
}

.service-section .service-intro {
  max-width: 860px;
  margin-bottom: 54px;
}

.service-section .service-layout {
  display: block;
  max-width: none;
}

.service-section .service-promise {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: auto;
  margin-bottom: 30px;
  padding: 42px 46px;
  border-top: 3px solid #7b68ee;
  background:
    radial-gradient(circle at 88% 22%, rgba(123, 104, 238, 0.1), transparent 26%),
    #ffffff !important;
  text-align: left;
}

.service-section .service-promise h6 {
  margin: 0;
  align-self: start;
}

.service-section .service-promise h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.8vw, 38px);
}

.service-section .service-promise p {
  grid-column: 2;
  max-width: 720px;
  margin: 0;
}

.service-section .service-grid-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: none;
  margin: 0;
}

.service-section .service-row {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px 30px;
  border-top: 3px solid #7b68ee;
}

.service-section .services-icon {
  min-height: 58px;
  margin-bottom: 24px;
}

.service-section .service-row h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.service-section .service-row p {
  margin: 0;
}

.service-section .service-guarantees {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.service-section .service-guarantees article {
  min-height: 132px;
  padding: 25px 24px;
  border-top: 3px solid #7b68ee;
  border-left: 0;
}

.service-section .service-guarantees strong {
  margin-bottom: 9px;
  color: #0b0b31;
  font-size: 20px;
}

.service-section .service-guarantees span {
  color: #5f5f5f;
  line-height: 1.7;
}

@media (max-width: 1060px) {
  .service-section .service-promise {
    grid-template-columns: 1fr;
  }

  .service-section .service-promise p {
    grid-column: auto;
  }

  .service-section .service-grid-list,
  .service-section .service-guarantees {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .service-section .container {
    width: min(100% - 32px, 1140px);
  }

  .service-section .service-promise {
    padding: 30px 24px;
  }

  .service-section .service-grid-list,
  .service-section .service-guarantees {
    grid-template-columns: 1fr;
  }

  .service-section .service-row {
    min-height: auto;
  }
}

/* Product section final layout: unified website-style product panel. */
.systems-section .container {
  width: min(100% - 40px, 1140px);
}

.systems-section .products-heading {
  max-width: 920px;
  margin-bottom: 48px;
}

.systems-section .featured-product-callout {
  position: relative;
  isolation: isolate;
  display: grid;
  max-width: 1040px;
  margin: -18px auto 34px;
  padding: 24px 28px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(8, 126, 164, 0.18);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(227, 246, 250, 0.92), rgba(255, 255, 255, 0.96) 58%),
    #ffffff;
  box-shadow: 0 14px 34px rgba(7, 27, 45, 0.09);
}

.systems-section .featured-product-callout::after {
  position: absolute;
  top: -44px;
  right: -54px;
  z-index: -1;
  width: 176px;
  height: 176px;
  border: 1px solid rgba(8, 126, 164, 0.16);
  border-radius: 50%;
  background: rgba(255, 177, 59, 0.12);
  content: "";
}

.systems-section .featured-product-copy {
  min-width: 0;
}

.systems-section .featured-product-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #087ea4;
  font-size: 13px;
  font-weight: 900;
}

.systems-section .featured-product-copy h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.25;
}

.systems-section .featured-product-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

.systems-section .featured-product-metrics {
  display: flex;
  flex-wrap: wrap;
  max-width: 290px;
  gap: 8px;
  justify-content: flex-end;
}

.systems-section .featured-product-metrics span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(8, 126, 164, 0.18);
  border-radius: 6px;
  color: #12324c;
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.systems-section .featured-product-callout .link-button {
  align-self: center;
  white-space: nowrap;
}

.systems-section .product-tabs {
  margin-bottom: 38px;
}

.systems-section .products-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: stretch;
  max-width: none;
  margin: 0;
  padding: 42px;
  border-radius: 3px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 5px 7px 24px 2px rgba(82, 90, 101, 0.1);
}

.systems-section .product-hero-card {
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #ffffff !important;
}

.systems-section .product-hero-card img {
  width: min(100%, 410px);
  max-height: 360px;
  object-fit: contain;
}

.systems-section .product-hero-card .feature-tags {
  right: 34px;
  bottom: 30px;
  justify-content: center;
}

.systems-section .featured-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-content: center;
}

.systems-section .featured-platform {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 30px;
  border-top: 3px solid #7b68ee;
}

.systems-section .featured-platform strong {
  max-width: 100%;
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.32;
}

.systems-section .featured-platform p {
  margin-bottom: 20px;
}

.systems-section .featured-platform .link-button {
  grid-column: auto;
  grid-row: auto;
  margin-top: auto;
}

.systems-section .product-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: none;
  margin: 30px 0 0;
}

.systems-section .product-group {
  min-height: 248px;
  padding: 28px 26px;
  border-top: 3px solid #7b68ee;
}

.systems-section .product-group > span {
  margin-bottom: 18px;
  color: #ff9800;
}

.systems-section .product-group article {
  padding: 12px 0;
  border-top: 1px solid #edf0f7;
}

.systems-section .product-group article:first-of-type {
  border-top: 0;
}

.systems-section [data-product-category].is-hidden {
  display: none !important;
}

.systems-section .featured-platform:not(.is-hidden),
.systems-section .product-group:not(.is-hidden) {
  animation: productFilterIn 0.24s ease both;
}

@media (max-width: 1060px) {
  .systems-section .featured-product-callout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .systems-section .featured-product-metrics {
    max-width: none;
    justify-content: flex-start;
  }

  .systems-section .products-feature {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .systems-section .featured-platforms,
  .systems-section .product-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .systems-section .container {
    width: min(100% - 32px, 1140px);
  }

  .systems-section .featured-product-callout {
    margin: -16px auto 28px;
    padding: 22px 20px;
  }

  .systems-section .featured-product-copy h3 {
    font-size: 22px;
  }

  .systems-section .featured-product-metrics span {
    white-space: normal;
  }

  .systems-section .products-feature {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .systems-section .product-hero-card {
    min-height: auto;
    padding: 0 0 12px;
  }

  .systems-section .featured-platforms,
  .systems-section .product-matrix {
    grid-template-columns: 1fr;
  }

  .systems-section .featured-platform,
  .systems-section .product-group {
    min-height: auto;
  }
}

/* Product section without decorative image: make product cards the content focus. */
.systems-section .products-feature {
  display: block;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.systems-section .product-hero-card {
  display: none;
}

.systems-section .featured-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-content: stretch;
}

.systems-section .featured-platform {
  min-height: 240px;
}

.systems-section .product-matrix {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

@media (max-width: 1060px) {
  .systems-section .featured-platforms,
  .systems-section .product-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .systems-section .featured-platforms,
  .systems-section .product-matrix {
    grid-template-columns: 1fr;
  }
}

/* Product section rebuild: one centered, consistent product card grid. */
.systems-section .products-feature {
  display: block !important;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.systems-section .product-category-summary {
  display: grid;
  max-width: 920px;
  margin: 0 auto 26px;
  padding: 24px 30px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-left: 4px solid #7b68ee;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 5px 7px 18px rgba(82, 90, 101, 0.1);
}

.systems-section .product-category-summary span {
  color: #ff9800;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.systems-section .product-category-summary strong {
  color: #0b0b31;
  font-size: 18px;
  line-height: 1.6;
}

.systems-section .product-card-grid,
.systems-section .featured-platforms.product-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}

.systems-section .product-card,
.systems-section .featured-platform.product-card {
  display: flex !important;
  min-height: 265px !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px 28px !important;
  border: 0;
  border-top: 3px solid #7b68ee;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 5px 7px 18px rgba(82, 90, 101, 0.12);
}

.systems-section .product-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #ff9800;
  font-size: 15px;
  font-weight: 900;
}

.systems-section .product-card strong {
  margin-bottom: 14px;
  color: #0b0b31;
  font-size: 22px;
  line-height: 1.34;
}

.systems-section .product-card p {
  margin: 0 0 22px;
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.8;
}

.systems-section .product-card .link-button {
  margin-top: auto;
}

.systems-section .product-matrix,
.systems-section .product-group {
  display: none;
}

@media (max-width: 1060px) {
  .systems-section .product-card-grid,
  .systems-section .featured-platforms.product-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .systems-section .product-category-summary {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .systems-section .product-card-grid,
  .systems-section .featured-platforms.product-card-grid {
    grid-template-columns: 1fr !important;
  }

  .systems-section .product-card,
  .systems-section .featured-platform.product-card {
    min-height: auto !important;
  }
}

/* Product filter must win over product-card display rules. */
.systems-section .product-card-grid > .product-card.is-hidden,
.systems-section .product-card-grid > .featured-platform.is-hidden,
.systems-section [data-product-category].is-hidden {
  display: none !important;
}

/* Product matrix final scope: exactly three focused cards per category. */
.systems-section .product-card-grid,
.systems-section .featured-platforms.product-card-grid {
  max-width: 1040px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch;
  justify-content: center;
}

.systems-section .product-card,
.systems-section .featured-platform.product-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 285px !important;
  border: 1px solid rgba(14, 24, 52, 0.07);
  border-top: 3px solid #1f7ad6;
  background:
    linear-gradient(135deg, rgba(31, 122, 214, 0.07), rgba(255, 255, 255, 0) 46%),
    #ffffff;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.systems-section .product-card::before {
  position: absolute;
  inset: auto -18% -42% 44%;
  z-index: -1;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 152, 0, 0.11);
  content: "";
  transform: scale(0.76);
  transition: transform 0.34s ease, opacity 0.34s ease;
}

.systems-section .product-card::after {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: -1;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(31, 122, 214, 0.18);
  background:
    linear-gradient(135deg, rgba(31, 122, 214, 0.12), rgba(255, 255, 255, 0.78));
  content: "";
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: 0.42;
  transition: transform 0.34s ease, background 0.34s ease;
}

.systems-section .product-card:hover {
  border-color: rgba(31, 122, 214, 0.28);
  box-shadow: 0 18px 36px rgba(15, 29, 66, 0.14);
  transform: translateY(-8px);
}

.systems-section .product-card:hover::before {
  transform: scale(1);
}

.systems-section .product-card:hover::after {
  background:
    linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 255, 255, 0.82));
  transform: rotate(45deg);
}

.systems-section .product-card strong {
  min-height: 58px;
  padding-right: 0;
}

.systems-section .product-card p {
  min-height: 76px;
}

.systems-section .product-category-summary {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  border-left-color: #1f7ad6;
  background:
    linear-gradient(90deg, rgba(31, 122, 214, 0.08), rgba(255, 255, 255, 0) 46%),
    #ffffff;
}

.systems-section .product-category-summary::after {
  position: absolute;
  top: -44px;
  right: -30px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(31, 122, 214, 0.07);
  border-radius: 50%;
  content: "";
}

.systems-section [data-product-category="hidden"] {
  display: none !important;
}

.systems-section .product-card-grid > .product-card.is-hidden,
.systems-section .product-card-grid > .featured-platform.is-hidden,
.systems-section [data-product-category].is-hidden {
  display: none !important;
}

@media (max-width: 1060px) {
  .systems-section .product-card-grid,
  .systems-section .featured-platforms.product-card-grid {
    max-width: 720px;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .systems-section .product-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .systems-section .product-tabs button {
    min-width: 0;
    width: 100%;
  }

  .systems-section .product-card-grid,
  .systems-section .featured-platforms.product-card-grid {
    max-width: 100%;
    grid-template-columns: 1fr !important;
  }

  .systems-section .product-card strong,
  .systems-section .product-card p {
    min-height: 0;
  }
}

/* Refined tab buttons: restrained official-site style, no purple-on-purple blocks. */
.solutions-list-tab .tabs,
.product-tabs {
  gap: 14px !important;
}

.solutions-list-tab .tabs li a,
.solutions-list-tab .tabs li button,
.product-tabs button {
  position: relative;
  min-width: 132px;
  min-height: 50px;
  padding: 12px 24px;
  overflow: hidden;
  color: #111633;
  border: 1px solid rgba(17, 22, 51, 0.08);
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(25, 30, 72, 0.07);
  font-weight: 900;
  transform: none;
}

.solutions-list-tab .tabs li a::before,
.solutions-list-tab .tabs li button::before,
.product-tabs button::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: transparent;
}

.solutions-list-tab .tabs li a span,
.solutions-list-tab .tabs li button span {
  position: relative;
  display: inline;
  min-height: 0;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.solutions-list-tab .tabs li.current a,
.solutions-list-tab .tabs li.current button,
.solutions-list-tab .tabs li:hover a,
.solutions-list-tab .tabs li:hover button,
.product-tabs button:hover,
.product-tabs button.is-active {
  color: #111633;
  border-color: rgba(123, 104, 238, 0.3);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(25, 30, 72, 0.1);
  transform: translateY(-2px);
}

.solutions-list-tab .tabs li.current a::before,
.solutions-list-tab .tabs li.current button::before,
.solutions-list-tab .tabs li:hover a::before,
.solutions-list-tab .tabs li:hover button::before,
.product-tabs button:hover::before,
.product-tabs button.is-active::before {
  background: #7b68ee;
}

@media (max-width: 680px) {
  .solutions-list-tab .tabs li a,
  .solutions-list-tab .tabs li button,
  .product-tabs button {
    min-width: calc(50vw - 28px);
    min-height: 46px;
    padding: 10px 14px;
  }
}

/* Fix solution hover blanking and add project-style motion inspired by reference 23048. */
.case-band .tabs_item.case-item,
.case-band .tabs_item.case-item.is-active,
.case-band .tabs_item.case-item.is-active:hover {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content {
  position: relative;
  z-index: 2;
  min-height: 360px;
  padding: 34px 34px 34px 0;
  color: #ffffff !important;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content h3,
.case-band .tabs_item.case-item.is-active .tab-solution-content p,
.case-band .tabs_item.case-item.is-active .tab-list li {
  color: #ffffff !important;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content p,
.case-band .tabs_item.case-item.is-active .tab-list li {
  opacity: 0.86;
}

.case-band .tabs_item.case-item.is-active .tab-image {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.case-band .tabs_item.case-item.is-active .tab-image::after,
.product-card::after,
.service-row::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.42) 48%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-130%);
}

.case-band .tabs_item.case-item.is-active:hover .tab-image::after,
.product-card:hover::after,
.service-row:hover::after {
  opacity: 1;
  animation: image-overlay-sweep 0.85s ease;
}

.case-band .tabs_item.case-item.is-active .tab-image img {
  transition: transform 0.55s ease, filter 0.55s ease;
}

.case-band .tabs_item.case-item.is-active:hover .tab-image img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.product-card,
.service-row,
.business-entry {
  position: relative;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.product-card:hover,
.service-row:hover,
.business-entry:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(25, 30, 72, 0.14);
}

.process-section .process-list li {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.process-section .process-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(25, 30, 72, 0.12);
}

@keyframes image-overlay-sweep {
  from {
    transform: translateX(-130%);
  }

  to {
    transform: translateX(130%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-band .tabs_item.case-item.is-active:hover .tab-image::after,
  .product-card:hover::after,
  .service-row:hover::after {
    animation: none;
  }
}

/* Project-style animated overlays based on reference 23048 project area. */
.case-band .tabs_item.case-item.is-active .tab-image {
  isolation: isolate;
}

.case-band .tabs_item.case-item.is-active .tab-image::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  border-radius: 3px;
  background: rgba(21, 25, 70, 0.5);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.case-band .tabs_item.case-item.is-active:hover .tab-image::before {
  opacity: 1;
  transform: scale(1);
}

.case-band .tabs_item.case-item.is-active .tab-image::after {
  z-index: 3;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 40px;
  content: "";
  pointer-events: none;
  border-radius: 0 20px 0 20px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: none;
  transition: none;
}

.case-band .tabs_item.case-item.is-active:hover .tab-solution-content::after {
  opacity: 1;
  transform: none;
}

.case-band .tabs_item.case-item.is-active .link-button,
.product-card .link-button,
.service-row .services-btn-link {
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

.case-band .tabs_item.case-item.is-active:hover .link-button,
.product-card:hover .link-button,
.service-row:hover .services-btn-link {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(123, 104, 238, 0.16);
}

.case-band .tabs_item.case-item.is-active .link-button {
  position: relative;
  z-index: 3;
  color: #ffb13b !important;
}

.case-band .tabs_item.case-item.is-active .link-button:hover,
.case-band .tabs_item.case-item.is-active:hover .link-button:hover {
  color: #ffffff !important;
  border-color: #7b68ee !important;
  background: #7b68ee !important;
}

.systems-section .product-card .link-button {
  position: relative;
  z-index: 3;
  color: #ff9800 !important;
  background: #ffffff !important;
}

.systems-section .product-card .link-button:hover,
.systems-section .product-card:hover .link-button:hover {
  color: #ffffff !important;
  border-color: #7b68ee !important;
  background: #7b68ee !important;
}

.product-card > span,
.service-row .services-icon,
.business-entry .services-icon {
  transition: transform 0.35s ease, color 0.35s ease;
}

.product-card:hover > span,
.service-row:hover .services-icon,
.business-entry:hover .services-icon {
  transform: translateY(-4px);
}

.product-card strong,
.service-row h3,
.business-entry h3 {
  transition: color 0.3s ease, transform 0.3s ease;
}

.product-card:hover strong,
.service-row:hover h3,
.business-entry:hover h3 {
  color: #3e57d0;
  transform: translateX(4px);
}

.service-row:hover .line-icon,
.business-entry:hover .line-icon {
  background: rgba(123, 104, 238, 0.16);
  box-shadow: inset 0 0 0 1px rgba(123, 104, 238, 0.28);
}

.case-band .tabs_item.case-item.is-active {
  animation: projectReveal 0.48s ease both;
}

.product-card:not(.is-hidden),
.service-row,
.business-entry,
.process-section .process-list li {
  animation: projectReveal 0.5s ease both;
}

.product-card:nth-child(2),
.service-row:nth-child(2),
.business-entry:nth-child(2),
.process-section .process-list li:nth-child(2) {
  animation-delay: 0.04s;
}

.product-card:nth-child(3),
.service-row:nth-child(3),
.business-entry:nth-child(3),
.process-section .process-list li:nth-child(3) {
  animation-delay: 0.08s;
}

.product-card:nth-child(4),
.service-row:nth-child(4),
.process-section .process-list li:nth-child(4) {
  animation-delay: 0.12s;
}

.product-card:nth-child(5),
.service-row:nth-child(5),
.process-section .process-list li:nth-child(5) {
  animation-delay: 0.16s;
}

@keyframes projectReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .case-band .tabs_item.case-item.is-active,
  .product-card:not(.is-hidden),
  .service-row,
  .business-entry,
  .process-section .process-list li {
    animation: none;
  }

  .case-band .tabs_item.case-item.is-active .tab-image::before,
  .case-band .tabs_item.case-item.is-active .tab-solution-content::after {
    transition: none;
  }
}

/* Diverse subpage layout pass inspired by reference 23048. */
.about-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 152, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%) !important;
}

.about-section .about-hero {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
}

.about-section .about-profile {
  order: -1;
}

.about-section .about-content {
  padding: 34px 0 34px 18px;
}

.about-section .about-capabilities {
  margin-top: 54px;
}

.about-section .about-capabilities article {
  border-top: 0;
  border-left: 3px solid #7b68ee;
  box-shadow: none;
  background: transparent;
}

.business-section.services-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(123, 104, 238, 0.28), transparent 26%),
    linear-gradient(135deg, #101342 0%, #20245f 54%, #332f80 100%) !important;
}

.business-section .section-title h6,
.business-section .section-title h2,
.business-section .section-title p {
  color: #ffffff;
}

.business-section .section-title h6 {
  color: #ffb13b;
}

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

.business-section .business-entry {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 300px;
  padding: 34px 34px 32px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.business-section .business-entry .services-icon {
  min-height: 58px;
  margin-bottom: 28px;
}

.business-section .business-entry h3 {
  min-height: 34px;
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.35;
}

.business-section .business-entry h3,
.business-section .business-entry p {
  color: #ffffff;
}

.business-section .business-entry p {
  max-width: 28em;
  margin: 0;
  opacity: 0.78;
  line-height: 1.85;
}

.business-section .business-entry .services-btn-link {
  align-self: end;
  margin-top: 30px;
  padding-top: 2px;
}

.business-section .business-entry a {
  color: #ffb13b !important;
  border-color: #ffb13b !important;
}

.business-section .business-entry a:hover,
.business-section .business-entry:hover a:hover {
  color: #ffd37a !important;
  border-color: #ffd37a !important;
  background: transparent !important;
}

.business-section .services-icon .line-icon {
  background: rgba(255, 255, 255, 0.12);
}

.business-section .icon-system::before {
  left: 17px;
  top: 17px;
}

.business-section .icon-system::after {
  left: 23px;
  top: 23px;
}

.business-section .icon-ops::before {
  left: 16px;
  top: 24px;
}

.business-section .icon-ops::after {
  left: 21px;
  top: 15px;
}

.business-section .icon-solution::before {
  left: 17px;
  top: 15px;
  width: 24px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='28' viewBox='0 0 24 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 26C12 26 21 16.92 21 10.75C21 5.92 16.97 2 12 2C7.03 2 3 5.92 3 10.75C3 16.92 12 26 12 26Z' stroke='%23ff9800' stroke-width='2.4' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10.75' r='3.45' stroke='%23ff9800' stroke-width='2.4'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 28px;
  transform: none;
}

.business-section .icon-solution::after {
  display: none;
}

.case-band.tab-section {
  background: #ffffff !important;
}

.case-band .tab_content.case-list {
  padding: 38px;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(16, 19, 66, 0.96), rgba(48, 47, 128, 0.94));
}

.case-band .tabs_item.case-item.is-active {
  color: #ffffff;
}

.case-band .tab-solution-content h3,
.case-band .tab-solution-content p,
.case-band .tab-list li {
  color: #ffffff;
}

.case-band .tab-solution-content p,
.case-band .tab-list li {
  opacity: 0.82;
}

.case-band .tab-image img {
  min-height: 360px;
  border-radius: 3px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.systems-section {
  background:
    radial-gradient(circle at 50% 26%, rgba(123, 104, 238, 0.08), transparent 30%),
    #ffffff !important;
}

.service-section.services-section {
  background:
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%) !important;
}

.service-section .service-promise {
  border-left: 4px solid #7b68ee;
  border-top: 0;
}

.solution-section {
  color: #ffffff;
  background:
    linear-gradient(rgba(15, 18, 48, 0.88), rgba(15, 18, 48, 0.88)),
    url("image/reference-choose-2.jpg") center/cover no-repeat !important;
}

.solution-section .solution-panel {
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  background: transparent !important;
  box-shadow: none;
  text-align: center;
}

.solution-section .solution-panel h2,
.solution-section .solution-panel p,
.solution-section .solution-panel .eyebrow {
  color: #ffffff;
}

.solution-section .solution-points article {
  color: #ffffff;
  border-left-color: #ff9800;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.solution-section .solution-points strong,
.solution-section .solution-points p {
  color: #ffffff;
}

.solution-section .solution-points p {
  opacity: 0.78;
}

.process-section {
  background: #ffffff !important;
}

.process-section .process-layout {
  grid-template-columns: 1fr;
}

.process-section .process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.process-section .process-list li {
  position: relative;
  display: block;
  min-height: 245px;
  padding: 30px 22px;
  border-left: 0;
  border-top: 3px solid #7b68ee;
  box-shadow: none;
}

.process-section .process-list li span {
  margin-bottom: 22px;
}

.process-section .process-list li p {
  margin-top: 12px;
}

.process-section .process-guarantees {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

@media (max-width: 1060px) {
  .about-section .about-hero,
  .case-band .tabs_item.case-item.is-active {
    grid-template-columns: 1fr;
  }

  .business-section .business-grid,
  .process-section .process-list,
  .process-section .process-guarantees {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .case-band .tab_content.case-list {
    padding: 24px;
  }

  .business-section .business-grid,
  .process-section .process-list,
  .process-section .process-guarantees {
    grid-template-columns: 1fr;
  }

  .about-section .about-content {
    padding-left: 0;
  }
}

/* Subpage refinement pass: stronger official-site variety and project-style motion. */
.case-band.tab-section {
  position: relative;
  overflow: hidden;
}

.case-band.tab-section::before {
  position: absolute;
  top: 190px;
  left: max(24px, calc((100% - 1140px) / 2));
  width: 96px;
  height: 96px;
  border: 20px solid rgba(31, 122, 214, 0.06);
  border-radius: 50%;
  content: "";
}

.case-band .tab_content.case-list {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 4px;
  background: #151943;
  box-shadow: 0 24px 52px rgba(18, 24, 70, 0.18);
}

.case-band .tab_content.case-list::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 25, 67, 0.98) 0 52%, rgba(21, 25, 67, 0.72) 100%),
    radial-gradient(circle at 84% 22%, rgba(255, 152, 0, 0.2), transparent 26%);
  content: "";
}

.case-band .tabs_item.case-item.is-active {
  position: relative;
  z-index: 1;
  display: grid !important;
  min-height: 430px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 0;
  align-items: stretch;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content {
  min-height: auto;
  padding: 58px 54px;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ffb13b;
  font-weight: 900;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content h3 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 38px;
  line-height: 1.28;
}

.case-band .tabs_item.case-item.is-active .tab-list {
  margin: 26px 0 32px;
}

.case-band .tabs_item.case-item.is-active .tab-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
}

.case-band .tabs_item.case-item.is-active .tab-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #7b68ee, #3d8df2);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.16);
  content: "";
}

.case-band .tabs_item.case-item.is-active .tab-image {
  min-height: 430px;
  border-radius: 0;
}

.case-band .tabs_item.case-item.is-active .tab-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.case-band .tabs_item.case-item.is-active .tab-image::before {
  background:
    linear-gradient(180deg, rgba(15, 18, 48, 0.08), rgba(15, 18, 48, 0.54));
}

.case-band .tabs_item.case-item.is-active .tab-image::after {
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.38) 48%, transparent 60% 100%);
}

.service-section.services-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 52%, #f4f7fc 100%) !important;
}

.service-section.services-section::before {
  position: absolute;
  top: 110px;
  right: -90px;
  width: 280px;
  height: 280px;
  border: 48px solid rgba(31, 122, 214, 0.055);
  border-radius: 50%;
  content: "";
}

.service-section .service-layout {
  align-items: stretch;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
}

.service-section .service-promise {
  position: sticky;
  top: 110px;
  min-height: 470px;
  align-self: start;
  padding: 48px 40px;
  color: #ffffff;
  border: 0;
  background:
    linear-gradient(rgba(18, 23, 68, 0.82), rgba(18, 23, 68, 0.82)),
    url("image/reference-industry-tab-solution-5.jpg") center/cover no-repeat !important;
  box-shadow: 0 22px 46px rgba(18, 24, 70, 0.18);
}

.service-section .service-promise h6 {
  color: #ffb13b;
}

.service-section .service-promise h3,
.service-section .service-promise p {
  color: #ffffff;
}

.service-section .service-promise p {
  opacity: 0.82;
}

.service-section .service-promise::after {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  transform: rotate(45deg);
}

.service-section .service-grid-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-section .service-row {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(17, 22, 51, 0.07);
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(31, 122, 214, 0.06), rgba(255, 255, 255, 0) 46%),
    #ffffff;
}

.service-section .service-row::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1f7ad6, #7b68ee, #ff9800);
  content: "";
  transform: scaleX(0.32);
  transform-origin: left center;
  transition: transform 0.36s ease;
}

.service-section .service-row:hover::before {
  transform: scaleX(1);
}

.service-section .icon-network::before {
  left: 18px;
  top: 18px;
}

.service-section .icon-network::after {
  left: 28px;
  top: 15px;
}

.service-section .icon-desktop::before,
.service-section .icon-classroom::before {
  left: 15px;
  top: 17px;
}

.service-section .icon-desktop::after,
.service-section .icon-classroom::after {
  left: 23px;
  top: 39px;
}

.service-section .icon-library::before {
  left: 17px;
  top: 18px;
}

.service-section .icon-library::after {
  left: 15px;
  top: 40px;
}

.service-section .icon-server::before {
  left: 16px;
  top: 16px;
}

.service-section .icon-server::after {
  right: 20px;
  top: 22px;
}

.service-section .icon-software::before {
  left: 16px;
  top: 17px;
}

.service-section .icon-software::after {
  left: 21px;
  top: 23px;
}

.service-section .service-guarantees {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(17, 22, 51, 0.06);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 24, 52, 0.08);
}

.service-section .service-guarantees article {
  border-left-color: #1f7ad6;
  background: #f8faff;
}

.solution-section {
  min-height: 560px;
}

.solution-section .solution-points {
  display: grid;
  max-width: 1040px;
  margin: 42px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.solution-section .solution-points article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 0;
  border-top: 3px solid #ff9800;
  transition: transform 0.32s ease, background 0.32s ease;
}

.solution-section .solution-points article::after {
  position: absolute;
  right: -28px;
  bottom: -48px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  transition: transform 0.36s ease;
}

.solution-section .solution-points article:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-8px);
}

.solution-section .solution-points article:hover::after {
  transform: scale(1.18);
}

@media (max-width: 1060px) {
  .case-band .tabs_item.case-item.is-active,
  .service-section .service-layout {
    grid-template-columns: 1fr;
  }

  .service-section .service-promise {
    position: relative;
    top: auto;
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .case-band.tab-section::before,
  .service-section.services-section::before {
    display: none;
  }

  .case-band .tabs_item.case-item.is-active .tab-solution-content {
    padding: 34px 24px;
  }

  .case-band .tabs_item.case-item.is-active .tab-solution-content h3 {
    font-size: 28px;
  }

  .case-band .tabs_item.case-item.is-active .tab-image,
  .case-band .tabs_item.case-item.is-active .tab-image img {
    min-height: 260px;
  }

  .service-section .service-promise {
    padding: 34px 26px;
  }

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

.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%) !important;
}

.process-section::before {
  position: absolute;
  top: 250px;
  right: max(24px, calc((100% - 1140px) / 2));
  left: max(24px, calc((100% - 1140px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 122, 214, 0.26), transparent);
  content: "";
}

.process-section .process-heading {
  max-width: 820px;
}

.process-section .process-list {
  position: relative;
  gap: 18px;
  counter-reset: process-step;
}

.process-section .process-list li {
  isolation: isolate;
  overflow: hidden;
  min-height: 270px;
  padding: 34px 24px 30px;
  border: 1px solid rgba(17, 22, 51, 0.07);
  border-top: 3px solid #1f7ad6;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 12px 30px rgba(16, 24, 52, 0.07);
}

.process-section .process-list li::before {
  position: absolute;
  right: -24px;
  bottom: -38px;
  z-index: -1;
  color: rgba(31, 122, 214, 0.06);
  content: attr(value);
  font-size: 118px;
  font-weight: 900;
  line-height: 1;
}

.process-section .process-list li::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #ff9800;
  content: "";
  transition: width 0.34s ease;
}

.process-section .process-list li:hover::after {
  width: 100%;
}

.process-section .process-list li span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f7ad6, #7b68ee);
  box-shadow: 0 12px 22px rgba(31, 122, 214, 0.22);
}

.process-section .process-list li strong {
  display: block;
  color: #0b0b31;
  font-size: 20px;
  line-height: 1.42;
}

.process-section .process-guarantees {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 51, 0.07);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 24, 52, 0.08);
}

.process-section .process-guarantees article {
  min-height: 168px;
  padding: 30px 28px;
  border-right: 1px solid rgba(17, 22, 51, 0.07);
  background: transparent;
}

.process-section .process-guarantees article:last-child {
  border-right: 0;
}

.process-section .process-guarantees strong {
  color: #0b0b31;
}

.contact-section.hire-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    linear-gradient(100deg, rgba(15, 18, 48, 0.94), rgba(43, 43, 118, 0.9)),
    url("image/reference-industry-tab-solution-5.jpg") center/cover no-repeat !important;
}

.contact-section.hire-section::before {
  position: absolute;
  top: -80px;
  right: 9%;
  width: 240px;
  height: 240px;
  border: 42px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.contact-section .contact-inner {
  display: grid;
  max-width: 1140px;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
  padding: 0;
  text-align: left;
  background: transparent;
  box-shadow: none;
}

.contact-section .contact-inner > .eyebrow,
.contact-section .contact-inner > h2,
.contact-section .contact-inner > p {
  grid-column: 1;
}

.contact-section .contact-inner h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.25;
}

.contact-section .contact-inner > p:not(.eyebrow) {
  max-width: 520px;
  opacity: 0.82;
}

.contact-section .contact-box {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-section .contact-box p {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 24px 26px 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 3px solid #ff9800;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: transform 0.32s ease, background 0.32s ease;
}

.contact-section .contact-box p::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.2) 48%, transparent 62% 100%);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
}

.contact-section .contact-box p:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(8px);
}

.contact-section .contact-box p:hover::after {
  opacity: 1;
  animation: image-overlay-sweep 0.85s ease;
}

.contact-section .contact-box span {
  display: block;
  margin-bottom: 8px;
  color: #ffb13b;
  font-weight: 900;
}

@media (max-width: 1060px) {
  .process-section::before {
    display: none;
  }

  .process-section .process-guarantees article:nth-child(2n) {
    border-right: 0;
  }

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

  .contact-section .contact-inner > .eyebrow,
  .contact-section .contact-inner > h2,
  .contact-section .contact-inner > p,
  .contact-section .contact-box {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .process-section .process-list li {
    min-height: auto;
  }

  .process-section .process-guarantees article {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 22, 51, 0.07);
  }

  .process-section .process-guarantees article:last-child {
    border-bottom: 0;
  }

  .contact-section.hire-section {
    padding: 76px 0;
  }

  .contact-section .contact-inner h2 {
    font-size: 30px;
  }
}

/* Final override for operations service layout: restore two-column official module. */
.service-section.services-section .service-layout {
  display: grid !important;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr) !important;
  gap: 30px !important;
  align-items: stretch !important;
}

.service-section.services-section .service-promise {
  display: flex !important;
  position: sticky;
  top: 110px;
  min-height: 100% !important;
  margin: 0 !important;
  flex-direction: column;
  justify-content: center;
  padding: 52px 42px !important;
  border: 0 !important;
  border-radius: 4px;
  color: #ffffff;
  background:
    linear-gradient(rgba(18, 23, 68, 0.82), rgba(18, 23, 68, 0.82)),
    url("image/reference-industry-tab-solution-5.jpg") center/cover no-repeat !important;
}

.service-section.services-section .service-promise h6,
.service-section.services-section .service-promise h3,
.service-section.services-section .service-promise p {
  grid-column: auto !important;
  color: #ffffff !important;
}

.service-section.services-section .service-promise h6 {
  margin-bottom: 20px;
  color: #ffb13b !important;
}

.service-section.services-section .service-promise p {
  max-width: none;
  opacity: 0.84;
}

.service-section.services-section .service-grid-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.service-section.services-section .service-guarantees {
  max-width: 1140px;
  margin: 34px auto 0;
}

@media (max-width: 1060px) {
  .service-section.services-section .service-layout {
    grid-template-columns: 1fr !important;
  }

  .service-section.services-section .service-promise {
    position: relative;
    top: auto;
    min-height: auto !important;
  }
}

@media (max-width: 680px) {
  .service-section.services-section .service-grid-list {
    grid-template-columns: 1fr !important;
  }
}

/* Education-focused image replacement crop tuning. */
.about-section .about-profile > img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 42% 50%;
}

.case-band .tabs_item:nth-child(2) .tab-image img {
  object-position: center center;
}

.case-band .tabs_item:nth-child(4) .tab-image img {
  object-position: 52% 48%;
}

/* Keep solution tab photos consistent even when source photos are portrait. */
.case-band .tabs_item.case-item.is-active {
  min-height: 430px !important;
  max-height: none !important;
  overflow: visible !important;
  align-items: stretch !important;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content {
  min-height: 430px !important;
  overflow: visible !important;
}

.case-band .tabs_item.case-item.is-active .tab-image {
  height: 430px !important;
  min-height: 0 !important;
  max-height: 430px;
}

.case-band .tabs_item.case-item.is-active .tab-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover !important;
}

.case-band .tabs_item:nth-child(2) .tab-image img {
  object-position: center center !important;
}

@media (max-width: 680px) {
  .case-band .tabs_item.case-item.is-active {
    min-height: auto !important;
    max-height: none;
  }

  .case-band .tabs_item.case-item.is-active .tab-solution-content {
    min-height: auto !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-image {
    height: 260px !important;
    max-height: 260px;
  }
}

.about-section .about-profile::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(15, 18, 48, 0.12) 100%);
  content: "";
}

.about-section .sub-content,
.about-section .profile-numbers {
  z-index: 2;
}

@media (max-width: 680px) {
  .about-section .about-profile > img {
    min-height: 320px;
    object-position: 38% 50%;
  }
}

/* Homepage solution tabs enterprise panel theme. */
.case-band .tab_content.case-list {
  overflow: hidden !important;
  border: 1px solid rgba(47, 125, 240, 0.14) !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, #f4f8fc 0%, #eaf1f8 100%) !important;
  box-shadow: 0 20px 46px rgba(23, 63, 112, 0.12) !important;
}

.case-band .tab_content.case-list::before {
  display: block !important;
  background:
    linear-gradient(90deg, rgba(244, 248, 252, 0.96) 0 46%, rgba(229, 238, 248, 0.84) 100%),
    linear-gradient(rgba(47, 125, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 125, 240, 0.045) 1px, transparent 1px) !important;
  background-size: auto, 42px 42px, 42px 42px !important;
}

.case-band .tabs_item.case-item.is-active {
  grid-template-columns: minmax(0, 0.46fr) minmax(420px, 0.54fr) !important;
  gap: 0 !important;
  min-height: 430px !important;
  align-items: stretch !important;
  overflow: hidden !important;
  border: 0 !important;
  border-top: 4px solid #2f7df0 !important;
  border-radius: 6px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content {
  position: relative;
  order: 1;
  min-height: 430px !important;
  padding: 56px 48px !important;
  border-left: 4px solid #2f7df0;
  background: rgba(255, 255, 255, 0.46) !important;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 18px !important;
  padding: 0 12px;
  border: 1px solid rgba(47, 125, 240, 0.18);
  border-radius: 4px;
  color: #2f7df0 !important;
  background: rgba(47, 125, 240, 0.08);
}

.case-band .tabs_item.case-item.is-active .tab-solution-content h3 {
  max-width: 500px;
  margin-bottom: 22px !important;
  color: #14213d !important;
  font-size: clamp(30px, 3.2vw, 40px) !important;
  line-height: 1.28 !important;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content p,
.case-band .tabs_item.case-item.is-active .tab-list li {
  color: #536579 !important;
}

.case-band .tabs_item.case-item.is-active .tab-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px !important;
}

.case-band .tabs_item.case-item.is-active .tab-list li {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  margin: 0 !important;
  padding: 0 0 0 30px !important;
  border-radius: 0;
  color: #536579 !important;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.65;
  text-align: left;
  box-shadow: none;
  background: transparent;
}

.case-band .tabs_item.case-item.is-active .tab-list li::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: block !important;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: linear-gradient(135deg, #2f7df0, #22b8cf) !important;
  box-shadow: 0 6px 14px rgba(47, 125, 240, 0.18);
  content: "";
}

.case-band .tabs_item.case-item.is-active .tab-image {
  position: relative;
  order: 2;
  height: 430px !important;
  max-height: 430px !important;
  padding: 18px 18px 18px 0 !important;
  background: transparent !important;
}

.case-band .tabs_item.case-item.is-active .tab-image::after {
  display: none !important;
}

.case-band .tabs_item.case-item.is-active .tab-image img {
  height: 100% !important;
  border: 1px solid rgba(47, 125, 240, 0.12) !important;
  border-radius: 6px !important;
  box-shadow: 0 18px 40px rgba(31, 70, 132, 0.14) !important;
}

.case-band .tabs_item.case-item.is-active .tab-image::before {
  position: absolute;
  z-index: 2;
  inset: 18px 18px 18px 0 !important;
  width: auto;
  height: auto;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(47, 125, 240, 0.12)) !important;
  box-shadow: none;
  transform: none;
  content: "";
}

.case-band .tabs_item.case-item.is-active .tab-solution-content::after {
  display: none !important;
}

.case-band .tabs_item.case-item.is-active .link-button {
  color: #ffffff !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, #2f7df0, #326fe9) !important;
  box-shadow: 0 14px 30px rgba(47, 125, 240, 0.22) !important;
}

.case-band .tabs_item.case-item.is-active .link-button:hover,
.case-band .tabs_item.case-item.is-active:hover .link-button:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #1f66d5, #2459ce) !important;
  box-shadow: 0 16px 34px rgba(47, 125, 240, 0.28) !important;
}

@media (max-width: 680px) {
  .case-band .tabs_item.case-item.is-active {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-solution-content {
    order: 1;
    min-height: auto !important;
    padding: 32px 24px !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-image {
    order: 2;
    height: 260px !important;
    max-height: 260px !important;
    padding: 0 18px 18px !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-image::before {
    inset: 0 18px 18px !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-list li {
    font-size: 15px;
  }
}

/* Homepage unified hero palette. */
body {
  --home-primary: #2f63f4;
  --home-violet: #6b5cf6;
  --home-cyan: #68d7ff;
  --home-cyan-text: #c8f1ff;
  --home-ink: #14213d;
  --home-muted: #536579;
  --home-soft: #eef4ff;
  --home-line: rgba(47, 99, 244, 0.14);
}

.site-header:not(.is-scrolled) .site-nav .nav-link::after {
  background: var(--home-cyan) !important;
}

.enterprise-hero {
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 22%, rgba(104, 215, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 68%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    linear-gradient(135deg, rgba(35, 84, 200, 0.96) 0%, rgba(47, 99, 244, 0.94) 42%, rgba(107, 92, 246, 0.96) 100%),
    linear-gradient(135deg, #2354c8, #6b5cf6) !important;
}

.enterprise-hero .hero-actions .btn-primary span {
  background-color: rgba(104, 215, 255, 0.18) !important;
}

.enterprise-hero .hero-actions .btn-primary:hover {
  color: var(--home-primary) !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow:
    0 16px 34px rgba(21, 46, 120, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
}

.hero-background::after {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at 18% 70%, rgba(104, 215, 255, 0.14), transparent 34%),
    linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 42% 42.15%, transparent 42.15% 100%) !important;
}

.plane-one {
  background:
    linear-gradient(112deg, transparent 0 12%, rgba(255, 255, 255, 0.14) 32%, rgba(104, 215, 255, 0.1) 54%, transparent 79%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 60%) !important;
}

.plane-three {
  background:
    linear-gradient(92deg, transparent 0%, rgba(255, 255, 255, 0.24) 34%, rgba(104, 215, 255, 0.16) 54%, transparent 78%) !important;
}

.business-section.services-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 93% 19%, rgba(255, 255, 255, 0.13) 0 16px, transparent 17px),
    radial-gradient(circle at 73% 63%, rgba(255, 255, 255, 0.09) 0 8px, transparent 9px),
    radial-gradient(circle at 18% 74%, rgba(104, 215, 255, 0.16) 0 38px, transparent 39px),
    radial-gradient(circle at 78% 18%, rgba(104, 215, 255, 0.2), transparent 26%),
    radial-gradient(circle at 16% 74%, rgba(107, 92, 246, 0.22), transparent 30%),
    linear-gradient(135deg, #162a73 0%, #2445b7 50%, #5b55d9 100%) !important;
}

.business-section.services-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 16% 72%, rgba(255, 255, 255, 0.14) 0 22px, transparent 23px),
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.13) 0 12px, transparent 13px),
    radial-gradient(circle at 86% 61%, rgba(104, 215, 255, 0.13) 0 8px, transparent 9px),
    radial-gradient(circle at 39% 78%, rgba(255, 255, 255, 0.08) 0 5px, transparent 6px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 76px 76px, 76px 76px;
  mask-image: radial-gradient(circle at 50% 54%, rgba(0, 0, 0, 0.88), transparent 70%);
  pointer-events: none;
  animation: homeBusinessBubbleDrift 12s ease-in-out infinite alternate;
  content: "";
}

.business-section.services-section::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 32% 67%, rgba(104, 215, 255, 0.16) 0 30px, transparent 31px),
    radial-gradient(circle at 94% 18%, rgba(255, 255, 255, 0.11) 0 13px, transparent 14px),
    radial-gradient(circle at 76% 80%, rgba(255, 255, 255, 0.08) 0 115px, transparent 116px),
    radial-gradient(circle at 77% 80%, transparent 0 86px, rgba(200, 241, 255, 0.07) 87px 112px, transparent 113px);
  pointer-events: none;
  animation: homeBusinessBubbleFloat 9s ease-in-out infinite alternate;
  content: "";
}

.business-section.services-section .container {
  position: relative;
  z-index: 1;
}

.business-section .business-grid {
  position: relative;
}

.business-section .business-grid::before {
  display: none;
}

.business-section .section-title h6,
.service-section .service-promise h6,
.systems-section .product-group > span,
.contact-section .contact-inner > .eyebrow {
  color: var(--home-cyan-text) !important;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content > span,
.systems-section .product-category-summary span {
  color: var(--home-primary) !important;
}

.business-section .business-entry {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.15) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07)) !important;
  box-shadow: 0 20px 44px rgba(10, 24, 92, 0.16) !important;
}

.business-section .business-entry::before {
  position: absolute;
  top: -78px;
  right: -78px;
  width: 176px;
  height: 176px;
  border: 24px solid rgba(104, 215, 255, 0.055);
  border-radius: 50%;
  background: transparent !important;
  pointer-events: none;
  content: "";
}

.business-section .business-entry::after {
  display: none !important;
}

.business-section .business-entry h3,
.business-section .business-entry p,
.business-section .business-entry .services-btn-link,
.business-section .business-entry .services-icon {
  position: relative;
  z-index: 1;
}

.business-section .business-entry a {
  color: var(--home-cyan-text) !important;
  border-color: transparent !important;
  border-bottom: 0 !important;
}

.business-section .business-entry a:hover,
.business-section .business-entry:hover a:hover {
  color: #ffffff !important;
  border-color: transparent !important;
  border-bottom: 0 !important;
  background: transparent !important;
}

.business-section .business-entry .services-btn-link,
.business-section .business-entry:hover .services-btn-link {
  opacity: 1 !important;
  transform: none !important;
  box-shadow: none !important;
}

.business-section .services-icon .line-icon,
.business-section .business-entry:hover .services-icon .line-icon {
  background: rgba(104, 215, 255, 0.14) !important;
}

.business-section .business-entry:hover .services-icon {
  background: transparent !important;
}

.solutions-list-tab .tabs li:hover a,
.solutions-list-tab .tabs li:hover button,
.solutions-list-tab .tabs li.current a,
.solutions-list-tab .tabs li.current button,
.product-tabs button:hover,
.product-tabs button.is-active {
  border-color: rgba(47, 99, 244, 0.28) !important;
  color: var(--home-ink) !important;
  background: #ffffff !important;
}

.solutions-list-tab .tabs li:hover a::before,
.solutions-list-tab .tabs li:hover button::before,
.solutions-list-tab .tabs li.current a::before,
.solutions-list-tab .tabs li.current button::before,
.product-tabs button:hover::before,
.product-tabs button.is-active::before {
  background: linear-gradient(180deg, var(--home-primary), var(--home-violet)) !important;
}

.case-band .tab_content.case-list {
  position: relative;
  border-color: var(--home-line) !important;
  background:
    radial-gradient(circle at 92% 86%, rgba(104, 215, 255, 0.18) 0 58px, transparent 60px),
    radial-gradient(circle at 18% 20%, rgba(47, 99, 244, 0.12) 0 44px, transparent 46px),
    linear-gradient(135deg, #f4f8ff 0%, #eaf1ff 100%) !important;
}

.case-band .tab_content.case-list::before {
  background:
    radial-gradient(circle at 93% 15%, rgba(255, 255, 255, 0.66) 0 13px, transparent 14px),
    radial-gradient(circle at 86% 78%, rgba(47, 99, 244, 0.11) 0 20px, transparent 21px),
    radial-gradient(circle at 67% 92%, rgba(107, 92, 246, 0.09) 0 36px, transparent 37px),
    linear-gradient(90deg, rgba(244, 248, 255, 0.95) 0 46%, rgba(232, 240, 255, 0.8) 100%),
    linear-gradient(rgba(47, 99, 244, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 99, 244, 0.045) 1px, transparent 1px) !important;
}

.case-band .tab_content.case-list::after {
  position: absolute;
  z-index: 0;
  right: -72px;
  bottom: -92px;
  width: 420px;
  height: 210px;
  border: 34px solid rgba(47, 99, 244, 0.055);
  border-top-left-radius: 420px;
  border-top-right-radius: 420px;
  border-bottom: 0;
  pointer-events: none;
  content: "";
}

.case-band .tabs_item.case-item.is-active {
  border-top-color: var(--home-primary) !important;
}

.case-band .tabs_item.case-item.is-active .tab-solution-content {
  z-index: 1;
  border-left-color: var(--home-primary) !important;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.74) 0 38px, transparent 39px),
    radial-gradient(circle at 86% 82%, rgba(104, 215, 255, 0.14) 0 72px, transparent 74px),
    rgba(255, 255, 255, 0.46) !important;
}

.case-band .tabs_item.case-item.is-active .tab-list li::before {
  background: linear-gradient(135deg, var(--home-primary), var(--home-cyan)) !important;
}

.case-band .tabs_item.case-item.is-active .link-button,
.systems-section .product-card .link-button {
  background: linear-gradient(135deg, var(--home-primary), var(--home-violet)) !important;
  box-shadow: 0 14px 30px rgba(47, 99, 244, 0.22) !important;
}

.case-band .tabs_item.case-item.is-active .link-button:hover,
.systems-section .product-card .link-button:hover,
.systems-section .product-card:hover .link-button:hover {
  border-color: transparent !important;
  background: linear-gradient(135deg, #2556db, #5548df) !important;
}

.case-band.tab-section::before {
  border-color: rgba(47, 99, 244, 0.055) !important;
}

.case-band.tab-section::after {
  position: absolute;
  top: 126px;
  right: max(28px, calc((100% - 1140px) / 2 - 62px));
  width: 148px;
  height: 148px;
  border: 28px solid rgba(104, 215, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

@keyframes homeBusinessBubbleDrift {
  from {
    transform: translate3d(-8px, 8px, 0);
  }

  to {
    transform: translate3d(12px, -10px, 0);
  }
}

@keyframes homeBusinessBubbleFloat {
  from {
    opacity: 0.78;
    transform: translate3d(0, 8px, 0) scale(1);
  }

  to {
    opacity: 1;
    transform: translate3d(-18px, -14px, 0) scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .business-section.services-section::before,
  .business-section.services-section::after {
    animation: none !important;
  }
}

@media (max-width: 680px) {
  .business-section .business-grid::before,
  .business-section.services-section::after {
    display: none;
  }
}

.systems-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(104, 215, 255, 0.12), transparent 24%),
    radial-gradient(circle at 14% 72%, rgba(107, 92, 246, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%) !important;
}

.systems-section .featured-product-callout {
  border-color: var(--home-line) !important;
  border-left-color: var(--home-primary) !important;
  background:
    linear-gradient(135deg, rgba(238, 244, 255, 0.96), rgba(255, 255, 255, 0.96) 58%),
    #ffffff !important;
}

.systems-section .featured-product-callout::after {
  border-color: rgba(47, 99, 244, 0.12) !important;
  background: rgba(104, 215, 255, 0.13) !important;
}

.systems-section .featured-product-label,
.systems-section .featured-product-metrics span {
  color: var(--home-primary) !important;
}

.systems-section .featured-product-metrics span {
  border-color: rgba(47, 99, 244, 0.16) !important;
  background: rgba(47, 99, 244, 0.06) !important;
}

.systems-section .product-category-summary {
  border-color: rgba(47, 99, 244, 0.12) !important;
  background:
    linear-gradient(135deg, rgba(238, 244, 255, 0.88), rgba(255, 255, 255, 0.96)),
    #ffffff !important;
}

.systems-section .product-card,
.systems-section .featured-platform.product-card {
  border-color: rgba(47, 99, 244, 0.11) !important;
  border-top-color: var(--home-primary) !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}

.systems-section .product-card::before {
  background: rgba(104, 215, 255, 0.11) !important;
}

.systems-section .product-card::after {
  background:
    linear-gradient(135deg, rgba(47, 99, 244, 0.15), rgba(255, 255, 255, 0.86)) !important;
}

.systems-section .product-card:hover::after {
  background:
    linear-gradient(135deg, rgba(104, 215, 255, 0.2), rgba(255, 255, 255, 0.84)) !important;
}

.systems-section .product-card > span {
  color: var(--home-primary) !important;
  background: rgba(47, 99, 244, 0.08) !important;
}

.systems-section .products-heading h6 {
  color: var(--home-primary) !important;
}

.systems-section .product-card .link-button {
  color: #ffffff !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--home-primary), var(--home-violet)) !important;
}

.service-section.services-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(104, 215, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 54%, #f4f8ff 100%) !important;
}

.service-section.services-section .service-promise {
  background:
    linear-gradient(135deg, rgba(22, 42, 115, 0.9), rgba(91, 85, 217, 0.86)),
    url("image/reference-industry-tab-solution-5.jpg") center/cover no-repeat !important;
}

.service-section .service-row {
  border-color: rgba(47, 99, 244, 0.1) !important;
  background:
    linear-gradient(135deg, rgba(47, 99, 244, 0.055), rgba(255, 255, 255, 0) 46%),
    #ffffff !important;
}

.service-section .service-row::before {
  background: linear-gradient(90deg, var(--home-primary), var(--home-violet), var(--home-cyan)) !important;
}

.service-section .service-guarantees article {
  border-left-color: var(--home-primary) !important;
  border-top-color: var(--home-violet) !important;
  background: #f8fbff !important;
}

.solution-section .solution-points article {
  border-top-color: var(--home-cyan) !important;
}

.process-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(104, 215, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%) !important;
}

.process-section::before {
  background: linear-gradient(90deg, transparent, rgba(47, 99, 244, 0.26), transparent) !important;
}

.process-section .process-list li {
  border-color: rgba(47, 99, 244, 0.1) !important;
  border-top-color: var(--home-primary) !important;
}

.process-section .process-list li::before {
  color: rgba(47, 99, 244, 0.06) !important;
}

.process-section .process-list li::after {
  background: linear-gradient(90deg, var(--home-primary), var(--home-cyan)) !important;
}

.process-section .process-list li span {
  background: linear-gradient(135deg, var(--home-primary), var(--home-violet)) !important;
  box-shadow: 0 12px 22px rgba(47, 99, 244, 0.22) !important;
}

.contact-section.hire-section {
  background:
    radial-gradient(circle at 18% 28%, rgba(104, 215, 255, 0.16), transparent 26%),
    linear-gradient(100deg, rgba(22, 42, 115, 0.95), rgba(91, 85, 217, 0.9)),
    url("image/reference-industry-tab-solution-5.jpg") center/cover no-repeat !important;
}

.contact-section .contact-box p {
  border-color: rgba(255, 255, 255, 0.14) !important;
  border-left-color: var(--home-cyan) !important;
  background: rgba(255, 255, 255, 0.09) !important;
}

.contact-section .contact-box p:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

.contact-section .contact-box span {
  color: var(--home-cyan) !important;
}

/* Company intro visual layout baseline. */
.about-section .about-profile.about-image {
  min-height: 470px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-section .about-profile::after {
  display: none;
}

.about-section .about-profile.about-image::before {
  display: none !important;
}

/* Homepage company intro capability network. */
.about-section .campus-service-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background:
    radial-gradient(circle at 82% 74%, rgba(104, 215, 255, 0.2), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(47, 99, 244, 0.94) 0%, rgba(65, 122, 245, 0.9) 54%, rgba(104, 155, 255, 0.84) 100%) !important;
  box-shadow: 0 18px 42px rgba(20, 64, 180, 0.18);
}

.about-section .campus-service-panel::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  border-color: rgba(255, 255, 255, 0.22) !important;
  content: "";
}

.about-section .campus-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) !important;
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 92%);
  opacity: 0.72 !important;
  animation: campusGridDrift 14s linear infinite;
}

.about-section .campus-scanline {
  position: absolute;
  top: -42%;
  right: 22px;
  left: 22px;
  z-index: 1;
  height: 42%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.03) 28%, rgba(104, 215, 255, 0.2) 58%, rgba(255, 255, 255, 0.12) 62%, transparent 100%),
    linear-gradient(90deg, transparent, rgba(200, 241, 255, 0.18), transparent);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  animation: campusScanSweep 7.2s ease-in-out infinite;
}

.about-section .campus-capability-network {
  position: absolute;
  inset: 44px 38px;
}

.about-section .campus-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 236px;
  height: 236px;
  margin: -118px 0 0 -118px;
  border: 1px solid rgba(200, 241, 255, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 28px rgba(104, 215, 255, 0.08), 0 0 26px rgba(104, 215, 255, 0.12);
  pointer-events: none;
  animation: campusOrbitRotate 18s linear infinite;
}

.about-section .campus-orbit::before,
.about-section .campus-orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(200, 241, 255, 0.92);
  box-shadow: 0 0 16px rgba(104, 215, 255, 0.68);
}

.about-section .campus-orbit::before {
  left: 50%;
  top: -4px;
  width: 7px;
  height: 7px;
}

.about-section .campus-orbit::after {
  right: 18px;
  bottom: 28px;
  width: 4px;
  height: 4px;
  opacity: 0.72;
}

.about-section .orbit-two {
  width: 288px;
  height: 288px;
  margin: -144px 0 0 -144px;
  border-style: dashed;
  opacity: 0.54;
  animation-duration: 26s;
  animation-direction: reverse;
}

.about-section .campus-network-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 152px;
  height: 152px;
  place-items: center;
  padding: 22px;
  border: 9px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 42px rgba(20, 64, 180, 0.18), 0 0 0 16px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  animation: campusCorePulse 5.6s ease-in-out infinite;
}

.about-section .campus-network-core span,
.about-section .campus-network-core strong {
  position: relative;
  z-index: 1;
  display: block;
}

.about-section .campus-network-core span {
  color: rgba(200, 241, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 5px 16px rgba(8, 45, 150, 0.18);
}

/* Homepage company intro core label refinement. */
.about-section .campus-network-core strong {
  color: rgba(232, 250, 255, 0.96);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 8px 22px rgba(8, 45, 150, 0.24);
}

.about-section .campus-network-node {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 154px;
  min-height: 74px;
  align-content: start;
  gap: 6px;
  overflow: hidden;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 42px rgba(20, 64, 180, 0.18);
  backdrop-filter: blur(10px);
  animation: campusNodeFloatSoft 7.4s ease-in-out infinite alternate;
}

.about-section .campus-network-node::before,
.about-section .campus-network-node::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.about-section .campus-network-node::before {
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.48;
}

.about-section .campus-network-node::after {
  right: -34px;
  bottom: -42px;
  z-index: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.about-section .campus-network-node span,
.about-section .campus-network-node strong {
  position: relative;
  z-index: 1;
}

.about-section .campus-network-node span {
  color: rgba(200, 241, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
}

.about-section .campus-network-node strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.about-section .node-teaching {
  left: 0;
  top: 28px;
}

.about-section .node-resource {
  right: 0;
  top: 64px;
  animation-delay: 0.7s;
}

.about-section .node-platform {
  left: 18px;
  bottom: 42px;
  animation-delay: 1.2s;
}

.about-section .node-service {
  right: 18px;
  bottom: 8px;
  animation-delay: 1.8s;
}

/* Homepage company intro English layout stabilization. */
html[lang="en"] .about-section .container {
  width: min(100% - 80px, 1320px);
}

html[lang="en"] .about-section .about-hero {
  grid-template-columns: minmax(620px, 0.94fr) minmax(520px, 1fr);
  gap: 72px;
}

html[lang="en"] .about-section .about-content {
  max-width: 580px;
}

html[lang="en"] .about-section .campus-service-panel {
  width: min(100%, 620px);
  min-height: 560px;
  margin-right: auto;
  margin-left: auto;
}

html[lang="en"] .about-section .campus-capability-network {
  inset: 44px 44px;
}

html[lang="en"] .about-section .campus-network-core {
  width: 166px;
  height: 166px;
  padding: 24px 18px;
}

html[lang="en"] .about-section .campus-network-core span {
  font-size: 11px;
  line-height: 1.16;
}

html[lang="en"] .about-section .campus-network-core strong {
  font-size: 19px;
  line-height: 1.08;
}

html[lang="en"] .about-section .campus-network-node {
  width: 238px;
  min-width: 238px;
  min-height: 92px;
  align-content: center;
  gap: 5px;
  padding: 16px 18px;
}

html[lang="en"] .about-section .campus-network-node span,
html[lang="en"] .about-section .campus-network-node strong {
  display: block;
  overflow-wrap: normal;
  text-wrap: balance;
}

html[lang="en"] .about-section .campus-network-node span {
  font-size: 12px;
  line-height: 1.18;
}

html[lang="en"] .about-section .campus-network-node strong {
  font-size: 13px;
  line-height: 1.24;
}

html[lang="en"] .about-section .node-teaching {
  left: 0;
  top: 28px;
}

html[lang="en"] .about-section .node-resource {
  right: 0;
  top: 76px;
}

html[lang="en"] .about-section .node-platform {
  left: 14px;
  bottom: 64px;
}

html[lang="en"] .about-section .node-service {
  right: 14px;
  bottom: 34px;
}

.about-section .network-line {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(200, 241, 255, 0), rgba(200, 241, 255, 0.55), rgba(255, 255, 255, 0));
  box-shadow: 0 0 14px rgba(104, 215, 255, 0.22);
  transform-origin: left center;
  animation: campusLinePulse 4.8s ease-in-out infinite;
}

.about-section .campus-flow-particle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(200, 241, 255, 0.96);
  box-shadow: 0 0 18px rgba(104, 215, 255, 0.78), 0 0 34px rgba(255, 255, 255, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
}

.about-section .flow-teaching {
  --campus-flow-x: -128px;
  --campus-flow-y: -126px;
  animation: campusFlowTeaching 5.8s ease-in-out infinite;
}

.about-section .flow-resource {
  --campus-flow-x: 138px;
  --campus-flow-y: -88px;
  animation: campusFlowResource 6.2s ease-in-out infinite;
  animation-delay: 0.8s;
}

.about-section .flow-platform {
  --campus-flow-x: -116px;
  --campus-flow-y: 122px;
  animation: campusFlowPlatform 6s ease-in-out infinite;
  animation-delay: 1.3s;
}

.about-section .flow-service {
  --campus-flow-x: 132px;
  --campus-flow-y: 142px;
  animation: campusFlowService 6.4s ease-in-out infinite;
  animation-delay: 1.9s;
}

.about-section .line-teaching {
  width: 228px;
  transform: rotate(212deg);
}

.about-section .line-resource {
  width: 210px;
  animation-delay: 0.7s;
  transform: rotate(326deg);
}

.about-section .line-platform {
  width: 214px;
  animation-delay: 1.1s;
  transform: rotate(142deg);
}

.about-section .line-service {
  width: 226px;
  animation-delay: 1.6s;
  transform: rotate(38deg);
}

@keyframes campusGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 34px 34px, 34px 34px;
  }
}

@keyframes campusScanSweep {
  0%,
  18% {
    opacity: 0;
    transform: translateY(0);
  }

  38% {
    opacity: 0.74;
  }

  72% {
    opacity: 0.28;
    transform: translateY(168%);
  }

  100% {
    opacity: 0;
    transform: translateY(220%);
  }
}

@keyframes campusLinePulse {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 1;
  }
}

@keyframes campusOrbitRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes campusCorePulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(20, 64, 180, 0.18), 0 0 0 16px rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 22px 48px rgba(20, 64, 180, 0.22), 0 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(1.025);
  }
}

@keyframes campusNodeFloatSoft {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-4px);
  }
}

@keyframes campusFlowTeaching {
  0%,
  16% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.66);
  }

  32%,
  76% {
    opacity: 1;
  }

  86% {
    opacity: 0.92;
    transform: translate(calc(-50% + var(--campus-flow-x)), calc(-50% + var(--campus-flow-y))) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--campus-flow-x)), calc(-50% + var(--campus-flow-y))) scale(0.7);
  }
}

@keyframes campusFlowResource {
  0%,
  16% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.66);
  }

  32%,
  76% {
    opacity: 1;
  }

  86% {
    opacity: 0.92;
    transform: translate(calc(-50% + var(--campus-flow-x)), calc(-50% + var(--campus-flow-y))) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--campus-flow-x)), calc(-50% + var(--campus-flow-y))) scale(0.7);
  }
}

@keyframes campusFlowPlatform {
  0%,
  16% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.66);
  }

  32%,
  76% {
    opacity: 1;
  }

  86% {
    opacity: 0.92;
    transform: translate(calc(-50% + var(--campus-flow-x)), calc(-50% + var(--campus-flow-y))) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--campus-flow-x)), calc(-50% + var(--campus-flow-y))) scale(0.7);
  }
}

@keyframes campusFlowService {
  0%,
  16% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.66);
  }

  32%,
  76% {
    opacity: 1;
  }

  86% {
    opacity: 0.92;
    transform: translate(calc(-50% + var(--campus-flow-x)), calc(-50% + var(--campus-flow-y))) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--campus-flow-x)), calc(-50% + var(--campus-flow-y))) scale(0.7);
  }
}

@media (max-width: 680px) {
  .about-section .campus-service-panel {
    min-height: 500px;
  }

  .about-section .campus-capability-network {
    inset: 34px 24px;
  }

  .about-section .campus-network-core {
    width: 132px;
    height: 132px;
    border-width: 8px;
  }

  .about-section .campus-orbit {
    width: 204px;
    height: 204px;
    margin: -102px 0 0 -102px;
  }

  .about-section .orbit-two {
    width: 244px;
    height: 244px;
    margin: -122px 0 0 -122px;
  }

  .about-section .flow-teaching {
    --campus-flow-x: -100px;
    --campus-flow-y: -118px;
  }

  .about-section .flow-resource {
    --campus-flow-x: 104px;
    --campus-flow-y: -82px;
  }

  .about-section .flow-platform {
    --campus-flow-x: -90px;
    --campus-flow-y: 126px;
  }

  .about-section .flow-service {
    --campus-flow-x: 98px;
    --campus-flow-y: 140px;
  }

  .about-section .campus-network-node {
    min-width: 138px;
    min-height: 68px;
    padding: 13px 14px;
  }

  .about-section .campus-network-node strong {
    font-size: 14px;
  }

  html[lang="en"] .about-section .campus-network-core {
    width: 136px;
    height: 136px;
    padding: 18px 14px;
  }

  html[lang="en"] .about-section .campus-network-core span {
    font-size: 9.5px;
  }

  html[lang="en"] .about-section .campus-network-core strong {
    font-size: 16px;
  }

  html[lang="en"] .about-section .campus-network-node {
    width: 154px;
    min-width: 154px;
    min-height: 74px;
    padding: 12px 13px;
  }

  html[lang="en"] .about-section .campus-network-node span {
    font-size: 10px;
  }

  html[lang="en"] .about-section .campus-network-node strong {
    font-size: 11px;
  }

  html[lang="en"] .about-section .node-teaching {
    left: -8px;
    top: 24px;
  }

  html[lang="en"] .about-section .node-resource {
    right: -8px;
    top: 62px;
  }

  html[lang="en"] .about-section .node-platform {
    left: 4px;
    bottom: 46px;
  }

  html[lang="en"] .about-section .node-service {
    right: 4px;
    bottom: 12px;
  }
}

/* Digital campus solution topic page. */
.campus-solution-page {
  color: #17233f;
  background: #f4f8fb;
}

.campus-solution-page .product-site-header {
  position: fixed;
}

.campus-solution-page .product-site-header .site-nav > a,
.campus-solution-page .product-site-header .site-nav > .nav-dropdown > .nav-link {
  height: 82px;
}

.campus-hero {
  position: relative;
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 640px) 420px;
  justify-content: center;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  padding: 104px clamp(22px, 5vw, 58px) 72px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 19, 54, 0.9) 0%, rgba(12, 35, 82, 0.8) 44%, rgba(9, 35, 70, 0.45) 100%),
    url("image/reference-industry-tab-solution-1.jpg") center / cover no-repeat;
}

.campus-hero::after {
  position: absolute;
  right: clamp(16px, 7vw, 92px);
  bottom: 38px;
  width: min(560px, 46vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 224, 255, 0.82), transparent);
  content: "";
}

.campus-hero-copy,
.campus-hero-panel,
.campus-anchor-strip,
.campus-problem-band,
.campus-blueprint-section,
.campus-scenes-section,
.campus-architecture-section,
.campus-path-section,
.campus-delivery-section,
.campus-final-cta {
  position: relative;
  z-index: 1;
}

.campus-kicker {
  margin: 0 0 16px;
  color: #ffb13b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.campus-hero-copy h1 {
  max-width: 640px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.12;
  letter-spacing: 0;
}

.campus-hero-copy > p:not(.campus-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.82;
}

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

.campus-text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: #ffffff;
  font-weight: 800;
}

.campus-hero-panel {
  min-height: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  box-shadow: 0 30px 76px rgba(4, 12, 42, 0.32);
  backdrop-filter: blur(10px);
}

.campus-panel-label {
  display: inline-flex;
  margin-bottom: 22px;
  color: #73e0ff;
  font-size: 13px;
  font-weight: 900;
}

.campus-data-hub {
  position: relative;
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  margin: 4px auto 28px;
  border: 1px solid rgba(115, 224, 255, 0.42);
  border-radius: 50%;
  background: rgba(11, 116, 189, 0.16);
}

.campus-data-hub strong {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 24px;
}

.campus-data-hub span {
  position: absolute;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: #10254f;
  font-size: 13px;
  font-weight: 900;
  background: #73e0ff;
}

.campus-data-hub span:nth-child(2) {
  transform: translate(0, -106px);
}

.campus-data-hub span:nth-child(3) {
  transform: translate(92px, 54px);
  background: #ffb13b;
}

.campus-data-hub span:nth-child(4) {
  transform: translate(-92px, 54px);
}

.campus-hero-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.campus-hero-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
}

.campus-hero-panel b {
  color: #ffffff;
  font-size: 18px;
}

.campus-hero-panel em {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: normal;
}

.campus-anchor-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(23, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.campus-anchor-strip a {
  padding: 9px 16px;
  border-radius: 999px;
  color: #31506f;
  font-size: 14px;
  font-weight: 800;
  background: #edf5fb;
}

.campus-section-head {
  max-width: 860px;
  margin-bottom: 42px;
}

.campus-section-head.is-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.campus-section-head h2,
.campus-delivery-copy h2,
.campus-final-cta h2 {
  margin: 0;
  color: #12203a;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: 0;
}

.campus-section-head > p:not(.campus-kicker),
.campus-delivery-copy > p,
.campus-final-cta > p {
  margin: 20px 0 0;
  color: #5d6b7c;
  font-size: 17px;
  line-height: 1.86;
}

.campus-problem-band,
.campus-blueprint-section,
.campus-scenes-section,
.campus-architecture-section,
.campus-path-section,
.campus-delivery-section,
.campus-final-cta {
  padding: 84px clamp(20px, 5vw, 76px);
}

.campus-problem-band > .campus-section-head,
.campus-problem-band > .campus-problem-grid,
.campus-blueprint-section > .campus-section-head,
.campus-blueprint-section > .campus-blueprint-map,
.campus-scenes-section > .campus-section-head,
.campus-scenes-section > .campus-scene-lanes,
.campus-architecture-section > .campus-section-head,
.campus-architecture-section > .campus-layer-stack,
.campus-path-section > .campus-section-head,
.campus-path-section > .campus-roadmap,
.campus-delivery-section,
.campus-final-cta > * {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.campus-problem-band {
  background: #ffffff;
}

.campus-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(18, 32, 58, 0.12);
}

.campus-problem-grid article {
  min-height: 220px;
  padding: 28px;
  background: #ffffff;
}

.campus-problem-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #0b74bd;
  font-size: 14px;
  font-weight: 900;
}

.campus-problem-grid h3 {
  margin: 0 0 14px;
  color: #12203a;
  font-size: 28px;
}

.campus-problem-grid p {
  margin: 0;
  color: #637083;
  line-height: 1.86;
}

.campus-blueprint-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(115, 224, 255, 0.14), transparent 28%),
    #eef5fb;
}

.campus-blueprint-map {
  position: relative;
  display: grid;
  width: min(1120px, 100%);
  min-height: 680px;
  margin: 0 auto;
  place-items: center;
}

.campus-blueprint-map::before,
.campus-blueprint-map::after {
  position: absolute;
  border: 1px solid rgba(11, 116, 189, 0.18);
  border-radius: 50%;
  content: "";
}

.campus-blueprint-map::before {
  width: min(620px, 70vw);
  height: min(620px, 70vw);
}

.campus-blueprint-map::after {
  width: min(900px, 88vw);
  height: min(900px, 88vw);
}

.campus-map-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 310px;
  height: 310px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(145deg, #0b74bd, #1b3d73);
  box-shadow: 0 28px 76px rgba(11, 59, 112, 0.3);
}

.campus-map-core span,
.campus-map-core em {
  font-size: 13px;
  font-style: normal;
  opacity: 0.78;
}

.campus-map-core strong {
  font-size: 30px;
  line-height: 1.24;
}

.map-node {
  position: absolute;
  z-index: 3;
  width: min(300px, 32vw);
  padding: 26px;
  border: 1px solid rgba(11, 116, 189, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(30, 63, 105, 0.1);
}

.map-node b {
  display: block;
  margin-bottom: 10px;
  color: #12203a;
  font-size: 20px;
}

.map-node span {
  color: #647387;
  line-height: 1.7;
}

.node-top {
  top: 18px;
}

.node-right {
  right: 0;
}

.node-bottom {
  bottom: 18px;
}

.node-left {
  left: 0;
}

.campus-scenes-section {
  color: #ffffff;
  background:
    linear-gradient(rgba(10, 23, 57, 0.9), rgba(10, 23, 57, 0.94)),
    url("image/stock-business-platform-computer-lab-web.jpg") center / cover no-repeat;
}

.campus-scenes-section .campus-section-head h2 {
  color: #ffffff;
}

.campus-scenes-section .campus-section-head > p {
  color: rgba(255, 255, 255, 0.74);
}

.campus-scene-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.campus-scene-lanes article {
  min-height: 240px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.campus-scene-lanes span {
  display: inline-flex;
  margin-bottom: 44px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #10254f;
  font-size: 13px;
  font-weight: 900;
  background: #73e0ff;
}

.campus-scene-lanes h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 26px;
}

.campus-scene-lanes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.campus-architecture-section {
  background: #ffffff;
}

.campus-layer-stack {
  display: grid;
  width: min(1080px, 100%);
  gap: 14px;
  margin: 0 auto;
}

.campus-layer-stack div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 30px;
  border-left: 5px solid #0b74bd;
  border-radius: 6px;
  background: #f2f7fb;
}

.campus-layer-stack div:nth-child(2n) {
  border-left-color: #ffb13b;
  background: #fff8ec;
}

.campus-layer-stack span {
  color: #0b74bd;
  font-weight: 900;
}

.campus-layer-stack strong {
  color: #17233f;
  font-size: 20px;
  line-height: 1.5;
}

.campus-path-section {
  background: #eef5fb;
}

.campus-roadmap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.campus-roadmap li {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(18, 32, 58, 0.1);
  border-right: 0;
  background: #ffffff;
}

.campus-roadmap li:last-child {
  border-right: 1px solid rgba(18, 32, 58, 0.1);
}

.campus-roadmap span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 900;
  background: #0b74bd;
}

.campus-roadmap strong {
  display: block;
  margin-bottom: 12px;
  color: #12203a;
  font-size: 22px;
}

.campus-roadmap p {
  margin: 0;
  color: #637083;
  line-height: 1.76;
}

.campus-delivery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background: #ffffff;
  box-sizing: border-box;
}

.campus-delivery-copy h2 {
  max-width: 560px;
  font-size: clamp(30px, 3.1vw, 44px);
}

.campus-delivery-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.campus-delivery-list span {
  min-height: 88px;
  padding: 22px;
  border-radius: 6px;
  color: #17233f;
  font-weight: 900;
  background: #edf5fb;
}

.campus-final-cta {
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #10254f, #0b74bd);
}

.campus-final-cta .campus-kicker,
.campus-final-cta h2 {
  color: #ffffff;
}

.campus-final-cta > p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
}

.campus-final-cta .btn {
  width: auto;
  min-width: 220px;
  margin-top: 30px;
  display: inline-flex;
}

/* Digital campus solution refresh: photo-backed hero, floating data screen, compact CTA. */
.campus-solution-page {
  background: #eef4f8;
}

.campus-hero {
  min-height: 575px;
  grid-template-columns: minmax(0, 610px) minmax(360px, 455px);
  align-items: center;
  padding-top: 92px;
  padding-bottom: 58px;
  background:
    linear-gradient(90deg, rgba(7, 18, 46, 0.94) 0%, rgba(10, 32, 74, 0.84) 44%, rgba(9, 38, 76, 0.52) 100%),
    url("image/hero-campus-technology-web.jpg") center 42% / cover no-repeat;
}

.campus-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 22%, rgba(115, 224, 255, 0.24), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(255, 177, 59, 0.16), transparent 25%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  content: "";
  opacity: 0.72;
  animation: campusSolutionGrid 10s linear infinite;
}

.campus-hero::after {
  right: clamp(20px, 6vw, 86px);
  bottom: 34px;
  height: 2px;
  opacity: 0.8;
  animation: campusSolutionLine 3.8s ease-in-out infinite;
}

.campus-hero-copy {
  align-self: center;
}

.campus-hero-copy h1 {
  font-size: clamp(40px, 4.4vw, 58px);
}

.campus-hero-copy > p:not(.campus-kicker) {
  max-width: 590px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.78;
}

.campus-hero-visual {
  position: relative;
  z-index: 1;
  width: min(455px, 100%);
  min-height: 365px;
  justify-self: end;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(7, 19, 50, 0.28);
  box-shadow:
    0 34px 86px rgba(2, 10, 36, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  animation: campusSolutionFloat 6s ease-in-out infinite;
}

.campus-hero-visual::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(115, 224, 255, 0.18);
  border-radius: 10px;
  content: "";
}

.campus-hero-visual::after {
  position: absolute;
  top: 18px;
  right: 28px;
  width: 76px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb13b, #73e0ff);
  box-shadow: 0 0 24px rgba(115, 224, 255, 0.55);
  content: "";
}

.campus-visual-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0 54%, transparent 80%);
  opacity: 0.7;
}

.campus-pulse-ring {
  position: absolute;
  border: 1px solid rgba(115, 224, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(115, 224, 255, 0.14);
  animation: campusSolutionPulse 4.6s ease-in-out infinite;
}

.campus-pulse-ring.ring-one {
  top: 74px;
  left: 92px;
  width: 180px;
  height: 180px;
}

.campus-pulse-ring.ring-two {
  right: 54px;
  bottom: 52px;
  width: 142px;
  height: 142px;
  inset: auto 54px 52px auto;
  animation-delay: 1.2s;
}

.campus-flow-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(115, 224, 255, 0.96), rgba(255, 177, 59, 0.86), transparent);
  filter: drop-shadow(0 0 10px rgba(115, 224, 255, 0.6));
  opacity: 0.8;
  animation: campusSolutionFlow 3.2s ease-in-out infinite;
}

.campus-flow-line.line-one {
  top: 142px;
  left: -38px;
  width: 72%;
  --campus-line-rotate: 18deg;
  transform: rotate(18deg);
}

.campus-flow-line.line-two {
  right: -44px;
  bottom: 120px;
  width: 76%;
  --campus-line-rotate: -17deg;
  transform: rotate(-17deg);
  animation-delay: 1.1s;
}

.campus-screen-card {
  position: absolute;
  top: 92px;
  left: 50%;
  display: grid;
  width: min(245px, calc(100% - 64px));
  min-height: 168px;
  place-items: center;
  padding: 28px 24px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(12, 30, 72, 0.92), rgba(8, 20, 52, 0.72)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(4, 12, 42, 0.34);
  transform: translateX(-50%);
}

.campus-screen-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.24) 48%, transparent 62% 100%);
  content: "";
  transform: translateX(-120%);
  animation: campusSolutionSweep 4.8s ease-in-out infinite;
}

.campus-screen-card span,
.campus-screen-card strong,
.campus-screen-card em {
  position: relative;
  z-index: 1;
}

.campus-screen-card span {
  color: #73e0ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.campus-screen-card strong {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.15;
}

.campus-screen-card em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
}

.campus-visual-node {
  position: absolute;
  display: grid;
  min-width: 138px;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid #ffb13b;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 34px rgba(4, 12, 42, 0.25);
  backdrop-filter: blur(9px);
}

.campus-visual-node b {
  font-size: 16px;
}

.campus-visual-node small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.campus-visual-node.node-entry {
  top: 54px;
  left: 38px;
  animation: campusSolutionFloat 5.4s ease-in-out infinite reverse;
}

.campus-visual-node.node-data {
  right: 26px;
  top: 176px;
  border-left-color: #73e0ff;
  animation: campusSolutionFloat 5.8s ease-in-out infinite;
}

.campus-visual-node.node-service {
  bottom: 40px;
  left: 62px;
  animation: campusSolutionFloat 6.4s ease-in-out infinite;
}

.campus-problem-band,
.campus-scenes-section,
.campus-path-section,
.campus-delivery-section {
  position: relative;
  overflow: hidden;
}

.campus-problem-band::before,
.campus-scenes-section::before,
.campus-delivery-section::before {
  position: absolute;
  width: 360px;
  height: 220px;
  border-radius: 10px;
  background: url("image/reference-industry-tab-solution-1.jpg") center / cover no-repeat;
  box-shadow: 0 30px 70px rgba(15, 33, 78, 0.14);
  content: "";
  opacity: 0.16;
  pointer-events: none;
  transform: rotate(-4deg);
}

.campus-problem-band::before {
  right: -120px;
  top: 46px;
}

.campus-scenes-section::before {
  left: -135px;
  top: 54px;
  background-image: url("image/stock-business-platform-computer-lab-web.jpg");
  transform: rotate(5deg);
}

.campus-delivery-section::before {
  right: -110px;
  bottom: -48px;
  background-image: url("image/stock-company-intro-classroom-web.jpg");
}

.campus-problem-grid article,
.campus-scene-lanes article,
.campus-roadmap li,
.campus-delivery-list span {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.campus-problem-grid article:hover,
.campus-scene-lanes article:hover,
.campus-roadmap li:hover,
.campus-delivery-list span:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(21, 46, 94, 0.12);
}

.campus-blueprint-map,
.campus-layer-stack {
  animation: campusSolutionFadeUp 0.7s ease both;
}

.campus-final-cta {
  padding-top: 74px;
  padding-bottom: 74px;
  color: #17233f;
  text-align: left;
  background:
    radial-gradient(circle at 18% 28%, rgba(115, 224, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
}

.campus-final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 34px clamp(26px, 4vw, 44px);
  border: 1px solid rgba(11, 116, 189, 0.14);
  border-radius: 12px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 37, 79, 0.96), rgba(11, 116, 189, 0.9)),
    url("image/hero-campus-technology-web.jpg") center 48% / cover no-repeat;
  box-shadow: 0 26px 70px rgba(16, 37, 79, 0.24);
}

.campus-final-card .campus-kicker,
.campus-final-card h2 {
  color: #ffffff;
}

.campus-final-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.campus-final-card p:last-child {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.campus-final-card .btn {
  margin-top: 0;
  white-space: nowrap;
}

@keyframes campusSolutionGrid {
  to {
    background-position: 0 0, 0 0, 42px 42px, 42px 42px;
  }
}

@keyframes campusSolutionLine {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-18px);
  }

  50% {
    opacity: 0.95;
    transform: translateX(18px);
  }
}

@keyframes campusSolutionFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes campusSolutionPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes campusSolutionFlow {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-24px) rotate(var(--campus-line-rotate, 0deg));
  }

  50% {
    opacity: 1;
    transform: translateX(24px) rotate(var(--campus-line-rotate, 0deg));
  }
}

@keyframes campusSolutionSweep {
  0%,
  34% {
    transform: translateX(-120%);
  }

  58%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes campusSolutionFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* Product detail page: operations ticket system. */
.product-detail-page {
  background: #f7f9ff;
}

.product-site-header {
  position: sticky;
}

.product-site-header .site-nav > a,
.product-site-header .site-nav > .nav-dropdown > .nav-link {
  height: 82px;
}

/* Desktop operations video banner: contain the video to preserve perceived sharpness. */
.ops-video-banner {
  --ops-video-desktop-frame: clamp(640px, 50vw, 980px);
  --ops-video-content-left: max(clamp(64px, 7vw, 118px), calc((100vw - 1760px) / 2 + 64px));
  --ops-video-content-top: clamp(104px, 13vh, 168px);
  --ops-video-media-top: 46%;
  --ops-video-media-right: max(clamp(44px, 5vw, 96px), calc((100vw - 1760px) / 2 + 64px));
  position: relative;
  overflow: hidden;
  height: clamp(560px, calc(100vh - 82px), 820px);
  min-height: 560px;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%, rgba(104, 215, 255, 0.2), transparent 28%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(47, 99, 244, 0.72) 0%, rgba(101, 124, 244, 0.6) 52%, rgba(31, 143, 215, 0.54) 100%),
    url("image/ops-ticket-banner-poster.jpg");
  background-position: center, center, center, center 46%;
  background-size: auto, auto, auto, cover;
}

.ops-video-banner::after {
  position: absolute;
  right: -12%;
  bottom: -32%;
  z-index: 0;
  width: 54vw;
  height: 54vw;
  min-width: 420px;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.ops-video-banner-media {
  position: absolute;
  top: var(--ops-video-media-top);
  right: var(--ops-video-media-right);
  z-index: 0;
  display: block;
  width: var(--ops-video-desktop-frame);
  height: auto;
  max-height: calc(100% - 104px);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(194, 234, 255, 0.16);
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  filter: saturate(1.08) contrast(1.05);
  box-shadow:
    inset 0 0 0 14px rgba(42, 105, 217, 0.2),
    inset 0 0 42px rgba(4, 22, 58, 0.46),
    0 0 0 18px rgba(88, 136, 238, 0.16),
    0 28px 76px rgba(20, 49, 145, 0.18);
  transform: translateY(-50%);
  transition: opacity 360ms ease;
}

.ops-video-banner-media.is-video-ready {
  opacity: 1;
}

.ops-video-play {
  position: absolute;
  top: var(--ops-video-media-top);
  right: calc(var(--ops-video-media-right) + clamp(320px, 25vw, 490px));
  z-index: 3;
  display: inline-grid;
  width: 66px;
  height: 66px;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #0b3476;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 44px rgba(7, 32, 86, 0.26),
    0 0 0 12px rgba(255, 255, 255, 0.14);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transform: translate(50%, -50%);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.ops-video-play:hover {
  box-shadow:
    0 22px 54px rgba(7, 32, 86, 0.32),
    0 0 0 14px rgba(255, 255, 255, 0.18);
  transform: translate(50%, -50%) scale(1.025);
}

.ops-video-play:disabled {
  cursor: wait;
  opacity: 0.82;
}

.ops-video-play-icon {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f63f0, #21a9d9);
  box-shadow: 0 8px 18px rgba(31, 99, 240, 0.28);
}

.ops-video-play-icon::before {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #ffffff;
  content: "";
}

.ops-video-banner.is-video-loading .ops-video-play-icon::before {
  width: 16px;
  height: 16px;
  margin-left: 0;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-top-color: transparent;
  border-radius: 50%;
  animation: opsVideoPlaySpin 820ms linear infinite;
}

.ops-video-status {
  position: absolute;
  top: calc(var(--ops-video-media-top) + 48px);
  right: calc(var(--ops-video-media-right) + clamp(320px, 25vw, 490px));
  z-index: 3;
  width: min(220px, 36vw);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 2px 10px rgba(5, 22, 64, 0.38);
  transform: translateX(50%);
}

.ops-video-banner.is-video-playing .ops-video-play,
.ops-video-banner.is-video-playing .ops-video-status {
  opacity: 0;
  pointer-events: none;
}

@keyframes opsVideoPlaySpin {
  to {
    transform: rotate(360deg);
  }
}

.ops-video-shade,
.ops-video-grid,
.ops-video-shell,
.ops-video-content,
.ops-video-scroll {
  position: absolute;
  z-index: 1;
}

.ops-video-shade {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 38, 132, 0.44) 0%, rgba(16, 62, 154, 0.18) 42%, rgba(16, 62, 154, 0.04) 72%),
    linear-gradient(180deg, rgba(29, 71, 190, 0.18) 0%, transparent 48%, rgba(12, 74, 160, 0.24) 100%);
  pointer-events: none;
}

.ops-video-grid {
  inset: 0;
  z-index: 0;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 62% 42%, #000 0%, transparent 62%);
  pointer-events: none;
}

.ops-video-shell {
  display: none;
}

.ops-video-shell::before,
.ops-video-shell::after,
.ops-video-shell span {
  position: absolute;
  width: 112px;
  height: 112px;
  border-color: rgba(120, 226, 255, 0.62);
  content: "";
}

.ops-video-shell::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.ops-video-shell::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.ops-video-shell span:first-child {
  top: -1px;
  right: -1px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.ops-video-shell span:last-child {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.ops-video-banner .ops-hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ops-video-banner .ops-hero-decor::before {
  display: none;
}

.ops-video-banner .ops-hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ops-video-banner .ops-hero-bubble {
  right: auto;
  width: 12px;
  height: 12px;
  opacity: 0.64;
  border-color: rgba(211, 246, 255, 0.46);
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.86) 0 12%, rgba(196, 239, 255, 0.2) 36%, rgba(196, 239, 255, 0.1) 100%);
  box-shadow:
    0 0 28px rgba(196, 239, 255, 0.34),
    inset 0 0 12px rgba(255, 255, 255, 0.16);
}

.ops-video-banner .ops-hero-bubble:nth-child(1) {
  right: auto;
  bottom: auto;
  left: 12%;
  top: 19%;
  width: 18px;
  height: 18px;
  animation-duration: 9.5s;
}

.ops-video-banner .ops-hero-bubble:nth-child(2) {
  top: auto;
  right: auto;
  left: 24%;
  bottom: 17%;
  width: 10px;
  height: 10px;
  animation-delay: -2.4s;
}

.ops-video-banner .ops-hero-bubble:nth-child(3) {
  right: auto;
  bottom: auto;
  left: 38%;
  top: 28%;
  width: 14px;
  height: 14px;
  animation-delay: -4s;
}

.ops-video-banner .ops-hero-bubble:nth-child(4) {
  top: auto;
  right: auto;
  left: 6%;
  bottom: 30%;
  width: 16px;
  height: 16px;
  animation-delay: -1.2s;
}

.ops-video-banner .ops-hero-bubble:nth-child(5) {
  top: auto;
  right: auto;
  left: 52%;
  bottom: 13%;
  width: 13px;
  height: 13px;
  opacity: 0.5;
  animation-delay: -5.6s;
}

.ops-video-banner .ops-hero-bubble:nth-child(6) {
  right: auto;
  bottom: auto;
  left: 32%;
  top: 56%;
  width: 9px;
  height: 9px;
  animation-delay: -3.2s;
}

.ops-video-banner .ops-hero-bubble:nth-child(7) {
  right: auto;
  bottom: auto;
  left: 18%;
  top: 39%;
  width: 22px;
  height: 22px;
  opacity: 0.58;
  animation-delay: -6.3s;
  animation-duration: 11s;
}

.ops-video-banner .ops-hero-bubble:nth-child(8) {
  right: auto;
  bottom: auto;
  left: 4%;
  top: 52%;
  width: 12px;
  height: 12px;
  animation-delay: -7.5s;
}

.ops-video-banner .ops-hero-bubble:nth-child(9) {
  top: auto;
  right: auto;
  left: 45%;
  bottom: 8%;
  width: 17px;
  height: 17px;
  opacity: 0.48;
  animation-delay: -4.8s;
  animation-duration: 10.5s;
}

.ops-video-banner .ops-hero-bubble:nth-child(10) {
  top: auto;
  right: auto;
  left: 39%;
  bottom: 25%;
  width: 8px;
  height: 8px;
  animation-delay: -8.6s;
}

.ops-video-banner .ops-hero-bubble:nth-child(11) {
  right: auto;
  bottom: auto;
  left: 24%;
  top: 12%;
  width: 11px;
  height: 11px;
  opacity: 0.54;
  animation-delay: -5.1s;
}

.ops-video-banner .ops-hero-bubble:nth-child(12) {
  right: auto;
  bottom: auto;
  left: 50%;
  top: 15%;
  width: 20px;
  height: 20px;
  opacity: 0.38;
  animation-delay: -9.2s;
  animation-duration: 12s;
}

.ops-video-banner .ops-hero-bubble:nth-child(13) {
  right: auto;
  bottom: auto;
  left: 9%;
  top: 71%;
  width: 14px;
  height: 14px;
  opacity: 0.56;
  animation-delay: -3.8s;
}

.ops-video-banner .ops-hero-bubble:nth-child(14) {
  top: auto;
  right: auto;
  left: 57%;
  bottom: 31%;
  width: 7px;
  height: 7px;
  opacity: 0.34;
  animation-delay: -6.9s;
  animation-duration: 9s;
}

.ops-video-banner .ops-hero-bubble:nth-child(15) {
  right: auto;
  bottom: auto;
  left: 76%;
  top: 12%;
  width: 24px;
  height: 24px;
  opacity: 0.42;
  animation-delay: -8.1s;
  animation-duration: 12.5s;
}

.ops-video-banner .ops-hero-bubble:nth-child(16) {
  top: auto;
  right: 2.5%;
  left: auto;
  bottom: 33%;
  width: 22px;
  height: 22px;
  opacity: 0.36;
  animation-delay: -4.4s;
  animation-duration: 10.8s;
}

.ops-video-banner .ops-hero-wave-edge {
  position: absolute;
  right: 0;
  bottom: -58px;
  left: 0;
  z-index: 2;
  height: clamp(126px, 15vw, 230px);
  pointer-events: none;
}

.ops-video-banner .ops-hero-wave-edge svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ops-video-banner .ops-hero-wave-edge path {
  fill: #ffffff;
}

.ops-video-content {
  left: var(--ops-video-content-left);
  bottom: clamp(86px, 11vw, 142px);
  width: min(560px, 36vw);
  color: #ffffff;
}

.ops-video-copy {
  top: var(--ops-video-content-top);
  bottom: auto;
  width: min(520px, 30vw);
  max-width: 520px;
}

.ops-video-content::before {
  position: absolute;
  top: -26px;
  left: 0;
  width: min(480px, 74vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(145, 238, 255, 0.9), rgba(255, 255, 255, 0.08), transparent);
  content: "";
}

.ops-video-copy::before {
  top: -34px;
  width: min(420px, 72vw);
  background: linear-gradient(90deg, rgba(217, 241, 255, 0.72), rgba(255, 255, 255, 0.1), transparent);
}

.ops-video-copy .eyebrow {
  display: block;
  margin: 0 0 18px;
  color: #d9f1ff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.ops-video-copy .eyebrow::before {
  display: none;
}

.ops-video-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: #91eeff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ops-video-kicker::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.ops-video-content h1 {
  display: grid;
  gap: 2px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(54px, 6.3vw, 96px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(45, 207, 255, 0.18);
}

.ops-video-copy h1 {
  display: block;
  max-width: 520px;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(46px, 3.7vw, 68px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.ops-video-content h1 span:last-child {
  padding-left: clamp(28px, 4vw, 62px);
  color: rgba(255, 255, 255, 0.92);
}

.ops-video-copy h1 span:last-child {
  padding-left: 0;
}

.ops-video-content p:not(.ops-video-kicker) {
  position: relative;
  max-width: 660px;
  margin: 26px 0 0;
  padding-left: 18px;
  color: rgba(238, 249, 255, 0.84);
  font-size: 18px;
  line-height: 1.86;
}

.ops-video-content p:not(.ops-video-kicker)::before {
  position: absolute;
  top: 0.5em;
  bottom: 0.5em;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, #91eeff, rgba(145, 238, 255, 0.06));
  content: "";
}

.ops-video-copy .product-detail-lede {
  max-width: 500px;
  margin: 0;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.78;
}

.ops-video-copy .product-detail-lede::before {
  display: none;
}

.ops-video-copy .product-detail-note {
  max-width: 540px;
  margin: 18px 0 0;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.ops-video-copy .product-detail-note::before {
  display: none;
}

.ops-video-copy .product-detail-actions {
  margin-top: 30px;
}

@media (min-width: 1800px) {
  .ops-video-banner {
    --ops-video-desktop-frame: clamp(700px, 43vw, 900px);
    --ops-video-content-top: clamp(118px, 13vh, 164px);
    --ops-video-media-top: 45%;
  }

  .ops-video-copy {
    width: 520px;
  }

  .ops-video-copy h1 {
    font-size: clamp(56px, 3.05vw, 70px);
  }

  .ops-video-copy .product-detail-lede {
    font-size: 20px;
  }

  .ops-video-play,
  .ops-video-status {
    right: calc(var(--ops-video-media-right) + clamp(350px, 21.5vw, 450px));
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .ops-video-banner {
    --ops-video-desktop-frame: min(54vw, 620px);
    --ops-video-content-left: clamp(32px, 6vw, 72px);
    --ops-video-content-top: clamp(104px, 13vh, 142px);
    --ops-video-media-top: 46%;
    --ops-video-media-right: clamp(24px, 4vw, 48px);
  }

  .ops-video-copy {
    width: min(430px, 38vw);
  }

  .ops-video-copy h1 {
    font-size: clamp(40px, 4.6vw, 54px);
  }

  .ops-video-copy .product-detail-lede {
    font-size: 16px;
    line-height: 1.72;
  }

  .ops-video-play,
  .ops-video-status {
    right: calc(var(--ops-video-media-right) + min(27vw, 310px));
  }
}

.ops-video-copy .product-detail-actions .link-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
}

/* Product detail page v6: lock the video hero copy frame before filling bilingual content. */
html[lang="en"] .ops-video-copy {
  top: clamp(76px, 9.2vh, 112px);
  width: min(430px, 28vw);
  max-width: 430px;
  max-height: calc(100% - 250px);
}

html[lang="en"] .ops-video-copy h1 {
  max-width: 8.8em;
  margin-bottom: clamp(10px, 1.5vh, 15px);
  font-size: clamp(34px, 2.2vw, 44px);
  line-height: 1.1;
  text-wrap: balance;
}

html[lang="en"] .ops-video-copy .product-detail-lede {
  max-width: 38ch;
  font-size: clamp(13px, 0.78vw, 15px);
  line-height: 1.5;
}

html[lang="en"] .ops-video-copy .product-detail-actions {
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: clamp(12px, 1.6vh, 18px);
}

html[lang="en"] .ops-video-copy .product-detail-actions .btn {
  min-height: 40px;
  max-width: 100%;
  padding: 10px 18px;
  line-height: 1.2;
  white-space: normal;
}

html[lang="en"] .ops-video-copy .product-detail-actions .link-button {
  min-height: 40px;
  max-width: 100%;
  padding-bottom: 2px;
  line-height: 1.25;
  white-space: normal;
}

@media (max-height: 760px) and (min-width: 1061px) {
  html[lang="en"] .ops-video-copy {
    top: 66px;
    width: min(390px, 27vw);
    max-height: calc(100% - 230px);
  }

  html[lang="en"] .ops-video-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  html[lang="en"] .ops-video-copy h1 {
    max-width: 8.4em;
    margin-bottom: 8px;
    font-size: clamp(28px, 1.85vw, 34px);
    line-height: 1.08;
  }

  html[lang="en"] .ops-video-copy .product-detail-lede {
    max-width: 37ch;
    font-size: 13px;
    line-height: 1.42;
  }

  html[lang="en"] .ops-video-copy .product-detail-actions {
    gap: 8px 12px;
    margin-top: 10px;
  }

  html[lang="en"] .ops-video-copy .product-detail-actions .btn,
  html[lang="en"] .ops-video-copy .product-detail-actions .link-button {
    min-height: 34px;
    font-size: 13px;
  }

  html[lang="en"] .ops-video-copy .product-detail-actions .btn {
    padding: 8px 16px;
  }
}

.ops-video-scroll {
  right: clamp(28px, 5vw, 78px);
  bottom: clamp(32px, 5vw, 62px);
  display: grid;
  width: 46px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(226, 247, 255, 0.34);
  border-radius: 999px;
  background: rgba(5, 21, 48, 0.28);
  backdrop-filter: blur(12px);
}

.ops-video-scroll span {
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  animation: opsVideoScrollCue 1.8s ease-in-out infinite;
}

@keyframes opsVideoScrollCue {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-8px);
  }

  50% {
    opacity: 1;
    transform: translateY(9px);
  }
}

.ops-original-banner {
  display: none;
}

.product-detail-page.use-original-ops-banner .ops-video-banner {
  display: none;
}

.product-detail-page.use-original-ops-banner .ops-original-banner {
  display: block;
}

.product-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 70px) 180px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 18%, rgba(104, 215, 255, 0.2), transparent 28%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #2f63f4 0%, #657cf4 52%, #1f8fd7 100%);
}

.product-detail-hero::after {
  position: absolute;
  right: -12%;
  bottom: -32%;
  width: 54vw;
  height: 54vw;
  min-width: 420px;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.product-detail-hero .ops-hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.product-detail-hero .ops-hero-decor::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: radial-gradient(circle at 62% 42%, #000 0%, transparent 62%);
}

.ops-hero-orbit {
  position: absolute;
  border: 1px solid rgba(104, 215, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(104, 215, 255, 0.05);
}

.ops-hero-orbit-a {
  right: 11%;
  top: -18%;
  width: 560px;
  height: 560px;
}

.ops-hero-orbit-b {
  right: -4%;
  bottom: -26%;
  width: 460px;
  height: 460px;
  border-color: rgba(126, 104, 255, 0.14);
}

.ops-hero-line {
  position: absolute;
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(104, 215, 255, 0.32), transparent);
  transform-origin: center;
}

.ops-hero-line-a {
  left: 8%;
  top: 26%;
  transform: rotate(-22deg);
}

.ops-hero-line-b {
  right: 18%;
  bottom: 24%;
  transform: rotate(34deg);
}

.ops-hero-bubbles {
  position: absolute;
  inset: 0;
}

.ops-hero-bubble {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(104, 215, 255, 0.42);
  border-radius: 50%;
  background: rgba(104, 215, 255, 0.14);
  box-shadow: 0 0 22px rgba(104, 215, 255, 0.26);
  animation: opsBubbleFloat 8s ease-in-out infinite;
}

.ops-hero-bubble:nth-child(1) {
  left: 14%;
  top: 24%;
}

.ops-hero-bubble:nth-child(2) {
  left: 28%;
  bottom: 18%;
  width: 6px;
  height: 6px;
  animation-delay: -2.5s;
}

.ops-hero-bubble:nth-child(3) {
  right: 41%;
  top: 18%;
  animation-delay: -4s;
}

.ops-hero-bubble:nth-child(4) {
  right: 24%;
  top: 30%;
  width: 7px;
  height: 7px;
  animation-delay: -1.2s;
}

.ops-hero-bubble:nth-child(5) {
  right: 12%;
  bottom: 20%;
  width: 11px;
  height: 11px;
  animation-delay: -5.6s;
}

.ops-hero-bubble:nth-child(6) {
  left: 48%;
  bottom: 28%;
  width: 5px;
  height: 5px;
  animation-delay: -3.2s;
}

.product-detail-hero .ops-hero-wave-edge {
  position: absolute;
  right: 0;
  bottom: -58px;
  left: 0;
  z-index: 1;
  height: clamp(126px, 15vw, 230px);
  pointer-events: none;
}

.product-detail-hero .ops-hero-wave-edge svg {
  display: block;
  width: 100%;
  height: 100%;
}

.product-detail-hero .ops-hero-wave-edge path {
  fill: #ffffff;
}

@keyframes opsBubbleFloat {
  0%,
  100% {
    opacity: 0.26;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 0.82;
    transform: translate3d(10px, -24px, 0) scale(1.18);
  }
}

.product-detail-inner,
.product-detail-container {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.product-detail-copy {
  max-width: 660px;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-inner {
  width: min(1280px, 100%);
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 0.9fr);
  gap: clamp(70px, 7vw, 118px);
}

.product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-copy {
  max-width: 620px;
}

.product-detail-copy h1 {
  max-width: 780px;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.14;
  letter-spacing: 0;
}

.product-detail-page .eyebrow {
  margin: 0 0 18px;
  color: #d9f1ff;
  font-size: 14px;
  font-weight: 900;
}

.product-detail-lede {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.86;
}

.product-detail-note {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

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

.product-detail-actions .link-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
}

.ticket-visual {
  position: relative;
  min-height: 430px;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-visual {
  width: 100%;
  max-width: 560px;
  min-height: 360px;
  justify-self: end;
}

.ticket-board {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(229, 246, 255, 0.46);
  border-radius: 6px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(216, 239, 255, 0.13)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 30px 76px rgba(18, 68, 148, 0.22);
  animation: opsTicketBoardFloat 7s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-board {
  position: relative;
  inset: auto;
  display: grid;
  min-height: 338px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 18px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.ticket-board::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(104, 215, 255, 0.2), transparent 38%, rgba(127, 140, 255, 0.18));
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-board::before {
  inset: -8%;
  background:
    radial-gradient(circle at 82% 74%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 0.9;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-board::after {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

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

@keyframes opsTicketBoardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ops-hero-bubble,
  .ticket-board,
  .ops-video-scroll span {
    animation: none;
  }

  .ops-video-banner {
    background-image:
      radial-gradient(circle at 18% 22%, rgba(38, 197, 255, 0.24), transparent 28%),
      linear-gradient(135deg, rgba(7, 23, 51, 0.16), rgba(9, 47, 115, 0.16)),
      url("image/ops-ticket-banner-poster.jpg");
    background-position: center 36%;
    background-size: cover;
  }

  .ops-video-play {
    transition: none;
  }

  .ops-video-banner.is-video-loading .ops-video-play-icon::before {
    animation: none;
  }
}

.ticket-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ticket-board-head span {
  color: #68d7ff;
  font-size: 14px;
  font-weight: 900;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-board-head {
  border-bottom-color: rgba(35, 88, 157, 0.12);
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-board-head span {
  color: #159fc8;
}

.ticket-board-head strong {
  color: #ffffff;
  font-size: 22px;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-board-head strong {
  color: #17335f;
}

.ticket-flow-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(232, 247, 255, 0.28);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.16);
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-flow-card {
  min-height: 150px;
  align-content: center;
  align-items: start;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 24px 26px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.32);
  background:
    radial-gradient(circle at 95% 100%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.048) 1px, transparent 1px),
    rgba(255, 255, 255, 0.11);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 42px rgba(23, 73, 150, 0.12);
  backdrop-filter: blur(8px);
}

.ticket-flow-card span {
  grid-row: 1 / span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 5px;
  color: #16346f;
  font-weight: 900;
  background: linear-gradient(135deg, #68d7ff, #7f8cff);
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-flow-card span {
  grid-row: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #2f63f4;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.92);
}

.ticket-flow-card strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-flow-card strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
}

.ticket-flow-card em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-style: normal;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-flow-card em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.ticket-flow-card.is-active {
  border-color: rgba(197, 241, 255, 0.62);
  background: rgba(218, 246, 255, 0.22);
}

.product-detail-page[data-product-detail="ops-ticket-system"] .ticket-flow-card.is-active {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at 95% 100%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.062) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.056) 1px, transparent 1px),
    rgba(255, 255, 255, 0.14);
}

.solution-detail-hero {
  background:
    linear-gradient(rgba(14, 26, 73, 0.66), rgba(14, 26, 73, 0.78)),
    url("image/reference-industry-tab-solution-1.jpg") center / cover no-repeat;
}

.campus-blueprint-visual {
  position: relative;
  min-height: 430px;
}

.campus-blueprint-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  box-shadow: 0 28px 70px rgba(6, 10, 38, 0.28);
  backdrop-filter: blur(8px);
}

.campus-blueprint-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.campus-blueprint-head span {
  color: #73e0ff;
  font-size: 14px;
  font-weight: 900;
}

.campus-blueprint-head strong {
  color: #ffffff;
  font-size: 22px;
}

.campus-layer-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.campus-layer-card span {
  grid-row: 1 / span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 5px;
  color: #10254f;
  font-weight: 900;
  background: #73e0ff;
}

.campus-layer-card strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.campus-layer-card em {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-style: normal;
}

.campus-layer-card.is-primary {
  border-color: rgba(255, 177, 59, 0.62);
  background: rgba(255, 177, 59, 0.16);
}

.campus-layer-card.is-primary span {
  background: #ffb13b;
}

.product-detail-section {
  padding: 92px clamp(20px, 5vw, 70px);
}

.product-overview,
.product-feature-section,
.product-delivery-section {
  background: #ffffff;
}

.product-workflow-section,
.product-scenario-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(123, 104, 238, 0.1), transparent 24%),
    #f7f9ff;
}

.product-section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.product-section-heading h2,
.product-detail-cta h2 {
  margin: 0 0 18px;
  color: #0b0b31;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.25;
  letter-spacing: 0;
}

.product-section-heading p {
  margin: 0;
  color: #5f5f5f;
  font-size: 17px;
  line-height: 1.8;
}

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

.product-value-grid article,
.product-feature-grid article,
.solution-architecture-grid article,
.delivery-grid article,
.scenario-list article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(123, 104, 238, 0.14);
  border-top: 3px solid #7b68ee;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(20, 26, 64, 0.07);
}

.product-value-grid strong,
.product-feature-grid strong,
.solution-architecture-grid strong,
.delivery-grid strong,
.scenario-list strong {
  display: block;
  margin-bottom: 12px;
  color: #0b0b31;
  font-size: 21px;
  line-height: 1.35;
}

.product-value-grid p,
.product-feature-grid p,
.solution-architecture-grid p,
.delivery-grid p,
.scenario-list p {
  margin: 0;
  color: #5f5f5f;
}

.solution-architecture-grid article {
  position: relative;
  min-height: 218px;
  border-top-color: #0b74bd;
}

.solution-architecture-grid article::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: #ffb13b;
  content: "";
}

.solution-architecture-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0b74bd;
  font-size: 13px;
  font-weight: 900;
  background: rgba(11, 116, 189, 0.1);
}

.product-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.product-workflow li {
  position: relative;
  min-height: 240px;
  padding: 30px 26px;
  border: 1px solid rgba(16, 19, 66, 0.1);
  border-right: 0;
  background: #ffffff;
}

.product-workflow li:last-child {
  border-right: 1px solid rgba(16, 19, 66, 0.1);
}

.product-workflow span,
.delivery-grid span,
.product-feature-grid span {
  display: inline-grid;
  min-width: 42px;
  height: 30px;
  place-items: center;
  margin-bottom: 20px;
  padding: 0 10px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: #7b68ee;
}

.product-workflow strong {
  display: block;
  margin-bottom: 12px;
  color: #0b0b31;
  font-size: 22px;
}

.product-workflow p {
  margin: 0;
  color: #5f5f5f;
}

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

.product-feature-grid article {
  border-top-color: #1f7ad6;
}

.product-feature-grid span {
  background: #1f7ad6;
}

.product-scenario-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.product-scenario-layout .product-section-heading {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

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

.scenario-list article {
  min-height: auto;
}

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

.delivery-grid article {
  min-height: 250px;
  border-top-color: #ff9800;
}

.delivery-grid span {
  background: #ff9800;
}

.product-faq-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(31, 122, 214, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.product-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.product-faq-layout .product-section-heading {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.product-faq-list {
  display: grid;
  gap: 14px;
}

.product-faq-list details {
  border: 1px solid rgba(16, 19, 66, 0.1);
  border-left: 4px solid #1f7ad6;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 26, 64, 0.07);
}

.product-faq-list details[open] {
  border-left-color: #ff9800;
}

.product-detail-page [hidden] {
  display: none !important;
}

.product-theme-deep-blue {
  background: #edf3fb;
}

.product-theme-deep-blue .product-detail-hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(34, 211, 238, 0.2), transparent 26%),
    radial-gradient(circle at 18% 18%, rgba(99, 102, 241, 0.22), transparent 28%),
    linear-gradient(135deg, #071a45 0%, #0f2f57 54%, #124c44 100%);
}

.product-theme-deep-blue .product-detail-page .eyebrow,
.product-theme-deep-blue .product-detail-hero .eyebrow,
.product-theme-deep-blue .product-section-heading .eyebrow {
  color: #159a8f;
}

.product-theme-deep-blue .product-section-heading h2,
.product-theme-deep-blue .product-detail-cta h2 {
  color: #071a45;
}

.product-theme-deep-blue .product-workflow span,
.product-theme-deep-blue .delivery-grid span,
.product-theme-deep-blue .product-feature-grid span {
  background: #159a8f;
}

.product-theme-deep-blue .product-value-grid article,
.product-theme-deep-blue .product-feature-grid article,
.product-theme-deep-blue .delivery-grid article,
.product-theme-deep-blue .scenario-list article {
  border-top-color: #159a8f;
}

.product-theme-clean {
  background: #ffffff;
}

.product-theme-clean .product-detail-hero {
  color: #102233;
  background:
    radial-gradient(circle at 84% 20%, rgba(8, 126, 164, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.product-theme-clean .product-detail-copy h1 {
  color: #102233;
}

.product-theme-clean .product-detail-lede,
.product-theme-clean .product-detail-note {
  color: #526678;
}

.product-theme-clean .ticket-board {
  border-color: #dbe6ee;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 27, 45, 0.1);
}

.product-theme-clean .ticket-board-head strong,
.product-theme-clean .ticket-flow-card strong {
  color: #102233;
}

.product-theme-clean .ticket-flow-card {
  border-color: #dbe6ee;
  background: #f7fafc;
}

.product-theme-clean .ticket-flow-card em {
  color: #667989;
}

.product-theme-clean .product-detail-actions .link-button {
  color: var(--accent);
  border-color: rgba(8, 126, 164, 0.24);
}

.product-hero-center .product-detail-inner {
  grid-template-columns: 1fr;
  max-width: 980px;
  text-align: center;
}

.product-hero-center .product-detail-copy h1,
.product-hero-center .product-detail-lede,
.product-hero-center .product-detail-note {
  margin-right: auto;
  margin-left: auto;
}

.product-hero-center .product-detail-actions {
  justify-content: center;
}

.product-hero-center .ticket-visual {
  display: none;
}

.product-hero-stacked .product-detail-inner {
  grid-template-columns: 1fr;
}

.product-hero-stacked .ticket-visual {
  order: -1;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.product-density-compact .product-detail-section {
  padding-top: 62px;
  padding-bottom: 62px;
}

.product-density-compact .product-section-heading {
  margin-bottom: 26px;
}

.product-density-compact .product-value-grid article,
.product-density-compact .product-feature-grid article,
.product-density-compact .delivery-grid article,
.product-density-compact .scenario-list article {
  min-height: 150px;
  padding: 22px;
}

.product-density-compact .product-workflow li {
  min-height: 190px;
  padding: 24px 22px;
}

.product-density-spacious .product-detail-section {
  padding-top: 118px;
  padding-bottom: 118px;
}

.product-density-spacious .product-section-heading {
  margin-bottom: 52px;
}

.product-density-spacious .product-value-grid,
.product-density-spacious .product-feature-grid,
.product-density-spacious .delivery-grid,
.product-density-spacious .scenario-list {
  gap: 30px;
}

.product-card-icon .product-value-grid article,
.product-card-icon .product-feature-grid article,
.product-card-icon .delivery-grid article,
.product-card-icon .scenario-list article {
  position: relative;
  padding-top: 58px;
}

.product-card-icon .product-value-grid article::before,
.product-card-icon .product-feature-grid article::before,
.product-card-icon .delivery-grid article::before,
.product-card-icon .scenario-list article::before {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #159a8f;
  content: "";
}

.product-card-numbered .product-value-grid,
.product-card-numbered .product-feature-grid,
.product-card-numbered .delivery-grid,
.product-card-numbered .scenario-list {
  counter-reset: product-card;
}

.product-card-numbered .product-value-grid article,
.product-card-numbered .product-feature-grid article,
.product-card-numbered .delivery-grid article,
.product-card-numbered .scenario-list article {
  position: relative;
  padding-top: 60px;
}

.product-card-numbered .product-value-grid article::before,
.product-card-numbered .product-feature-grid article::before,
.product-card-numbered .delivery-grid article::before,
.product-card-numbered .scenario-list article::before {
  position: absolute;
  top: 22px;
  left: 24px;
  color: #159a8f;
  content: counter(product-card, decimal-leading-zero);
  counter-increment: product-card;
  font-size: 18px;
  font-weight: 900;
}

.product-faq-list summary {
  position: relative;
  min-height: 68px;
  padding: 20px 58px 20px 24px;
  color: #0b0b31;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.product-faq-list summary::-webkit-details-marker {
  display: none;
}

.product-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  content: "";
  border-right: 2px solid #1f7ad6;
  border-bottom: 2px solid #1f7ad6;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-faq-list details[open] summary::after {
  border-color: #ff9800;
  transform: translateY(-30%) rotate(225deg);
}

.product-faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.85;
}

.product-detail-cta {
  position: relative;
  overflow: hidden;
  padding: 88px clamp(20px, 5vw, 70px);
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(104, 215, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #101342 0%, #20245f 100%);
}

.product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-cta {
  padding: 112px clamp(20px, 5vw, 70px);
  background:
    radial-gradient(circle at 16% 22%, rgba(104, 215, 255, 0.22), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(255, 255, 255, 0.11), transparent 26%),
    linear-gradient(135deg, #2f63f4 0%, #657cf4 52%, #1f8fd7 100%);
}

.product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 66px 66px;
  content: "";
  opacity: 0.52;
  pointer-events: none;
}

.ops-cta-wave {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 0;
  height: clamp(70px, 8vw, 122px);
  pointer-events: none;
}

.ops-cta-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ops-cta-wave path {
  fill: rgba(255, 255, 255, 0.16);
}

.ops-cta-wave-top {
  top: -1px;
}

.ops-cta-wave-bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

.product-detail-cta .product-detail-container {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.product-detail-cta h2,
.product-detail-cta p {
  color: #ffffff;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-cta .eyebrow {
  color: #d9f1ff;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-cta .btn-primary {
  color: #0d3fbd;
  font-weight: 900;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(22, 68, 132, 0.18);
}

.product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-cta .btn-primary span {
  display: none;
}

.product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-cta .btn-primary:hover {
  color: #ffffff;
  background: #0d3fbd;
}

.product-builder-page main {
  background: #f7fbff;
}

.product-builder-section {
  position: relative;
  overflow: hidden;
  padding: 88px 24px;
}

.product-builder-container,
.product-builder-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.product-builder-hero {
  min-height: 620px;
  padding-top: 132px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 20%, rgba(72, 216, 178, 0.28), transparent 28%),
    linear-gradient(135deg, #10285c 0%, #1f5f9e 48%, #0b9a94 100%);
}

.product-builder-hero::after {
  position: absolute;
  inset: auto -10% -42% -10%;
  height: 360px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  filter: blur(42px);
  transform: rotate(-3deg);
}

.product-builder-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 56px;
  align-items: center;
}

.product-builder-copy h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
}

.product-builder-heading .eyebrow {
  margin: 0;
  color: inherit;
  opacity: 0.78;
}

.product-builder-summary {
  max-width: 780px;
  margin: 0;
  color: inherit;
  font-size: 17px;
  line-height: 1.9;
  opacity: 0.78;
}

.product-builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.product-builder-visual {
  min-height: 360px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 80px rgba(5, 24, 56, 0.28);
  backdrop-filter: blur(12px);
}

.product-builder-visual img,
.product-builder-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.product-builder-hero-center .product-builder-inner {
  grid-template-columns: 1fr;
  text-align: center;
}

.product-builder-hero-center .product-builder-summary,
.product-builder-hero-center .product-builder-copy h1 {
  margin-right: auto;
  margin-left: auto;
}

.product-builder-heading h2 {
  max-width: 820px;
  margin: 10px 0 14px;
  color: #162f62;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.product-builder-container > .product-builder-heading {
  margin-bottom: 34px;
}

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

.product-builder-hero > .product-builder-card-grid {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 48px));
  margin: 42px auto 0;
}

.product-builder-card {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(32, 109, 184, 0.14);
  border-top: 4px solid #3c7df0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(24, 55, 102, 0.08);
}

.product-builder-card span {
  display: inline-flex;
  min-width: 38px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #1674be;
  background: rgba(35, 137, 211, 0.1);
  font-size: 13px;
  font-weight: 700;
}

.product-builder-card strong {
  display: block;
  color: #152b54;
  font-size: 18px;
  line-height: 1.45;
}

.product-builder-card p {
  margin: 10px 0 0;
  color: #5c6d86;
  line-height: 1.75;
}

.product-builder-style-dark {
  color: #ffffff;
  background: #142b52;
}

.product-builder-style-dark .product-builder-heading h2,
.product-builder-style-dark .product-builder-summary {
  color: #ffffff;
}

.product-builder-style-accent {
  background: #ecf8f6;
}

.product-builder-style-plain {
  background: #ffffff;
}

.product-builder-text-image .product-builder-container {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 36px;
  align-items: center;
}

.product-builder-text-image .product-builder-card-grid {
  grid-column: 1 / -1;
}

.product-builder-media {
  min-height: 320px;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(24, 55, 102, 0.12);
}

.product-builder-process-timeline .product-builder-card-grid,
.product-builder-faq .product-builder-card-grid {
  grid-template-columns: 1fr;
}

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

.product-builder-stats .product-builder-card strong {
  font-size: 28px;
}

@media (max-width: 900px) {
  .product-builder-section {
    padding: 64px 18px;
  }

  .product-builder-hero {
    min-height: auto;
    padding-top: 110px;
  }

  .product-builder-inner,
  .product-builder-text-image .product-builder-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-builder-card-grid,
  .product-builder-stats .product-builder-card-grid {
    grid-template-columns: 1fr;
  }

  .product-builder-hero > .product-builder-card-grid {
    width: min(100%, calc(100% - 36px));
  }
}

.product-detail-cta p:not(.eyebrow) {
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

@media (max-width: 1060px) {
  .campus-hero,
  .campus-delivery-section {
    grid-template-columns: 1fr;
  }

  .campus-hero-panel {
    min-height: auto;
  }

  .campus-problem-grid,
  .campus-scene-lanes,
  .campus-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campus-roadmap li:nth-child(2n) {
    border-right: 1px solid rgba(18, 32, 58, 0.1);
  }

  .map-node {
    width: min(250px, 34vw);
  }

  .product-detail-inner,
  .product-scenario-layout,
  .product-faq-layout {
    grid-template-columns: 1fr;
  }

  .product-scenario-layout .product-section-heading,
  .product-faq-layout .product-section-heading {
    position: relative;
    top: auto;
  }

  .product-value-grid,
  .product-feature-grid,
  .solution-architecture-grid,
  .delivery-grid,
  .product-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-workflow li:nth-child(2n) {
    border-right: 1px solid rgba(16, 19, 66, 0.1);
  }
}

@media (max-width: 680px) {
  .campus-hero {
    min-height: auto;
    padding: 92px 18px 58px;
  }

  .campus-hero-copy h1 {
    font-size: 38px;
  }

  .campus-hero-copy > p:not(.campus-kicker) {
    font-size: 16px;
  }

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

  .campus-hero-panel {
    padding: 18px;
  }

  .campus-data-hub {
    width: 190px;
    height: 190px;
  }

  .campus-data-hub span:nth-child(2) {
    transform: translate(0, -98px);
  }

  .campus-data-hub span:nth-child(3) {
    transform: translate(86px, 52px);
  }

  .campus-data-hub span:nth-child(4) {
    transform: translate(-86px, 52px);
  }

  .campus-anchor-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .campus-anchor-strip a {
    white-space: nowrap;
  }

  .campus-problem-band,
  .campus-blueprint-section,
  .campus-scenes-section,
  .campus-architecture-section,
  .campus-path-section,
  .campus-delivery-section,
  .campus-final-cta {
    padding: 68px 18px;
  }

  .campus-problem-grid,
  .campus-scene-lanes,
  .campus-roadmap,
  .campus-delivery-list {
    grid-template-columns: 1fr;
  }

  .campus-problem-grid article,
  .campus-scene-lanes article,
  .campus-roadmap li {
    min-height: auto;
    padding: 24px;
  }

  .campus-scene-lanes span,
  .campus-roadmap span,
  .campus-problem-grid span {
    margin-bottom: 24px;
  }

  .campus-blueprint-map {
    min-height: auto;
    gap: 14px;
    place-items: stretch;
  }

  .campus-blueprint-map::before,
  .campus-blueprint-map::after {
    display: none;
  }

  .campus-map-core,
  .map-node {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 150px;
    border-radius: 8px;
  }

  .campus-layer-stack div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .product-site-header {
    position: relative;
  }

  .product-detail-nav {
    display: none;
  }

  .product-detail-hero {
    padding: 92px 18px 138px;
  }

  .product-detail-copy h1 {
    font-size: 36px;
  }

  .product-detail-lede {
    font-size: 16px;
  }

  .ticket-visual,
  .campus-blueprint-visual {
    min-height: 380px;
  }

  .ticket-board,
  .campus-blueprint-card {
    padding: 18px;
  }

  .product-detail-section,
  .product-detail-cta {
    padding: 68px 18px;
  }

  .product-value-grid,
  .product-feature-grid,
  .solution-architecture-grid,
  .delivery-grid,
  .product-workflow {
    grid-template-columns: 1fr;
  }

  .product-workflow li,
  .product-workflow li:last-child {
    min-height: auto;
    border-right: 1px solid rgba(16, 19, 66, 0.1);
  }

  .product-value-grid article,
  .product-feature-grid article,
  .solution-architecture-grid article,
  .delivery-grid article,
  .scenario-list article {
    min-height: auto;
    padding: 24px;
  }

  .product-faq-list summary {
    min-height: 60px;
    padding: 18px 52px 18px 20px;
    font-size: 17px;
  }

  .product-faq-list p {
    padding: 0 20px 22px;
  }
}

/* English layout refinements. Scoped to the runtime language state so Chinese layout remains unchanged. */
html[lang="en"] body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.62;
  word-break: normal;
  overflow-wrap: break-word;
}

html[lang="en"] .brand {
  min-width: 314px;
}

html[lang="en"] .brand-text strong {
  max-width: 238px;
  font-size: 13px;
  line-height: 1.15;
  white-space: normal;
}

html[lang="en"] .brand-text small {
  max-width: 178px;
  font-size: 9px;
  line-height: 1.2;
  white-space: normal;
}

html[lang="en"] .site-nav a {
  font-size: 14px;
  letter-spacing: 0;
}

html[lang="en"] .language-switch {
  min-width: 28px;
  justify-content: center;
  font-size: 15px !important;
  font-weight: 800;
}

html[lang="en"] .enterprise-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.14;
}

html[lang="en"] .hero-title-line {
  white-space: normal;
  text-wrap: balance;
}

html[lang="en"] .hero-lede {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.78;
}

html[lang="en"] .hero-lede span {
  display: inline;
}

html[lang="en"] .hero-play strong {
  line-height: 1.28;
}

html[lang="en"] .hero-play small {
  display: inline-block;
  max-width: 180px;
  line-height: 1.35;
}

html[lang="en"] .section-title,
html[lang="en"] .section-kicker,
html[lang="en"] .case-copy,
html[lang="en"] .products-heading,
html[lang="en"] .service-intro,
html[lang="en"] .process-heading {
  max-width: 920px;
}

html[lang="en"] .section-title h2,
html[lang="en"] .about-content h2,
html[lang="en"] .overview-content h2,
html[lang="en"] .tab-solution-content h3,
html[lang="en"] .hire-content h2 {
  font-size: clamp(28px, 2.75vw, 38px);
  line-height: 1.22;
  text-wrap: balance;
}

html[lang="en"] .section-title p,
html[lang="en"] .about-content p,
html[lang="en"] .overview-content p,
html[lang="en"] .tab-solution-content p,
html[lang="en"] .hire-content p {
  line-height: 1.68;
}

html[lang="en"] .nowrap {
  white-space: normal;
}

html[lang="en"] .about-section .about-hero {
  grid-template-columns: minmax(620px, 0.94fr) minmax(520px, 1fr);
  gap: 72px;
}

html[lang="en"] .about-section .skills .skill-item h6,
html[lang="en"] .about-capabilities article strong,
html[lang="en"] .business-section .business-entry h3,
html[lang="en"] .service-row h3,
html[lang="en"] .process-section .process-list li strong,
html[lang="en"] .process-guarantees article strong {
  line-height: 1.28;
  text-wrap: balance;
}

html[lang="en"] .business-section .business-entry {
  min-height: 340px;
  padding-right: 28px;
  padding-left: 28px;
}

html[lang="en"] .business-section .business-entry h3 {
  min-height: 58px;
  font-size: 21px;
}

html[lang="en"] .solutions-list-tab .tabs,
html[lang="en"] .product-tabs {
  gap: 10px !important;
}

html[lang="en"] .solutions-list-tab .tabs li a,
html[lang="en"] .solutions-list-tab .tabs li button,
html[lang="en"] .product-tabs button {
  min-width: 0;
  min-height: 54px;
  padding: 11px 17px;
  font-size: 14px;
  line-height: 1.2;
  white-space: normal;
}

html[lang="en"] .solutions-list-tab .tabs li button span {
  display: inline-block;
  max-width: 150px;
  line-height: 1.2;
}

html[lang="en"] .case-band .tabs_item.case-item.is-active .tab-solution-content {
  min-height: 390px;
  padding-right: 22px;
}

html[lang="en"] .case-band .tabs_item.case-item.is-active .tab-solution-content h3 {
  font-size: clamp(28px, 2.4vw, 34px);
}

html[lang="en"] .tab-list li {
  line-height: 1.55;
}

html[lang="en"] .systems-section .product-category-summary {
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
}

html[lang="en"] .systems-section .product-category-summary span {
  white-space: normal;
}

html[lang="en"] .systems-section .product-card,
html[lang="en"] .systems-section .featured-platform.product-card {
  min-height: 330px !important;
  padding: 28px 24px !important;
}

html[lang="en"] .systems-section .product-card strong {
  min-height: 82px;
  font-size: 20px;
  line-height: 1.25;
  text-wrap: balance;
}

html[lang="en"] .systems-section .product-card p {
  min-height: 104px;
  font-size: 14px;
  line-height: 1.62;
}

html[lang="en"] .systems-section .product-card .link-button {
  padding-right: 18px;
  padding-left: 18px;
}

html[lang="en"] .service-section .service-row {
  min-height: 245px;
}

html[lang="en"] .service-section .service-row h3 {
  font-size: 20px;
  min-height: 52px;
}

html[lang="en"] .service-section .service-row p {
  line-height: 1.62;
}

html[lang="en"] .service-guarantees article span,
html[lang="en"] .process-section .process-list li p,
html[lang="en"] .process-guarantees article p {
  line-height: 1.6;
}

html[lang="en"] .process-section .process-list li {
  min-height: 230px;
}

html[lang="en"] .process-section .process-list li strong {
  min-height: 52px;
  font-size: 20px;
}

html[lang="en"] .contact-section .contact-inner h2 {
  max-width: 560px;
  font-size: clamp(32px, 3.1vw, 40px);
}

html[lang="en"] .contact-section .contact-box p {
  padding-right: 24px;
  padding-left: 26px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

html[lang="en"] .contact-section .contact-box span {
  line-height: 1.2;
}

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

  .site-nav [data-nav-label] {
    width: 92px;
  }

  html[lang="en"] .brand {
    min-width: 274px;
  }

  html[lang="en"] .brand-text small {
    display: none;
  }

  html[lang="en"] .site-nav a {
    font-size: 13px;
  }
}

@media (max-width: 1060px) {
  html[lang="en"] .site-nav {
    gap: 0;
  }

  html[lang="en"] .site-nav a {
    font-size: 15px;
    white-space: normal;
  }

  html[lang="en"] .brand {
    min-width: 0;
  }

  html[lang="en"] .brand-text strong {
    max-width: 280px;
  }

  html[lang="en"] .brand-text small {
    display: block;
    max-width: 220px;
  }

  html[lang="en"] .enterprise-hero h1 {
    max-width: 720px;
  }

  html[lang="en"] .about-section .about-hero {
    grid-template-columns: 1fr;
  }

  html[lang="en"] .business-section .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[lang="en"] .systems-section .product-card,
  html[lang="en"] .systems-section .featured-platform.product-card {
    min-height: 310px !important;
  }

  html[lang="en"] .contact-section .contact-box p {
    overflow-wrap: break-word;
  }
}

@media (max-width: 680px) {
  html[lang="en"] .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  html[lang="en"] .brand-text strong {
    max-width: 210px;
    font-size: 12px;
  }

  html[lang="en"] .brand-text small {
    display: none;
  }

  html[lang="en"] .enterprise-hero h1 {
    font-size: clamp(29px, 8vw, 36px);
    line-height: 1.14;
  }

  html[lang="en"] .hero-lede {
    word-break: normal;
    overflow-wrap: break-word;
  }

  html[lang="en"] .hero-lede span {
    display: inline;
  }

  html[lang="en"] .hero-play {
    width: 100%;
    justify-content: center;
  }

  html[lang="en"] .section-title h2,
  html[lang="en"] .about-content h2,
  html[lang="en"] .overview-content h2,
  html[lang="en"] .tab-solution-content h3,
  html[lang="en"] .hire-content h2 {
    font-size: 29px;
    line-height: 1.2;
  }

  html[lang="en"] .business-section .business-grid,
  html[lang="en"] .systems-section .product-card-grid,
  html[lang="en"] .systems-section .featured-platforms.product-card-grid {
    grid-template-columns: 1fr !important;
  }

  html[lang="en"] .business-section .business-entry,
  html[lang="en"] .systems-section .product-card,
  html[lang="en"] .systems-section .featured-platform.product-card,
  html[lang="en"] .service-section .service-row,
  html[lang="en"] .process-section .process-list li {
    min-height: auto !important;
  }

  html[lang="en"] .business-section .business-entry h3,
  html[lang="en"] .systems-section .product-card strong,
  html[lang="en"] .systems-section .product-card p,
  html[lang="en"] .service-section .service-row h3,
  html[lang="en"] .process-section .process-list li strong {
    min-height: 0;
  }

  html[lang="en"] .solutions-list-tab .tabs li a,
  html[lang="en"] .solutions-list-tab .tabs li button,
  html[lang="en"] .product-tabs button {
    min-width: 0;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  html[lang="en"] .solutions-list-tab .tabs li button span {
    max-width: none;
  }

  html[lang="en"] .systems-section .product-category-summary {
    grid-template-columns: 1fr;
  }

  html[lang="en"] .contact-section .contact-box p {
    padding: 20px;
    overflow-wrap: anywhere;
  }
}

.quick-actions {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 90;
  display: grid;
  overflow: hidden;
  width: 76px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(28, 45, 150, 0.26);
  box-shadow: 0 18px 42px rgba(19, 35, 118, 0.26);
  transform: translateY(-50%);
}

/* Back-to-top quick action appears only after meaningful scroll. */
.quick-actions.quick-actions-top-only {
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.quick-actions.quick-actions-top-only:not(.is-visible) {
  opacity: 0;
  pointer-events: none;
  transform: translate(16px, -50%);
  visibility: hidden;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.inquiry-modal.is-open {
  display: flex;
}

.inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 42, 0.58);
  backdrop-filter: blur(4px);
}

/* Inquiry modal enterprise refinement. */
/* Inquiry modal restrained institutional card. */
.inquiry-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  padding: 34px 36px 36px;
  border: 1px solid rgba(198, 209, 226, 0.9);
  border-radius: 10px;
  background: #fbfdff;
  box-shadow: 0 22px 58px rgba(15, 35, 75, 0.18);
}

.inquiry-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(178, 191, 212, 0.66);
  border-radius: 6px;
  background: #f3f7fc;
  color: #30405a;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.inquiry-close:hover {
  border-color: rgba(47, 99, 244, 0.28);
  background: #eaf1ff;
  color: var(--home-primary);
}

.inquiry-dialog-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--home-primary);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-dialog-head h2 {
  margin: 0;
  max-width: 520px;
  color: #10213f;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.32;
}

.inquiry-dialog-head p {
  max-width: 520px;
  margin: 10px 0 24px;
  color: #5b6a80;
  font-size: 15px;
  line-height: 1.7;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: #253754;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(116, 134, 165, 0.34);
  border-radius: 6px;
  background: #f8fbff;
  color: #10213f;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.inquiry-form input,
.inquiry-form select {
  height: 46px;
  padding: 0 13px;
}

.inquiry-native-select {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.inquiry-custom-select {
  position: relative;
  width: 100%;
}

.inquiry-select-trigger {
  position: relative;
  display: flex;
  width: 100%;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px 0 13px;
  border: 1px solid rgba(116, 134, 165, 0.34);
  border-radius: 6px;
  color: #10213f;
  background: #f8fbff;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.inquiry-select-trigger::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #536579;
  border-bottom: 2px solid #536579;
  content: "";
  transform: translateY(-62%) rotate(45deg);
  transition: transform 160ms ease, border-color 160ms ease;
}

.inquiry-custom-select.is-open .inquiry-select-trigger {
  border-color: var(--home-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(47, 99, 244, 0.12);
}

.inquiry-custom-select.is-open .inquiry-select-trigger::after {
  border-color: var(--home-primary);
  transform: translateY(-35%) rotate(225deg);
}

.inquiry-select-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 4;
  display: none;
  width: 100%;
  max-height: 280px;
  overflow: auto;
  padding: 6px;
  border: 1px solid rgba(116, 134, 165, 0.24);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 35, 75, 0.14);
}

.inquiry-custom-select.is-open .inquiry-select-panel {
  display: grid;
  gap: 2px;
}

.inquiry-select-search {
  width: 100%;
  height: 36px;
  margin-bottom: 6px;
  padding: 0 10px;
  border: 1px solid rgba(116, 134, 165, 0.28);
  border-radius: 6px;
  color: #10213f;
  background: #f8fbff;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.inquiry-select-search:focus {
  border-color: var(--home-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(47, 99, 244, 0.12);
}

.inquiry-select-option {
  width: 100%;
  min-height: 36px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  color: #263a5f;
  background: transparent;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.inquiry-select-option:hover,
.inquiry-select-option:focus-visible,
.inquiry-select-option.is-active {
  color: var(--home-primary);
  background: rgba(47, 99, 244, 0.08);
  outline: none;
}

.inquiry-select-option.is-selected {
  color: #173a72;
  background: rgba(47, 99, 244, 0.1);
  font-weight: 800;
}

.inquiry-select-option.is-selected.is-active {
  color: #173a72;
  background: rgba(47, 99, 244, 0.14);
}

.inquiry-form textarea {
  min-height: 92px;
  padding: 12px 13px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--home-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(47, 99, 244, 0.12);
}

.inquiry-form input:focus-visible,
.inquiry-form select:focus-visible,
.inquiry-form textarea:focus-visible {
  outline: 3px solid rgba(47, 99, 244, 0.32);
  outline-offset: 2px;
}

.inquiry-form-full,
.inquiry-status,
.inquiry-consent,
.inquiry-submit {
  grid-column: 1 / -1;
}

.inquiry-status {
  min-height: 20px;
  margin: 0;
  color: #667085;
  font-size: 13px;
}

.inquiry-status.is-error {
  color: #b42318;
}

.inquiry-status.is-success {
  color: #067647;
}

.inquiry-consent {
  margin: -4px 0 0;
  color: #6b778c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.inquiry-submit {
  height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--home-primary);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(47, 99, 244, 0.18);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.inquiry-submit:hover {
  background: #244fd7;
  box-shadow: 0 12px 24px rgba(47, 99, 244, 0.22);
}

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

body.inquiry-modal-open {
  overflow: hidden;
}

/* Customer cases page. */
.customer-cases-page {
  background: #f5f8fb;
}

.customer-cases-page .case-detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 132px 24px 72px;
  color: #102233;
  background:
    radial-gradient(circle at 8% 18%, rgba(47, 99, 244, 0.08), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(104, 215, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #f6f8f6 0%, #ffffff 100%);
}

.customer-cases-page .case-detail-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, #f5f8fb 100%);
  content: "";
}

.customer-cases-page .case-detail-hero .campus-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.customer-cases-page .case-detail-hero .campus-kicker::after {
  background: linear-gradient(90deg, #68d7ff, transparent);
}

.case-detail-hero::before {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at 18% 70%, rgba(104, 215, 255, 0.14), transparent 34%),
    linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 42% 42.15%, transparent 42.15% 100%);
  content: "";
  pointer-events: none;
}

.case-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.case-hero-copy {
  display: grid;
  gap: 22px;
}

.case-hero-copy p:not(.campus-kicker) {
  max-width: 640px;
  margin: 0;
  color: #5b6c7c;
  font-size: 18px;
  line-height: 1.9;
}

.case-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(47, 99, 244, 0.13);
  border-radius: 8px;
  aspect-ratio: 16 / 11;
  background: #e8eef5;
  box-shadow: 0 30px 72px rgba(16, 34, 51, 0.14);
}

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

.case-hero-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.representative-customer {
  min-height: 132px;
  padding: 24px 28px;
  border: 1px solid rgba(47, 99, 244, 0.12);
  border-left: 4px solid #2f63f4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(16, 34, 51, 0.07);
}

.representative-customer span,
.representative-customer strong,
.representative-customer em {
  display: block;
}

.representative-customer span {
  color: #2f63f4;
  font-size: 13px;
  font-weight: 900;
}

.representative-customer strong {
  margin-top: 10px;
  color: #102233;
  font-size: 24px;
  line-height: 1.28;
}

.representative-customer em {
  margin-top: 8px;
  color: #667989;
  font-style: normal;
  line-height: 1.5;
}

.case-banner-inner,
.case-detail-container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.case-banner-inner h1 {
  max-width: 760px;
  margin: 0;
  color: #102233;
  font-size: clamp(36px, 4.3vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.case-detail-section {
  padding: 92px 0;
  background: #ffffff;
}

.case-center-section {
  padding-top: 36px;
}

.case-detail-section + .case-detail-section {
  background: #f5f8fb;
}

.case-category-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 28px;
  border: 1px solid #e6edf4;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 35, 75, 0.07);
}

.case-category-nav button {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 0;
  color: #7a8b9a;
  border: 0;
  border-right: 1px solid #e6edf4;
  font-size: 16px;
  font-weight: 900;
  font-family: inherit;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.case-category-nav button:last-child {
  border-right: 0;
}

.case-category-nav button:hover,
.case-category-nav button.is-active {
  color: #ffffff;
  background: #2f7df0;
  box-shadow: 0 12px 28px rgba(47, 125, 240, 0.2);
}

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

.customer-story-card {
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(15, 35, 75, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.customer-story-card.is-hidden {
  display: none;
}

.customer-story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 72px rgba(15, 35, 75, 0.14);
}

.customer-story-card a {
  display: grid;
  color: inherit;
}

.customer-story-card figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: #e8f0f8;
}

.customer-story-card figure > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.customer-story-card:hover figure > img {
  transform: scale(1.045);
}

.customer-school-logo {
  position: absolute;
  left: 18px;
  bottom: -24px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  padding: 8px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 35, 75, 0.18);
}

.customer-school-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.customer-school-logo-wide {
  width: 104px;
  height: 52px;
  border-radius: 10px;
  padding: 8px 10px;
}

.customer-story-content {
  display: grid;
  gap: 14px;
  padding: 34px 24px 28px;
}

.customer-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.customer-story-meta span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  color: #2f63f4;
  border-radius: 4px;
  background: rgba(47, 99, 244, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.customer-story-card h3 {
  margin: 0;
  color: #102233;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.32;
}

.customer-story-card p {
  margin: 0;
  color: #667989;
  line-height: 1.75;
}

.case-detail-cta {
  margin-top: 0;
  padding: 104px clamp(20px, 5vw, 70px) 108px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(80, 214, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #2f73f4 0%, #6678f4 52%, #28a7dc 100%);
}

.case-detail-cta::before,
.case-detail-cta::after {
  position: absolute;
  right: -8%;
  left: -8%;
  z-index: 0;
  height: 128px;
  content: "";
  pointer-events: none;
}

.case-detail-cta::before {
  top: -72px;
  border-radius: 0 0 50% 50%;
  background: rgba(255, 255, 255, 0.18);
}

.case-detail-cta::after {
  bottom: -76px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.16);
}

.case-detail-cta .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.case-detail-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.case-detail-cta .btn-primary {
  color: #0d4eb8;
  font-weight: 900;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(22, 68, 132, 0.18);
}

.case-detail-cta .btn-primary span {
  display: none;
}

.case-detail-cta .btn-primary:hover {
  color: #ffffff;
  background: #0d4eb8;
}

@media (max-height: 820px) and (min-width: 981px) {
  .customer-cases-page .case-detail-hero {
    min-height: 520px;
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .case-hero-media {
    aspect-ratio: 16 / 10;
  }

  .representative-customer {
    min-height: 112px;
    padding: 20px 24px;
  }
}

@media (max-width: 980px) {
  .case-banner-inner {
    grid-template-columns: 1fr;
  }

  .case-hero-media {
    max-width: 680px;
  }

  .customer-story-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .customer-cases-page .case-detail-hero {
    min-height: auto;
    padding: 92px 18px 44px;
    background-position: 58% center;
  }

  .case-banner-inner,
  .case-detail-container {
    width: calc(100vw - 36px);
  }

  .case-banner-inner h1 {
    font-size: 34px;
  }

  .case-hero-copy p:not(.campus-kicker) {
    font-size: 16px;
    line-height: 1.78;
  }

  .case-hero-facts {
    grid-template-columns: 1fr;
  }

  .case-detail-section {
    padding: 62px 0;
  }

  .case-center-section {
    padding-top: 28px;
  }

  .case-category-nav {
    margin-bottom: 22px;
  }

  .case-category-nav button {
    min-height: 52px;
    font-size: 14px;
  }

  .customer-story-content {
    padding: 22px;
  }
}

.quick-actions a {
  display: grid;
  min-height: 78px;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 12px 8px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: background 180ms ease, transform 180ms ease;
}

.quick-actions a:nth-child(1) {
  background: linear-gradient(180deg, #2f7df0, #326fe9);
}

.quick-actions a:nth-child(2) {
  background: linear-gradient(180deg, #326fe9, #3f5fe0);
}

.quick-actions a:nth-child(3) {
  background: linear-gradient(180deg, #3f5fe0, #6652df);
}

.quick-actions.quick-actions-top-only a:nth-child(1) {
  background: linear-gradient(180deg, #3f5fe0, #6652df);
}

.quick-actions.quick-actions-top-only {
  width: 72px;
}

.quick-actions a:last-child {
  border-bottom: 0;
}

.quick-actions a:hover {
  filter: brightness(1.08);
}

.quick-actions a[aria-disabled="true"] {
  cursor: pointer;
}

.quick-actions a[aria-disabled="true"]:hover {
  filter: none;
  transform: none;
}

.quick-action-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.quick-action-consult {
  border: 0;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 3.5C7.93 3.5 3.5 7.46 3.5 12.6C3.5 17.74 7.93 21.7 14 21.7C15.34 21.7 16.61 21.5 17.77 21.13L23.18 24.2L21.64 18.97C23.45 17.33 24.5 15.11 24.5 12.6C24.5 7.46 20.07 3.5 14 3.5Z' stroke='white' stroke-width='2.2' stroke-linejoin='round'/%3E%3Ccircle cx='10.3' cy='12.65' r='1.35' fill='white'/%3E%3Ccircle cx='14' cy='12.65' r='1.35' fill='white'/%3E%3Ccircle cx='17.7' cy='12.65' r='1.35' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px 28px;
}

.quick-action-consult::before,
.quick-action-consult::after {
  position: absolute;
  display: none;
  content: "";
}

.quick-action-consult::before {
  display: none;
}

.quick-action-consult::after {
  display: none;
}

.quick-action-cases::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  background: #ffffff;
  clip-path: polygon(50% 0, 62% 34%, 98% 36%, 70% 58%, 79% 94%, 50% 73%, 21% 94%, 30% 58%, 2% 36%, 38% 34%);
  content: "";
  transform: translate(-50%, -50%);
}

.quick-action-top {
  border-radius: 0;
  border: 0;
}

.quick-action-top::before,
.quick-action-top::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}

.quick-action-top::before {
  top: 4px;
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
  border-bottom: 11px solid #ffffff;
  border-left: 11px solid transparent;
}

.quick-action-top::after {
  top: 17px;
  width: 12px;
  height: 10px;
  background: #ffffff;
}

@media (max-width: 680px) {
  .quick-actions {
    right: 12px;
    top: auto;
    bottom: 18px;
    width: auto;
    grid-template-columns: repeat(3, 1fr);
    transform: none;
  }

  .quick-actions.quick-actions-top-only {
    width: auto;
    grid-template-columns: 1fr;
  }

  .quick-actions a {
    min-width: 66px;
    min-height: 64px;
    border-right: 1px solid rgba(255, 255, 255, 0.32);
    border-bottom: 0;
    font-size: 12px;
  }

  .inquiry-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .inquiry-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 26px 18px 20px;
    border-radius: 16px;
  }

  .inquiry-dialog-head h2 {
    padding-right: 36px;
    font-size: 22px;
  }

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

  .quick-actions a:last-child {
    border-right: 0;
  }

  .quick-action-icon {
    width: 24px;
    height: 24px;
  }
}

/* Mobile layout hardening. Keep desktop rules untouched and override late desktop-heavy blocks. */
@media (max-width: 760px) {
  body:not(.product-detail-page) {
    padding-bottom: 88px;
  }

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

  .brand {
    max-width: calc(100vw - 76px);
    height: 48px;
    padding: 0;
    background: transparent;
  }

  .brand-logo {
    height: 30px;
    max-width: 64px;
    flex: 0 0 auto;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    max-width: 220px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .site-nav {
    top: 72px;
    right: 12px;
    left: 12px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav a,
  .site-nav .nav-submenu a {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.35;
    white-space: normal;
  }

  .nav-submenu {
    margin-top: 2px;
  }

  .language-switch {
    justify-content: flex-start;
  }

  .section,
  .case-band,
  .product-detail-section,
  .product-detail-cta,
  .contact-section.hire-section {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .enterprise-hero {
    min-height: auto !important;
    padding: 104px 18px 84px !important;
    align-items: flex-start;
  }

  .hero-inner,
  .about-section .about-hero,
  .case-band .tabs_item.case-item.is-active,
  .service-section .service-layout,
  .service-section.services-section .service-layout,
  .contact-section .contact-inner,
  .product-detail-inner,
  .product-scenario-layout,
  .product-faq-layout {
    grid-template-columns: 1fr !important;
  }

  .hero-inner {
    gap: 26px;
    text-align: left;
  }

  .enterprise-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.18 !important;
  }

  .hero-title-line,
  html[lang="en"] .hero-title-line {
    white-space: normal;
  }

  .mobile-title-break {
    display: inline;
  }

  .hero-lede {
    font-size: 15px;
    line-height: 1.7;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-lede span,
  html[lang="en"] .hero-lede span {
    display: inline;
  }

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

  .btn,
  .hero-actions .btn,
  .product-detail-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
  }

  .hero-play {
    width: 100%;
    justify-content: flex-start;
  }

  .play-circle {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .hero-visual,
  .banner-image {
    min-height: 220px !important;
  }

  .banner-image {
    transform: none;
  }

  .banner-image img {
    width: min(88vw, 330px) !important;
    margin-right: auto;
    margin-left: auto;
  }

  h2,
  .section-kicker h2,
  .case-copy h2,
  .products-heading h2,
  .service-intro h2,
  .process-heading h2,
  .solution-panel h2,
  .about-copy h2,
  .contact-section h2,
  .product-section-heading h2,
  .product-detail-cta h2 {
    font-size: clamp(26px, 7vw, 32px) !important;
    line-height: 1.28 !important;
    text-wrap: balance;
  }

  .section-kicker,
  .case-copy,
  .products-heading,
  .service-intro,
  .process-heading {
    margin-bottom: 34px !important;
  }

  .section-kicker p,
  .case-copy p,
  .products-heading p,
  .service-intro p,
  .process-heading p,
  .solution-panel p,
  .about-copy p,
  .contact-inner > p:not(.eyebrow),
  .product-section-heading p,
  .product-detail-lede,
  .product-detail-note {
    font-size: 15px !important;
    line-height: 1.72 !important;
  }

  .about-section .about-profile {
    order: 0;
  }

  .about-section .about-content {
    padding: 0 !important;
  }

  .about-copy .lead {
    font-size: 17px !important;
    line-height: 1.68;
  }

  .about-capabilities,
  .business-section .business-grid,
  .process-section .process-list,
  .process-section .process-guarantees,
  .solution-section .solution-points,
  .service-section .service-grid-list,
  .service-section.services-section .service-grid-list,
  .service-guarantees,
  .systems-section .product-card-grid,
  .systems-section .featured-platforms.product-card-grid,
  .product-value-grid,
  .product-feature-grid,
  .solution-architecture-grid,
  .delivery-grid,
  .product-workflow {
    grid-template-columns: 1fr !important;
  }

  .about-capabilities article,
  .business-section .business-entry,
  .systems-section .product-card,
  .systems-section .featured-platform.product-card,
  .service-section .service-row,
  .process-section .process-list li,
  .process-section .process-guarantees article,
  .solution-section .solution-points article,
  .product-value-grid article,
  .product-feature-grid article,
  .solution-architecture-grid article,
  .delivery-grid article,
  .scenario-list article {
    min-height: auto !important;
    padding: 24px !important;
  }

  .about-capabilities strong {
    white-space: normal;
  }

  .solutions-list-tab .tabs,
  .product-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
    margin-bottom: 24px !important;
  }

  .solutions-list-tab .tabs li,
  .product-tabs button {
    min-width: 0 !important;
    width: 100%;
  }

  .solutions-list-tab .tabs li button,
  .product-tabs button {
    width: 100%;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 10px 8px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    white-space: normal;
  }

  .case-band .tab_content.case-list {
    padding: 0 !important;
    border-radius: 6px;
  }

  .case-band .tabs_item.case-item.is-active {
    min-height: auto !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-solution-content {
    min-height: auto !important;
    padding: 26px 22px 30px !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-solution-content h3 {
    font-size: 26px !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-image {
    height: 220px !important;
    max-height: 220px !important;
    order: -1;
  }

  .case-band .tabs_item.case-item.is-active .tab-image img {
    min-height: 0 !important;
  }

  .featured-product-callout {
    display: grid;
    gap: 18px;
    padding: 24px !important;
  }

  .featured-product-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-category-summary {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .service-section .service-promise,
  .service-section.services-section .service-promise {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    padding: 30px 24px !important;
  }

  .contact-section .contact-box {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .contact-section .contact-box p {
    min-height: auto !important;
    padding: 18px !important;
    overflow: visible !important;
    overflow-wrap: anywhere;
  }

  body:not(.product-detail-page) .site-footer {
    display: grid;
    gap: 8px;
    padding: 24px 18px 112px;
    text-align: center;
  }

  .quick-actions {
    right: 12px !important;
    bottom: 12px !important;
    left: 12px;
    width: auto !important;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 8px;
  }

  .quick-actions a {
    min-width: 0;
    min-height: 58px;
    padding: 8px 6px;
    font-size: 12px;
  }

  .quick-action-icon {
    width: 22px;
    height: 22px;
  }

  .product-site-header {
    position: fixed !important;
  }

  .product-detail-nav.is-open {
    display: flex !important;
  }

  .product-detail-hero {
    padding: 98px 18px 132px !important;
  }

  .product-detail-copy h1 {
    font-size: clamp(30px, 8vw, 38px) !important;
    line-height: 1.18 !important;
  }

  .product-detail-actions {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .product-detail-actions .link-button,
  .product-detail-cta .btn {
    width: 100%;
  }

  .ticket-visual,
  .campus-blueprint-visual {
    min-height: 330px !important;
  }

  .ticket-board,
  .campus-blueprint-card {
    padding: 18px !important;
  }

  .ticket-flow-card,
  .campus-layer-card {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    padding: 14px !important;
  }

  .product-workflow li,
  .product-workflow li:last-child {
    border-right: 1px solid rgba(16, 19, 66, 0.1) !important;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    max-width: 172px;
    font-size: 12px;
  }

  .enterprise-hero {
    padding-top: 96px !important;
  }

  .solutions-list-tab .tabs,
  .product-tabs {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .banner-image {
    min-height: 190px !important;
  }

  .banner-image img {
    width: min(84vw, 280px) !important;
  }

  .campus-screen {
    right: 16px;
    left: 16px;
    padding: 16px;
  }
}

/* Final overrides for the digital-campus solution detail page. */
@media (max-width: 1060px) {
  .campus-solution-page .campus-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 112px;
    padding-bottom: 62px;
  }

  .campus-solution-page .campus-hero-visual {
    width: min(560px, 100%);
    justify-self: start;
  }

  .campus-final-card {
    grid-template-columns: 1fr;
  }

  .campus-final-card .btn {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .campus-solution-page .campus-hero {
    padding: 100px 18px 52px;
    background-position: 38% center;
  }

  .campus-solution-page .campus-hero-copy h1 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .campus-solution-page .campus-hero-copy > p:not(.campus-kicker) {
    font-size: 15px;
    line-height: 1.72;
  }

  .campus-solution-page .campus-hero-visual {
    min-height: 335px;
    border-radius: 10px;
  }

  .campus-screen-card {
    top: 84px;
    width: min(226px, calc(100% - 44px));
    min-height: 150px;
    padding: 22px 18px;
  }

  .campus-screen-card strong {
    font-size: 28px;
  }

  .campus-visual-node {
    min-width: 118px;
    padding: 12px 13px;
  }

  .campus-visual-node.node-entry {
    top: 42px;
    left: 18px;
  }

  .campus-visual-node.node-data {
    top: 174px;
    right: 14px;
  }

  .campus-visual-node.node-service {
    bottom: 26px;
    left: 22px;
  }

  .campus-pulse-ring.ring-one {
    top: 66px;
    left: 64px;
    width: 150px;
    height: 150px;
  }

  .campus-pulse-ring.ring-two {
    right: 32px;
    bottom: 42px;
    width: 118px;
    height: 118px;
    inset: auto 32px 42px auto;
  }

  .campus-problem-band::before,
  .campus-scenes-section::before,
  .campus-delivery-section::before {
    display: none;
  }

  .campus-final-card {
    padding: 26px 22px;
    border-radius: 10px;
  }

  .campus-final-card .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Digital campus detail page v2: editorial technology layout. */
.campus-command-section {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  margin: -34px auto 0;
  padding: 38px;
  border: 1px solid rgba(11, 116, 189, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 252, 0.94));
  box-shadow: 0 30px 90px rgba(17, 43, 88, 0.14);
}

.campus-command-photo {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 12px;
  background: #10254f;
}

.campus-command-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.campus-command-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 22%, rgba(9, 24, 58, 0.86) 100%),
    linear-gradient(90deg, rgba(115, 224, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(115, 224, 255, 0.12) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  content: "";
}

.campus-command-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid #73e0ff;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(9, 24, 58, 0.62);
  backdrop-filter: blur(10px);
}

.campus-command-panel span {
  color: #73e0ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.campus-command-panel strong {
  font-size: 26px;
  line-height: 1.25;
}

.campus-command-panel em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.campus-command-copy h2 {
  margin: 0;
  color: #12203a;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.18;
}

.campus-command-copy > p:not(.campus-kicker) {
  margin: 20px 0 0;
  color: #5d6b7c;
  font-size: 17px;
  line-height: 1.86;
}

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

.campus-command-metrics span {
  display: grid;
  min-height: 104px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(11, 116, 189, 0.12);
  border-radius: 10px;
  color: #31506f;
  background: #ffffff;
}

.campus-command-metrics b {
  color: #0b74bd;
  font-size: 34px;
  line-height: 1;
}

.campus-blueprint-section {
  background:
    radial-gradient(circle at 22% 18%, rgba(115, 224, 255, 0.18), transparent 28%),
    radial-gradient(circle at 78% 76%, rgba(255, 177, 59, 0.13), transparent 26%),
    linear-gradient(180deg, #eef5fb 0%, #ffffff 100%);
}

.campus-blueprint-map {
  min-height: 620px;
}

.campus-blueprint-map::before {
  animation: campusBlueprintSpin 18s linear infinite;
}

.campus-blueprint-map::after {
  border-style: dashed;
  animation: campusBlueprintSpin 30s linear infinite reverse;
}

.campus-map-core {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 28% 24%, rgba(115, 224, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #10254f, #0b74bd);
}

.campus-map-core::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.map-node {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-node:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 68px rgba(30, 63, 105, 0.18);
}

.map-node::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b74bd, #ffb13b);
  content: "";
}

.campus-scenes-section {
  background:
    linear-gradient(90deg, rgba(8, 18, 46, 0.94), rgba(8, 28, 64, 0.86)),
    url("image/stock-business-platform-computer-lab-web.jpg") center / cover no-repeat;
}

.campus-scene-lanes {
  gap: 18px;
  border: 0;
}

.campus-scene-lanes article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.campus-scene-lanes article::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(115, 224, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.campus-scene-lanes span {
  margin-bottom: 36px;
  border-radius: 6px;
  background: linear-gradient(90deg, #73e0ff, #ffb13b);
}

.campus-architecture-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 15%, rgba(115, 224, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #08122e 0%, #10254f 58%, #0b3e6b 100%);
}

.campus-architecture-section .campus-section-head h2 {
  color: #ffffff;
}

.campus-layer-stack {
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 76px rgba(1, 8, 28, 0.28);
}

.campus-layer-stack div {
  position: relative;
  grid-template-columns: 190px minmax(0, 1fr);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 0;
  border-radius: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
}

.campus-layer-stack div:last-child {
  border-bottom: 0;
}

.campus-layer-stack div:nth-child(2n) {
  border-left-color: transparent;
  background: rgba(255, 255, 255, 0.085);
}

.campus-layer-stack div::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #73e0ff;
  box-shadow: 0 0 18px rgba(115, 224, 255, 0.72);
  content: "";
  transform: translateY(-50%);
}

.campus-layer-stack span {
  color: #73e0ff;
}

.campus-layer-stack strong {
  color: rgba(255, 255, 255, 0.86);
}

.campus-roadmap {
  gap: 16px;
}

.campus-roadmap li,
.campus-roadmap li:last-child {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 116, 189, 0.12);
  border-radius: 12px;
}

.campus-roadmap li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0b74bd, #73e0ff, #ffb13b);
  content: "";
}

.campus-roadmap span {
  border-radius: 12px;
  background: linear-gradient(135deg, #0b74bd, #10254f);
}

.campus-delivery-section {
  position: relative;
  border-top: 1px solid rgba(11, 116, 189, 0.08);
}

.campus-delivery-list span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92px;
  padding-left: 54px;
  border: 1px solid rgba(11, 116, 189, 0.1);
  background: linear-gradient(135deg, #ffffff, #edf5fb);
}

.campus-delivery-list span::before {
  position: absolute;
  left: 22px;
  width: 14px;
  height: 14px;
  border: 3px solid #73e0ff;
  border-radius: 50%;
  background: #0b74bd;
  content: "";
}

@keyframes campusBlueprintSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1060px) {
  .campus-command-section {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .campus-blueprint-map {
    min-height: 560px;
  }

  .campus-layer-stack div {
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .campus-command-section {
    width: calc(100% - 36px);
    padding: 20px;
    border-radius: 12px;
  }

  .campus-command-photo,
  .campus-command-photo img {
    min-height: 280px;
  }

  .campus-command-panel {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px;
  }

  .campus-command-panel strong {
    font-size: 22px;
  }

  .campus-command-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .campus-command-metrics {
    grid-template-columns: 1fr;
  }

  .campus-blueprint-map {
    min-height: 620px;
  }

  .map-node {
    width: min(230px, 76vw);
    padding: 20px;
  }

  .node-right,
  .node-left {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .node-right {
    top: 130px;
  }

  .node-left {
    bottom: 130px;
  }

  .map-node:hover {
    transform: translateY(-6px);
  }

  .node-right:hover,
  .node-left:hover {
    transform: translateX(-50%) translateY(-6px);
  }

  .campus-layer-stack div {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 22px 22px 34px;
  }

  .campus-layer-stack div::before {
    left: 16px;
  }

  .campus-roadmap {
    gap: 12px;
  }
}

/* Digital campus detail page v3: SaaS landing style inspired by the reference demo. */
.campus-solution-page {
  background: #ffffff;
}

.campus-solution-page .campus-hero {
  display: block;
  min-height: 820px;
  padding: 132px clamp(20px, 5vw, 70px) 92px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(115, 224, 255, 0.2), transparent 22%),
    linear-gradient(135deg, #2b63f0 0%, #5f7cf4 45%, #7f72f0 100%);
}

.campus-solution-page .campus-hero::before {
  opacity: 0.42;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255, 255, 255, 0.26) 0 1px, transparent 2px);
  background-position: 0 0, 52px 38px;
  background-size: 118px 118px, 86px 86px;
  animation: campusParticlesDrift 18s linear infinite;
}

.campus-solution-page .campus-hero::after {
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #ffffff;
  clip-path: ellipse(72% 78% at 50% 100%);
  opacity: 1;
  animation: none;
}

.campus-template-particles {
  position: absolute;
  z-index: 0;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 2px, transparent 3px);
  background-size: 28px 28px;
  opacity: 0.28;
  animation: campusTemplateFloat 8s ease-in-out infinite;
}

.campus-template-particles.particles-one {
  top: 128px;
  left: clamp(12px, 6vw, 120px);
}

.campus-template-particles.particles-two {
  right: clamp(14px, 7vw, 135px);
  bottom: 210px;
  animation-delay: 1.4s;
  animation-direction: reverse;
}

.campus-solution-page .campus-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.campus-solution-page .campus-hero-copy .campus-kicker {
  color: rgba(255, 255, 255, 0.88);
}

.campus-solution-page .campus-hero-copy h1 {
  max-width: none;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.15;
}

.campus-solution-page .campus-hero-copy > p:not(.campus-kicker) {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.85;
}

.campus-solution-page .campus-hero-actions {
  justify-content: center;
}

.campus-solution-page .campus-text-link {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.subpage-hero-actions .subpage-hero-link,
.product-detail-actions .subpage-hero-link,
.campus-hero-actions .subpage-hero-link {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 14px;
  padding: 0;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.subpage-hero-actions .subpage-hero-link::before,
.product-detail-actions .subpage-hero-link::before,
.campus-hero-actions .subpage-hero-link::before {
  flex: 0 0 auto;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(145, 238, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 36%, #ffffff 0 2px, transparent 3px),
    radial-gradient(circle at 66% 64%, rgba(255, 255, 255, 0.86) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(104, 215, 255, 0.95), rgba(47, 99, 244, 0.86));
  box-shadow: 0 10px 24px rgba(0, 42, 120, 0.26);
  content: "";
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.subpage-hero-actions .subpage-hero-link::after,
.product-detail-actions .subpage-hero-link::after,
.campus-hero-actions .subpage-hero-link::after {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.86;
  transform: rotate(45deg) scale(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

/* subpage-hero-link-layout-style: match the homepage guide link with a double-dot circle and separate arrow. */

.subpage-hero-actions .subpage-hero-link:hover,
.product-detail-actions .subpage-hero-link:hover,
.campus-hero-actions .subpage-hero-link:hover {
  color: #d9f1ff !important;
  transform: translateX(2px);
}

.subpage-hero-actions .subpage-hero-link:hover::before,
.product-detail-actions .subpage-hero-link:hover::before,
.campus-hero-actions .subpage-hero-link:hover::before {
  border-color: rgba(145, 238, 255, 0.68);
  box-shadow: 0 14px 30px rgba(0, 118, 255, 0.32);
  transform: translateY(-1px) rotate(-8deg);
}

.subpage-hero-actions .subpage-hero-link:hover::after,
.product-detail-actions .subpage-hero-link:hover::after,
.campus-hero-actions .subpage-hero-link:hover::after {
  opacity: 1;
  transform: translateX(3px) rotate(45deg) scale(0.7);
}

.campus-solution-page .campus-hero-visual {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  min-height: 390px;
  margin: 56px auto 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 242, 255, 0.94));
  box-shadow:
    0 36px 90px rgba(23, 47, 142, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: campusHeroPanelIn 1.2s ease both, campusSolutionFloat 7s ease-in-out infinite 1.2s;
}

.campus-solution-page .campus-hero-visual::before {
  inset: 20px;
  border-color: rgba(43, 99, 240, 0.12);
  border-radius: 14px;
}

.campus-solution-page .campus-hero-visual::after {
  top: 20px;
  right: auto;
  left: 28px;
  width: 72px;
  height: 10px;
  background:
    radial-gradient(circle, #ff6b6b 0 4px, transparent 5px),
    radial-gradient(circle, #ffb13b 0 4px, transparent 5px),
    radial-gradient(circle, #22c55e 0 4px, transparent 5px);
  background-position: 0 0, 24px 0, 48px 0;
  background-repeat: no-repeat;
  box-shadow: none;
}

.campus-solution-page .campus-visual-grid {
  background-image:
    linear-gradient(rgba(43, 99, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 99, 240, 0.08) 1px, transparent 1px);
  mask-image: none;
  opacity: 1;
}

.campus-solution-page .campus-screen-card {
  top: 86px;
  width: min(360px, calc(100% - 80px));
  min-height: 190px;
  color: #13245c;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(36, 73, 160, 0.14);
}

.campus-solution-page .campus-screen-card span {
  color: #5f7cf4;
}

.campus-solution-page .campus-screen-card strong {
  color: #13245c;
  font-size: 38px;
}

.campus-solution-page .campus-screen-card em {
  color: #7583a5;
}

.campus-solution-page .campus-visual-node {
  border-color: rgba(43, 99, 240, 0.13);
  border-left: 0;
  border-radius: 14px;
  color: #13245c;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(36, 73, 160, 0.14);
}

.campus-solution-page .campus-visual-node small {
  color: #7583a5;
}

.campus-solution-page .campus-pulse-ring {
  border-color: rgba(95, 124, 244, 0.2);
  box-shadow: 0 0 28px rgba(95, 124, 244, 0.12);
}

.campus-solution-page .campus-flow-line {
  background: linear-gradient(90deg, transparent, rgba(43, 99, 240, 0.8), rgba(115, 224, 255, 0.78), transparent);
}

.campus-anchor-strip {
  position: sticky;
  top: 82px;
  z-index: 20;
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 70px);
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(31, 57, 128, 0.06);
}

.campus-anchor-strip a {
  min-width: 92px;
  text-align: center;
  color: #5f7cf4;
  background: #eef3ff;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.campus-anchor-strip a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #2b63f0, #7f72f0);
  transform: translateY(-2px);
}

.campus-command-section,
.campus-problem-band::before,
.campus-scenes-section::before,
.campus-delivery-section::before {
  display: none !important;
}

.campus-problem-band,
.campus-blueprint-section,
.campus-scenes-section,
.campus-architecture-section,
.campus-path-section,
.campus-delivery-section,
.campus-final-cta {
  padding-top: 104px;
  padding-bottom: 104px;
}

.campus-section-head {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.campus-section-head::before,
.campus-delivery-copy::before {
  display: block;
  width: 150px;
  height: 5px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2b63f0, #73e0ff, #7f72f0);
  content: "";
}

.campus-section-head h2,
.campus-delivery-copy h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.campus-problem-grid {
  gap: 30px;
  background: transparent;
}

.campus-problem-grid article {
  position: relative;
  min-height: 300px;
  padding: 38px 30px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(95, 124, 244, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(31, 57, 128, 0.08);
}

.campus-problem-grid article::before {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 38% 62% 55% 45% / 45% 42% 58% 55%;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #2b63f0, #7f72f0);
  box-shadow: 0 18px 38px rgba(43, 99, 240, 0.24);
  content: attr(data-icon);
}

.campus-problem-grid article:nth-child(1)::before {
  content: "01";
}

.campus-problem-grid article:nth-child(2)::before {
  content: "02";
}

.campus-problem-grid article:nth-child(3)::before {
  content: "03";
}

.campus-problem-grid span {
  display: none;
}

.campus-problem-grid h3 {
  font-size: 24px;
}

.campus-blueprint-section {
  background: #f7faff;
}

.campus-blueprint-map {
  min-height: 560px;
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(95, 124, 244, 0.11), transparent 44%),
    #ffffff;
  box-shadow: 0 28px 80px rgba(31, 57, 128, 0.08);
}

.campus-scenes-section {
  color: #17233f;
  background: #ffffff;
}

.campus-scenes-section .campus-section-head h2 {
  color: #12203a;
}

.campus-scenes-section .campus-section-head > p {
  color: #5d6b7c;
}

.campus-scene-lanes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.campus-scene-lanes article {
  min-height: 310px;
  padding: 34px 24px;
  text-align: center;
  border: 1px solid rgba(95, 124, 244, 0.13);
  border-radius: 16px;
  color: #17233f;
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(31, 57, 128, 0.08);
  backdrop-filter: none;
}

.campus-scene-lanes article::after {
  right: 50%;
  bottom: auto;
  top: 34px;
  width: 84px;
  height: 84px;
  border: 0;
  background: linear-gradient(135deg, rgba(43, 99, 240, 0.14), rgba(127, 114, 240, 0.14));
  transform: translateX(50%);
}

.campus-scene-lanes span {
  position: relative;
  z-index: 1;
  margin: 116px auto 24px;
  color: #ffffff;
}

.campus-scene-lanes h3 {
  color: #12203a;
  font-size: 22px;
}

.campus-scene-lanes p {
  color: #637083;
}

.campus-architecture-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(115, 224, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #2b63f0 0%, #5f7cf4 48%, #7f72f0 100%);
}

.campus-path-section {
  background: #f7faff;
}

.campus-delivery-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1fr);
  background: #ffffff;
}

.campus-delivery-copy {
  text-align: left;
}

.campus-delivery-copy::before {
  margin-right: 0;
  margin-left: 0;
}

@keyframes campusParticlesDrift {
  to {
    background-position: 118px 118px, -34px 86px;
  }
}

@keyframes campusTemplateFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(12px, -18px, 0) rotate(8deg);
  }
}

@keyframes campusHeroPanelIn {
  from {
    opacity: 0;
    transform: translateY(38px);
  }

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

@media (max-width: 1060px) {
  .campus-solution-page .campus-hero {
    padding-top: 116px;
  }

  .campus-scene-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campus-delivery-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .campus-solution-page .campus-hero {
    min-height: auto;
    padding: 104px 18px 76px;
  }

  .campus-solution-page .campus-hero-visual {
    min-height: 350px;
    margin-top: 36px;
  }

  .campus-solution-page .campus-screen-card {
    top: 82px;
    width: min(250px, calc(100% - 44px));
  }

  .campus-solution-page .campus-visual-node.node-entry {
    top: 48px;
  }

  .campus-solution-page .campus-visual-node.node-data {
    top: 196px;
  }

  .campus-solution-page .campus-visual-node.node-service {
    bottom: 26px;
  }

  .campus-anchor-strip {
    top: 82px;
  }

  .campus-problem-band,
  .campus-blueprint-section,
  .campus-scenes-section,
  .campus-architecture-section,
  .campus-path-section,
  .campus-delivery-section,
  .campus-final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .campus-problem-grid,
  .campus-scene-lanes {
    grid-template-columns: 1fr;
  }

  .campus-blueprint-map {
    min-height: 620px;
  }
}

/* Digital campus detail page v4: stronger reference-style waves and clearer modules. */
.campus-solution-page .campus-hero {
  min-height: 860px;
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 18%, rgba(255, 255, 255, 0.2), transparent 14%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.14), transparent 15%),
    linear-gradient(135deg, #3158df 0%, #306ee9 52%, #5f7cf4 100%);
}

.campus-solution-page .campus-hero::after {
  height: 310px;
  background:
    radial-gradient(95% 86% at 22% 0%, #ffffff 0 56%, rgba(255, 255, 255, 0) 57%),
    radial-gradient(88% 82% at 82% 24%, rgba(255, 255, 255, 0.88) 0 54%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(92% 70% at 52% 58%, rgba(255, 255, 255, 0.5) 0 52%, rgba(255, 255, 255, 0) 53%);
  clip-path: none;
  transform: translateY(112px);
}

.campus-solution-page .campus-hero-copy {
  animation: campusHeroTextIn 0.9s ease both;
}

.campus-solution-page .campus-hero-visual {
  width: min(720px, 92%);
  min-height: 310px;
  margin-top: 48px;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff, #eef4ff);
  transform-origin: center bottom;
}

.campus-solution-page .campus-hero-visual::before {
  inset: 16px;
  border-radius: 16px;
}

.campus-solution-page .campus-screen-card {
  top: 70px;
  min-height: 150px;
}

.campus-solution-page .campus-screen-card strong {
  font-size: 32px;
}

.campus-solution-page .campus-visual-node {
  min-width: 132px;
  padding: 12px 14px;
}

.campus-solution-page .campus-visual-node.node-entry {
  top: 58px;
  left: 58px;
}

.campus-solution-page .campus-visual-node.node-data {
  top: 144px;
  right: 54px;
}

.campus-solution-page .campus-visual-node.node-service {
  bottom: 38px;
  left: 92px;
}

.campus-template-particles {
  width: 280px;
  height: 280px;
  opacity: 0.34;
}

.campus-template-particles::before,
.campus-template-particles::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  content: "";
  animation: campusBubbleFloat 7.5s ease-in-out infinite;
}

.campus-template-particles::before {
  top: -26px;
  right: 30px;
  width: 46px;
  height: 46px;
}

.campus-template-particles::after {
  right: -20px;
  bottom: 42px;
  width: 76px;
  height: 76px;
  animation-delay: 1.2s;
}

.campus-blueprint-map {
  width: min(980px, 100%);
  min-height: 520px;
  overflow: visible;
  border-radius: 22px;
}

.campus-blueprint-map::before {
  width: min(470px, 54vw);
  height: min(470px, 54vw);
}

.campus-blueprint-map::after {
  width: min(660px, 72vw);
  height: min(660px, 72vw);
}

.campus-map-core {
  width: 230px;
  height: 230px;
  box-shadow: 0 24px 58px rgba(11, 59, 112, 0.22);
}

.campus-map-core strong {
  font-size: 26px;
}

.map-node {
  width: min(245px, 28vw);
  padding: 22px 24px;
}

.node-top {
  top: 18px;
}

.node-bottom {
  bottom: 18px;
}

.node-left {
  left: -8px;
}

.node-right {
  right: -8px;
}

.campus-scene-lanes article {
  min-height: 330px;
  padding-top: 42px;
}

.campus-scene-lanes article::after {
  top: 34px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.44), transparent 22%),
    linear-gradient(135deg, #2b63f0, #7f72f0);
  box-shadow: 0 18px 42px rgba(43, 99, 240, 0.22);
  animation: campusIconFloat 5.6s ease-in-out infinite;
}

.campus-scene-lanes article:nth-child(1)::after {
  content: "入";
}

.campus-scene-lanes article:nth-child(2)::after {
  content: "迎";
  animation-delay: 0.35s;
}

.campus-scene-lanes article:nth-child(3)::after {
  content: "教";
  animation-delay: 0.7s;
}

.campus-scene-lanes article:nth-child(4)::after {
  content: "运";
  animation-delay: 1.05s;
}

.campus-scene-lanes span {
  margin-top: 126px;
}

body[data-solution-detail="digital-campus-operations"] .campus-hero-copy {
  max-width: 600px;
}

body[data-solution-detail="digital-campus-operations"] .campus-hero-copy .campus-kicker {
  margin-bottom: 14px;
  color: rgba(225, 243, 255, 0.82);
  font-size: 12px;
}

body[data-solution-detail="digital-campus-operations"] .campus-hero-copy h1 {
  max-width: 560px;
  font-size: clamp(48px, 4.2vw, 68px);
  line-height: 1.08;
}

body[data-solution-detail="digital-campus-operations"] .campus-hero-copy > p:not(.campus-kicker) {
  max-width: 590px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.82;
}

body[data-solution-detail="digital-campus-operations"] .campus-hero-actions {
  margin-top: 30px;
}

body[data-solution-detail="digital-campus-operations"] .campus-hero-actions .btn,
body[data-solution-detail="digital-campus-operations"] .campus-text-link {
  min-height: 46px;
  padding-right: 22px;
  padding-left: 22px;
}

body[data-solution-detail="digital-campus-operations"] .campus-map-core {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 241, 255, 0.34);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.32), transparent 26%),
    radial-gradient(circle at 82% 86%, rgba(104, 215, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #2f63f4 0%, #6b5cf6 58%, #68d7ff 100%);
  box-shadow: 0 30px 72px rgba(47, 99, 244, 0.26), 0 0 0 14px rgba(104, 215, 255, 0.08);
}

body[data-solution-detail="digital-campus-operations"] .campus-map-core::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(200, 241, 255, 0.38);
  border-color: rgba(200, 241, 255, 0.38);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

body[data-solution-detail="digital-campus-operations"] .campus-map-core span,
body[data-solution-detail="digital-campus-operations"] .campus-map-core em {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
}

body[data-solution-detail="digital-campus-operations"] .campus-map-core strong {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

body[data-solution-detail="digital-campus-operations"] .campus-scene-lanes article {
  min-height: 306px;
  padding-top: 34px;
}

body[data-solution-detail="digital-campus-operations"] .campus-scene-lanes article::after {
  top: 34px;
  width: 64px;
  height: 64px;
  border: 10px solid rgba(47, 99, 244, 0.08);
  color: #2f63f4;
  font-size: 15px;
  font-weight: 900;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, #edf5ff, #dfe9ff);
  box-shadow: 0 14px 34px rgba(47, 99, 244, 0.16);
}

body[data-solution-detail="digital-campus-operations"] .campus-scene-lanes article:nth-child(1)::after {
  content: "01";
}

body[data-solution-detail="digital-campus-operations"] .campus-scene-lanes article:nth-child(2)::after {
  content: "02";
}

body[data-solution-detail="digital-campus-operations"] .campus-scene-lanes article:nth-child(3)::after {
  content: "03";
}

body[data-solution-detail="digital-campus-operations"] .campus-scene-lanes article:nth-child(4)::after {
  content: "04";
}

body[data-solution-detail="digital-campus-operations"] .campus-scene-lanes span {
  margin-top: 98px;
}

body[data-solution-detail="digital-campus-operations"] .campus-architecture-section .campus-section-head > p:not(.campus-kicker) {
  color: rgba(255, 255, 255, 0.82);
}

body[data-solution-detail="digital-campus-operations"] .campus-layer-stack div span {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 4px 0 0 rgba(104, 215, 255, 0.9);
}

body[data-solution-detail="digital-campus-construction"] .campus-hero-copy {
  max-width: 600px;
}

body[data-solution-detail="digital-campus-construction"] .campus-hero-copy .campus-kicker {
  margin-bottom: 14px;
  color: rgba(225, 243, 255, 0.82);
  font-size: 12px;
}

body[data-solution-detail="digital-campus-construction"] .campus-hero-copy h1 {
  max-width: 560px;
  font-size: clamp(48px, 4.2vw, 68px);
  line-height: 1.08;
}

body[data-solution-detail="digital-campus-construction"] .campus-hero-copy > p:not(.campus-kicker) {
  max-width: 590px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.82;
}

body[data-solution-detail="digital-campus-construction"] .campus-hero-actions {
  margin-top: 30px;
}

body[data-solution-detail="digital-campus-construction"] .campus-hero-actions .btn,
body[data-solution-detail="digital-campus-construction"] .campus-text-link {
  min-height: 46px;
  padding-right: 22px;
  padding-left: 22px;
}

body[data-solution-detail="digital-campus-construction"] .campus-layer-stack div span {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 4px 0 0 rgba(104, 215, 255, 0.9);
}

body[data-solution-detail="teaching-training-environment"] .campus-hero-copy {
  max-width: 620px;
}

body[data-solution-detail="teaching-training-environment"] .campus-hero-copy .campus-kicker {
  margin-bottom: 14px;
  color: rgba(225, 243, 255, 0.82);
  font-size: 12px;
}

body[data-solution-detail="teaching-training-environment"] .campus-hero-copy h1 {
  max-width: 590px;
  font-size: clamp(46px, 4vw, 64px);
  line-height: 1.09;
}

body[data-solution-detail="teaching-training-environment"] .campus-hero-copy > p:not(.campus-kicker) {
  max-width: 600px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.82;
}

body[data-solution-detail="teaching-training-environment"] .campus-hero-actions {
  margin-top: 30px;
}

body[data-solution-detail="teaching-training-environment"] .campus-hero-actions .btn,
body[data-solution-detail="teaching-training-environment"] .campus-text-link {
  min-height: 46px;
  padding-right: 22px;
  padding-left: 22px;
}

body[data-solution-detail] .campus-hero-actions .subpage-hero-link,
.product-detail-page .product-detail-actions .subpage-hero-link {
  min-height: 42px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

/* subpage-hero-actions-spacing: keep primary and secondary hero actions visually separated. */
body[data-solution-detail] .campus-hero-actions {
  column-gap: 32px;
  row-gap: 16px;
}

.product-detail-page .product-detail-actions {
  column-gap: 32px;
  row-gap: 16px;
}

body[data-solution-detail="teaching-training-environment"] .campus-scene-lanes article {
  min-height: 306px;
  padding-top: 34px;
}

body[data-solution-detail="teaching-training-environment"] .campus-scene-lanes article::after {
  top: 34px;
  width: 76px;
  height: 40px;
  border: 1px solid rgba(47, 99, 244, 0.14);
  border-radius: 999px;
  color: #2f63f4;
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, #ffffff, #edf5ff);
  box-shadow: 0 12px 28px rgba(47, 99, 244, 0.14);
}

body[data-solution-detail="teaching-training-environment"] .campus-scene-lanes article:nth-child(1)::after {
  content: "实训";
}

body[data-solution-detail="teaching-training-environment"] .campus-scene-lanes article:nth-child(2)::after {
  content: "教室";
}

body[data-solution-detail="teaching-training-environment"] .campus-scene-lanes article:nth-child(3)::after {
  content: "资源";
}

body[data-solution-detail="teaching-training-environment"] .campus-scene-lanes article:nth-child(4)::after {
  content: "运维";
}

body[data-solution-detail="teaching-training-environment"] .campus-scene-lanes span {
  margin-top: 86px;
}

body[data-solution-detail="teaching-training-environment"] .campus-architecture-section {
  background:
    linear-gradient(135deg, #2f63f4 0%, #657cf4 100%);
}

body[data-solution-detail="teaching-training-environment"] .campus-layer-stack div span {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 4px 0 0 rgba(104, 215, 255, 0.9);
}

body[data-solution-detail="campus-business-platform"] .campus-hero-copy {
  max-width: 610px;
}

body[data-solution-detail="campus-business-platform"] .campus-hero-copy .campus-kicker {
  margin-bottom: 14px;
  color: rgba(225, 243, 255, 0.82);
  font-size: 12px;
}

body[data-solution-detail="campus-business-platform"] .campus-hero-copy h1 {
  max-width: 560px;
  font-size: clamp(48px, 4.2vw, 68px);
  line-height: 1.08;
}

body[data-solution-detail="campus-business-platform"] .campus-hero-copy > p:not(.campus-kicker) {
  max-width: 600px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.82;
}

body[data-solution-detail="campus-business-platform"] .campus-hero-actions {
  margin-top: 30px;
}

body[data-solution-detail="campus-business-platform"] .campus-hero-actions .btn,
body[data-solution-detail="campus-business-platform"] .campus-text-link {
  min-height: 46px;
  padding-right: 22px;
  padding-left: 22px;
}

body[data-solution-detail="campus-business-platform"] .campus-scene-lanes article {
  min-height: 306px;
  padding-top: 34px;
}

body[data-solution-detail="campus-business-platform"] .campus-scene-lanes article::after {
  top: 34px;
  width: 76px;
  height: 40px;
  border: 1px solid rgba(47, 99, 244, 0.14);
  border-radius: 999px;
  color: #2f63f4;
  font-size: 13px;
  font-weight: 900;
  background:
    linear-gradient(135deg, #ffffff, #edf5ff);
  box-shadow: 0 12px 28px rgba(47, 99, 244, 0.14);
}

body[data-solution-detail="campus-business-platform"] .campus-scene-lanes article:nth-child(1)::after {
  content: "迎新";
}

body[data-solution-detail="campus-business-platform"] .campus-scene-lanes article:nth-child(2)::after {
  content: "教务";
}

body[data-solution-detail="campus-business-platform"] .campus-scene-lanes article:nth-child(3)::after {
  content: "学工";
}

body[data-solution-detail="campus-business-platform"] .campus-scene-lanes article:nth-child(4)::after {
  content: "学习";
}

body[data-solution-detail="campus-business-platform"] .campus-scene-lanes span {
  margin-top: 86px;
}

body[data-solution-detail="campus-business-platform"] .campus-architecture-section {
  background:
    linear-gradient(135deg, #2f63f4 0%, #657cf4 100%);
}

body[data-solution-detail="campus-business-platform"] .campus-layer-stack div span {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 4px 0 0 rgba(104, 215, 255, 0.9);
}

@keyframes campusHeroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes campusBubbleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(16px, -18px, 0);
  }
}

@keyframes campusIconFloat {
  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }

  50% {
    transform: translateX(50%) translateY(-10px);
  }
}

@media (max-width: 1060px) {
  .campus-blueprint-map {
    min-height: 620px;
  }

  .map-node {
    width: min(250px, 34vw);
  }

  .node-left {
    left: 0;
  }

  .node-right {
    right: 0;
  }
}

@media (max-width: 680px) {
  .campus-solution-page .campus-hero {
    min-height: auto;
    padding-bottom: 88px;
  }

  .campus-solution-page .campus-hero::after {
    height: 180px;
    transform: translateY(78px);
  }

  .campus-solution-page .campus-hero-visual {
    width: 100%;
    min-height: 360px;
  }

  .campus-blueprint-map {
    width: 100%;
    min-height: 680px;
    overflow: hidden;
  }

  .campus-map-core {
    width: 190px;
    height: 190px;
  }

  .campus-map-core strong {
    font-size: 22px;
  }

  .map-node {
    width: min(230px, 78vw);
  }

  .node-top {
    top: 22px;
  }

  .node-bottom {
    bottom: 22px;
  }
}

/* Digital campus detail page v5: replace artificial bands with reference-like SVG wave and fix blueprint spacing. */
.campus-solution-page .campus-hero {
  min-height: 790px;
  padding-top: 118px;
  padding-bottom: 0;
}

.campus-solution-page .campus-hero::after {
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 330px;
  background: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%201440%20330%27%20preserveAspectRatio%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20fill%3D%27%23eef4ff%27%20fill-opacity%3D%270.72%27%20d%3D%27M0%20130C190%20234%20380%20138%20605%20164C850%20192%20920%20278%201160%20248C1305%20230%201396%20258%201440%20324V330H0V130Z%27/%3E%3Cpath%20fill%3D%27%23ffffff%27%20d%3D%27M0%20222C210%20276%20418%20216%20610%20232C805%20248%20930%20320%201150%20286C1305%20262%201385%20272%201440%20330H0V222Z%27/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  clip-path: none;
  content: "";
  opacity: 1;
  transform: none;
}

.campus-solution-page .campus-hero-copy {
  max-width: 780px;
}

.campus-solution-page .campus-hero-copy h1 {
  font-size: clamp(40px, 4.2vw, 58px);
}

.campus-solution-page .campus-hero-visual {
  width: min(650px, 88%);
  min-height: 285px;
  margin-top: 44px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(127, 170, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 28px 70px rgba(23, 47, 142, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.campus-solution-page .campus-screen-card {
  top: 64px;
  width: min(300px, calc(100% - 84px));
  min-height: 138px;
  padding: 22px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 246, 255, 0.84));
  box-shadow: 0 20px 50px rgba(23, 47, 142, 0.12);
}

.campus-solution-page .campus-screen-card strong {
  font-size: 30px;
}

.campus-solution-page .campus-visual-node.node-entry {
  top: 56px;
  left: 44px;
}

.campus-solution-page .campus-visual-node.node-data {
  top: 134px;
  right: 42px;
}

.campus-solution-page .campus-visual-node.node-service {
  bottom: 30px;
  left: 74px;
}

.campus-blueprint-map {
  width: min(1120px, 100%);
  min-height: 680px;
  overflow: hidden;
}

.campus-blueprint-map::before {
  width: min(520px, 58vw);
  height: min(520px, 58vw);
}

.campus-blueprint-map::after {
  width: min(760px, 78vw);
  height: min(760px, 78vw);
}

.campus-map-core {
  width: 248px;
  height: 248px;
}

.campus-map-core strong {
  font-size: 28px;
}

.campus-map-core span,
.campus-map-core em {
  font-size: 13px;
}

.map-node {
  width: 248px;
  min-height: 122px;
  padding: 22px 24px;
}

.node-top {
  top: 28px;
}

.node-bottom {
  bottom: 28px;
}

.node-left {
  left: 12px;
}

.node-right {
  right: 12px;
}

@media (max-width: 1060px) {
  .campus-solution-page .campus-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 76px;
  }

  .campus-solution-page .campus-hero::after {
    height: 240px;
  }

  .campus-blueprint-map {
    min-height: 700px;
  }

  .campus-map-core {
    width: 224px;
    height: 224px;
  }

  .map-node {
    width: min(240px, 30vw);
  }

  .node-left {
    left: 10px;
  }

  .node-right {
    right: 10px;
  }
}

@media (max-width: 680px) {
  .campus-solution-page .campus-hero {
    padding-bottom: 72px;
  }

  .campus-solution-page .campus-hero::after {
    height: 170px;
  }

  .campus-solution-page .campus-hero-visual {
    width: 100%;
    min-height: 350px;
  }

  .campus-blueprint-map {
    min-height: 760px;
  }

  .campus-blueprint-map::before {
    width: 320px;
    height: 320px;
  }

  .campus-blueprint-map::after {
    width: 520px;
    height: 520px;
  }

  .campus-map-core {
    width: 196px;
    height: 196px;
  }

  .node-top {
    top: 22px;
  }

  .node-bottom {
    bottom: 22px;
  }
}

/* Digital campus detail page v6: reference-style subscribe card and blue wave footer. */
.campus-solution-page .campus-final-cta {
  width: min(1020px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
  color: #2d3142;
  background: transparent;
}

.campus-solution-page .campus-final-card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: center;
  margin: 0 auto;
  padding: 46px 50px 72px;
  border: 0;
  border-radius: 10px;
  color: #2d3142;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(50, 77, 215, 0.14);
}

.campus-solution-page .campus-final-card .campus-kicker {
  margin-bottom: 12px;
  color: #2b63f0;
}

.campus-solution-page .campus-final-card h2 {
  margin: 0;
  color: #2d3142;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.22;
}

.campus-solution-page .campus-final-card p:last-child {
  margin: 12px 0 0;
  color: #6b7288;
  font-size: 16px;
}

.campus-footer-consult {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  align-items: stretch;
}

.campus-footer-consult input {
  width: 100%;
  min-height: 62px;
  padding: 0 24px;
  border: 2px solid #eeeeee;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  color: #2d3142;
  font: inherit;
  outline: none;
}

.campus-footer-consult input::placeholder {
  color: #b5b8c5;
}

.campus-footer-consult input:focus-visible {
  outline: 3px solid rgba(47, 99, 244, 0.32);
  outline-offset: 2px;
}

.campus-subscribe-button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 0 4px 4px 0;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(90deg, #ff8464, #ff5f91);
  box-shadow: 0 12px 28px rgba(255, 95, 145, 0.22);
}

.campus-wave-footer {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  margin-top: 0;
  padding: 120px 0 28px;
  color: #ffffff;
  background: #ffffff;
}

.campus-wave-footer::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%201440%20760%27%20preserveAspectRatio%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20fill%3D%27%23eef4ff%27%20d%3D%27M0%20105C140%20210%20280%20234%20438%20188C628%20132%20768%20102%20940%20206C1118%20313%201258%20178%201440%20284V760H0V105Z%27/%3E%3Cpath%20fill%3D%27%23315fe7%27%20d%3D%27M0%20160C158%20260%20302%20278%20492%20236C675%20196%20778%20160%20962%20284C1128%20396%201302%20280%201440%20402V760H0V160Z%27/%3E%3Cpath%20fill%3D%27%233147d8%27%20d%3D%27M0%20358C184%20296%20380%20328%20562%20310C782%20288%20912%20406%201102%20382C1266%20362%201370%20394%201440%20478V760H0V358Z%27/%3E%3C/svg%3E") top center / 100% 100% no-repeat;
  content: "";
}

.campus-wave-footer::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 18px, transparent 19px),
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 10px, transparent 11px);
  background-position: 12% 78%, 56% 62%;
  background-size: 520px 380px, 360px 300px;
  content: "";
  animation: campusFooterParticles 14s linear infinite;
}

.campus-footer-bubble {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  animation: campusBubbleFloat 7.5s ease-in-out infinite;
}

.campus-footer-bubble.bubble-a {
  left: 10%;
  bottom: 92px;
  width: 54px;
  height: 54px;
}

.campus-footer-bubble.bubble-b {
  right: 9%;
  bottom: 160px;
  width: 76px;
  height: 76px;
  animation-delay: 1.2s;
}

.campus-footer-bubble.bubble-c {
  right: 26%;
  bottom: 52px;
  width: 42px;
  height: 42px;
  animation-delay: 2s;
}

.campus-footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1020px, calc(100% - 40px));
  grid-template-columns: minmax(260px, 1.2fr) minmax(140px, 0.7fr) minmax(140px, 0.7fr) minmax(220px, 0.9fr);
  gap: 48px;
  margin: 70px auto 0;
  padding-bottom: 82px;
}

.campus-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.campus-footer-logo img {
  width: 68px;
  height: auto;
  filter: brightness(0) invert(1);
}

.campus-footer-about p {
  max-width: 330px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.campus-footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.campus-footer-col h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 22px;
}

.campus-footer-col a,
.campus-footer-col span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  line-height: 1.6;
}

.campus-footer-col a:hover {
  color: #ffcc7a;
}

.campus-footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1020px, calc(100% - 40px));
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

@keyframes campusFooterParticles {
  to {
    background-position: 14% 75%, 54% 66%;
  }
}

@media (max-width: 1060px) {
  .campus-solution-page .campus-final-card {
    grid-template-columns: 1fr;
    padding: 38px 34px 54px;
  }

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

@media (max-width: 680px) {
  .campus-wave-footer {
    padding-top: 80px;
  }

  .campus-solution-page .campus-final-cta,
  .campus-footer-inner,
  .campus-footer-bottom {
    width: calc(100% - 36px);
  }

  .campus-solution-page .campus-final-card {
    padding: 28px 22px 38px;
  }

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

  .campus-footer-consult input,
  .campus-subscribe-button {
    border-radius: 4px;
  }

  .campus-footer-consult input {
    margin-bottom: 12px;
    border-right: 2px solid #eeeeee;
  }

  .campus-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 48px;
    padding-bottom: 48px;
  }

  .campus-footer-bottom {
    display: grid;
  }
}

/* Digital campus detail page v7: simplified footer for a cleaner bottom area. */
.campus-solution-page .campus-wave-footer {
  padding-top: 104px;
  padding-bottom: 22px;
}

.campus-solution-page .campus-footer-simple {
  display: flex;
  width: min(1020px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 58px;
  padding-bottom: 42px;
}

.campus-solution-page .campus-footer-simple .campus-footer-about {
  display: flex;
  min-width: 0;
  align-items: center;
}

.campus-solution-page .campus-footer-simple .campus-footer-logo {
  flex-shrink: 0;
}

.campus-solution-page .campus-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.campus-solution-page .campus-footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.campus-solution-page .campus-footer-links a:hover {
  color: #ffcc7a;
}

.campus-solution-page .campus-footer-bottom {
  padding-top: 18px;
  padding-bottom: 0;
  font-size: 14px;
}

@media (max-width: 820px) {
  .campus-solution-page .campus-footer-simple {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 42px;
    padding-bottom: 34px;
  }

  .campus-solution-page .campus-footer-links {
    justify-content: flex-start;
    gap: 14px 20px;
  }
}

@media (max-width: 520px) {
  .campus-solution-page .campus-wave-footer {
    padding-top: 74px;
  }

  .campus-solution-page .campus-footer-logo {
    font-size: 22px;
  }

  .campus-solution-page .campus-footer-logo img {
    width: 54px;
  }

  .campus-solution-page .campus-footer-links a {
    font-size: 14px;
  }
}

/* Digital campus detail page v9: footer wave is decorative only. */
.campus-solution-page .campus-wave-footer {
  padding-top: 108px;
  padding-bottom: 128px;
}

.campus-solution-page .campus-wave-footer > :not(.campus-final-cta):not(.campus-footer-bubble) {
  display: none !important;
}

.campus-solution-page .campus-footer-simple,
.campus-solution-page .campus-footer-inner,
.campus-solution-page .campus-footer-about,
.campus-solution-page .campus-footer-col,
.campus-solution-page .campus-footer-links,
.campus-solution-page .campus-footer-bottom {
  display: none !important;
}

.campus-solution-page .campus-subscribe-button {
  position: relative;
  z-index: 2;
  min-width: 138px;
  white-space: nowrap;
}

.campus-solution-page .campus-footer-bubble {
  pointer-events: none;
}

@media (max-width: 680px) {
  .campus-solution-page .campus-wave-footer {
    padding-bottom: 92px;
  }

  .campus-solution-page .campus-subscribe-button {
    width: 100%;
  }
}

/* Digital campus detail page v10: CTA keeps only the inquiry button. */
.campus-solution-page .campus-footer-consult {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.campus-solution-page .campus-footer-consult input {
  display: none !important;
}

.campus-solution-page .campus-footer-consult .campus-subscribe-button {
  min-width: 168px;
  min-height: 58px;
  border-radius: 6px;
  padding: 0 34px;
}

@media (max-width: 1060px) {
  .campus-solution-page .campus-footer-consult {
    justify-content: flex-start;
  }
}

/* Digital campus detail page v11: blend the final CTA with the wave footer. */
.campus-solution-page .campus-final-card {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  padding: 48px 58px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(48, 113, 237, 0.94), rgba(48, 65, 206, 0.82)),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.22), transparent 34%);
  box-shadow: 0 26px 76px rgba(33, 74, 202, 0.32);
  backdrop-filter: blur(12px);
}

.campus-solution-page .campus-final-card::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  content: "";
}

.campus-solution-page .campus-final-card .campus-kicker {
  color: #cfe3ff;
}

.campus-solution-page .campus-final-card h2 {
  color: #ffffff;
}

.campus-solution-page .campus-final-card p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.campus-solution-page .campus-footer-consult .campus-subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 156px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  padding: 0 26px;
  line-height: 1;
  background: linear-gradient(90deg, #ff7d68, #ff4f8f);
  box-shadow: 0 16px 34px rgba(255, 78, 137, 0.34);
}

.campus-solution-page .campus-subscribe-button .quick-action-icon {
  position: relative;
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  border-width: 1.6px;
}

.campus-solution-page .campus-subscribe-button .quick-action-consult::before {
  left: 5px;
  top: 6px;
  width: 3px;
  height: 3px;
  box-shadow: 5px 0 0 #ffffff;
}

.campus-solution-page .campus-subscribe-button .quick-action-consult::after {
  right: 3px;
  bottom: 1px;
  width: 6px;
  height: 6px;
  border-right-width: 1.6px;
  border-bottom-width: 1.6px;
}

.campus-solution-page .campus-subscribe-button strong {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1060px) {
  .campus-solution-page .campus-final-card {
    grid-template-columns: 1fr;
    padding: 38px 34px;
  }
}

@media (max-width: 680px) {
  .campus-solution-page .campus-final-card {
    padding: 30px 24px;
  }
}

/* Digital campus detail page v12: lighter translucent CTA over the wave. */
.campus-solution-page .campus-final-card {
  border: 1px solid rgba(115, 156, 245, 0.22);
  color: #14213d;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 246, 255, 0.58)),
    radial-gradient(circle at 16% 14%, rgba(93, 149, 255, 0.16), transparent 34%);
  box-shadow: 0 22px 58px rgba(39, 88, 201, 0.16);
  backdrop-filter: blur(18px) saturate(132%);
}

.campus-solution-page .campus-final-card::after {
  border-color: rgba(104, 151, 244, 0.18);
}

.campus-solution-page .campus-final-card .campus-kicker {
  color: #3975f0;
}

.campus-solution-page .campus-final-card h2 {
  color: #14213d;
}

.campus-solution-page .campus-final-card p:last-child {
  color: rgba(35, 49, 78, 0.72);
}

.campus-solution-page .campus-footer-consult .campus-subscribe-button {
  box-shadow: 0 12px 30px rgba(255, 78, 137, 0.26);
}

/* Digital campus detail page v13: enlarge blueprint core and protect label spacing. */
.campus-solution-page .campus-blueprint-map {
  min-height: 720px;
}

.campus-solution-page .campus-blueprint-map::before {
  width: min(590px, 62vw);
  height: min(590px, 62vw);
}

.campus-solution-page .campus-blueprint-map::after {
  width: min(820px, 82vw);
  height: min(820px, 82vw);
}

.campus-solution-page .campus-map-core {
  display: flex;
  width: clamp(278px, 24vw, 310px);
  height: clamp(278px, 24vw, 310px);
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 34px 28px;
}

.campus-solution-page .campus-map-core span,
.campus-solution-page .campus-map-core em {
  display: block;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}

.campus-solution-page .campus-map-core strong {
  display: block;
  font-size: clamp(30px, 2.4vw, 36px);
  line-height: 1.16;
  white-space: nowrap;
}

@media (max-width: 1060px) {
  .campus-solution-page .campus-map-core {
    width: 258px;
    height: 258px;
    gap: 16px;
  }

  .campus-solution-page .campus-map-core strong {
    font-size: 29px;
  }
}

@media (max-width: 680px) {
  .campus-solution-page .campus-map-core {
    width: 216px;
    height: 216px;
    gap: 12px;
    padding: 26px 20px;
  }

  .campus-solution-page .campus-map-core span,
  .campus-solution-page .campus-map-core em {
    font-size: 12px;
  }

  .campus-solution-page .campus-map-core strong {
    font-size: 24px;
  }
}

/* Digital campus detail page v14: unify blueprint hub palette across solution pages. */
.campus-solution-page .campus-map-core {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 241, 255, 0.34);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.32), transparent 26%),
    radial-gradient(circle at 82% 86%, rgba(104, 215, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #2f63f4 0%, #6b5cf6 58%, #68d7ff 100%);
  box-shadow: 0 30px 72px rgba(47, 99, 244, 0.26), 0 0 0 14px rgba(104, 215, 255, 0.08);
}

.campus-solution-page .campus-map-core span,
.campus-solution-page .campus-map-core em {
  max-width: 14em;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.campus-solution-page .campus-map-core::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(200, 241, 255, 0.38);
  border-color: rgba(200, 241, 255, 0.38);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.campus-solution-page .campus-map-core span,
.campus-solution-page .campus-map-core em {
  position: relative;
  z-index: 1;
  max-width: 14em;
  color: rgba(255, 255, 255, 0.86);
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.campus-solution-page .campus-map-core strong {
  position: relative;
  z-index: 1;
  max-width: 7.2em;
  color: #ffffff;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.campus-solution-page .map-node {
  min-width: 0;
}

.campus-solution-page .map-node b,
.campus-solution-page .map-node span {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

.campus-solution-page .map-node b {
  overflow-wrap: anywhere;
}

.campus-solution-page .map-node span {
  overflow-wrap: anywhere;
}

/* Digital campus detail page v15: increase blueprint vertical clearance. */
.campus-solution-page .campus-blueprint-map {
  min-height: 790px;
}

.campus-solution-page .node-bottom {
  bottom: 30px;
}

/* Homepage mobile compact layout pass. */
@media (max-width: 760px) {
  body:not(.product-detail-page) {
    padding-bottom: 76px;
  }

  .enterprise-hero {
    padding: 84px 18px 42px !important;
  }

  .hero-inner {
    gap: 14px;
  }

  .hero-actions {
    margin-top: 18px;
    justify-content: center;
  }

  .hero-play {
    width: fit-content;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual,
  .banner-image {
    min-height: 0 !important;
  }

  .banner-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    animation: none;
    transform: none;
  }

  .banner-image img {
    width: min(74vw, 260px) !important;
    margin-right: auto;
    margin-left: auto;
  }

  .about-section {
    padding-top: 50px !important;
    padding-bottom: 54px !important;
  }

  .about-section .about-content {
    text-align: center;
  }

  .about-section .about-content h2 {
    max-width: 11em;
    margin-right: auto;
    margin-bottom: 18px;
    margin-left: auto;
  }

  .about-section .about-content p,
  .about-copy .lead {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .about-section .skills .skill-item {
    text-align: center;
  }

  .contact-section.hire-section {
    padding-top: 46px !important;
    padding-bottom: 50px !important;
  }

  .contact-section .contact-inner {
    gap: 22px;
    text-align: center;
  }

  .contact-section .contact-inner h2 {
    max-width: 11em;
    margin-right: auto;
    margin-bottom: 12px;
    margin-left: auto;
  }

  .contact-section .contact-inner > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-section .contact-box {
    gap: 10px !important;
  }

  .contact-section .contact-box p {
    padding: 16px 14px !important;
    border-left: 0;
    border-top: 3px solid #68d7ff;
    text-align: center;
  }

  .contact-section .contact-box span {
    margin-bottom: 8px;
  }

  body:not(.product-detail-page) .site-footer {
    min-height: 0;
    padding: 18px 18px 86px;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }
}

/* Homepage mobile compact capability nodes. */
@media (max-width: 680px) {
  .about-section .campus-service-panel {
    min-height: 560px;
  }

  .about-section .campus-capability-network {
    inset: 30px 20px;
  }

  .about-section .campus-network-core {
    width: 120px;
    height: 120px;
    padding: 16px 14px;
  }

  .about-section .campus-network-node {
    width: fit-content;
    max-width: 138px;
    min-width: 0;
    min-height: 74px;
    align-content: center;
    padding: 11px 12px;
  }

  .about-section .campus-network-node::after {
    display: none;
  }

  .about-section .campus-network-node span {
    font-size: 11px;
  }

  .about-section .campus-network-node strong {
    font-size: 13px;
  }

  .about-section .node-teaching {
    left: 8px;
    top: 30px;
  }

  .about-section .node-resource {
    right: 8px;
    top: 106px;
  }

  .about-section .node-platform {
    left: 8px;
    bottom: 110px;
  }

  .about-section .node-service {
    right: 8px;
    bottom: 28px;
  }
}

/* Homepage mobile heading alignment polish. */
@media (max-width: 680px) {
  .section-title,
  .products-heading,
  .service-intro,
  .process-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .section-title h2,
  .products-heading h2,
  .service-intro h2,
  .process-heading h2 {
    max-width: 12em;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    text-wrap: balance;
  }

  .products-heading h6,
  .section-title h6,
  .service-intro h6,
  .process-heading h6,
  .section-label {
    justify-content: center;
    text-align: center;
  }

  .products-heading p,
  .section-title p,
  .service-intro p,
  .process-heading p {
    max-width: 31em;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

/* Homepage mobile capability network spacing polish. */
@media (max-width: 680px) {
  .about-section .campus-service-panel {
    min-height: 600px;
  }

  .about-section .campus-capability-network {
    inset: 30px 18px;
  }

  .about-section .campus-network-core {
    width: 126px;
    height: 126px;
    padding: 18px 16px;
  }

  .about-section .campus-network-node {
    width: min(164px, 42vw);
    min-width: 0;
    min-height: 82px;
    align-content: center;
    gap: 5px;
    padding: 13px 12px;
  }

  .about-section .campus-network-node span {
    font-size: 12px;
    line-height: 1.24;
  }

  .about-section .campus-network-node strong {
    font-size: 14px;
    line-height: 1.3;
  }

  .about-section .node-teaching {
    left: 0;
    top: 24px;
  }

  .about-section .node-resource {
    right: 0;
    top: 110px;
  }

  .about-section .node-platform {
    left: 0;
    bottom: 116px;
  }

  .about-section .node-service {
    right: 0;
    bottom: 28px;
  }
}

/* Homepage mobile compact capability nodes final override. */
@media (max-width: 680px) {
  .about-section .campus-service-panel {
    min-height: 560px;
  }

  .about-section .campus-capability-network {
    inset: 30px 20px;
  }

  .about-section .campus-network-core {
    width: 120px;
    height: 120px;
    padding: 16px 14px;
  }

  .about-section .campus-network-node {
    width: fit-content;
    max-width: 138px;
    min-width: 0;
    min-height: 74px;
    align-content: center;
    padding: 11px 12px;
  }

  .about-section .campus-network-node::after {
    display: none;
  }

  .about-section .campus-network-node span {
    font-size: 11px;
  }

  .about-section .campus-network-node strong {
    font-size: 13px;
  }

  .about-section .node-teaching {
    left: 8px;
    top: 30px;
  }

  .about-section .node-resource {
    right: 8px;
    top: 106px;
  }

  .about-section .node-platform {
    left: 8px;
    bottom: 110px;
  }

  .about-section .node-service {
    right: 8px;
    bottom: 28px;
  }
}

/* Homepage mobile capability network final compression. */
@media (max-width: 680px) {
  .about-section .campus-service-panel {
    min-height: 500px;
  }

  .about-section .campus-capability-network {
    inset: 24px 18px;
  }

  .about-section .campus-network-core {
    width: 112px;
    height: 112px;
    padding: 15px 13px;
  }

  .about-section .campus-network-core span {
    font-size: 12px;
  }

  .about-section .campus-network-core strong {
    font-size: 22px;
  }

  .about-section .campus-network-node {
    width: min(150px, 40vw);
    max-width: none;
    min-width: 0;
    min-height: 68px;
    align-content: center;
    box-sizing: border-box;
    gap: 4px;
    padding: 10px 11px;
  }

  .about-section .campus-network-node span {
    font-size: 11px;
    line-height: 1.18;
  }

  .about-section .campus-network-node strong {
    font-size: 13px;
    line-height: 1.22;
  }

  .about-section .node-teaching {
    left: 0;
    top: 18px;
  }

  .about-section .node-resource {
    right: 0;
    top: 92px;
  }

  .about-section .node-platform {
    left: 0;
    bottom: 96px;
  }

  .about-section .node-service {
    right: 0;
    bottom: 40px;
  }
}

/* Homepage mobile navigation color alignment. */
@media (max-width: 760px) {
  .site-nav {
    right: 16px;
    left: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
      rgba(15, 31, 76, 0.98);
    color: #ffffff;
    box-shadow: 0 22px 52px rgba(8, 18, 46, 0.28);
    backdrop-filter: blur(14px);
  }

  .site-nav a,
  .site-nav .nav-submenu a {
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
  }

  .site-nav > .nav-link,
  .site-nav .nav-dropdown-trigger,
  .site-nav .language-switch {
    border-radius: 4px;
  }

  .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:hover,
  .site-header:not(.is-scrolled) .site-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
  }

  .site-nav .nav-link::after {
    right: 24%;
    left: 24%;
    bottom: 4px;
    background: #68d7ff;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-submenu {
    margin: 4px 0 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-submenu a {
    min-height: 42px;
    color: rgba(255, 255, 255, 0.92);
  }

  .site-header.is-scrolled .site-nav .nav-submenu a,
  .site-header.is-scrolled .site-nav .nav-submenu a:hover {
    color: #ffffff;
  }

  .language-switch {
    justify-content: center;
    border-top-color: rgba(255, 255, 255, 0.16);
  }
}

/* Homepage mobile footer final compact alignment. */
@media (max-width: 760px) {
  body:not(.product-detail-page) .site-footer {
    min-height: 0;
    padding: 16px 22px 58px;
    align-content: center;
    justify-content: center;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }

  body:not(.product-detail-page) .site-footer p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

/* Homepage mobile density pass. */
@media (max-width: 760px) {
  body:not(.product-detail-page) {
    padding-bottom: 66px;
  }

  .enterprise-hero {
    padding: 76px 18px 28px !important;
  }

  .hero-inner {
    gap: 10px;
  }

  .enterprise-hero h1 {
    max-width: 10.8em;
    margin-right: auto;
    margin-bottom: 12px;
    margin-left: auto;
    font-size: clamp(30px, 7vw, 34px) !important;
    line-height: 1.14 !important;
    text-align: left;
  }

  .mobile-title-break {
    display: inline-block;
    white-space: nowrap;
  }

  .hero-lede {
    font-size: 14px;
    line-height: 1.62;
  }

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

  .hero-actions .btn {
    min-height: 44px;
    padding: 10px 16px;
  }

  .play-circle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .banner-image {
    margin-top: 0;
  }

  .banner-image img {
    width: min(66vw, 230px) !important;
  }

  .quick-actions {
    right: 14px !important;
    bottom: 10px !important;
    left: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 7px;
  }

  .quick-actions [data-quick-action="cases"] {
    display: none;
  }

  .quick-actions a {
    min-height: 50px;
    padding: 7px 6px;
    font-size: 12px;
  }

  .quick-action-icon {
    width: 20px;
    height: 20px;
  }

  .quick-action-consult {
    background-size: 24px 24px;
  }
}

/* Homepage mobile first-screen quick actions reveal. */
@media (max-width: 760px) {
  .quick-actions:not(.quick-actions-top-only) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .quick-actions:not(.quick-actions-top-only):not(.is-visible) {
    visibility: hidden !important;
  }

  .quick-actions:not(.quick-actions-top-only).is-visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible !important;
    transform: none;
  }
}

/* Homepage mobile menu density pass. */
@media (max-width: 760px) {
  .site-nav {
    max-height: min(72vh, 520px);
    padding: 10px;
  }

  .site-nav a,
  .site-nav .nav-submenu a {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 14px;
    line-height: 1.25;
  }

  .nav-submenu {
    padding: 6px;
    gap: 2px;
  }

  .language-switch {
    min-height: 40px;
  }
}

/* Homepage mobile service contact density pass. */
@media (max-width: 760px) {
  .service-section.services-section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .service-section .service-promise,
  .service-section.services-section .service-promise {
    padding: 22px 20px !important;
  }

  .service-section .service-promise h3 {
    font-size: clamp(25px, 7vw, 31px) !important;
    line-height: 1.22 !important;
  }

  .service-section .service-promise p {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  .service-section .service-grid-list,
  .service-section.services-section .service-grid-list {
    gap: 12px !important;
  }

  .service-section .service-row {
    min-height: 0 !important;
    padding: 18px !important;
  }

  .service-section .services-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .service-section .service-row h3 {
    margin-bottom: 10px;
    font-size: 23px;
    line-height: 1.25;
  }

  .service-section .service-row p {
    font-size: 14px;
    line-height: 1.62;
  }

  .contact-section.hire-section {
    padding-top: 38px !important;
    padding-bottom: 36px !important;
  }

  .contact-section .contact-inner {
    gap: 16px;
  }

  .contact-section .contact-box {
    gap: 8px !important;
  }

  .contact-section .contact-box p {
    padding: 12px 12px !important;
    font-size: 14px;
    line-height: 1.52;
  }

  .contact-section .contact-box span {
    margin-bottom: 5px;
    font-size: 13px;
  }

  body:not(.product-detail-page) .site-footer {
    padding-bottom: 66px;
  }
}

/* Homepage mobile hero rhythm correction. */
@media (max-width: 760px) {
  .enterprise-hero {
    padding: 112px 20px 40px !important;
    align-items: flex-start;
  }

  .hero-inner {
    gap: 18px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .enterprise-hero h1 {
    max-width: 11em;
    margin-right: auto;
    margin-bottom: 16px;
    margin-left: auto;
    font-size: clamp(29px, 7.4vw, 32px) !important;
    line-height: 1.2 !important;
    text-align: center;
    text-wrap: balance;
  }

  .hero-title-line {
    display: block;
    white-space: normal;
  }

  .mobile-title-break {
    display: block;
    white-space: normal;
  }

  .hero-lede {
    max-width: 26em;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.68;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 10px 8px;
    font-size: 15px;
  }

  .hero-play {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
  }

  .hero-play strong {
    font-size: 15px;
    line-height: 1.2;
  }

  .play-circle {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    box-shadow: none;
    animation: none;
  }

  .play-circle::before {
    margin-left: 3px;
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 10px;
  }

  .banner-image {
    margin-top: 10px;
  }

  .banner-image img {
    width: min(60vw, 220px) !important;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}

/* Homepage mobile navigation desktop color correction. */
@media (max-width: 760px) {
  .site-nav {
    border-color: rgba(255, 255, 255, 0.24);
    background:
      radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.16), transparent 28%),
      linear-gradient(135deg, rgba(35, 84, 200, 0.98), rgba(78, 76, 221, 0.98) 52%, rgba(123, 104, 238, 0.98));
    color: #ffffff;
    box-shadow: 0 22px 52px rgba(34, 44, 150, 0.26);
  }

  .nav-submenu {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
  }

  .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:hover,
  .site-header:not(.is-scrolled) .site-nav a:hover {
    background: rgba(255, 255, 255, 0.14);
  }

  .site-nav .nav-link::after {
    background: rgba(255, 255, 255, 0.92);
  }
}

/* Homepage mobile navigation light panel correction. */
@media (max-width: 760px) {
  .site-nav {
    border-color: rgba(255, 255, 255, 0.72);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.9));
    color: #17345f;
    box-shadow: 0 18px 48px rgba(31, 75, 160, 0.18);
    backdrop-filter: blur(18px) saturate(125%);
  }

  .site-nav a,
  .site-nav .nav-submenu a {
    color: #17345f;
    text-shadow: none;
  }

  .site-nav > .nav-link,
  .site-nav .nav-dropdown-trigger,
  .site-nav .language-switch {
    color: #17345f;
  }

  .site-nav .nav-link[aria-current="page"],
  .site-nav .nav-dropdown-trigger[aria-expanded="true"] {
    color: #1f63f0;
    background: rgba(31, 99, 240, 0.08);
  }

  .nav-submenu {
    border-color: rgba(31, 99, 240, 0.12);
    background: rgba(31, 99, 240, 0.06);
  }

  .site-nav .nav-submenu a {
    color: #243b63;
  }

  .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:hover,
  .site-header:not(.is-scrolled) .site-nav a:hover {
    color: #1f63f0;
    background: rgba(31, 99, 240, 0.08);
    text-shadow: none;
  }

  .site-header.is-scrolled .site-nav .nav-submenu a,
  .site-header.is-scrolled .site-nav .nav-submenu a:hover {
    color: #1f63f0;
  }

  .site-nav .nav-link::after {
    background: #1f63f0;
  }

  .language-switch {
    border-top-color: rgba(31, 99, 240, 0.14);
  }
}

/* Homepage mobile first-screen illustration correction. */
@media (max-width: 760px) {
  .enterprise-hero {
    padding: 84px 18px 24px !important;
    align-items: flex-start;
  }

  .hero-inner {
    gap: 8px;
    text-align: center;
  }

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

  .hero-visual,
  .banner-image {
    min-height: 0 !important;
  }

  .banner-image {
    margin-top: -2px;
    transform: none !important;
    animation: none;
  }

  .banner-image img {
    width: min(76vw, 286px) !important;
    height: auto !important;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Homepage mobile first-screen breathing correction. */
@media (max-width: 760px) {
  .enterprise-hero {
    padding: 92px 18px 30px !important;
  }

  .hero-inner {
    gap: 14px;
  }

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

  .banner-image {
    margin-top: 10px;
    transform: none !important;
  }

  .banner-image img {
    width: min(70vw, 264px) !important;
    height: auto !important;
  }
}

/* Homepage mobile navigation final desktop palette. */
@media (max-width: 760px) {
  .site-header:not(.is-scrolled) .nav-toggle {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 26px rgba(34, 44, 150, 0.16);
    backdrop-filter: blur(12px);
  }

  .site-nav {
    border-color: rgba(255, 255, 255, 0.24);
    background:
      radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.16), transparent 28%),
      linear-gradient(135deg, rgba(35, 84, 200, 0.98), rgba(78, 76, 221, 0.98) 52%, rgba(123, 104, 238, 0.98));
    color: #ffffff;
    box-shadow: 0 22px 52px rgba(34, 44, 150, 0.26);
    backdrop-filter: blur(14px) saturate(120%);
  }

  .site-nav a,
  .site-nav .nav-submenu a {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: none;
  }

  .site-nav > .nav-link,
  .site-nav .nav-dropdown-trigger,
  .site-nav .language-switch {
    color: rgba(255, 255, 255, 0.94);
  }

  .site-nav .nav-link[aria-current="page"],
  .site-nav .nav-dropdown-trigger[aria-expanded="true"] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
  }

  .nav-submenu {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
  }

  .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:hover,
  .site-header:not(.is-scrolled) .site-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    text-shadow: none;
  }

  .site-header.is-scrolled .site-nav .nav-submenu a,
  .site-header.is-scrolled .site-nav .nav-submenu a:hover {
    color: #ffffff;
  }

  .site-nav .nav-link::after {
    background: #68d7ff;
  }

  .language-switch {
    border-top-color: rgba(255, 255, 255, 0.16);
  }
}

/* Homepage mobile scrolled submenu palette correction. */
@media (max-width: 760px) {
  .site-header.is-scrolled .site-nav {
    border-color: rgba(255, 255, 255, 0.24);
    background:
      radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.16), transparent 28%),
      linear-gradient(135deg, rgba(35, 84, 200, 0.98), rgba(78, 76, 221, 0.98) 52%, rgba(123, 104, 238, 0.98));
    color: #ffffff;
    box-shadow: 0 22px 52px rgba(34, 44, 150, 0.26);
  }

  .site-header.is-scrolled .nav-submenu {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    transform: none;
  }

  .site-header.is-scrolled .site-nav a,
  .site-header.is-scrolled .site-nav .nav-submenu a {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: none;
  }

  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav .nav-submenu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    text-shadow: none;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .enterprise-hero {
    padding-top: 78px !important;
  }

  .banner-image img {
    width: min(78vw, 250px) !important;
    height: auto !important;
  }
}

/* Homepage solution tabs short viewport compaction. */
@media (max-height: 980px) and (min-width: 901px) {
  .case-band .tabs_item.case-item.is-active {
    grid-template-columns: minmax(0, 0.44fr) minmax(380px, 0.56fr) !important;
    min-height: 0 !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-solution-content {
    min-height: 0 !important;
    padding: 68px 78px 64px !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-solution-content > span {
    margin-bottom: 14px !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-solution-content h3 {
    margin-bottom: 18px !important;
    font-size: clamp(34px, 3.2vw, 54px) !important;
    line-height: 1.18 !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-solution-content p {
    line-height: 1.75 !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-list {
    gap: 10px;
    margin: 22px 0 28px !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-list li {
    line-height: 1.55;
  }

  .case-band .tabs_item.case-item.is-active .tab-image {
    height: 430px !important;
    max-height: 430px !important;
    padding: 14px 14px 14px 0 !important;
  }

  .case-band .tabs_item.case-item.is-active .tab-image::before {
    inset: 14px 14px 14px 0 !important;
  }
}

/* Campus solution detail short viewport compaction. */
@media (max-height: 980px) and (min-width: 1061px) {
  .campus-solution-page .campus-hero {
    min-height: 620px;
    padding: 96px clamp(24px, 5vw, 96px) 88px;
  }

  .campus-solution-page .campus-hero-inner {
    gap: clamp(36px, 5vw, 72px);
  }

  .campus-solution-page .campus-hero-copy h1,
  body[data-solution-detail="digital-campus-construction"] .campus-hero-copy h1,
  body[data-solution-detail="digital-campus-operations"] .campus-hero-copy h1,
  body[data-solution-detail="campus-business-platform"] .campus-hero-copy h1,
  body[data-solution-detail="teaching-training-environment"] .campus-hero-copy h1 {
    font-size: clamp(42px, 3.8vw, 58px);
  }

  .campus-solution-page .campus-hero-copy > p:not(.campus-kicker),
  body[data-solution-detail="digital-campus-construction"] .campus-hero-copy > p:not(.campus-kicker),
  body[data-solution-detail="digital-campus-operations"] .campus-hero-copy > p:not(.campus-kicker),
  body[data-solution-detail="campus-business-platform"] .campus-hero-copy > p:not(.campus-kicker),
  body[data-solution-detail="teaching-training-environment"] .campus-hero-copy > p:not(.campus-kicker) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.68;
  }

  .campus-solution-page .campus-hero-actions,
  body[data-solution-detail="digital-campus-construction"] .campus-hero-actions,
  body[data-solution-detail="digital-campus-operations"] .campus-hero-actions,
  body[data-solution-detail="campus-business-platform"] .campus-hero-actions,
  body[data-solution-detail="teaching-training-environment"] .campus-hero-actions {
    margin-top: 24px;
  }

  .campus-solution-page .campus-hero-capabilities {
    gap: 14px;
  }

  .campus-solution-page .campus-hero-capabilities article {
    min-height: 124px;
    padding: 20px 22px 18px;
  }

  .campus-solution-page .campus-hero-capabilities strong {
    margin-top: 16px;
    font-size: 21px;
  }

  .campus-solution-page .campus-hero-capabilities em {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.48;
  }
}

/* Product detail page v4: compact operations ticket hero for short viewports. */
@media (max-height: 820px) and (min-width: 761px) {
  .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-hero {
    padding-top: 86px;
    padding-bottom: 104px;
  }

  .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-inner,
  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-inner {
    gap: clamp(44px, 5vw, 76px);
    align-items: center;
  }

  .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(40px, 4.1vw, 58px);
    line-height: 1.12;
  }

  .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-lede {
    font-size: 17px;
    line-height: 1.72;
  }

  .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-note {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-actions {
    margin-top: 28px;
  }

  .product-detail-page[data-product-detail="ops-ticket-system"] .ticket-flow-card {
    min-height: 118px;
    gap: 12px;
    padding: 18px 22px;
  }

  .product-detail-page[data-product-detail="ops-ticket-system"] .ticket-flow-card strong {
    font-size: 21px;
  }

  .product-detail-page[data-product-detail="ops-ticket-system"] .ticket-flow-card em {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Product detail page v3: stabilize bilingual operations ticket hero rhythm. */
html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-inner {
  width: min(1280px, 100%);
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 0.9fr);
  gap: clamp(70px, 7vw, 118px);
}

html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-copy {
  max-width: 620px;
}

html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-copy h1 {
  max-width: 11.2em;
  font-size: clamp(46px, 4.4vw, 62px);
  line-height: 1.12;
  text-wrap: balance;
}

html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-lede {
  max-width: 60ch;
}

html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-note {
  max-width: 58ch;
}

html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .ticket-visual {
  min-width: 0;
}

@media (max-width: 1180px) {
  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-copy,
  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-copy h1,
  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-lede,
  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-note {
    max-width: 760px;
  }

  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .ticket-visual {
    width: min(760px, 100%);
  }
}

/* Product detail page v5: keep English short-view hero inside the first screen. */
@media (max-height: 820px) and (min-width: 761px) {
  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-copy h1 {
    max-width: 10.6em;
    font-size: clamp(38px, 3.9vw, 54px);
  }

  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-lede {
    max-width: 58ch;
    font-size: 16px;
    line-height: 1.62;
  }

  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .product-detail-note {
    display: none;
  }

  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .ticket-flow-card strong {
    font-size: 20px;
    line-height: 1.2;
  }

  html[lang="en"] .product-detail-page[data-product-detail="ops-ticket-system"] .ticket-flow-card em {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* Digital campus detail page v14: align delivery path badges with the shared palette. */
.campus-solution-page .campus-roadmap li::before {
  background: linear-gradient(90deg, #2f63f4 0%, #68d7ff 52%, #6b5cf6 100%);
}

.campus-solution-page .campus-roadmap span {
  border: 1px solid rgba(200, 241, 255, 0.48);
  color: #ffffff;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #2f63f4 0%, #6b5cf6 58%, #68d7ff 100%);
  box-shadow: 0 14px 30px rgba(47, 99, 244, 0.24);
}

/* Digital campus detail page v14: neutral glass CTA with brand-blue action. */
.campus-solution-page .campus-final-card {
  border: 1px solid rgba(177, 204, 244, 0.42);
  color: #14213d;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 252, 255, 0.72)),
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.82), transparent 30%);
  box-shadow: 0 18px 46px rgba(35, 83, 181, 0.14);
  backdrop-filter: blur(14px) saturate(116%);
}

.campus-solution-page .campus-final-card::after {
  border-color: rgba(101, 151, 236, 0.14);
}

.campus-solution-page .campus-final-card .campus-kicker {
  color: #2f6ff0;
}

.campus-solution-page .campus-final-card h2 {
  color: #14213d;
}

.campus-solution-page .campus-final-card p:last-child {
  color: rgba(38, 52, 80, 0.72);
}

.campus-solution-page .campus-footer-consult .campus-subscribe-button {
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(90deg, #2f7df0, #21a9d9);
  box-shadow: 0 14px 30px rgba(47, 125, 240, 0.26);
}

/* Digital campus detail page v15: remove duplicated hero mockup and reuse its panel language for CTA. */
.campus-solution-page .campus-hero {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding-top: 128px;
  padding-bottom: 128px;
}

.campus-solution-page .campus-hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.campus-solution-page .campus-hero-actions {
  justify-content: center;
}

.campus-solution-page .campus-final-card {
  overflow: hidden;
  border: 1px solid rgba(125, 169, 244, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 242, 255, 0.9)),
    linear-gradient(rgba(47, 125, 240, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 125, 240, 0.055) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  box-shadow:
    0 28px 76px rgba(30, 83, 190, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.campus-solution-page .campus-final-card::before {
  position: absolute;
  top: 22px;
  left: 30px;
  width: 72px;
  height: 10px;
  background:
    radial-gradient(circle, #ff6b6b 0 4px, transparent 5px),
    radial-gradient(circle, #ffb13b 0 4px, transparent 5px),
    radial-gradient(circle, #22c55e 0 4px, transparent 5px);
  background-position: 0 0, 24px 0, 48px 0;
  background-repeat: no-repeat;
  content: "";
}

.campus-solution-page .campus-final-card::after {
  inset: 18px;
  border-color: rgba(73, 126, 225, 0.14);
  border-radius: 14px;
}

.campus-solution-page .campus-final-card .campus-kicker {
  color: #5f7cf4;
}

.campus-solution-page .campus-final-card h2 {
  color: #13245c;
}

.campus-solution-page .campus-final-card p:last-child {
  color: #6c7895;
}

.campus-solution-page .campus-footer-consult .campus-subscribe-button {
  min-width: 168px;
  min-height: 60px;
  border: 1px solid rgba(47, 125, 240, 0.16);
  border-radius: 8px;
  background: linear-gradient(90deg, #2f7df0, #21a9d9);
  box-shadow: 0 18px 42px rgba(47, 125, 240, 0.24);
}

@media (max-width: 1060px) {
  .campus-solution-page .campus-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 96px;
  }
}

/* Digital campus detail page v16: rebalance hero content into a two-column lead. */
.campus-solution-page .campus-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 120px clamp(24px, 6vw, 120px) 150px;
  text-align: left;
}

.campus-solution-page .campus-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1240px, 100%);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
  margin: 0 auto;
}

.campus-solution-page .campus-hero-copy {
  max-width: 650px;
  margin: 0;
  text-align: left;
}

.campus-solution-page .campus-hero-copy h1 {
  margin: 0;
  font-size: clamp(58px, 5.4vw, 84px);
  line-height: 1.02;
  letter-spacing: 0;
}

.campus-solution-page .campus-hero-copy > p:not(.campus-kicker) {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: 19px;
  line-height: 1.9;
}

.campus-solution-page .campus-hero-actions {
  justify-content: flex-start;
  margin-top: 38px;
}

.campus-solution-page .campus-hero-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.campus-solution-page .campus-hero-capabilities article {
  position: relative;
  min-height: 148px;
  padding: 26px 26px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow: 0 22px 58px rgba(15, 50, 155, 0.18);
  backdrop-filter: blur(8px);
}

.campus-solution-page .campus-hero-capabilities article::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.campus-solution-page .campus-hero-capabilities span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #2b63f0;
  font-size: 13px;
  font-weight: 900;
  background: #ffffff;
}

.campus-solution-page .campus-hero-capabilities strong {
  display: block;
  margin-top: 22px;
  font-size: 24px;
  line-height: 1.25;
}

.campus-solution-page .campus-hero-capabilities em {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}

@media (max-width: 1060px) {
  .campus-solution-page .campus-hero {
    padding: 108px 28px 120px;
  }

  .campus-solution-page .campus-hero-inner {
    grid-template-columns: 1fr;
  }

  .campus-solution-page .campus-hero-copy {
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
  }

  .campus-solution-page .campus-hero-copy > p:not(.campus-kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .campus-solution-page .campus-hero-actions {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .campus-solution-page .campus-hero {
    padding: 88px 20px 96px;
  }

  .campus-solution-page .campus-hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .campus-solution-page .campus-hero-copy > p:not(.campus-kicker) {
    font-size: 16px;
  }

  .campus-solution-page .campus-hero-capabilities {
    grid-template-columns: 1fr;
  }
}

/* Digital campus operations page: blue cloud-service inspired solution detail. */
.ops-cloud-page {
  --ops-blue: #1669f2;
  --ops-blue-dark: #093c9b;
  --ops-cyan: #20c5ff;
  --ops-orange: #ff9f2a;
  --ops-ink: #0a1f44;
  --ops-muted: #63748f;
  --ops-line: rgba(32, 92, 180, 0.14);
  overflow-x: hidden;
  color: var(--ops-ink);
  background: #f4f8ff;
}

.ops-cloud-page .product-site-header {
  border-bottom: 1px solid rgba(13, 78, 173, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.ops-cloud-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ops-cloud-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 128px 0 92px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 24%, rgba(32, 197, 255, 0.32), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #0a3b94 0%, #126cf4 52%, #19a7df 100%);
}

.ops-cloud-hero::before,
.ops-cloud-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.ops-cloud-hero::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

.ops-cloud-hero::after {
  right: -11vw;
  bottom: -180px;
  width: 62vw;
  height: 360px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.13);
}

.ops-cloud-hero-bg span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(3, 22, 82, 0.18);
}

.ops-cloud-hero-bg span:nth-child(1) {
  top: 140px;
  right: 9vw;
  width: 118px;
  height: 118px;
}

.ops-cloud-hero-bg span:nth-child(2) {
  left: 8vw;
  bottom: 120px;
  width: 72px;
  height: 72px;
}

.ops-cloud-hero-bg span:nth-child(3) {
  right: 36vw;
  bottom: 70px;
  width: 38px;
  height: 38px;
}

.ops-cloud-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.ops-cloud-kicker {
  margin: 0 0 14px;
  color: var(--ops-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ops-cloud-hero-copy h1 {
  margin: 0;
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.06;
  letter-spacing: 0;
}

.ops-cloud-hero-copy > p:not(.ops-cloud-kicker) {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
}

.ops-cloud-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
}

.ops-cloud-page .btn-primary {
  background: linear-gradient(90deg, #ff9f2a, #ffcf5d);
  box-shadow: 0 18px 40px rgba(255, 159, 42, 0.32);
}

.ops-cloud-line-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.ops-cloud-console {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow: 0 34px 86px rgba(5, 31, 108, 0.28);
  backdrop-filter: blur(12px);
}

.ops-cloud-console::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.ops-console-head,
.ops-console-metrics,
.ops-console-flow {
  position: relative;
  z-index: 1;
}

.ops-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ops-console-head span {
  color: #b7f0ff;
  font-size: 13px;
  font-weight: 900;
}

.ops-console-head strong {
  color: #ffffff;
  font-size: 24px;
}

.ops-console-metrics {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.ops-console-metrics article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.ops-console-metrics b,
.ops-console-metrics em {
  display: block;
}

.ops-console-metrics b {
  color: #ffffff;
  font-size: 22px;
}

.ops-console-metrics em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

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

.ops-console-flow span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #08356f;
  font-weight: 900;
  background: #ffffff;
}

.ops-cloud-anchor {
  position: sticky;
  top: 82px;
  z-index: 8;
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 42px);
  padding: 18px 20px;
  border-bottom: 1px solid var(--ops-line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.ops-cloud-anchor a {
  color: #31557f;
  font-size: 14px;
  font-weight: 900;
}

.ops-cloud-anchor a:hover {
  color: var(--ops-blue);
}

.ops-cloud-section {
  padding: 96px 0;
}

.ops-cloud-section-head {
  max-width: 840px;
  margin-bottom: 42px;
}

.ops-cloud-section-head.is-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ops-cloud-section-head h2,
.ops-delivery-panel h2,
.ops-cloud-cta h2 {
  margin: 0;
  color: var(--ops-ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.22;
  letter-spacing: 0;
}

.ops-cloud-section-head p:not(.ops-cloud-kicker),
.ops-delivery-panel p,
.ops-cloud-cta p {
  margin: 18px 0 0;
  color: var(--ops-muted);
  font-size: 17px;
  line-height: 1.85;
}

.ops-challenge {
  background: #ffffff;
}

.ops-challenge-grid,
.ops-scope-grid,
.ops-platform-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ops-challenge-grid article,
.ops-scope-grid article,
.ops-platform-board article {
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--ops-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 65, 145, 0.08);
}

.ops-challenge-grid article::after,
.ops-platform-board article::after {
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(22, 105, 242, 0.08);
  content: "";
}

.ops-challenge-grid span,
.ops-platform-board span {
  display: inline-grid;
  min-width: 44px;
  height: 34px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: var(--ops-blue);
}

.ops-challenge-grid strong,
.ops-scope-grid strong,
.ops-platform-board strong {
  display: block;
  color: var(--ops-ink);
  font-size: 23px;
  line-height: 1.3;
}

.ops-challenge-grid p,
.ops-scope-grid p,
.ops-platform-board p {
  margin: 14px 0 0;
  color: var(--ops-muted);
  line-height: 1.75;
}

.ops-scope {
  background:
    radial-gradient(circle at 8% 20%, rgba(22, 105, 242, 0.08), transparent 24%),
    linear-gradient(180deg, #f4f8ff 0%, #edf5ff 100%);
}

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

.ops-scope-grid article {
  min-height: 250px;
  border-top: 4px solid var(--ops-blue);
}

.ops-scope-grid i {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, var(--ops-blue), var(--ops-cyan));
}

.ops-platform {
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 22%, rgba(32, 197, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #071e55 0%, #093c9b 54%, #087bb0 100%);
}

.ops-platform-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.ops-platform .ops-cloud-kicker,
.ops-cloud-hero .ops-cloud-kicker {
  color: #b7f0ff;
}

.ops-platform .ops-cloud-section-head h2,
.ops-platform .ops-cloud-section-head p {
  color: #ffffff;
}

.ops-platform .ops-cloud-section-head p:not(.ops-cloud-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.ops-platform-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ops-platform-board article {
  min-height: 220px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.ops-platform-board span {
  color: #093c9b;
  background: #ffffff;
}

.ops-platform-board strong,
.ops-platform-board p {
  color: #ffffff;
}

.ops-platform-board p {
  color: rgba(255, 255, 255, 0.74);
}

.ops-process {
  background: #ffffff;
}

.ops-process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--ops-line);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 65, 145, 0.08);
}

.ops-process-track li {
  min-height: 260px;
  padding: 28px 22px;
  border-right: 1px solid var(--ops-line);
}

.ops-process-track li:last-child {
  border-right: 0;
}

.ops-process-track span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--ops-blue), var(--ops-cyan));
}

.ops-process-track strong {
  display: block;
  color: var(--ops-ink);
  font-size: 23px;
}

.ops-process-track p {
  margin: 12px 0 0;
  color: var(--ops-muted);
  line-height: 1.72;
}

.ops-delivery {
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    linear-gradient(rgba(22, 105, 242, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 105, 242, 0.05) 1px, transparent 1px),
    #f4f8ff;
  background-size: auto, 38px 38px, 38px 38px;
}

.ops-delivery-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.ops-delivery-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ops-delivery-list span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--ops-line);
  border-left: 4px solid var(--ops-orange);
  border-radius: 7px;
  color: var(--ops-ink);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(15, 65, 145, 0.07);
}

.ops-cloud-cta {
  padding: 104px 0;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 28%, rgba(32, 197, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #06183d 0%, #0b3f96 58%, #1189c3 100%);
}

.ops-cloud-cta .ops-cloud-container {
  max-width: 900px;
}

.ops-cloud-cta h2,
.ops-cloud-cta p {
  color: #ffffff;
}

.ops-cloud-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.ops-cloud-cta .btn {
  margin-top: 34px;
}

@media (max-width: 1060px) {
  .ops-cloud-hero {
    min-height: auto;
    padding: 118px 0 76px;
  }

  .ops-cloud-hero-inner,
  .ops-platform-layout,
  .ops-delivery-panel {
    grid-template-columns: 1fr;
  }

  .ops-cloud-hero-copy {
    text-align: center;
  }

  .ops-cloud-hero-copy h1,
  .ops-cloud-hero-copy > p:not(.ops-cloud-kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .ops-cloud-actions {
    justify-content: center;
  }

  .ops-challenge-grid,
  .ops-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-process-track {
    grid-template-columns: 1fr;
  }

  .ops-process-track li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ops-line);
  }

  .ops-process-track li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  /* Mobile operations video banner: keep the video-only hero below the fixed header. */
  .ops-video-banner {
    --ops-video-mobile-offset: 82px;
    --ops-video-mobile-frame: min(56.25vw, 320px);
    display: flex;
    min-height: 0;
    height: calc(var(--ops-video-mobile-offset) + var(--ops-video-mobile-frame));
    flex-direction: column;
    background:
      linear-gradient(180deg, #061733 0%, #082554 48%, #061733 100%);
  }

  .ops-video-banner::after,
  .ops-video-banner .ops-hero-decor,
  .ops-video-banner .ops-hero-wave-edge {
    display: none;
  }

  .ops-video-banner-media {
    position: absolute;
    top: var(--ops-video-mobile-offset);
    right: 0;
    left: 0;
    width: 100%;
    height: var(--ops-video-mobile-frame);
    aspect-ratio: 16 / 9;
    background: #061733;
    object-fit: contain;
    object-position: center center;
    transform: none;
  }

  .ops-video-play {
    top: calc(var(--ops-video-mobile-offset) + min(28.125vw, 160px));
    right: auto;
    left: 50%;
    width: 58px;
    height: 58px;
    min-height: 0;
    padding: 0;
    font-size: 14px;
    transform: translate(-50%, -50%);
  }

  .ops-video-play:hover {
    transform: translate(-50%, -50%) scale(1.02);
  }

  .ops-video-play-icon {
    width: 34px;
    height: 34px;
  }

  .ops-video-status {
    top: calc(var(--ops-video-mobile-offset) + min(28.125vw, 160px) + 42px);
    right: auto;
    left: 50%;
    width: min(240px, calc(100vw - 40px));
    transform: translateX(-50%);
  }

  .ops-video-shade {
    top: var(--ops-video-mobile-offset);
    right: 0;
    left: 0;
    height: var(--ops-video-mobile-frame);
    background:
      linear-gradient(180deg, rgba(4, 18, 43, 0.08) 0%, rgba(4, 18, 43, 0.06) 58%, rgba(3, 10, 26, 0.72) 100%);
  }

  .ops-video-grid {
    top: var(--ops-video-mobile-offset);
    right: 0;
    left: 0;
    height: var(--ops-video-mobile-frame);
    opacity: 0.18;
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28), transparent);
  }

  .ops-video-shell {
    inset: calc(var(--ops-video-mobile-offset) + 14px) 18px auto;
    height: calc(var(--ops-video-mobile-frame) - 28px);
  }

  .ops-video-shell::before,
  .ops-video-shell::after,
  .ops-video-shell span {
    width: 58px;
    height: 58px;
  }

  .ops-video-content {
    display: none;
  }

  .ops-video-content::before {
    top: -24px;
    width: 72vw;
  }

  .ops-video-kicker {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .ops-video-kicker::before {
    width: 28px;
  }

  .ops-video-content h1 {
    gap: 0;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.02;
  }

  .ops-video-content h1 span:last-child {
    padding-left: 24px;
  }

  .ops-video-content p:not(.ops-video-kicker) {
    margin-top: 18px;
    padding-left: 14px;
    font-size: 15px;
    line-height: 1.72;
  }

  .ops-video-scroll {
    display: none;
  }

  .ops-cloud-container {
    width: min(100% - 28px, 1180px);
  }

  .ops-cloud-hero {
    padding-top: 96px;
  }

  .ops-cloud-hero-copy h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .ops-cloud-hero-copy > p:not(.ops-cloud-kicker),
  .ops-cloud-section-head p:not(.ops-cloud-kicker),
  .ops-delivery-panel p,
  .ops-cloud-cta p {
    font-size: 16px;
  }

  .ops-cloud-console {
    padding: 20px;
  }

  .ops-console-flow,
  .ops-platform-board,
  .ops-challenge-grid,
  .ops-scope-grid,
  .ops-delivery-list {
    grid-template-columns: 1fr;
  }

  .ops-cloud-anchor {
    position: relative;
    top: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .ops-cloud-section {
    padding: 72px 0;
  }
}

/* Digital campus detail page v16: reserve shared blueprint clearance for bilingual bottom nodes. */
.campus-solution-page .campus-blueprint-map {
  min-height: 880px;
}

.campus-solution-page .node-bottom {
  bottom: 30px;
}

/* Homepage mobile full-screen hero frame correction. */
@media (max-width: 760px) {
  .enterprise-hero {
    min-height: 100svh !important;
    padding: 92px 18px 92px !important;
  }

  .banner-image img {
    width: min(76vw, 286px) !important;
    height: auto !important;
  }
}

/* Digital campus detail page v17: stack blueprint map cards on mobile. */
@media (max-width: 680px) {
  .campus-solution-page .campus-blueprint-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100%, 560px);
    min-height: 880px;
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    overflow: visible;
  }

  .campus-solution-page .campus-blueprint-map::before,
  .campus-solution-page .campus-blueprint-map::after {
    display: none;
  }

  .campus-solution-page .campus-map-core,
  .campus-solution-page .map-node {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    min-width: 0;
    transform: none;
  }

  .campus-solution-page .campus-map-core {
    width: 100%;
    height: auto;
    min-height: 180px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.32), transparent 26%),
      radial-gradient(circle at 82% 86%, rgba(104, 215, 255, 0.28), transparent 32%),
      linear-gradient(135deg, #2f63f4 0%, #6b5cf6 58%, #68d7ff 100%);
    box-shadow: 0 30px 72px rgba(47, 99, 244, 0.26), 0 0 0 8px rgba(104, 215, 255, 0.08);
  }

  .campus-solution-page .map-node {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 22px 18px;
    text-align: center;
  }
}

/* Homepage mobile hero spacing follow-up. */
@media (max-width: 760px) {
  .hero-actions {
    margin-top: 24px;
  }

  .banner-image {
    margin-top: 24px !important;
  }
}

/* Digital campus detail page v18: center mobile section copy. */
@media (max-width: 680px) {
  .campus-solution-page .campus-section-head,
  .campus-solution-page .campus-delivery-copy,
  .campus-solution-page .campus-final-card {
    text-align: center;
  }

  .campus-solution-page .campus-section-head h2,
  .campus-solution-page .campus-delivery-copy h2,
  .campus-solution-page .campus-final-card h2 {
    margin-right: auto;
    margin-left: auto;
    text-wrap: balance;
  }

  .campus-solution-page .campus-section-head > p:not(.campus-kicker),
  .campus-solution-page .campus-delivery-copy > p:not(.campus-kicker),
  .campus-solution-page .campus-final-card p:last-child {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

/* Mobile navigation tap target hardening. */
@media (max-width: 760px) {
  .site-header {
    isolation: isolate;
  }

  .nav-toggle {
    position: relative;
    z-index: 160;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    pointer-events: auto;
    touch-action: manipulation;
    cursor: pointer;
    transform: translateZ(0);
  }

  .nav-toggle span {
    pointer-events: none;
  }

  .site-nav {
    z-index: 150;
  }
}

/* Mobile subpage title alignment pass. */
@media (max-width: 680px) {
  .product-detail-page .product-detail-copy,
  .product-detail-page .product-section-heading,
  .product-detail-page .product-detail-cta .product-detail-container,
  .campus-solution-page .campus-hero-copy,
  .campus-solution-page .campus-section-head,
  .campus-solution-page .campus-delivery-copy,
  .campus-solution-page .campus-final-card,
  .customer-cases-page .case-hero-copy,
  .customer-cases-page .customer-story-content,
  .customer-cases-page .case-detail-cta .product-detail-container {
    text-align: center;
  }

  .product-detail-page .product-section-heading,
  .product-detail-page .product-detail-copy,
  .campus-solution-page .campus-hero-copy,
  .campus-solution-page .campus-section-head,
  .campus-solution-page .campus-delivery-copy,
  .customer-cases-page .case-hero-copy {
    margin-right: auto;
    margin-left: auto;
  }

  .product-detail-page .product-detail-copy h1,
  .product-detail-page .product-section-heading h2,
  .product-detail-page .product-detail-cta h2,
  .campus-solution-page .campus-hero-copy h1,
  .campus-solution-page .campus-section-head h2,
  .campus-solution-page .campus-delivery-copy h2,
  .campus-solution-page .campus-final-card h2,
  .customer-cases-page .case-banner-inner h1,
  .customer-cases-page .customer-story-card h3,
  .customer-cases-page .case-detail-cta h2 {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    text-wrap: balance;
  }

  .product-detail-page .product-section-heading > p:not(.eyebrow),
  .product-detail-page .product-detail-copy > p:not(.eyebrow),
  .product-detail-page .product-detail-cta p:not(.eyebrow),
  .campus-solution-page .campus-section-head > p:not(.campus-kicker),
  .campus-solution-page .campus-delivery-copy > p:not(.campus-kicker),
  .campus-solution-page .campus-hero-copy > p:not(.campus-kicker),
  .customer-cases-page .case-hero-copy p:not(.campus-kicker),
  .customer-cases-page .customer-story-card p,
  .customer-cases-page .case-detail-cta p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .product-detail-page .product-detail-actions,
  .campus-solution-page .campus-hero-actions,
  .customer-cases-page .case-detail-cta .product-detail-container {
    justify-content: center;
  }

  .product-detail-page .product-value-grid article,
  .product-detail-page .product-feature-grid article,
  .product-detail-page .solution-architecture-grid article,
  .product-detail-page .delivery-grid article,
  .product-detail-page .scenario-list article,
  .product-detail-page .product-workflow li,
  .campus-solution-page .campus-problem-grid article,
  .campus-solution-page .campus-scene-lanes article,
  .campus-solution-page .campus-roadmap li,
  .campus-solution-page .campus-layer-stack div {
    text-align: center;
  }

  .product-detail-page .product-feature-grid span,
  .product-detail-page .solution-architecture-grid span,
  .product-detail-page .delivery-grid span,
  .product-detail-page .product-workflow span,
  .campus-solution-page .campus-problem-grid span,
  .campus-solution-page .campus-scene-lanes span,
  .campus-solution-page .campus-roadmap span,
  .customer-cases-page .customer-story-meta {
    justify-content: center;
  }
}

/* Mobile child-page navigation normalization. */
@media (max-width: 760px) {
  .product-site-header .site-nav {
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }

  .product-site-header .site-nav > a,
  .product-site-header .site-nav > .nav-dropdown > .nav-link {
    width: 100% !important;
    height: auto;
    min-height: 38px;
    padding: 9px 12px;
  }

  .campus-solution-page .product-site-header .site-nav > a,
  .campus-solution-page .product-site-header .site-nav > .nav-dropdown > .nav-link {
    width: 100% !important;
    height: auto;
    min-height: 38px;
    padding: 9px 12px;
  }

  .product-site-header .nav-dropdown {
    width: 100%;
    height: auto;
  }

  .product-site-header .site-nav .nav-link[aria-current="page"],
  .product-site-header .site-nav .nav-dropdown-trigger[aria-expanded="true"] {
    color: rgba(255, 255, 255, 0.94);
    background: transparent;
  }

  .product-site-header .site-nav .nav-link[aria-current="page"]::after {
    opacity: 0;
    transform: scaleX(0);
  }

  .product-site-header .site-nav a:hover,
  .product-site-header.is-scrolled .site-nav a:hover,
  .product-site-header:not(.is-scrolled) .site-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
  }
}

/* Child-page anchor scroll-spy state. */
.campus-anchor-strip a[aria-current="true"],
.campus-anchor-strip a.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #2b63f0, #7f72f0);
  box-shadow: 0 12px 28px rgba(47, 99, 240, 0.18);
  transform: translateY(-2px);
}

.ops-cloud-anchor a[aria-current="true"],
.ops-cloud-anchor a.is-active {
  color: var(--ops-blue);
}

@media (hover: none), (pointer: coarse) {
  .campus-anchor-strip a:hover {
    color: #5f7cf4;
    background: #eef3ff;
    box-shadow: none;
    transform: none;
  }

  .campus-anchor-strip a[aria-current="true"],
  .campus-anchor-strip a.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #2b63f0, #7f72f0);
    box-shadow: 0 12px 28px rgba(47, 99, 240, 0.18);
    transform: none;
  }
}

/* Click-controlled product submenu. */
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  visibility: hidden;
}

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

.site-nav .nav-submenu a[aria-current="page"],
.site-nav .nav-submenu a.is-active,
.site-header:not(.is-scrolled) .site-nav .nav-submenu a[aria-current="page"],
.site-header:not(.is-scrolled) .site-nav .nav-submenu a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 3px 0 0 #68d7ff;
  text-shadow: none;
}

.site-header.is-scrolled .site-nav .nav-submenu a[aria-current="page"],
.site-header.is-scrolled .site-nav .nav-submenu a.is-active {
  color: #2f63f4;
  background: rgba(47, 99, 244, 0.1);
  box-shadow: inset 3px 0 0 #2f63f4;
}

@media (max-width: 760px) {
  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
  }

  .nav-dropdown.is-open .nav-submenu,
  .nav-dropdown.is-open:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
}

/* Mobile product submenu collapse without reserved space. */
@media (max-width: 760px) {
  .nav-dropdown:not(.is-open) .nav-submenu,
  .nav-dropdown:not(.is-open):hover .nav-submenu,
  .nav-dropdown:not(.is-open):focus-within .nav-submenu {
    display: none;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
  }

  .nav-dropdown.is-open .nav-submenu,
  .nav-dropdown.is-open:hover .nav-submenu,
  .nav-dropdown.is-open:focus-within .nav-submenu {
    display: grid;
    height: auto;
    margin: 6px 0 2px;
    padding: 6px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav .nav-submenu a,
  .site-header.is-scrolled .site-nav .nav-submenu a {
    color: rgba(255, 255, 255, 0.94);
    background: transparent;
    box-shadow: none;
    text-shadow: none;
  }

  .site-nav .nav-submenu a[aria-current="page"],
  .site-nav .nav-submenu a.is-active,
  .site-header.is-scrolled .site-nav .nav-submenu a[aria-current="page"],
  .site-header.is-scrolled .site-nav .nav-submenu a.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 3px 0 0 #68d7ff;
  }
}

/* Mobile solution hero compression and anchor scrolling. */
@media (max-width: 760px) {
  .campus-solution-page .campus-hero {
    min-height: 100svh;
    align-items: center;
    padding: 104px 18px 34px;
    overflow: hidden;
  }

  .campus-solution-page .campus-hero::after {
    height: 52px;
  }

  .campus-solution-page .campus-template-particles {
    opacity: 0.24;
  }

  .campus-solution-page .campus-hero-inner {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-content: center;
    justify-items: center;
  }

  .campus-solution-page .campus-hero-copy {
    max-width: min(100%, 372px);
  }

  .campus-solution-page .campus-hero-copy .campus-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.25;
  }

  .campus-solution-page .campus-hero-copy h1,
  body[data-solution-detail="digital-campus-construction"] .campus-hero-copy h1,
  body[data-solution-detail="digital-campus-operations"] .campus-hero-copy h1,
  body[data-solution-detail="campus-business-platform"] .campus-hero-copy h1,
  body[data-solution-detail="teaching-training-environment"] .campus-hero-copy h1 {
    max-width: 9em;
    font-size: clamp(34px, 10.4vw, 46px);
    line-height: 1.1;
  }

  .campus-solution-page .campus-hero-copy > p:not(.campus-kicker),
  body[data-solution-detail="digital-campus-construction"] .campus-hero-copy > p:not(.campus-kicker),
  body[data-solution-detail="digital-campus-operations"] .campus-hero-copy > p:not(.campus-kicker),
  body[data-solution-detail="campus-business-platform"] .campus-hero-copy > p:not(.campus-kicker),
  body[data-solution-detail="teaching-training-environment"] .campus-hero-copy > p:not(.campus-kicker) {
    display: -webkit-box;
    max-width: 20em;
    margin-top: 16px;
    font-size: clamp(15px, 4.1vw, 17px);
    line-height: 1.58;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .campus-solution-page .campus-hero-actions,
  body[data-solution-detail="digital-campus-construction"] .campus-hero-actions,
  body[data-solution-detail="digital-campus-operations"] .campus-hero-actions,
  body[data-solution-detail="campus-business-platform"] .campus-hero-actions,
  body[data-solution-detail="teaching-training-environment"] .campus-hero-actions {
    margin-top: 20px;
    justify-content: center;
    gap: 0;
  }

  .campus-solution-page .campus-hero-actions .btn,
  body[data-solution-detail="digital-campus-construction"] .campus-hero-actions .btn,
  body[data-solution-detail="digital-campus-operations"] .campus-hero-actions .btn,
  body[data-solution-detail="campus-business-platform"] .campus-hero-actions .btn,
  body[data-solution-detail="teaching-training-environment"] .campus-hero-actions .btn {
    min-height: 46px;
    padding: 12px 24px;
  }

  .campus-solution-page .campus-hero-actions .subpage-hero-link {
    display: none;
  }

  .campus-solution-page .campus-hero-capabilities {
    display: flex;
    width: min(100%, 372px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
  }

  .campus-solution-page .campus-hero-capabilities article {
    flex: 0 1 auto;
    min-height: 0;
    padding: 8px 11px;
    border-color: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    box-shadow: none;
    backdrop-filter: none;
  }

  .campus-solution-page .campus-hero-capabilities article::after {
    display: none;
  }

  .campus-solution-page .campus-hero-capabilities span,
  .campus-solution-page .campus-hero-capabilities em {
    display: none;
  }

  .campus-solution-page .campus-hero-capabilities strong {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .campus-anchor-strip {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .campus-anchor-strip::-webkit-scrollbar {
    display: none;
  }

  .campus-anchor-strip a {
    flex: 0 0 auto;
    min-width: max-content;
    white-space: nowrap;
    scroll-snap-align: start;
  }
}

/* Mobile inquiry modal compact sheet. */
@media (max-width: 680px) {
  .inquiry-modal {
    align-items: center;
    padding: 16px;
  }

  .inquiry-dialog {
    width: min(100%, 360px);
    max-height: calc(100svh - 32px);
    padding: 20px 16px 16px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 12px;
  }

  .inquiry-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .inquiry-dialog-head {
    margin-bottom: 14px;
  }

  .inquiry-dialog-head span {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .inquiry-dialog-head h2 {
    padding-right: 40px;
    font-size: 20px;
    line-height: 1.25;
  }

  .inquiry-dialog-head p {
    display: none;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .inquiry-form label {
    gap: 5px;
  }

  .inquiry-form label > span {
    font-size: 12px;
    line-height: 1.35;
  }

  .inquiry-form input,
  .inquiry-form select,
  .inquiry-select-trigger {
    min-height: 42px;
    height: 42px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .inquiry-select-trigger {
    padding-right: 36px;
  }

  .inquiry-form textarea {
    min-height: 76px;
    max-height: 86px;
    padding: 10px 12px;
    font-size: 14px;
    resize: vertical;
  }

  .inquiry-status {
    min-height: 16px;
    font-size: 12px;
    line-height: 1.35;
  }

  .inquiry-consent {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
  }

  .inquiry-submit {
    min-height: 44px;
    height: 44px;
  }
}
