/*
Theme Name: Yuqi V3
Author: Yuqi Intelligent
Description: Independent structured solution and article presentation theme for Yuqi Intelligent.
Version: 4.2.12
Text Domain: yuqi-v3
*/

:root {
  --f-bg: #06101d;
  --f-bg-secondary: #0a1727;
  --f-bg-deep: #081522;
  --f-card: #0f1f32;
  --f-card-strong: #12253b;
  --f-text: #f5f7fa;
  --f-text-secondary: #aab6c5;
  --f-text-muted: #7e8b9b;
  --f-blue: #2f7cf6;
  --f-blue-hover: #4d8df7;
  --f-cyan: #35c3d4;
  --f-border: rgba(255, 255, 255, 0.1);
  --f-border-strong: rgba(255, 255, 255, 0.18);
  --f-container: 1240px;
  --f-reading: 780px;
  --f-header-height: 72px;
  --f-radius: 4px;
  color-scheme: dark;
}

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

html {
  background: var(--f-bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--f-header-height) + 20px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--f-bg);
  color: var(--f-text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

figure,
h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--f-cyan);
  outline-offset: 4px;
}

::selection {
  background: var(--f-blue);
  color: #fff;
}

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

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  color: #06101d;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--f-header-height);
  border-bottom: 1px solid transparent;
  background: rgba(6, 16, 29, 0.78);
  backdrop-filter: blur(16px);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  border-bottom-color: var(--f-border);
  background: rgba(6, 16, 29, 0.98);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 24px;
}

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

.brand-logo,
.site-logo-text {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--f-border-strong);
  color: var(--f-text);
  font-size: 10px;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  max-width: 220px;
  overflow: hidden;
  color: var(--f-text);
  font-size: 15px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--f-text-muted);
  font-size: 10px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-link,
.header-phone {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--f-text-secondary);
  cursor: pointer;
  font-size: 15px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.is-current,
.header-phone:hover {
  color: var(--f-text);
}

.nav-link.is-current::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--f-blue);
  content: "";
}

.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  gap: 7px;
}

.nav-state {
  color: var(--f-text-muted);
  font-size: 11px;
}

.nav-dropdown-trigger:hover .nav-state,
.nav-dropdown-trigger[aria-expanded="true"] .nav-state {
  color: var(--f-cyan);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  width: 430px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 12px;
  border: 1px solid var(--f-border);
  background: rgba(10, 23, 39, 0.99);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  padding: 9px 11px;
  color: var(--f-text-secondary);
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(47, 124, 246, 0.12);
  color: var(--f-text);
}

.nav-dropdown a strong {
  font-size: 14px;
  font-weight: 600;
}

.nav-dropdown a span {
  margin-top: 2px;
  color: var(--f-text-muted);
  font-size: 11px;
}

.nav-dropdown-overview {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--f-border);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid var(--f-border);
  color: var(--f-text-muted);
  font-size: 12px;
  white-space: nowrap;
}

.language-switcher a {
  color: var(--f-text-muted);
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a.is-current {
  color: var(--f-text);
}

.language-switcher a.is-current {
  font-weight: 650;
}

.language-switcher-mobile {
  width: max-content;
  min-height: 42px;
  padding-right: 13px;
  padding-left: 13px;
  font-size: 14px;
}

.lang-en .brand-copy small {
  display: none;
}

.lang-en .brand-copy strong {
  max-width: 150px;
}

.header-phone {
  font-size: 14px;
}

.menu-toggle {
  display: none;
  min-width: 58px;
  height: 40px;
  margin-left: auto;
  padding: 0 10px;
  border: 1px solid var(--f-border-strong);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.menu-toggle span {
  display: none;
}

.menu-toggle::before {
  content: "菜单";
}

.menu-toggle[aria-expanded="true"]::before {
  content: "关闭";
}

.lang-en .menu-toggle::before {
  content: "Menu";
}

.lang-en .menu-toggle[aria-expanded="true"]::before {
  content: "Close";
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 620;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  border-color: var(--f-blue);
  background: var(--f-blue);
  color: #fff;
}

.button-primary:hover {
  border-color: var(--f-blue-hover);
  background: var(--f-blue-hover);
}

.button-outline,
.button-ghost {
  border-color: var(--f-border-strong);
  background: rgba(6, 16, 29, 0.35);
  color: var(--f-text);
}

.button-outline:hover,
.button-ghost:hover {
  border-color: var(--f-blue);
  background: rgba(47, 124, 246, 0.12);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.text-link,
.card-link {
  color: var(--f-cyan);
  font-size: 14px;
  font-weight: 620;
}

.text-link:hover,
.card-link:hover {
  color: var(--f-text);
}

.eyebrow {
  color: var(--f-cyan);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

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

.eyebrow-light::before {
  width: 26px;
  height: 1px;
  background: var(--f-cyan);
  content: "";
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.02em;
}

.hero-carousel {
  position: relative;
  height: calc(100svh - var(--f-header-height));
  min-height: 650px;
  overflow: hidden;
  background: var(--f-bg);
}

.carousel-slides,
.carousel-slide,
.slide-image,
.slide-overlay {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  z-index: 1;
  background: var(--f-bg-deep);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.carousel-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.slide-image {
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 420ms ease, transform 900ms ease;
}

.carousel-slide.is-active .slide-image img {
  opacity: 1;
  transform: scale(1.01);
}

.carousel-slide:nth-child(1) .slide-image img {
  object-position: center 52%;
}

.carousel-slide:nth-child(2) .slide-image img {
  object-position: center 48%;
}

.carousel-slide:nth-child(3) .slide-image img {
  object-position: center 50%;
}

.slide-overlay {
  z-index: 3;
  background: linear-gradient(90deg, rgba(6, 16, 29, 0.98) 0%, rgba(6, 16, 29, 0.88) 31%, rgba(6, 16, 29, 0.48) 63%, rgba(6, 16, 29, 0.58) 100%), linear-gradient(0deg, rgba(6, 16, 29, 0.82), rgba(6, 16, 29, 0.08) 45%, rgba(6, 16, 29, 0.34));
  pointer-events: none;
}

.hero-interface {
  position: relative;
  z-index: 4;
  display: flex;
  height: 100%;
  flex-direction: column;
  padding-top: 28px;
  padding-bottom: 28px;
}

.hero-copy {
  display: flex;
  max-width: 650px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 34px 0 82px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.hero-copy.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hero-copy h1 {
  max-width: 650px;
  margin-top: 18px;
  color: var(--f-text);
  font-size: clamp(48px, 4vw, 56px);
  font-weight: 650;
  line-height: 1.16;
}

.hero-copy h1 span {
  display: block;
}

@media (min-width: 641px) {
  .lang-en .hero-copy,
  .lang-en .hero-copy h1 {
    max-width: 850px;
  }

  .lang-en .hero-copy h1 {
    font-size: clamp(44px, 5vw, 50px);
  }
}

.hero-description {
  max-width: 600px;
  margin-top: 23px;
  color: var(--f-text-secondary);
  font-size: 18px;
  line-height: 1.85;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-context {
  position: absolute;
  right: 0;
  bottom: 150px;
  width: 256px;
  padding: 18px 20px 19px;
  border: 1px solid var(--f-border);
  background: rgba(6, 16, 29, 0.72);
  backdrop-filter: blur(12px);
}

.context-label {
  color: var(--f-text);
  font-size: 15px;
  font-weight: 650;
}

.context-title {
  margin-top: 8px;
  color: var(--f-text-muted);
  font-size: 12px;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  margin-top: 13px;
}

.scope-list li {
  padding-top: 7px;
  border-top: 1px solid var(--f-border);
  color: var(--f-text-secondary);
  font-size: 13px;
}

.hero-bottom {
  display: grid;
  min-height: 68px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--f-border);
}

.hero-quick-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-quick-links a {
  color: var(--f-text-secondary);
  font-size: 14px;
}

.hero-quick-links a:hover {
  color: var(--f-text);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-arrow {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--f-text-secondary);
  cursor: pointer;
  font-size: 13px;
}

.carousel-arrow:hover {
  color: var(--f-text);
}

.carousel-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--f-text-muted);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.carousel-dot.is-active {
  width: 24px;
  border-color: var(--f-blue);
  border-radius: 6px;
  background: var(--f-blue);
}

.carousel-index {
  display: flex;
  min-width: 42px;
  align-items: baseline;
  gap: 4px;
  color: var(--f-text-muted);
  font-size: 12px;
}

.carousel-index strong {
  color: var(--f-text);
  font-size: 16px;
  font-weight: 650;
}

.scroll-cue {
  color: var(--f-text-muted);
  font-size: 12px;
  white-space: nowrap;
}

.scroll-cue span {
  display: none;
}

.section {
  padding: 96px 0;
}

.section[id] {
  scroll-margin-top: calc(var(--f-header-height) + 18px);
}

.admin-bar .section[id] {
  scroll-margin-top: calc(var(--f-header-height) + 50px);
}

.page-section {
  padding-top: 80px;
  padding-bottom: 96px;
}

.services-section,
.cases-section,
.articles-section,
.source-content-section,
.about-overview,
.single-content-section,
.project-content-section {
  background: var(--f-bg);
}

.solutions-section,
.delivery-section,
.about-service-section,
.about-process-section,
.related-projects {
  background: var(--f-bg-secondary);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.section-heading h2,
.source-content-heading h2 {
  max-width: 760px;
  margin-top: 9px;
  color: var(--f-text);
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 620;
  line-height: 1.3;
}

.section-note {
  max-width: 390px;
  color: var(--f-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.catalog {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
}

.catalog-mobile {
  display: none;
}

.catalog-disclosure {
  border-top: 1px solid var(--f-border);
  background: var(--f-card);
}

.catalog-disclosure:last-child {
  border-bottom: 1px solid var(--f-border);
}

.catalog-disclosure summary {
  display: grid;
  min-height: 72px;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px 16px;
  color: var(--f-text-secondary);
  cursor: pointer;
}

.catalog-disclosure[open] summary {
  color: var(--f-text);
}

.catalog-disclosure summary > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.catalog-disclosure summary strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.catalog-disclosure summary small {
  margin-top: 3px;
  color: var(--f-text-muted);
  font-size: 12px;
}

.catalog-disclosure-body {
  padding: 0 18px 22px;
  border-top: 1px solid var(--f-border);
}

.catalog-disclosure-body > p {
  padding-top: 18px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.catalog-tabs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--f-border);
}

.catalog-tab {
  display: grid;
  min-height: 78px;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  align-items: center;
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid var(--f-border);
  background: transparent;
  color: var(--f-text-secondary);
  cursor: pointer;
  text-align: left;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.catalog-tab:hover,
.catalog-tab.is-active {
  border-left: 2px solid var(--f-blue);
  background: rgba(47, 124, 246, 0.1);
  color: var(--f-text);
}

.catalog-index {
  color: var(--f-blue);
  font-size: 12px;
  font-weight: 650;
}

.catalog-tab > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.catalog-tab strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.catalog-tab small {
  margin-top: 3px;
  color: var(--f-text-muted);
  font-size: 12px;
}

.catalog-panels {
  min-width: 0;
}

.catalog-panel {
  min-height: 0;
  padding: 36px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
  animation: panel-in 250ms ease both;
}

.catalog-panel[hidden] {
  display: none;
}

.catalog-panel-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--f-border);
}

.catalog-panel-head > div {
  display: flex;
  align-items: baseline;
  gap: 13px;
}

.catalog-panel-head span {
  color: var(--f-blue);
  font-size: 13px;
}

.catalog-panel-head h3 {
  color: var(--f-text);
  font-size: 25px;
  font-weight: 620;
  line-height: 1.35;
}

.catalog-panel-head p {
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.catalog-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 22px;
  margin-top: 20px;
}

.catalog-links a {
  display: flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--f-border);
  color: var(--f-text-secondary);
  font-size: 15px;
  transition: color 180ms ease, border-color 180ms ease;
}

.catalog-links a:hover {
  border-bottom-color: rgba(47, 124, 246, 0.62);
  color: var(--f-text);
}

.catalog-link-action {
  color: var(--f-cyan);
  font-size: 12px;
}

.solutions-layout {
	display: grid;
	grid-template-columns: 265px 1fr;
	gap: 40px;
}

.solution-tabs-column {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.solution-tabs {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--f-border);
}

.solution-tab {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border: 0;
  border-bottom: 1px solid var(--f-border);
  background: transparent;
  color: var(--f-text-secondary);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease;
}

.solution-tab span {
  font-size: 16px;
}

.solution-tab small {
  color: var(--f-text-muted);
  font-size: 12px;
  white-space: nowrap;
}

.solution-tab:hover,
.solution-tab.is-active {
  border-left: 2px solid var(--f-blue);
  background: rgba(47, 124, 246, 0.1);
  color: var(--f-text);
}

.solution-tab.is-active small {
	color: var(--f-cyan);
}

.solution-tabs-note {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px 16px 0;
	border-top: 1px solid var(--f-border);
}

.solution-tabs-note strong {
	color: var(--f-text-secondary);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.solution-tabs-note p {
	margin-top: 8px;
	color: var(--f-text-muted);
	font-size: 13px;
	line-height: 1.75;
}

.solution-panels {
	min-width: 0;
}

.solution-panel {
  display: grid;
  min-height: 438px;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  border: 1px solid var(--f-border);
  background: var(--f-card);
  animation: panel-in 250ms ease both;
}

.solution-panel[hidden] {
  display: none;
}

.solution-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 34px;
}

.panel-label,
.case-type {
  color: var(--f-cyan);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.solution-copy h3 {
  max-width: 390px;
  margin-top: 13px;
  color: var(--f-text);
  font-size: 27px;
  font-weight: 620;
  line-height: 1.4;
}

.solution-copy > p:not(.panel-label) {
  max-width: 430px;
  margin-top: 16px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.capability-list {
  display: grid;
  width: 100%;
  gap: 0;
  margin: 22px 0 27px;
}

.capability-list li {
  padding: 9px 0 9px 14px;
  border-top: 1px solid var(--f-border);
  color: var(--f-text-secondary);
  font-size: 15px;
}

.capability-list li:last-child {
  border-bottom: 1px solid var(--f-border);
}

.solution-media {
  position: relative;
  min-height: 438px;
  overflow: hidden;
  border-left: 1px solid var(--f-border);
  background: #091421;
}

.solution-media img {
  width: 100%;
  height: 100%;
}

.media-cover {
  object-fit: cover;
}

.media-contain,
.media-contain-wrap img {
  object-fit: contain;
}

.media-contain-wrap {
  padding: 28px;
}

.solution-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: rgba(245, 247, 250, 0.8);
  font-size: 12px;
}

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

.case-card,
.content-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--f-border);
  background: var(--f-card);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.case-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
}

.case-card:hover,
.content-card:hover,
.article-card:hover {
  border-color: rgba(47, 124, 246, 0.64);
  background: var(--f-card-strong);
  transform: translateY(-3px);
}

.case-media,
.content-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #091421;
}

.case-media img,
.content-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.case-card:hover .case-media img,
.content-card:hover .content-card-media img {
  transform: scale(1.02);
}

.media-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--f-text-muted);
  font-size: 14px;
  letter-spacing: 0.14em;
}

.case-copy {
  display: flex;
  min-height: 205px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px 24px;
}

.case-copy h2,
.case-copy h3 {
  margin-top: 10px;
  color: var(--f-text);
  font-size: 21px;
  font-weight: 620;
  line-height: 1.45;
}

.case-copy p {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.case-copy .card-link {
  margin-top: auto;
  padding-top: 18px;
}

.delivery-heading {
  margin-bottom: 30px;
}

.delivery-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--f-border-strong);
}

.delivery-track li {
  min-height: 160px;
  padding: 21px 20px 0 0;
  border-right: 1px solid var(--f-border);
}

.delivery-track li:not(:first-child) {
  padding-left: 20px;
}

.delivery-track li:last-child {
  border-right: 0;
}

.step-number {
  color: var(--f-blue);
  font-size: 13px;
  font-weight: 650;
}

.delivery-track h3 {
  margin-top: 13px;
  color: var(--f-text);
  font-size: 21px;
  font-weight: 620;
}

.delivery-track p {
  max-width: 175px;
  margin-top: 7px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

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

.article-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.article-meta,
.content-card-meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--f-text-muted);
  font-size: 12px;
}

.article-card h3 {
  display: -webkit-box;
  margin-top: 24px;
  overflow: hidden;
  color: var(--f-text);
  font-size: 22px;
  font-weight: 620;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-card p {
  display: -webkit-box;
  margin-top: 11px;
  overflow: hidden;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card .card-link {
  margin-top: auto;
  padding-top: 20px;
}

.contact-section {
  padding: 0 0 96px;
  background: var(--f-bg);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  padding: 40px 44px;
  border: 1px solid rgba(47, 124, 246, 0.34);
  background: var(--f-card);
}

.contact-copy h2 {
  margin-top: 9px;
  color: var(--f-text);
  font-size: 32px;
  font-weight: 620;
  line-height: 1.3;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 11px;
  color: var(--f-text-secondary);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item span {
  color: var(--f-text-muted);
  font-size: 12px;
}

.contact-item strong {
  color: var(--f-text);
  font-size: 15px;
  font-weight: 560;
  white-space: nowrap;
}

.inner-hero {
  min-height: 320px;
  border-bottom: 1px solid var(--f-border);
  background: var(--f-bg-secondary);
}

.inner-hero-grid {
  display: grid;
  min-height: 320px;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 70px;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 38px;
}

.inner-hero-copy h1 {
  max-width: 800px;
  margin-top: 14px;
  color: var(--f-text);
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 650;
  line-height: 1.2;
  word-break: keep-all;
}

.inner-hero-copy {
  min-width: 0;
}

.inner-hero-intro {
  max-width: 760px;
  margin-top: 18px;
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.inner-hero-context {
  padding: 24px;
  border: 1px solid var(--f-border);
  background: rgba(15, 31, 50, 0.72);
}

.inner-hero-context span {
  color: var(--f-text-muted);
  font-size: 12px;
}

.inner-hero-context strong {
  display: block;
  margin-top: 8px;
  color: var(--f-text);
  font-size: 16px;
}

.inner-hero-context p {
  margin-top: 9px;
  color: var(--f-text-muted);
  font-size: 13px;
}

.breadcrumbs-wrap {
  display: none;
}

.breadcrumbs {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: var(--f-text-muted);
  font-size: 13px;
  white-space: nowrap;
}

.breadcrumbs a:hover {
  color: var(--f-text);
}

.services-page .catalog-panel,
.source-content-section .legacy-richtext {
  scroll-margin-top: calc(var(--f-header-height) + 24px);
}

.source-content-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.source-content-heading > p:last-child {
  margin-top: 12px;
  color: var(--f-text-muted);
}

.service-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 70px;
  margin-bottom: 58px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--f-border);
}

.service-detail-intro h2,
.about-overview h2,
.contact-details h2 {
  max-width: 720px;
  margin-top: 9px;
  color: var(--f-text);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 620;
  line-height: 1.32;
}

.service-detail-intro > div:last-child p {
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.service-detail-intro .button {
  margin-top: 22px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, var(--f-reading)) 260px;
  gap: 64px;
  align-items: start;
  justify-content: center;
}

.richtext {
  min-width: 0;
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.richtext > *:first-child,
.richtext .yuqi-section:first-child {
  margin-top: 0;
}

.richtext h2,
.richtext h3,
.richtext h4 {
  color: var(--f-text);
  font-weight: 620;
}

.richtext h2 {
  margin: 56px 0 20px;
  font-size: 30px;
  line-height: 1.4;
}

.richtext h3 {
  margin: 38px 0 16px;
  font-size: 23px;
  line-height: 1.5;
}

.richtext h4 {
  margin: 30px 0 12px;
  font-size: 19px;
}

.richtext p,
.richtext li,
.richtext dd,
.richtext td,
.richtext th {
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.9;
}

.richtext p {
  margin: 0 0 22px;
}

.richtext strong,
.richtext b {
  color: var(--f-text);
}

.richtext a {
  color: #73a5ff;
  text-decoration: underline;
  text-decoration-color: rgba(115, 165, 255, 0.45);
  text-underline-offset: 3px;
}

.richtext ul,
.richtext ol {
  display: grid;
  gap: 8px;
  margin: 22px 0 28px;
  padding-left: 24px;
}

.richtext ul {
  list-style: disc;
}

.richtext ol {
  list-style: decimal;
}

.richtext blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--f-blue);
  background: var(--f-card);
}

.richtext img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 28px auto;
  object-fit: contain;
}

.richtext figure {
  max-width: 100%;
  margin: 30px 0;
}

.richtext figcaption {
  margin-top: 8px;
  color: var(--f-text-muted);
  font-size: 13px;
  text-align: center;
}

.richtext table {
  display: block;
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border-collapse: collapse;
}

.richtext th,
.richtext td {
  min-width: 140px;
  padding: 12px;
  border: 1px solid var(--f-border);
  text-align: left;
}

.richtext pre {
  max-width: 100%;
  margin: 28px 0;
  padding: 18px;
  overflow-x: auto;
  border: 1px solid var(--f-border);
  background: #030a12;
  color: #d9e3ef;
}

.richtext code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.legacy-richtext .legacy-section {
  margin: 0 0 64px;
  padding: 0;
  border: 0;
  background: transparent;
}

.legacy-richtext .legacy-section + .legacy-section {
  padding-top: 56px;
  border-top: 1px solid var(--f-border);
}

.legacy-richtext .legacy-section-inner,
.legacy-richtext .legacy-row {
  width: 100%;
  max-width: none;
}

.legacy-richtext .legacy-row {
  display: grid;
  gap: 24px;
}

.legacy-richtext .legacy-row-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legacy-richtext .legacy-row-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legacy-richtext .legacy-row-stack {
  grid-template-columns: minmax(0, 1fr);
}

.legacy-richtext .legacy-column {
  min-width: 0;
  padding: 0;
  background: transparent;
}

.legacy-richtext .legacy-row-grid-three > .legacy-column {
  padding: 22px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.legacy-richtext .yuqi-separator {
  width: 66px;
  height: 2px;
  margin: 20px 0;
  background: var(--f-blue);
}

.legacy-richtext .yuqi-image,
.legacy-richtext .legacy-media,
.legacy-richtext .legacy-background-media {
  max-width: 100%;
  margin: 30px auto;
}

.legacy-richtext .yuqi-image img,
.legacy-richtext .legacy-media img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.legacy-richtext .legacy-background-media {
  padding: 14px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.legacy-richtext .legacy-media-missing {
  display: grid;
  min-height: 120px;
  place-items: center;
  border: 1px dashed var(--f-border-strong);
  background: var(--f-card);
  color: var(--f-text-muted);
  font-size: 14px;
}

.legacy-richtext .legacy-focus-heading {
  margin-top: 26px;
  padding: 12px 16px;
  border-left: 3px solid var(--f-cyan);
  background: rgba(15, 31, 50, 0.75);
}

.legacy-richtext .yuqi-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--f-blue);
  background: var(--f-blue);
  color: #fff;
  text-decoration: none;
}

.service-scenarios-section {
  background: var(--f-bg-secondary);
}

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

.service-scenario-card {
  display: flex;
  min-height: 224px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.service-scenario-card:hover,
.service-scenario-card:focus-visible {
  border-color: rgba(47, 124, 246, 0.64);
  background: var(--f-card-strong);
  transform: translateY(-3px);
}

.scenario-label {
  color: var(--f-text-muted);
  font-size: 13px;
}

.service-scenario-card h3 {
  margin-top: 17px;
  color: var(--f-text);
  font-size: 22px;
  line-height: 1.4;
}

.service-scenario-card p {
  margin-top: 10px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.service-scenario-card .card-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--f-blue-soft);
  font-size: 14px;
}

.article-shell-single {
  display: block;
}

.article-shell-single > .richtext {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.content-stage {
  display: grid;
  grid-template-columns: 44px minmax(0, var(--f-reading));
  gap: 28px;
  align-items: start;
  justify-content: center;
}

.content-stage-back {
  display: flex;
  justify-content: center;
  padding-top: 2px;
}

.context-back {
  display: inline-flex;
  width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--f-border-strong);
  background: var(--f-card);
  color: var(--f-text-secondary);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.context-back:hover,
.context-back:focus-visible {
  border-color: var(--f-blue);
  background: var(--f-card-strong);
  color: var(--f-text);
}

.context-back-icon {
  font-size: 20px;
  line-height: 1;
}

.context-back-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.project-content-stage {
  grid-template-columns: 44px minmax(0, 820px);
}

.project-content-stage .project-richtext {
  max-width: 820px;
}

.service-article-shell {
  align-items: start;
}

.article-related {
  margin-top: 68px;
  padding-top: 42px;
  border-top: 1px solid var(--f-border);
}

.article-related .section-heading {
  margin-bottom: 24px;
}

.article-related .section-heading h2 {
  font-size: 28px;
}

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

.article-related-grid .article-card {
  min-height: 245px;
  padding: 20px;
}

.article-related-grid .article-card h3 {
  margin-top: 16px;
  font-size: 19px;
}

.article-related-grid .article-card p {
  font-size: 14px;
}

.project-layout {
  display: grid;
  gap: 42px;
}

.project-term-list,
.project-aside ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-term-list li,
.project-aside li {
  padding: 7px 10px;
  border: 1px solid var(--f-border);
  color: var(--f-text-secondary);
  font-size: 13px;
}

.project-main-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--f-reading)) 236px;
  gap: 58px;
  justify-content: center;
  align-items: start;
}

.project-main-grid-single {
  grid-template-columns: minmax(0, var(--f-reading));
}

.project-aside {
  position: sticky;
  top: calc(var(--f-header-height) + 28px);
}

.project-aside .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.content-aside {
  position: sticky;
  top: calc(var(--f-header-height) + 28px);
  display: grid;
  gap: 18px;
}

.aside-panel {
  padding: 22px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.aside-panel > span,
.aside-panel dt {
  color: var(--f-text-muted);
  font-size: 12px;
}

.aside-panel h2 {
  margin-top: 10px;
  color: var(--f-text);
  font-size: 20px;
  line-height: 1.45;
}

.aside-panel p,
.aside-panel li,
.aside-panel dd {
  color: var(--f-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.aside-panel p,
.aside-panel ul,
.aside-panel ol,
.aside-panel dl {
  margin-top: 13px;
}

.aside-panel li,
.aside-panel dl > div {
  padding: 8px 0;
  border-bottom: 1px solid var(--f-border);
}

.aside-panel dd {
  margin-top: 3px;
  color: var(--f-text);
}

.related-section {
  margin-top: 88px;
  padding-top: 70px;
  border-top: 1px solid var(--f-border);
}

.content-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.content-card-body {
  display: flex;
  min-height: 245px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.content-card-body h2 {
  margin-top: 20px;
  color: var(--f-text);
  font-size: 21px;
  font-weight: 620;
  line-height: 1.45;
}

.content-card-body p {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.content-card-body .card-link {
  margin-top: auto;
  padding-top: 18px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-pill {
  padding: 8px 13px;
  border: 1px solid var(--f-border);
  color: var(--f-text-secondary);
  font-size: 14px;
}

.filter-pill:hover,
.filter-pill.is-active {
  border-color: var(--f-blue);
  background: rgba(47, 124, 246, 0.12);
  color: var(--f-text);
}

.work-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  color: var(--f-text-muted);
}

.pagination {
  margin-top: 50px;
}

.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--f-border);
  color: var(--f-text-secondary);
}

.pagination .current,
.pagination a:hover {
  border-color: var(--f-blue);
  background: var(--f-blue);
  color: #fff;
}

.article-hero {
  border-bottom: 1px solid var(--f-border);
  background: var(--f-bg-secondary);
}

.article-hero-inner {
  display: flex;
  min-height: 330px;
  max-width: 980px;
  flex-direction: column;
  justify-content: center;
  padding-top: 46px;
  padding-bottom: 46px;
}

.article-kicker {
  display: flex;
  gap: 18px;
  color: var(--f-text-muted);
  font-size: 13px;
}

.article-kicker span {
  color: var(--f-cyan);
}

.article-hero h1 {
  max-width: 920px;
  margin-top: 17px;
  color: var(--f-text);
  font-size: clamp(40px, 4.5vw, 54px);
  font-weight: 650;
  line-height: 1.2;
}

.article-hero p {
  max-width: 800px;
  margin-top: 19px;
  color: var(--f-text-secondary);
  font-size: 17px;
}

.article-featured {
  aspect-ratio: 16 / 9;
  width: min(100%, 720px);
  margin: 0 auto 42px;
  overflow: hidden;
  border: 1px solid var(--f-border);
  background: #091421;
}

.article-featured img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid var(--f-border);
}

.post-navigation > div:last-child {
  text-align: right;
}

.post-navigation a {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.post-navigation span {
  color: var(--f-text-muted);
  font-size: 12px;
}

.post-navigation strong {
  color: var(--f-text);
  font-size: 15px;
  line-height: 1.5;
}

.project-hero {
  background: var(--f-bg-secondary);
}

.project-hero-grid {
  display: grid;
  min-height: 460px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 60px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 44px;
}

.project-hero-copy h1 {
  margin-top: 14px;
  color: var(--f-text);
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 650;
  line-height: 1.2;
}

.project-hero-copy > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--f-text-secondary);
  font-size: 17px;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
}

.project-meta span {
  color: var(--f-text-muted);
  font-size: 12px;
}

.project-meta strong {
  color: var(--f-text);
  font-size: 15px;
}

.project-hero-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--f-border);
  background: #091421;
}

.project-hero-media img {
  width: 100%;
  height: 100%;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 80px;
}

.about-lead {
  max-width: 720px;
  margin-top: 20px;
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.85;
}

.company-scope {
  padding: 26px;
  border-top: 3px solid var(--f-blue);
  background: var(--f-card);
}

.company-scope > div {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-bottom: 1px solid var(--f-border);
}

.company-scope span {
  color: var(--f-text-muted);
  font-size: 12px;
}

.company-scope strong {
  color: var(--f-text);
  font-size: 15px;
}

.company-scope .button {
  margin-top: 22px;
}

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

.scope-grid a {
  min-height: 165px;
  padding: 22px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.scope-grid a:hover {
  border-color: rgba(47, 124, 246, 0.65);
  background: var(--f-card-strong);
  transform: translateY(-3px);
}

.scope-grid span {
  color: var(--f-blue);
  font-size: 12px;
}

.scope-grid h3 {
  margin-top: 23px;
  color: var(--f-text);
  font-size: 20px;
}

.scope-grid p {
  margin-top: 7px;
  color: var(--f-text-muted);
  font-size: 14px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
}

.contact-details,
.contact-content {
  padding: 34px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.contact-details > p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--f-text-secondary);
}

.contact-details dl {
  margin-top: 26px;
}

.contact-details dl > div {
  padding: 13px 0;
  border-top: 1px solid var(--f-border);
}

.contact-details dt {
  color: var(--f-text-muted);
  font-size: 12px;
}

.contact-details dd,
.contact-details a {
  margin-top: 4px;
  color: var(--f-text);
  font-size: 15px;
}

.wpcf7-form,
.contact-content form {
  display: grid;
  gap: 17px;
}

.wpcf7-form label,
.contact-content label {
  display: grid;
  gap: 7px;
  color: var(--f-text-secondary);
  font-size: 14px;
}

.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea,
.wpcf7-form select,
.contact-content input:not([type="submit"]),
.contact-content textarea,
.contact-content select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--f-border-strong);
  border-radius: 0;
  background: var(--f-bg-secondary);
  color: var(--f-text);
}

.wpcf7-form textarea,
.contact-content textarea {
  min-height: 150px;
  resize: vertical;
}

.wpcf7-submit,
.contact-content input[type="submit"] {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--f-blue);
  border-radius: 0;
  background: var(--f-blue);
  color: #fff;
  cursor: pointer;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
  color: #ffd2d2;
  font-size: 13px;
}

.search-layout {
  max-width: 980px;
}

.search-form-large {
  margin-bottom: 42px;
  padding: 28px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.search-form-large label {
  display: block;
  margin-bottom: 9px;
  color: var(--f-text-secondary);
  font-size: 14px;
}

.search-form-large > div {
  display: flex;
  gap: 10px;
}

.search-form-large input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--f-border-strong);
  background: var(--f-bg-secondary);
  color: var(--f-text);
}

.search-count {
  margin-bottom: 18px;
  color: var(--f-text-muted);
  font-size: 14px;
}

.search-result {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 25px 0;
  border-top: 1px solid var(--f-border);
}

.search-result-type {
  color: var(--f-cyan);
  font-size: 13px;
}

.search-result h2 {
  color: var(--f-text);
  font-size: 21px;
  line-height: 1.4;
}

.search-result p {
  margin-top: 8px;
  color: var(--f-text-secondary);
  font-size: 15px;
}

.search-result-arrow {
  color: var(--f-cyan);
  font-size: 13px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.empty-state h2 {
  color: var(--f-text);
  font-size: 25px;
}

.empty-state p {
  margin-top: 10px;
  color: var(--f-text-secondary);
}

.empty-state .button {
  margin-top: 22px;
}

.not-found-page {
  display: flex;
  min-height: calc(100svh - var(--f-header-height));
  align-items: center;
  background: var(--f-bg-secondary);
}

.not-found-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 80px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.not-found-inner h1 {
  max-width: 720px;
  margin-top: 13px;
  color: var(--f-text);
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.2;
}

.not-found-inner > div > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--f-text-secondary);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.comments-area {
  padding: 0 0 90px;
  background: var(--f-bg);
}

.comments-inner {
  max-width: var(--f-reading);
  margin: 0 auto;
}

.comments-area h2,
.comment-reply-title {
  color: var(--f-text);
  font-size: 24px;
}

.comment {
  padding: 20px 0;
  border-bottom: 1px solid var(--f-border);
}

.comment-meta,
.comment-notes {
  color: var(--f-text-muted);
  font-size: 13px;
}

.comment-content {
  color: var(--f-text-secondary);
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--f-border-strong);
  background: var(--f-card);
  color: var(--f-text);
}

.site-footer {
  padding: 64px 0 20px;
  border-top: 1px solid var(--f-border);
  background: var(--f-bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(150px, 0.72fr));
  gap: 48px;
}

.footer-brand > p {
  max-width: 330px;
  margin-top: 18px;
  color: var(--f-text-muted);
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 6px;
  color: var(--f-text);
  font-size: 14px;
  font-weight: 620;
}

.footer-column a,
.footer-column p {
  color: var(--f-text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-column a:hover {
  color: var(--f-text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 17px;
  border-top: 1px solid var(--f-border);
  color: var(--f-text-muted);
  font-size: 12px;
}

.footer-bottom a:hover {
  color: var(--f-text);
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .header-inner { gap: 15px; }
  .desktop-nav { gap: 13px; }
  .nav-link, .header-phone { font-size: 14px; }
  .header-actions { gap: 9px; }
  .brand-copy strong { max-width: 185px; }
  .catalog-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-context { right: 0; }
}

@media (max-width: 1080px) {
  :root { --f-header-height: 68px; }
  .container { width: min(var(--f-container), calc(100% - 40px)); }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    min-height: calc(100svh - var(--f-header-height));
    max-height: calc(100svh - var(--f-header-height));
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    padding: 18px 20px calc(24px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--f-border);
    background: var(--f-bg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .admin-bar .mobile-menu {
    min-height: calc(100svh - var(--f-header-height) - 32px);
    max-height: calc(100svh - var(--f-header-height) - 32px);
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav { display: flex; flex-direction: column; }
  .mobile-nav-link {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    border: 0;
    border-bottom: 1px solid var(--f-border);
    background: transparent;
    color: var(--f-text-secondary);
    cursor: pointer;
    font-size: 17px;
    text-align: left;
  }
  .mobile-nav-link:hover, .mobile-nav-link.is-current { color: var(--f-text); }
  .mobile-service-menu { display: none; padding: 7px 0 10px 16px; border-bottom: 1px solid var(--f-border); }
  .mobile-service-menu.is-open { display: grid; }
  .mobile-service-menu a { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; color: var(--f-text-secondary); font-size: 15px; }
  .mobile-service-menu a span { color: var(--f-text-muted); font-size: 12px; }
  .mobile-contact { display: grid; gap: 13px; padding-top: 26px; }
  .mobile-contact > a:not(.button) { color: var(--f-text); font-size: 16px; }
  .mobile-contact .button { width: 100%; }
  .hero-context { right: auto; bottom: 145px; left: 20px; width: 238px; }
  .hero-copy { padding-bottom: 155px; }
  .hero-bottom { grid-template-columns: 1fr auto; gap: 16px; }
  .hero-quick-links { display: none; }
  .scroll-cue { grid-column: 1 / -1; justify-self: start; min-height: 24px; }
  .carousel-controls { justify-self: end; }
  .catalog { grid-template-columns: 235px minmax(0, 1fr); gap: 20px; }
  .catalog-panel { padding: 28px; }
  .catalog-panel-head { grid-template-columns: 1fr; gap: 14px; }
  .solutions-layout { grid-template-columns: 220px 1fr; gap: 22px; }
  .solution-panel { grid-template-columns: 1fr; }
  .solution-media { min-height: 260px; border-top: 1px solid var(--f-border); border-left: 0; }
  .service-scenario-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-grid, .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-shell { grid-template-columns: minmax(0, var(--f-reading)); }
  .content-aside { position: static; grid-template-columns: minmax(0, 1fr) auto; }
  .project-main-grid { grid-template-columns: minmax(0, var(--f-reading)); }
  .project-aside { position: static; grid-template-columns: minmax(0, 1fr) auto; }
  .project-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .project-hero-media { max-width: 800px; }
  .contact-panel, .contact-page-grid { grid-template-columns: 1fr; }
  .contact-actions { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .mobile-menu {
    min-height: calc(100svh - var(--f-header-height) - 46px);
    max-height: calc(100svh - var(--f-header-height) - 46px);
  }
}

@media (max-width: 768px) {
  .section { padding: 78px 0; }
  .page-section { padding-top: 64px; padding-bottom: 78px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 16px; margin-bottom: 30px; }
  .catalog.catalog-desktop { display: none; }
  .catalog-mobile { display: grid; }
  .catalog-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 15px; }
  .catalog-tab { min-height: 72px; border-left: 1px solid var(--f-border); }
  .catalog-tab:nth-child(odd) { border-left: 0; }
	.catalog-panel { min-height: 0; padding: 26px 22px; }
	.catalog-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; }
	.solutions-layout { display: block; }
	.solution-tabs-column { display: block; }
	.solution-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 15px; }
	.solution-tab { border-left: 1px solid var(--f-border); }
	.solution-tab:nth-child(odd) { border-left: 0; }
	.solution-tabs-note { display: block; padding: 0 4px 22px; border-top: 0; }
	.solution-tabs-note p { max-width: 560px; }
	.solution-panel { min-height: 0; }
  .solution-copy { padding: 28px 24px; }
  .solution-media { min-height: 240px; }
  .delivery-track { grid-template-columns: 1fr; }
  .delivery-track li, .delivery-track li:not(:first-child) { min-height: 0; padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--f-border); }
  .delivery-track p { max-width: none; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 230px; }
  .inner-hero, .inner-hero-grid { min-height: 0; }
  .inner-hero-grid { grid-template-columns: 1fr; gap: 24px; padding-top: 52px; padding-bottom: 52px; }
  .inner-hero-context { max-width: 440px; }
  .service-detail-intro, .about-overview-grid { grid-template-columns: 1fr; gap: 34px; }
  .scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legacy-richtext .legacy-row-grid,
  .legacy-richtext .legacy-row-grid-three { grid-template-columns: minmax(0, 1fr); }
  .project-main-grid { gap: 38px; }
  .content-stage,
  .project-content-stage { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .content-stage-back { justify-content: flex-start; padding-top: 0; }
  .context-back { width: auto; min-width: 0; justify-content: flex-start; gap: 8px; padding: 0 14px; }
  .context-back-text { position: static; width: auto; height: auto; overflow: visible; clip: auto; color: inherit; font-size: 15px; white-space: nowrap; }
  .article-related-grid { grid-template-columns: 1fr; }
  .search-result { grid-template-columns: 92px 1fr; gap: 15px; }
  .search-result-arrow { display: none; }
  .not-found-inner { grid-template-columns: 1fr; gap: 42px; }
}

@media (min-width: 641px) and (max-width: 768px) {
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .article-grid { grid-template-columns: 1fr; }
}

/* Target-scoped Dapin Page pilot. Page identity and global SEO ownership stay unchanged. */
.dapin-page-pilot {
  background: var(--f-bg);
}

.dapin-page-hero .v3-solution-hero-copy h1 {
  max-width: 820px;
  overflow-wrap: anywhere;
  word-break: normal;
}

.dapin-page-hero .v3-solution-hero-copy,
.dapin-page-hero .v3-solution-hero-media {
  min-width: 0;
}

.dapin-page-hero .v3-solution-hero-media {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.dapin-page-hero .v3-solution-hero-image {
	display: block;
	width: 100%;
	height: auto;
	min-height: 0;
	aspect-ratio: 733 / 400;
	object-fit: cover;
}

.dapin-page-hero .v3-solution-hero-media figcaption {
	padding: 10px 14px;
  border-top: 1px solid var(--f-border);
  color: var(--f-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.dapin-page-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dapin-page-context li {
  position: relative;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.dapin-page-context li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 9px 2px 0;
  border-radius: 50%;
  background: var(--f-cyan);
  content: '';
}

.dapin-page-pilot .v3-solution-content.dapin-page-content {
  width: min(100%, 1120px);
  max-width: 1120px;
}

.dapin-page-pilot .dapin-page-content .v3-editorial-module:first-child {
  padding-top: 18px;
}

.dapin-page-pilot .v3-editorial-media--contain figure {
  padding: 10px;
  background: #eef2f6;
}

.dapin-page-pilot .v3-editorial-media--contain .v3-editorial-image {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.dapin-page-pilot .v3-editorial-media--cover figure {
  aspect-ratio: 16 / 10;
}

.dapin-page-source {
  margin-top: 12px;
  padding: 72px 0 12px;
  border-top: 1px solid var(--f-border);
}

.dapin-page-source-details {
  margin-top: 30px;
  border: 1px solid var(--f-border);
  background: rgba(15, 31, 50, 0.6);
}

.dapin-page-source-details summary {
  padding: 20px 24px;
  color: var(--f-text);
  font-size: 17px;
  font-weight: 650;
  cursor: pointer;
}

.dapin-page-source-details summary::marker {
  color: var(--f-cyan);
}

.dapin-page-source-body {
  margin: 0 24px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--f-border);
}

.dapin-page-source-body img {
  max-width: 100%;
  height: auto;
}

.dapin-page-cta {
  margin-top: 0;
}

@media (max-width: 768px) {
  .dapin-page-context {
    gap: 7px 14px;
  }

  .dapin-page-context li {
    font-size: 14px;
  }

  .dapin-page-pilot .v3-editorial-media--contain figure {
    padding: 8px;
  }

  .dapin-page-source {
    padding-top: 54px;
  }
}

@media (max-width: 480px) {
  .dapin-page-hero .v3-solution-hero-media figcaption {
    padding: 10px 12px;
    font-size: 12px;
  }

  .dapin-page-source-body {
    margin-right: 16px;
    margin-left: 16px;
  }

  body.page-id-907 .footer-brand,
  body.page-id-1879 .footer-brand,
  body.page-id-907 .footer-column,
  body.page-id-1879 .footer-column {
    min-width: 0;
    width: auto;
    max-width: 100%;
  }

  body.page-id-907 .footer-brand > p,
  body.page-id-1879 .footer-brand > p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* Yuqi V3 structured solution and article presentation. */
.v3-solution-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
  background: linear-gradient(135deg, #071421 0%, #0b1b2e 56%, #08121f 100%);
  border-bottom: 1px solid var(--f-border);
}

.v3-solution-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 48px;
}

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

.v3-solution-hero-copy h1 {
  max-width: 760px;
  word-break: keep-all;
  overflow-wrap: normal;
  margin-top: 14px;
  font-size: clamp(40px, 4vw, 54px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.v3-solution-title-suffix {
  white-space: nowrap;
}

.v3-solution-hero-summary {
  max-width: 720px;
  margin-top: 24px;
  color: var(--f-text-secondary);
  font-size: 18px;
  line-height: 1.85;
}

.v3-solution-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 32px;
}

.v3-solution-hero-context {
  color: var(--f-text-muted);
  font-size: 14px;
}

.v3-solution-hero-media {
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--f-border);
  background: #0b1727;
}

.v3-solution-hero-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.v3-solutions-index .solution-grid {
  align-items: stretch;
}

.v3-solution-card {
  min-width: 0;
}

.v3-card-media {
  aspect-ratio: 16 / 9;
  background: #0b1727;
}

.v3-card-media .v3-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v3-solution-content-wrap {
  position: relative;
  padding-top: 72px;
  padding-bottom: 24px;
}

.v3-solution-back {
  margin-bottom: 42px;
}

.v3-solution-content {
  width: min(100%, 900px);
  margin: 0 auto;
}

.v3-solution-section {
  padding: 0 0 88px;
}

.v3-section-copy {
  max-width: 820px;
  margin: 0 auto 26px;
}

.v3-section-copy h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.v3-section-copy p,
.v3-source-copy p {
  margin-top: 18px;
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.85;
}

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

.v3-feature-item {
  min-height: 112px;
  padding: 22px 20px;
  border: 1px solid var(--f-border);
  background: rgba(15, 31, 50, 0.76);
}

.v3-feature-index {
  display: block;
  color: var(--f-cyan);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.v3-feature-item h3 {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.5;
}

.v3-source-copy {
  max-width: 820px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--f-border);
}

.v3-media-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.v3-media-grid--wide {
  grid-template-columns: minmax(0, 1fr);
}

.v3-media-grid--gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v3-media-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--f-border);
  background: #0b1727;
}

.v3-media-frame--diagram {
  padding: 12px;
}

.v3-media-frame--diagram .v3-media-image {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.v3-media-frame--gallery .v3-media-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.v3-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  counter-reset: v3-step;
}

.v3-step-list li {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 144px;
  padding: 22px 20px;
  border-top: 2px solid var(--f-blue);
  background: var(--f-card);
}

.v3-step-list li span {
  color: var(--f-cyan);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.v3-step-list li strong {
  font-size: 18px;
  line-height: 1.55;
}

.v3-solution-cta {
  padding: 68px 0 84px;
  background: var(--f-bg-secondary);
  border-top: 1px solid var(--f-border);
}

.v3-solution-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.v3-solution-cta h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.35;
}

.v3-article-hero {
  padding: 110px 0 72px;
  background: linear-gradient(135deg, #071421, #0a1727);
  border-bottom: 1px solid var(--f-border);
}

.v3-article-hero-inner {
  max-width: 900px;
}

.v3-article-hero h1 {
  max-width: 900px;
  margin-top: 14px;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.2;
}

.v3-article-summary {
  max-width: 780px;
  margin-top: 22px;
  color: var(--f-text-secondary);
  font-size: 18px;
  line-height: 1.85;
}

.v3-article-stage {
  position: relative;
}

.v3-article-main {
  width: min(100%, 820px);
  margin: 0 auto;
}

.v3-article-featured {
  overflow: hidden;
  margin: 0 0 46px;
  border: 1px solid var(--f-border);
  background: #0b1727;
}

.v3-article-main > .v3-article-featured {
  aspect-ratio: auto;
}

.v3-article-featured-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.v3-article-main > .v3-article-featured .v3-article-featured-image {
  display: block;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.v3-article-content {
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.9;
}

.v3-article-content a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.v3-article-content h2,
.v3-article-content h3,
.v3-article-content h4 {
  margin: 48px 0 18px;
  color: var(--f-text);
  line-height: 1.4;
}

.v3-article-content h2 { font-size: 32px; }
.v3-article-content h3 { font-size: 24px; }
.v3-article-content h4 { font-size: 20px; }

.v3-article-content p,
.v3-article-content ul,
.v3-article-content ol,
.v3-article-content blockquote,
.v3-article-content table,
.v3-article-content figure {
  margin-top: 22px;
}

.v3-article-content p:first-child,
.v3-article-content ul:first-child,
.v3-article-content ol:first-child,
.v3-article-content figure:first-child {
  margin-top: 0;
}

.v3-article-content ul,
.v3-article-content ol {
  padding-left: 24px;
}

.v3-article-content ul { list-style: disc; }
.v3-article-content ol { list-style: decimal; }

.v3-article-content li + li { margin-top: 8px; }

.v3-article-content a {
  color: #7fb0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v3-article-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 28px auto 0;
  object-fit: contain;
}

.v3-article-content figure img { margin-top: 0; }

.v3-article-content blockquote {
  margin-left: 0;
  padding: 18px 22px;
  border-left: 3px solid var(--f-blue);
  background: rgba(15, 31, 50, 0.8);
}

.v3-article-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.v3-article-content pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.v3-article-content code {
  overflow-wrap: anywhere;
}

.v3-article-content pre * {
  max-width: 100%;
  white-space: inherit;
  overflow-wrap: anywhere;
}

.v3-article-content th,
.v3-article-content td {
  min-width: 120px;
  padding: 10px 14px;
  border: 1px solid var(--f-border);
  text-align: left;
}

.v3-post-card h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 2.9em;
}

.v3-post-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 5.1em;
  max-height: 5.1em;
}

/* Keep the list-card excerpt bounded without affecting the full article body. */
.v3-post-card .content-card-body > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 5.1em;
  max-height: 5.1em;
}

.v3-solution-faq {
  padding: 0 0 88px;
}

.v3-faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.v3-faq-item {
  border: 1px solid var(--f-border);
  background: rgba(16, 31, 50, 0.72);
}

.v3-faq-item summary {
  padding: 18px 22px;
  color: var(--f-text);
  font-size: 17px;
  font-weight: 650;
  cursor: pointer;
}

.v3-faq-answer {
  padding: 0 22px 18px;
  color: var(--f-text-secondary);
  line-height: 1.8;
}

.v3-faq-answer p { margin: 0; }

/* Editorial solution system: one renderer, page-specific content profiles. */
.v3-solution-content[data-solution-layout] {
  width: min(100%, 920px);
  max-width: 920px;
  margin: 0 auto;
}

.v3-editorial-module {
  padding: 80px 0;
  border-top: 1px solid var(--f-border);
}

.v3-editorial-module:first-child {
  padding-top: 28px;
  border-top: 0;
}

.v3-editorial-heading {
  max-width: 790px;
}

.v3-editorial-heading h2 {
  max-width: 760px;
  color: var(--f-text);
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.28;
  text-wrap: balance;
}

.v3-editorial-heading > p:not(.v3-editorial-kicker) {
  margin-top: 20px;
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.86;
}

.v3-editorial-kicker {
  margin: 0 0 12px;
  color: var(--f-cyan);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v3-editorial-cards,
.v3-editorial-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.v3-editorial-module--matrix .v3-editorial-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v3-editorial-card {
  min-width: 0;
  padding: 23px 22px;
  border: 1px solid var(--f-border);
  background: rgba(15, 31, 50, 0.74);
}

.v3-editorial-card h3 {
  color: var(--f-text);
  font-size: 20px;
  line-height: 1.45;
  text-wrap: balance;
}

.v3-editorial-card p {
  margin-top: 11px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.78;
}

.v3-editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 34px;
  align-items: start;
  margin-top: 34px;
}

.v3-editorial-split.is-reversed .v3-editorial-split-media { order: 2; }
.v3-editorial-split.is-reversed .v3-editorial-split-copy { order: 1; }
.v3-editorial-split .v3-editorial-stack { grid-template-columns: 1fr; margin-top: 0; }

.v3-editorial-media {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.v3-editorial-split .v3-editorial-media { margin-top: 0; }
.v3-editorial-media--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v3-editorial-module--gallery .v3-editorial-media--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.v3-editorial-media figure {
  display: grid;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  place-items: center;
  border: 1px solid var(--f-border);
  background: #0b1727;
}

.v3-editorial-media a {
  display: grid;
  width: 100%;
  min-height: 100%;
  place-items: center;
}

.v3-editorial-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 700px;
}

.v3-editorial-media--contain figure { padding: 18px; background: #eef2f6; }
.v3-editorial-media--contain .v3-editorial-image { object-fit: contain; }
.v3-editorial-media--cover figure { aspect-ratio: 16 / 10; padding: 0; }
.v3-editorial-media--cover .v3-editorial-image { width: 100%; height: 100%; max-height: none; object-fit: cover; }

.v3-editorial-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.v3-editorial-timeline li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  padding: 22px 0;
  border-top: 1px solid var(--f-border);
}

.v3-editorial-timeline li > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(53, 195, 212, 0.45);
  color: var(--f-cyan);
  font-size: 12px;
}

.v3-editorial-timeline h3,
.v3-editorial-checklist h3 {
  color: var(--f-text);
  font-size: 19px;
  line-height: 1.45;
}

.v3-editorial-timeline p,
.v3-editorial-checklist p {
  margin-top: 7px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.v3-editorial-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.v3-editorial-checklist li {
  position: relative;
  min-width: 0;
  padding: 22px 22px 22px 46px;
  border: 1px solid var(--f-border);
  background: rgba(9, 22, 36, 0.78);
}

.v3-editorial-checklist li::before {
  position: absolute;
  top: 25px;
  left: 21px;
  color: var(--f-cyan);
  content: '✓';
  font-size: 14px;
}

.v3-editorial-module--operations {
  margin-right: -28px;
  margin-left: -28px;
  padding-right: 28px;
  padding-left: 28px;
  border: 1px solid rgba(47, 124, 246, 0.22);
  background: linear-gradient(135deg, rgba(15, 31, 50, 0.72), rgba(7, 20, 33, 0.86));
}

.v3-editorial-faq {
  padding-top: 80px;
  border-top: 1px solid var(--f-border);
}

.v3-editorial-faq .v3-faq-list { max-width: none; margin-top: 34px; }

.v3-article-solutions {
  margin-top: 64px;
  padding-top: 52px;
  border-top: 1px solid var(--f-border);
}

.v3-article-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.v3-article-solution-card {
  display: flex;
  min-width: 0;
  min-height: 220px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
  color: inherit;
  transition: border-color 180ms ease, transform 180ms ease;
}

.v3-article-solution-card:hover,
.v3-article-solution-card:focus-visible { border-color: var(--f-blue); transform: translateY(-2px); }
.v3-article-solution-card h3 { color: var(--f-text); font-size: 18px; line-height: 1.45; }
.v3-article-solution-card p { margin-top: 12px; color: var(--f-text-secondary); font-size: 14px; line-height: 1.72; }
.v3-article-solution-card span { margin-top: auto; padding-top: 18px; color: var(--f-blue-soft); font-size: 14px; }

.contact-page .contact-page-grid { align-items: stretch; }
.contact-page .contact-details,
.contact-page .contact-content { min-width: 0; }
.contact-page .contact-content form,
.contact-page .contact-content .wpcf7-form { gap: 12px; }
.contact-page .contact-content .wpcf7-form > p { margin: 0; }
.contact-page .contact-content .wpcf7-form > p > label { margin: 0; }
.contact-page .contact-content textarea { height: 120px; min-height: 120px; max-height: 220px; }
.contact-page .contact-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.contact-page .contact-service-list li { min-width: 0; color: var(--f-text-secondary); font-size: 14px; line-height: 1.55; overflow-wrap: anywhere; }
.contact-page .contact-service-list li::before { content: '•'; margin-right: 7px; color: var(--f-cyan); }
.contact-page .wechat-grid { align-items: stretch; }

@media (max-width: 1024px) {
  .v3-solution-hero-grid { grid-template-columns: 1fr 0.82fr; gap: 38px; }
  .v3-feature-grid,
  .v3-step-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v3-editorial-module--matrix .v3-editorial-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v3-article-solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .v3-solution-hero { padding: 72px 0 56px; }
  .v3-solution-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .v3-solution-hero-copy h1,
  .v3-article-hero h1 { font-size: 36px; }
  .v3-solution-hero-summary,
  .v3-article-summary,
  .v3-section-copy p,
  .v3-source-copy p,
  .v3-article-content { font-size: 16px; }
  .v3-solution-hero-media,
  .v3-solution-hero-image { min-height: 230px; }
  .v3-solution-content-wrap { padding-top: 48px; }
  .v3-solution-section { padding-bottom: 60px; }
  .v3-feature-grid,
  .v3-step-list,
  .v3-media-grid--gallery { grid-template-columns: 1fr; }
  .v3-solution-cta-inner { align-items: flex-start; flex-direction: column; }
  .v3-article-hero { padding: 72px 0 52px; }
  .v3-article-featured { margin-bottom: 34px; }
  .v3-article-content h2 { font-size: 28px; }
  .v3-article-content h3 { font-size: 22px; }
  .contact-page .contact-service-list { grid-template-columns: 1fr; }
  .contact-page .contact-details,
  .contact-page .contact-content { padding: 25px 22px; }
  .v3-editorial-module { padding: 62px 0; }
  .v3-editorial-heading h2 { font-size: 30px; }
  .v3-editorial-heading > p:not(.v3-editorial-kicker) { font-size: 16px; }
  .v3-editorial-split,
  .v3-editorial-split.is-reversed { grid-template-columns: 1fr; gap: 24px; }
  .v3-editorial-split.is-reversed .v3-editorial-split-media,
  .v3-editorial-split.is-reversed .v3-editorial-split-copy { order: initial; }
  .v3-editorial-cards,
  .v3-editorial-stack,
  .v3-editorial-module--matrix .v3-editorial-cards,
  .v3-editorial-timeline,
  .v3-editorial-checklist,
  .v3-article-solution-grid { grid-template-columns: 1fr; }
  .v3-editorial-media--grid,
  .v3-editorial-module--gallery .v3-editorial-media--grid { grid-template-columns: 1fr; }
  .v3-editorial-module--operations { margin-right: 0; margin-left: 0; padding-right: 20px; padding-left: 20px; }
  .v3-article-solution-card { min-height: 0; }
}

@media (max-width: 480px) {
  .v3-solution-hero-copy h1,
  .v3-article-hero h1 { font-size: 34px; }
  .v3-solution-hero-actions { align-items: flex-start; flex-direction: column; }
  .v3-feature-item,
  .v3-step-list li { min-height: 0; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 36px); }
  .brand { gap: 8px; }
  .brand-logo, .site-logo-text { width: 36px; height: 36px; }
  .brand-copy strong { max-width: 200px; font-size: 13px; }
  .brand-copy small { font-size: 9px; }
  .hero-carousel { min-height: 610px; }
  .hero-interface { padding-top: 16px; padding-bottom: 16px; }
  .hero-copy { justify-content: flex-start; padding-top: 76px; padding-bottom: 214px; }
  .eyebrow { font-size: 12px; letter-spacing: 0.05em; }
  .eyebrow-light { gap: 8px; }
  .eyebrow-light::before { width: 18px; }
  .hero-copy h1 { max-width: 360px; margin-top: 15px; font-size: clamp(34px, 9.2vw, 38px); line-height: 1.24; }
  .hero-description { max-width: 360px; margin-top: 18px; font-size: 16px; line-height: 1.75; }
  .hero-actions { gap: 9px; margin-top: 24px; }
  .button { min-height: 47px; padding: 0 17px; font-size: 15px; }
  .hero-context { right: 18px; bottom: 108px; left: 18px; width: auto; padding: 12px 14px; }
  .context-title { display: inline; margin-left: 8px; }
  .scope-list { display: flex; gap: 0; margin-top: 9px; }
  .scope-list li { flex: 1; padding-top: 5px; font-size: 12px; }
  .hero-bottom { min-height: 54px; }
  .carousel-controls { gap: 10px; }
  .carousel-arrow { font-size: 12px; }
  .carousel-index { min-width: 37px; }
  .scroll-cue { font-size: 11px; }
  .section { padding: 68px 0; }
  .page-section { padding-top: 54px; padding-bottom: 68px; }
  .section-heading h2, .source-content-heading h2 { font-size: 29px; line-height: 1.35; }
  .catalog-tabs { grid-template-columns: 1fr; }
  .catalog-tab, .catalog-tab:nth-child(odd) { min-height: 66px; border-left: 0; }
  .catalog-panel { padding: 24px 18px; }
  .catalog-panel-head h3 { font-size: 23px; }
  .catalog-links { grid-template-columns: 1fr; }
  .catalog-links a { min-height: 50px; }
  .solution-tab { min-height: 58px; padding: 0 10px; }
  .solution-tab span { font-size: 14px; }
  .solution-tab small { display: none; }
  .solution-copy h3 { font-size: 23px; }
  .solution-copy > p:not(.panel-label) { font-size: 16px; }
  .solution-media { min-height: 215px; }
  .case-grid, .content-grid { grid-template-columns: 1fr; gap: 11px; }
  .case-card { min-height: 0; }
  .case-copy { min-height: 190px; padding: 20px; }
  .article-card { min-height: 220px; padding: 22px 20px; }
  .contact-section { padding-bottom: 68px; }
  .contact-panel { padding: 28px 20px; }
  .contact-copy h2 { font-size: 28px; }
  .contact-actions { display: grid; width: 100%; align-items: stretch; gap: 16px; }
  .contact-actions .button { width: 100%; }
  .inner-hero-grid { padding-top: 44px; padding-bottom: 44px; }
  .inner-hero-copy h1 { overflow-wrap: anywhere; font-size: 34px; line-height: 1.22; word-break: normal; }
  .inner-hero-intro { font-size: 16px; }
  .inner-hero-context { display: none; }
  .breadcrumbs { overflow-x: auto; }
  .article-shell { gap: 44px; }
  .richtext, .richtext p, .richtext li, .richtext dd, .richtext td, .richtext th { font-size: 16px; line-height: 1.85; }
  .richtext h2 { margin-top: 44px; font-size: 28px; }
  .richtext h3 { margin-top: 34px; font-size: 21px; }
  .service-scenario-grid { grid-template-columns: 1fr; }
  .service-scenario-card { min-height: 0; }
  .project-aside { grid-template-columns: 1fr; }
  .content-aside { grid-template-columns: 1fr; }
  .article-hero-inner { min-height: 0; padding-top: 44px; padding-bottom: 44px; }
  .article-hero h1 { font-size: 34px; }
  .article-hero p { font-size: 16px; }
  .post-navigation { grid-template-columns: 1fr; }
  .post-navigation > div:last-child { text-align: left; }
  .project-hero-grid { min-height: 0; padding-top: 44px; padding-bottom: 44px; }
  .project-hero-copy h1 { font-size: 34px; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-grid a { min-height: 145px; }
  .contact-details, .contact-content { padding: 26px 20px; }
  .search-form-large { padding: 20px; }
  .search-form-large > div { align-items: stretch; flex-direction: column; }
  .search-result { grid-template-columns: 1fr; }
  .search-result-type { margin-bottom: -5px; }
  .not-found-inner h1 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 38px; }
}

/*
 * Solution detail restoration layer.
 * The historical body remains the source of truth; these profile classes
 * restore the intended relationship between text, diagrams, galleries and
 * feature groups without reproducing the old builder markup.
 */
.solution-detail-section .project-layout {
  display: block;
}

.solution-detail-section .project-content-stage {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  max-width: 100%;
  gap: 28px;
  justify-content: center;
}

.solution-detail-section .project-richtext {
  width: 100%;
  max-width: 900px;
  min-width: 0;
}

.solution-detail-section .solution-content-root {
  width: 100%;
}

.solution-detail-section .solution-row {
  display: grid;
  gap: 28px;
  align-items: start;
  width: 100%;
  margin: 0 0 58px;
}

.solution-detail-section .solution-row + .solution-row {
  margin-top: 58px;
}

.solution-detail-section .solution-column {
  min-width: 0;
  padding: 0;
  background: transparent;
}

.solution-detail-section .solution-column--media {
  display: block;
}

.solution-detail-section .solution-column--text {
  min-width: 0;
}

.solution-detail-section .solution-row--content,
.solution-detail-section .solution-row--wide-media {
  display: block;
}

.solution-detail-section .solution-row--split,
.solution-detail-section .solution-row--intro-split,
.solution-detail-section .solution-row--case-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-detail-section .solution-row--feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-detail-section .solution-row--feature-grid > .solution-column:first-child,
.solution-detail-section .solution-row--activity-grid > .solution-column:first-child,
.solution-detail-section .solution-row--brand-wall > .solution-column:first-child {
  grid-column: 1 / -1;
}

.solution-detail-section .solution-row--wide-media > .solution-column--media,
.solution-detail-section .solution-row--wide-media > .solution-column:has(.solution-content-image) {
  width: 100%;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.solution-detail-section .solution-row--wide-media > .solution-column--media + .solution-column--text {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.solution-detail-section .solution-media-figure,
.solution-detail-section .yuqi-image,
.solution-detail-section .legacy-media,
.solution-detail-section .legacy-background-media {
  width: 100%;
  max-width: 100%;
  margin: 24px auto;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.solution-detail-section .solution-content-image,
.solution-detail-section .solution-media-figure img,
.solution-detail-section .yuqi-image img,
.solution-detail-section .legacy-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.solution-detail-section .solution-content-image--contain,
.solution-detail-section .solution-media-figure--contain img {
  object-fit: contain;
}

.solution-detail-section .solution-content-image--cover,
.solution-detail-section .solution-media-figure--cover img {
  object-fit: cover;
}

.solution-detail-section .solution-row--gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-detail-section .solution-row--gallery > .solution-column:first-child {
  grid-column: 1 / -1;
}

.solution-detail-section .solution-row--gallery > .solution-column:not(:first-child) {
  display: block;
  min-width: 0;
}

.solution-detail-section .solution-row--gallery .yuqi-gallery,
.solution-detail-section .solution-row--gallery .legacy-column > .yuqi-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.solution-detail-section .solution-row--gallery .yuqi-gallery > *,
.solution-detail-section .solution-row--gallery .yuqi-gallery .yuqi-image {
  min-width: 0;
  margin: 0;
}

.solution-detail-section .solution-row--gallery .yuqi-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--f-card);
}

.solution-detail-section .solution-row--brand-wall {
  display: block;
  width: 100%;
}

.solution-detail-section .solution-row--brand-wall > .solution-column:first-child {
  width: 100%;
  margin-bottom: 24px;
}

.solution-detail-section .solution-row--brand-wall > .solution-column:not(:first-child) {
  display: block;
  width: 100%;
}

.solution-detail-section .solution-row--brand-wall .yuqi-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.solution-detail-section .solution-row--brand-wall .yuqi-image,
.solution-detail-section .solution-row--brand-wall .legacy-media,
.solution-detail-section .solution-row--brand-wall figure {
  display: grid;
  min-height: 92px;
  place-items: center;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: #fff;
}

.solution-detail-section .solution-row--brand-wall img {
  width: 100%;
  max-width: 150px;
  max-height: 62px;
  object-fit: contain;
}

.solution-detail-section .solution-row--activity-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-detail-section .solution-row--activity-grid > .solution-column:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.solution-detail-section .solution-row--activity-grid > .solution-column:not(:first-child) .yuqi-image,
.solution-detail-section .solution-row--activity-grid > .solution-column:not(:first-child) figure {
  width: 112px;
  height: 112px;
  margin: 0 auto 4px;
  overflow: hidden;
  border-radius: 50%;
}

.solution-detail-section .solution-row--activity-grid > .solution-column:not(:first-child) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-detail-section .solution-row--activity-grid h3,
.solution-detail-section .solution-row--activity-grid h4,
.solution-detail-section .solution-row--activity-grid p {
  text-align: center;
}

.solution-detail-section .solution-row--feature-grid > .solution-column:not(:first-child) {
  padding: 20px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.solution-detail-section .solution-row--feature-grid h3,
.solution-detail-section .solution-row--feature-grid h4 {
  margin-top: 0;
}

.solution-detail-section .solution-layout--architecture,
.solution-detail-section .solution-layout--storage-architecture,
.solution-detail-section .solution-layout--hybrid-cloud,
.solution-detail-section .solution-layout--network-products,
.solution-detail-section .solution-layout--network-architecture,
.solution-detail-section .solution-layout--smart-engineering,
.solution-detail-section .solution-layout--operations,
.solution-detail-section .solution-layout--engineering-partners,
.solution-detail-section .solution-layout--service-overview {
  --solution-diagram-width: 900px;
}

.solution-detail-section .solution-layout--exhibition .project-richtext {
  max-width: 1120px;
}

.solution-detail-section .solution-layout--exhibition .solution-row--brand-wall,
.solution-detail-section .solution-layout--exhibition .solution-row--activity-grid {
  margin-right: auto;
  margin-left: auto;
}

.solution-detail-section .solution-layout--product-gallery .project-richtext,
.solution-detail-section .solution-layout--software-gallery .project-richtext {
  max-width: 1080px;
}

.solution-detail-section .solution-layout--product-gallery .solution-row--gallery .yuqi-gallery,
.solution-detail-section .solution-layout--software-gallery .solution-row--gallery .yuqi-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .solution-detail-section .solution-row--brand-wall {
    grid-template-columns: 1fr;
  }

  .solution-detail-section .solution-row--brand-wall .yuqi-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .solution-detail-section .solution-row--activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-detail-section .solution-row--feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-detail-section .solution-row--gallery .yuqi-gallery,
  .solution-detail-section .solution-layout--product-gallery .solution-row--gallery .yuqi-gallery,
  .solution-detail-section .solution-layout--software-gallery .solution-row--gallery .yuqi-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-detail-section .solution-row--gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .solution-detail-section .project-content-stage {
    display: block;
  }

  .solution-detail-section .solution-row--split,
  .solution-detail-section .solution-row--intro-split,
  .solution-detail-section .solution-row--case-showcase,
  .solution-detail-section .solution-row--feature-grid,
  .solution-detail-section .solution-row--brand-wall,
  .solution-detail-section .solution-row--activity-grid {
    grid-template-columns: 1fr;
  }

  .solution-detail-section .solution-row--brand-wall > .solution-column:first-child,
  .solution-detail-section .solution-row--activity-grid > .solution-column:first-child,
  .solution-detail-section .solution-row--feature-grid > .solution-column:first-child {
    grid-column: auto;
  }

  .solution-detail-section .solution-row--brand-wall {
    grid-template-columns: 1fr;
  }

  .solution-detail-section .solution-row--brand-wall .yuqi-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .solution-detail-section .solution-row--activity-grid > .solution-column:not(:first-child) {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .solution-detail-section .solution-row--gallery .yuqi-gallery,
  .solution-detail-section .solution-layout--product-gallery .solution-row--gallery .yuqi-gallery,
  .solution-detail-section .solution-layout--software-gallery .solution-row--gallery .yuqi-gallery {
    grid-template-columns: 1fr;
  }

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

  .solution-detail-section .solution-row {
    margin-bottom: 42px;
  }

  .solution-detail-section .solution-row + .solution-row {
    margin-top: 42px;
  }
}

@media (max-width: 390px) {
  .brand-copy strong { max-width: 180px; }
  .hero-copy { padding-top: 66px; }
  .hero-actions .button { flex: 1 1 auto; }
  .carousel-arrow { max-width: 52px; line-height: 1.2; }
}

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

/* Information architecture remediation: Solutions, verified Cases and WeChat. */
.solutions-index-count {
  margin: -18px 0 24px;
  color: var(--f-text-muted);
  font-size: 14px;
}

.solution-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

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

.solution-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--f-border);
  background: var(--f-card);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.solution-card:hover,
.solution-card:focus-within {
  border-color: rgba(47, 124, 246, 0.64);
  background: var(--f-card-strong);
  transform: translateY(-3px);
}

.solution-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
}

.solution-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  background: #091421;
}

.solution-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.solution-card:hover .solution-card-media img {
  transform: scale(1.02);
}

.solution-card-body {
  display: flex;
  flex: 1;
  min-height: 178px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 22px 22px;
}

.solution-card-category {
  color: var(--f-text-muted);
  font-size: 13px;
}

.solution-card-body h2 {
  margin-top: 10px;
  color: var(--f-text);
  font-size: 21px;
  line-height: 1.45;
}

.solution-card-body p {
  margin-top: 9px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.solution-card-body .card-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--f-blue-soft);
  font-size: 14px;
}

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

.cases-empty-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  min-height: 230px;
  padding: 34px 38px;
  overflow: hidden;
  border: 1px solid var(--f-border);
  border-top: 3px solid var(--f-blue);
  background: linear-gradient(120deg, rgba(15, 31, 50, 0.96), rgba(8, 21, 34, 0.98));
}

.cases-empty-panel-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cases-empty-panel-copy h2 {
  margin-top: 10px;
  color: var(--f-text);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.35;
}

.cases-empty-panel-copy p:not(.eyebrow) {
  margin-top: 15px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.cases-empty-panel-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cases-empty-panel-art {
  position: absolute;
  right: 6%;
  bottom: -30px;
  width: 230px;
  height: 180px;
  opacity: 0.42;
  transform: skewY(-12deg);
}

.cases-empty-panel-art span {
  position: absolute;
  display: block;
  border: 1px solid rgba(53, 195, 212, 0.42);
  background: rgba(47, 124, 246, 0.05);
}

.cases-empty-panel-art span:nth-child(1) { inset: 18px 70px 30px 10px; }
.cases-empty-panel-art span:nth-child(2) { inset: 42px 25px 10px 55px; }
.cases-empty-panel-art span:nth-child(3) { inset: 72px 80px -22px 105px; }

.wechat-section {
  margin-top: 58px;
  padding-top: 58px;
  border-top: 1px solid var(--f-border);
}

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

.wechat-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.wechat-qr-shell {
  display: grid;
  width: 200px;
  height: 200px;
  place-items: center;
  padding: 12px;
  background: #fff;
}

.wechat-qr-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wechat-card h3 {
  color: var(--f-text);
  font-size: 21px;
  line-height: 1.4;
}

.wechat-card p,
.wechat-card small {
  display: block;
  margin-top: 10px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.wechat-card small {
  color: var(--f-text-muted);
  font-size: 13px;
}

.footer-wechat {
  display: inline-flex;
  min-height: 96px;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--f-text-secondary);
  font-size: 13px;
}

.footer-wechat-image {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  padding: 8px;
  background: #fff;
}

.footer-wechat-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-wechat-copy {
  display: grid;
  gap: 6px;
}

.footer-wechat-copy strong {
  color: var(--f-text);
  font-size: 15px;
}

.footer-wechat-copy small {
  color: var(--f-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.solution-detail-section .project-content-stage {
  grid-template-columns: 44px minmax(0, 900px);
}

.solution-detail-section .project-content-stage .project-richtext {
  max-width: 900px;
}

.solution-richtext .legacy-media,
.solution-richtext .legacy-background-media,
.solution-richtext figure {
  width: 100%;
  max-width: 900px;
}

.solution-richtext .legacy-media img,
.solution-richtext .legacy-background-media img,
.solution-richtext figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.about-lead-secondary {
  margin-top: 18px;
}

.source-content-section .about-source {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.article-float-tools {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  pointer-events: none;
  transform: none;
}

.article-float-tools button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--f-border-strong);
  background: rgba(15, 31, 50, 0.96);
  color: var(--f-text-secondary);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  pointer-events: auto;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.article-float-tools button:hover,
.article-float-tools button:focus-visible {
  border-color: var(--f-blue);
  background: var(--f-card-strong);
  color: var(--f-text);
}

.article-float-tools .article-float-top[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .solution-grid,
  .solution-grid-related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cases-empty-panel { grid-template-columns: 1fr; }
  .cases-empty-panel-actions { justify-content: flex-start; }
  .wechat-card { grid-template-columns: 180px minmax(0, 1fr); }
  .wechat-qr-shell { width: 180px; height: 180px; }
}

@media (max-width: 640px) {
  .solution-grid,
  .solution-grid-related,
  .wechat-grid { grid-template-columns: 1fr; }
  .solution-card-body { min-height: 0; }
  .cases-empty-panel { min-height: 0; padding: 28px 22px; }
  .cases-empty-panel-actions { display: grid; grid-template-columns: 1fr; }
  .cases-empty-panel-actions .button { width: 100%; }
  .wechat-section { margin-top: 44px; padding-top: 44px; }
  .wechat-card { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .wechat-qr-shell { width: 180px; height: 180px; }
  .article-float-tools {
    top: auto;
    right: 18px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    transform: none;
  }
  .article-float-tools button { width: 44px; height: 44px; min-height: 44px; font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .solution-card,
  .solution-card-media img,
  .article-float-tools a,
  .article-float-tools button {
    transition-duration: 0.01ms;
  }
}

/* Illustrative Project Cases: presentation-only scenarios, never client claims. */
.example-scenarios-home-note {
  max-width: 820px;
  margin: -28px 0 24px;
}

.example-scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.example-scenario-grid--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.example-scenario-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.example-scenario-card:hover,
.example-scenario-card:focus-within {
  border-color: rgba(47, 124, 246, 0.64);
  background: var(--f-card-strong);
}

.example-scenario-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.example-scenario-badge {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(53, 195, 212, 0.4);
  color: var(--f-cyan);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.example-scenario-badge--muted {
  border-color: var(--f-border-strong);
  color: var(--f-text-muted);
}

.example-scenario-card h3 {
  margin-top: 15px;
  color: var(--f-text);
  font-size: 22px;
  line-height: 1.45;
}

.example-scenario-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.example-scenario-metrics > div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--f-border);
  background: rgba(6, 16, 29, 0.38);
}

.example-scenario-metrics span,
.example-scenario-metrics small {
  display: block;
  color: var(--f-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.example-scenario-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--f-text);
  font-size: 16px;
  line-height: 1.45;
}

.example-scenario-metrics small {
  margin-top: 5px;
  color: var(--f-text-muted);
}

.example-scenario-summary,
.example-scenario-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.example-scenario-summary h4,
.example-scenario-detail-grid h4 {
  color: var(--f-text);
  font-size: 15px;
  line-height: 1.5;
}

.example-scenario-summary p,
.example-scenario-detail-grid li {
  margin-top: 6px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.example-scenario-detail-grid {
  padding-top: 17px;
  border-top: 1px solid var(--f-border);
}

.example-scenario-detail-grid ul {
  margin: 7px 0 0;
  padding-left: 18px;
}

.example-scenario-detail-grid li {
  margin-top: 3px;
}

.example-scenario-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
}

.example-scenario-actions .button {
  min-height: 42px;
}

.example-scenario-card--compact {
  padding: 20px;
}

.example-scenario-card--compact h3 {
  font-size: 20px;
}

.example-scenario-card--compact .example-scenario-summary {
  grid-template-columns: 1fr;
  gap: 10px;
}

.wechat-grid--single .wechat-card {
  max-width: 820px;
}

@media (max-width: 1100px) {
  .example-scenario-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .example-scenario-grid,
  .example-scenario-grid--home,
  .example-scenario-summary,
  .example-scenario-detail-grid,
  .example-scenario-metrics { grid-template-columns: 1fr; }
  .example-scenario-card { padding: 20px; }
  .example-scenarios-home-note { margin-top: -14px; }
  .footer-wechat { align-items: start; }
}

/* Keep QR media at its intended size inside narrow flex/grid columns. */
.wechat-card { grid-template-columns: 224px minmax(0, 1fr); }
.wechat-qr-shell {
  box-sizing: border-box;
  width: 224px;
  height: 224px;
}
.footer-wechat-image {
  box-sizing: border-box;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
}

@media (max-width: 900px) {
  .wechat-card { grid-template-columns: 204px minmax(0, 1fr); }
  .wechat-qr-shell { width: 204px; height: 204px; }
}

@media (max-width: 640px) {
  .wechat-card { grid-template-columns: 1fr; }
  .wechat-qr-shell { width: 204px; height: 204px; }
}

/* Restored service-page structure: source-derived modules first, catalogue second. */
.service-original-structure {
  background: var(--f-bg-deep);
}

.service-structure-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.service-structure-copy {
  max-width: 680px;
}

.service-structure-copy h2 {
  max-width: 620px;
  margin-top: 12px;
  color: var(--f-text);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.25;
}

.service-structure-copy > p:not(.eyebrow):not(.service-regions) {
  margin-top: 24px;
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.85;
}

.service-regions {
  margin-top: 17px;
  color: var(--f-cyan);
  font-size: 14px;
  line-height: 1.7;
}

.service-structure-hero-media,
.service-core-card figure,
.service-original-module figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.service-structure-hero-media {
  aspect-ratio: 1.5 / 1;
}

.service-structure-hero-media img,
.service-core-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-structure-heading,
.service-technology-heading {
  margin-top: 92px;
}

.service-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.service-core-card {
  display: grid;
  grid-template-rows: 190px auto;
  min-width: 0;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.service-core-card figure {
  border: 0;
  border-bottom: 1px solid var(--f-border);
}

.service-core-card > div {
  padding: 24px 24px 27px;
}

.service-core-card h3,
.service-original-module h2,
.service-technology-card h3 {
  color: var(--f-text);
  font-size: 22px;
  line-height: 1.45;
}

.service-core-card p,
.service-original-module-copy > p:not(.eyebrow),
.service-technology-card p {
  margin-top: 12px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.service-original-module-list {
  display: grid;
  gap: 30px;
  margin-top: 72px;
}

.service-original-module {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--f-border);
}

.service-original-module--copy-first figure { order: 2; }
.service-original-module--copy-first .service-original-module-copy { order: 1; }

.service-original-module figure {
  width: 100%;
  min-width: 0;
  min-height: 260px;
  box-sizing: border-box;
  aspect-ratio: 1.55 / 1;
}

.service-original-module figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.service-original-module--managed-operations figure {
  background: #091522;
}

.service-original-module--managed-operations figure img {
  object-fit: cover;
  padding: 0;
}

.service-original-module-copy {
  max-width: 660px;
}

.service-original-module-copy ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-original-module-copy li {
  position: relative;
  padding-left: 17px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.service-original-module-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--f-blue);
  content: '';
}

.service-technology-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.service-technology-card {
  position: relative;
  min-height: 176px;
  padding: 22px 22px 20px;
  border: 1px solid var(--f-border);
  background: rgba(16, 31, 50, 0.72);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.service-technology-card:hover,
.service-technology-card:focus-visible {
  border-color: rgba(47, 124, 246, 0.6);
  background: var(--f-card-strong);
  transform: translateY(-2px);
}

.service-technology-arrow {
  position: absolute;
  top: 19px;
  right: 20px;
  color: var(--f-cyan);
  font-size: 19px;
}

.service-technology-card h3 {
  max-width: calc(100% - 28px);
  font-size: 19px;
}

.service-technology-card .card-link {
  display: inline-block;
  margin-top: 15px;
}

.services-directory-section {
  padding-top: 76px;
  background: var(--f-bg);
}

@media (max-width: 1020px) {
  .service-structure-intro { grid-template-columns: 1fr 0.95fr; gap: 34px; }
  .service-core-grid,
  .service-technology-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-original-module-copy ul { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .service-structure-intro,
  .service-original-module { grid-template-columns: 1fr; }
  .service-structure-hero-media { order: -1; aspect-ratio: 1.6 / 1; }
  .service-core-grid,
  .service-technology-grid { grid-template-columns: 1fr; }
  .service-structure-heading,
  .service-technology-heading { margin-top: 62px; }
  .service-original-module-list { margin-top: 48px; }
  .service-original-module { gap: 22px; padding: 22px 0; }
  .service-original-module--copy-first figure,
  .service-original-module--copy-first .service-original-module-copy { order: initial; }
  .service-original-module figure { min-height: 210px; }
  .service-original-module-copy ul { grid-template-columns: 1fr; margin-top: 19px; }
  .services-directory-section { padding-top: 54px; }
}

@media (max-width: 820px) {
  .service-original-module {
    grid-template-columns: 1fr;
  }

  .service-original-module--copy-first figure,
  .service-original-module--copy-first .service-original-module-copy {
    order: initial;
  }
}

/* Service 53 commercial detail system — strictly scoped to verified targets. */
.service-commercial-page {
  --service-accent: #4b8dff;
  --service-accent-soft: rgba(75, 141, 255, 0.14);
  color: var(--f-text);
  background: var(--f-bg);
}

.service-commercial-page--network-security { --service-accent: #35c3d4; --service-accent-soft: rgba(53, 195, 212, 0.14); }
.service-commercial-page--data-protection { --service-accent: #6ea8ff; --service-accent-soft: rgba(110, 168, 255, 0.14); }
.service-commercial-page--virtualization-cloud { --service-accent: #77a6ff; --service-accent-soft: rgba(119, 166, 255, 0.14); }
.service-commercial-page--smart-engineering { --service-accent: #46c6b7; --service-accent-soft: rgba(70, 198, 183, 0.14); }

.service-commercial-page :where(h1, h2, h3, p, li, a, summary) {
  overflow-wrap: anywhere;
}

.service-commercial-hero {
  padding: clamp(76px, 8vw, 126px) 0 clamp(62px, 7vw, 104px);
  border-bottom: 1px solid var(--f-border);
  background:
    radial-gradient(circle at 78% 22%, var(--service-accent-soft), transparent 34%),
    linear-gradient(145deg, #081424 0%, #0c1b2e 52%, #0a1727 100%);
}

.service-commercial-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
}

.service-commercial-hero--no-media .service-commercial-hero-grid {
  grid-template-columns: minmax(0, 820px);
}

.service-commercial-hero-copy {
  min-width: 0;
}

.service-commercial-hero-copy .eyebrow {
  color: var(--service-accent);
}

.service-commercial-hero h1 {
  max-width: 820px;
  margin-top: 16px;
  color: var(--f-text);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.service-commercial-hero-summary {
  max-width: 760px;
  margin-top: 26px;
  color: var(--f-text-secondary);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.8;
}

.service-commercial-shared {
  max-width: 760px;
  margin-top: 14px;
  color: var(--f-cyan);
  font-size: 14px;
  line-height: 1.7;
}

.service-commercial-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.service-commercial-hero-actions .button {
  min-height: 48px;
}

.service-commercial-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-commercial-hero-meta li {
  padding: 7px 11px;
  border: 1px solid var(--f-border-strong);
  color: var(--f-text-secondary);
  background: rgba(5, 14, 25, 0.34);
  font-size: 13px;
  line-height: 1.4;
}

.service-commercial-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--f-border-strong);
  background: #071321;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28);
}

.service-commercial-hero-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
  content: '';
}

.service-commercial-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-commercial-hero-image--contain {
  padding: clamp(12px, 2vw, 24px);
  object-fit: contain;
}

.service-commercial-jump {
  border-bottom: 1px solid var(--f-border);
  background: rgba(8, 20, 35, 0.96);
}

.service-commercial-jump .container {
  display: flex;
  gap: 8px 26px;
  align-items: center;
  min-height: 58px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.service-commercial-jump a {
  flex: 0 0 auto;
  padding: 18px 0 15px;
  border-bottom: 2px solid transparent;
  color: var(--f-text-secondary);
  font-size: 14px;
}

.service-commercial-jump a:hover,
.service-commercial-jump a:focus-visible {
  border-color: var(--service-accent);
  color: var(--f-text);
}

.service-commercial-main {
  background: linear-gradient(180deg, var(--f-bg) 0%, #091728 48%, var(--f-bg) 100%);
}

.service-commercial-section {
  padding: clamp(72px, 8vw, 116px) 0;
  scroll-margin-top: 96px;
}

.service-commercial-section + .service-commercial-section {
  border-top: 1px solid var(--f-border);
}

.service-commercial-section-head {
  max-width: 860px;
  margin-bottom: 36px;
}

.service-commercial-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 38px;
  max-width: none;
  align-items: end;
}

.service-commercial-section-head h2 {
  margin-top: 11px;
  color: var(--f-text);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.service-commercial-section-head > p,
.service-commercial-section-head--split > p {
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.service-commercial-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.service-commercial-overview-grid > div {
  min-width: 0;
}

.service-commercial-overview-grid h3,
.service-commercial-delivery-grid h3 {
  margin-bottom: 18px;
  color: var(--f-text);
  font-size: 20px;
  line-height: 1.5;
}

.service-commercial-mini-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--f-border-strong);
}

.service-commercial-mini-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--f-border);
}

.service-commercial-mini-list span,
.service-commercial-scope-grid span {
  color: var(--service-accent);
  font: 600 12px/1.6 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.service-commercial-mini-list p {
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.service-commercial-mini-list--problems article {
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.07);
}

.service-commercial-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-commercial-scope-grid article {
  min-width: 0;
  min-height: 174px;
  padding: 22px;
  border: 1px solid var(--f-border);
  background: linear-gradient(155deg, rgba(17, 35, 56, 0.96), rgba(10, 24, 41, 0.72));
}

.service-commercial-scope-grid p {
  margin-top: 30px;
  color: var(--f-text);
  font-size: 17px;
  line-height: 1.65;
}

.service-commercial-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.service-commercial-step-list li {
  min-width: 0;
  padding: 6px 28px 8px;
  border-left: 1px solid var(--f-border-strong);
}

.service-commercial-step-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-commercial-step-list > li > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--service-accent);
  border-radius: 50%;
  color: var(--service-accent);
  font: 600 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.service-commercial-step-list h3 {
  margin-top: 22px;
  color: var(--f-text);
  font-size: 20px;
  line-height: 1.4;
}

.service-commercial-step-list p {
  margin-top: 9px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.service-commercial-legacy-section {
  position: relative;
}

.service-commercial-legacy {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--f-border);
  background: rgba(12, 28, 47, 0.68);
}

.service-commercial-legacy > :first-child {
  margin-top: 0 !important;
}

.service-commercial-legacy :where(p, li) {
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.85;
}

.service-commercial-legacy :where(h2, h3, h4) {
  max-width: 760px;
  color: var(--f-text);
  line-height: 1.35;
  text-wrap: balance;
}

.service-commercial-legacy h2 {
  margin-top: 54px;
  font-size: clamp(27px, 3vw, 38px);
}

.service-commercial-legacy h3 {
  margin-top: 38px;
  font-size: clamp(21px, 2.2vw, 28px);
}

.service-commercial-legacy img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.service-commercial-legacy :where(figure, .wp-caption, p:has(> img), p:has(> a > img)) {
  max-width: 100%;
  margin: 34px auto;
  overflow: hidden;
}

.service-commercial-legacy a {
  color: var(--f-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.service-commercial-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
}

.service-commercial-delivery-grid > div {
  padding: clamp(24px, 4vw, 42px);
  border-top: 2px solid var(--service-accent);
  background: rgba(14, 31, 51, 0.76);
}

.service-commercial-delivery-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-commercial-delivery-grid li {
  position: relative;
  padding-left: 21px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.service-commercial-delivery-grid li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--service-accent);
  border-radius: 50%;
  content: '';
}

.service-commercial-faq-list {
  max-width: 960px;
  border-top: 1px solid var(--f-border-strong);
}

.service-commercial-faq-list details {
  border-bottom: 1px solid var(--f-border);
}

.service-commercial-faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--f-text);
  font-size: 18px;
  line-height: 1.55;
  cursor: pointer;
  list-style: none;
}

.service-commercial-faq-list summary::-webkit-details-marker { display: none; }

.service-commercial-faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  color: var(--service-accent);
  font-size: 22px;
  content: '+';
}

.service-commercial-faq-list details[open] summary::after { content: '−'; }

.service-commercial-faq-list details p {
  max-width: 800px;
  padding: 0 0 24px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.service-commercial-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-commercial-related-grid > a {
  min-width: 0;
  min-height: 188px;
  padding: 24px;
  border: 1px solid var(--f-border);
  background: rgba(14, 31, 51, 0.72);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-commercial-related-grid > a:hover,
.service-commercial-related-grid > a:focus-visible {
  border-color: var(--service-accent);
  background: rgba(19, 41, 67, 0.88);
  transform: translateY(-2px);
}

.service-commercial-related-grid span {
  color: var(--service-accent);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-commercial-related-grid h3 {
  margin-top: 14px;
  color: var(--f-text);
  font-size: 21px;
  line-height: 1.45;
}

.service-commercial-related-grid strong {
  display: block;
  margin-top: 26px;
  color: var(--f-text-secondary);
  font-size: 14px;
}

.service-commercial-cta {
  padding: clamp(66px, 8vw, 108px) 0;
  border-top: 1px solid var(--f-border);
  background:
    linear-gradient(100deg, rgba(47, 124, 246, 0.13), transparent 48%),
    #081524;
}

.service-commercial-cta .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.service-commercial-cta h2 {
  max-width: 820px;
  margin-top: 11px;
  color: var(--f-text);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.service-commercial-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 15px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .service-commercial-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr); gap: 44px; }
  .service-commercial-scope-grid,
  .service-commercial-step-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .service-commercial-step-list li,
  .service-commercial-step-list li:first-child { padding: 22px; border: 1px solid var(--f-border); }
}

@media (max-width: 820px) {
  .service-commercial-hero { padding-top: 64px; }
  .service-commercial-hero-grid,
  .service-commercial-section-head--split,
  .service-commercial-delivery-grid,
  .service-commercial-cta .container { grid-template-columns: 1fr; }
  .service-commercial-hero-media { order: -1; aspect-ratio: 16 / 9; }
  .service-commercial-hero h1 { font-size: clamp(38px, 10vw, 58px); }
  .service-commercial-overview-grid { grid-template-columns: 1fr; }
  .service-commercial-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-commercial-cta .button { justify-self: start; }
}

@media (max-width: 560px) {
  .service-commercial-hero { padding: 48px 0 58px; }
  .service-commercial-hero-actions { display: grid; }
  .service-commercial-hero-actions .button { width: 100%; }
  .service-commercial-jump .container { gap: 22px; }
  .service-commercial-section { padding: 62px 0; }
  .service-commercial-section-head { margin-bottom: 28px; }
  .service-commercial-scope-grid,
  .service-commercial-step-list,
  .service-commercial-related-grid { grid-template-columns: 1fr; }
  .service-commercial-scope-grid article { min-height: 0; }
  .service-commercial-step-list li,
  .service-commercial-step-list li:first-child { padding: 20px; }
  .service-commercial-legacy { padding: 24px 20px; }
  .service-commercial-legacy :where(p, li) { font-size: 16px; }
  .service-commercial-cta .button { width: 100%; }
}

/* Legacy article readability layer: preserve the historical facts and markup
 * while giving long-form posts a consistent reading measure and rhythm. */
.v3-article-content {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  overflow-wrap: anywhere;
}

.v3-article-content p {
  margin: 0 0 1.35em;
  line-height: 1.9;
}

.v3-article-content h2,
.v3-article-content h3,
.v3-article-content h4 {
  margin-top: 2.1em;
  margin-bottom: .7em;
  line-height: 1.35;
}

.v3-article-content ul,
.v3-article-content ol {
  margin-top: .5em;
  margin-bottom: 1.5em;
  padding-left: 1.5em;
  line-height: 1.85;
}

.v3-article-content figure {
  max-width: 100%;
  margin: 2rem auto;
}

.v3-article-content figure img,
.v3-article-content > img,
.v3-article-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.v3-article-content figcaption {
  margin-top: .65rem;
  color: var(--f-text-muted);
  font-size: .82em;
  line-height: 1.6;
  text-align: center;
}

.v3-article-content blockquote {
  margin: 1.75rem 0;
  padding: .9rem 1.25rem;
  border-left: 3px solid var(--f-cyan);
  background: rgba(53, 195, 212, .06);
}

.v3-article-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

@media (max-width: 820px) {
  .v3-article-content {
    font-size: 16px;
  }

  .v3-article-content figure {
    margin-right: 0;
    margin-left: 0;
  }
}

/* Enterprise IT editorial pages: equal-weight copy and media rhythm. */
.yuqi-it-service-editorial {
  --it-accent: #35c3d4;
  --it-panel: #0b2130;
  --it-panel-strong: #102b3b;
  background: var(--f-bg);
}

.yuqi-it-service-editorial-hero {
  padding: clamp(60px, 8vw, 112px) 0 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(53, 195, 212, .12), transparent 34%),
    linear-gradient(180deg, #071522 0%, #081b2a 100%);
}

.yuqi-it-service-editorial-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: stretch;
}

.yuqi-it-service-editorial-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.yuqi-it-service-editorial .eyebrow {
  margin: 0;
  color: var(--it-accent);
  font: 700 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.yuqi-it-service-editorial h1,
.yuqi-it-service-editorial h2,
.yuqi-it-service-editorial h3,
.yuqi-it-service-editorial strong {
  color: var(--f-text);
}

.yuqi-it-service-editorial h1 {
  max-width: 720px;
  margin: 16px 0 18px;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.12;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.yuqi-it-service-editorial-hero-summary {
  max-width: 680px;
  margin: 0;
  color: var(--f-text-secondary);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.9;
}

.yuqi-it-service-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.yuqi-it-service-editorial-media {
  display: grid;
  min-width: 0;
  height: 100%;
  min-height: 0;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid rgba(53, 195, 212, .32);
  background: #071522;
  overflow: hidden;
}

.yuqi-it-service-editorial-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  align-self: stretch;
  object-fit: cover;
}

.yuqi-it-service-editorial-media figcaption {
  padding: 12px 16px 14px;
  color: var(--f-text-muted);
  font-size: 12px;
  line-height: 1.65;
}

.yuqi-it-service-editorial-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid rgba(53, 195, 212, .28);
}

.yuqi-it-service-editorial-signals > div {
  min-width: 0;
  padding: 20px 22px 22px;
  border-right: 1px solid rgba(53, 195, 212, .2);
}

.yuqi-it-service-editorial-signals > div:last-child {
  border-right: 0;
}

.yuqi-it-service-editorial-signals span {
  display: block;
  margin-bottom: 6px;
  color: var(--it-accent);
  font-size: 12px;
}

.yuqi-it-service-editorial-signals strong {
  display: block;
  font-size: 16px;
  line-height: 1.55;
}

.yuqi-it-service-editorial-jump {
  position: sticky;
  z-index: 8;
  top: var(--f-header-height);
  border-bottom: 1px solid var(--f-border);
  background: rgba(6, 16, 29, .9);
  backdrop-filter: blur(12px);
}

.yuqi-it-service-editorial-jump .container {
  display: flex;
  gap: 26px;
  overflow-x: auto;
}

.yuqi-it-service-editorial-jump a {
  flex: 0 0 auto;
  padding: 15px 0 14px;
  color: var(--f-text-muted);
  font-size: 13px;
  white-space: nowrap;
}

.yuqi-it-service-editorial-jump a:hover,
.yuqi-it-service-editorial-jump a:focus-visible {
  color: var(--it-accent);
}

.yuqi-it-service-editorial-section {
  padding: clamp(72px, 8vw, 120px) 0;
  scroll-margin-top: calc(var(--f-header-height) + 64px);
}

.yuqi-it-service-editorial-section:nth-child(odd) {
  background: #081522;
}

.yuqi-it-service-editorial-section:nth-child(even) {
  background: #091d2b;
}

.yuqi-it-service-editorial-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.yuqi-it-service-editorial-split.is-reverse .yuqi-it-service-editorial-split-copy {
  order: 2;
}

.yuqi-it-service-editorial-split.is-reverse .yuqi-it-service-editorial-media {
  order: 1;
}

.yuqi-it-service-editorial-split-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
}

.yuqi-it-service-editorial-split-copy h2,
.yuqi-it-service-editorial-section-head h2 {
  max-width: 850px;
  margin: 13px 0 17px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.22;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.yuqi-it-service-editorial-split-copy > p,
.yuqi-it-service-editorial-section-head > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.yuqi-it-service-editorial-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--f-border);
}

.yuqi-it-service-editorial-list > div {
  padding: 15px 0 16px;
  border-bottom: 1px solid var(--f-border);
}

.yuqi-it-service-editorial-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.yuqi-it-service-editorial-list span {
  display: block;
  color: var(--f-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.yuqi-it-service-editorial-split .yuqi-it-service-editorial-media {
  align-self: stretch;
}

.yuqi-it-service-editorial-split .yuqi-it-service-editorial-media img {
  height: 100%;
}

.yuqi-it-service-editorial-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.yuqi-it-service-editorial-card-grid article {
  min-width: 0;
  min-height: 170px;
  padding: 20px 18px 22px;
  border: 1px solid rgba(53, 195, 212, .22);
  background: var(--it-panel);
}

.yuqi-it-service-editorial-card-grid article > span {
  display: block;
  margin-bottom: 26px;
  color: var(--it-accent);
  font: 700 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.yuqi-it-service-editorial-card-grid h3 {
  margin: 0 0 7px;
  font-size: 17px;
  line-height: 1.45;
}

.yuqi-it-service-editorial-card-grid p {
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 14px;
  line-height: 1.78;
}

.yuqi-it-service-editorial-delivery,
.yuqi-it-service-editorial-faq {
  background: var(--f-bg-secondary);
}

.yuqi-it-service-editorial-section-head {
  max-width: 980px;
}

.yuqi-it-service-editorial-section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(53, 195, 212, .26);
}

.yuqi-it-service-editorial-section-kicker-rule {
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 2px;
  background: var(--it-accent);
}

.yuqi-it-service-editorial-section-kicker .eyebrow {
  margin: 0;
  color: var(--it-accent);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.55;
}

.yuqi-it-service-editorial-section-head > .yuqi-it-service-editorial-section-kicker {
  margin-bottom: clamp(28px, 4vw, 44px);
}

/* Enterprise IT decision opening.
 * Match the established advisory layout only where the page already uses the
 * editorial split structure. Server colocation keeps its own page treatment. */
.yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem {
  padding: clamp(72px, 7vw, 80px) 0 clamp(52px, 5vw, 58px);
  background: #081a27;
  border-top: 1px solid rgba(116, 199, 210, .2);
  border-bottom: 1px solid rgba(116, 199, 210, .2);
}

.yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem > .container {
  max-width: 1200px;
}

.yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem .yuqi-it-service-editorial-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
}

.yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem .yuqi-it-service-editorial-split-copy {
  justify-content: center;
  padding: 0;
}

.yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem .yuqi-it-service-editorial-section-head {
  max-width: none;
}

.yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem .yuqi-it-service-editorial-section-head h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
}

.yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem .yuqi-it-service-editorial-section-head > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.95;
}

.yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem .yuqi-it-service-editorial-media img {
  min-height: 360px;
}

.yuqi-it-service-editorial-delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.yuqi-it-service-editorial-delivery-grid > div {
  min-height: 154px;
  padding: 22px 20px;
  border: 1px solid rgba(53, 195, 212, .25);
  background: var(--it-panel);
}

.yuqi-it-service-editorial-delivery-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--it-accent);
  font: 700 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.yuqi-it-service-editorial-delivery-grid strong {
  display: block;
  font-size: 16px;
  line-height: 1.65;
}

.yuqi-it-service-editorial-faq-list {
  max-width: 980px;
  margin-top: 28px;
  border-top: 1px solid var(--f-border);
}

.yuqi-it-service-editorial-faq-list details {
  padding: 18px 0;
  border-bottom: 1px solid var(--f-border);
}

.yuqi-it-service-editorial-faq-list summary {
  cursor: pointer;
  color: var(--f-text);
  font-size: 17px;
  font-weight: 650;
}

.yuqi-it-service-editorial-faq-list details p {
  max-width: 880px;
  margin: 10px 0 0;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.85;
}

.yuqi-it-service-editorial-cta {
  padding: 64px 0;
  background: #071522;
  border-top: 1px solid rgba(53, 195, 212, .24);
}

.yuqi-it-service-editorial-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.yuqi-it-service-editorial-cta h2 {
  margin: 12px 0 8px;
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.3;
}

.yuqi-it-service-editorial-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--f-text-secondary);
  line-height: 1.8;
}

@media (max-width: 820px) {
  .yuqi-it-service-editorial-hero {
    padding-top: 48px;
  }

  .yuqi-it-service-editorial-hero-grid,
  .yuqi-it-service-editorial-split {
    grid-template-columns: 1fr;
  }

  .yuqi-it-service-editorial-hero-copy,
  .yuqi-it-service-editorial-media,
  .yuqi-it-service-editorial-split-copy,
  .yuqi-it-service-editorial-split .yuqi-it-service-editorial-media {
    min-height: 0;
  }

  .yuqi-it-service-editorial-media {
    height: auto;
    grid-template-rows: auto auto;
  }

  .yuqi-it-service-editorial-hero-copy {
    padding-top: 0;
  }

  .yuqi-it-service-editorial h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .yuqi-it-service-editorial-media img,
  .yuqi-it-service-editorial-split .yuqi-it-service-editorial-media img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .yuqi-it-service-editorial-signals {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .yuqi-it-service-editorial-signals > div {
    border-right: 0;
    border-bottom: 1px solid rgba(53, 195, 212, .2);
  }

  .yuqi-it-service-editorial-signals > div:last-child {
    border-bottom: 0;
  }

  .yuqi-it-service-editorial-split.is-reverse .yuqi-it-service-editorial-split-copy,
  .yuqi-it-service-editorial-split.is-reverse .yuqi-it-service-editorial-media {
    order: initial;
  }

  .yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem .yuqi-it-service-editorial-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem .yuqi-it-service-editorial-media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .yuqi-it-service-editorial-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .yuqi-it-service-editorial-actions .button {
    width: 100%;
    text-align: center;
  }

  .yuqi-it-service-editorial-section {
    padding: 58px 0;
  }

  .yuqi-it-service-editorial-split-copy h2,
  .yuqi-it-service-editorial-section-head h2 {
    font-size: 31px;
  }

  .yuqi-it-service-editorial-section-kicker {
    gap: 12px;
    padding-bottom: 13px;
  }

  .yuqi-it-service-editorial-section-kicker-rule {
    flex-basis: 28px;
    width: 28px;
  }

  .yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .yuqi-it-service-editorial:not(.service-commercial-page--colocation) #it-service-problem .yuqi-it-service-editorial-section-head h2 {
    font-size: clamp(34px, 9vw, 44px);
  }
}

/* Chinese-only service page architecture pilot. */
.service-pilot-page {
  --pilot-accent: #35c3d4;
  --pilot-accent-soft: rgba(53, 195, 212, 0.14);
  color: var(--f-text);
  background: var(--f-bg);
}

.service-pilot-page--security {
  --pilot-accent: #f0b66b;
  --pilot-accent-soft: rgba(240, 182, 107, 0.14);
}

.service-pilot-page--recovery {
  --pilot-accent: #2ba0a3;
  --pilot-accent-soft: rgba(43, 160, 163, 0.14);
}

.service-pilot-page :where(h1, h2, h3, p, li, a, strong, span) {
  overflow-wrap: anywhere;
}

.service-pilot-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  min-height: 58px;
  color: var(--f-text-muted);
  font-size: 13px;
}

.service-pilot-breadcrumbs a:hover,
.service-pilot-breadcrumbs a:focus-visible {
  color: var(--pilot-accent);
}

.service-pilot-breadcrumbs span[aria-hidden="true"] {
  color: var(--f-border-strong);
}

.service-pilot-hero {
  padding: clamp(66px, 8vw, 112px) 0 clamp(62px, 7vw, 96px);
  border-top: 1px solid var(--f-border);
  border-bottom: 1px solid var(--f-border);
  background:
    radial-gradient(circle at 78% 18%, var(--pilot-accent-soft), transparent 34%),
    linear-gradient(145deg, #081424 0%, #0c1b2e 54%, #091625 100%);
}

.service-pilot-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.72fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.service-pilot-hero-copy .eyebrow,
.service-pilot-section .eyebrow,
.service-pilot-cta .eyebrow {
  color: var(--pilot-accent);
}

.service-pilot-hero h1 {
  max-width: 860px;
  margin-top: 16px;
  color: var(--f-text);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.service-pilot-hero-summary {
  max-width: 790px;
  margin-top: 24px;
  color: var(--f-text-secondary);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.85;
}

.service-pilot-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-pilot-hero-index {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--f-border-strong);
  border-top: 2px solid var(--pilot-accent);
  background: rgba(7, 18, 31, 0.62);
}

.service-pilot-hero-index span {
  color: var(--f-text-muted);
  font-size: 13px;
}

.service-pilot-hero-index strong {
  color: var(--pilot-accent);
  font: 600 24px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.service-pilot-hero-index small {
  color: var(--f-text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.service-pilot-hero-side {
  display: grid;
  width: 100%;
}

.service-pilot-hero-media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--f-border-strong);
  background: #0b1b2b;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.service-pilot-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  filter: saturate(0.82) contrast(1.04) brightness(0.9);
  background: #0b1b2b;
}

.service-pilot-hero-media figcaption {
  display: grid;
  gap: 5px;
  padding: 13px 16px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--f-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.service-pilot-hero-media figcaption strong {
  color: var(--f-text-secondary);
  font-size: 13px;
  font-weight: 560;
}

.service-pilot-main {
  background: linear-gradient(180deg, var(--f-bg) 0%, #091728 44%, var(--f-bg) 100%);
}

.service-pilot-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-right: 1px solid var(--f-border);
  border-bottom: 1px solid var(--f-border);
  border-left: 1px solid var(--f-border);
}

.service-pilot-signal {
  display: grid;
  gap: 13px;
  min-width: 0;
  min-height: 130px;
  padding: 24px;
  border-right: 1px solid var(--f-border);
}

.service-pilot-signal:last-child {
  border-right: 0;
}

.service-pilot-signal span {
  color: var(--f-text-muted);
  font-size: 13px;
}

.service-pilot-signal strong {
  color: var(--pilot-accent);
  font-size: 18px;
  line-height: 1.45;
}

.service-pilot-section {
  padding: clamp(72px, 8vw, 116px) 0;
  scroll-margin-top: 92px;
}

.service-pilot-section + .service-pilot-section {
  border-top: 1px solid var(--f-border);
}

.service-pilot-section-head {
  max-width: 850px;
  margin-bottom: 36px;
}

.service-pilot-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  gap: 38px;
  max-width: none;
  align-items: end;
}

.service-pilot-section-head h2 {
	margin-top: 11px;
	color: var(--f-text);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.22;
  letter-spacing: -0.03em;
	text-wrap: balance;
}

.service-pilot-title--protected span {
	display: block;
	white-space: nowrap;
}

.service-pilot-section-head > p,
.service-pilot-section-head--split > p {
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.85;
}

.service-pilot-section-intro {
  display: grid;
  gap: 34px;
  margin: -4px 0 34px;
  padding-top: 23px;
  border-top: 1px solid var(--f-border);
}

.service-pilot-section-intro--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: start;
}

.service-pilot-section-intro > p {
  max-width: 760px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.service-pilot-note {
  padding-left: 22px;
  border-left: 2px solid var(--pilot-accent);
}

.service-pilot-note span,
.service-pilot-check-grid span,
.service-pilot-evidence-grid span,
.service-pilot-monitor-grid span,
.service-pilot-continuity-grid span {
  color: var(--pilot-accent);
  font: 600 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-pilot-note strong {
  display: block;
  margin-top: 10px;
  color: var(--f-text);
  font-size: 18px;
  line-height: 1.55;
}

.service-pilot-note p {
  margin-top: 10px;
  color: var(--f-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-pilot-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-pilot-problem-grid article {
  min-height: 188px;
  padding: 24px;
  border-top: 2px solid var(--pilot-accent);
  background: rgba(14, 31, 51, 0.72);
}

.service-pilot-problem-grid span,
.service-pilot-audit-grid span,
.service-pilot-validation-grid span {
  color: var(--pilot-accent);
  font: 600 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.service-pilot-problem-grid h3 {
  margin-top: 42px;
  color: var(--f-text);
  font-size: 20px;
  line-height: 1.45;
}

.service-pilot-topology-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 16px;
}

.service-pilot-network-map {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--f-border-strong);
  background:
    linear-gradient(rgba(91, 144, 194, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 144, 194, 0.08) 1px, transparent 1px),
    rgba(7, 20, 35, 0.82);
  background-size: 42px 42px;
}

.service-pilot-network-map::before,
.service-pilot-network-map::after {
  position: absolute;
  background: var(--pilot-accent);
  opacity: 0.38;
  content: '';
}

.service-pilot-network-map::before {
  top: 50%;
  right: 13%;
  left: 13%;
  height: 1px;
}

.service-pilot-network-map::after {
  top: 25%;
  bottom: 25%;
  left: 50%;
  width: 1px;
}

.service-pilot-network-node {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 7px;
  width: 132px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--pilot-accent);
  background: rgba(10, 28, 46, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.service-pilot-network-node span {
  color: var(--pilot-accent);
  font: 600 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.service-pilot-network-node strong {
  color: var(--f-text);
  font-size: 16px;
  line-height: 1.3;
}

.service-pilot-network-node--0 { top: 14%; left: calc(50% - 66px); }
.service-pilot-network-node--1 { top: calc(50% - 38px); left: 9%; }
.service-pilot-network-node--2 { top: calc(50% - 38px); right: 9%; }
.service-pilot-network-node--3 { bottom: 12%; left: calc(50% - 66px); }

.service-pilot-aside-card {
  padding: 28px;
  border: 1px solid var(--f-border);
  background: rgba(14, 31, 51, 0.72);
}

.service-pilot-aside-card h3 {
  margin-top: 12px;
  color: var(--f-text);
  font-size: 22px;
  line-height: 1.4;
}

.service-pilot-aside-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-pilot-aside-card li {
  position: relative;
  padding-left: 17px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.service-pilot-aside-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--pilot-accent);
  border-radius: 50%;
  content: '';
}

.service-pilot-step-track,
.service-pilot-control-list,
.service-pilot-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-pilot-step-track li,
.service-pilot-control-list li,
.service-pilot-flow li {
  display: grid;
  gap: 19px;
  min-width: 0;
  min-height: 146px;
  padding: 8px 28px;
  border-left: 1px solid var(--f-border-strong);
}

.service-pilot-step-track li:first-child,
.service-pilot-control-list li:first-child,
.service-pilot-flow li:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-pilot-step-track span,
.service-pilot-control-list span,
.service-pilot-flow span {
  color: var(--pilot-accent);
  font: 600 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.service-pilot-step-track strong,
.service-pilot-control-list strong,
.service-pilot-flow strong {
  color: var(--f-text);
  font-size: 18px;
  line-height: 1.55;
}

.service-pilot-risk-table {
  border-top: 1px solid var(--f-border-strong);
}

.service-pilot-risk-row {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 0.9fr;
  gap: 18px;
  align-items: start;
  padding: 21px 0;
  border-bottom: 1px solid var(--f-border);
}

.service-pilot-risk-row--head {
  padding-top: 0;
  color: var(--f-text-muted);
  font-size: 13px;
}

.service-pilot-risk-row strong,
.service-pilot-risk-row span {
  min-width: 0;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.service-pilot-risk-row strong {
  color: var(--f-text);
}

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

.service-pilot-audit-grid,
.service-pilot-validation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-pilot-audit-grid article,
.service-pilot-validation-grid article {
  min-height: 154px;
  padding: 22px;
  border: 1px solid var(--f-border);
  background: rgba(14, 31, 51, 0.72);
}

.service-pilot-audit-grid h3,
.service-pilot-validation-grid h3 {
  margin-top: 35px;
  color: var(--f-text);
  font-size: 18px;
  line-height: 1.5;
}

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

.service-pilot-validation-grid article,
.service-pilot-check-grid article,
.service-pilot-monitor-grid article,
.service-pilot-continuity-grid article {
  min-height: 0;
}

.service-pilot-validation-grid p,
.service-pilot-check-grid p,
.service-pilot-monitor-grid p,
.service-pilot-continuity-grid p,
.service-pilot-evidence-grid p {
  margin-top: 10px;
  color: var(--f-text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.service-pilot-check-grid,
.service-pilot-monitor-grid,
.service-pilot-continuity-grid,
.service-pilot-evidence-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

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

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

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

.service-pilot-check-grid article,
.service-pilot-monitor-grid article,
.service-pilot-continuity-grid article,
.service-pilot-evidence-grid article {
  padding: 21px 22px 23px;
  border: 1px solid var(--f-border);
  background: rgba(14, 31, 51, 0.58);
}

.service-pilot-check-grid h3,
.service-pilot-monitor-grid h3,
.service-pilot-continuity-grid h3 {
  margin-top: 21px;
  color: var(--f-text);
  font-size: 18px;
  line-height: 1.45;
}

.service-pilot-evidence-grid {
  margin-top: 16px;
}

.service-pilot-evidence-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--f-text);
  font-size: 16px;
  line-height: 1.45;
}

.service-pilot-objective-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-pilot-objective-grid article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--f-border-strong);
  background: linear-gradient(145deg, rgba(17, 36, 59, 0.96), rgba(9, 23, 39, 0.82));
}

.service-pilot-objective-grid span {
  color: var(--pilot-accent);
  font: 600 28px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.service-pilot-objective-grid h3 {
  margin-top: 32px;
  color: var(--f-text);
  font-size: 23px;
  line-height: 1.4;
}

.service-pilot-objective-grid p {
  margin-top: 12px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.service-pilot-media {
  position: relative;
  width: 100%;
  margin: 38px auto 0;
  overflow: hidden;
  border: 1px solid var(--f-border);
  background: #0b1b2b;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.service-pilot-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.04) brightness(0.88);
  background: #0b1b2b;
}

.service-pilot-media--hero img,
.service-pilot-media--wide img {
  height: auto;
}

.service-pilot-media--diagram img {
  object-fit: contain;
  padding: 0;
  filter: saturate(0.82) contrast(1.02) brightness(0.92);
  background: #0d2135;
}

.service-pilot-protection .service-pilot-media--diagram img {
  object-fit: cover;
}

.service-pilot-validation .service-pilot-media--diagram img {
  object-fit: cover;
  object-position: center 42%;
}

.service-pilot-media-section .service-pilot-media img {
  height: auto;
}

.service-pilot-media figcaption {
  display: grid;
  gap: 4px;
  padding: 13px 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--f-text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

.service-pilot-media figcaption::before {
  color: var(--pilot-accent);
  content: '现场资料';
  font-size: 11px;
  letter-spacing: 0.12em;
}

.service-pilot-media--hero {
  max-width: 980px;
}

.service-pilot-media--wide {
  max-width: 980px;
}

.service-pilot-media-section {
  border-top: 1px solid var(--f-border);
}

.service-pilot-media-section .service-pilot-media {
  max-width: 980px;
}

.service-pilot-page--recovery #pilot-operations .service-pilot-media {
  margin-left: auto;
  margin-right: auto;
}

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

.service-pilot-flow li {
  position: relative;
  min-height: 178px;
  border-top: 2px solid var(--pilot-accent);
  border-left: 1px solid var(--f-border);
  background: rgba(14, 31, 51, 0.62);
}

.service-pilot-flow li:first-child {
  border-left: 1px solid var(--f-border);
}

.service-pilot-flow li:not(:last-child)::after {
  position: absolute;
  top: 25px;
  right: 15px;
  color: var(--pilot-accent);
  content: '→';
}

.service-pilot-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-pilot-related-grid a {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--f-border);
  background: rgba(14, 31, 51, 0.72);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-pilot-related-grid a:hover,
.service-pilot-related-grid a:focus-visible {
  border-color: var(--pilot-accent);
  background: rgba(19, 41, 67, 0.9);
  transform: translateY(-2px);
}

.service-pilot-related-grid span {
  color: var(--pilot-accent);
  font-size: 13px;
}

.service-pilot-related-grid h3 {
  margin-top: 18px;
  color: var(--f-text);
  font-size: 22px;
  line-height: 1.45;
}

.service-pilot-related-grid strong {
  display: block;
  margin-top: 23px;
  color: var(--f-text-secondary);
  font-size: 14px;
}

.service-pilot-cta {
  padding: clamp(66px, 8vw, 108px) 0;
  border-top: 1px solid var(--f-border);
  background: linear-gradient(100deg, var(--pilot-accent-soft), transparent 52%), #081524;
}

.service-pilot-cta .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.service-pilot-cta h2 {
  max-width: 820px;
  margin-top: 11px;
  color: var(--f-text);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.service-pilot-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 15px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .service-pilot-hero-grid,
  .service-pilot-topology-grid,
  .service-pilot-section-head--split,
  .service-pilot-cta .container { grid-template-columns: 1fr; }
  .service-pilot-hero-side { max-width: 760px; }
  .service-pilot-control-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 0; }
  .service-pilot-control-list li:nth-child(3) { padding-left: 0; border-left: 0; }
  .service-pilot-audit-grid,
  .service-pilot-validation-grid,
  .service-pilot-check-grid,
  .service-pilot-monitor-grid,
  .service-pilot-continuity-grid,
  .service-pilot-evidence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-pilot-cta .button { justify-self: start; }
}

@media (max-width: 700px) {
  .service-pilot-signals,
  .service-pilot-problem-grid,
  .service-pilot-objective-grid,
  .service-pilot-related-grid { grid-template-columns: 1fr; }
  .service-pilot-signal { min-height: 0; border-right: 0; border-bottom: 1px solid var(--f-border); }
  .service-pilot-signal:last-child { border-bottom: 0; }
  .service-pilot-network-map { min-height: 430px; }
  .service-pilot-risk-row { grid-template-columns: 1fr; gap: 5px; }
  .service-pilot-risk-row--head { display: none; }
  .service-pilot-step-track,
  .service-pilot-control-list,
  .service-pilot-flow { grid-template-columns: 1fr; gap: 0; }
  .service-pilot-step-track li,
  .service-pilot-control-list li,
  .service-pilot-flow li,
  .service-pilot-step-track li:first-child,
  .service-pilot-control-list li:first-child,
  .service-pilot-flow li:first-child { min-height: 0; padding: 20px 0; border-top: 1px solid var(--f-border); border-left: 0; }
  .service-pilot-step-track li:first-child,
  .service-pilot-control-list li:first-child,
  .service-pilot-flow li:first-child { border-top: 0; }
  .service-pilot-flow li:not(:last-child)::after { top: auto; right: 0; bottom: 7px; transform: rotate(90deg); }
  .service-pilot-audit-grid,
  .service-pilot-validation-grid,
  .service-pilot-check-grid,
  .service-pilot-monitor-grid,
  .service-pilot-continuity-grid,
  .service-pilot-evidence-grid { grid-template-columns: 1fr; }

  .service-pilot-section-intro--split { grid-template-columns: 1fr; gap: 24px; }

  .service-pilot-media img,
  .service-pilot-media--hero img,
  .service-pilot-media--wide img { height: auto; }

  .service-pilot-media--diagram img { height: auto; }

  .service-pilot-hero-media img { height: auto; }
}

@media (max-width: 560px) {
  .service-pilot-breadcrumbs { min-height: 50px; padding: 4px 0; }
  .service-pilot-hero { padding: 50px 0 58px; }
  .service-pilot-hero h1 { font-size: clamp(38px, 12vw, 58px); }
  .service-pilot-hero-actions { display: grid; }
  .service-pilot-hero-actions .button,
  .service-pilot-cta .button { width: 100%; }
  .service-pilot-section { padding: 62px 0; }
  .service-pilot-section-head { margin-bottom: 28px; }
  .service-pilot-network-map { min-height: 390px; }
  .service-pilot-network-node { width: 112px; padding: 11px; }
  .service-pilot-network-node--0,
  .service-pilot-network-node--3 { left: calc(50% - 56px); }
  .service-pilot-objective-grid article { min-height: 0; padding: 24px; }

  .service-pilot-hero-media img { height: auto; }

  .service-pilot-media img,
  .service-pilot-media--hero img,
  .service-pilot-media--wide img { height: auto; }

  .service-pilot-media--diagram img { height: auto; padding: 0; }
}

/* Recovery pilot redesign: a control-room editorial layout with alternating
 * media, evidence rows and a continuous narrative instead of repeated cards. */
.service-pilot-page--recovery {
  --pilot-accent: #39c4bb;
  --pilot-accent-soft: rgba(57, 196, 187, 0.14);
  --recovery-panel: #0d1d2d;
  --recovery-panel-strong: #11283a;
  --recovery-line: rgba(132, 171, 196, 0.2);
}

.service-pilot-page--recovery .service-pilot-hero {
  padding: clamp(70px, 8vw, 112px) 0 clamp(64px, 7vw, 96px);
  background:
    radial-gradient(circle at 82% 16%, rgba(57, 196, 187, 0.17), transparent 28%),
    linear-gradient(135deg, #071522 0%, #0b1c2c 58%, #102a34 100%);
}

.service-pilot-page--recovery .service-pilot-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.94fr);
  gap: clamp(46px, 6vw, 96px);
}

.service-pilot-page--recovery .service-pilot-hero-copy {
  max-width: 690px;
}

.service-pilot-page--recovery .service-pilot-hero h1 {
  max-width: 680px;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 1.05;
}

.service-pilot-page--recovery .service-pilot-hero-summary {
  max-width: 650px;
  line-height: 1.88;
}

.service-pilot-page--recovery .service-pilot-hero-side {
  gap: 14px;
}

.service-pilot-page--recovery .service-pilot-hero-media {
  border-color: rgba(147, 211, 212, 0.34);
  background: #142a35;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.service-pilot-page--recovery .service-pilot-hero-media img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02) brightness(0.91);
}

.service-pilot-page--recovery .service-pilot-hero-media figcaption {
  padding: 14px 18px 16px;
  background: rgba(6, 20, 31, 0.86);
}

.recovery-hero-index {
  display: grid;
  gap: 7px;
  padding: 17px 19px 18px;
  border: 1px solid var(--recovery-line);
  border-left: 2px solid var(--pilot-accent);
  background: rgba(7, 19, 31, 0.7);
}

.recovery-hero-index span,
.recovery-logic-note span {
  color: var(--pilot-accent);
  font: 600 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.14em;
}

.recovery-hero-index strong {
  color: var(--f-text);
  font-size: 17px;
  line-height: 1.45;
}

.recovery-hero-index small {
  color: var(--f-text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-pilot-page--recovery .service-pilot-signals {
  border-color: var(--recovery-line);
  background: rgba(8, 21, 34, 0.82);
}

.service-pilot-page--recovery .service-pilot-signal {
  min-height: 112px;
  padding: 22px 25px;
  border-color: var(--recovery-line);
}

.service-pilot-page--recovery .service-pilot-signal strong {
  font-size: 17px;
}

.service-pilot-page--recovery .recovery-section {
  padding: clamp(78px, 9vw, 128px) 0;
}

.service-pilot-page--recovery .recovery-section + .recovery-section {
  border-top: 1px solid var(--recovery-line);
}

.recovery-section-lead,
.recovery-section-head--wide {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(270px, 0.62fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
}

.recovery-section-head {
  max-width: 850px;
  margin-bottom: 38px;
}

.recovery-section-head--wide {
  max-width: none;
}

/* 01 保护路径：右侧说明与下方右侧正文共用同一条左边界。 */
.service-pilot-page--recovery #pilot-protection .recovery-section-head--wide {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.86fr);
  gap: clamp(34px, 5vw, 84px);
}

/* 03 恢复环境：右侧说明与下方图片共用同一条左边界。 */
.service-pilot-page--recovery #pilot-architecture .recovery-section-head--wide {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.86fr);
  gap: clamp(34px, 5vw, 84px);
}

.recovery-section-head h2 {
  margin-top: 12px;
  color: var(--f-text);
  font-size: clamp(32px, 4.25vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.recovery-section-head > p,
.recovery-section-head--wide > p,
.recovery-lead-copy {
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.recovery-logic-note {
  padding: 21px 0 4px 23px;
  border-left: 2px solid var(--pilot-accent);
}

.recovery-logic-note strong {
  display: block;
  margin-top: 11px;
  color: var(--f-text);
  font-size: 19px;
  line-height: 1.55;
}

.recovery-logic-note p {
  margin-top: 10px;
  color: var(--f-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.recovery-objective-board {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(270px, 0.62fr);
  gap: 16px;
  margin-top: 42px;
}

.recovery-objective-values,
.recovery-objective-check {
  border: 1px solid var(--recovery-line);
  background: rgba(13, 29, 45, 0.74);
}

.recovery-objective-value {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 28px;
  gap: 20px;
  align-items: start;
  min-height: 148px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--recovery-line);
}

.recovery-objective-value:last-child {
  border-bottom: 0;
}

.recovery-objective-label,
.recovery-objective-mark {
  color: var(--pilot-accent);
  font: 600 20px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.05em;
}

.recovery-objective-mark {
  font-size: 25px;
  text-align: right;
}

.recovery-objective-value h3 {
  color: var(--f-text);
  font-size: 22px;
  line-height: 1.4;
}

.recovery-objective-value p {
  max-width: 560px;
  margin-top: 9px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.recovery-objective-check {
  padding: 27px 27px 25px;
  border-top: 2px solid var(--pilot-accent);
  background: linear-gradient(145deg, rgba(21, 51, 63, 0.88), rgba(11, 29, 44, 0.82));
}

.recovery-objective-check ol {
  display: grid;
  gap: 0;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.recovery-objective-check li {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 10px;
  padding: 17px 0;
  border-top: 1px solid var(--recovery-line);
}

.recovery-objective-check li span,
.recovery-step-list li > span,
.recovery-observation-list li > span,
.recovery-continuity-track li > span {
  color: var(--pilot-accent);
  font: 600 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.recovery-objective-check strong {
  color: var(--f-text);
  font-size: 15px;
  line-height: 1.6;
}

.recovery-split {
  display: grid;
  gap: clamp(34px, 5vw, 84px);
  align-items: start;
}

.recovery-split--path,
.recovery-split--environment {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.86fr);
}

.recovery-split--validation {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.06fr);
}

.recovery-figure {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--recovery-line);
  background: #0b1c2a;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.recovery-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.03) brightness(0.94);
}

.recovery-figure--path img {
  aspect-ratio: 1408 / 768;
  object-fit: cover;
}

.recovery-figure--validation img {
  aspect-ratio: 1.34 / 1;
  object-position: 58% center;
}

.recovery-figure--environment img,
.recovery-figure--continuity img {
  aspect-ratio: 1672 / 941;
}

.recovery-figure figcaption {
  display: grid;
  gap: 4px;
  padding: 13px 17px 16px;
  border-top: 1px solid var(--recovery-line);
  color: var(--f-text-secondary);
  font-size: 13px;
  line-height: 1.72;
}

.recovery-figure figcaption::before {
  color: var(--pilot-accent);
  content: '现场资料';
  font-size: 11px;
  letter-spacing: 0.12em;
}

.recovery-path-copy {
  padding-top: 3px;
}

.recovery-step-list,
.recovery-observation-list,
.recovery-continuity-track {
  display: grid;
  gap: 0;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.recovery-step-list li,
.recovery-observation-list li,
.recovery-continuity-track li {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr);
  gap: 15px;
  padding: 17px 0 19px;
  border-top: 1px solid var(--recovery-line);
}

.recovery-step-list strong,
.recovery-observation-list strong,
.recovery-continuity-track strong {
  display: block;
  color: var(--f-text);
  font-size: 17px;
  line-height: 1.5;
}

.recovery-step-list li > strong,
.recovery-step-list li > small {
  grid-column: 2;
}

.recovery-step-list small {
  display: block;
  margin-top: 5px;
  color: var(--f-text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.recovery-inline-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--recovery-line);
  border-bottom: 1px solid var(--recovery-line);
}

.recovery-inline-facts > div {
  min-height: 120px;
  padding: 19px 22px 21px;
  border-right: 1px solid var(--recovery-line);
}

.recovery-inline-facts > div:last-child {
  border-right: 0;
}

.recovery-inline-facts span {
  color: var(--pilot-accent);
  font-size: 14px;
  font-weight: 650;
}

.recovery-inline-facts p {
  margin-top: 8px;
  color: var(--f-text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.recovery-validation {
  background: linear-gradient(180deg, rgba(11, 29, 44, 0.52), rgba(8, 20, 33, 0.24));
}

/* 02 验证模块收紧首尾节奏，避免内容上下被大块留白割裂。 */
.service-pilot-page--recovery #pilot-validation {
  padding-top: clamp(34px, 3.2vw, 48px);
  padding-bottom: clamp(36px, 3.6vw, 52px);
}

.service-pilot-page--recovery #pilot-validation .recovery-section-head {
  margin-bottom: 26px;
}

.service-pilot-page--recovery #pilot-validation .recovery-bottom-note {
  margin-top: 20px;
  padding-top: 14px;
}

@media (max-width: 700px) {
  .service-pilot-page--recovery #pilot-validation {
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .service-pilot-page--recovery #pilot-validation .recovery-section-head {
    margin-bottom: 22px;
  }

  .service-pilot-page--recovery #pilot-validation .recovery-bottom-note {
    margin-top: 18px;
    padding-top: 13px;
  }
}

.recovery-evidence-panel {
  padding: 27px 28px 25px;
  border: 1px solid var(--recovery-line);
  border-top: 2px solid var(--pilot-accent);
  background: rgba(13, 29, 45, 0.74);
}

.recovery-evidence-list {
  display: grid;
  gap: 0;
  margin-top: 27px;
}

.recovery-evidence-list article {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 11px;
  padding: 16px 0;
  border-top: 1px solid var(--recovery-line);
}

.recovery-evidence-list article > span {
  color: var(--pilot-accent);
  font: 600 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.recovery-evidence-list strong {
  color: var(--f-text);
  font-size: 16px;
  line-height: 1.45;
}

.recovery-evidence-list p {
  margin-top: 5px;
  color: var(--f-text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.recovery-bottom-note,
.recovery-delivery-note {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 22px;
  align-items: start;
  margin-top: 35px;
  padding: 21px 0 0;
  border-top: 1px solid var(--recovery-line);
}

.recovery-bottom-note span,
.recovery-delivery-note span {
  color: var(--pilot-accent);
  font: 600 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
}

.recovery-bottom-note strong,
.recovery-delivery-note strong {
  color: var(--f-text);
  font-size: 18px;
  line-height: 1.55;
}

.recovery-bottom-note p,
.recovery-delivery-note p {
  color: var(--f-text-muted);
  font-size: 13px;
  line-height: 1.72;
}

.recovery-condition-copy {
  padding-top: 3px;
}

.recovery-condition-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.recovery-condition-list article {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid var(--recovery-line);
}

.recovery-condition-list article > span {
  color: var(--pilot-accent);
  font: 600 11px/1.45 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.recovery-condition-list h3 {
  color: var(--f-text);
  font-size: 17px;
  line-height: 1.45;
}

.recovery-condition-list p {
  margin-top: 5px;
  color: var(--f-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.recovery-operations {
  background: #0a1928;
}

.recovery-operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  grid-template-areas: 'media copy';
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.recovery-figure--operations { grid-area: media; }

.recovery-operations-copy { grid-area: copy; }

.recovery-figure--operations img {
  aspect-ratio: 1.45 / 1;
}

.recovery-operations-copy h2 {
  max-width: 650px;
  margin-top: 12px;
  color: var(--f-text);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.recovery-operations-copy .recovery-lead-copy {
  margin-top: 22px;
}

.recovery-observation-list {
  margin-top: 23px;
}

.recovery-continuity {
  padding-bottom: clamp(74px, 8vw, 112px);
}

.recovery-continuity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

/* 05 连续性准备：右侧说明与下方图片共用同一条左边界。 */
.service-pilot-page--recovery #pilot-continuity .recovery-section-head--wide {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 92px);
}

.recovery-continuity-copy {
  padding-top: 4px;
}

.recovery-continuity-track {
  margin-top: 25px;
}

.recovery-figure--continuity img {
  aspect-ratio: 1672 / 941;
}

@media (max-width: 900px) {
  .service-pilot-page--recovery .service-pilot-hero-grid,
  .recovery-section-lead,
  .recovery-section-head--wide,
  .recovery-objective-board,
  .recovery-split--path,
  .recovery-split--validation,
  .recovery-split--environment,
  .recovery-operations-layout,
  .recovery-continuity-layout { grid-template-columns: 1fr; }

  .recovery-operations-layout { grid-template-areas: 'copy' 'media'; }

  .service-pilot-page--recovery .service-pilot-hero-side { max-width: none; }
  .recovery-section-head--wide { gap: 22px; }
  .service-pilot-page--recovery #pilot-protection .recovery-section-head--wide,
  .service-pilot-page--recovery #pilot-architecture .recovery-section-head--wide,
  .service-pilot-page--recovery #pilot-continuity .recovery-section-head--wide {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .recovery-bottom-note,
  .recovery-delivery-note { grid-template-columns: 0.5fr 1fr; }
  .recovery-bottom-note p,
  .recovery-delivery-note p { grid-column: 2; }
}

@media (max-width: 700px) {
  .service-pilot-page--recovery .service-pilot-hero h1 { font-size: clamp(44px, 12vw, 68px); }
  .service-pilot-page--recovery .recovery-section { padding: 68px 0; }
  .recovery-objective-value { grid-template-columns: 58px minmax(0, 1fr) 20px; gap: 12px; padding: 22px 20px; }
  .recovery-objective-value h3 { font-size: 19px; }
  .recovery-objective-check { padding: 23px 20px; }
  .recovery-inline-facts { grid-template-columns: 1fr; }
  .recovery-inline-facts > div { min-height: 0; border-right: 0; border-bottom: 1px solid var(--recovery-line); }
  .recovery-inline-facts > div:last-child { border-bottom: 0; }
  .recovery-evidence-panel { padding: 23px 20px; }
  .recovery-condition-list article { grid-template-columns: 68px minmax(0, 1fr); }
  .recovery-bottom-note,
  .recovery-delivery-note { grid-template-columns: 1fr; gap: 10px; }
  .recovery-bottom-note p,
  .recovery-delivery-note p { grid-column: auto; }
}

@media (max-width: 560px) {
  .service-pilot-page--recovery .service-pilot-hero { padding: 54px 0 62px; }
  .service-pilot-page--recovery .service-pilot-hero-media img { aspect-ratio: 1.22 / 1; }
  .recovery-hero-index { padding: 15px 16px; }
  .recovery-section-head { margin-bottom: 28px; }
  .recovery-section-head h2,
  .recovery-operations-copy h2 { font-size: clamp(30px, 9.2vw, 43px); }
  .recovery-section-head > p,
  .recovery-section-head--wide > p,
  .recovery-lead-copy { font-size: 15px; line-height: 1.82; }
  .recovery-figure--validation img,
  .recovery-figure--operations img { aspect-ratio: 1.2 / 1; }
}

/* Data-protection category pages: same dark-tech language, different content-led
 * reading rhythm for facilities, recovery, storage, HA, virtualization and
 * colocation. Each story alternates copy and one large related visual. */
.service-dp-page {
  --dp-panel: rgba(13, 29, 45, 0.76);
  --dp-line: rgba(132, 171, 196, 0.22);
  --dp-soft: rgba(57, 196, 187, 0.13);
}

.service-dp-page--facility { --pilot-accent: #51c4cf; --pilot-accent-soft: rgba(81, 196, 207, 0.14); }
.service-dp-page--offsite { --pilot-accent: #39c4bb; --pilot-accent-soft: rgba(57, 196, 187, 0.14); }
.service-dp-page--offline { --pilot-accent: #d9b46a; --pilot-accent-soft: rgba(217, 180, 106, 0.14); }
.service-dp-page--database-ha { --pilot-accent: #77b7f3; --pilot-accent-soft: rgba(119, 183, 243, 0.14); }
.service-dp-page--vsan { --pilot-accent: #74c8d5; --pilot-accent-soft: rgba(116, 200, 213, 0.14); }
.service-dp-page--colocation { --pilot-accent: #8bd2bb; --pilot-accent-soft: rgba(139, 210, 187, 0.14); }

.service-dp-page .service-pilot-hero-copy { max-width: 760px; }
.service-dp-page .service-pilot-hero h1 {
  max-width: 760px;
  font-size: clamp(43px, 5.6vw, 76px);
  line-height: 1.08;
}

.service-dp-page .service-pilot-hero-summary { max-width: 720px; }
.service-dp-page .service-pilot-hero-media img { aspect-ratio: 16 / 9; object-fit: cover; }
.service-dp-page .service-pilot-signals { background: rgba(8, 21, 34, 0.84); }

.service-dp-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.7fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  padding: clamp(58px, 7vw, 94px) 0 clamp(42px, 5vw, 70px);
}

.service-dp-intro h2 {
  max-width: 760px;
  margin-top: 12px;
  color: var(--f-text);
  font-size: clamp(29px, 3.7vw, 50px);
  line-height: 1.25;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.service-dp-intro > p {
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.data-protection-section {
  padding: clamp(72px, 8vw, 116px) 0;
  border-top: 1px solid var(--dp-line);
  scroll-margin-top: 92px;
}

.data-protection-section .recovery-section-head--wide {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.68fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  margin-bottom: 40px;
}

.data-protection-section .recovery-section-head h2 {
  max-width: 760px;
  font-size: clamp(31px, 4.1vw, 56px);
  line-height: 1.2;
}

.data-protection-section .recovery-section-head--wide > p {
  max-width: 510px;
}

.data-protection-story {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.data-protection-story--media-right { grid-template-columns: minmax(0, 1.07fr) minmax(0, 0.93fr); }
.data-protection-story--media-right .data-protection-figure { order: 1; }
.data-protection-story--media-right .data-protection-story-copy { order: 2; }

.data-protection-story-copy {
  min-width: 0;
  padding-top: 3px;
}

.data-protection-story-copy .recovery-lead-copy {
  max-width: 680px;
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.9;
}

.data-protection-item-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--dp-line);
}

.data-protection-item-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--dp-line);
}

.data-protection-item-list li > span {
  color: var(--pilot-accent);
  font: 600 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.data-protection-item-list strong {
  display: block;
  color: var(--f-text);
  font-size: 18px;
  line-height: 1.45;
}

.data-protection-item-list p {
  margin-top: 7px;
  color: var(--f-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.data-protection-figure {
  align-self: start;
  margin: 0;
  border-color: var(--dp-line);
  background: #0b1c2a;
}

.data-protection-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03) brightness(0.94);
}

.data-protection-figure figcaption {
  display: grid;
  gap: 5px;
  padding: 14px 17px 17px;
  border-top: 1px solid var(--dp-line);
  color: var(--f-text-secondary);
  font-size: 13px;
  line-height: 1.72;
}

.data-protection-figure figcaption::before { content: none; }
.data-protection-caption-label {
  color: var(--pilot-accent);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-protection-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid var(--dp-line);
  border-bottom: 1px solid var(--dp-line);
}

.data-protection-facts span {
  min-width: 0;
  padding: 18px 20px 20px;
  border-right: 1px solid var(--dp-line);
  color: var(--pilot-accent);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.data-protection-facts span:last-child { border-right: 0; }

.service-dp-page .service-pilot-related { border-top: 1px solid var(--dp-line); }

@media (max-width: 900px) {
  .service-dp-intro,
  .data-protection-section .recovery-section-head--wide,
  .data-protection-story,
  .data-protection-story--media-right { grid-template-columns: 1fr; }

  .data-protection-story--media-right .data-protection-figure,
  .data-protection-story--media-right .data-protection-story-copy { order: initial; }
  .data-protection-section .recovery-section-head--wide { gap: 22px; }
  .data-protection-figure { max-width: 820px; }
}

@media (max-width: 700px) {
  .data-protection-facts { grid-template-columns: 1fr; }
  .data-protection-facts span { border-right: 0; border-bottom: 1px solid var(--dp-line); }
  .data-protection-facts span:last-child { border-bottom: 0; }
  .data-protection-section { padding: 68px 0; }
  .data-protection-story-copy .recovery-lead-copy { font-size: 15px; line-height: 1.82; }
  .data-protection-item-list p { font-size: 15px; }
}

@media (max-width: 560px) {
  .service-dp-page .service-pilot-hero h1 { font-size: clamp(39px, 11vw, 60px); }
  .service-dp-intro { padding: 50px 0 42px; }
  .service-dp-intro h2 { font-size: clamp(28px, 8.5vw, 40px); }
  .data-protection-section .recovery-section-head h2 { font-size: clamp(30px, 9vw, 43px); }
  .data-protection-item-list li { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; }
  .data-protection-item-list strong { font-size: 17px; }
  .data-protection-figure img { aspect-ratio: 1.2 / 1; }
}

/* English media fallback uses the paired Chinese record's existing uploads. */
.solution-english-media {
  width: 100%;
  max-width: 1120px;
  margin: 72px auto 0;
  padding-top: 58px;
  border-top: 1px solid var(--f-border);
}

.solution-english-media-heading h2,
.solution-english-media-group h3 {
  color: var(--f-text);
  line-height: 1.35;
}

.solution-english-media-heading h2 {
  margin-top: 10px;
  font-size: 32px;
}

.solution-english-media-group {
  margin-top: 52px;
}

.solution-english-media-group h3 {
  margin-bottom: 22px;
  font-size: 24px;
}

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

.solution-english-media-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--f-border);
  background: var(--f-card);
}

.solution-english-media-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.solution-english-media-group--intro .solution-english-media-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-english-media-group--brand .solution-english-media-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.solution-english-media-group--brand figure {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 12px;
  background: #fff;
}

.solution-english-media-group--brand img {
  max-height: 64px;
}

.solution-english-media-group--activity .solution-english-media-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-english-media-group--activity figure {
  overflow: visible;
  border: 0;
  background: transparent;
}

.solution-english-media-group--activity img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.solution-english-media-grid--architecture,
.solution-english-media-grid--storage-architecture,
.solution-english-media-grid--network-architecture,
.solution-english-media-grid--operations {
  grid-template-columns: 1fr;
}

.solution-english-media--layout-architecture,
.solution-english-media--layout-storage-architecture,
.solution-english-media--layout-network-architecture,
.solution-english-media--layout-operations {
  max-width: 900px;
}

@media (max-width: 900px) {
  .solution-english-media-group--brand .solution-english-media-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .solution-english-media { margin-top: 48px; padding-top: 42px; }
  .solution-english-media-heading h2 { font-size: 28px; }
  .solution-english-media-group { margin-top: 38px; }
  .solution-english-media-group h3 { font-size: 21px; }
  .solution-english-media-grid,
  .solution-english-media-group--intro .solution-english-media-grid,
  .solution-english-media-grid--architecture,
  .solution-english-media-grid--storage-architecture,
  .solution-english-media-grid--network-architecture,
  .solution-english-media-grid--operations { grid-template-columns: 1fr; }
  .solution-english-media-group--brand .solution-english-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-english-media-group--activity .solution-english-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Scoped redesign for the post-task Project Cases and About pages. */
.yuqi-reference-cases-page,
.yuqi-about-page {
  color: #f5f7fa;
  background: #06101d;
}

.yuqi-reference-cases-page *,
.yuqi-about-page * {
  box-sizing: border-box;
}

.yuqi-reference-cases-page__container,
.yuqi-about-page__container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.yuqi-reference-cases-page__hero,
.yuqi-about-page__hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(6, 16, 29, 0.98) 0%, rgba(6, 16, 29, 0.92) 48%, rgba(6, 16, 29, 0.72) 100%),
    radial-gradient(circle at 82% 24%, rgba(47, 124, 246, 0.13), transparent 34%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.yuqi-reference-cases-page__hero {
  padding: 112px 24px 88px;
}

.yuqi-reference-cases-page__hero-inner,
.yuqi-about-page__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 72px;
  align-items: center;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.yuqi-reference-cases-page__hero-copy,
.yuqi-about-page__hero-copy {
  max-width: 720px;
}

.yuqi-reference-cases-page__eyebrow,
.yuqi-about-page__eyebrow {
  margin: 0 0 16px;
  color: #38c7d9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.yuqi-reference-cases-page h1,
.yuqi-about-page h1 {
  max-width: 700px;
  margin: 0;
  color: #f5f7fa;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.yuqi-reference-cases-page__hero-intro,
.yuqi-about-page__hero-intro {
  max-width: 700px;
  margin: 28px 0 0;
  color: #b7c2d0;
  font-size: 18px;
  line-height: 1.85;
}

.yuqi-reference-cases-page__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  color: #7e8b9b;
  font-size: 14px;
}

.yuqi-reference-cases-page__breadcrumbs a {
  color: #c6d0dc;
  text-decoration: none;
}

.yuqi-reference-cases-page__breadcrumbs a:hover,
.yuqi-reference-cases-page__breadcrumbs a:focus-visible {
  color: #f5f7fa;
}

.yuqi-reference-cases-page__hero-panel {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(47, 124, 246, 0.18), rgba(8, 21, 34, 0.86)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 46px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.yuqi-reference-cases-page__hero-panel-line {
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: auto;
  background: #2f7cf6;
}

.yuqi-reference-cases-page__hero-panel strong,
.yuqi-reference-cases-page__hero-panel small {
  display: block;
}

.yuqi-reference-cases-page__hero-panel strong {
  color: #f5f7fa;
  font-size: 22px;
  line-height: 1.35;
}

.yuqi-reference-cases-page__hero-panel small {
  margin-top: 8px;
  color: #aab6c5;
  font-size: 15px;
  line-height: 1.6;
}

.yuqi-reference-cases-page__content,
.yuqi-about-page__section {
  padding: 92px 0;
  background: #06101d;
}

.yuqi-reference-cases-page__section-heading,
.yuqi-about-page__section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.yuqi-reference-cases-page__section-heading h2,
.yuqi-about-page__section-heading h2,
.yuqi-about-page__cta h2 {
  max-width: 760px;
  margin: 0;
  color: #f5f7fa;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.yuqi-reference-cases-page__section-heading p:last-child,
.yuqi-about-page__section-heading > p {
  max-width: 430px;
  margin: 0;
  color: #aab6c5;
  font-size: 16px;
  line-height: 1.75;
}

.yuqi-reference-cases-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.yuqi-reference-cases-page__filters a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 15px;
  color: #aab6c5;
  background: #0b1727;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.yuqi-reference-cases-page__filters a:hover,
.yuqi-reference-cases-page__filters a:focus-visible,
.yuqi-reference-cases-page__filters a.is-active {
  color: #f5f7fa;
  background: #102543;
  border-color: rgba(47, 124, 246, 0.75);
}

.yuqi-reference-cases-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.yuqi-reference-case-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #0f1f32;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.yuqi-reference-case-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b1727;
}

.yuqi-reference-case-card__image-wrap img,
.yuqi-reference-case-card__image-fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.yuqi-reference-case-card__image-wrap img {
  object-fit: cover;
}

.yuqi-reference-case-card__image-fallback {
  display: grid;
  place-items: center;
  color: #7e8b9b;
  background:
    linear-gradient(135deg, rgba(47, 124, 246, 0.12), transparent),
    #0b1727;
  font-size: 14px;
}

.yuqi-reference-case-card__body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

.yuqi-reference-case-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  color: #38c7d9;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.yuqi-reference-case-card h3 {
  margin: 13px 0 0;
  color: #f5f7fa;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.35;
}

.yuqi-reference-case-card__summary {
  margin: 14px 0 0;
  color: #b7c2d0;
  font-size: 16px;
  line-height: 1.75;
}

.yuqi-reference-case-card__details {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yuqi-reference-case-card__details summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #dce7f2;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
  list-style: none;
}

.yuqi-reference-case-card__details summary::-webkit-details-marker {
  display: none;
}

.yuqi-reference-case-card__details summary::after {
  color: #38c7d9;
  content: '+';
  font-size: 22px;
  font-weight: 400;
}

.yuqi-reference-case-card__details[open] summary::after {
  content: '−';
}

.yuqi-reference-case-card__details-content {
  padding: 4px 0 4px;
}

.yuqi-reference-case-card__details-content dl,
.yuqi-reference-case-card__details-content dd {
  margin: 0;
}

.yuqi-reference-case-card__details-content dl {
  display: grid;
  gap: 14px;
}

.yuqi-reference-case-card__details-content dl > div {
  display: grid;
  gap: 5px;
}

.yuqi-reference-case-card__details-content dt,
.yuqi-reference-case-card__detail-columns h4 {
  color: #7edee7;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.yuqi-reference-case-card__details-content dd,
.yuqi-reference-case-card__detail-columns li {
  color: #c4cfdb;
  font-size: 15px;
  line-height: 1.65;
}

.yuqi-reference-case-card__detail-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.yuqi-reference-case-card__detail-columns h4 {
  margin: 0 0 8px;
}

.yuqi-reference-case-card__detail-columns ul,
.yuqi-reference-case-card__detail-columns ol {
  margin: 0;
  padding-left: 20px;
}

.yuqi-reference-case-card__detail-columns li + li {
  margin-top: 5px;
}

.yuqi-reference-case-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: auto;
  padding-top: 24px;
}

.yuqi-reference-case-card__link {
  color: #8fc0ff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  text-decoration: none;
}

.yuqi-reference-case-card__link:hover,
.yuqi-reference-case-card__link:focus-visible {
  color: #f5f7fa;
}

.yuqi-reference-case-card__link--secondary {
  color: #aab6c5;
}

.yuqi-reference-cases-page__empty {
  margin: 0;
  padding: 48px;
  color: #aab6c5;
  background: #0b1727;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.yuqi-reference-cases-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  color: #7e8b9b;
  font-size: 14px;
}

.yuqi-reference-cases-page__pagination > div {
  display: flex;
  gap: 8px;
}

.yuqi-reference-cases-page__pagination a {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #c4cfdb;
  background: #0b1727;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  text-decoration: none;
}

.yuqi-reference-cases-page__pagination a:hover,
.yuqi-reference-cases-page__pagination a:focus-visible,
.yuqi-reference-cases-page__pagination a.is-active {
  color: #fff;
  background: #2f7cf6;
  border-color: #2f7cf6;
}

.yuqi-reference-cases-page__cta,
.yuqi-about-page__cta {
  padding: 76px 24px;
  background: #0a1727;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.yuqi-reference-cases-page__cta .yuqi-reference-cases-page__container,
.yuqi-about-page__cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.yuqi-reference-cases-page__cta h2 {
  max-width: 700px;
  margin: 0;
  color: #f5f7fa;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
}

.yuqi-reference-cases-page__cta-actions,
.yuqi-about-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.yuqi-reference-cases-page__button,
.yuqi-about-page__button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.yuqi-reference-cases-page__button--primary,
.yuqi-about-page__button--primary {
  color: #fff;
  background: #2f7cf6;
}

.yuqi-reference-cases-page__button--primary:hover,
.yuqi-reference-cases-page__button--primary:focus-visible,
.yuqi-about-page__button--primary:hover,
.yuqi-about-page__button--primary:focus-visible {
  background: #2468d2;
}

.yuqi-reference-cases-page__button--secondary,
.yuqi-about-page__button--secondary {
  color: #dce7f2;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.yuqi-reference-cases-page__button--secondary:hover,
.yuqi-reference-cases-page__button--secondary:focus-visible,
.yuqi-about-page__button--secondary:hover,
.yuqi-about-page__button--secondary:focus-visible {
  color: #fff;
  border-color: #2f7cf6;
}

.yuqi-about-page__hero {
  padding: 84px 24px 92px;
}

.yuqi-about-page__hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 72px;
}

.yuqi-about-page__hero-copy {
  max-width: 620px;
}

.yuqi-about-page__hero-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b1727;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.yuqi-about-page__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yuqi-about-page__hero-intro {
  font-size: 17px;
}

.yuqi-about-page__hero-copy .yuqi-about-page__button {
  margin-top: 28px;
}

.yuqi-about-page__overview {
  background: #0a1727;
}

.yuqi-about-page__overview .yuqi-about-page__container {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 88px;
  align-items: start;
}

.yuqi-about-page__section-heading {
  margin-bottom: 40px;
}

.yuqi-about-page__overview .yuqi-about-page__section-heading {
  display: block;
  margin-bottom: 0;
}

.yuqi-about-page__prose {
  max-width: 760px;
}

.yuqi-about-page__prose p {
  margin: 0;
  color: #c4cfdb;
  font-size: 17px;
  line-height: 1.85;
}

.yuqi-about-page__prose p + p {
  margin-top: 20px;
}

.yuqi-about-page__section-heading--split {
  align-items: flex-end;
}

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

.yuqi-about-page__capability {
  position: relative;
  min-height: 190px;
  padding: 24px 24px 28px;
  background: #0f1f32;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.yuqi-about-page__capability:hover,
.yuqi-about-page__capability:focus-visible {
  background: #12253d;
  border-color: rgba(47, 124, 246, 0.7);
  transform: translateY(-2px);
}

.yuqi-about-page__capability > span,
.yuqi-about-page__process-grid li > span {
  color: #38c7d9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.yuqi-about-page__capability h3,
.yuqi-about-page__process-grid h3,
.yuqi-about-page__reason-grid h3 {
  margin: 14px 0 0;
  color: #f5f7fa;
  font-size: 21px;
  line-height: 1.4;
}

.yuqi-about-page__capability p,
.yuqi-about-page__process-grid p,
.yuqi-about-page__reason-grid p {
  margin: 10px 0 0;
  color: #aab6c5;
  font-size: 16px;
  line-height: 1.7;
}

.yuqi-about-page__capability strong {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: #8fc0ff;
  font-size: 20px;
  font-weight: 400;
}

.yuqi-about-page__process {
  background: #0a1727;
}

.yuqi-about-page__process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yuqi-about-page__process-grid li {
  position: relative;
  min-height: 182px;
  padding: 0 22px 0 0;
}

.yuqi-about-page__process-grid li + li {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.yuqi-about-page__process-grid li::after {
  position: absolute;
  top: 8px;
  right: -4px;
  width: 7px;
  height: 7px;
  background: #2f7cf6;
  border-radius: 50%;
  content: '';
}

.yuqi-about-page__process-grid li:last-child::after {
  right: auto;
  left: 18px;
}

.yuqi-about-page__reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.yuqi-about-page__reason-grid article {
  padding: 24px;
  background: #0f1f32;
  border-top: 2px solid #2f7cf6;
}

.yuqi-about-page__fields {
  background: #06101d;
}

.yuqi-about-page__fields-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
  align-items: start;
}

.yuqi-about-page__fields-grid > div {
  max-width: 430px;
}

.yuqi-about-page__fields-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yuqi-about-page__fields-grid li {
  padding: 12px 16px;
  color: #c4cfdb;
  background: #0f1f32;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  font-size: 16px;
  line-height: 1.5;
}

.yuqi-about-page__ecosystem {
  background: #0a1727;
}

.yuqi-about-page__ecosystem-carousel { min-width: 0; outline: 0; }
.yuqi-about-page__ecosystem-viewport { overflow: hidden; }
.yuqi-about-page__ecosystem-track { display: flex; margin: 0 -9px; transition: transform 320ms ease; will-change: transform; }
.yuqi-about-page__ecosystem-slide { min-width: 0; flex: 0 0 25%; padding: 0 9px; }

.yuqi-about-page__ecosystem-item {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  background: #f5f7fa;
  border-radius: 4px;
}

.yuqi-about-page__ecosystem-item img {
  display: block;
  width: min(100%, 180px);
  height: 76px;
  object-fit: contain;
}

.yuqi-about-page__ecosystem-item span {
  color: #17263a;
  font-size: 14px;
  font-weight: 700;
}

.yuqi-about-page__ecosystem-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.yuqi-about-page__ecosystem-controls > button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  background: #0f1f32;
  color: #f5f7fa;
  cursor: pointer;
}

.yuqi-about-page__ecosystem-controls > button:disabled { opacity: .36; cursor: default; }
.yuqi-about-page__ecosystem-controls > button:focus-visible,
.yuqi-about-page__ecosystem-carousel:focus-visible { outline: 2px solid #8fc0ff; outline-offset: 3px; }
.yuqi-about-page__ecosystem-dots { display: flex; align-items: center; gap: 8px; }
.yuqi-about-page__ecosystem-dots button { width: 8px; height: 8px; min-height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.24); cursor: pointer; }
.yuqi-about-page__ecosystem-dots button.is-active { background: #35c3d4; transform: scale(1.2); }

.yuqi-about-page__cta {
  padding: 88px 24px;
  background: #06101d;
}

.yuqi-about-page__cta-grid {
  align-items: stretch;
}

.yuqi-about-page__cta-copy {
  max-width: 650px;
}

.yuqi-about-page__cta-copy > p:not(.yuqi-about-page__eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: #aab6c5;
  font-size: 17px;
  line-height: 1.8;
}

.yuqi-about-page__contact-card {
  display: grid;
  min-width: 310px;
  gap: 10px;
  align-content: start;
  padding: 26px;
  background: #0f1f32;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.yuqi-about-page__contact-card > a {
  color: #f5f7fa;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
  text-decoration: none;
}

.yuqi-about-page__contact-card > a:hover,
.yuqi-about-page__contact-card > a:focus-visible {
  color: #8fc0ff;
}

.yuqi-about-page__contact-card > p {
  margin: 0;
  color: #aab6c5;
  font-size: 15px;
  line-height: 1.65;
}

.yuqi-about-page__qr-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yuqi-about-page__qr-card img {
  display: block;
  width: 150px;
  height: 150px;
  padding: 8px;
  object-fit: contain;
  background: #fff;
  border-radius: 2px;
}

.yuqi-about-page__qr-card strong,
.yuqi-about-page__qr-card span {
  display: block;
}

.yuqi-about-page__qr-card strong {
  color: #f5f7fa;
  font-size: 15px;
  line-height: 1.5;
}

.yuqi-about-page__qr-card span,
.yuqi-about-page__qr-missing {
  color: #aab6c5;
  font-size: 13px;
  line-height: 1.6;
}

.yuqi-about-page__qr-missing {
  margin-top: 6px !important;
}

@media (max-width: 1080px) {
  .yuqi-reference-cases-page__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .yuqi-about-page__hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr); gap: 44px; }
  .yuqi-about-page__capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .yuqi-about-page__process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 0; }
  .yuqi-about-page__process-grid li:nth-child(4) { padding-left: 0; border-left: 0; }
  .yuqi-about-page__process-grid li:nth-child(4)::after { left: auto; right: -4px; }
  .yuqi-about-page__process-grid li:nth-child(5) { padding-left: 22px; }
  .yuqi-about-page__process-grid li:nth-child(5)::after { left: 18px; right: auto; }
}

@media (max-width: 768px) {
  .yuqi-reference-cases-page__container,
  .yuqi-about-page__container { width: min(100% - 36px, 680px); }
  .yuqi-reference-cases-page__hero,
  .yuqi-about-page__hero { padding: 72px 18px 64px; }
  .yuqi-reference-cases-page__hero-inner,
  .yuqi-about-page__hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .yuqi-reference-cases-page h1,
  .yuqi-about-page h1 { font-size: clamp(36px, 9vw, 44px); }
  .yuqi-reference-cases-page__hero-intro,
  .yuqi-about-page__hero-intro { font-size: 16px; line-height: 1.75; }
  .yuqi-reference-cases-page__hero-panel { min-height: 160px; }
  .yuqi-reference-cases-page__content,
  .yuqi-about-page__section { padding: 64px 0; }
  .yuqi-reference-cases-page__section-heading,
  .yuqi-about-page__section-heading,
  .yuqi-reference-cases-page__cta .yuqi-reference-cases-page__container,
  .yuqi-about-page__cta-grid { display: block; }
  .yuqi-reference-cases-page__section-heading h2,
  .yuqi-about-page__section-heading h2,
  .yuqi-reference-cases-page__cta h2,
  .yuqi-about-page__cta h2 { font-size: 30px; }
  .yuqi-reference-cases-page__section-heading p:last-child,
  .yuqi-about-page__section-heading > p { margin-top: 16px; }
  .yuqi-reference-cases-page__grid { grid-template-columns: 1fr; }
  .yuqi-reference-cases-page__pagination { flex-wrap: wrap; }
  .yuqi-reference-cases-page__cta-actions,
  .yuqi-about-page__cta-actions { margin-top: 28px; }
  .yuqi-about-page__hero-media { order: -1; }
  .yuqi-about-page__overview .yuqi-about-page__container,
  .yuqi-about-page__fields-grid { grid-template-columns: 1fr; gap: 32px; }
  .yuqi-about-page__overview .yuqi-about-page__section-heading { margin-bottom: 0; }
  .yuqi-about-page__capability-grid,
  .yuqi-about-page__reason-grid { grid-template-columns: 1fr; }
  .yuqi-about-page__capability { min-height: 0; }
  .yuqi-about-page__process-grid { grid-template-columns: 1fr; gap: 0; }
  .yuqi-about-page__process-grid li,
  .yuqi-about-page__process-grid li + li,
  .yuqi-about-page__process-grid li:nth-child(4),
  .yuqi-about-page__process-grid li:nth-child(5) { min-height: 0; padding: 0 0 28px 32px; border-left: 1px solid rgba(255, 255, 255, 0.12); }
  .yuqi-about-page__process-grid li::after,
  .yuqi-about-page__process-grid li:nth-child(4)::after,
  .yuqi-about-page__process-grid li:nth-child(5)::after,
  .yuqi-about-page__process-grid li:last-child::after { top: 8px; right: auto; left: -4px; }
  .yuqi-about-page__ecosystem-slide { flex-basis: 50%; }
  .yuqi-about-page__cta { padding: 64px 18px; }
  .yuqi-about-page__contact-card { min-width: 0; margin-top: 34px; }
}

@media (max-width: 480px) {
  .yuqi-reference-cases-page__filters a { flex: 1 1 calc(50% - 10px); justify-content: center; text-align: center; }
  .yuqi-reference-case-card__body { padding: 20px; }
  .yuqi-reference-case-card h3 { font-size: 20px; }
  .yuqi-reference-cases-page__pagination { gap: 10px; }
  .yuqi-reference-cases-page__pagination > span { flex-basis: 100%; text-align: center; }
  .yuqi-about-page__ecosystem-track { margin: 0 -6px; }
  .yuqi-about-page__ecosystem-slide { flex-basis: 100%; padding: 0 6px; }
  .yuqi-about-page__ecosystem-item { min-height: 126px; padding: 14px; }
  .yuqi-about-page__ecosystem-item img { height: 60px; }
  .yuqi-about-page__qr-card { grid-template-columns: 150px minmax(0, 1fr); }
  .yuqi-about-page__qr-card img { width: 150px; height: 150px; }
}

/* Scoped visual-layout fixes: homepage article media, adaptive editorial grids,
 * compact related-solution cards, and article reading-flow alignment. */
.article-card {
  min-height: 0;
  padding: 0;
  align-items: stretch;
}

.article-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  background: #091421;
}

.article-card-media .article-card-image,
.article-card-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.article-card-media--cover img { object-fit: cover; }
.article-card-media--contain { background: #eef2f6; }
.article-card-media--contain img { padding: 12px; object-fit: contain; }

.article-card-body {
  display: flex;
  width: 100%;
  min-height: 230px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 24px 24px;
}

.article-card-body h3 { margin-top: 18px; }

.content-card-media--contain { background: #eef2f6; }
.content-card-media--contain img { padding: 12px; object-fit: contain; }

.v3-solution-content-wrap { padding-top: 48px; }
.v3-solution-back {
  position: absolute;
  top: 48px;
  left: 0;
  z-index: 1;
  margin: 0;
}
.v3-editorial-module:first-child { padding-top: 0; }

.v3-editorial-cards--count-1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: 620px;
}
.v3-editorial-cards--count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v3-editorial-cards--count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v3-editorial-cards--count-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v3-editorial-cards--count-5 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.v3-editorial-cards--count-5 > :nth-child(-n + 3) { grid-column: span 2; }
.v3-editorial-cards--count-5 > :nth-child(4) { grid-column: 2 / span 2; }
.v3-editorial-cards--count-5 > :nth-child(5) { grid-column: 4 / span 2; }
.v3-editorial-module--matrix .v3-editorial-cards--count-1 { grid-template-columns: minmax(0, 1fr); }
.v3-editorial-module--matrix .v3-editorial-cards--count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v3-editorial-module--matrix .v3-editorial-cards--count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v3-editorial-module--matrix .v3-editorial-cards--count-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v3-editorial-module--matrix .v3-editorial-cards--count-5 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.v3-editorial-media.v3-editorial-media--count-1 {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}
.v3-editorial-media.v3-editorial-media--count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v3-editorial-media.v3-editorial-media--count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v3-editorial-media.v3-editorial-media--count-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v3-editorial-split-media { min-width: 0; display: flex; align-items: center; }
.v3-editorial-split-copy { min-width: 0; }
.v3-editorial-split-media { align-self: start; }

/* A split module with no media is a full-width text section. Do not leave a
 * phantom second grid column when the source intentionally has no image. */
.v3-editorial-split--no-media {
  grid-template-columns: minmax(0, 1fr);
}
.v3-editorial-split--no-media .v3-editorial-stack--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.v3-solution-context-links {
  max-width: 820px;
  margin: 30px auto 0;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.8;
}
.v3-solution-context-links a {
  color: var(--f-text-primary);
  text-decoration: underline;
  text-decoration-color: rgba(125, 211, 252, .55);
  text-underline-offset: 3px;
}

/* Long second-module lists read as one information block. Keep the actual
 * media above the cards instead of leaving a tall, empty side column. */
.v3-editorial-split.is-media-stacked {
  display: block;
}
.v3-editorial-split.is-media-stacked .v3-editorial-split-media {
  display: block;
  width: 100%;
  margin: 0 0 28px;
}
.v3-editorial-split.is-media-stacked .v3-editorial-split-copy {
  width: 100%;
}
.v3-editorial-split.is-media-stacked .v3-editorial-stack {
  margin-top: 0;
}
.v3-editorial-split.is-media-stacked .v3-editorial-stack--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.v3-editorial-split.is-media-stacked .v3-editorial-stack--count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.v3-editorial-split.is-media-stacked .v3-editorial-stack--count-5,
.v3-editorial-split.is-media-stacked .v3-editorial-stack--count-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v3-solution-card--text-only .solution-card-body {
  min-height: 0;
  padding: 20px 22px 22px;
}
.v3-solution-card--text-only .solution-card-body h2 { margin-top: 9px; }
.v3-solution-card--text-only .solution-card-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.solution-grid-related .v3-solution-card--text-only { min-height: 0; }

.v3-article-related .v3-post-card--text-only .content-card-media { display: none; }
.v3-article-related .v3-post-card--text-only .content-card-body {
  min-height: 0;
  height: auto;
  padding: 22px 24px 24px;
}
.v3-article-related .v3-post-card--text-only h2,
.v3-article-related .v3-post-card--text-only p {
  display: block;
  min-height: 0;
  max-height: none;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.v3-article-stage { display: block; }
.v3-article-back {
  position: absolute;
  top: 0;
  left: calc(50% - 410px - 72px);
  z-index: 1;
  margin: 0;
}
.v3-article-content > :first-child { margin-top: 0; }
.v3-article-content h2:first-child,
.v3-article-content h3:first-child,
.v3-article-content h4:first-child { margin-top: 0; }
.v3-article-content img { max-height: none; }

/* Detail-page copy and technical figures are complete content, not list-card
 * excerpts. Keep them visible and let the image's intrinsic dimensions drive
 * its height so diagrams are never cropped or stretched. */
.inner-hero-intro,
.v3-solution-hero-summary,
.v3-article-summary,
.v3-article-content,
.v3-article-content p,
.v3-article-content li,
.v3-article-content h2,
.v3-article-content h3,
.v3-article-content h4 {
  max-height: none;
  overflow: visible;
  text-overflow: clip;
}
.v3-article-content img {
  object-fit: contain;
}
.v3-article-content figure > a {
  display: block;
}
.v3-article-content figure,
.v3-article-content figure > a {
  max-width: 100%;
}

.v3-vsan-article { color: var(--f-text-secondary); }
.v3-vsan-intro { margin: 0; color: var(--f-text); font-size: 19px; line-height: 1.9; }
.v3-vsan-context-links { margin-top: 18px; font-size: 15px; line-height: 1.8; }
.v3-vsan-context-links a { color: var(--f-blue-soft); text-decoration: underline; text-underline-offset: 3px; }
.v3-vsan-section,
.v3-vsan-faq { margin-top: 56px; padding-top: 44px; border-top: 1px solid var(--f-border); }
.v3-vsan-section h2,
.v3-vsan-faq h2 { margin: 0; color: var(--f-text); font-size: clamp(26px, 3vw, 34px); line-height: 1.35; }
.v3-vsan-section > p { margin-top: 16px; line-height: 1.9; }
.v3-vsan-figure-note { margin-top: 30px; color: var(--f-text); font-size: 15px; font-weight: 650; line-height: 1.7; }
.v3-vsan-figure { margin: 14px 0 0; padding: 18px; border: 1px solid var(--f-border); background: #eef2f6; }
.v3-vsan-figure > a { display: block; }
.v3-vsan-image { display: block; width: auto; max-width: 100%; height: auto; margin: 0 auto; object-fit: contain; }
.v3-vsan-figure figcaption { margin-top: 12px; color: #334155; font-size: 13px; line-height: 1.6; text-align: center; }
.v3-vsan-figure-explanation { margin-top: 14px; font-size: 15px; line-height: 1.8; }
.v3-vsan-check-table { max-width: 100%; margin-top: 28px; overflow-x: auto; }
.v3-vsan-check-table table { width: 100%; min-width: 560px; border-collapse: collapse; }
.v3-vsan-check-table th,
.v3-vsan-check-table td { padding: 12px 14px; border: 1px solid var(--f-border); text-align: left; vertical-align: top; }
.v3-vsan-check-table th { color: var(--f-text); font-weight: 650; }
.v3-vsan-faq-list { margin-top: 24px; }
.v3-vsan-faq-list details { padding: 17px 0; border-top: 1px solid var(--f-border); }
.v3-vsan-faq-list details:last-child { border-bottom: 1px solid var(--f-border); }
.v3-vsan-faq-list summary { cursor: pointer; color: var(--f-text); font-weight: 650; }
.v3-vsan-faq-list details p { margin-top: 10px; line-height: 1.8; }

@media (max-width: 1080px) {
  .v3-article-back { left: 0; }
  .v3-solution-back { left: 20px; }
}

@media (max-width: 1024px) {
  .v3-editorial-cards--count-3,
  .v3-editorial-module--matrix .v3-editorial-cards--count-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v3-editorial-cards--count-5 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .v3-editorial-module--matrix .v3-editorial-cards--count-5 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .v3-editorial-cards--count-5 > :nth-child(-n + 3),
  .v3-editorial-cards--count-5 > :nth-child(4),
  .v3-editorial-cards--count-5 > :nth-child(5) { grid-column: auto; }
  .v3-editorial-media.v3-editorial-media--count-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v3-editorial-split.is-media-stacked .v3-editorial-stack--count-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v3-editorial-split.is-media-stacked .v3-editorial-stack--count-5,
  .v3-editorial-split.is-media-stacked .v3-editorial-stack--count-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .article-card-body { min-height: 0; padding: 20px; }
  .v3-solution-content-wrap { padding-top: 30px; }
  .v3-solution-back {
    position: static;
    margin-bottom: 20px;
  }
  .v3-editorial-cards--count-1,
  .v3-editorial-cards--count-2,
  .v3-editorial-cards--count-3,
  .v3-editorial-cards--count-4,
  .v3-editorial-cards--count-5,
  .v3-editorial-module--matrix .v3-editorial-cards--count-1,
  .v3-editorial-module--matrix .v3-editorial-cards--count-2,
  .v3-editorial-module--matrix .v3-editorial-cards--count-3,
  .v3-editorial-module--matrix .v3-editorial-cards--count-4,
  .v3-editorial-module--matrix .v3-editorial-cards--count-5,
  .v3-editorial-media.v3-editorial-media--count-2,
  .v3-editorial-media.v3-editorial-media--count-3,
  .v3-editorial-media.v3-editorial-media--count-4 {
    grid-template-columns: 1fr;
  }
  .v3-editorial-split.is-media-stacked .v3-editorial-stack--count-4,
  .v3-editorial-split.is-media-stacked .v3-editorial-stack--count-3,
  .v3-editorial-split.is-media-stacked .v3-editorial-stack--count-5,
  .v3-editorial-split.is-media-stacked .v3-editorial-stack--count-6 { grid-template-columns: 1fr; }
  .v3-editorial-cards--count-5 > :nth-child(-n + 3),
  .v3-editorial-cards--count-5 > :nth-child(4),
  .v3-editorial-cards--count-5 > :nth-child(5) { grid-column: auto; }
  .v3-editorial-split--no-media .v3-editorial-stack--count-3 { grid-template-columns: 1fr; }
  .v3-article-back {
    position: static;
    margin-bottom: 18px;
  }
}

.service-smart-mid-visual {
  max-width: 1120px;
  margin: 34px auto 0;
  overflow: hidden;
  background: #071824;
  border: 1px solid rgba(111, 188, 217, .28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
}

.service-smart-mid-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}

.service-smart-mid-visual figcaption {
  padding: 13px 16px 14px;
  color: var(--f-text-secondary);
  border-top: 1px solid rgba(111, 188, 217, .2);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .service-smart-mid-visual {
    margin-top: 26px;
  }

  .service-smart-mid-visual img {
    aspect-ratio: 1.35;
  }

  .service-smart-mid-visual figcaption {
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yuqi-about-page__ecosystem-track { transition-duration: .01ms; }
}

/* Commercial About page: intentionally scoped so locked routes keep their
 * existing presentation. */
.yuqi-about-page--commercial {
  --yuqi-about-bg: #06101d;
  --yuqi-about-surface: #0b1727;
  --yuqi-about-surface-2: #0f1f32;
  --yuqi-about-border: rgba(151, 181, 215, .2);
  --yuqi-about-text: #f2f7fc;
  --yuqi-about-muted: #b2c0d1;
  --yuqi-about-accent: #45a3ff;
  --yuqi-about-accent-2: #38c7d9;
  overflow: clip;
  color: var(--yuqi-about-text);
  background: var(--yuqi-about-bg);
}
.yuqi-about-page--commercial .yuqi-about-commercial__hero-intro,
.yuqi-about-page--commercial .yuqi-about-commercial__prose > p:not(.yuqi-about-commercial__eyebrow),
.yuqi-about-page--commercial .yuqi-about-commercial__section-heading > p,
.yuqi-about-page--commercial .yuqi-about-commercial__pillar p,
.yuqi-about-page--commercial .yuqi-about-commercial__delivery-line p,
.yuqi-about-page--commercial .yuqi-about-commercial__engineering-copy .yuqi-about-commercial__lead,
.yuqi-about-page--commercial .yuqi-about-commercial__engineering-list p,
.yuqi-about-page--commercial .yuqi-about-commercial__credentials li,
.yuqi-about-page--commercial .yuqi-about-commercial__cta-copy > p:not(.yuqi-about-commercial__eyebrow) { font-size: 17px; line-height: 1.82; }
.yuqi-about-page--commercial,
.yuqi-about-page--commercial * { box-sizing: border-box; }
.yuqi-about-page--commercial figure,
.yuqi-about-page--commercial p,
.yuqi-about-page--commercial h1,
.yuqi-about-page--commercial h2,
.yuqi-about-page--commercial h3,
.yuqi-about-page--commercial dl,
.yuqi-about-page--commercial dd,
.yuqi-about-page--commercial dt,
.yuqi-about-page--commercial ol { margin: 0; }
.yuqi-about-page--commercial img { display: block; max-width: 100%; height: auto; }
.yuqi-about-commercial__container { width: min(1200px, calc(100% - 64px)); margin: 0 auto; }
.yuqi-about-commercial__hero { padding: 104px 0 88px; background: radial-gradient(circle at 76% 18%, rgba(53, 144, 220, .17), transparent 36%), var(--yuqi-about-bg); }
.yuqi-about-commercial__hero-grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); gap: clamp(42px, 7vw, 96px); align-items: center; }
.yuqi-about-commercial__hero-copy { min-width: 0; }
.yuqi-about-commercial__eyebrow { color: var(--yuqi-about-accent-2); font-size: 12px; font-weight: 720; letter-spacing: .16em; line-height: 1.4; text-transform: uppercase; }
.yuqi-about-commercial__hero h1 { max-width: 720px; margin-top: 18px; color: var(--yuqi-about-text); font-size: clamp(42px, 5.2vw, 76px); font-weight: 690; letter-spacing: -.045em; line-height: 1.05; }
.yuqi-about-commercial__hero-intro { max-width: 640px; margin-top: 30px; color: var(--yuqi-about-muted); font-size: 18px; line-height: 1.82; }
.yuqi-about-commercial__hero-intro p + p { margin-top: 14px; }
.yuqi-about-commercial__hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.yuqi-about-commercial__button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 12px 20px; border: 1px solid transparent; border-radius: 3px; font-size: 14px; font-weight: 680; line-height: 1.2; text-decoration: none; transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease; }
.yuqi-about-commercial__button:hover { transform: translateY(-2px); }
.yuqi-about-commercial__button--primary { color: #03111e; background: var(--yuqi-about-accent); }
.yuqi-about-commercial__button--primary:hover,
.yuqi-about-commercial__button--primary:focus-visible { color: #03111e; background: #73baff; }
.yuqi-about-commercial__button--secondary { color: var(--yuqi-about-text); border-color: var(--yuqi-about-border); background: rgba(255, 255, 255, .025); }
.yuqi-about-commercial__button--secondary:hover,
.yuqi-about-commercial__button--secondary:focus-visible { border-color: var(--yuqi-about-accent); background: rgba(69, 163, 255, .1); }
.yuqi-about-commercial__button:focus-visible,
.yuqi-about-commercial__pillar:focus-visible,
.yuqi-about-commercial__ecosystem-carousel button:focus-visible,
.yuqi-about-commercial__contact-card a:focus-visible { outline: 2px solid var(--yuqi-about-accent-2); outline-offset: 4px; }
.yuqi-about-commercial__hero-media,
.yuqi-about-commercial__engineering-media { overflow: hidden; border: 1px solid var(--yuqi-about-border); background: #101d2b; }
.yuqi-about-commercial__hero-media .yuqi-about-commercial__image,
.yuqi-about-commercial__engineering-media .yuqi-about-commercial__image { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.yuqi-about-commercial__hero-media figcaption,
.yuqi-about-commercial__engineering-media figcaption { padding: 10px 14px; color: #8195ac; font-size: 11px; line-height: 1.5; }
.yuqi-about-commercial__section { padding: 96px 0; border-top: 1px solid rgba(151, 181, 215, .1); }
.yuqi-about-commercial__overview { padding: 24px 0 28px; background: #081524; }
.yuqi-about-commercial__overview-grid { display: block; }
.yuqi-about-commercial__prose { max-width: 900px; }
.yuqi-about-commercial__prose h2,
.yuqi-about-commercial__section-heading h2,
.yuqi-about-commercial__engineering-copy h2,
.yuqi-about-commercial__cta-copy h2 { max-width: 760px; margin-top: 16px; color: var(--yuqi-about-text); font-size: clamp(28px, 3.3vw, 46px); font-weight: 660; letter-spacing: -.035em; line-height: 1.16; }
.yuqi-about-commercial__prose h2 { margin-top: 8px; line-height: 1.1; }
.yuqi-about-commercial__prose > p:not(.yuqi-about-commercial__eyebrow) { max-width: 900px; margin-top: 6px; color: var(--yuqi-about-muted); font-size: 17px; line-height: 1.68; }
.yuqi-about-commercial__strength { width: 100%; max-width: none; margin-top: 14px; padding-top: 10px; border-top: 1px solid rgba(151, 181, 215, .2); }
.yuqi-about-commercial__strength-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 8px; border-bottom: 1px solid rgba(151, 181, 215, .16); }
.yuqi-about-commercial__strength-stat { min-width: 0; padding: 0 24px 9px; border-left: 1px solid rgba(151, 181, 215, .2); }
.yuqi-about-commercial__strength-stat:first-child { padding-left: 0; border-left: 0; }
.yuqi-about-commercial__strength-stat strong { display: block; color: var(--yuqi-about-text); font-size: clamp(34px, 3.2vw, 44px); font-weight: 660; letter-spacing: -.04em; line-height: 1; }
.yuqi-about-commercial__strength-stat span { display: block; margin-top: 5px; color: var(--yuqi-about-muted); font-size: 16px; line-height: 1.4; }
.yuqi-about-commercial__strength-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(151, 181, 215, .14); }
.yuqi-about-commercial__strength-groups article { min-width: 0; padding-right: 28px; }
.yuqi-about-commercial__strength-groups article + article { padding-right: 0; padding-left: 28px; border-left: 1px solid rgba(151, 181, 215, .2); }
.yuqi-about-commercial__strength-groups h3 { color: var(--yuqi-about-text); font-size: 18px; font-weight: 640; line-height: 1.4; }
.yuqi-about-commercial__strength-groups p { max-width: 520px; margin-top: 5px; color: var(--yuqi-about-muted); font-size: 15px; line-height: 1.5; }
.yuqi-about-commercial__section-heading { display: flex; justify-content: space-between; gap: 44px; align-items: end; }
.yuqi-about-commercial__section-heading > p { max-width: 410px; color: var(--yuqi-about-muted); font-size: 14px; line-height: 1.75; }
.yuqi-about-commercial__pillar-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 42px; }
.yuqi-about-commercial__pillar { position: relative; display: flex; min-height: 260px; flex-direction: column; padding: 25px 23px 22px; border: 1px solid var(--yuqi-about-border); background: linear-gradient(160deg, rgba(22, 46, 73, .8), rgba(9, 22, 37, .95)); color: inherit; text-decoration: none; transition: border-color .2s ease, transform .2s ease, background-color .2s ease; }
.yuqi-about-commercial__pillar:hover { border-color: rgba(69, 163, 255, .75); background: linear-gradient(160deg, rgba(26, 64, 99, .9), rgba(9, 22, 37, .98)); transform: translateY(-3px); }
.yuqi-about-commercial__index { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 24px; border: 1px solid rgba(56, 199, 217, .55); color: var(--yuqi-about-accent-2); font-size: 11px; letter-spacing: .08em; line-height: 1; }
.yuqi-about-commercial__pillar h3 { margin-top: 54px; color: var(--yuqi-about-text); font-size: 20px; font-weight: 650; line-height: 1.35; }
.yuqi-about-commercial__pillar p { margin-top: 12px; color: var(--yuqi-about-muted); font-size: 14px; line-height: 1.72; }
.yuqi-about-commercial__pillar strong { margin-top: auto; padding-top: 24px; color: var(--yuqi-about-accent); font-size: 21px; font-weight: 400; }
.yuqi-about-commercial__delivery { background: #081524; }
.yuqi-about-commercial__delivery-line { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px; padding: 46px 0 0; list-style: none; }
.yuqi-about-commercial__delivery-line::before { position: absolute; top: 57px; right: 7%; left: 7%; height: 1px; background: linear-gradient(90deg, transparent, var(--yuqi-about-accent), var(--yuqi-about-accent-2), transparent); content: ''; opacity: .65; }
.yuqi-about-commercial__delivery-line li { position: relative; min-width: 0; }
.yuqi-about-commercial__delivery-line .yuqi-about-commercial__index { position: relative; z-index: 1; background: var(--yuqi-about-bg); }
.yuqi-about-commercial__delivery-line h3 { margin-top: 22px; color: var(--yuqi-about-text); font-size: 17px; font-weight: 640; line-height: 1.4; }
.yuqi-about-commercial__delivery-line p { max-width: 190px; margin-top: 11px; color: var(--yuqi-about-muted); font-size: 13px; line-height: 1.7; }
.yuqi-about-commercial__engineering { background: linear-gradient(180deg, #06101d, #091827); }
.yuqi-about-commercial__engineering-intro { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(34px, 6vw, 78px); align-items: center; }
.yuqi-about-commercial__engineering-media .yuqi-about-commercial__image { aspect-ratio: 3 / 2; object-fit: cover; }
.yuqi-about-commercial__engineering-copy .yuqi-about-commercial__lead { max-width: 680px; margin-top: 22px; color: var(--yuqi-about-muted); }
.yuqi-about-commercial__engineering-visual-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.yuqi-about-commercial__engineering-detail { overflow: hidden; border: 1px solid rgba(151, 181, 215, .16); background: #101d2b; }
.yuqi-about-commercial__engineering-detail .yuqi-about-commercial__image { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.yuqi-about-commercial__engineering-detail figcaption { padding: 9px 12px; color: #8195ac; font-size: 11px; line-height: 1.5; }
.yuqi-about-commercial__engineering-capabilities { margin-top: 58px; }
.yuqi-about-commercial__engineering-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 30px; border-top: 1px solid rgba(151, 181, 215, .2); }
.yuqi-about-commercial__engineering-list article { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 15px; min-height: 0; padding: 22px 4px 23px; border-bottom: 1px solid rgba(151, 181, 215, .16); background: transparent; }
.yuqi-about-commercial__engineering-index { display: inline-flex; width: 34px; height: 24px; align-items: center; justify-content: center; border: 1px solid rgba(56, 199, 217, .55); color: var(--yuqi-about-accent-2); font-size: 11px; letter-spacing: .08em; line-height: 1; }
.yuqi-about-commercial__engineering-list h3 { color: var(--yuqi-about-text); font-size: 17px; font-weight: 640; line-height: 1.4; }
.yuqi-about-commercial__engineering-list p { margin-top: 9px; color: var(--yuqi-about-muted); }
.yuqi-about-commercial__credentials { margin-top: 18px; padding: 24px 25px 26px; border: 1px solid rgba(151, 181, 215, .15); background: rgba(15, 31, 50, .58); }
.yuqi-about-commercial__credentials h3 { color: var(--yuqi-about-text); font-size: 16px; font-weight: 650; line-height: 1.4; }
.yuqi-about-commercial__credentials ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 28px; margin: 17px 0 0; padding: 0; list-style: none; }
.yuqi-about-commercial__credentials li { position: relative; padding-left: 17px; color: var(--yuqi-about-muted); font-size: 13px; line-height: 1.65; }
.yuqi-about-commercial__credentials li::before { position: absolute; top: .68em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--yuqi-about-accent-2); content: ''; }
.yuqi-about-commercial__ecosystem { background: #081524; }
.yuqi-about-commercial__ecosystem-carousel { margin-top: 42px; }
.yuqi-about-commercial__ecosystem-viewport { overflow: hidden; width: 100%; }
.yuqi-about-commercial__ecosystem-track { display: flex; width: 100%; transition: transform .38s ease; will-change: transform; }
.yuqi-about-commercial__ecosystem-slide { flex: 0 0 20%; min-width: 0; padding: 0 7px; }
.yuqi-about-commercial__ecosystem-card { display: flex; height: 178px; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 16px; border: 1px solid rgba(151, 181, 215, .22); background: #f3f6f8; color: #10233a; }
.yuqi-about-commercial__ecosystem-logo-box { display: inline-flex; width: 100%; height: 94px; flex: 0 0 94px; align-items: center; justify-content: center; overflow: hidden; background: #eef2f4; }
.yuqi-about-commercial__ecosystem-logo-frame { display: inline-flex; width: 100%; height: 100%; align-items: center; justify-content: center; padding: 8px 14px; box-sizing: border-box; }
.yuqi-about-commercial__ecosystem-image { display: block; width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; object-position: center; }
.yuqi-about-commercial__ecosystem-logo-frame.is-square .yuqi-about-commercial__ecosystem-image { width: 78px; height: 78px; }
.yuqi-about-commercial__ecosystem-logo-frame.is-wide .yuqi-about-commercial__ecosystem-image { max-width: 100%; max-height: 74px; }
.yuqi-about-commercial__ecosystem-card span { font-size: 12px; font-weight: 680; line-height: 1.35; text-align: center; }
.yuqi-about-commercial__ecosystem-card > span:last-child { min-height: 17px; }
.yuqi-about-commercial__ecosystem-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; }
.yuqi-about-commercial__ecosystem-controls button { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid var(--yuqi-about-border); border-radius: 50%; color: var(--yuqi-about-text); background: transparent; cursor: pointer; font-size: 18px; line-height: 1; }
.yuqi-about-commercial__ecosystem-controls button:hover:not(:disabled) { border-color: var(--yuqi-about-accent); color: var(--yuqi-about-accent); }
.yuqi-about-commercial__ecosystem-controls button:disabled { cursor: not-allowed; opacity: .35; }
.yuqi-about-commercial__ecosystem-dots { display: flex; max-width: min(62vw, 460px); flex-wrap: wrap; align-items: center; justify-content: center; gap: 7px; min-width: 72px; }
.yuqi-about-commercial__ecosystem-dots button { width: 7px; height: 7px; padding: 0; border: 0; background: #5b7088; }
.yuqi-about-commercial__ecosystem-dots button.is-active { width: 22px; border-radius: 8px; background: var(--yuqi-about-accent-2); }
.yuqi-about-commercial__ecosystem-disclaimer { max-width: 760px; margin: 18px auto 0; color: #8195ac; font-size: 12px; line-height: 1.65; text-align: center; }
.yuqi-about-commercial__cta { padding: 84px 0 96px; border-top: 1px solid rgba(151, 181, 215, .1); background: radial-gradient(circle at 18% 22%, rgba(56, 199, 217, .11), transparent 35%), #06101d; }
.yuqi-about-commercial__cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: clamp(44px, 8vw, 115px); align-items: center; }
.yuqi-about-commercial__cta-copy > p:not(.yuqi-about-commercial__eyebrow) { max-width: 620px; margin-top: 21px; color: var(--yuqi-about-muted); font-size: 16px; line-height: 1.82; }
.yuqi-about-commercial__cta-copy .yuqi-about-commercial__button { margin-top: 29px; }
.yuqi-about-commercial__contact-card { display: grid; gap: 9px; padding: 27px; border: 1px solid var(--yuqi-about-border); background: rgba(15, 31, 50, .72); }
.yuqi-about-commercial__contact-card > a { width: fit-content; color: var(--yuqi-about-text); font-size: 18px; font-weight: 620; line-height: 1.4; text-decoration: none; }
.yuqi-about-commercial__contact-card > a:hover { color: var(--yuqi-about-accent-2); }
.yuqi-about-commercial__contact-card > p { color: var(--yuqi-about-muted); font-size: 14px; line-height: 1.7; }
.yuqi-about-commercial__qr { display: flex; align-items: center; gap: 16px; margin-top: 13px; padding-top: 20px; border-top: 1px solid rgba(151, 181, 215, .15); }
.yuqi-about-commercial__qr > div:first-child { flex: 0 0 124px; width: 124px; height: 124px; padding: 7px; background: #fff; }
.yuqi-about-commercial__qr img { width: 100%; height: 100%; object-fit: contain; }
.yuqi-about-commercial__qr strong,
.yuqi-about-commercial__qr span { display: block; }
.yuqi-about-commercial__qr strong { color: var(--yuqi-about-text); font-size: 15px; line-height: 1.4; }
.yuqi-about-commercial__qr span { margin-top: 5px; color: var(--yuqi-about-muted); font-size: 12px; line-height: 1.6; }
@media (max-width: 1180px) {
  .yuqi-about-commercial__ecosystem-slide { flex-basis: 33.333333%; }
}
@media (max-width: 1024px) {
  .yuqi-about-commercial__container { width: min(100% - 48px, 900px); }
  .yuqi-about-commercial__hero { padding: 82px 0 72px; }
  .yuqi-about-commercial__hero-grid { gap: 42px; }
  .yuqi-about-commercial__pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .yuqi-about-commercial__delivery-line { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 40px; }
  .yuqi-about-commercial__delivery-line::before { display: none; }
  .yuqi-about-commercial__delivery-line li { padding-right: 14px; }
  .yuqi-about-commercial__engineering-intro { gap: 32px; }
}
@media (max-width: 820px) {
  .yuqi-about-commercial__ecosystem-slide { flex-basis: 50%; }
}
@media (max-width: 768px) {
  .yuqi-about-commercial__container { width: min(100% - 36px, 620px); }
  .yuqi-about-commercial__hero { padding: 64px 0 60px; }
  .yuqi-about-commercial__hero-grid,
  .yuqi-about-commercial__engineering-grid,
  .yuqi-about-commercial__cta-grid { grid-template-columns: 1fr; }
  .yuqi-about-commercial__hero-grid { gap: 38px; }
  .yuqi-about-commercial__hero h1 { font-size: clamp(39px, 10vw, 58px); }
  .yuqi-about-commercial__hero-intro { font-size: 16px; }
  .yuqi-about-commercial__overview { padding: 44px 0 48px; }
  .yuqi-about-commercial__prose h2 { max-width: 100%; font-size: clamp(32px, 9vw, 40px); }
  .yuqi-about-page--commercial .yuqi-about-commercial__prose > p:not(.yuqi-about-commercial__eyebrow) { font-size: 16px; line-height: 1.75; }
  .yuqi-about-commercial__strength { margin-top: 22px; padding-top: 17px; }
  .yuqi-about-commercial__strength-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 16px; }
  .yuqi-about-commercial__strength-stat { padding: 0 12px 14px; border-left: 1px solid rgba(151, 181, 215, .2); }
  .yuqi-about-commercial__strength-stat:nth-child(odd) { padding-left: 0; border-left: 0; }
  .yuqi-about-commercial__strength-stat:nth-child(even) { padding-left: 18px; }
  .yuqi-about-commercial__strength-groups { grid-template-columns: 1fr; row-gap: 0; }
  .yuqi-about-commercial__strength-groups article { padding-right: 0; }
  .yuqi-about-commercial__strength-groups { margin-top: 15px; padding-top: 15px; }
  .yuqi-about-commercial__strength-groups article + article { margin-top: 17px; padding-top: 17px; padding-left: 0; border-top: 1px solid rgba(151, 181, 215, .2); border-left: 0; }
  .yuqi-about-commercial__section { padding: 70px 0; }
  .yuqi-about-commercial__section-heading { display: block; }
  .yuqi-about-commercial__section-heading > p { margin-top: 19px; }
  .yuqi-about-commercial__pillar-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .yuqi-about-commercial__pillar { min-height: 0; }
  .yuqi-about-commercial__pillar h3 { margin-top: 34px; }
  .yuqi-about-commercial__delivery-line { grid-template-columns: 1fr; gap: 0; padding-top: 31px; }
  .yuqi-about-commercial__delivery-line li { display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: 16px; padding: 0 0 27px; }
  .yuqi-about-commercial__delivery-line .yuqi-about-commercial__index { grid-row: span 2; }
  .yuqi-about-commercial__delivery-line h3 { margin-top: 0; }
  .yuqi-about-commercial__delivery-line p { max-width: none; margin-top: 5px; }
  .yuqi-about-commercial__engineering-intro { grid-template-columns: 1fr; }
  .yuqi-about-commercial__engineering-visual-strip { grid-template-columns: 1fr; }
  .yuqi-about-commercial__engineering-capabilities { margin-top: 40px; }
  .yuqi-about-commercial__engineering-list { grid-template-columns: 1fr; }
  .yuqi-about-commercial__credentials ul { grid-template-columns: 1fr; }
  .yuqi-about-page--commercial .yuqi-about-commercial__hero-intro,
  .yuqi-about-page--commercial .yuqi-about-commercial__prose > p:not(.yuqi-about-commercial__eyebrow),
  .yuqi-about-page--commercial .yuqi-about-commercial__section-heading > p,
  .yuqi-about-page--commercial .yuqi-about-commercial__pillar p,
  .yuqi-about-page--commercial .yuqi-about-commercial__delivery-line p,
  .yuqi-about-page--commercial .yuqi-about-commercial__engineering-copy .yuqi-about-commercial__lead,
  .yuqi-about-page--commercial .yuqi-about-commercial__engineering-list p,
  .yuqi-about-page--commercial .yuqi-about-commercial__credentials li,
  .yuqi-about-page--commercial .yuqi-about-commercial__cta-copy > p:not(.yuqi-about-commercial__eyebrow) { font-size: 16px; line-height: 1.82; }
  .yuqi-about-commercial__cta { padding: 68px 0 76px; }
  .yuqi-about-commercial__contact-card { padding: 22px; }
}
@media (max-width: 559px) {
  .yuqi-about-commercial__ecosystem-slide { flex-basis: 100%; }
}
@media (max-width: 480px) {
  .yuqi-about-commercial__container { width: calc(100% - 28px); }
  .yuqi-about-commercial__hero-actions { align-items: stretch; flex-direction: column; }
  .yuqi-about-commercial__button { width: 100%; }
  .yuqi-about-commercial__hero-media .yuqi-about-commercial__image { aspect-ratio: 4 / 3; }
  .yuqi-about-commercial__ecosystem-card { height: 164px; }
  .yuqi-about-commercial__ecosystem-logo-box { height: 76px; flex-basis: 76px; }
  .yuqi-about-commercial__ecosystem-logo-frame.is-square .yuqi-about-commercial__ecosystem-image { width: 66px; height: 66px; }
  .yuqi-about-commercial__ecosystem-logo-frame.is-wide .yuqi-about-commercial__ecosystem-image { max-height: 62px; }
  .yuqi-about-commercial__qr { align-items: flex-start; }
  .yuqi-about-commercial__qr > div:first-child { flex-basis: 106px; width: 106px; height: 106px; }
}
@media (prefers-reduced-motion: reduce) {
  .yuqi-about-page--commercial * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Home visual system refinement — scoped to the two homepage templates. */
.home-visual-system {
  --home-rule: rgba(151, 181, 215, .2);
  --home-soft-rule: rgba(151, 181, 215, .12);
  --home-muted: #9cb0c7;
  --home-accent: #5de4df;
  background: var(--f-bg);
}

.home-visual-system .section,
.home-visual-system .contact-section {
  padding-top: 118px;
  padding-bottom: 118px;
}

.home-visual-system .section-heading {
  align-items: end;
  gap: 34px;
  margin-bottom: 48px;
}

.home-visual-system .section-heading h2 {
  max-width: 820px;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.home-visual-system .section-heading .text-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.home-visual-system .section-note,
.home-visual-system .section-heading > p:not(.eyebrow) {
  max-width: 360px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.75;
}

.home-strength-band {
  padding: 54px 0 58px;
  background: #081522;
  border-top: 1px solid var(--home-soft-rule);
  border-bottom: 1px solid var(--home-soft-rule);
}

.home-strength-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.home-strength-heading .eyebrow { margin: 0; }
.home-strength-heading > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-strength-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
}

.home-strength-stats > div {
  min-width: 0;
  padding: 25px 26px 24px;
  border-left: 1px solid var(--home-rule);
}

.home-strength-stats > div:first-child { padding-left: 0; border-left: 0; }
.home-strength-stats strong {
  display: block;
  color: #f4fbff;
  font-size: clamp(34px, 3.3vw, 44px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
}

.home-strength-stats span {
  display: block;
  margin-top: 11px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.45;
}

.home-strength-proofs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.home-strength-proofs > div {
  min-width: 0;
  padding-right: 42px;
}

.home-strength-proofs > div + div {
  padding-right: 0;
  padding-left: 42px;
  border-left: 1px solid var(--home-rule);
}

.home-strength-proofs strong {
  display: block;
  color: #eaf6ff;
  font-size: 17px;
  font-weight: 600;
}

.home-strength-proofs span {
  display: block;
  margin-top: 8px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}

.home-services-section { background: #07131f; }
.home-services-section .catalog-panel,
.home-services-section .catalog-mobile { background: transparent; }
.home-services-section .catalog-panel { padding: 18px 0 0; border: 0; box-shadow: none; }
.home-services-section .catalog-tabs { gap: 2px; }
.home-services-section .catalog-tab {
  min-height: 74px;
  padding: 13px 18px 13px 0;
  border: 0;
  border-bottom: 1px solid var(--home-soft-rule);
  border-radius: 0;
  background: transparent;
}
.home-services-section .catalog-tab.is-active {
  padding-left: 14px;
  border-left: 2px solid var(--home-accent);
  background: rgba(93, 228, 223, .06);
}
.home-services-section .catalog-tab strong { font-size: 17px; }
.home-services-section .catalog-tab small { color: var(--home-muted); }
.home-services-section .catalog-panel-head {
  align-items: end;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--home-rule);
}
.home-services-section .catalog-panel-head h3 { font-size: 27px; }
.home-services-section .catalog-panel-head p { max-width: 430px; color: var(--home-muted); font-size: 15px; line-height: 1.7; }
.home-services-section .catalog-links { gap: 0 28px; }
.home-services-section .catalog-links a {
  min-height: 60px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--home-soft-rule);
  border-radius: 0;
  background: transparent;
}
.home-services-section .catalog-links a:hover,
.home-services-section .catalog-links a:focus-visible { background: transparent; color: var(--home-accent); }
.home-services-section .catalog-link-action { color: var(--home-accent); }

.home-problem-section { background: #0a1727; }
.home-problem-section .solutions-layout { grid-template-columns: 258px minmax(0, 1fr); gap: 46px; }
.home-problem-section .solution-tabs { gap: 3px; }
.home-problem-section .solution-tab {
  min-height: 76px;
  padding: 15px 17px;
  border: 0;
  border-bottom: 1px solid var(--home-soft-rule);
  border-radius: 0;
  background: transparent;
  text-align: left;
}
.home-problem-section .solution-tab.is-active {
  border-left: 2px solid var(--home-accent);
  background: rgba(93, 228, 223, .06);
}
.home-problem-section .solution-tab span { font-size: 17px; }
.home-problem-section .solution-tab small { color: var(--home-muted); }
.home-problem-section .solution-panel {
  min-height: 0;
  border: 1px solid var(--home-rule);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.home-problem-section .solution-copy { padding: 50px 48px; }
.home-problem-section .solution-copy h3 { max-width: 520px; font-size: clamp(28px, 3vw, 39px); line-height: 1.16; }
.home-problem-section .solution-copy > p:not(.panel-label) { max-width: 540px; color: var(--home-muted); font-size: 16px; line-height: 1.85; }
.home-problem-path { margin-top: 29px; }
.home-problem-path > p { margin: 0 0 11px; color: var(--home-accent); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.home-problem-section .capability-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.home-problem-section .capability-list li { position: relative; padding-left: 19px; color: #d5e6f5; font-size: 14px; line-height: 1.55; }
.home-problem-section .capability-list li::before { content: ''; position: absolute; top: .65em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--home-accent); }
.home-problem-section .solution-copy .button { margin-top: 28px; }
.home-problem-section .solution-media { min-height: 0; aspect-ratio: 1 / 1; }
.home-problem-section .solution-media img { height: 100%; }
.home-problem-section .solution-media figcaption { padding: 10px 16px; color: var(--home-muted); font-size: 12px; }

.home-engineering-section { background: var(--f-bg-secondary); }
.home-engineering-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 32px; align-items: stretch; }
.home-engineering-scene { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); min-width: 0; min-height: 0; overflow: hidden; border: 1px solid var(--home-soft-rule); background: var(--f-card); color: inherit; text-decoration: none; }
.home-engineering-scene figure { align-self: stretch; width: 100%; aspect-ratio: auto; height: auto; min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: var(--f-bg-deep); }
.home-engineering-scene figure img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.home-engineering-scene:nth-child(1) figure img { object-position: 52% center; }
.home-engineering-scene:nth-child(2) figure img { object-position: 50% center; }
.home-engineering-scene:nth-child(3) figure img { object-position: 42% center; }
.home-engineering-scene:nth-child(4) figure img { object-position: 48% center; }
.home-engineering-scene:hover figure img,
.home-engineering-scene:focus-visible figure img { transform: scale(1.035); }
.home-engineering-scene:hover,
.home-engineering-scene:focus-visible { border-color: rgba(93, 228, 223, .45); }
.home-engineering-scene > div { display: flex; min-width: 0; min-height: 0; flex-direction: column; align-items: flex-start; justify-content: center; padding: 24px 26px; background: var(--f-card); }
.home-engineering-index { margin: 0 0 13px; color: var(--home-accent); font-size: 12px; letter-spacing: .15em; }
.home-engineering-scene h3 { max-width: 100%; margin: 0; color: var(--f-text); font-size: clamp(20px, 2vw, 26px); line-height: 1.25; }
.home-engineering-scene > div > p:not(.home-engineering-index) { display: -webkit-box; max-width: 360px; margin: 12px 0 0; overflow: hidden; color: var(--home-muted); font-size: 15px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.home-engineering-scene .text-link { color: #d8eef8; font-size: 14px; }
.home-engineering-scene > div > .text-link { margin-top: auto; padding-top: 18px; }

.home-delivery-section { background: #0a1727; }
.home-delivery-section .delivery-track { position: relative; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; border: 0; }
.home-delivery-section .delivery-track::before { content: ''; position: absolute; top: 19px; right: 10%; left: 10%; height: 1px; background: var(--home-rule); }
.home-delivery-section .delivery-track li { position: relative; min-width: 0; min-height: 0; padding: 0 20px 0 0; border: 0; background: transparent; }
.home-delivery-section .delivery-track li + li { padding-left: 20px; border-left: 1px solid var(--home-soft-rule); }
.home-delivery-section .step-number { position: relative; z-index: 1; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--home-accent); border-radius: 50%; background: #0a1727; color: var(--home-accent); font-size: 12px; }
.home-delivery-section .delivery-track h3 { margin: 22px 0 9px; font-size: 20px; }
.home-delivery-section .delivery-track p { max-width: 180px; margin: 0; color: var(--home-muted); font-size: 14px; line-height: 1.7; }

.home-visual-system .article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.home-visual-system .article-card {
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--home-soft-rule);
  border-radius: 0;
  background: #0a1828;
  box-shadow: none;
}
.home-visual-system .article-card-link {
  display: flex;
  width: 100%;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.home-visual-system .article-card-link:hover { color: inherit; }
.home-visual-system .article-card-link:hover .article-card-media img { transform: scale(1.02); }
.home-visual-system .article-card-link:focus-visible {
  outline: 2px solid var(--home-accent);
  outline-offset: 4px;
}
.home-visual-system .article-card:has(.article-card-link:hover) {
  border-color: rgba(93, 228, 223, .55);
  background: #0c1d30;
}
.home-visual-system .article-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #091421;
}
.home-visual-system .article-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}
.home-visual-system .article-card-body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 24px 24px;
}
.home-visual-system .article-card-body h3 {
  display: -webkit-box;
  max-width: 100%;
  margin: 18px 0 0;
  overflow: hidden;
  color: var(--f-text);
  font-size: 21px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.home-visual-system .article-card-body p {
  display: -webkit-box;
  max-width: 100%;
  margin: 11px 0 0;
  overflow: hidden;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.home-visual-system .article-card .card-link {
  display: inline-flex;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  color: #d8eef8;
  font-size: 14px;
}

.home-visual-system .contact-section { background: #06101d; }
.home-visual-system .contact-panel { border-color: var(--home-rule); background: transparent; box-shadow: none; }

@media (min-width: 769px) {
  .home-visual-system .articles-section { padding-bottom: 52px; }
  .home-visual-system .contact-section { padding-top: 52px; }
}

@media (max-width: 1080px) {
  .home-problem-section .solutions-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 28px; }
  .home-problem-section .solution-copy { padding: 38px 32px; }
  .home-problem-section .solution-panel,
  .home-problem-section .solution-media { min-height: 0; }
  .home-engineering-grid { gap: 20px 24px; }
  .home-engineering-scene { grid-template-columns: minmax(0, 1.18fr) minmax(0, .92fr); }
  .home-engineering-scene > div { padding: 20px 22px; }
}

@media (max-width: 768px) {
  .home-visual-system .section,
  .home-visual-system .contact-section { padding-top: 82px; padding-bottom: 82px; }
  .home-visual-system .section-heading { display: block; margin-bottom: 34px; }
  .home-visual-system .section-heading .text-link { display: inline-flex; margin-top: 20px; }
  .home-strength-band { padding: 42px 0 46px; }
  .home-strength-heading { display: block; margin-bottom: 25px; }
  .home-strength-heading > p:last-child { margin-top: 12px; }
  .home-strength-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-strength-stats > div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .home-strength-stats > div:nth-child(even) { padding-left: 20px; }
  .home-strength-stats > div:nth-child(n + 3) { border-top: 1px solid var(--home-rule); }
  .home-strength-proofs { grid-template-columns: 1fr; }
  .home-strength-proofs > div { padding-right: 0; }
  .home-strength-proofs > div + div { margin-top: 20px; padding-top: 20px; padding-left: 0; border-top: 1px solid var(--home-rule); border-left: 0; }
  .home-services-section .catalog-disclosure { border-top: 1px solid var(--home-rule); border-bottom: 0; background: transparent; }
  .home-services-section .catalog-disclosure:last-child { border-bottom: 1px solid var(--home-rule); }
  .home-services-section .catalog-disclosure summary { min-height: 70px; padding-right: 0; padding-left: 0; }
  .home-services-section .catalog-disclosure-body { padding-right: 0; padding-left: 0; border-top-color: var(--home-soft-rule); }
  .home-problem-section .solutions-layout { grid-template-columns: 1fr; }
  .home-problem-section .solution-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-problem-section .solution-panel { grid-template-columns: 1fr; min-height: 0; }
  .home-problem-section .solution-media { order: -1; min-height: 0; aspect-ratio: 16 / 9; }
  .home-problem-section .solution-copy { padding: 34px 28px 38px; }
  .home-engineering-grid { grid-template-columns: 1fr; gap: 20px; }
  .home-engineering-scene { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
  .home-delivery-section .delivery-track { grid-template-columns: 1fr; gap: 0; padding-left: 24px; }
  .home-delivery-section .delivery-track::before { top: 19px; right: auto; bottom: 19px; left: 18px; width: 1px; height: auto; }
  .home-delivery-section .delivery-track li,
  .home-delivery-section .delivery-track li + li { padding: 0 0 28px 36px; border: 0; }
  .home-delivery-section .delivery-track h3 { margin-top: -30px; margin-left: 54px; }
  .home-delivery-section .delivery-track p { max-width: none; margin-left: 54px; }
}

@media (max-width: 540px) {
  .home-visual-system .section,
  .home-visual-system .contact-section { padding-top: 70px; padding-bottom: 70px; }
  .home-visual-system .section-heading h2 { font-size: clamp(31px, 9vw, 39px); }
  .home-strength-stats strong { font-size: 34px; }
  .home-strength-stats span { font-size: 14px; }
  .home-strength-stats > div { padding: 20px 14px 20px 0; }
  .home-strength-stats > div:nth-child(even) { padding-left: 14px; }
  .home-services-section .catalog-panel { padding-top: 4px; }
  .home-problem-section .solution-tabs { grid-template-columns: 1fr; }
  .home-problem-section .solution-tab { min-height: 60px; }
  .home-engineering-grid { grid-template-columns: 1fr; gap: 16px; }
  .home-engineering-scene { grid-template-columns: 1fr; }
  .home-engineering-scene figure { align-self: stretch; width: 100%; height: auto; aspect-ratio: 16 / 9; }
  .home-engineering-scene figure img { height: 100%; }
  .home-engineering-scene > div { padding: 18px 18px; }
  .home-engineering-scene h3 { font-size: 20px; }
  .home-visual-system .article-card-body { padding: 19px 18px; }
}

@media (min-width: 641px) and (max-width: 768px) {
  .home-visual-system .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .home-visual-system .article-grid { grid-template-columns: 1fr; }
}

/* Keep the engineering scene chapter tied to real content instead of generic section spacing. */
.home-visual-system .home-engineering-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Typed service detail pages: content structure drives the visual language. */
.service-type-page {
  --type-accent: #4b8dff;
  --type-accent-soft: rgba(75, 141, 255, .14);
  --type-panel: #0b1a2b;
  --type-panel-raised: #10243a;
  background: var(--f-bg);
  color: var(--f-text);
  overflow: clip;
}

.service-type-page--advisory {
  --type-accent: #4b8dff;
  --type-accent-soft: rgba(75, 141, 255, .14);
}

.service-type-page--colocation {
  --type-accent: #35c3d4;
  --type-accent-soft: rgba(53, 195, 212, .13);
}

.service-type-page--automation {
  --type-accent: #77a6ff;
  --type-accent-soft: rgba(119, 166, 255, .14);
}

.service-type-page :where(h1, h2, h3, p, a, span, strong, li, figcaption) {
  overflow-wrap: anywhere;
}

.service-type-hero {
  position: relative;
  padding: clamp(62px, 7vw, 104px) 0 0;
  background:
    radial-gradient(circle at 86% 12%, var(--type-accent-soft), transparent 34%),
    linear-gradient(180deg, #081725 0%, var(--f-bg) 88%);
  border-bottom: 1px solid var(--f-border);
}

.service-type-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .84fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
}

.service-type-page--colocation .service-type-hero-grid {
  grid-template-columns: minmax(360px, .98fr) minmax(0, 1.02fr);
}

.service-type-page--automation .service-type-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .78fr);
}

.service-type-page--colocation .service-type-hero-media {
  order: -1;
}

.service-type-hero-copy {
  min-width: 0;
}

.service-type-hero .eyebrow,
.service-type-section .eyebrow,
.service-type-cta .eyebrow {
  color: var(--type-accent);
}

.service-type-hero h1 {
  max-width: 740px;
  margin: 14px 0 24px;
  color: var(--f-text);
  font-size: clamp(42px, 5.8vw, 78px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .98;
}

.service-type-hero-summary {
  max-width: 680px;
  margin: 0;
  color: var(--f-text-secondary);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.72;
}

.service-type-shared {
  max-width: 650px;
  margin: 22px 0 0;
  padding-left: 16px;
  color: var(--type-accent);
  border-left: 2px solid var(--type-accent);
  font-size: 13px;
  line-height: 1.7;
}

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

.service-type-hero-actions .button {
  margin: 0;
}

.service-type-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--type-panel);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.service-type-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-type-page--automation .service-type-hero-media {
  background: #07111d;
}

.service-type-page--automation .service-type-hero-media img {
  aspect-ratio: auto;
  padding: 0;
  object-fit: cover;
}

.service-type-hero-media figcaption {
  padding: 11px 15px 12px;
  color: var(--f-text-secondary);
  background: rgba(6, 16, 29, .86);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
  line-height: 1.5;
}

.service-type-hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(42px, 6vw, 78px);
  border-top: 1px solid var(--f-border);
}

.service-type-hero-signals > div {
  min-width: 0;
  padding: 18px 24px 22px;
  border-left: 1px solid var(--f-border);
}

.service-type-hero-signals > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-type-hero-signals span {
  display: block;
  margin-bottom: 9px;
  color: var(--f-text-secondary);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-type-hero-signals strong {
  display: block;
  color: var(--f-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.service-type-jump {
  position: sticky;
  z-index: 90;
  top: var(--f-header-height);
  overflow-x: auto;
  background: rgba(6, 16, 29, .9);
  border-bottom: 1px solid var(--f-border);
  backdrop-filter: blur(18px);
}

.service-type-jump .container {
  display: flex;
  min-width: max-content;
  gap: clamp(22px, 3.6vw, 52px);
}

.service-type-jump a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  color: var(--f-text-secondary);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.service-type-jump a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--type-accent);
  content: '';
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .2s ease, transform .2s ease;
}

.service-type-jump a:hover,
.service-type-jump a:focus-visible {
  color: var(--f-text);
}

.service-type-jump a:hover::after,
.service-type-jump a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-type-section {
  padding: clamp(62px, 8vw, 112px) 0;
  scroll-margin-top: calc(var(--f-header-height) + 54px);
  background: var(--f-bg);
}

.service-type-section + .service-type-section {
  border-top: 1px solid var(--f-border);
}

.service-type-section:nth-child(even) {
  background: #071522;
}

.service-type-section-head {
  max-width: 880px;
  margin-bottom: 38px;
}

.service-type-section-head--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.service-type-section-head h2 {
  max-width: 820px;
  margin: 12px 0 17px;
  color: var(--f-text);
  font-size: clamp(29px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.service-type-section-head > p:last-child {
  max-width: 730px;
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.85;
}

.service-type-row-list {
  border-top: 1px solid var(--f-border);
}

.service-type-row-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--f-border);
}

.service-type-row-number {
  padding-top: 2px;
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
}

.service-type-row-list h3,
.service-type-lens-list h3,
.service-type-step-rail h3,
.service-type-delivery-grid h3 {
  margin: 0 0 9px;
  color: var(--f-text);
  font-size: 20px;
  font-weight: 550;
  line-height: 1.35;
}

.service-type-row-list p,
.service-type-lens-list p,
.service-type-step-rail p,
.service-type-delivery-grid li,
.service-type-module-note p {
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.service-type-row-detail {
  display: inline-block;
  margin-top: 13px;
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
}

.service-type-lens-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--f-border);
  border-bottom: 1px solid var(--f-border);
}

.service-type-lens-list article {
  min-width: 0;
  padding: 25px 26px 30px;
  border-left: 1px solid var(--f-border);
}

.service-type-lens-list article:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-type-lens-list article > span {
  display: block;
  margin-bottom: 30px;
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
}

.service-type-lens-list strong {
  display: block;
  margin-top: 17px;
  color: var(--f-text);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.service-type-process {
  background: #091a2a;
}

.service-type-step-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--f-border);
}

.service-type-step-rail li {
  min-width: 0;
  padding: 23px 22px 28px;
  border-left: 1px solid var(--f-border);
}

.service-type-step-rail li:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-type-step-rail li > span {
  display: block;
  margin-bottom: 34px;
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
}

.service-type-compare {
  border-top: 1px solid var(--f-border);
  border-bottom: 1px solid var(--f-border);
}

.service-type-compare-head,
.service-type-compare-row {
  display: grid;
  grid-template-columns: minmax(150px, .58fr) minmax(0, 1fr) minmax(0, 1fr);
}

.service-type-compare-head {
  color: var(--f-text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-type-compare-head > span,
.service-type-compare-row > * {
  min-width: 0;
  padding: 16px 20px;
  border-left: 1px solid var(--f-border);
}

.service-type-compare-head > span:first-child,
.service-type-compare-row > *:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-type-compare-row {
  border-top: 1px solid var(--f-border);
}

.service-type-compare-row > strong {
  color: var(--type-accent);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.5;
}

.service-type-compare-row div span {
  display: block;
  margin-bottom: 7px;
  color: var(--type-accent);
  font-size: 12px;
}

.service-type-compare-row div p {
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.service-type-module-list article {
  grid-template-columns: 58px minmax(0, 1fr);
}

.service-type-module-note {
  display: grid;
  grid-template-columns: minmax(140px, .4fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 22px;
  padding: 18px 0 0;
  border-top: 1px solid var(--f-border);
}

.service-type-module-note > span {
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
}

.service-type-delivery {
  background: #071522;
}

.service-type-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  border-top: 1px solid var(--f-border);
  border-bottom: 1px solid var(--f-border);
}

.service-type-delivery-grid > div {
  min-width: 0;
  padding: 27px 28px 30px;
  border-left: 1px solid var(--f-border);
}

.service-type-delivery-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-type-delivery-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-type-delivery-grid li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.service-type-delivery-grid li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--type-accent);
  content: '';
}

.service-type-evidence {
  background: #06111d;
}

.service-type-evidence-shell {
  max-width: 1040px;
  margin: 0;
  padding: clamp(22px, 4vw, 48px);
  background: var(--type-panel);
  border: 1px solid var(--f-border);
}

.service-type-evidence-shell :where(h2, h3, h4) {
  color: var(--f-text);
}

.service-type-evidence-shell :where(p, li) {
  color: var(--f-text-secondary);
}

.service-type-evidence-shell img {
  max-width: 100%;
  height: auto;
}

.service-type-faq-list {
  max-width: 980px;
  border-top: 1px solid var(--f-border);
}

.service-type-faq-list details {
  border-bottom: 1px solid var(--f-border);
}

.service-type-faq-list summary {
  position: relative;
  display: block;
  padding: 22px 48px 22px 0;
  color: var(--f-text);
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  list-style: none;
}

.service-type-faq-list summary::-webkit-details-marker {
  display: none;
}

.service-type-faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 6px;
  color: var(--type-accent);
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
}

.service-type-faq-list details[open] summary::after {
  content: '−';
}

.service-type-faq-list details p {
  max-width: 820px;
  margin: -4px 0 23px;
  padding-right: 42px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.service-type-related {
  background: #071522;
}

.service-type-related-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--f-border);
  border-bottom: 1px solid var(--f-border);
}

.service-type-related-list > a {
  display: flex;
  min-width: 0;
  min-height: 168px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px 25px;
  border-left: 1px solid var(--f-border);
  color: var(--f-text);
  text-decoration: none;
  transition: background .2s ease;
}

.service-type-related-list > a:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-type-related-list > a:hover,
.service-type-related-list > a:focus-visible {
  background: var(--type-accent-soft);
}

.service-type-related-list span,
.service-type-related-list em {
  color: var(--f-text-secondary);
  font-size: 12px;
  font-style: normal;
}

.service-type-related-list strong {
  margin-top: auto;
  color: var(--f-text);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
}

.service-type-cta {
  padding: clamp(58px, 7vw, 94px) 0;
  background: linear-gradient(115deg, #0c2e4a 0%, #0b1b2f 55%, #081522 100%);
  border-top: 1px solid var(--f-border);
}

.service-type-cta .container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.service-type-cta h2 {
  max-width: 700px;
  margin: 12px 0 14px;
  color: var(--f-text);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.service-type-cta p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--f-text-secondary);
  line-height: 1.8;
}

.service-type-cta .button {
  flex: 0 0 auto;
  margin: 0;
}

@media (max-width: 1080px) {
  .service-type-hero-grid,
  .service-type-page--colocation .service-type-hero-grid,
  .service-type-page--automation .service-type-hero-grid {
    gap: 42px;
  }

  .service-type-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
  }
}

@media (max-width: 820px) {
  .service-type-hero {
    padding-top: 54px;
  }

  .service-type-hero-grid,
  .service-type-page--colocation .service-type-hero-grid,
  .service-type-page--automation .service-type-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-type-page--colocation .service-type-hero-media {
    order: -1;
  }

  .service-type-hero h1 {
    margin-top: 12px;
    font-size: clamp(40px, 9vw, 60px);
  }

  .service-type-hero-signals {
    grid-template-columns: 1fr;
  }

  .service-type-hero-signals > div,
  .service-type-hero-signals > div:first-child {
    padding: 16px 0;
    border-top: 1px solid var(--f-border);
    border-left: 0;
  }

  .service-type-hero-signals > div:first-child {
    border-top: 0;
  }

  .service-type-section-head--split,
  .service-type-cta .container {
    display: block;
  }

  .service-type-section-head--split .text-link {
    display: inline-block;
    margin-top: 10px;
  }

  .service-type-lens-list,
  .service-type-related-list {
    grid-template-columns: 1fr;
  }

  .service-type-lens-list article,
  .service-type-lens-list article:first-child,
  .service-type-related-list > a,
  .service-type-related-list > a:first-child {
    padding: 24px 0;
    border-top: 1px solid var(--f-border);
    border-left: 0;
  }

  .service-type-lens-list article:first-child,
  .service-type-related-list > a:first-child {
    border-top: 0;
  }

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

  .service-type-step-rail li,
  .service-type-step-rail li:first-child {
    padding: 22px 18px 26px;
    border-top: 1px solid var(--f-border);
    border-left: 1px solid var(--f-border);
  }

  .service-type-step-rail li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .service-type-step-rail li:nth-child(-n + 2) {
    border-top: 0;
  }

  .service-type-delivery-grid,
  .service-type-module-note {
    grid-template-columns: 1fr;
  }

  .service-type-delivery-grid > div,
  .service-type-delivery-grid > div:first-child {
    padding: 24px 0;
    border-top: 1px solid var(--f-border);
    border-left: 0;
  }

  .service-type-delivery-grid > div:first-child {
    border-top: 0;
  }

  .service-type-cta .button {
    display: inline-flex;
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .service-type-hero {
    padding-top: 42px;
  }

  .service-type-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .service-type-hero-summary {
    font-size: 17px;
    line-height: 1.7;
  }

  .service-type-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-type-hero-actions .button,
  .service-type-cta .button {
    width: 100%;
    justify-content: center;
  }

  .service-type-hero-media img {
    aspect-ratio: 16 / 10;
  }

  .service-type-section {
    padding: 58px 0;
  }

  .service-type-section-head {
    margin-bottom: 30px;
  }

  .service-type-section-head h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .service-type-section-head > p:last-child,
  .service-type-row-list p,
  .service-type-lens-list p,
  .service-type-step-rail p,
  .service-type-delivery-grid li,
  .service-type-module-note p,
  .service-type-faq-list details p {
    font-size: 14px;
  }

  .service-type-row-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0 24px;
  }

  .service-type-row-list h3,
  .service-type-lens-list h3,
  .service-type-step-rail h3,
  .service-type-delivery-grid h3 {
    font-size: 18px;
  }

  .service-type-step-rail {
    grid-template-columns: 1fr;
  }

  .service-type-step-rail li,
  .service-type-step-rail li:first-child,
  .service-type-step-rail li:nth-child(odd),
  .service-type-step-rail li:nth-child(-n + 2) {
    padding: 20px 0 24px;
    border-top: 1px solid var(--f-border);
    border-left: 0;
  }

  .service-type-step-rail li:first-child {
    border-top: 0;
  }

  .service-type-step-rail li > span {
    margin-bottom: 20px;
  }

  .service-type-compare-head {
    display: none;
  }

  .service-type-compare-row {
    display: block;
    padding: 18px 0 0;
  }

  .service-type-compare-row > strong,
  .service-type-compare-row > div {
    display: block;
    padding: 0 0 16px;
    border: 0;
  }

  .service-type-compare-row > strong {
    padding-bottom: 13px;
  }

  .service-type-compare-row > div {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .service-type-module-note {
    gap: 12px;
    padding-top: 18px;
  }

  .service-type-evidence-shell {
    padding: 20px 17px;
  }

  .service-type-faq-list summary {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }

  .service-type-faq-list summary::after {
    top: 19px;
  }

  .service-type-faq-list details p {
    padding-right: 0;
  }

  .service-type-cta {
    padding: 58px 0;
  }

  .service-type-cta h2 {
    font-size: clamp(30px, 9vw, 40px);
  }
}

/* Old-site visual composition pass: denser sections, stronger image/text rhythm. */
.service-type-page {
  background: #06131f;
}

.service-type-hero {
  padding: 52px 0 0;
  background: #06131f;
}

.service-type-hero-grid {
  max-width: 1120px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 52px;
}

.service-type-page--colocation .service-type-hero-grid {
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr);
}

.service-type-page--automation .service-type-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .85fr);
}

.service-type-hero h1 {
  max-width: 680px;
  margin: 9px 0 13px;
  font-size: clamp(36px, 4.7vw, 58px);
  font-weight: 650;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.service-type-hero-summary {
  max-width: 630px;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.72;
}

.service-type-shared {
  margin-top: 13px;
  font-size: 12px;
}

.service-type-hero-actions {
  margin-top: 22px;
}

.service-type-hero-actions .button {
  min-height: 42px;
}

.service-type-hero-media {
  aspect-ratio: auto;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.service-type-hero-media > img,
.service-type-hero-media > .service-type-hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.52;
  object-fit: cover;
}

.service-type-page--automation .service-type-hero-media {
  aspect-ratio: auto;
}

.service-type-page--automation .service-type-hero-media > img,
.service-type-page--automation .service-type-hero-media > .service-type-hero-image {
  aspect-ratio: auto;
  object-fit: contain;
}

.service-type-hero-media figcaption {
  padding: 8px 12px 9px;
  font-size: 11px;
}

.service-type-hero-signals {
  max-width: 1120px;
  margin-top: 30px;
}

.service-type-hero-signals > div,
.service-type-hero-signals > div:first-child {
  padding: 13px 18px 16px;
}

.service-type-hero-signals span {
  margin-bottom: 6px;
  font-size: 11px;
}

.service-type-hero-signals strong {
  font-size: 13px;
}

.service-type-jump {
  background: #071d2a;
}

.service-type-jump a {
  min-height: 49px;
  font-size: 12px;
}

.service-type-section {
  padding: 64px 0;
  background: #06131f;
}

.service-type-page .service-type-lenses,
.service-type-page .service-type-choice,
.service-type-page .service-type-loop,
.service-type-page .service-type-modules {
  background: #072331;
}

.service-type-page .service-type-process,
.service-type-page .service-type-path-section,
.service-type-page .service-type-method-section,
.service-type-page .service-type-delivery {
  background: #061b29;
}

.service-type-page .service-type-evidence {
  background: #0a2130;
}

.service-type-section-head {
  max-width: 900px;
  margin-bottom: 27px;
}

.service-type-section-head h2 {
  max-width: 760px;
  margin: 9px 0 12px;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.service-type-section-head > p:last-child {
  max-width: 780px;
  font-size: 14px;
  line-height: 1.75;
}

.service-type-row-list article {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 17px;
  padding: 17px 0 19px;
}

.service-type-row-number {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--type-accent);
  border-radius: 50%;
  background: var(--type-accent-soft);
  font-size: 10px;
  letter-spacing: 0;
}

.service-type-row-list h3,
.service-type-lens-list h3,
.service-type-step-rail h3,
.service-type-delivery-grid h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.service-type-row-list p,
.service-type-lens-list p,
.service-type-step-rail p,
.service-type-delivery-grid li,
.service-type-module-note p {
  font-size: 13px;
  line-height: 1.7;
}

.service-type-row-detail {
  margin-top: 8px;
  font-size: 10px;
}

.service-type-lens-list {
  gap: 12px;
  padding: 12px 0;
  border: 0;
}

.service-type-lens-list article,
.service-type-lens-list article:first-child {
  min-height: 176px;
  padding: 20px 20px 22px;
  border: 1px solid var(--f-border);
  background: #0a1c2b;
}

.service-type-lens-list article > span {
  margin-bottom: 21px;
  font-size: 11px;
}

.service-type-lens-list strong {
  margin-top: 12px;
  font-size: 10px;
}

.service-type-step-rail {
  gap: 0;
  border-top: 1px solid var(--f-border);
}

.service-type-step-rail li,
.service-type-step-rail li:first-child {
  min-height: 164px;
  padding: 18px 20px 22px;
  border-left: 1px solid var(--f-border);
  background: #0a1c2b;
}

.service-type-step-rail li:first-child {
  border-left: 0;
}

.service-type-step-rail li > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  margin-bottom: 23px;
  border: 1px solid var(--type-accent);
  border-radius: 50%;
  background: var(--type-accent-soft);
  font-size: 10px;
}

.service-type-compare {
  overflow: hidden;
  border: 1px solid var(--f-border);
  background: #091c2a;
}

.service-type-compare-head {
  background: #0c2b3a;
}

.service-type-compare-head > span,
.service-type-compare-row > * {
  padding: 14px 18px;
  border-left: 1px solid var(--f-border);
}

.service-type-compare-head > span:first-child,
.service-type-compare-row > *:first-child {
  padding-left: 18px;
}

.service-type-compare-row > strong {
  background: #0a2534;
  font-size: 14px;
}

.service-type-compare-row div span {
  margin-bottom: 5px;
  font-size: 11px;
}

.service-type-compare-row div p {
  font-size: 13px;
  line-height: 1.65;
}

.service-type-module-list article {
  background: transparent;
}

.service-type-module-note {
  padding: 16px 18px 0;
  border: 1px solid var(--f-border);
  background: #0a1c2b;
}

.service-type-delivery-grid {
  gap: 12px;
}

.service-type-delivery-grid > div,
.service-type-delivery-grid > div:first-child {
  padding: 24px 24px 26px;
  border: 1px solid var(--f-border);
  border-top: 2px solid var(--type-accent);
  background: #0a1f2e;
}

.service-type-delivery-grid li {
  padding: 9px 0 9px 17px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.service-type-delivery-grid li::before {
  top: 18px;
  width: 5px;
  height: 5px;
  border: 0;
  border-radius: 0;
}

.service-type-evidence-shell {
  max-width: 1010px;
  padding: 30px 34px 36px;
  border: 1px solid rgba(82, 151, 184, .22);
  border-top: 2px solid var(--type-accent);
  background: #10283b;
}

.service-type-evidence-shell :where(p, li) {
  color: #b6c3cc;
  font-size: 14px;
  line-height: 1.72;
}

.service-type-evidence-shell > p {
  margin: 0 0 18px;
}

.service-type-evidence-shell > ul {
  margin: 10px 0 18px;
  padding-left: 20px;
}

.service-type-evidence-shell > ul li {
  margin: 5px 0;
}

.service-type-evidence-shell :where(h2, h3, h4) {
  color: var(--f-text);
  letter-spacing: -.015em;
}

.service-type-evidence-shell h2 {
  margin: 38px 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--type-accent);
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1.25;
}

.service-type-evidence-shell h3 {
  margin: 28px 0 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--type-accent);
  font-size: 20px;
}

.service-type-evidence-shell > strong:first-child {
  display: block;
  margin-bottom: 17px;
  color: var(--f-text);
  font-size: 16px;
}

.service-type-evidence-shell > span:not(:empty) {
  display: inline-block;
  margin: 17px 10px 4px 0;
  padding: 4px 8px;
  border: 1px solid rgba(53, 195, 212, .35);
  color: var(--type-accent);
  font-size: 11px;
  line-height: 1.4;
}

.service-type-evidence-shell > a:has(> img),
.service-type-evidence-shell > p:has(> a > img) {
  display: block;
  width: min(100%, 720px);
  margin: 25px auto;
  padding: 8px;
  background: #071724;
  border: 1px solid rgba(89, 162, 194, .24);
}

.service-type-evidence-shell > a:has(> img) img,
.service-type-evidence-shell > p:has(> a > img) img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
}

.service-type-faq-list {
  max-width: 940px;
}

.service-type-faq-list summary {
  padding: 18px 44px 18px 0;
  font-size: 16px;
}

.service-type-faq-list details p {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.72;
}

.service-type-related-list {
  gap: 12px;
  padding: 12px 0;
  border: 0;
}

.service-type-related-list > a,
.service-type-related-list > a:first-child {
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--f-border);
  background: #0a1f2e;
}

.service-type-related-list strong {
  font-size: 17px;
}

.service-type-cta {
  padding: 66px 0;
  background: #0b2940;
}

.service-type-cta h2 {
  max-width: 680px;
  font-size: clamp(28px, 3.4vw, 42px);
}

@media (max-width: 820px) {
  .service-type-hero {
    padding-top: 42px;
  }

  .service-type-hero-grid,
  .service-type-page--colocation .service-type-hero-grid,
  .service-type-page--automation .service-type-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-type-hero-grid,
  .service-type-page--colocation .service-type-hero-grid,
  .service-type-page--automation .service-type-hero-grid {
    gap: 30px;
  }

  .service-type-hero h1 {
    font-size: clamp(36px, 9vw, 52px);
  }

  .service-type-hero-signals {
    margin-top: 26px;
  }

  .service-type-section {
    padding: 52px 0;
  }

  .service-type-lens-list article,
  .service-type-lens-list article:first-child {
    min-height: 0;
  }

  .service-type-step-rail li,
  .service-type-step-rail li:first-child {
    min-height: 0;
    background: transparent;
  }

  .service-type-compare-head > span,
  .service-type-compare-row > * {
    padding: 13px 14px;
  }

  .service-type-compare-head > span:first-child,
  .service-type-compare-row > *:first-child {
    padding-left: 14px;
  }

  .service-type-evidence-shell {
    padding: 24px 22px 28px;
  }
}

@media (max-width: 560px) {
  .service-type-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .service-type-hero-summary {
    font-size: 15px;
  }

  .service-type-section-head h2 {
    font-size: clamp(25px, 8.5vw, 34px);
  }

  .service-type-lens-list,
  .service-type-related-list {
    gap: 0;
    padding: 0;
  }

  .service-type-lens-list article,
  .service-type-lens-list article:first-child,
  .service-type-related-list > a,
  .service-type-related-list > a:first-child {
    padding: 18px;
    border-top: 0;
    border-bottom: 1px solid var(--f-border);
    border-left: 1px solid var(--f-border);
    border-right: 1px solid var(--f-border);
  }

  .service-type-lens-list article + article,
  .service-type-related-list > a + a {
    border-top: 0;
  }

  .service-type-evidence-shell {
    padding: 20px 16px 24px;
  }

  .service-type-evidence-shell :where(p, li) {
    font-size: 14px;
    line-height: 1.75;
  }

  .service-type-evidence-shell h2 {
    font-size: 24px;
  }

  .service-type-evidence-shell h3 {
    font-size: 19px;
  }

  .service-type-evidence-shell > a:has(> img),
  .service-type-evidence-shell > p:has(> a > img) {
    margin: 20px 0;
    padding: 5px;
  }

  .service-type-cta {
    padding: 54px 0;
  }
}

/* Image-led service summaries: concise takeaways before the full source record. */
.service-type-visual-story {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: stretch;
  margin: 26px 0 32px;
  padding-top: 14px;
  border-top: 1px solid var(--f-border);
}

.service-type-visual-story.is-reverse .service-type-visual-story-media {
  order: 2;
}

.service-type-visual-story.is-reverse .service-type-visual-story-copy {
  order: 1;
}

.service-type-visual-story-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #061522;
  border: 1px solid rgba(111, 188, 217, .3);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
}

.service-type-visual-story-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.service-type-visual-story-media.is-diagram img {
  padding: 12px;
  object-fit: contain;
  background: #071b2b;
}

.service-type-visual-story-media figcaption {
  min-height: 42px;
  padding: 9px 13px 10px;
  color: var(--f-text-secondary);
  background: #071b2b;
  border-top: 1px solid rgba(111, 188, 217, .2);
  font-size: 12px;
  line-height: 1.5;
}

.service-type-visual-story-copy {
  min-width: 0;
  padding: 17px 0 8px;
}

.service-type-visual-story-copy h3 {
  max-width: 560px;
  margin: 8px 0 11px;
  color: var(--f-text);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.service-type-visual-story-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 19px;
  color: var(--f-text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.service-type-visual-story-copy ul,
.service-type-evidence-digest-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--f-border);
}

.service-type-visual-story-copy li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0 13px;
  border-bottom: 1px solid var(--f-border);
}

.service-type-visual-story-copy li > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--type-accent);
  border-radius: 50%;
  color: var(--type-accent);
  background: var(--type-accent-soft);
  font-family: var(--font-mono);
  font-size: 10px;
}

.service-type-visual-story-copy li strong {
  display: block;
  margin: 0 0 3px;
  color: var(--f-text);
  font-size: 14px;
  font-weight: 600;
}

.service-type-visual-story-copy li p {
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 12px;
  line-height: 1.65;
}

.service-type-visual-story.no-point-index .service-type-visual-story-copy li {
  grid-template-columns: 1fr;
}

.service-type-visual-story.no-point-index .service-type-visual-story-copy li > span {
  display: none;
}

.service-type-evidence-digest {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 28px;
  margin: 26px 0 24px;
  padding: 24px;
  background: #0b2b3b;
  border: 1px solid rgba(111, 188, 217, .24);
  border-top: 2px solid var(--type-accent);
}

.service-type-evidence-digest-copy {
  min-width: 0;
}

.service-type-evidence-digest-copy h3 {
  margin: 7px 0 10px;
  color: var(--f-text);
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.24;
}

.service-type-evidence-digest-copy > p:not(.eyebrow) {
  margin: 0 0 19px;
  color: var(--f-text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

.service-type-evidence-digest-copy li {
  display: grid;
  gap: 3px;
  padding: 10px 0 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.service-type-evidence-digest-copy li strong {
  color: var(--f-text);
  font-size: 13px;
}

.service-type-evidence-digest-copy li span {
  color: var(--f-text-secondary);
  font-size: 12px;
  line-height: 1.6;
}

.service-type-evidence-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.service-type-evidence-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #061722;
  border: 1px solid rgba(111, 188, 217, .24);
}

.service-type-evidence-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.service-type-evidence-gallery figure.is-diagram img {
  padding: 8px;
  object-fit: contain;
  background: #071b2b;
}

.service-type-evidence-gallery figcaption {
  display: grid;
  gap: 3px;
  min-height: 74px;
  padding: 10px;
}

.service-type-evidence-gallery figcaption strong {
  color: var(--f-text);
  font-size: 12px;
}

.service-type-evidence-gallery figcaption span {
  color: var(--f-text-secondary);
  font-size: 11px;
  line-height: 1.5;
}

.service-type-full-record {
  margin-top: 22px;
  border-top: 1px solid var(--f-border);
}

.service-type-full-record > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 14px;
  color: var(--type-accent);
  background: #071d2a;
  cursor: pointer;
  font-size: 13px;
  list-style: none;
}

.service-type-full-record > summary::-webkit-details-marker {
  display: none;
}

.service-type-full-record > summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
}

.service-type-full-record[open] > summary::after {
  content: '−';
}

.service-type-full-record .service-type-evidence-shell {
  margin-top: 14px;
}

@media (max-width: 820px) {
  .service-type-visual-story,
  .service-type-evidence-digest {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-type-visual-story.is-reverse .service-type-visual-story-media,
  .service-type-visual-story.is-reverse .service-type-visual-story-copy {
    order: initial;
  }

  .service-type-visual-story-media img {
    aspect-ratio: 1.65;
  }

  .service-type-visual-story-media.is-diagram img {
    aspect-ratio: 1.25;
  }

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

@media (max-width: 560px) {
  .service-type-visual-story {
    margin-top: 18px;
    padding-top: 10px;
  }

  .service-type-visual-story-copy {
    padding-top: 4px;
  }

  .service-type-visual-story-copy h3 {
    font-size: 25px;
  }

  .service-type-evidence-digest {
    padding: 18px 16px 16px;
  }

  .service-type-evidence-gallery {
    grid-template-columns: 1fr;
  }

  .service-type-evidence-gallery figure {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
  }

  .service-type-evidence-gallery img {
    height: 100%;
    aspect-ratio: auto;
  }

  .service-type-evidence-gallery figcaption {
    min-height: 0;
    align-content: center;
  }
}

/* Technical-image revision: use the source diagrams as the visual anchor and
 * keep the summary path short enough to scan before the full source record. */
.service-type-page--advisory {
  --type-accent: #6bd5ff;
  --type-accent-soft: rgba(107, 213, 255, .16);
}

.service-type-page--colocation {
  --type-accent: #74dec9;
  --type-accent-soft: rgba(116, 222, 201, .16);
}

.service-type-page--automation {
  --type-accent: #b3df77;
  --type-accent-soft: rgba(179, 223, 119, .16);
}

.service-type-hero {
  background: #071825;
}

.service-type-hero-media.is-contain,
.service-type-hero-media.is-diagram {
  background: #edf5f4;
  border-color: rgba(161, 218, 215, .5);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .22);
}

.service-type-hero-media.is-contain > img,
.service-type-hero-media.is-diagram > img {
  height: auto;
  aspect-ratio: 1.7;
  padding: 12px;
  object-fit: contain;
  background: #edf5f4;
}

.service-type-hero-media.is-contain > img {
  aspect-ratio: 1.5;
}

.service-type-hero-media.is-contain figcaption,
.service-type-hero-media.is-diagram figcaption {
  color: #d7e7e5;
  background: #12303b;
  border-top-color: rgba(161, 218, 215, .35);
}

.service-type-visual-story {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: 26px;
  padding: 14px;
  background: #0b2635;
  border: 1px solid rgba(116, 199, 210, .24);
  border-top: 2px solid var(--type-accent);
}

.service-type-visual-story.is-reverse .service-type-visual-story-media,
.service-type-visual-story.is-reverse .service-type-visual-story-copy {
  order: initial;
}

.service-type-visual-story-media {
  align-self: stretch;
  border-color: rgba(116, 199, 210, .36);
  box-shadow: none;
}

.service-type-visual-story-media.is-diagram {
  background: #eff6f5;
}

.service-type-visual-story-media.is-diagram img {
  background: #eff6f5;
}

.service-type-visual-story-copy {
  padding: 12px 8px 8px 10px;
}

.service-type-visual-story-copy li,
.service-type-visual-story.no-point-index .service-type-visual-story-copy li {
  grid-template-columns: 1fr;
  padding-left: 13px;
  border-left: 2px solid var(--type-accent);
}

.service-type-visual-story-copy li > span,
.service-type-visual-story.no-point-index .service-type-visual-story-copy li > span {
  display: none;
}

.service-type-evidence-digest {
  background: #0b2d3a;
  border-color: rgba(116, 199, 210, .3);
}

.service-type-evidence-gallery.is-count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.service-type-evidence-gallery.is-count-1 figure {
  width: 100%;
}

.service-type-evidence-gallery.is-count-1 figure.is-diagram img {
  aspect-ratio: 1.72;
}

.service-type-evidence-gallery.is-count-1 figcaption {
  min-height: 60px;
}

.service-type-full-record > summary {
  background: #0b2533;
}

@media (max-width: 820px) {
  .service-type-visual-story {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .service-type-visual-story-copy {
    padding: 5px 5px 4px;
  }

  .service-type-hero-media.is-contain > img,
  .service-type-hero-media.is-diagram > img {
    aspect-ratio: 1.55;
  }
}

/* Colocation evidence: give the technical photo a deliberate landscape slot
 * so the three operating responsibilities read as a compact summary beside it. */
.service-type-evidence-digest {
  align-items: start;
}

.service-type-page--colocation .service-type-evidence-digest {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.service-type-page--colocation .service-type-evidence-digest-copy {
  padding: 4px 0 0;
}

.service-type-page--colocation .service-type-evidence-digest-copy h3 {
  max-width: 440px;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.22;
}

.service-type-page--colocation .service-type-visual-story-copy h3 {
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.22;
}

.service-type-page--colocation .service-type-evidence-gallery {
  align-content: start;
}

.service-type-page--colocation .service-type-evidence-gallery figure {
  background: #102e3a;
}

.service-type-page--colocation .service-type-evidence-gallery img {
  aspect-ratio: 1.55;
  object-fit: cover;
}

.service-type-page--colocation .service-type-evidence-gallery figure.is-wide img {
  aspect-ratio: 1.65;
  object-fit: cover;
}

.service-type-page--colocation .service-type-evidence-gallery figcaption {
  min-height: 58px;
}

.service-type-visual-story-media.is-wide img {
  aspect-ratio: 1.78;
  object-fit: cover;
}

.service-type-page--colocation .service-type-section-head h2 {
  font-size: clamp(25px, 2.6vw, 32px);
  line-height: 1.2;
}

.service-type-page--colocation .service-type-section-head > p:last-child {
  font-size: 16px;
  line-height: 1.85;
}

.service-type-page--colocation .service-type-row-list p,
.service-type-page--colocation .service-type-step-rail p,
.service-type-page--colocation .service-type-compare-row p,
.service-type-page--colocation .service-type-evidence-digest-copy > p:not(.eyebrow),
.service-type-page--colocation .service-type-evidence-digest-copy li span {
  font-size: 16px;
  line-height: 1.85;
}

.service-type-page--colocation .service-type-evidence-digest-copy li strong {
  font-size: 16px;
}

@media (max-width: 820px) {
  .service-type-page--colocation .service-type-evidence-digest {
    grid-template-columns: 1fr;
  }

  .service-type-page--colocation .service-type-section-head h2 {
    font-size: clamp(25px, 7.2vw, 31px);
  }
}

@media (max-width: 560px) {
	.service-type-page--colocation .service-type-evidence-gallery figure {
		display: block;
	}

	.service-type-page--colocation .service-type-evidence-gallery img {
		height: auto;
		aspect-ratio: 1.55;
		object-fit: cover;
	}

	.service-type-page--colocation .service-type-evidence-gallery figure.is-wide img {
		aspect-ratio: 1.55;
	}
}

/* Phase 11 Data Center pilot: a target-scoped infrastructure narrative.
 * The page is organized around facility relationships, operating boundaries
 * and handover evidence rather than another repeated card grid. */
.service-type-page[data-service-target="data-center-infrastructure"] {
  --dc-line: rgba(124, 196, 214, .28);
  --dc-line-strong: rgba(103, 221, 215, .56);
  --dc-panel: #0a2432;
  --dc-panel-deep: #071a28;
  --dc-accent: #69ded2;
  --dc-text: #f2f7f9;
  --dc-muted: #aec1cb;
  background: #06131f;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-section {
  padding: 82px 0;
  background: #06131f;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-section:nth-of-type(even) {
  background: #071d2a;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-section .container {
  max-width: 1160px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-section-head,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-section .service-type-section-head {
  max-width: 920px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .service-type-section-head h2 {
  max-width: 860px;
  font-size: clamp(28px, 3.25vw, 42px);
  line-height: 1.22;
}

.service-type-page[data-service-target="data-center-infrastructure"] .service-type-section-head > p:last-child,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-prose p {
  max-width: 820px;
  color: var(--dc-muted);
  font-size: 15px;
  line-height: 1.82;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-prose {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 34px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-problem {
  padding-top: 76px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-section-intro {
  max-width: 1040px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-problem-rail {
  margin-top: 34px;
  border-top: 1px solid var(--dc-line-strong);
  border-bottom: 1px solid var(--dc-line);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-rail-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0 15px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-rail-label span {
  color: var(--dc-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-rail-label strong {
  color: var(--dc-muted);
  font-size: 13px;
  font-weight: 500;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-problem-rail article,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-list article,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-point-list article,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-points article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  padding: 19px 0 21px;
  border-top: 1px solid var(--dc-line);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-problem-rail article:first-of-type {
  border-top: 0;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--dc-accent);
  border-radius: 50%;
  color: var(--dc-accent);
  background: rgba(105, 222, 210, .08);
  font-family: var(--font-mono);
  font-size: 10px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-problem-rail h3,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-list h3,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-point-list h3,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-points h3 {
  margin: 0 0 5px;
  color: var(--dc-text);
  font-size: 18px;
  line-height: 1.35;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-problem-rail p,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-list p,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-point-list p,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-points p {
  margin: 0;
  color: var(--dc-muted);
  font-size: 14px;
  line-height: 1.72;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-problem-rail article strong,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-list article strong {
  display: block;
  margin-top: 9px;
  color: var(--dc-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture {
  background: #092432;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid var(--dc-line);
  border-top: 2px solid var(--dc-accent);
  background: var(--dc-panel-deep);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-visual,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-visual,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-network-visual,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-visual,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-delivery-visual {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--dc-line);
  background: #061722;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-visual img,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-visual img,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-network-visual img,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-visual img,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-delivery-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.56;
  object-fit: cover;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-visual img {
  aspect-ratio: 1.46;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-visual img,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-visual img {
  aspect-ratio: 1.42;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-visual figcaption,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-visual figcaption,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-network-visual figcaption,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-visual figcaption,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-delivery-visual figcaption {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--dc-muted);
  background: #071d2a;
  border-top: 1px solid var(--dc-line);
  font-size: 12px;
  line-height: 1.55;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-copy {
  padding: 14px 10px 5px 4px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-copy h3 {
  max-width: 430px;
  margin: 8px 0 22px;
  color: var(--dc-text);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-copy ol,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-copy li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--dc-line);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-copy li span {
  color: var(--dc-accent);
  font-family: var(--font-mono);
  font-size: 12px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-copy li strong {
  display: block;
  margin-bottom: 3px;
  color: var(--dc-text);
  font-size: 15px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-copy li p {
  margin: 0;
  color: var(--dc-muted);
  font-size: 13px;
  line-height: 1.62;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope {
  background: #06131f;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-grid,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-network-grid,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-grid,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
  margin-top: 34px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-list {
  border-top: 1px solid var(--dc-line-strong);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-list article:first-child,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-point-list article:first-child,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-points article:first-child,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-step-list li:first-child {
  border-top: 0;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-network {
  background: #092432;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-network-grid,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, .95fr);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-network-visual,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-visual {
  order: 2;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-point-list,
.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-points {
  border-top: 1px solid var(--dc-line-strong);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource {
  background: #06131f;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-delivery {
  background: #0a2635;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-delivery-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .94fr);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-step-list {
  border-top: 1px solid var(--dc-line-strong);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-step-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0 20px;
  border-top: 1px solid var(--dc-line);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-step-list h3 {
  margin: 0 0 5px;
  color: var(--dc-text);
  font-size: 18px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-step-list p {
  margin: 0;
  color: var(--dc-muted);
  font-size: 14px;
  line-height: 1.72;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-records {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 32px;
  margin-top: 48px;
  padding: 28px 30px 30px;
  border: 1px solid var(--dc-line);
  border-top: 2px solid var(--dc-accent);
  background: var(--dc-panel-deep);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-records-intro h3 {
  max-width: 430px;
  margin: 8px 0 10px;
  color: var(--dc-text);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.25;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-records-intro > p:last-child {
  margin: 0;
  color: var(--dc-muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-record-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--dc-line);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-record-list article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  padding: 14px 14px 16px 0;
  border-bottom: 1px solid var(--dc-line);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-record-list article:nth-child(odd) {
  margin-right: 14px;
  border-right: 1px solid var(--dc-line);
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-record-list article > span {
  color: var(--dc-accent);
  font-family: var(--font-mono);
  font-size: 11px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-record-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dc-text);
  font-size: 14px;
}

.service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-record-list p {
  margin: 0;
  color: var(--dc-muted);
  font-size: 12px;
  line-height: 1.65;
}

.service-type-page[data-service-target="data-center-infrastructure"] .service-type-faq-list,
.service-type-page[data-service-target="data-center-infrastructure"] .service-type-related-list {
  max-width: none;
}

.service-type-page[data-service-target="data-center-infrastructure"] .service-type-faq-list summary {
  font-size: 17px;
}

@media (max-width: 820px) {
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-section {
    padding: 62px 0;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .service-type-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .service-type-hero-grid > *,
  .service-type-page[data-service-target="data-center-infrastructure"] .service-type-hero-copy,
  .service-type-page[data-service-target="data-center-infrastructure"] .service-type-hero-media {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .service-type-hero h1,
  .service-type-page[data-service-target="data-center-infrastructure"] .service-type-hero-summary,
  .service-type-page[data-service-target="data-center-infrastructure"] .service-type-hero-media figcaption {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-prose,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-frame,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-grid,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-network-grid,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-grid,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-delivery-grid,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-records {
    grid-template-columns: 1fr;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-copy {
    padding: 5px 2px 0;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-network-visual,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-visual {
    order: initial;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-records {
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-section {
    padding: 50px 0;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .service-type-hero h1 {
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.12;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-prose {
    display: block;
    margin-bottom: 24px;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-prose p + p {
    margin-top: 12px;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-rail-label {
    display: block;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-rail-label strong {
    display: block;
    margin-top: 7px;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-frame {
    margin-top: 24px;
    padding: 10px;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-architecture-visual img,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-visual img,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-network-visual img,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-visual img,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-delivery-visual img {
    aspect-ratio: 1.35;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-records {
    padding: 22px 17px 18px;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-record-list {
    grid-template-columns: 1fr;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-record-list article:nth-child(odd) {
    margin-right: 0;
    border-right: 0;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .service-type-section-head h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-problem-rail h3,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-list h3,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-point-list h3,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-points h3,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-step-list h3 {
    font-size: 17px;
  }

  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-problem-rail p,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-scope-list p,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-point-list p,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-resource-points p,
  .service-type-page[data-service-target="data-center-infrastructure"] .yuqi-dc-step-list p {
    font-size: 14px;
  }
}

/* Colocation delivery and FAQ: the source material is decision-support content,
 * so its lists and answers need the same reading scale as the main sections. */
.service-type-page--colocation .service-type-delivery-grid h3 {
  font-size: 20px;
  line-height: 1.35;
}

.service-type-page--colocation .service-type-delivery-grid li {
  font-size: 16px;
  line-height: 1.85;
  padding-top: 11px;
  padding-bottom: 11px;
}

.service-type-page--colocation .service-type-delivery-grid li::before {
  top: 21px;
}

.service-type-page--colocation .service-type-faq-list summary {
  font-size: 18px;
  line-height: 1.5;
}

.service-type-page--colocation .service-type-faq-list summary::after {
  top: 23px;
}

.service-type-page--colocation .service-type-faq-list details p {
  font-size: 16px;
  line-height: 1.85;
}

.service-type-page--colocation .service-type-related-list strong {
  font-size: 19px;
}

@media (max-width: 560px) {
  .service-type-page--colocation .service-type-delivery-grid h3 {
    font-size: 19px;
  }

  .service-type-page--colocation .service-type-faq-list summary {
    font-size: 17px;
  }

  .service-type-page--colocation .service-type-faq-list summary::after {
    top: 22px;
  }
}

/* Shared readability rules for the remaining verified service articles. */
.service-commercial-page .service-commercial-section-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
}

.service-commercial-page .service-commercial-section-head > p,
.service-commercial-page .service-commercial-section-head--split > p {
  font-size: 17px;
  line-height: 1.85;
}

.service-commercial-page .service-commercial-step-list p,
.service-commercial-page .service-commercial-delivery-grid li,
.service-commercial-page .service-commercial-faq-list details p {
  font-size: 16px;
  line-height: 1.85;
}

.service-commercial-page .service-commercial-delivery-grid h3 {
  font-size: 20px;
  line-height: 1.35;
}

/* Advisory pilot: establish the decision problem before the visual planning
 * stories so this page reads as an IT advisory service, not a generic catalog. */
.service-type-page--advisory .service-type-advisory-problems {
  padding: clamp(72px, 7vw, 80px) 0 clamp(52px, 5vw, 58px);
  scroll-margin-top: calc(var(--f-header-height) + 54px);
  background: #081a27;
  border-top: 1px solid rgba(116, 199, 210, .2);
  border-bottom: 1px solid rgba(116, 199, 210, .2);
}

.service-type-page--advisory .service-type-advisory-problems > .container {
  max-width: 1200px;
}

.service-type-advisory-problems-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
}

.service-type-advisory-problems-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(116, 199, 210, .26);
}

.service-type-advisory-problems-kicker-rule {
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 2px;
  background: var(--type-accent);
}

.service-type-advisory-problems-kicker .eyebrow {
  margin: 0;
  color: var(--type-accent);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.55;
}

.service-type-advisory-problems-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.service-type-advisory-problems-copy .service-type-advisory-problems-kicker {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.service-type-advisory-problems-copy h2 {
  margin: 0;
  max-width: 600px;
  color: var(--f-text);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
}

.service-type-advisory-problems-summary {
  max-width: 600px;
  margin: 26px 0 0;
  padding: 0;
  border-left: 0;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.95;
}

.service-type-advisory-problems-visual {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.service-type-advisory-problems-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 1px solid rgba(116, 199, 210, .34);
  background: #061522;
}

.service-type-advisory-problems-visual figcaption {
  margin-top: 12px;
  color: var(--f-text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

.service-type-advisory-problem-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(58px, 7vw, 82px);
}

.service-type-advisory-problem-list article {
  min-height: 250px;
  padding: 28px 27px 30px;
  background: #0b2635;
  border: 1px solid rgba(116, 199, 210, .28);
}

.service-type-advisory-problem-list article > span {
  display: block;
  color: var(--type-accent);
  font-family: var(--f-mono, monospace);
  font-size: 13px;
  letter-spacing: .12em;
}

.service-type-advisory-problem-list h3 {
  margin-top: 46px;
  color: var(--f-text);
  font-size: 22px;
  line-height: 1.35;
}

.service-type-advisory-problem-list p {
  margin-top: 14px;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.85;
}

.service-type-page--advisory .service-type-advisory-lenses-visual {
  margin-top: clamp(34px, 5vw, 58px);
}

.service-type-page--advisory .service-type-method-section .service-type-visual-story {
  margin-top: clamp(30px, 4vw, 48px);
}

.service-type-page--advisory .service-type-method-section .service-type-step-rail {
  margin-top: clamp(34px, 5vw, 58px);
}

.service-type-page--advisory .service-type-section-head > p:last-child,
.service-type-page--advisory .service-type-row-list p,
.service-type-page--advisory .service-type-step-rail p,
.service-type-page--advisory .service-type-delivery-grid li,
.service-type-page--advisory .service-type-faq-list details p {
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 820px) {
  .service-type-advisory-problems-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-type-advisory-problems-copy h2 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .service-type-advisory-problems-summary {
    margin-top: 22px;
  }

  .service-type-advisory-problems-visual img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .service-type-advisory-problem-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-type-advisory-problem-list article {
    min-height: 0;
  }

  .service-type-advisory-problem-list h3 {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .service-type-page--advisory .service-type-advisory-problems {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .service-type-advisory-problem-list article {
    padding: 22px 18px 24px;
  }

  .service-type-advisory-problems-kicker {
    gap: 12px;
    padding-bottom: 13px;
  }

  .service-type-advisory-problems-kicker-rule {
    flex-basis: 28px;
    width: 28px;
  }

  .service-type-advisory-problem-list p {
    font-size: 16px;
  }

}

.service-commercial-page .service-commercial-faq-list summary {
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .service-commercial-page .service-commercial-section-head h2 {
    font-size: clamp(27px, 7.2vw, 32px);
  }

  .service-commercial-page .service-commercial-faq-list summary {
    font-size: 17px;
  }
}

/* Category 06: technical pages use one Hero plus one mid-page technical
 * image, then a decision-led reading path. Legacy article content is not
 * rendered on the commercial page. */
.service-type-page--smart-engineering {
  --type-accent: #63d9d0;
  --type-accent-soft: rgba(99, 217, 208, .1);
}

.service-type-page--smart-engineering .service-type-hero h1 {
  max-width: 720px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.12;
}

.service-type-page--smart-engineering .service-type-hero-media > img,
.service-type-page--smart-engineering .service-type-hero-media > .service-type-hero-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-type-page--smart-engineering .service-type-section-head h2 {
  max-width: 860px;
  font-size: clamp(30px, 3.25vw, 46px);
  line-height: 1.22;
}

@media (min-width: 821px) {
  .service-type-page--smart-engineering .service-type-section-head {
    max-width: none;
  }

  .service-type-page--smart-engineering .service-type-section-head h2 {
    max-width: none;
    font-size: clamp(28px, 2.1vw, 36px);
    white-space: nowrap;
  }
}

.service-type-page--smart-engineering .service-type-section-head > p:last-child,
.service-type-page--smart-engineering .service-type-row-list p,
.service-type-page--smart-engineering .service-type-step-rail p,
.service-type-page--smart-engineering .service-type-delivery-grid li,
.service-type-page--smart-engineering .service-type-faq-list details p {
  font-size: 16px;
  line-height: 1.85;
}

.service-smart-focus {
  background: #071b29;
}

.service-smart-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 40px;
  align-items: start;
}

.service-smart-focus-points {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.service-smart-focus-points article {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: 21px 22px 22px;
  border: 1px solid rgba(111, 188, 217, .22);
  border-left: 3px solid var(--type-accent);
  background: linear-gradient(135deg, rgba(15, 43, 59, .82), rgba(8, 25, 38, .72));
}

.service-smart-focus-points article:first-child {
  padding-left: 22px;
}

.service-smart-focus-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(105, 221, 217, .72);
  border-radius: 50%;
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  line-height: 1;
}

.service-smart-focus-points h3 {
  margin: 0 0 7px;
  color: var(--f-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.service-smart-focus-points p {
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.85;
}

.service-smart-focus-visual {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  background: #071824;
  border: 1px solid rgba(111, 188, 217, .28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.service-smart-focus-visual img {
  flex: 1 1 auto;
  display: block;
  min-height: 0;
  width: 100%;
  object-fit: cover;
}

.service-smart-focus-visual figcaption {
  padding: 13px 16px 14px;
  color: var(--f-text-secondary);
  border-top: 1px solid rgba(111, 188, 217, .2);
  font-size: 14px;
  line-height: 1.6;
}

.service-smart-scope {
  background: #06131f;
}

.service-type-page--smart-engineering .service-smart-scope-list {
  margin-top: 8px;
}

.service-type-page--smart-engineering .service-smart-scope-list h3 {
  font-size: 20px;
  line-height: 1.4;
}

.service-type-page--smart-engineering .service-smart-scope-list .service-type-row-detail {
  font-size: 12px;
}

.service-smart-process {
  background: #092331;
}

.service-type-page--smart-engineering .service-smart-process .service-type-step-rail h3 {
  font-size: 19px;
}

.service-type-page--smart-engineering .service-type-delivery-grid h3 {
  font-size: 21px;
}

.service-type-page--smart-engineering .service-type-faq-list summary {
  font-size: 19px;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .service-type-page--smart-engineering .service-type-hero h1 {
    font-size: clamp(36px, 9vw, 52px);
  }

  .service-smart-focus-grid {
    display: block;
  }

  .service-type-page--smart-engineering .service-type-section-head h2 {
    font-size: clamp(30px, 7.5vw, 40px);
    white-space: normal;
  }

  .service-type-page--smart-engineering .service-smart-focus-points p,
  .service-type-page--smart-engineering .service-type-section-head > p:last-child,
  .service-type-page--smart-engineering .service-type-row-list p,
  .service-type-page--smart-engineering .service-type-step-rail p,
  .service-type-page--smart-engineering .service-type-delivery-grid li,
  .service-type-page--smart-engineering .service-type-faq-list details p {
    font-size: 15px;
  }

  .service-smart-focus-points {
    display: grid;
    gap: 10px;
  }

  .service-smart-focus-points article,
  .service-smart-focus-points article:first-child {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 16px 19px;
    border-left: 3px solid var(--type-accent);
  }

  .service-smart-focus-points article:first-child {
    padding-left: 16px;
  }

  .service-smart-focus-index {
    width: 27px;
    height: 27px;
    font-size: 10px;
  }

  .service-smart-focus-visual {
    align-self: auto;
    display: block;
    height: auto;
    margin-top: 26px;
  }

  .service-smart-focus-visual img {
    aspect-ratio: 16 / 9;
  }

  .service-smart-focus-visual figcaption {
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
	.service-type-page--smart-engineering .service-type-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .service-type-page--smart-engineering .service-type-section-head h2 {
    font-size: clamp(28px, 8.5vw, 35px);
  }

  .service-smart-focus-points article {
    padding: 17px 14px 18px;
  }

  .service-smart-focus-points h3 {
    font-size: 19px;
  }

  .service-type-page--smart-engineering .service-type-faq-list summary {
    font-size: 17px;
	}
}

/* Category 02 sample: an architecture-led integration page. It uses long-form
 * explanation, relationship layers and separated technical visuals rather than
 * the repeated card rhythm used by the other service categories. */
.service-type-page--enterprise-integration {
  --type-accent: #6ee3d8;
  --type-accent-soft: rgba(110, 227, 216, .11);
  --type-panel: #0b2230;
  --integration-ink: #0a1824;
  --integration-copy-width: 920px;
}

.service-type-page--infrastructure {
  --type-accent: #6ee3d8;
  --type-accent-soft: rgba(110, 227, 216, .11);
  --type-panel: #0b2230;
  --integration-ink: #0a1824;
  --integration-copy-width: 920px;
}

.service-type-page--enterprise-integration .service-type-hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr);
  gap: clamp(40px, 6vw, 94px);
}

.service-type-page--infrastructure .service-type-hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr);
  gap: clamp(40px, 6vw, 94px);
}

.service-type-page--enterprise-integration .service-type-hero h1 {
  max-width: 740px;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.03;
}

.service-type-page--infrastructure .service-type-hero h1 {
  max-width: 740px;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.03;
}

.service-type-page--enterprise-integration .service-type-hero-media.is-wide > img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-type-page--infrastructure .service-type-hero-media.is-wide > img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-type-page--enterprise-integration .service-type-hero-summary {
  max-width: 620px;
  font-size: clamp(18px, 1.75vw, 22px);
}

.service-type-page--infrastructure .service-type-hero-summary {
  max-width: 620px;
  font-size: clamp(18px, 1.75vw, 22px);
}

.service-integration-section {
  position: relative;
  padding: clamp(64px, 8vw, 116px) 0;
  scroll-margin-top: calc(var(--f-header-height) + 58px);
  background: #071521;
  border-top: 1px solid var(--f-border);
}

.service-integration-section:nth-child(even) {
  background: #091f2d;
}

.service-integration-section .container {
  max-width: 1180px;
}

/* Keep the long-form copy on the same left rail as the section navigation.
 * The default integration container is narrower than the jump-nav container,
 * which makes the eyebrow and body appear shifted to the right on desktop. */
@media (min-width: 821px) {
  .service-type-page--enterprise-integration .service-integration-section > .container,
  .service-type-page--infrastructure .service-integration-section > .container {
    width: min(var(--f-container), calc(100% - 48px));
    max-width: var(--f-container);
  }

  /* Keep the problem copy on the same main content rail as the hero.
   * The problem section uses a nested default container, which otherwise
   * pulls its left edge too close to the viewport on desktop. */
  .service-type-page--enterprise-integration .service-integration-problem > .container,
  .service-type-page--infrastructure .service-integration-problem > .container {
    width: min(var(--f-container), calc(100% - 160px));
    max-width: var(--f-container);
  }
}

@media (max-width: 820px) {
  .service-type-page--enterprise-integration .service-integration-section > .container,
  .service-type-page--infrastructure .service-integration-section > .container {
    width: calc(100% - 36px);
    max-width: none;
  }
}

.service-type-page--enterprise-integration .service-integration-section .service-type-section-head .eyebrow,
.service-type-page--infrastructure .service-integration-section .service-type-section-head .eyebrow {
  margin-bottom: 18px;
}

.service-type-page--enterprise-integration .service-integration-section .service-type-section-head h2,
.service-type-page--infrastructure .service-integration-section .service-type-section-head h2 {
  margin-top: 0;
}

.service-integration-section .service-type-section-head {
  max-width: var(--integration-copy-width);
  margin-bottom: 28px;
}

.service-integration-section .service-type-section-head h2 {
  max-width: var(--integration-copy-width);
  font-size: clamp(30px, 3.35vw, 48px);
  line-height: 1.18;
}

.service-integration-section .service-type-section-head > p:last-child,
.service-integration-prose p,
.service-integration-point-list p,
.service-integration-layer-list p,
.service-integration-scope-list p,
.service-integration-step-list p,
.service-integration-records > p,
.service-integration-record-list p {
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.78;
}

.service-integration-prose {
  max-width: var(--integration-copy-width);
  margin: 0 0 34px;
}

.service-integration-prose p {
  margin: 0 0 14px;
}

.service-integration-prose p:last-child {
  margin-bottom: 0;
}

.service-integration-problem {
  background: #06131f;
}

/* The problem list and the following architecture section otherwise stack
 * two full section paddings into one oversized blank band. */
.service-integration-problem {
  padding-bottom: clamp(42px, 4vw, 58px);
}

.service-integration-problem + .service-integration-architecture {
  padding-top: clamp(42px, 4vw, 58px);
}

.service-integration-problem-layout,
.service-integration-scope-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 46px;
}

.service-integration-problem-copy,
.service-integration-scope-copy {
  min-width: 0;
}

.service-integration-problem-copy .service-type-section-head,
.service-integration-scope-copy .service-type-section-head {
  max-width: 660px;
}

.service-integration-problem-copy .service-type-section-head h2,
.service-integration-scope-copy .service-type-section-head h2 {
  max-width: 660px;
}

.service-integration-problem-copy .service-integration-prose,
.service-integration-scope-copy .service-integration-prose {
  max-width: 660px;
  margin-bottom: 0;
}

.service-integration-problem-visual,
.service-integration-scope-visual {
  width: 100%;
  max-width: none;
  margin: 0;
}

.service-integration-problem-visual.is-photo img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-integration-problem-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-top: 0;
}

.service-integration-problem-list-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 17px 0 15px;
  border-top: 1px solid var(--f-border);
  border-bottom: 1px solid var(--f-border);
}

.service-integration-problem-list-head p {
  margin: 0;
}

.service-integration-problem-list-head p:last-child {
  max-width: 620px;
  color: var(--f-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.service-integration-problem-list article {
  min-width: 0;
  min-height: 218px;
  padding: 23px 22px 24px;
  border: 1px solid rgba(112, 191, 213, .22);
  background: rgba(11, 34, 48, .62);
}

.service-integration-problem-list article > span {
  display: block;
  margin-bottom: 24px;
}

.service-integration-number,
.service-integration-problem-list article > span,
.service-integration-scope-list article > span {
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  line-height: 1.5;
}

.service-integration-problem-list h3,
.service-integration-scope-list h3,
.service-integration-layer-list h3,
.service-integration-point-list h3,
.service-integration-step-list h3,
.service-integration-record-list strong {
  margin: 0 0 9px;
  color: var(--f-text);
  font-size: 21px;
  font-weight: 550;
  line-height: 1.35;
}

.service-integration-problem-list p,
.service-integration-scope-list p,
.service-integration-layer-list p,
.service-integration-point-list p,
.service-integration-step-list p,
.service-integration-record-list p {
  margin: 0;
}

.service-integration-problem-list strong,
.service-integration-scope-list strong {
  display: block;
  margin-top: 14px;
  color: var(--type-accent);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.service-integration-architecture {
  background: #0a1c2a;
}

.service-integration-architecture-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 46px;
  align-items: stretch;
  margin-top: 34px;
}

.service-integration-visual {
  min-width: 0;
  margin: 0 auto;
  overflow: hidden;
  background: #f5f7f9;
  border: 1px solid rgba(112, 191, 213, .26);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

.service-integration-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-integration-visual.is-diagram img {
  aspect-ratio: 1.85;
  object-fit: contain;
}

.service-integration-visual.is-portrait img {
  aspect-ratio: 1.35;
  object-fit: cover;
}

.service-integration-visual.is-square img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-integration-visual.is-wide img {
  aspect-ratio: 1.65;
  object-fit: cover;
}

.service-integration-visual figcaption {
  padding: 14px 16px 15px;
  color: #5f7180;
  background: #f5f7f9;
  border-top: 1px solid rgba(23, 54, 70, .12);
  font-size: 13px;
  line-height: 1.65;
}

.service-integration-architecture-copy {
  align-self: center;
  padding: 6px 0;
}

.service-integration-architecture-copy h3 {
  max-width: 360px;
  margin: 13px 0 16px;
  color: var(--f-text);
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.2;
}

.service-integration-architecture-copy > p:last-child {
  max-width: 390px;
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.service-integration-layer-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid var(--f-border);
  border-bottom: 1px solid var(--f-border);
}

.service-integration-layer-list article {
  min-width: 0;
  padding: 24px 22px 28px;
  border-left: 1px solid var(--f-border);
}

.service-integration-layer-list article:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-integration-layer-list article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 13px;
}

.service-integration-layer-list h3 {
  font-size: 18px;
}

.service-integration-scope {
  background: #071521;
}

.service-integration-scope-intro {
  display: block;
  margin-bottom: 42px;
}

.service-integration-scope-copy {
  max-width: var(--integration-copy-width);
}

.service-integration-scope-intro .service-type-section-head,
.service-integration-scope-intro .service-integration-prose {
  max-width: var(--integration-copy-width);
}

.service-integration-scope-intro .service-type-section-head {
  margin-bottom: 26px;
}

.service-integration-scope-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 0;
}

.service-integration-scope-list article {
  min-width: 0;
  min-height: 206px;
  padding: 22px 22px 23px;
  border: 1px solid rgba(112, 191, 213, .22);
  background: rgba(7, 21, 33, .7);
}

.service-integration-scope-visual {
  grid-column: auto;
}

.service-integration-scope-visual.is-diagram img {
  aspect-ratio: auto;
  object-fit: contain;
}

.service-integration-scope-visual.is-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-integration-network {
  background: #092333;
}

.service-integration-network-grid,
.service-integration-resource-grid,
.service-integration-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(330px, 1.04fr);
  gap: 48px;
  align-items: start;
}

.service-integration-point-list {
  border-top: 1px solid var(--f-border);
}

.service-integration-point-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 21px 0 22px;
  border-bottom: 1px solid var(--f-border);
}

.service-integration-point-list article > span,
.service-integration-record-list article > span {
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
}

.service-integration-point-list h3 {
  font-size: 19px;
}

.service-integration-network-visual {
  align-self: start;
}

.service-integration-network-visual.is-portrait img {
  aspect-ratio: 1.55;
  object-fit: cover;
}

.service-integration-resource {
  background: #06131f;
}

.service-integration-resource-grid {
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
}

.service-integration-resource-visual {
  max-width: 500px;
}

.service-integration-resource-visual.is-square img {
  aspect-ratio: 1 / 1;
}

.service-integration-resource-grid .service-integration-point-list {
  align-self: center;
}

.service-integration-delivery {
  background: #0a1f2d;
}

.service-integration-delivery-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}

.service-integration-step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--f-border);
}

.service-integration-step-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 21px 0 23px;
  border-bottom: 1px solid var(--f-border);
}

.service-integration-step-list li > span {
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
}

.service-integration-step-list h3 {
  font-size: 19px;
}

.service-integration-delivery-visual.is-wide img {
  aspect-ratio: 1.45;
}

.service-integration-records {
  max-width: 1020px;
  margin-top: 58px;
  padding: 36px 0 0;
  border-top: 1px solid var(--f-border);
}

.service-integration-records h3 {
  max-width: 800px;
  margin: 12px 0 15px;
  color: var(--f-text);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.2;
}

.service-integration-records > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0 0 30px;
}

.service-integration-record-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--f-border);
}

.service-integration-record-list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 22px 22px 0;
  border-bottom: 1px solid var(--f-border);
}

.service-integration-record-list article:nth-child(even) {
  padding-right: 0;
  padding-left: 22px;
  border-left: 1px solid var(--f-border);
}

.service-integration-record-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.service-integration-related {
  background: #071522;
}

.service-integration-related-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--f-border);
  border-bottom: 1px solid var(--f-border);
}

.service-integration-related-list a {
  display: flex;
  min-width: 0;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 20px 23px;
  color: var(--f-text);
  border-left: 1px solid var(--f-border);
  text-decoration: none;
  transition: background .2s ease;
}

.service-integration-related-list a:first-child {
  border-left: 0;
  padding-left: 0;
}

.service-integration-related-list a:hover,
.service-integration-related-list a:focus-visible {
  background: var(--type-accent-soft);
}

.service-integration-related-list span,
.service-integration-related-list em {
  color: var(--f-text-secondary);
  font-size: 12px;
  font-style: normal;
}

.service-integration-related-list strong {
  margin-top: auto;
  color: var(--f-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 820px) {
  .service-type-page--enterprise-integration .service-type-hero-grid,
  .service-type-page--infrastructure .service-type-hero-grid,
  .service-integration-architecture-grid,
  .service-integration-network-grid,
  .service-integration-resource-grid,
  .service-integration-delivery-grid {
    grid-template-columns: 1fr;
  }

  .service-integration-architecture-copy {
    padding-top: 0;
  }

  .service-integration-architecture-copy h3,
  .service-integration-architecture-copy > p:last-child {
    max-width: none;
  }

  .service-integration-problem-layout,
  .service-integration-scope-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 34px;
  }

  .service-integration-problem-visual,
  .service-integration-scope-visual {
    max-width: var(--integration-copy-width);
    margin: 0 auto;
  }

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

  .service-integration-layer-list article,
  .service-integration-layer-list article:first-child,
  .service-integration-related-list a,
  .service-integration-related-list a:first-child {
    padding: 22px 18px 24px;
    border-top: 1px solid var(--f-border);
    border-left: 1px solid var(--f-border);
  }

  .service-integration-layer-list article:nth-child(odd),
  .service-integration-related-list a:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .service-integration-layer-list article:nth-child(-n + 2),
  .service-integration-related-list a:nth-child(-n + 2) {
    border-top: 0;
  }

  .service-integration-scope-intro {
    display: block;
  }
}

@media (max-width: 560px) {
  .service-type-page--enterprise-integration .service-type-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .service-type-page--infrastructure .service-type-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .service-integration-section .service-type-section-head h2 {
    font-size: clamp(29px, 8.7vw, 37px);
  }

  .service-integration-section .service-type-section-head > p:last-child,
  .service-integration-prose p,
  .service-integration-point-list p,
  .service-integration-layer-list p,
  .service-integration-scope-list p,
  .service-integration-step-list p,
  .service-integration-records > p,
  .service-integration-record-list p {
    font-size: 15px;
    line-height: 1.75;
  }

  .service-integration-problem-list,
  .service-integration-scope-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-integration-problem-list article,
  .service-integration-scope-list article {
    min-height: 0;
    padding: 20px 18px 21px;
  }

  .service-integration-problem-list h3,
  .service-integration-scope-list h3 {
    font-size: 19px;
  }

  .service-integration-problem-list-head {
    display: block;
    padding: 15px 0 13px;
  }

  .service-integration-problem-list-head p:last-child {
    margin-top: 9px;
    font-size: 14px;
  }

  .service-integration-layer-list,
  .service-integration-related-list,
  .service-integration-record-list {
    grid-template-columns: 1fr;
  }

  .service-integration-scope-intro {
    margin-bottom: 32px;
  }

  .service-integration-scope-visual.is-diagram img {
    aspect-ratio: auto;
  }

  .service-integration-layer-list article,
  .service-integration-layer-list article:first-child,
  .service-integration-related-list a,
  .service-integration-related-list a:first-child,
  .service-integration-record-list article,
  .service-integration-record-list article:nth-child(even) {
    padding: 21px 0 23px;
    border-top: 1px solid var(--f-border);
    border-left: 0;
  }

  .service-integration-layer-list article:first-child,
  .service-integration-related-list a:first-child,
  .service-integration-record-list article:first-child {
    border-top: 0;
  }

  .service-integration-layer-list article > span {
    margin-bottom: 18px;
  }

  .service-integration-visual.is-portrait img,
  .service-integration-network-visual.is-portrait img,
  .service-integration-resource-visual.is-square img,
  .service-integration-delivery-visual.is-wide img {
    aspect-ratio: 1.55;
  }

  .service-integration-records {
    margin-top: 44px;
    padding-top: 28px;
  }
}

@media (min-width: 561px) and (max-width: 980px) {
  .service-integration-problem-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Category 05 pilot: make virtualization read as an architecture and
 * migration story. The page uses the shared typed-hero system, then gives the
 * detailed technical material a wider editorial canvas and deliberate image
 * rhythm. */
.service-type-page--virtualization {
  --type-accent: #68e0d3;
  --type-accent-soft: rgba(104, 224, 211, .12);
  --type-panel: #0b2230;
  --type-panel-raised: #102c3b;
}

.service-type-page--virtualization .service-type-hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.08;
}

.service-type-page--virtualization .service-type-hero-media.is-wide > img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-type-page--virtualization .service-type-hero-signals strong {
  font-size: 16px;
}

.service-virtualization-content {
  overflow: clip;
  background: #071824;
}

.service-virtualization-content > .container {
	max-width: 1180px;
}

.service-virtualization-advantages {
  padding: clamp(62px, 7vw, 96px) 0 54px;
  border-bottom: 1px solid var(--f-border);
  scroll-margin-top: 128px;
}

.service-virtualization-advantages .service-type-section-head {
  max-width: 980px;
  margin-bottom: 32px;
}

.service-virtualization-advantages .service-type-section-head h2 {
  max-width: none;
  font-size: clamp(29px, 3.2vw, 44px);
  line-height: 1.2;
}

.service-virtualization-advantages .service-type-section-head > p:last-child {
  max-width: 920px;
  font-size: 17px;
  line-height: 1.85;
}

.service-virtualization-advantage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--f-border);
  border-bottom: 1px solid var(--f-border);
}

.service-virtualization-advantage-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  min-height: 200px;
  padding: 24px 22px 28px;
  border-left: 1px solid var(--f-border);
}

.service-virtualization-advantage-list article:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-virtualization-advantage-list article > span {
  padding-top: 3px;
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
}

.service-virtualization-advantage-list h3 {
  margin: 0 0 11px;
  color: var(--f-text);
  font-size: 20px;
  line-height: 1.4;
}

.service-virtualization-advantage-list p {
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.82;
}

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

.service-virtualization-proof > div {
  padding-top: 15px;
  border-top: 2px solid rgba(104, 224, 211, .42);
}

.service-virtualization-proof span {
  color: var(--type-accent);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .08em;
}

.service-virtualization-proof p {
  margin: 8px 0 0;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.service-virtualization-editorial {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

/* The shared editorial selector is more specific than the page wrapper.
 * Keep every virtualization section on the same 1180px content rail as the
 * technical-advantages section instead of falling back to the legacy 920px
 * reading width. */
.service-virtualization-editorial.v3-solution-content[data-solution-layout] {
  width: 100%;
  max-width: none;
}

.service-virtualization-editorial .v3-editorial-module {
  padding: clamp(62px, 7vw, 92px) 0;
  scroll-margin-top: 128px;
}

.service-virtualization-editorial .v3-editorial-module:first-child {
  padding-top: 62px;
}

.service-virtualization-editorial .v3-editorial-heading {
  max-width: none;
}

.service-virtualization-editorial .v3-editorial-heading h2 {
  max-width: none;
  font-size: clamp(29px, 2.7vw, 40px);
  line-height: 1.22;
}

.service-virtualization-editorial .v3-editorial-heading > p:not(.v3-editorial-kicker) {
  max-width: 1040px;
  font-size: 17px;
  line-height: 1.86;
}

.service-virtualization-editorial .v3-editorial-card {
  padding: 24px 22px 26px;
  background: linear-gradient(145deg, rgba(16, 44, 59, .86), rgba(9, 27, 42, .78));
  border-color: rgba(104, 224, 211, .2);
}

.service-virtualization-editorial .v3-editorial-card h3 {
  font-size: 20px;
}

.service-virtualization-editorial .v3-editorial-card p,
.service-virtualization-editorial .v3-editorial-timeline p,
.service-virtualization-editorial .v3-editorial-checklist p {
  font-size: 16px;
  line-height: 1.82;
}

.service-virtualization-editorial .v3-editorial-module--matrix .v3-editorial-cards--count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-virtualization-editorial .v3-editorial-media {
  margin-top: 34px;
}

.service-virtualization-editorial .v3-editorial-media--count-1 {
	max-width: none;
}

.service-virtualization-editorial .v3-editorial-media--contain figure {
  padding: 20px;
  background: #eef4f3;
  border-color: rgba(104, 224, 211, .32);
}

.service-virtualization-editorial .v3-editorial-media--contain .v3-editorial-image {
  max-height: 560px;
}

.service-virtualization-editorial .v3-editorial-media figure {
  align-content: start;
  background: #081625;
}

.service-virtualization-editorial .v3-editorial-media figcaption {
  padding: 12px 16px 14px;
  color: #9db2c7;
  font-size: 14px;
  line-height: 1.55;
}

.service-virtualization-editorial .v3-editorial-timeline {
  margin-top: 34px;
}

.service-virtualization-editorial .v3-editorial-timeline li {
  padding: 24px 0 26px;
}

.service-virtualization-editorial .v3-editorial-timeline h3,
.service-virtualization-editorial .v3-editorial-checklist h3 {
  font-size: 20px;
}

.service-virtualization-editorial .v3-editorial-checklist li {
  padding: 24px 24px 26px 50px;
  background: rgba(10, 29, 43, .76);
  border-color: rgba(104, 224, 211, .2);
}

.service-virtualization-editorial .v3-editorial-checklist li::before {
  color: var(--type-accent);
}

.service-virtualization-editorial .v3-solution-context-links {
  max-width: none;
  margin: 4px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--f-border);
  font-size: 16px;
}

.service-virtualization-faq-anchor .v3-editorial-faq {
  padding-top: 72px;
}

.service-virtualization-faq-anchor {
  scroll-margin-top: 128px;
}

.service-virtualization-editorial .v3-editorial-faq .v3-editorial-heading h2 {
  font-size: clamp(28px, 2.6vw, 38px);
}

@media (min-width: 1081px) {
	.service-type-page--virtualization .service-type-hero h1 {
		font-size: clamp(38px, 4.3vw, 58px);
		white-space: nowrap;
	}

  .service-virtualization-editorial .v3-editorial-heading h2 {
    white-space: nowrap;
  }
}

/* Long product names must stay readable inside the two-column hero. Keep the
 * approved one-line treatment when it fits, but allow the eight promoted
 * topic pages to wrap instead of clipping into the image column. */
@media (min-width: 1081px) {
	.service-type-page--virtualization .service-type-hero h1 {
		white-space: normal;
		overflow-wrap: normal;
	}
}

@media (max-width: 1024px) {
  .service-virtualization-advantage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-virtualization-advantage-list article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .service-virtualization-editorial .v3-editorial-module--matrix .v3-editorial-cards--count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .service-type-page--virtualization .service-type-hero h1 {
    font-size: clamp(36px, 9vw, 54px);
  }

  .service-virtualization-advantages {
    padding-top: 58px;
  }

  .service-virtualization-advantage-list article {
    min-height: 0;
    padding: 22px 16px 24px;
  }

  .service-virtualization-advantage-list article:nth-child(odd) {
    padding-left: 0;
  }

  .service-virtualization-proof {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-virtualization-editorial .v3-editorial-heading h2 {
    white-space: normal;
  }

  .service-virtualization-editorial .v3-editorial-heading > p:not(.v3-editorial-kicker),
  .service-virtualization-editorial .v3-editorial-card p,
  .service-virtualization-editorial .v3-editorial-timeline p,
  .service-virtualization-editorial .v3-editorial-checklist p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .service-type-page--virtualization .service-type-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .service-virtualization-advantage-list {
    grid-template-columns: 1fr;
  }

  .service-virtualization-advantage-list article,
  .service-virtualization-advantage-list article:nth-child(odd) {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 19px 0 21px;
    border-left: 0;
    border-top: 1px solid var(--f-border);
  }

  .service-virtualization-advantage-list article:first-child {
    border-top: 0;
  }

  .service-virtualization-editorial .v3-editorial-module--matrix .v3-editorial-cards--count-4 {
    grid-template-columns: 1fr;
  }

  .service-virtualization-advantage-list h3 {
    font-size: 19px;
  }

  .service-virtualization-advantage-list p,
  .service-virtualization-proof p {
    font-size: 15px;
  }

  .service-virtualization-editorial .v3-editorial-module {
    padding: 56px 0;
  }

  .service-virtualization-editorial .v3-editorial-module:first-child {
    padding-top: 54px;
  }

  .service-virtualization-editorial .v3-editorial-media--contain figure {
    padding: 10px;
  }

  .service-virtualization-editorial .v3-editorial-card {
    padding: 20px 18px 22px;
  }

  .service-virtualization-editorial .v3-editorial-card h3,
  .service-virtualization-editorial .v3-editorial-timeline h3,
  .service-virtualization-editorial .v3-editorial-checklist h3 {
    font-size: 19px;
  }
}

/* The ten independent catalogue pages use the existing component families,
 * but keep a shared reading baseline: comfortable body copy, restrained hero
 * scale on phones and images that remain visible without crowding the text. */
.service53-missing-page :where(main, .service-virtualization-content, .service-pilot-main) :where(p, li) {
  font-size: max(16px, 1em);
}

@media (max-width: 560px) {
  .service53-missing-page .service-type-page--virtualization .service-type-hero h1,
  .service53-missing-page .service-dp-page .service-pilot-hero h1,
  .service53-missing-page .service-type-page--infrastructure .service-type-hero h1 {
    font-size: clamp(34px, 9.6vw, 42px);
    line-height: 1.14;
  }

  .service53-missing-page .service-type-hero-summary,
  .service53-missing-page .service-pilot-hero-summary,
  .service53-missing-page .yuqi-it-service-editorial-hero-summary {
    font-size: 17px;
    line-height: 1.78;
  }
}

/* Missing catalogue pages use a readable commercial-content baseline without
 * changing the typography of the 43 established service pages. */
body.service53-missing-page main p:not(.eyebrow),
body.service53-missing-page main li,
body.service53-missing-page .service-virtualization-content p:not(.eyebrow),
body.service53-missing-page .service-virtualization-content li,
body.service53-missing-page .service-pilot-main p:not(.eyebrow),
body.service53-missing-page .service-pilot-main li {
  font-size: 16px !important;
  line-height: 1.8 !important;
}

/* SD-WAN network architecture page — a distinct information model for the
 * first network-security service review. */
.service-network-page {
	--network-accent: #35c3d4;
	--network-accent-soft: rgba(53, 195, 212, .14);
  color: var(--f-text);
  background: var(--f-bg);
}

/* The first catalogue entry is the on-site network foundation. Its blue
 * accent separates cabling/switching/routing from the SD-WAN service below. */
.service-network-page--infrastructure {
	--network-accent: #78a9ff;
	--network-accent-soft: rgba(120, 169, 255, .14);
}

.service-network-page--infrastructure .service-network-hero {
	background:
		radial-gradient(circle at 88% 10%, rgba(120, 169, 255, .2), transparent 26%),
		linear-gradient(135deg, #06111f 0%, #0b1c35 56%, #091a2b 100%);
}

.service-network-page--infrastructure .service-network-hero::before {
	background-image: linear-gradient(rgba(120, 169, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 169, 255, .045) 1px, transparent 1px);
}

.service-network-page--infrastructure .service-network-editorial .v3-editorial-card {
	border-color: rgba(120, 169, 255, .24);
	background: linear-gradient(145deg, rgba(18, 43, 73, .92), rgba(8, 25, 41, .8));
}

.service-network-page--infrastructure .service-network-editorial .v3-editorial-media--contain figure {
	border-color: rgba(120, 169, 255, .34);
}

.service-network-page--infrastructure .service-network-editorial .v3-editorial-media--cover figure {
	border-color: rgba(120, 169, 255, .34);
}

.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations {
	border-color: rgba(120, 169, 255, .28);
	background: linear-gradient(135deg, rgba(16, 39, 73, .86), rgba(7, 21, 35, .92));
}

.service-network-page--infrastructure .service-network-editorial .v3-editorial-checklist li {
	border-color: rgba(120, 169, 255, .24);
	background: rgba(8, 26, 48, .84);
}

.service-network-page--infrastructure .service-network-related-grid a:hover,
.service-network-page--infrastructure .service-network-related-grid a:focus-visible {
	border-color: rgba(120, 169, 255, .7);
}

.service-network-page--infrastructure .service-network-cta {
	background: linear-gradient(135deg, #0d2548, #0b1b2d 62%, #071321);
}

/* Keep the operations proof beside the handover checklist. The previous
 * stacked treatment left an orphaned card and a very wide collage below it. */
@media (min-width: 821px) {
	.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations {
		display: grid;
		grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
		column-gap: clamp(28px, 4vw, 64px);
		align-items: start;
		margin-right: 0;
		margin-left: 0;
		padding: clamp(42px, 5vw, 70px);
	}

	.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations > .v3-editorial-heading {
		grid-column: 1 / -1;
	}

	.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations > .v3-editorial-checklist {
		grid-column: 1;
		grid-row: 2;
		grid-template-columns: 1fr;
		margin-top: 34px;
	}

	.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations > .v3-editorial-media {
		grid-column: 2;
		grid-row: 2;
		width: 100%;
		max-width: none;
		margin-top: 34px;
	}

	.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations > .v3-editorial-media figure {
		aspect-ratio: 4 / 3;
		align-content: stretch;
	}

	.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations > .v3-editorial-media figure a {
		height: 100%;
	}

	.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations > .v3-editorial-media figure img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--matrix > .v3-editorial-media--single,
.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--architecture .v3-editorial-media--single,
.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--split .v3-editorial-media--single {
		max-width: min(100%, 960px);
}

@media (max-width: 820px) {
	.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations {
		margin-right: 0;
		margin-left: 0;
		padding-right: 20px;
		padding-left: 20px;
	}

	.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations > .v3-editorial-checklist {
		grid-template-columns: 1fr;
	}

	.service-network-page--infrastructure .service-network-editorial .v3-editorial-module--operations > .v3-editorial-media {
		width: 100%;
		max-width: none;
	}
}

.service-network-page :where(h1, h2, h3, p, li, a, summary) { overflow-wrap: anywhere; }

.service-network-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 128px) 0 clamp(54px, 6vw, 92px);
  border-bottom: 1px solid var(--f-border);
  background:
    radial-gradient(circle at 88% 10%, rgba(53, 195, 212, .18), transparent 26%),
    linear-gradient(135deg, #06111f 0%, #0b1c2d 56%, #091a2b 100%);
}

.service-network-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(120, 200, 219, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 200, 219, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .9), transparent 78%);
  pointer-events: none;
  content: '';
}

.service-network-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.service-network-hero-copy { min-width: 0; }

.service-network-hero-index {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--network-accent);
  font: 700 12px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
}

.service-network-hero-index span:first-child {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(53, 195, 212, .58);
  background: rgba(53, 195, 212, .08);
  font-size: 14px;
  letter-spacing: 0;
}

.service-network-hero-category {
  margin-top: 28px;
  color: #96acc0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-network-hero h1 {
  max-width: 820px;
  margin-top: 15px;
  color: var(--f-text);
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.12;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.service-network-hero-summary {
  max-width: 770px;
  margin-top: 27px;
  color: var(--f-text-secondary);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.86;
}

.service-network-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.service-network-hero-actions .button { min-height: 48px; }

.service-network-hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.service-network-hero-signals li {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 15px 13px;
  border-top: 1px solid rgba(53, 195, 212, .38);
  color: #c5d3df;
  font-size: 13px;
  line-height: 1.55;
}

.service-network-hero-signals li span {
  color: var(--network-accent);
  font: 700 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
}

.service-network-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(127, 206, 220, .34);
  background: #071321;
  box-shadow: 0 30px 74px rgba(0, 0, 0, .28);
}

.service-network-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  pointer-events: none;
  content: '';
}

.service-network-hero-media a { display: block; }

.service-network-hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(.84) contrast(1.05);
}

.service-network-hero-media figcaption {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 13px 18px 15px;
  border-top: 1px solid rgba(127, 206, 220, .18);
  color: #9db2c7;
  font-size: 13px;
  line-height: 1.6;
}

.service-network-jump {
  position: sticky;
  z-index: 5;
  top: 0;
  border-bottom: 1px solid var(--f-border);
  background: rgba(6, 17, 31, .94);
  backdrop-filter: blur(14px);
}

.service-network-jump .container {
  display: flex;
  gap: 8px 28px;
  align-items: center;
  min-height: 62px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.service-network-jump a {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  padding: 20px 0 17px;
  border-bottom: 2px solid transparent;
  color: #9db2c7;
  font-size: 13px;
}

.service-network-jump a span {
  color: var(--network-accent);
  font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.service-network-jump a:hover,
.service-network-jump a:focus-visible {
  border-color: var(--network-accent);
  color: var(--f-text);
}

.service-network-main {
  display: block;
  background: linear-gradient(180deg, #071321 0%, #091829 48%, #071321 100%);
}

.service-network-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, .7fr);
  gap: clamp(30px, 7vw, 110px);
  padding: clamp(68px, 8vw, 112px) 0 12px;
}

.service-network-section-label {
  margin: 0;
  color: var(--network-accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.service-network-intro h2 {
  max-width: 760px;
  margin-top: 13px;
  color: var(--f-text);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.2;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.service-network-intro > p {
  align-self: end;
  margin: 0;
  padding: 0 0 5px 26px;
  border-left: 1px solid rgba(53, 195, 212, .42);
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.service-network-editorial.v3-solution-content[data-solution-layout] {
  width: 100%;
  max-width: none;
}

.service-network-editorial .v3-editorial-module {
  padding: clamp(64px, 7vw, 94px) 0;
  scroll-margin-top: 90px;
}

.service-network-editorial .v3-editorial-module:first-child { padding-top: 58px; }
.service-network-editorial .v3-editorial-heading { max-width: 960px; }

.service-network-editorial .v3-editorial-heading h2 {
  max-width: 900px;
  font-size: clamp(29px, 3.3vw, 44px);
  line-height: 1.22;
}

.service-network-editorial .v3-editorial-heading > p:not(.v3-editorial-kicker) {
  max-width: 970px;
  font-size: 17px;
  line-height: 1.9;
}

.service-network-editorial .v3-editorial-card {
  padding: 24px 22px 27px;
  border-color: rgba(53, 195, 212, .22);
  background: linear-gradient(145deg, rgba(16, 42, 57, .9), rgba(8, 25, 41, .8));
}

.service-network-editorial .v3-editorial-card h3,
.service-network-editorial .v3-editorial-timeline h3,
.service-network-editorial .v3-editorial-checklist h3 { font-size: 20px; }

.service-network-editorial .v3-editorial-card p,
.service-network-editorial .v3-editorial-timeline p,
.service-network-editorial .v3-editorial-checklist p {
  font-size: 16px;
  line-height: 1.85;
}

.service-network-editorial .v3-editorial-module--matrix .v3-editorial-cards--count-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-network-editorial .v3-editorial-media { margin-top: 34px; }
.service-network-editorial .v3-editorial-media--contain figure { border-color: rgba(53, 195, 212, .28); }

.service-network-editorial .v3-editorial-media figure {
  align-content: start;
  background: #071321;
}

.service-network-editorial .v3-editorial-media figcaption {
  padding: 12px 16px 14px;
  color: #9db2c7;
  font-size: 14px;
  line-height: 1.6;
}

.service-network-editorial .v3-editorial-module--operations {
  border-color: rgba(53, 195, 212, .24);
  background: linear-gradient(135deg, rgba(12, 38, 54, .84), rgba(7, 21, 35, .92));
}

.service-network-editorial .v3-editorial-checklist li {
  padding: 24px 24px 26px 50px;
  border-color: rgba(53, 195, 212, .21);
  background: rgba(8, 26, 42, .82);
}

.service-network-editorial .v3-editorial-checklist li::before { color: var(--network-accent); }

.service-network-faq-anchor { scroll-margin-top: 90px; }

.service-network-faq-anchor .v3-editorial-faq {
  padding-top: 70px;
  border-top: 1px solid var(--f-border);
}

.service-network-related {
  padding: 72px 0 92px;
  border-top: 1px solid var(--f-border);
}

.service-network-related-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
}

.service-network-related-heading h2 {
  max-width: 760px;
  margin-top: 13px;
  color: var(--f-text);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
}

.service-network-related-heading .text-link { color: var(--network-accent); }

.service-network-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.service-network-related-grid a {
  display: flex;
  min-width: 0;
  min-height: 190px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--f-border);
  background: rgba(13, 31, 49, .7);
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-network-related-grid a:hover,
.service-network-related-grid a:focus-visible {
  border-color: rgba(53, 195, 212, .62);
  transform: translateY(-2px);
}

.service-network-related-grid span {
  color: var(--network-accent);
  font-size: 12px;
  letter-spacing: .08em;
}

.service-network-related-grid h3 {
  margin-top: 26px;
  color: var(--f-text);
  font-size: 22px;
  line-height: 1.4;
}

.service-network-related-grid strong {
  margin-top: auto;
  padding-top: 24px;
  color: #a8bdca;
  font-size: 13px;
  font-weight: 600;
}

.service-network-cta {
  padding: clamp(60px, 7vw, 94px) 0;
  border-top: 1px solid var(--f-border);
  background: linear-gradient(135deg, #0b2733, #0b1b2d 62%, #071321);
}

.service-network-cta .container {
  display: flex;
  gap: 36px;
  align-items: end;
  justify-content: space-between;
}

.service-network-cta h2 {
  max-width: 760px;
  margin-top: 13px;
  color: var(--f-text);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.22;
}

.service-network-cta p:not(.service-network-section-label) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--f-text-secondary);
  line-height: 1.85;
}

.service-network-cta .button { flex: 0 0 auto; }

@media (max-width: 1024px) {
  .service-network-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr); gap: 42px; }
  .service-network-editorial .v3-editorial-module--matrix .v3-editorial-cards--count-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .service-network-hero { padding-top: 62px; }
  .service-network-hero-grid,
  .service-network-intro { grid-template-columns: 1fr; gap: 34px; }
  .service-network-hero-media { order: -1; }
  .service-network-hero-image { min-height: 0; }
  .service-network-intro > p { padding: 22px 0 0; border-top: 1px solid rgba(53, 195, 212, .42); border-left: 0; }
  .service-network-related-heading { grid-template-columns: 1fr; align-items: start; }
  .service-network-cta .container { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .service-network-hero { padding: 48px 0 58px; }
  .service-network-hero h1 { font-size: clamp(36px, 10vw, 52px); }
  .service-network-hero-summary { font-size: 17px; }
  .service-network-hero-actions { display: grid; }
  .service-network-hero-actions .button { width: 100%; }
  .service-network-hero-signals { grid-template-columns: 1fr; gap: 0; }
  .service-network-hero-signals li { grid-template-columns: 34px minmax(0, 1fr); align-items: center; padding: 13px 0; }
  .service-network-jump .container { gap: 8px 22px; }
  .service-network-jump a { padding-top: 17px; padding-bottom: 15px; }
  .service-network-editorial .v3-editorial-module { padding: 56px 0; }
  .service-network-editorial .v3-editorial-module:first-child { padding-top: 50px; }
  .service-network-editorial .v3-editorial-card { padding: 20px 18px 22px; }
  .service-network-related { padding: 58px 0 70px; }
  .service-network-related-grid { grid-template-columns: 1fr; }
  .service-network-cta { padding: 60px 0 70px; }
}

/* Category 03 follow-up pages: a text-led service narrative with four
 * interspersed proof images. The title scale is deliberately one step below
 * the hero so long Chinese headings remain calm instead of becoming banners. */
.service-network-content-page {
  --network-content-accent: #35c3d4;
  --network-content-accent-soft: rgba(53, 195, 212, .13);
  --network-content-panel: #0b2131;
  overflow: clip;
  color: var(--f-text);
  background: #071321;
}

.service-network-content-page--wireless {
  --network-content-accent: #56d9c7;
  --network-content-accent-soft: rgba(86, 217, 199, .13);
  --network-content-panel: #0b292d;
}

.service-network-content-page--identity {
  --network-content-accent: #7ea8ff;
  --network-content-accent-soft: rgba(126, 168, 255, .13);
  --network-content-panel: #0d213b;
}

.service-network-content-page--firewall,
.service-network-content-page--network-controls {
  --network-content-accent: #f0ae5d;
  --network-content-accent-soft: rgba(240, 174, 93, .13);
  --network-content-panel: #2a2119;
}

.service-network-content-page--modernization {
  --network-content-accent: #78a9ff;
  --network-content-accent-soft: rgba(120, 169, 255, .13);
  --network-content-panel: #0c2340;
}

.service-network-content-page--behavior {
  --network-content-accent: #71d6a1;
  --network-content-accent-soft: rgba(113, 214, 161, .13);
  --network-content-panel: #102b2a;
}

.service-network-content-page--encryption {
  --network-content-accent: #c59bff;
  --network-content-accent-soft: rgba(197, 155, 255, .13);
  --network-content-panel: #211b35;
}

.service-network-content-page--enterprise-network {
  --network-content-accent: #77b7ff;
  --network-content-accent-soft: rgba(119, 183, 255, .14);
  --network-content-panel: #102949;
}

.service-network-content-page--sdwan {
  --network-content-accent: #35d1cf;
  --network-content-accent-soft: rgba(53, 209, 207, .14);
  --network-content-panel: #0c2b35;
}

.service-network-content-page--access-control {
  --network-content-accent: #f1b261;
  --network-content-accent-soft: rgba(241, 178, 97, .14);
  --network-content-panel: #302519;
}

.service-network-content-page :where(h1, h2, h3, p, li, a, summary) {
  overflow-wrap: anywhere;
}

/* Keep long Chinese headings legible. The page should read as a service
 * narrative, not as a poster with one oversized sentence. */
.service-network-content-page .service-network-content-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4.25vw, 56px);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.service-network-content-page .service-network-content-intro h2,
.service-network-content-page .service-network-content-section h2,
.service-network-content-page .service-network-content-cta h2 {
  font-size: clamp(28px, 2.45vw, 36px);
  line-height: 1.34;
}

/* Each 03 entry gets a slightly different reading rhythm while sharing the
 * same semantic order and SEO structure. */
.service-network-content-page--enterprise-network .service-network-content-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
}

.service-network-content-page--enterprise-network .service-network-content-hero-media {
  border-radius: 0 30px 0 30px;
}

.service-network-content-page--enterprise-network .service-network-content-section--problem .service-network-content-card-grid,
.service-network-content-page--enterprise-network .service-network-content-section--architecture .service-network-content-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-network-content-page--enterprise-network .service-network-content-section--delivery .service-network-content-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-network-content-page--sdwan .service-network-content-hero-grid {
  grid-template-columns: minmax(380px, .88fr) minmax(0, 1.12fr);
}

.service-network-content-page--sdwan .service-network-content-hero-media {
  border-radius: 32px 0 32px 0;
}

.service-network-content-page--sdwan .service-network-content-section--problem,
.service-network-content-page--sdwan .service-network-content-section--architecture {
  padding-right: clamp(0px, 7vw, 110px);
  padding-left: clamp(0px, 7vw, 110px);
  background: linear-gradient(90deg, rgba(53, 209, 207, .035), transparent 35%, rgba(53, 209, 207, .035));
}

.service-network-content-page--sdwan .service-network-content-section--problem .service-network-content-card-grid,
.service-network-content-page--sdwan .service-network-content-section--architecture .service-network-content-card-grid,
.service-network-content-page--sdwan .service-network-content-section--delivery .service-network-content-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-network-content-page--access-control .service-network-content-hero-grid {
  grid-template-columns: minmax(0, .94fr) minmax(380px, 1.06fr);
}

.service-network-content-page--access-control .service-network-content-hero-media {
  border-radius: 18px;
  box-shadow: 14px 14px 0 rgba(241, 178, 97, .08), 0 28px 72px rgba(0, 0, 0, .3);
}

.service-network-content-page--access-control .service-network-content-intro {
  grid-template-columns: minmax(220px, .58fr) minmax(0, 1.42fr);
}

.service-network-content-page--access-control .service-network-content-section--problem .service-network-content-card-grid,
.service-network-content-page--access-control .service-network-content-section--architecture .service-network-content-card-grid,
.service-network-content-page--access-control .service-network-content-section--delivery .service-network-content-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-network-content-page--access-control .service-network-content-step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 5vw, 76px);
  border-top: 1px solid var(--f-border);
}

.service-network-content-page--access-control .service-network-content-step-list li {
  min-width: 0;
}

@media (max-width: 1024px) {
  .service-network-content-page--enterprise-network .service-network-content-section--delivery .service-network-content-card-grid,
  .service-network-content-page--sdwan .service-network-content-section--problem .service-network-content-card-grid,
  .service-network-content-page--sdwan .service-network-content-section--architecture .service-network-content-card-grid,
  .service-network-content-page--sdwan .service-network-content-section--delivery .service-network-content-card-grid,
  .service-network-content-page--access-control .service-network-content-section--problem .service-network-content-card-grid,
  .service-network-content-page--access-control .service-network-content-section--architecture .service-network-content-card-grid,
  .service-network-content-page--access-control .service-network-content-section--delivery .service-network-content-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .service-network-content-page--sdwan .service-network-content-section--problem,
  .service-network-content-page--sdwan .service-network-content-section--architecture {
    padding-right: 0;
    padding-left: 0;
  }

  .service-network-content-page--access-control .service-network-content-step-list {
    display: block;
  }
}

@media (max-width: 560px) {
  .service-network-content-page .service-network-content-hero h1 {
    font-size: clamp(30px, 8.8vw, 44px);
    line-height: 1.24;
  }

  .service-network-content-page--enterprise-network .service-network-content-section--problem .service-network-content-card-grid,
  .service-network-content-page--enterprise-network .service-network-content-section--architecture .service-network-content-card-grid,
  .service-network-content-page--access-control .service-network-content-section--problem .service-network-content-card-grid,
  .service-network-content-page--access-control .service-network-content-section--architecture .service-network-content-card-grid,
  .service-network-content-page--access-control .service-network-content-section--delivery .service-network-content-card-grid {
    grid-template-columns: 1fr;
  }
}

.service-network-content-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 126px) 0 clamp(58px, 6vw, 94px);
  border-bottom: 1px solid var(--f-border);
  background:
    radial-gradient(circle at 85% 12%, var(--network-content-accent-soft), transparent 28%),
    linear-gradient(135deg, #06111f 0%, #0b1c2d 58%, #091827 100%);
}

.service-network-content-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(120, 200, 219, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 200, 219, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .86), transparent 80%);
  pointer-events: none;
  content: '';
}

.service-network-content-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
}

.service-network-content-hero-copy,
.service-network-content-hero-media {
  min-width: 0;
}

.service-network-content-eyebrow,
.service-network-content-label {
  margin: 0;
  color: var(--network-content-accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.service-network-content-hero h1 {
  max-width: 820px;
  margin-top: 17px;
  color: var(--f-text);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.service-network-content-summary {
  max-width: 780px;
  margin-top: 26px;
  color: var(--f-text-secondary);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.88;
}

.service-network-content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.service-network-content-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.service-network-content-signals li {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 15px 13px;
  border-top: 1px solid color-mix(in srgb, var(--network-content-accent) 55%, transparent);
  color: #c5d3df;
  font-size: 13px;
  line-height: 1.55;
}

.service-network-content-signals li span {
  color: var(--network-content-accent);
  font: 700 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
}

.service-network-content-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--network-content-accent) 55%, transparent);
  background: #071321;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .3);
}

.service-network-content-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  pointer-events: none;
  content: '';
}

.service-network-content-hero-media a,
.service-network-content-media a {
  display: block;
}

.service-network-content-hero-image {
  display: block;
  width: 100%;
  height: clamp(310px, 34vw, 510px);
  object-fit: cover;
  filter: saturate(.86) contrast(1.04);
}

.service-network-content-hero-media figcaption,
.service-network-content-media figcaption {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 13px 17px 15px;
  border-top: 1px solid color-mix(in srgb, var(--network-content-accent) 30%, transparent);
  color: #9db2c7;
  font-size: 13px;
  line-height: 1.65;
}

.service-network-content-jump {
  position: sticky;
  z-index: 5;
  top: 0;
  border-bottom: 1px solid var(--f-border);
  background: rgba(6, 17, 31, .94);
  backdrop-filter: blur(14px);
}

.service-network-content-jump .container {
  display: flex;
  gap: 8px 28px;
  align-items: center;
  min-height: 62px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.service-network-content-jump a {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  padding: 20px 0 17px;
  border-bottom: 2px solid transparent;
  color: #9db2c7;
  font-size: 13px;
  text-decoration: none;
}

.service-network-content-jump a:first-child {
  color: var(--network-content-accent);
}

.service-network-content-jump a:hover,
.service-network-content-jump a:focus-visible {
  border-color: var(--network-content-accent);
  color: var(--f-text);
}

.service-network-content-jump a:first-child::first-letter {
  color: var(--network-content-accent);
}

.service-network-content-main {
  background: linear-gradient(180deg, #071321 0%, #091829 50%, #071321 100%);
}

.service-network-content-intro {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1.35fr);
  gap: clamp(30px, 6vw, 100px);
  padding: clamp(72px, 8vw, 116px) 0 30px;
}

.service-network-content-intro > div {
  max-width: 980px;
}

.service-network-content-intro h2,
.service-network-content-section h2,
.service-network-content-related h2,
.service-network-content-cta h2 {
  color: var(--f-text);
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1.28;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.service-network-content-intro h2 {
  margin-top: 11px;
  max-width: 930px;
}

.service-network-content-intro p:not(.service-network-content-label),
.service-network-content-section-copy {
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.92;
}

.service-network-content-intro p:not(.service-network-content-label) {
  margin: 12px 0 0;
  padding: 4px 0 4px 26px;
  border-left: 1px solid color-mix(in srgb, var(--network-content-accent) 55%, transparent);
}

.service-network-content-section {
  padding: clamp(66px, 7vw, 100px) 0 0;
  scroll-margin-top: 88px;
}

.service-network-content-section h2 {
  max-width: 960px;
  margin-top: 12px;
}

.service-network-content-section-copy {
  max-width: 990px;
  margin-top: 18px;
}

.service-network-content-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.service-network-content-card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  min-height: 196px;
  padding: 22px 18px 24px;
  border: 1px solid color-mix(in srgb, var(--network-content-accent) 28%, var(--f-border));
  background: linear-gradient(145deg, color-mix(in srgb, var(--network-content-panel) 78%, transparent), rgba(8, 25, 41, .78));
}

.service-network-content-card > span,
.service-network-content-step-list > li > span {
  padding-top: 3px;
  color: var(--network-content-accent);
  font: 700 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
}

.service-network-content-card h3,
.service-network-content-step-list h3 {
  margin: 0;
  color: var(--f-text);
  font-size: 19px;
  line-height: 1.42;
}

.service-network-content-card p,
.service-network-content-step-list p {
  margin: 10px 0 0;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.82;
}

.service-network-content-media {
  max-width: 930px;
  margin: 38px auto 0;
  border: 1px solid color-mix(in srgb, var(--network-content-accent) 35%, var(--f-border));
  background: #071321;
}

.service-network-content-image {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  background: #081625;
}

.service-network-content-section--architecture .service-network-content-media,
.service-network-content-section--implementation .service-network-content-media {
  max-width: 1040px;
}

.service-network-content-step-list {
  max-width: 1020px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--f-border);
}

.service-network-content-step-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0 25px;
  border-bottom: 1px solid var(--f-border);
}

.service-network-content-section--implementation .service-network-content-media {
  margin-top: 42px;
}

.service-network-content-section--delivery {
  padding-bottom: 0;
}

.service-network-content-section--delivery .service-network-content-media {
  margin-top: 38px;
}

.service-network-content-section--faq {
  padding-bottom: 80px;
  border-bottom: 1px solid var(--f-border);
}

.service-network-content-faq-list {
  max-width: 960px;
  margin-top: 32px;
  border-top: 1px solid var(--f-border);
}

.service-network-content-faq-list details {
  border-bottom: 1px solid var(--f-border);
}

.service-network-content-faq-list summary {
  padding: 21px 34px 21px 0;
  color: var(--f-text);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

.service-network-content-faq-list summary::-webkit-details-marker { display: none; }

.service-network-content-faq-list summary::after {
  float: right;
  color: var(--network-content-accent);
  content: '+';
}

.service-network-content-faq-list details[open] summary::after { content: '−'; }

.service-network-content-faq-list details p {
  max-width: 850px;
  margin: -4px 0 22px;
  color: var(--f-text-secondary);
  font-size: 16px;
  line-height: 1.88;
}

.service-network-content-related {
  padding: 74px 0 94px;
}

.service-network-content-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.service-network-content-related-grid a {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--f-border);
  background: rgba(13, 31, 49, .7);
  color: var(--f-text);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.service-network-content-related-grid a:hover,
.service-network-content-related-grid a:focus-visible {
  border-color: var(--network-content-accent);
  transform: translateY(-2px);
}

.service-network-content-related-grid span {
  color: var(--network-content-accent);
  font-size: 12px;
  letter-spacing: .08em;
}

.service-network-content-related-grid h3 {
  margin-top: 22px;
  font-size: 21px;
  line-height: 1.4;
}

.service-network-content-related-grid strong {
  margin-top: auto;
  padding-top: 20px;
  color: var(--network-content-accent);
  font-size: 20px;
}

.service-network-content-cta {
  padding: clamp(62px, 7vw, 96px) 0;
  border-top: 1px solid var(--f-border);
  background: linear-gradient(135deg, color-mix(in srgb, var(--network-content-panel) 78%, #071321), #0b1b2d 64%, #071321);
}

.service-network-content-cta .container {
  display: flex;
  gap: 36px;
  align-items: end;
  justify-content: space-between;
}

.service-network-content-cta h2 {
  max-width: 780px;
  margin-top: 12px;
}

.service-network-content-cta p:not(.service-network-content-label) {
  max-width: 760px;
  margin-top: 17px;
  color: var(--f-text-secondary);
  line-height: 1.86;
}

.service-network-content-cta .button {
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .service-network-content-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .84fr); gap: 38px; }
  .service-network-content-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .service-network-content-hero { padding-top: 62px; }
  .service-network-content-hero-grid,
  .service-network-content-intro { grid-template-columns: 1fr; gap: 34px; }
  .service-network-content-hero-media { order: -1; }
  .service-network-content-hero-image { height: auto; max-height: 480px; }
  .service-network-content-intro > div { max-width: none; }
  .service-network-content-intro p:not(.service-network-content-label) { padding: 20px 0 0; border-top: 1px solid color-mix(in srgb, var(--network-content-accent) 55%, transparent); border-left: 0; }
  .service-network-content-cta .container { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .service-network-content-hero { padding: 48px 0 58px; }
  .service-network-content-hero h1 { font-size: clamp(36px, 10vw, 52px); }
  .service-network-content-summary { font-size: 17px; }
  .service-network-content-actions { display: grid; }
  .service-network-content-actions .button { width: 100%; }
  .service-network-content-signals { grid-template-columns: 1fr; gap: 0; }
  .service-network-content-signals li { grid-template-columns: 34px minmax(0, 1fr); align-items: center; padding: 13px 0; }
  .service-network-content-jump .container { gap: 8px 22px; }
  .service-network-content-jump a { padding-top: 17px; padding-bottom: 15px; }
  .service-network-content-intro { padding-top: 62px; }
  .service-network-content-intro h2,
  .service-network-content-section h2,
  .service-network-content-cta h2 { font-size: clamp(27px, 7.4vw, 34px); line-height: 1.34; }
  .service-network-content-intro p:not(.service-network-content-label),
  .service-network-content-section-copy,
  .service-network-content-card p,
  .service-network-content-step-list p,
  .service-network-content-faq-list details p,
  .service-network-content-cta p:not(.service-network-content-label) { font-size: 15px; line-height: 1.86; }
  .service-network-content-section { padding-top: 62px; }
  .service-network-content-card-grid,
  .service-network-content-related-grid { grid-template-columns: 1fr; }
  .service-network-content-card { min-height: 0; padding: 20px 18px 22px; }
  .service-network-content-media { margin-top: 30px; }
  .service-network-content-section--faq { padding-bottom: 62px; }
  .service-network-content-related { padding: 60px 0 72px; }
  .service-network-content-cta { padding: 60px 0 72px; }
}

/* Open editorial treatment for category 03. The highlighted scope block is
 * a reading bridge, not a card: remove the nested rule and let whitespace,
 * type scale and one clean divider carry the hierarchy. The media figures
 * keep one quiet edge only; the old double-frame treatment made the page feel
 * like a dashboard instead of a service article. */
.service-network-content-intro--open {
  display: block;
  padding-top: clamp(52px, 5.6vw, 78px);
  padding-bottom: clamp(62px, 7vw, 96px);
  border: 0;
  background: transparent;
}

.service-network-content-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(42px, 6.5vw, 100px);
  align-items: start;
  max-width: none;
}

.service-network-content-intro-copy {
  min-width: 0;
}

.service-network-content-intro-kicker {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 0 0 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--network-content-accent) 28%, var(--f-border));
}

.service-network-content-intro-kicker > span {
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 2px;
  background: var(--network-content-accent);
}

.service-network-content-intro-kicker .service-network-content-label {
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: none;
}

.service-network-content-intro--open h2 {
  max-width: 820px;
  margin-top: 42px;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.22;
}

.service-network-content-intro--open p.service-network-content-intro-body {
  max-width: 820px;
  margin-top: 26px;
  color: var(--f-text-secondary);
  font-size: 17px;
  line-height: 1.92;
  padding: 0;
  border: 0;
}

.service-network-content-intro--open .service-network-content-media {
  width: 100%;
  max-width: none;
  margin: 0;
}

.service-network-content-intro--open .service-network-content-image {
  aspect-ratio: 1.55 / 1;
  height: clamp(280px, 28vw, 420px);
  max-height: none;
  object-fit: cover;
}

.service-network-content-page .service-network-content-hero-media {
  border-radius: 0;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .24);
}

.service-network-content-page .service-network-content-hero-media::before {
  display: none;
}

.service-network-content-page .service-network-content-hero-media figcaption,
.service-network-content-page .service-network-content-media figcaption {
  padding: 12px 0 0;
  border-top: 0;
}

.service-network-content-page .service-network-content-media {
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.service-network-content-page .service-network-content-image {
  background: transparent;
}

.service-network-content-page .service-network-content-card {
  min-height: 0;
  background: linear-gradient(145deg, color-mix(in srgb, var(--network-content-panel) 64%, transparent), rgba(8, 25, 41, .58));
}

@media (max-width: 820px) {
  .service-network-content-intro--open {
    padding-top: 54px;
    padding-bottom: 68px;
  }

  .service-network-content-intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .service-network-content-intro--open {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .service-network-content-intro-kicker {
    gap: 12px;
    padding-bottom: 16px;
  }

  .service-network-content-intro-kicker > span {
    flex-basis: 32px;
    width: 32px;
  }

  .service-network-content-intro--open h2 {
    margin-top: 30px;
  }

  .service-network-content-intro--open .service-network-content-intro-body {
    margin-top: 18px;
  }
}

/* The 03 catalogue reads best with three comfortable cards. Four narrow
 * cards made the longer Chinese copy wrap into uneven blocks, so four-item
 * groups use a balanced two-by-two rhythm instead. */
.service-network-content-page .service-network-content-section .service-network-content-card-grid--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-network-content-page .service-network-content-section .service-network-content-card-grid--count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .service-network-content-page .service-network-content-section .service-network-content-card-grid--count-3,
  .service-network-content-page .service-network-content-section .service-network-content-card-grid--count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .service-network-content-page .service-network-content-section .service-network-content-card-grid--count-3,
  .service-network-content-page .service-network-content-section .service-network-content-card-grid--count-4 {
    grid-template-columns: 1fr;
  }
}

/* Advisory layout repair: WordPress keeps the source image height attribute
 * on lazy-loaded images. Reset it here so the visual and copy columns share
 * one natural card height instead of creating a tall letterboxed figure. */
.service-type-page--advisory .service-type-visual-story {
  align-items: stretch;
}

.service-type-page--advisory .service-type-visual-story-media,
.service-type-page--advisory .service-type-visual-story-copy,
.service-type-page--advisory .service-type-evidence-digest-copy {
  min-height: 0;
}

.service-type-page--advisory .service-type-visual-story-media img,
.service-type-page--advisory .service-type-evidence-gallery img {
  height: auto !important;
  min-height: 0;
  max-height: none;
}

.service-type-page--advisory .service-type-evidence-digest {
  align-items: stretch;
}

.service-type-page--advisory .service-type-evidence-gallery,
.service-type-page--advisory .service-type-evidence-gallery figure {
  min-height: 0;
}

@media (max-width: 560px) {
  .service-type-page--advisory .service-type-evidence-gallery img {
    height: 100% !important;
    aspect-ratio: auto;
  }
}

/* Advisory source extraction: the three planning lines are the primary
 * reading path; the historical source record remains available below. */
.service-type-page--advisory .service-advisory-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(116, 199, 210, .28);
  border: 1px solid rgba(116, 199, 210, .28);
}

.service-type-page--advisory .service-advisory-pillar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  min-height: 590px;
  padding: 26px 25px 27px;
  background: #0b2635;
}

.service-type-page--advisory .service-advisory-pillar-top {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(116, 199, 210, .22);
}

.service-type-page--advisory .service-advisory-pillar-number {
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
}

.service-type-page--advisory .service-advisory-pillar-kicker {
  color: #9fbcc7;
  font-size: 12px;
  line-height: 1.4;
}

.service-type-page--advisory .service-advisory-pillar h3 {
  max-width: 290px;
  margin: 25px 0 13px;
  color: var(--f-text);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.25;
}

.service-type-page--advisory .service-advisory-pillar-body {
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 15px;
  line-height: 1.85;
}

.service-type-page--advisory .service-advisory-pillar-block {
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.service-type-page--advisory .service-advisory-pillar-block strong,
.service-type-page--advisory .service-advisory-pillar-output strong {
  display: block;
  margin-bottom: 8px;
  color: var(--type-accent);
  font-size: 12px;
  letter-spacing: .04em;
}

.service-type-page--advisory .service-advisory-pillar-block p,
.service-type-page--advisory .service-advisory-pillar-output p {
  margin: 0;
  color: #b7c7ce;
  font-size: 13px;
  line-height: 1.75;
}

.service-type-page--advisory .service-advisory-pillar-block ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-type-page--advisory .service-advisory-pillar-block li {
  position: relative;
  padding-left: 15px;
  color: #b7c7ce;
  font-size: 13px;
  line-height: 1.65;
}

.service-type-page--advisory .service-advisory-pillar-block li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--type-accent);
  content: '';
}

.service-type-page--advisory .service-advisory-pillar-output {
  margin-top: auto;
  padding: 18px 16px 0;
  border-top: 2px solid var(--type-accent);
}

.service-type-page--advisory .service-advisory-source-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  margin: 28px 0 14px;
  padding: 19px 20px;
  border: 1px solid rgba(116, 199, 210, .25);
  background: rgba(9, 33, 47, .8);
}

.service-type-page--advisory .service-advisory-source-note > span {
  color: var(--type-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.service-type-page--advisory .service-advisory-source-note p {
  margin: 0;
  color: var(--f-text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .service-type-page--advisory .service-advisory-pillar {
    min-height: 650px;
    padding-right: 19px;
    padding-left: 19px;
  }
}

@media (max-width: 820px) {
  .service-type-page--advisory .service-advisory-pillars {
    grid-template-columns: 1fr;
  }

  .service-type-page--advisory .service-advisory-pillar {
    min-height: 0;
    padding: 24px 22px 25px;
  }

  .service-type-page--advisory .service-advisory-pillar-output {
    margin-top: 24px;
  }

  .service-type-page--advisory .service-advisory-source-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .service-type-page--advisory .service-advisory-pillars {
    margin-top: 24px;
  }

  .service-type-page--advisory .service-advisory-pillar {
    padding: 22px 18px 23px;
  }

  .service-type-page--advisory .service-advisory-pillar h3 {
    font-size: 25px;
  }

  .service-type-page--advisory .service-advisory-pillar-body,
  .service-type-page--advisory .service-advisory-pillar-block p,
  .service-type-page--advisory .service-advisory-pillar-output p,
  .service-type-page--advisory .service-advisory-pillar-block li {
    font-size: 15px;
  }
}

/* HVV Article Renderer Pilot: target-scoped article reading layout. */
.v3-hvv-article-hero {
  padding: clamp(72px, 9vw, 126px) 0 82px;
  background: radial-gradient(circle at 78% 18%, rgba(35, 107, 150, .22), transparent 38%), linear-gradient(135deg, #071421, #0a1b2b 62%, #0c2632);
}

.v3-hvv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
  max-width: 1240px;
}

.v3-hvv-hero-copy { min-width: 0; }
.v3-hvv-hero-copy h1 { max-width: 760px; }
.v3-hvv-hero-copy .v3-article-summary { max-width: 720px; }

.v3-hvv-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.v3-hvv-hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(91, 196, 210, .34);
  background: rgba(8, 30, 44, .66);
  color: var(--f-text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.v3-hvv-hero-media {
  margin: 0;
  border-color: rgba(91, 196, 210, .38);
  box-shadow: 0 26px 72px rgba(0, 0, 0, .28);
}

.v3-hvv-hero-media .v3-article-featured-image {
  display: block;
  width: 100%;
  max-height: 520px;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.v3-hvv-article-section { background: #071725; }
.v3-hvv-article-back { position: static; margin: 0 0 30px; }
.v3-hvv-article-back { justify-content: flex-start; }
.v3-hvv-article-back .context-back { width: auto; min-width: 0; justify-content: flex-start; gap: 8px; padding: 0 14px; }
.v3-hvv-article-back .context-back-text { position: static; width: auto; height: auto; overflow: visible; clip: auto; color: inherit; font-size: 15px; white-space: nowrap; }

.v3-hvv-takeaways {
  margin: 0 auto 76px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(91, 196, 210, .24);
  background: linear-gradient(135deg, rgba(10, 39, 54, .92), rgba(8, 25, 39, .86));
}

.v3-hvv-section-heading { max-width: 780px; }
.v3-hvv-section-heading h2 { margin-top: 10px; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.22; }
.v3-hvv-section-heading > p:last-child { margin-top: 16px; color: var(--f-text-secondary); font-size: 17px; line-height: 1.8; }

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

.v3-hvv-takeaway {
  min-width: 0;
  padding: 24px 22px 26px;
  border-top: 2px solid var(--f-cyan);
  background: rgba(7, 23, 37, .72);
}

.v3-hvv-takeaway-number {
  display: block;
  color: var(--f-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.v3-hvv-takeaway h3 { margin-top: 22px; color: var(--f-text); font-size: 21px; line-height: 1.4; }
.v3-hvv-takeaway p { margin-top: 12px; color: var(--f-text-secondary); font-size: 15px; line-height: 1.78; }

.v3-hvv-article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 820px);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  justify-content: center;
}

.v3-hvv-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  min-width: 0;
}

.v3-hvv-toc > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--f-cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
}

.v3-hvv-toc nav { display: grid; gap: 2px; }
.v3-hvv-toc a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  padding: 9px 0 9px 12px;
  border-left: 1px solid var(--f-border);
  color: var(--f-text-secondary);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.v3-hvv-toc a span { color: var(--f-cyan); font-family: var(--font-mono); font-size: 11px; }
.v3-hvv-toc a:hover,
.v3-hvv-toc a:focus-visible { border-left-color: var(--f-cyan); color: var(--f-text); }

.v3-hvv-article-main { width: auto; min-width: 0; margin: 0; }
.v3-hvv-article-content { max-width: none; }
.v3-hvv-article-content > p:first-child { margin-top: 0; }
.v3-hvv-article-content > p:nth-child(2) { color: var(--f-text-muted); }
.v3-hvv-article-content > p:nth-child(-n + 3) { margin-bottom: 8px; color: var(--f-text-muted); font-size: 14px; line-height: 1.6; }

.v3-hvv-content-section {
  margin-top: 58px;
  padding-top: 40px;
  border-top: 1px solid var(--f-border);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.v3-hvv-content-section:first-of-type { margin-top: 42px; }
.v3-hvv-content-section h2 { margin: 0 0 18px; color: var(--f-text); font-size: clamp(28px, 3vw, 36px); line-height: 1.28; }
.v3-hvv-content-section h3 { margin: 30px 0 10px; color: var(--f-text); font-size: 20px; line-height: 1.45; }
.v3-hvv-content-section p,
.v3-hvv-content-section li { font-size: 17px; line-height: 1.95; }
.v3-hvv-content-section > p strong { display: block; margin: 26px 0 8px; color: var(--f-text); font-size: 18px; line-height: 1.5; }
.v3-hvv-content-section > p strong:first-child { margin-top: 8px; }
.v3-hvv-content-section img { width: auto; max-width: 100%; }

@media (max-width: 1024px) {
  .v3-hvv-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr); gap: 36px; }
  .v3-hvv-article-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 34px; }
}

@media (max-width: 768px) {
  .v3-hvv-article-hero { padding: 52px 0 42px; }
  .v3-hvv-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .v3-hvv-hero-copy h1 { font-size: 36px; }
  .v3-hvv-hero-copy .v3-article-summary { margin-top: 16px; line-height: 1.78; }
  .v3-hvv-hero-meta { margin-top: 18px; }
  .v3-hvv-hero-media .v3-article-featured-image { aspect-ratio: 1.45; max-height: 360px; }
  .v3-hvv-takeaways { margin-bottom: 54px; padding: 28px 20px; }
  .v3-hvv-takeaway-grid { display: flex; overflow-x: auto; gap: 10px; margin-right: -20px; padding-right: 20px; padding-bottom: 5px; scroll-snap-type: x mandatory; }
  .v3-hvv-takeaway { flex: 0 0 min(82vw, 310px); scroll-snap-align: start; }
  .v3-hvv-article-layout { grid-template-columns: 1fr; gap: 28px; }
  .v3-hvv-toc { position: static; }
  .v3-hvv-toc nav { display: flex; overflow-x: auto; gap: 8px; padding-bottom: 5px; }
  .v3-hvv-toc a { flex: 0 0 auto; grid-template-columns: auto auto; border: 1px solid var(--f-border); padding: 8px 10px; }
  .v3-hvv-content-section { margin-top: 46px; padding-top: 30px; }
  .v3-hvv-content-section p,
  .v3-hvv-content-section li { font-size: 16px; line-height: 1.88; }
}

@media (max-width: 480px) {
  .v3-hvv-hero-copy h1 { font-size: 31px; }
  .v3-hvv-hero-meta span { font-size: 12px; }
  .v3-hvv-section-heading h2 { font-size: 28px; }
  .v3-hvv-takeaway { padding: 22px 18px 24px; }
  .v3-hvv-content-section h2 { font-size: 28px; }
  .v3-hvv-content-section h3 { font-size: 19px; }
  body.postid-1274 .footer-grid,
  body.postid-1902 .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.postid-1274 .footer-brand,
  body.postid-1902 .footer-brand,
  body.postid-1274 .footer-column,
  body.postid-1902 .footer-column { min-width: 0; width: auto; max-width: 100%; }
  body.postid-1274 .footer-brand > p,
  body.postid-1902 .footer-brand > p { max-width: 100%; overflow-wrap: anywhere; }
}
