
:root {
  --bg: #f3f6f1;
  --surface: #ffffff;
  --surface-soft: #edf4ef;
  --ink: #16342b;
  --muted: #5d786f;
  --line: rgba(22, 52, 43, 0.10);
  --green: #2f9d76;
  --green-soft: #79c6ae;
  --green-pale: #d8f0e4;
  --green-deep: #123d31;
  --green-mid: #1c5a49;
  --white-ink: #eff8f4;
  --shadow: 0 28px 80px rgba(16, 44, 35, 0.10);
  --max: 1220px;
  --radius-xl: 34px;
  --radius-lg: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #f3f6f1 0%, #fafcf9 48%, #f1f5ef 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.xzhpro-shell { overflow-x: hidden; }
.xzhpro-wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.xzhpro-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(10, 34, 28, 0.44);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 40px rgba(8, 24, 19, 0.14);
}
.xzhpro-header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.xzhpro-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white-ink);
  min-width: 0;
}
.xzhpro-brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.xzhpro-brand-copy { display: grid; gap: 4px; min-width: 0; }
.xzhpro-brand-name {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.xzhpro-brand-meta {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(239,248,244,0.72);
}
.xzhpro-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(239,248,244,0.84);
  font-size: 14px;
}
.xzhpro-nav a {
  position: relative;
  padding: 5px 0;
}
.xzhpro-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: rgba(239,248,244,0.76);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}
.xzhpro-nav a:hover::after,
.xzhpro-nav a:focus-visible::after { transform: scaleX(1); }
.xzhpro-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2f9d76, #43b68b);
  box-shadow: 0 14px 30px rgba(47,157,118,0.24);
  font-size: 14px;
  font-weight: 700;
}

.xzhpro-hero {
  position: relative;
  overflow: hidden;
  color: var(--white-ink);
  min-height: 100svh;
}
.xzhpro-hero-media,
.xzhpro-hero-material {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.xzhpro-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.58);
}
.xzhpro-hero-material {
  background:
    radial-gradient(circle at 16% 22%, rgba(138,210,185,0.18), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(255,255,255,0.10), transparent 18%),
    linear-gradient(135deg, #0f352a 0%, #18433a 28%, #20382f 56%, #123d31 100%);
}
.xzhpro-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(112deg, rgba(9, 31, 25, 0.82) 6%, rgba(9, 31, 25, 0.34) 46%, rgba(9, 31, 25, 0.70) 100%),
    linear-gradient(180deg, rgba(8,24,18,0.30) 0%, rgba(8,24,18,0.52) 46%, rgba(8,24,18,0.82) 100%);
}
.xzhpro-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 22%, rgba(138,210,185,0.14), transparent 16%),
    linear-gradient(180deg, rgba(8,24,18,0.04) 0%, rgba(8,24,18,0.18) 44%, rgba(8,24,18,0.40) 100%);
}
.xzhpro-hero-grid {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
  padding: 156px 0 92px;
}
.xzhpro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(239,248,244,0.84);
  font-size: 13px;
  letter-spacing: .08em;
}
.xzhpro-hero-copy h1 {
  max-width: 620px;
  margin: 20px 0 18px;
  font-size: clamp(40px, 5.8vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.xzhpro-hero-copy p,
.xzhpro-section-head p,
.xzhpro-business-card p,
.xzhpro-scene-card p,
.xzhpro-capability-cards p,
.xzhpro-process-grid p,
.xzhpro-cooperation-copy p,
.xzhpro-about-main p,
.xzhpro-about-side p,
.xzhpro-contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}
.xzhpro-hero-copy p {
  max-width: 520px;
  color: rgba(239,248,244,0.84);
  font-size: 18px;
}
.xzhpro-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.xzhpro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}
.xzhpro-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2f9d76, #43b68b);
  box-shadow: 0 18px 34px rgba(47,157,118,0.26);
}
.xzhpro-btn-ghost {
  color: var(--white-ink);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
}
.xzhpro-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.xzhpro-hero-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(239,248,244,0.80);
  font-size: 13px;
}
.xzhpro-hero-panel,
.xzhpro-hero-glass {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.09));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 28px 80px rgba(8, 24, 19, 0.30);
  backdrop-filter: blur(20px);
}
.xzhpro-hero-panel-top,
.xzhpro-hero-glass-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(239,248,244,0.88);
}
.xzhpro-hero-panel-top strong,
.xzhpro-hero-glass-head strong { font-size: 20px; }
.xzhpro-hero-panel-top span,
.xzhpro-hero-glass-head span { font-size: 13px; color: rgba(239,248,244,0.62); }
.xzhpro-hero-metrics,
.xzhpro-hero-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.xzhpro-hero-metrics article,
.xzhpro-hero-glass-grid article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}
.xzhpro-hero-metrics strong {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(239,248,244,0.92);
  font-size: 18px;
}
.xzhpro-hero-metrics span {
  display: block;
  color: rgba(239,248,244,0.82);
  line-height: 1.8;
  font-size: 15px;
}
.xzhpro-hero-glass-grid small {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(239,248,244,0.60);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.xzhpro-hero-glass-grid p {
  color: rgba(239,248,244,0.82);
  line-height: 1.8;
  font-size: 15px;
}
.xzhpro-photo-slot {
  position: relative;
  min-height: 320px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    radial-gradient(circle at 18% 16%, rgba(138,210,185,0.18), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  overflow: hidden;
}
.xzhpro-photo-slot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(239,248,244,0.20);
}
.xzhpro-photo-slot::after {
  content: "";
  position: absolute;
  inset: auto -120px -110px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(138,210,185,0.18), transparent 70%);
}
.xzhpro-photo-slot-badge {
  position: relative;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(239,248,244,0.74);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.xzhpro-photo-slot-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
}
.xzhpro-photo-slot-copy strong {
  color: rgba(239,248,244,0.92);
  font-size: 24px;
}
.xzhpro-photo-slot-copy span {
  color: rgba(239,248,244,0.66);
  line-height: 1.8;
  font-size: 15px;
}

