:root {
  --bg: #030b1a;
  --bg-soft: #071327;
  --bg-panel: rgba(8, 18, 44, 0.7);
  --bg-panel-strong: rgba(10, 21, 50, 0.86);
  --line: rgba(112, 156, 255, 0.22);
  --line-strong: rgba(112, 156, 255, 0.44);
  --text: #f5f8ff;
  --muted: #98abd7;
  --blue: #2563eb;
  --blue-soft: #60a5fa;
  --purple: #4f46e5;
  --cyan: #00e5ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --glow: 0 0 36px rgba(74, 112, 255, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1360px, calc(100% - 32px));
  --header-offset: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  overflow-x: hidden;
  padding-top: var(--header-offset);
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.16), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(79, 70, 229, 0.18), transparent 28%),
    linear-gradient(180deg, #020816 0%, #030b1a 42%, #040d1f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 100%);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  isolation: isolate;
  overflow: visible;
  padding: 18px 0;
  background-color: transparent;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  transition: background 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease, -webkit-backdrop-filter 0.28s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  box-shadow: none;
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    backdrop-filter 0.28s ease,
    -webkit-backdrop-filter 0.28s ease;
}

.site-header.is-scrolled::before,
.site-header.is-menu-open::before {
  background: rgba(3, 11, 26, 0.78);
  border-bottom-color: rgba(96, 165, 250, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(79, 70, 229, 0.18));
  letter-spacing: 0.22em;
  font-size: 0.82rem;
}

.brand-mark-image {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 6px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.brand-mark-image::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: rgba(2, 8, 24, 0.42);
}

.brand-mark-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.logo-mode-soft img {
  filter: brightness(1.08) contrast(1.06) saturate(0.84) drop-shadow(0 6px 18px rgba(0, 229, 255, 0.22));
}

.logo-mode-cutout img {
  filter: brightness(1.16) contrast(1.08) saturate(0.7) drop-shadow(0 8px 16px rgba(96, 165, 250, 0.18));
}

.logo-mode-raw img {
  filter: none;
}

.brand-name {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-name strong,
.brand-name em {
  display: block;
}

.brand-name strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-name em {
  color: rgba(207, 221, 250, 0.68);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
.site-header.is-scrolled::before,
  .site-header.is-menu-open::before {
    background: rgba(3, 11, 26, 0.94);
  }
}

.site-nav a {
  color: var(--muted);
  padding: 8px 2px;
  border-radius: 0;
  font-size: 0.96rem;
  line-height: 1;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(111, 220, 255, 0), rgba(111, 220, 255, 0.92), rgba(166, 122, 255, 0));
  transform: translateX(-50%) scaleX(0.2);
  opacity: 0;
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: transparent;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta).active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.3);
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav .nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.section {
  position: relative;
  padding: 56px 0;
}

.section-deep {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(3, 10, 26, 0.52);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 24px 0 48px;
}

.home-hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
}

.hero-bg-home::before,
.hero-bg-cube::before,
.hero-bg-solution::before,
.hero-bg-case::before,
.hero-bg-news::before,
.hero-bg-about::before,
.hero-bg-contact::before {
  width: 820px;
  height: 820px;
  right: -160px;
  top: -60px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 62%);
}

.hero-bg-home::after,
.hero-bg-cube::after,
.hero-bg-solution::after,
.hero-bg-case::after,
.hero-bg-news::after,
.hero-bg-about::after,
.hero-bg-contact::after {
  width: 540px;
  height: 540px;
  left: -140px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent 68%);
}

.hero-grid,
.inner-hero-grid,
.contact-page-grid,
.about-intro-grid,
.team-showcase-grid,
.cases-overview,
.tech-advantage-layout,
.news-main-grid,
.culture-qualification-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
}

.hero-grid,
.inner-hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(500px, 1.02fr);
  align-items: center;
}

.inner-hero-section {
  padding-top: 42px;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(3rem, 4.8vw, 5.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #8ec5ff 0%, #8aa0ff 35%, #c59cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(780px, 100%);
  padding-right: min(10vw, 96px);
}

.hero-lead {
  margin: 24px 0 12px;
  font-size: 1.4rem;
  color: #dbe7ff;
}

.hero-text,
.section-heading p,
.business-card p,
.solution-showcase-card p,
.case-card p,
.process-card p,
.news-preview-card p,
.mini-feature-card p,
.glass-panel p,
.team-advantage-item p,
.testimonial-card p,
.news-list-copy p,
.recommend-item span,
.contact-info-row span,
.footer-top p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions,
.hero-badges,
.brand-strip-logos,
.chip-row,
.hero-stat-row,
.case-metric-row,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-badges {
  margin-top: 24px;
}

.hero-note-grid,
.hero-stat-inline {
  display: grid;
  gap: 16px;
}

.hero-note-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.hero-note-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.12);
  background:
    linear-gradient(180deg, rgba(8, 20, 46, 0.56), rgba(6, 15, 32, 0.44)),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14px);
}

.hero-note-card span,
.hero-stat-inline-item span,
.hero-stat-inline-item em {
  color: var(--muted);
}

.hero-note-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.1);
  font-size: 0.82rem;
}

.hero-note-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-note-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-stat-inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat-inline-item {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-content: start;
  column-gap: 4px;
  row-gap: 4px;
}

.hero-stat-inline-item strong {
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: #eef6ff;
  line-height: 1;
}

.hero-stat-inline-item em {
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 2px;
}

.hero-stat-inline-item span {
  grid-column: 1 / -1;
  font-size: 0.94rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.3);
}

.button-secondary {
  border-color: rgba(96, 165, 250, 0.3);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.button-full {
  width: 100%;
}

.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  height: var(--icon-size);
  color: inherit;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.glass-pill,
.industry-chip,
.chip,
.case-metric-row span,
.footer-socials span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #dce9ff;
}

.eyebrow,
.section-kicker,
.testimonial-kicker{
  padding: 0;
  min-height: auto;
  border: 0;
  background: transparent;
  color: #73d9ff;
  letter-spacing: 0.14em;
}

.hero-visual,
.inner-visual {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  max-width: 760px;
  min-height: auto;
  margin-left: auto;
  transform: none;
  pointer-events: none;
  z-index: 0;
}

.sphere-shell,
.planet-card {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(100%, 560px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  isolation: isolate;
}

.sphere-shell {
  width: 660px;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08), transparent 62%);
  filter: drop-shadow(0 0 60px rgba(37, 99, 235, 0.18)) drop-shadow(0 0 110px rgba(123, 92, 255, 0.18));
}

.sphere-shell::before,
.sphere-shell::after,
.planet-card::before,
.planet-card::after,
.cube-stage::before,
.cube-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.sphere-shell::before {
  inset: 14% 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, rgba(255, 255, 255, 0.2), transparent 12%),
    radial-gradient(circle at 68% 28%, rgba(0, 229, 255, 0.14), transparent 14%),
    radial-gradient(circle at 50% 54%, rgba(37, 99, 235, 0.16), transparent 65%);
  box-shadow: inset 0 0 120px rgba(37, 99, 235, 0.18);
  z-index: 1;
}

.sphere-shell::after {
  left: 50%;
  bottom: 6%;
  width: 122%;
  height: 28%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(37, 99, 235, 0.22), transparent 48%),
    radial-gradient(circle at 70% 52%, rgba(139, 92, 246, 0.24), transparent 36%),
    radial-gradient(circle at 34% 58%, rgba(0, 212, 255, 0.18), transparent 34%);
  filter: blur(22px);
  z-index: 0;
}

.hero-webgl {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
}

.sphere-shell .hero-webgl,
.planet-card .hero-webgl {
  border-radius: 50%;
}

.hero-webgl canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.sphere-orbit,
.planet-ring,
.cube-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(110, 147, 255, 0.2);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.12), inset 0 0 18px rgba(0, 229, 255, 0.05);
  z-index: 4;
}

.sphere-orbit {
  inset: 50%;
  transform: translate(-50%, -50%);
}

.orbit-a {
  width: 116%;
  height: 54%;
  animation: orbitFloat 14s linear infinite;
}

.orbit-b {
  width: 92%;
  height: 92%;
  transform: translate(-50%, -50%) rotate(60deg);
  animation: orbitFloat 18s linear infinite reverse;
}

.orbit-c {
  width: 118%;
  height: 34%;
  transform: translate(-50%, -50%) rotate(-18deg);
  animation: orbitFloat 20s linear infinite;
}

.sphere-base {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 132%;
  height: 210px;
  transform: translateX(-50%);
  z-index: 3;
}

.base-ring {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: 0 0 26px rgba(37, 99, 235, 0.18), inset 0 0 20px rgba(139, 92, 246, 0.08);
}

.base-ring-a {
  bottom: 14px;
  width: 100%;
  height: 34%;
  animation: orbitFloat 13s linear infinite;
}

.base-ring-b {
  bottom: 28px;
  width: 82%;
  height: 22%;
  border-color: rgba(0, 229, 255, 0.26);
  animation: orbitFloat 16s linear infinite reverse;
}

.base-ring-c {
  bottom: 40px;
  width: 58%;
  height: 14%;
  border-color: rgba(139, 92, 246, 0.28);
  animation: orbitFloat 10s linear infinite;
}

.floating-panel,
.service-tab,
.industry-tab,
.hero-stat-card,
.metric-chip,
.mini-feature-card,
.testimonial-card,
.team-advantage-item,
.contact-info-card,
.side-panel,
.news-preview-card,
.business-card,
.solution-showcase-card,
.process-card,
.case-card,
.glass-panel,
.form-card,
.map-card,
.service-showcase-card,
.solution-detail-card,
.cta-banner,
.news-featured-card,
.news-spotlight-card,
.news-list-panel {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.floating-panel {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
  min-width: 180px;
}

.floating-panel span,
.service-tab em,
.hero-stat-card em,
.metric-chip span,
.footer-bottom,
.footer-bottom a,
.news-date,
.footer-top p {
  color: var(--muted);
}

.floating-panel strong,
.service-tab strong,
.metric-chip strong,
.hero-stat-card strong {
  display: block;
  margin-top: 6px;
}

.floating-panel span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-panel-a {
  right: 10px;
  top: 80px;
}

.floating-panel-b {
  left: 0;
  bottom: 70px;
}

.site-float-stack {
  position: fixed;
  top: 77%;
  right: 0;
  z-index: 80;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.site-float-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.site-customer-float {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  min-width: 164px;
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-right: 0;
  border-radius: 20px 0 0 20px;
  background:
    linear-gradient(180deg, rgba(7, 20, 48, 0.94), rgba(4, 12, 30, 0.88)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 24px 60px rgba(4, 12, 30, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  color: #eaf3ff;
  cursor: pointer;
  text-decoration: none;
  justify-content: flex-start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-customer-float:hover,
.site-customer-float:focus-visible {
  transform: translateX(-6px);
  border-color: rgba(110, 223, 255, 0.46);
  box-shadow:
    0 28px 72px rgba(4, 12, 30, 0.4),
    0 0 36px rgba(54, 139, 255, 0.22);
}

.site-customer-float-douyin {
  border-color: rgba(244, 114, 182, 0.28);
}

.site-customer-float-douyin:hover,
.site-customer-float-douyin:focus-visible {
  border-color: rgba(244, 114, 182, 0.52);
  box-shadow:
    0 28px 72px rgba(4, 12, 30, 0.42),
    0 0 40px rgba(244, 114, 182, 0.2);
}

.site-customer-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(125, 211, 252, 0.35), transparent 55%),
    linear-gradient(135deg, rgba(38, 92, 255, 0.9), rgba(45, 212, 191, 0.82));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(24, 118, 255, 0.26);
  flex: 0 0 auto;
}

.site-customer-float-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-customer-float-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.site-customer-float-copy strong,
.site-customer-float-copy em {
  display: block;
}

.site-customer-float-copy strong {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-customer-float-copy em {
  color: rgba(219, 231, 255, 0.66);
  font-style: normal;
  font-size: 0.8rem;
}

.site-float-item-douyin.is-open .site-customer-float-douyin {
  transform: translateX(-6px);
  border-color: rgba(244, 114, 182, 0.56);
  box-shadow:
    0 28px 72px rgba(4, 12, 30, 0.42),
    0 0 40px rgba(244, 114, 182, 0.22);
}

.site-douyin-panel {
  position: absolute;
  right: calc(100% + 14px);
  bottom: 0;
  width: min(300px, calc(100vw - 42px));
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(244, 114, 182, 0.22);
  background:
    radial-gradient(circle at top right, rgba(244, 114, 182, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(7, 18, 42, 0.98), rgba(4, 12, 30, 0.96));
  box-shadow:
    0 26px 70px rgba(4, 12, 30, 0.4),
    0 0 36px rgba(244, 114, 182, 0.12);
  backdrop-filter: blur(22px);
  transform: translateX(12px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-float-item-douyin.is-open .site-douyin-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.site-douyin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.site-douyin-panel-head strong {
  color: #f5f7ff;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.site-douyin-panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(232, 240, 255, 0.82);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-douyin-panel-close:hover,
.site-douyin-panel-close:focus-visible {
  background: rgba(244, 114, 182, 0.12);
  border-color: rgba(244, 114, 182, 0.32);
  color: #fff0f7;
}

.site-douyin-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(244, 114, 182, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #f7fbff;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.site-douyin-action:hover,
.site-douyin-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(244, 114, 182, 0.38);
  background: rgba(244, 114, 182, 0.1);
}

.site-douyin-qr-card {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.site-douyin-qr-media {
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 26, 0.82);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-douyin-qr-media:hover,
.site-douyin-qr-media:focus-visible {
  border-color: rgba(244, 114, 182, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 16, 30, 0.92);
  transform: translateY(-1px);
}

.site-douyin-qr-media img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
  padding: 8px;
  box-shadow:
    0 16px 36px rgba(4, 12, 30, 0.28),
    inset 0 0 0 1px rgba(10, 18, 30, 0.04);
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.site-douyin-qr-card p {
  margin: 0;
  color: rgba(222, 232, 255, 0.72);
  font-size: 0.82rem;
  text-align: center;
}

.brand-strip {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
}

.brand-strip .container {
  display: grid;
  gap: 18px;
}

.brand-strip-copy {
  text-align: center;
  color: #d5e3ff;
  font-size: 1.05rem;
}

.brand-strip-logos {
  justify-content: space-between;
  color: rgba(219, 233, 255, 0.72);
}

.section-heading {
  margin-bottom: 36px;
  max-width: 920px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 18px 0 12px;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.14;
}

.business-grid,
.solution-showcase-grid,
.cases-grid,
.news-card-row,
.advantage-card-grid,
.process-steps,
.service-showcase-grid,
.solution-case-grid,
.case-list-grid,
.testimonial-grid,
.culture-card-grid {
  display: grid;
  gap: 22px;
}

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

.business-card,
.solution-showcase-card,
.process-card,
.news-preview-card,
.mini-feature-card,
.testimonial-card,
.team-advantage-item {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.business-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.business-card::before,
.solution-showcase-card::before,
.case-card::before,
.service-showcase-card::before,
.mini-feature-card::before,
.news-preview-card::before,
.cta-banner::before,
.glass-panel::before,
.form-card::before,
.news-featured-card::before,
.news-list-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.36), rgba(79, 70, 229, 0.12), transparent 65%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.business-icon,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(79, 70, 229, 0.18));
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.04), 0 0 24px rgba(37, 99, 235, 0.16);
}

.business-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
}

.business-icon span,
.mini-icon {
  font-weight: 700;
  color: #c6efff;
}

.business-icon .icon-svg,
.mini-icon .icon-svg,
.service-illustration-badge .icon-svg,
.cube-body .icon-svg {
  color: #c6efff;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.25));
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #70c8ff;
  font-weight: 600;
}

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

.solution-showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.solution-showcase-glow {
  position: absolute;
  right: -40px;
  top: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 68%);
}

.solution-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #dbe7ff;
}

.check-list li {
  position: relative;
  padding-left: 18px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue-soft));
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.36);
}