.xzhpro-section { padding: 92px 0; }
.xzhpro-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.xzhpro-section-head span {
  color: var(--green);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.xzhpro-section-head h2,
.xzhpro-contact-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.xzhpro-section-head-wide p { max-width: 520px; }
.xzhpro-position-grid,
.xzhpro-cooperation-grid,
.xzhpro-about-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 28px;
  align-items: start;
}
.xzhpro-position-copy,
.xzhpro-cooperation-copy {
  display: grid;
  gap: 18px;
}
.xzhpro-business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.xzhpro-business-card,
.xzhpro-scene-card,
.xzhpro-about-main,
.xzhpro-about-side,
.xzhpro-capability-cards article,
.xzhpro-process-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.xzhpro-business-card { padding: 26px; }
.xzhpro-business-card-lead {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  min-height: 100%;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(14,50,40,0.98), rgba(22,74,61,0.94)),
    radial-gradient(circle at 18% 22%, rgba(138,210,185,0.22), transparent 26%);
  color: var(--white-ink);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 34px 82px rgba(18, 61, 49, 0.24);
}
.xzhpro-business-card-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.10), transparent 18%);
  pointer-events: none;
}
.xzhpro-business-card-lead strong {
  position: relative;
  display: block;
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.24;
}
.xzhpro-business-card-lead p {
  position: relative;
  color: rgba(239,248,244,0.82);
  max-width: 32ch;
}
.xzhpro-business-card h3,
.xzhpro-scene-card h3,
.xzhpro-process-grid h3,
.xzhpro-about-side strong {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.28;
}
.xzhpro-scene-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr .82fr;
  gap: 20px;
}
.xzhpro-scene-card {
  display: grid;
  grid-template-rows: 240px minmax(0, 1fr);
  overflow: hidden;
}
.xzhpro-scene-card-large {
  min-height: 100%;
  grid-template-rows: 260px minmax(0, 1fr);
}
.xzhpro-scene-card > .xzhpro-scene-slot {
  min-height: 0;
  height: 100%;
}
.xzhpro-scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.05);
}
.xzhpro-scene-card div { padding: 22px 20px 24px; }
.xzhpro-capability-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.xzhpro-capability-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.xzhpro-capability-cards article { padding: 22px; }
.xzhpro-capability-cards strong,
.xzhpro-process-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.xzhpro-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.xzhpro-process-grid article { padding: 24px; }
.xzhpro-process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 14px;
}
.xzhpro-cooperation-copy ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}
.xzhpro-capability-grid::after {
  content: "";
  display: block;
  min-height: 220px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(216,240,228,0.86), rgba(121,198,174,0.22));
  background-image: url("images/detail-grid.svg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.xzhpro-about-main { padding: 30px; }
.xzhpro-about-side {
  overflow: hidden;
}
.xzhpro-about-side img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}
.xzhpro-about-side div { padding: 20px 22px 24px; }
.xzhpro-about-side strong { display: block; }
.xzhpro-contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: 32px;
  background: linear-gradient(135deg, #123d31, #1c5a49);
  color: var(--white-ink);
  box-shadow: 0 24px 72px rgba(18, 61, 49, 0.18);
}
.xzhpro-contact-copy span {
  display: inline-flex;
  color: rgba(239,248,244,0.78);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.xzhpro-contact-copy p { color: rgba(239,248,244,0.84); }
.xzhpro-contact-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.xzhpro-contact-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(239,248,244,0.86);
  font-size: 14px;
}
.xzhpro-footer {
  padding: 28px 0 46px;
  color: var(--muted);
  font-size: 13px;
}
.xzhpro-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
@media (max-width: 1120px) {
  .xzhpro-header-inner,
  .xzhpro-hero-grid,
  .xzhpro-position-grid,
  .xzhpro-capability-grid,
  .xzhpro-cooperation-grid,
  .xzhpro-about-grid,
  .xzhpro-contact-band { grid-template-columns: 1fr; }
  .xzhpro-business-grid,
  .xzhpro-scene-grid,
  .xzhpro-capability-cards,
  .xzhpro-process-grid { grid-template-columns: repeat(2, 1fr); }
  .xzhpro-nav { justify-content: flex-start; }
  .xzhpro-nav-cta { justify-self: start; }
  .xzhpro-contact-pills { justify-content: flex-start; }
  .xzhpro-business-card-lead { grid-column: span 2; }
  .xzhpro-hero-metrics { grid-template-columns: 1fr; }
  .xzhpro-scene-card,
  .xzhpro-scene-card-large { grid-template-rows: 220px minmax(0, 1fr); }
}
@media (max-width: 760px) {
  .xzhpro-header {
    position: absolute;
    background: rgba(10, 34, 28, 0.52);
  }
  .xzhpro-header-inner { padding: 18px 0; }
  .xzhpro-hero-grid { padding: 152px 0 76px; }
  .xzhpro-hero-copy h1 { font-size: clamp(36px, 10vw, 56px); }
  .xzhpro-hero-panel { padding: 24px; }
  .xzhpro-hero-metrics { grid-template-columns: 1fr; }
  .xzhpro-photo-inset {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
  .xzhpro-business-grid,
  .xzhpro-scene-grid,
  .xzhpro-capability-cards,
  .xzhpro-process-grid { grid-template-columns: 1fr; }
  .xzhpro-business-card-lead { grid-column: auto; }
  .xzhpro-scene-card,
  .xzhpro-scene-card-large { grid-template-rows: 220px minmax(0, 1fr); }
  .xzhpro-section { padding: 74px 0; }
  .xzhpro-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.xzhpro-hero-glass {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 28px 80px rgba(8, 24, 19, 0.24);
  backdrop-filter: blur(18px);
}
.xzhpro-hero-glass-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(239,248,244,0.88);
}
.xzhpro-hero-glass-head strong { font-size: 20px; }
.xzhpro-hero-glass-head span { font-size: 13px; color: rgba(239,248,244,0.62); }
.xzhpro-hero-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.xzhpro-hero-glass-grid article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.xzhpro-hero-glass-grid small {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(239,248,244,0.60);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.xzhpro-hero-glass-grid p {
  color: rgba(239,248,244,0.82);
  line-height: 1.8;
  font-size: 15px;
}
.xzhpro-photo-slot {
  position: relative;
  min-height: 320px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    radial-gradient(circle at 18% 16%, rgba(138,210,185,0.18), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  overflow: hidden;
}
.xzhpro-photo-slot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(239,248,244,0.20);
}
.xzhpro-photo-slot::after {
  content: "";
  position: absolute;
  inset: auto -120px -110px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(138,210,185,0.18), transparent 70%);
}
.xzhpro-photo-slot-badge {
  position: relative;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(239,248,244,0.74);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.xzhpro-photo-slot-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
}
.xzhpro-photo-slot-copy strong {
  color: rgba(239,248,244,0.92);
  font-size: 24px;
}
.xzhpro-photo-slot-copy span {
  color: rgba(239,248,244,0.66);
  line-height: 1.8;
  font-size: 15px;
}
.xzhpro-scene-card-slot {
  display: grid;
  grid-template-rows: 220px auto;
}
.xzhpro-scene-slot {
  position: relative;
  background:
    linear-gradient(135deg, rgba(18,61,49,0.72), rgba(28,90,73,0.56)),
    url("images/scene-facility.svg"),
    radial-gradient(circle at 18% 20%, rgba(138,210,185,0.16), transparent 20%);
  background-size: cover, cover, auto;
  background-position: center, center, center;
  background-repeat: no-repeat;
}
.xzhpro-scene-slot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.00));
}
.xzhpro-scene-slot::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  height: 90px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.10));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.xzhpro-about-side-texture {
  min-height: 100%;
  display: grid;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(18,61,49,0.98), rgba(24,72,60,0.94)),
    radial-gradient(circle at 24% 20%, rgba(138,210,185,0.16), transparent 22%);
  color: var(--white-ink);
}
.xzhpro-about-side-texture p { color: rgba(239,248,244,0.78); }
@media (max-width: 1120px) {
  .xzhpro-hero-glass-grid { grid-template-columns: 1fr; }
}