.cases-overview {
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: stretch;
}

.cases-stats {
  display: grid;
  align-content: start;
  gap: 22px;
}

.metric-stack {
  display: grid;
  gap: 4px;
}

.metric-stack strong,
.talent-metric strong {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: #67d8ff;
}

.metric-stack em {
  font-style: normal;
  margin-top: -10px;
  color: #67d8ff;
}

.metric-stack span {
  color: var(--muted);
}

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

.case-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.case-media,
.news-list-thumb,
.about-image-card,
.team-visual-card,
.map-placeholder {
  background-size: cover;
  background-position: center;
}

.case-media {
  position: relative;
  height: 200px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.case-media-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 12, 32, 0.5);
  backdrop-filter: blur(14px);
}

.case-media-copy span {
  color: #d8e7ff;
}

.case-media-copy strong {
  color: #7fdaff;
  font-size: 0.95rem;
}

.case-media-1 {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(79, 70, 229, 0.2)),
    var(--site-image-tech-abstract);
}

.case-media-2 {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(79, 70, 229, 0.14)),
    var(--site-image-hero-office);
}

.case-media-3 {
  background:
    linear-gradient(135deg, rgba(8, 26, 64, 0.24), rgba(79, 70, 229, 0.18)),
    var(--site-image-tech-abstract);
  background-position: center;
}

.case-media-4,
.news-list-thumb-1,
.news-list-thumb-2,
.news-list-thumb-3,
.about-image-card,
.team-visual-card {
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.25), transparent 22%),
    radial-gradient(circle at 72% 32%, rgba(79, 70, 229, 0.24), transparent 22%),
    linear-gradient(135deg, rgba(7, 21, 53, 0.95), rgba(7, 15, 32, 0.95));
}

.case-body,
.news-featured-body {
  padding: 24px;
}

.case-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.business-card .card-link,
.solution-showcase-card .card-link,
.case-body .card-link {
  margin-top: auto;
  padding-top: 18px;
  align-self: flex-start;
}

.case-topline,
.news-list-topline,
.news-preview-foot,
.footer-bottom,
.footer-brand-row,
.contact-info-row,
.panel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.case-stat-grid,
.team-ratio-row,
.about-info-list,
.core-points,
.contact-info-list,
.recommend-list {
  display: grid;
  gap: 16px;
}

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

.case-stat-grid strong {
  display: block;
  color: #6bdeff;
  font-size: 1.55rem;
}

.case-stat-grid span {
  color: var(--muted);
}

.tech-advantage-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.75fr);
  align-items: center;
}

.tech-scene-panel {
  position: relative;
  padding: 38px 34px;
  border-radius: 36px;
  border: 1px solid rgba(96, 165, 250, 0.12);
  background:
    radial-gradient(circle at 50% 12%, rgba(84, 141, 255, 0.2), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(5, 15, 38, 0.96), rgba(4, 11, 28, 0.9));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.tech-scene-panel::before,
.tech-scene-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-scene-panel::before {
  background:
    linear-gradient(115deg, transparent 0 16%, rgba(88, 142, 255, 0.14) 16.2%, transparent 16.6%, transparent 32%, rgba(88, 142, 255, 0.08) 32.2%, transparent 32.6%, transparent 100%),
    linear-gradient(64deg, transparent 0 26%, rgba(121, 219, 255, 0.12) 26.2%, transparent 26.6%, transparent 54%, rgba(121, 219, 255, 0.08) 54.2%, transparent 54.6%, transparent 100%);
  opacity: 0.48;
}

.tech-scene-panel::after {
  inset: auto 16% -26% 16%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 66%);
  filter: blur(22px);
}

.advantage-list,
.contact-side-stack,
.team-advantage-list {
  display: grid;
  gap: 18px;
}

.tech-capability-list {
  display: grid;
  gap: 18px;
}

.advantage-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.advantage-icon,
.advantage-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(34, 84, 210, 0.5), rgba(18, 36, 92, 0.9)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(96, 165, 250, 0.18);
  color: #c9efff;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.05), 0 10px 26px rgba(37, 99, 235, 0.18);
}

.advantage-icon {
  width: 48px;
  height: 48px;
}

.advantage-dot {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue-soft));
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.42);
}

.tech-core-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.18), transparent 34%),
    var(--bg-panel-strong);
  box-shadow: var(--shadow);
}

.tech-core-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #91dcff;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.core-stack {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.core-layer {
  width: 220px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid rgba(110, 147, 255, 0.3);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(79, 70, 229, 0.28));
  color: #d8f4ff;
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.24);
}

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

.core-points span {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #dbe7ff;
}

.tech-capability-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  background:
    linear-gradient(180deg, rgba(8, 22, 48, 0.82), rgba(6, 15, 32, 0.76)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.tech-capability-item strong,
.tech-capability-copy strong {
  display: block;
  margin-bottom: 8px;
  color: #ecf5ff;
}

.tech-capability-item span,
.tech-capability-copy span {
  color: var(--muted);
  line-height: 1.7;
}

.tech-capability-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background:
    linear-gradient(180deg, rgba(35, 87, 214, 0.44), rgba(18, 36, 92, 0.86)),
    rgba(255, 255, 255, 0.04);
  color: #cdf1ff;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.05), 0 10px 24px rgba(37, 99, 235, 0.16);
}

.process-steps,
.process-line {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.process-card {
  border-radius: 24px;
}

.process-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.process-index {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.22);
  color: #c9efff;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background:
    linear-gradient(180deg, rgba(35, 87, 214, 0.42), rgba(18, 36, 92, 0.82)),
    rgba(255, 255, 255, 0.04);
  color: #cdf1ff;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.05), 0 12px 26px rgba(37, 99, 235, 0.14);
}

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

.news-preview-card {
  border-radius: 24px;
}

.section-heading-news {
  display: grid;
  grid-template-columns: 1fr minmax(0, 760px) 1fr;
  align-items: end;
  gap: 18px;
  text-align: center;
}

.section-heading-news-copy {
  grid-column: 2;
  width: min(100%, 760px);
  margin: 0 auto;
}

.news-nav-buttons {
  display: inline-flex;
  gap: 10px;
  flex: 0 0 auto;
  grid-column: 3;
  justify-self: end;
  align-self: end;
}

.news-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #d5ebff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease, opacity 0.26s ease;
}

.news-nav-button:hover {
  transform: translateY(-2px);
  border-color: rgba(113, 216, 255, 0.34);
  background: rgba(37, 99, 235, 0.14);
}

.news-nav-button:disabled {
  cursor: default;
  opacity: 0.4;
  transform: none;
}

.news-card-row.is-swapping {
  opacity: 0.78;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(6, 18, 52, 0.94), rgba(9, 23, 62, 0.9)),
    url("/static/images/light-wave.svg");
}

.cta-banner-note {
  margin: 0 0 12px;
  color: rgba(236, 244, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.cta-banner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.service-tabs,
.industry-tabs,
.filter-row,
.news-categories,
.news-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-tab,
.industry-tab,
.filter-chip {
  border-radius: 22px;
  color: var(--text);
}

.service-tab,
.industry-tab {
  flex: 1;
  min-width: 160px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
}

.service-tab span,
.industry-tab .mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}

.service-tab.active,
.industry-tab.active,
.filter-chip.active,
.filter-chip:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.14), 0 0 28px rgba(37, 99, 235, 0.18);
}

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

.service-tab em {
  display: block;
  margin-top: 6px;
  font-style: normal;
}

.service-showcase-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 18px;
  align-items: center;
}

.service-showcase-card-wide {
  grid-column: span 2;
}

.service-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 30%, rgba(96, 165, 250, 0.18), transparent 28%), rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(96, 165, 250, 0.16);
}

.service-illustration-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  border-radius: 32px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(79, 70, 229, 0.12));
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.04), 0 0 32px rgba(37, 99, 235, 0.18);
}

.service-illustration small {
  max-width: 150px;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}

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

.inner-visual-cube {
  display: grid;
  place-items: center;
}

.cube-stage {
  position: relative;
  width: 540px;
  height: 450px;
}

.cube-stage::before {
  left: 50%;
  top: 6%;
  width: 62%;
  height: 62%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 72%);
  filter: blur(12px);
  z-index: 0;
}

.cube-stage::after {
  left: 50%;
  bottom: 8%;
  width: 84%;
  height: 22%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.24), transparent 52%),
    radial-gradient(circle at 65% 50%, rgba(139, 92, 246, 0.22), transparent 32%);
  filter: blur(18px);
  z-index: 0;
}

.hero-webgl-cube {
  inset: 0;
  border-radius: 42px;
}

.cube-pedestal {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 58%;
  height: 26%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.3), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.2), transparent 58%);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.06), 0 0 30px rgba(37, 99, 235, 0.24);
  z-index: 1;
}

.cube-core-label {
  position: absolute;
  left: 50%;
  top: 37%;
  transform: translate(-50%, -50%);
  z-index: 4;
  font-size: 4.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(221, 244, 255, 0.92);
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.36), 0 0 38px rgba(96, 165, 250, 0.3);
}

.cube-satellite {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(139, 92, 246, 0.18));
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.16);
  z-index: 2;
}

.cube-satellite-a {
  right: 12%;
  top: 22%;
  transform: rotate(18deg);
}

.cube-satellite-b {
  right: 5%;
  bottom: 26%;
  width: 28px;
  height: 28px;
  transform: rotate(22deg);
}

.cube-ring {
  inset: 50%;
  transform: translate(-50%, -50%);
}

.cube-ring.ring-a {
  width: 84%;
  height: 24%;
  bottom: 14%;
  top: auto;
  animation: orbitFloat 12s linear infinite;
}

.cube-ring.ring-b {
  width: 58%;
  height: 58%;
  top: 46%;
  transform: translate(-50%, -50%) rotate(58deg);
  animation: orbitFloat 18s linear infinite reverse;
}

.planet-card {
  width: 640px;
  height: 520px;
  aspect-ratio: auto;
  border-radius: 0;
}

.planet-card::before {
  left: 50%;
  top: 50%;
  width: 56%;
  height: 56%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 68%);
  filter: blur(12px);
  z-index: 0;
}

.planet-card::after {
  left: 50%;
  bottom: 9%;
  width: 82%;
  height: 24%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.24), transparent 54%),
    radial-gradient(circle at 66% 50%, rgba(139, 92, 246, 0.22), transparent 30%);
  filter: blur(18px);
  z-index: 0;
}

.planet-core {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.28), transparent 10%),
    radial-gradient(circle at 68% 66%, rgba(79, 70, 229, 0.24), transparent 12%),
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.4), rgba(17, 31, 78, 0.9) 60%);
  box-shadow: inset 0 0 60px rgba(0, 229, 255, 0.16), 0 0 90px rgba(79, 70, 229, 0.24);
  z-index: 1;
  opacity: 0.45;
}

.planet-ring {
  inset: 50%;
  transform: translate(-50%, -50%);
}

.planet-ring.ring-a {
  width: 108%;
  height: 30%;
  top: 66%;
  animation: orbitFloat 12s linear infinite;
}

.planet-ring.ring-b {
  width: 94%;
  height: 56%;
  top: 46%;
  transform: translate(-50%, -50%) rotate(54deg);
  animation: orbitFloat 18s linear infinite reverse;
}

.planet-ring.ring-c {
  width: 118%;
  height: 24%;
  top: 36%;
  transform: translate(-50%, -50%) rotate(-10deg);
  animation: orbitFloat 22s linear infinite;
}

.planet-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #dff8ff;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.28), rgba(11, 19, 56, 0.88));
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.18), inset 0 0 18px rgba(255, 255, 255, 0.04);
  z-index: 5;
}

.node-a {
  top: 16%;
  left: 12%;
}

.node-b {
  top: 14%;
  right: 14%;
}

.node-c {
  top: 48%;
  left: 6%;
}

.node-d {
  top: 48%;
  right: 8%;
}

.node-e {
  bottom: 10%;
  left: 22%;
}

.solution-detail-stack {
  display: grid;
}

.solution-detail-card {
  position: relative;
  padding: 36px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: center;
}

.solution-detail-card.is-hidden {
  display: none;
}

.solution-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.factory-board {
  width: min(100%, 360px);
  display: grid;
  gap: 16px;
}

.metric-chip {
  padding: 18px 20px;
  border-radius: 20px;
}

.metric-chip strong {
  font-size: 2rem;
  color: #6bdeff;
}

.hero-stat-row {
  margin-top: 28px;
}

.hero-stat-card {
  min-width: 140px;
  padding: 18px 20px;
  border-radius: 20px;
}

.hero-stat-card strong {
  font-size: 1.8rem;
  color: #6edfff;
}

.filter-chip {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

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

.testimonial-card {
  border-radius: 24px;
}

.news-controls {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.search-shell {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  padding: 0 18px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.search-shell input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
}

.news-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
}

.news-headline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.news-headline-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 28px;
}

.news-headline-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(88, 202, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(10, 24, 52, 0.94), rgba(6, 16, 34, 0.92));
}

.news-headline-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 28, 0.04), rgba(4, 12, 28, 0.26));
  pointer-events: none;
}

.news-headline-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.news-headline-body {
  padding: 22px 22px 24px;
}

.news-headline-body p {
  margin: 0;
}

.news-headline-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 24px;
  border: 1px dashed rgba(96, 165, 250, 0.2);
  color: #9fb4de;
  background:
    linear-gradient(180deg, rgba(8, 22, 50, 0.72), rgba(5, 14, 30, 0.56)),
    rgba(255, 255, 255, 0.02);
  text-align: center;
}

.news-featured-card,
.news-spotlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

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

.news-featured-media,
.news-spotlight-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(88, 202, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(10, 24, 52, 0.94), rgba(6, 16, 34, 0.92));
}

.news-featured-media::after,
.news-spotlight-media::after,
.news-list-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 28, 0.04), rgba(4, 12, 28, 0.26));
  pointer-events: none;
}

.news-featured-media img,
.news-spotlight-media img,
.news-list-thumb img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.news-spotlight-column {
  display: grid;
  gap: 24px;
}

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

.news-spotlight-card > div:last-child {
  padding: 22px;
}

.news-main-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.news-side-column {
  display: grid;
  gap: 24px;
}

.news-list-panel,
.side-panel {
  position: relative;
  border-radius: 28px;
  padding: 24px;
}

.panel-title-row p,
.news-side-note {
  margin: 8px 0 0;
  color: #8ea2d1;
  line-height: 1.7;
  font-size: 0.94rem;
}

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

.news-list-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 22, 50, 0.78), rgba(5, 14, 30, 0.62)),
    rgba(255, 255, 255, 0.02);
}

.news-list-thumb {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 102px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, 0.12);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(88, 202, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(10, 24, 52, 0.9), rgba(6, 16, 34, 0.88));
}

.recommend-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
}

.recommend-item strong {
  font-size: 1.6rem;
  color: #55cfff;
}

.about-intro-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.about-image-card,
.team-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 30px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  box-shadow: var(--shadow);
}

.visual-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(180deg, rgba(3, 11, 26, 0), rgba(3, 11, 26, 0.86));
}

.visual-card-copy h3 {
  margin: 16px 0 10px;
  font-size: 1.5rem;
}

.visual-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
}

.about-profile-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 10px;
}

.business-card h3,
.solution-showcase-card h3,
.case-card h3,
.process-card h3,
.news-preview-card h3,
.mini-feature-card h3,
.news-spotlight-card h3,
.news-list-copy h3,
.culture-item strong,
.contact-info-card h2,
.form-card h2,
.testimonial-card strong,
.service-showcase-card h3,
.solution-detail-card h2,
.glass-panel h2 {
  margin: 16px 0 10px;
}

.culture-item strong,
.recommend-item p,
.news-featured-body h2,
.team-advantage-item h3 {
  display: block;
}

.news-featured-body h2 {
  margin: 14px 0 12px;
}

.recommend-item p {
  margin: 0 0 6px;
}

.about-info-list div,
.team-ratio-row div,
.contact-info-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-info-list div:last-child,
.team-ratio-row div:last-child,
.contact-info-row:last-child {
  border-bottom: 0;
}

.about-info-list strong,
.culture-item strong,
.contact-info-row strong {
  display: block;
  margin-bottom: 6px;
}

.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.12), rgba(111, 220, 255, 0.5), rgba(96, 165, 250, 0.12));
}

.about-timeline-item {
  position: relative;
}

.about-timeline-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 32px;
  margin-bottom: 18px;
}

.about-timeline-head strong {
  color: #69d8ff;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.about-timeline-dot {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #dff8ff 0%, #62cfff 38%, #2563eb 100%);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12), 0 0 18px rgba(74, 222, 255, 0.42);
}

.about-timeline-card {
  min-height: 220px;
  padding: 24px 22px 22px;
  border-radius: 26px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 22, 50, 0.76), rgba(5, 14, 30, 0.6)),
    rgba(255, 255, 255, 0.02);
}

.about-timeline-card h3 {
  margin: 0 0 12px;
}

.about-timeline-card p {
  margin: 0;
  color: #9db2db;
  line-height: 1.8;
}

.team-showcase-grid {
  grid-template-columns: 1fr 1fr minmax(280px, 0.78fr);
  align-items: stretch;
}

.talent-metric {
  margin: 24px 0 20px;
}

.team-ratio-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-ratio-row strong {
  display: block;
  color: #6adfff;
}

.team-advantage-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.culture-qualification-grid {
  grid-template-columns: 1fr 1fr;
}

.culture-qualification-grid.single {
  grid-template-columns: 1fr;
}

.culture-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.culture-item {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.contact-info-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.contact-page-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: stretch;
}

.form-card,
.contact-info-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
}

.message-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.message-form label {
  display: grid;
  gap: 10px;
}

.message-form span {
  color: #dce8ff;
}

.message-form input,
.message-form textarea,
.form-select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-select option {
  color: #071426;
  background: #eef4ff;
}

.message-form textarea {
  min-height: 136px;
  resize: vertical;
}

.message-form input:focus,
.message-form textarea:focus,
.form-select:focus {
  border-color: rgba(96, 165, 250, 0.44);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.captcha-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.captcha-chip {
  min-width: 132px;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(37, 99, 235, 0.12);
  color: var(--text);
  cursor: pointer;
}

.message-form .contact-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.message-form .contact-consent-row input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border-radius: 6px;
  flex: 0 0 auto;
  accent-color: var(--blue-soft);
}

.message-form .contact-consent-row span {
  display: block;
  line-height: 1.7;
}

.message-form .contact-consent-row a {
  color: #8feaff;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
}

.form-feedback.success {
  color: #68e39a;
}

.form-feedback.error {
  color: #ff8f8f;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-qr-inline {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 18px;
  align-items: center;
}

.contact-qr-inline img,
.footer-qr-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
}

.map-card {
  overflow: hidden;
  min-height: 0;
  border-radius: 30px;
  display: flex;
}

.contact-map-shell {
  position: relative;
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(96, 165, 250, 0.12);
  background:
    linear-gradient(180deg, rgba(8, 22, 50, 0.82), rgba(5, 14, 30, 0.72)),
    rgba(255, 255, 255, 0.02);
}

.contact-map-canvas {
  width: 100%;
  min-height: 0;
  height: 100%;
}

.contact-map-fallback {
  min-height: 0;
  height: 100%;
}

.contact-map-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background: rgba(4, 12, 28, 0.78);
  color: #dce8ff;
  line-height: 1.7;
  backdrop-filter: blur(14px);
}

.map-card iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.map-placeholder {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 30px;
  background:
    radial-gradient(circle at 68% 56%, rgba(37, 99, 235, 0.22), transparent 8%),
    linear-gradient(180deg, rgba(3, 11, 26, 0.4), rgba(3, 11, 26, 0.86)),
    url("/static/images/soft-grid.svg");
}

.site-footer {
  padding: 40px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(5, 13, 31, 0.96), rgba(3, 9, 21, 0.98)),
    rgba(2, 7, 18, 0.86);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr) minmax(240px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.footer-brand-block,
.footer-contact-block {
  min-width: 0;
}

.footer-brand-row {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand-copy {
  min-width: 0;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.42), rgba(79, 70, 229, 0.32));
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.22);
}

.footer-brand-mark-image {
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  padding: 9px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.footer-brand-mark-image::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: rgba(2, 8, 24, 0.42);
}

.footer-brand-mark-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}

.footer-brand-mark-text {
  min-width: 96px;
  min-height: 52px;
  padding: 0 16px;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: #dce9ff;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-brand-note {
  margin: 0;
  max-width: 280px;
  line-height: 1.75;
}

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

.footer-contact-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.footer-contact-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
}

.footer-contact-copy p {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-title {
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-contact-block {
  display: grid;
  align-content: start;
  padding-top: 2px;
}

.footer-contact-block p,
.footer-links-block p {
  margin: 0 0 10px;
}

.footer-qr-card {
  display: grid;
  flex: 0 0 168px;
  gap: 12px;
  align-items: start;
  justify-items: center;
  text-align: center;
  transform: translateY(-16px);
}

.footer-qr-media {
  width: 168px;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.footer-qr-card p {
  margin: 0;
  color: #b7caef;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-between;
  align-items: center;
  color: #b5c9ef;
}

.simple-center {
  text-align: center;
}

.hero-visual,
.inner-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-visual-frame::before,
.hero-visual-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-visual-frame::before {
  width: 420px;
  height: 420px;
  left: 6%;
  top: 12%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
  filter: blur(16px);
}

.hero-visual-frame::after {
  width: 360px;
  height: 360px;
  right: 8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 72%);
  filter: blur(20px);
}

.hero-visual-image,
.section-visual-image,
.certificate-visual,
.service-illustration-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-visual-image {
  position: relative;
  z-index: 1;
  opacity: 0.96;
  filter: drop-shadow(0 28px 80px rgba(0, 0, 0, 0.26));
  animation: visualFloat 9s ease-in-out infinite;
}

.hero-floating-stack {
  position: absolute;
  right: 8%;
  bottom: 10%;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(220px, 38%);
}

.hero-floating-card {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background: rgba(6, 18, 43, 0.48);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero-floating-card span,
.hero-floating-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.hero-floating-card strong {
  display: block;
  margin: 6px 0;
  color: #edf4ff;
  line-height: 1.5;
}


.news-headline-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.news-headline-pagination.is-empty {
  display: none;
}

.news-page-button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 24, 54, 0.92), rgba(6, 16, 36, 0.88)),
    rgba(255, 255, 255, 0.02);
  color: #e7f0ff;
  font: inherit;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.news-page-button:hover,
.news-page-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(148, 196, 255, 0.34);
  box-shadow: 0 12px 24px rgba(4, 12, 28, 0.24);
  outline: none;
}

.news-page-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.news-page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 8px;
}

.news-page-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(125, 154, 205, 0.32);
  box-shadow: inset 0 0 0 1px rgba(202, 221, 255, 0.08);
  cursor: pointer;
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.news-page-dot:hover,
.news-page-dot:focus-visible {
  background: rgba(167, 200, 255, 0.74);
  transform: scale(1.08);
  outline: none;
}

.news-page-dot.active {
  width: 30px;
  background: linear-gradient(90deg, #89e8ff 0%, #7fb2ff 100%);
  box-shadow: 0 0 0 1px rgba(183, 225, 255, 0.16), 0 10px 20px rgba(35, 99, 235, 0.24);
}

body:not([data-page="home"]) .hero-copy {
  max-width: min(720px, 100%);
  padding-right: min(5vw, 44px);
}

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

.business-visual,
.solution-card-visual {
  margin-bottom: 18px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 21, 46, 0.92), rgba(5, 14, 30, 0.82)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(96, 165, 250, 0.14);
}

.business-visual img,
.solution-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.solution-card-metric {
  color: #71d8ff;
  font-weight: 700;
}

.tech-core-card {
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  background:
    linear-gradient(180deg, rgba(6, 17, 40, 0.92), rgba(4, 12, 28, 0.82)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.tech-core-card img {
  width: 100%;
  height: auto;
}

.service-showcase-card,
.solution-detail-card,
.cta-banner,
.about-image-card,
.team-visual-card,
.map-card {
  overflow: hidden;
}

.service-illustration {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: center;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background:
    linear-gradient(180deg, rgba(9, 22, 48, 0.94), rgba(5, 14, 30, 0.78)),
    rgba(255, 255, 255, 0.03);
}

.service-illustration small {
  color: var(--muted);
  text-align: center;
}

.solution-detail-visual-card {
  width: min(100%, 360px);
  display: grid;
  gap: 16px;
  justify-items: stretch;
}

.solution-detail-visual-card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(96, 165, 250, 0.12);
}

.cta-banner-wave {
  position: relative;
  background:
    linear-gradient(135deg, rgba(8, 22, 48, 0.4), rgba(9, 16, 34, 0.6)),
    var(--site-image-01index-hero) center center/cover no-repeat;
}

.cta-banner-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 38, 0.82), rgba(6, 16, 38, 0.46) 54%, rgba(6, 16, 38, 0.7)),
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.14), transparent 36%),
    radial-gradient(circle at 82% 36%, rgba(124, 58, 237, 0.14), transparent 24%);
  pointer-events: none;
}

.cta-banner-wave > * {
  position: relative;
  z-index: 1;
}

.about-image-card,
.team-visual-card,
.map-placeholder-static {
  position: relative;
}

.about-image-card::before,
.team-visual-card::before,
.map-placeholder-static::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 11, 26, 0.06), rgba(3, 11, 26, 0.68));
  pointer-events: none;
}

.visual-card-copy,
.map-placeholder-static > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.certificate-visual {
  margin: 18px 0 24px;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.contact-side-stack {
  display: grid;
  gap: 20px;
  min-height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}

.map-placeholder-static {
  display: block;
  min-height: 340px;
  padding: 0;
  background: linear-gradient(180deg, rgba(3, 11, 26, 0.4), rgba(3, 11, 26, 0.86));
}

.map-placeholder-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-placeholder-static > div {
  padding: 30px;
}

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

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

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

.is-hidden {
  display: none !important;
}

@keyframes orbitFloat {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes visualFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroHaloOrbitA {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes heroHaloOrbitB {
  from {
    transform: translate(-50%, -50%) rotate(58deg) scale(1);
  }

  to {
    transform: translate(-50%, -50%) rotate(418deg) scale(1);
  }
}

@keyframes heroHaloOrbitC {
  from {
    transform: translate(-50%, -50%) rotate(-14deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(346deg);
  }
}

@keyframes heroHaloPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes heroHaloFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes heroHaloSweep {
  0% {
    transform: translateX(-50%) rotate(0deg);
    opacity: 0.22;
  }

  50% {
    opacity: 0.52;
  }

  100% {
    transform: translateX(-50%) rotate(360deg);
    opacity: 0.22;
  }
}

@keyframes heroHaloLinePulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 0.86;
    transform: scaleX(1);
  }
}

@media (max-width: 1180px) {
.business-grid,
  .solution-showcase-grid,
  .advantage-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

.service-showcase-card-wide {
    grid-column: auto;
  }

.team-showcase-grid,
  .about-intro-grid,
  .culture-qualification-grid,
  .contact-page-grid,
  .hero-grid,
  .inner-hero-grid,
  .news-main-grid,
  .tech-advantage-layout,
  .cases-overview,
  .news-featured-grid {
    grid-template-columns: 1fr;
  }

.contact-side-stack {
    height: auto;
    grid-template-rows: auto auto;
  }

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

.hero-copy {
    padding-right: min(12vw, 96px);
    max-width: min(660px, 100%);
  }

.hero-note-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-top,
  .footer-links-block {
    grid-template-columns: 1fr;
  }

.footer-contact-main {
    max-width: 420px;
  }

.section-heading-news {
    align-items: center;
  }
}

@media (max-width: 960px) {
.menu-toggle {
    display: inline-block;
  }

.site-header {
    padding: 12px 0;
  }

.site-header::before {
    background: rgba(3, 11, 26, 0.94);
    border-bottom-color: rgba(96, 165, 250, 0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  }

.header-inner {
    min-height: 52px;
    gap: 14px;
  }

.brand {
    gap: 10px;
  }

.brand-mark-image {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: 12px;
  }

.brand-mark-image img {
    border-radius: 8px;
  }

.brand-name strong {
    font-size: 0.94rem;
  }

.brand-name em {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

.site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(96, 165, 250, 0.16);
    background: rgba(3, 11, 26, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

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

.site-nav a {
    text-align: left;
    padding: 12px 14px;
    border-radius: 16px;
  }

.site-nav a:not(.nav-cta)::after {
    display: none;
  }

.site-nav .nav-cta {
    min-height: 44px;
    margin-top: 4px;
  }

.business-grid,
  .solution-showcase-grid,
  .cases-grid,
  .case-list-grid,
  .solution-case-grid,
  .testimonial-grid,
  .news-card-row,
  .advantage-card-grid,
  .process-steps,
  .process-line,
  .team-ratio-row,
  .culture-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.service-showcase-card,
  .solution-detail-card,
  .news-featured-card,
  .news-spotlight-card,
  .news-list-item {
    grid-template-columns: 1fr;
  }

.hero-copy h1 {
    font-size: clamp(2.8rem, 7vw, 4.2rem);
  }

.hero-floating-stack {
    display: none;
  }

.hero-visual-frame {
    width: 100%;
  }

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

.footer-contact-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: start;
    max-width: 100%;
  }

.footer-qr-card {
    justify-items: start;
    text-align: left;
  }

.section-heading-news {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

}

@media (max-width: 680px) {
:root {
    --container: min(100% - 20px, 100%);
  }

.section {
    padding: 36px 0;
  }

.hero-section {
    padding-bottom: 24px;
  }

.business-grid,
  .solution-showcase-grid,
  .cases-grid,
  .case-list-grid,
  .solution-case-grid,
  .testimonial-grid,
  .news-card-row,
  .advantage-card-grid,
  .process-steps,
  .process-line,
  .team-ratio-row,
  .case-stat-grid,
  .culture-card-grid,
  .cases-stats {
    grid-template-columns: 1fr;
  }

.hero-visual-frame {
    padding: 0;
  }

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

  .hero-copy {
    padding-right: 0;
    max-width: 100%;
  }

.hero-note-grid,
  .hero-stat-inline {
    grid-template-columns: 1fr;
  }

.brand-strip-logos {
    justify-content: center;
  }

.cta-banner,
  .footer-bottom,
  .news-controls {
    display: grid;
    justify-content: stretch;
  }

.search-shell {
    min-width: 0;
    width: 100%;
  }

.footer-qr-card,
  .contact-qr-inline {
    grid-template-columns: 1fr;
  }

.footer-contact-main {
    gap: 16px;
  }

.footer-qr-media {
    width: 156px;
  }
}

.solutions-detail-shell {
  display: block;
}

.solutions-detail-main {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 36px;
  align-items: stretch;
}

.solutions-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: none;
}

.solutions-panel-copy-head {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.solutions-panel-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: #93e8ff;
  font-size: 0.94rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solutions-panel-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
}

.solutions-panel-copy p {
  margin: 0;
  max-width: 560px;
}

.solutions-panel-copy .button {
  align-self: flex-start;
  margin-top: 28px;
}

.solutions-focus-panel {
  padding: 0;
  border: 0;
  background: none;
}

.solutions-focus-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
}

.solutions-focus-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background:
    linear-gradient(180deg, rgba(9, 22, 48, 0.72), rgba(6, 14, 32, 0.56)),
    rgba(255, 255, 255, 0.03);
}

.solutions-focus-item .mini-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 0;
}

.solutions-focus-item strong,
.solutions-value-item strong,
.solutions-case-stats strong {
  display: block;
}

.solutions-focus-item strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.solutions-focus-item span:last-child {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.94rem;
}

.solutions-panel-visual {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-width: 0;
}

.solutions-visual-card {
  position: relative;
  width: 100%;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.16);
  background:
    radial-gradient(circle at 70% 22%, rgba(73, 119, 255, 0.24), transparent 22%),
    radial-gradient(circle at 20% 88%, rgba(0, 229, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(12, 31, 72, 0.94), rgba(5, 16, 36, 0.96));
  box-shadow: inset 0 0 60px rgba(37, 99, 235, 0.18);
}

.solutions-visual-card::before,
.solutions-visual-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.solutions-visual-card::before {
  inset: auto 8% 10% 8%;
  height: 22%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.26), transparent 48%),
    radial-gradient(circle at 72% 50%, rgba(168, 85, 247, 0.18), transparent 36%);
  filter: blur(18px);
}

.solutions-visual-card::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 28, 0.04), rgba(4, 12, 28, 0.46)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 16%);
}

.solutions-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.solutions-scene-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(143, 180, 255, 0.22);
  background: rgba(18, 39, 89, 0.82);
  color: #eaf4ff;
  font-size: 0.9rem;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.18);
}

.solutions-scene-tag.tag-a {
  top: 34%;
  left: 4%;
}

.solutions-scene-tag.tag-b {
  top: 14%;
  right: 14%;
}

.solutions-scene-tag.tag-c {
  right: 6%;
  bottom: 23%;
}

.solutions-scene-tag.tag-d {
  right: 18%;
  bottom: 10%;
}

.solutions-value-section {
  padding-top: 6px;
}

.solutions-value-panel .section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.solutions-value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.solutions-value-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 0;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.solutions-value-item .mini-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 0;
}

.solutions-value-item strong {
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: #69d8ff;
  line-height: 1.1;
}

.solutions-value-item span:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.solutions-case-card {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(6, 18, 44, 0.94), rgba(4, 12, 28, 0.88)),
    rgba(255, 255, 255, 0.02);
}

.solutions-case-media {
  position: relative;
  height: 236px;
  display: flex;
  align-items: flex-start;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background-size: cover;
  background-position: center;
}

.solutions-case-media .industry-chip {
  position: relative;
  z-index: 1;
}

.image-preview-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: zoom-in;
}

.image-preview-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-preview-trigger-cover {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.image-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 20px;
}

.image-preview-modal.is-hidden {
  display: none;
}

.image-preview-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(2, 8, 22, 0.86);
  backdrop-filter: blur(14px);
}

.image-preview-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: calc(100vh - 40px);
  padding: 18px 18px 16px;
  border-radius: 28px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 20, 48, 0.94), rgba(4, 12, 28, 0.92)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.image-preview-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 999px;
  background: rgba(4, 12, 28, 0.72);
  color: #dce8ff;
  font: inherit;
  cursor: pointer;
}

.image-preview-shell {
  display: grid;
  place-items: center;
  min-height: 240px;
  max-height: calc(100vh - 140px);
  padding: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 20%, rgba(88, 202, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(10, 24, 52, 0.96), rgba(6, 16, 34, 0.9));
}

.image-preview-shell img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
}

.image-preview-caption {
  margin: 14px 8px 0;
  color: #d5e4ff;
  text-align: center;
  line-height: 1.7;
}

html.image-preview-open,
body.image-preview-open {
  overflow: hidden;
}

.solutions-case-body h3 {
  margin-top: 0;
}

.solutions-case-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.solutions-case-stats strong {
  font-size: 2rem;
  color: #5fd6ff;
}

.solutions-case-stats span {
  color: var(--muted);
  line-height: 1.6;
}

.solutions-advantage-card {
  position: relative;
  min-height: 186px;
  padding: 24px 20px;
  text-align: center;
  display: grid;
  justify-items: center;
  align-content: center;
}

.solutions-advantage-card .mini-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
}

.solutions-advantage-card h3 {
  margin-top: 0;
}

.solutions-advantage-card::after {
  content: "›";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(5, 16, 38, 0.96);
  border: 1px solid rgba(112, 156, 255, 0.18);
  color: #6fdcff;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.18);
}

.solutions-advantage-card:last-child::after {
  display: none;
}

@media (max-width: 1280px) {
.solutions-detail-main {
    align-items: start;
  }

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

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

.solutions-advantage-card:nth-child(2)::after,
  .solutions-advantage-card:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 920px) {
.solutions-case-stats {
    gap: 12px;
  }

.solutions-advantage-card::after {
    display: none;
  }
}

@media (max-width: 640px) {
.solutions-focus-item,
  .solutions-value-item {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 16px 14px;
  }

.solutions-focus-item .mini-icon,
  .solutions-value-item .mini-icon {
    width: 46px;
    height: 46px;
  }

.solutions-scene-tag {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

.solutions-case-stats strong {
    font-size: 1.7rem;
  }
}

@media (max-width: 820px) {
.site-float-stack {
    top: auto;
    right: 0;
    bottom: 40px;
    transform: none;
  }

.site-customer-float:hover,
  .site-customer-float:focus-visible {
    transform: translateX(-3px);
  }

.site-customer-float {
    min-height: 60px;
    min-width: 150px;
    padding-right: 12px;
  }

.site-douyin-panel {
    right: calc(100% + 10px);
    width: min(280px, calc(100vw - 36px));
  }
}

@media (max-width: 640px) {
.site-float-stack {
    bottom: 34px;
  }

.site-customer-float {
    gap: 10px;
    padding: 10px 12px 10px 10px;
    min-width: 140px;
  }

.site-customer-float-icon {
    width: 40px;
    height: 40px;
  }

.site-customer-float-copy strong {
    font-size: 0.9rem;
  }

.site-customer-float-copy em {
    font-size: 0.76rem;
  }

.site-douyin-panel {
    right: calc(100% + 8px);
    width: min(260px, calc(100vw - 28px));
    padding: 12px;
  }

.site-douyin-panel-head strong {
    font-size: 0.94rem;
  }

.site-douyin-action {
    min-height: 44px;
    font-size: 0.92rem;
  }

.site-douyin-qr-media img {
    width: min(100%, 192px);
  }
}
