/*
 * ANSONMETAL front-end stylesheet.
 *
 * Maintenance map:
 * 1. Global tokens/reset and shared header/footer components;
 * 2. Homepage sections: hero, intro, materials, products, map, videos, news;
 * 3. Inner pages: company, material, approval, global market, reference, contact;
 * 4. Reference logo sphere/list and modal;
 * 5. Responsive overrides near the bottom of the file.
 */
:root {
  --blue: #009fe9;
  --blue-dark: #007bb8;
  --quality-bg: #02070d;
  --ink: #111214;
  --muted: #5e646d;
  --line: rgba(17, 18, 20, 0.12);
  --soft: #f5f6f7;
  --white: #ffffff;
  --steel: #8ba2b3;
  --cyan: #76d4ff;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
  --font-num: "Oswald", "Montserrat", sans-serif;
  --font: "Montserrat", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  --page-gutter: clamp(64px, 6vw, 112px);
  --page-gutter-wide: clamp(80px, 7vw, 136px);
}

* { box-sizing: border-box; }
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #02070d;
}
html.has-video-modal,
html.has-workshop-modal { overflow: hidden; }
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
main {
  display: block;
  margin: 0;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.honeypot { position: absolute; left: -9999px; }

/* Fixed top navigation. The logo intentionally overflows vertically while menu
   and language controls stay centered in both transparent and scrolled states. */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  top: 0 !important;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 50;
  background-color: transparent;
  background-image: none;
  border-bottom: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: background-color, border-color, box-shadow;
  transition: background-color 80ms linear, border-color 80ms linear, box-shadow 80ms linear, backdrop-filter 80ms linear;
}
.site-header::before {
  display: none;
  content: none;
}
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  background-image: none;
  border-color: var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}
body.is-home .site-header {
  transition-duration: 45ms;
}
body.is-home .site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.site-header.is-scrolled .header-inner {
  align-items: center;
}
.site-header.is-scrolled .primary-nav,
.site-header.is-scrolled .header-actions {
  align-self: center;
}
.header-inner {
  position: relative;
  z-index: 1;
  width: min(1460px, calc(100% - var(--page-gutter)));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.brand-block {
  align-self: stretch;
  width: 132px;
  min-height: 102px;
  margin-bottom: -18px;
  display: grid;
  place-items: center;
  background-color: var(--anson-logo-bg, #005a94);
  box-shadow: 0 18px 46px rgba(0, 90, 148, 0.34);
  position: relative;
  overflow: hidden;
  will-change: background-color, box-shadow;
  transition: background-color 70ms linear, box-shadow 70ms linear;
}
body.is-home .brand-block { transition-duration: 45ms; }
.brand-logo { grid-area: 1 / 1; display: grid; place-items: center; padding: 10px; }
.brand-logo img {
  width: 108px;
  max-height: 84px;
  object-fit: contain;
  animation: logoBreath 4.8s ease-in-out infinite;
  transform-origin: 50% 50%;
  will-change: opacity, transform, filter;
}
.brand-logo-blue { opacity: 0; }
.site-header.is-scrolled .brand-block {
  min-height: 88px;
  background-color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}
.site-header.is-scrolled .brand-logo-white { opacity: 0; }
.site-header.is-scrolled .brand-logo-blue { opacity: 1; }
.primary-nav {
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  gap: clamp(12px, 1.6vw, 25px);
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  padding: 0;
  white-space: nowrap;
}
.site-header.is-scrolled .primary-nav a { color: var(--ink); }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after { transform: scaleX(1); }
.nav-submenu {
  position: absolute;
  top: calc(100% - 7px);
  left: 50%;
  min-width: 210px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 58px rgba(0, 26, 45, 0.18);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-submenu a,
.site-header.is-scrolled .nav-submenu a {
  display: block;
  color: var(--ink);
  padding: 12px 14px;
  border: 0;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.nav-submenu a::after { display: none; }
.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(0, 159, 233, 0.12);
  color: var(--blue-dark);
  transform: translateX(3px);
}
.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
}
.header-actions {
  align-self: center;
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled .header-actions {
  border-color: var(--line);
  background: rgba(245, 246, 247, 0.84);
}
.lang-btn {
  width: 38px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
}
.site-header.is-scrolled .lang-btn { color: var(--ink); }
.lang-btn.is-active { background: var(--blue); color: #fff; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  place-items: center;
  cursor: pointer;
}
.nav-toggle span {
  grid-area: 1 / 1;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 200ms ease;
}
.nav-toggle span:first-child { transform: translateY(-6px); }
.nav-toggle span:last-child { transform: translateY(6px); }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(0) rotate(-45deg); }

/* Homepage hero and shared inner-hero motion. */
.hero {
  position: relative;
  margin-top: 0;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #090b0e;
}
.hero-video,
.inner-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.hero-video { animation: heroZoom 18s ease-in-out infinite alternate; }
.hero::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 16s linear infinite;
}
.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.18) 48%, transparent 72%);
  width: 46%;
  transform: skewX(-16deg) translateX(-140%);
  animation: scanMove 7.5s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 5;
  width: min(1400px, calc(100% - var(--page-gutter)));
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.45fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}
.hero-copy { max-width: 880px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.96;
  letter-spacing: 0;
}
.hero-char { display: inline-block; opacity: 0; animation: heroCharIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  opacity: 0;
  transform: translateY(32px);
}
.hero-lead.animate-in { animation: heroLeadIn 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 159, 233, 0.28);
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--blue-dark); }
.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(22px) saturate(1.18);
  box-shadow: var(--shadow);
}
.hero-panel {
  color: var(--white);
  background: rgba(10, 14, 18, 0.44);
  border-color: rgba(255, 255, 255, 0.22);
  padding: 26px;
  align-self: end;
  position: relative;
  overflow: hidden;
}
.hero-panel::before { content: ""; position: absolute; inset: 0; border-top: 3px solid var(--blue); pointer-events: none; }
.panel-kicker, .panel-note { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 13px; }
.hero-panel h2 { margin: 10px 0 22px; font-size: 22px; line-height: 1.1; }
.readiness-meter { height: 6px; background: rgba(255, 255, 255, 0.15); overflow: hidden; }
.readiness-meter span { display: block; width: 82%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); animation: meterPulse 2.8s ease-in-out infinite; }
.chip-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; padding: 0; }
.chip-list li { padding: 8px 10px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.16); font-size: 12px; font-weight: 800; }
.hero-metrics {
  position: relative;
  z-index: 5;
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow);
}
.hero-metrics div { min-height: 116px; padding: 24px; border-right: 1px solid var(--line); }
.hero-metrics div:last-child { border-right: 0; }
.hero-metrics strong,
.quality-stat h3,
.country-metrics strong,
.performance-card strong,
.index-stat strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  font-family: var(--font-num);
  font-weight: 700;
}
.hero-metrics span { display: block; margin-top: 8px; color: var(--muted); font-weight: 700; }

.section-pad, .section { padding: clamp(78px, 10vw, 132px) 0; }
.section-head,
.intro-layout,
.product-grid,
.material-board,
.certificate-strip,
.feature-split,
.performance-cards,
.control-flow,
.download-list-home,
.news-grid,
.contact-band,
.listing-section > *,
.detail-layout,
.related-section .content-grid,
.about-overview,
.values-band .value-grid,
.about-matrix .matrix-grid,
.site-footer > * {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
}
.section-head { margin-bottom: 36px; }
.section-head-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-head h2 { max-width: 920px; margin: 0; font-size: clamp(22px, 3.4vw, 40px); line-height: 1.04; letter-spacing: 0; }
.text-link { color: var(--blue); font-weight: 900; display: inline-flex; align-items: center; gap: 8px; }
.text-link.on-dark { color: var(--cyan); }

.intro { background: linear-gradient(180deg, #fff 0%, #f5f6f7 100%); }
.intro-layout { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr); gap: clamp(28px, 5vw, 68px); align-items: center; }
.intro-media { position: relative; overflow: hidden; }
.intro-media::after { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.intro-media img { width: 100%; aspect-ratio: 16 / 8.2; object-fit: cover; transition: transform 700ms ease; }
.intro-media:hover img { transform: scale(1.04); }
.intro-text { font-size: 18px; color: #262a30; }
.intro-text p { margin: 0 0 20px; }
.source-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.source-strip span { padding: 9px 11px; background: #e9edf0; color: #21262b; font-size: 12px; font-weight: 900; }

.products, .performance-home { background: var(--ink); color: var(--white); }
.products .section-head h2,
.performance-home .section-head h2 { color: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.16); }
.product-card { min-height: 440px; background: #181a1e; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.product-card img { width: 100%; height: 220px; object-fit: cover; opacity: 0.82; transition: transform 650ms ease, opacity 650ms ease; }
.product-card:hover img { transform: scale(1.06); opacity: 1; }
.product-card div { padding: 24px; }
.card-index { color: var(--blue); font-weight: 900; margin: 0 0 34px; }
.product-card h3 { margin: 0 0 14px; font-size: 20px; line-height: 1.12; }
.product-card p:last-child { margin: 0; color: rgba(255, 255, 255, 0.72); }

.materials { background: linear-gradient(90deg, rgba(0, 159, 233, 0.06), transparent 34%), #fff; }
.material-board { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.material-board article { min-height: 230px; padding: clamp(24px, 4vw, 42px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 246, 247, 0.82)); transition: transform 220ms ease, box-shadow 220ms ease; }
.material-board article:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08); }
.material-board h3 { margin: 0 0 18px; font-size: 21px; }
.material-board p { margin: 0; color: var(--muted); }

.cert-home, .news-home, .downloads-home { background: #fff; }
.certificate-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.certificate-mini { min-height: 260px; padding: 28px; border: 1px solid var(--line); background: linear-gradient(145deg, #fff, #f4f7f9); display: grid; align-content: space-between; position: relative; overflow: hidden; transition: transform 220ms ease, border-color 220ms ease; }
.certificate-mini::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--blue); }
.certificate-mini:hover { transform: translateY(-5px); border-color: rgba(0,159,233,.42); }
.certificate-mini span { color: var(--blue); font-size: 12px; font-weight: 900; }
.certificate-mini strong { font-size: 20px; line-height: 1.12; }
.certificate-mini em { color: var(--muted); font-style: normal; }
.certificate-showcase {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: stretch;
}
.certificate-feature {
  position: relative;
  min-height: 620px;
  padding: 24px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 78% 10%, rgba(0,159,233,.28), transparent 28%), #09111b;
  box-shadow: var(--shadow);
}
.certificate-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(2, 7, 13, .86));
}
.certificate-feature figure {
  margin: 0;
  align-self: start;
  overflow: hidden;
  background: #fff;
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 72px rgba(0,0,0,.36);
}
.certificate-feature img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: top center;
  transition: transform 650ms ease;
}
.certificate-feature:hover img { transform: scale(1.035); }
.certificate-feature > div {
  position: relative;
  z-index: 2;
  padding-top: 22px;
}
.certificate-feature h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.04;
}
.certificate-feature p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.72);
}
.certificate-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  padding: 9px 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.certificate-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.certificate-home-card {
  min-height: 300px;
  padding: 18px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fff, #f5f8fa);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.certificate-home-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,159,233,.36);
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
}
.certificate-home-card img {
  width: 120px;
  height: 168px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(17,18,20,.12);
  background: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.1);
}
.certificate-home-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 900;
}
.certificate-home-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.14;
}
.certificate-home-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.news-tabs-shell {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.news-tab-list {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid var(--line);
}
.news-tab {
  min-width: min(50%, 260px);
  min-height: 66px;
  padding: 0 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}
.news-tab:hover,
.news-tab:focus-visible { color: var(--blue); outline: none; }
.news-tab.is-active { color: #fff; background: var(--blue); }
.news-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 28px;
}
.news-panel:not(.is-active),
.news-panel[hidden] { display: none; }
.news-card {
  min-height: 430px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-rows: 220px 1fr;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,159,233,.34);
  box-shadow: 0 20px 54px rgba(0,0,0,.08);
}
.news-media { overflow: hidden; background: var(--soft); }
.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}
.news-card:hover .news-media img { transform: scale(1.05); }
.news-card div {
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 12px;
}
.news-card time {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.news-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
}
.news-card p {
  margin: 0;
  color: var(--muted);
}

.video-home {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #03070d;
}
.video-cinema {
  min-height: 100svh;
  isolation: isolate;
}
.video-cinema-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,7,13,.98) 0%, rgba(3,7,13,.72) 42%, rgba(3,7,13,.9) 100%),
    radial-gradient(circle at 72% 24%, rgba(0,159,233,.22), transparent 28%),
    #03070d;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(.78) brightness(.72);
  transition: background-image 500ms ease, filter 500ms ease;
  z-index: -2;
}
.video-cinema-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.1), #000 36%, rgba(0,0,0,.2));
}
.video-cinema-inner {
  width: min(1500px, calc(100% - var(--page-gutter)));
  min-height: 100svh;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, .58fr) minmax(520px, 1.24fr) minmax(210px, .38fr);
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  padding: clamp(112px, 13vh, 150px) 0 clamp(58px, 7vh, 82px);
}
.video-cinema-copy {
  max-width: 500px;
  display: grid;
  gap: 22px;
}
.video-cinema-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: .96;
  letter-spacing: 0;
}
.video-cinema-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.72;
}
.video-cinema-stage {
  position: relative;
  min-height: min(68vh, 720px);
}
.video-cinema-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0;
  transform: translateX(24px) scale(.985);
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms ease;
}
.video-cinema-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.video-cinema-slide[hidden] { display: none; }
.video-cover-button {
  position: relative;
  display: block;
  width: 100%;
  min-height: min(62vh, 640px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 0;
  background: #07111a;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(0,0,0,.42);
}
.video-auto-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.012);
  transition: transform 900ms ease, filter 900ms ease;
}
.video-auto-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,7,13,0) 42%, rgba(3,7,13,.76) 100%),
    linear-gradient(90deg, rgba(0,159,233,.2), transparent 32%);
}
.video-cover-button:hover .video-auto-cover { transform: scale(1.06); filter: saturate(1.08) brightness(1.04); }
.video-cover-source {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.video-play-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0,159,233,.92);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 14px rgba(0,159,233,.14), 0 20px 56px rgba(0,159,233,.35);
  z-index: 2;
}
.video-play-ripple::before,
.video-play-ripple::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(0,159,233,.55);
  border-radius: inherit;
  animation: videoRipple 2.4s ease-out infinite;
}
.video-play-ripple::after {
  animation-delay: 1.2s;
}
.video-play-ripple span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;
  position: relative;
  z-index: 1;
}
.video-slide-copy {
  position: absolute;
  left: clamp(24px, 3vw, 44px);
  right: clamp(24px, 3vw, 44px);
  bottom: clamp(24px, 3vw, 42px);
  max-width: 620px;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}
.video-slide-copy span,
.video-playlist-item span {
  color: var(--blue);
  font-weight: 900;
}
.video-slide-copy h3 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(20px, 2vw, 36px);
  line-height: 1.08;
}
.video-slide-copy p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,.74);
  font-size: 17px;
  line-height: 1.68;
}
.video-cinema-controls {
  display: grid;
  gap: 18px;
}
.video-next-button,
.video-playlist-item {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  cursor: pointer;
  text-align: left;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}
.video-next-button {
  min-height: 96px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-next-button span {
  font-weight: 900;
}
.video-next-button strong {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
}
.video-playlist {
  display: grid;
  gap: 10px;
}
.video-playlist-item {
  min-height: 96px;
  padding: 18px;
}
.video-playlist-item strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.35;
}
.video-next-button:hover,
.video-playlist-item:hover,
.video-playlist-item.is-active {
  transform: translateY(-2px);
  border-color: rgba(0,159,233,.72);
  background: rgba(0,159,233,.16);
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(18px);
}
.video-modal[hidden] { display: none; }
.video-modal-frame {
  width: min(1180px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 34px 100px rgba(0,0,0,.55);
}
.video-modal-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.video-modal-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.equipment-home { background: #eef1f3; }
.feature-split { display: grid; grid-template-columns: 1.1fr 0.8fr; align-items: center; gap: clamp(24px, 5vw, 68px); }
.feature-split figure { margin: 0; overflow: hidden; }
.feature-split img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.feature-copy { padding: clamp(26px, 4vw, 46px); color: var(--ink); }
.feature-copy h3 { margin: 0 0 16px; font-size: clamp(20px, 2.7vw, 31px); line-height: 1.08; }
.feature-copy p { color: #343941; }

.performance-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.performance-card { min-height: 320px; padding: 28px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(18px); display: grid; align-content: space-between; }
.performance-card span { color: var(--cyan); font-weight: 900; }
.performance-card strong { color: #fff; font-size: 48px; }
.performance-card h3 { margin: 0 0 10px; font-size: 22px; }
.performance-card p { margin: 0; color: rgba(255,255,255,.68); }

.home-markets { background: #f3f5f6; }
.home-market-shell {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  background: var(--white);
  box-shadow: var(--shadow);
}
.home-market-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.home-market-tab {
  min-height: 72px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.home-market-tab:last-child { border-right: 0; }
.home-market-tab:hover,
.home-market-tab:focus-visible { color: var(--blue); outline: none; }
.home-market-tab.is-active { color: var(--white); background: var(--blue); }
.home-market-panels { position: relative; }
.home-market-panel {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 520px;
  position: relative;
}
.home-market-panel:not(.is-active) { display: none; }
.home-market-panel[hidden] { display: none; }
.home-market-visual {
  aspect-ratio: 1570 / 1079;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  position: relative;
}
.home-market-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}
.home-market-panel.is-active .home-market-visual img { animation: marketImageIn 620ms ease both; }
.home-market-copy {
  margin: 34px;
  padding: clamp(24px, 4vw, 42px);
  align-self: center;
  color: var(--ink);
}
.home-market-copy h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: 0;
}
.home-market-copy p:not(.eyebrow) {
  margin: 0;
  color: #343941;
}
.home-market-copy ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.home-market-copy li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}
.home-market-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 9px;
  height: 9px;
  background: var(--blue);
}
@keyframes marketImageIn {
  from { transform: scale(1.035); filter: saturate(.88) brightness(.96); }
  to { transform: scale(1); filter: saturate(1) brightness(1); }
}

/* Home/global map module. Dots and popovers are CMS-managed coordinates/content. */
.quality,
.quality-map {
  background: var(--quality-bg);
  color: var(--white);
  padding: 0;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}
.quality-container { position: relative; width: 100%; min-height: 100vh; overflow: hidden; background: var(--quality-bg); }
.quality-map-area {
  position: absolute;
  top: clamp(86px, 11vh, 124px);
  right: clamp(70px, 8vw, 150px);
  bottom: clamp(54px, 7vh, 86px);
  left: clamp(520px, 30vw, 640px);
  background: #02070d;
  overflow: visible;
}
.quality-map-area::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 83% 12%, rgba(0, 159, 233, 0.22), transparent 14%),
    linear-gradient(90deg, rgba(2, 7, 13, 0.28), transparent 48%, rgba(2, 7, 13, 0.18));
}
.quality-map-chart {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.quality-map-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: saturate(.9) brightness(.72); }
.quality-title-overlay {
  position: absolute;
  top: clamp(68px, 10vh, 112px);
  left: clamp(44px, 5.2vw, 100px);
  z-index: 10;
  width: min(430px, 26vw);
  max-width: 430px;
  pointer-events: none;
}
.quality-title-overlay .btn,
.quality-title-overlay a { pointer-events: auto; }
.quality-title-overlay h2 { color: var(--white); font-size: clamp(24px, 2.8vw, 43px); line-height: 1.08; margin: 0 0 18px; }
.quality-title-overlay .accent { color: var(--blue); }
.quality-title-overlay p:not(.eyebrow) { color: rgba(255,255,255,.68); font-size: 15px; }
.quality-dot {
  position: absolute;
  left: var(--dot-x, 50%);
  top: var(--dot-y, 50%);
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--blue), 0 0 28px rgba(0,159,233,0.4);
  z-index: 8;
  animation: qualityDotBreathe 2s ease-in-out infinite;
}
.quality-dot span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  animation: qualityRipple 2.5s ease-out infinite;
  opacity: 0;
}
.quality-dot span:nth-child(2) { animation-delay: .5s; }
.quality-dot span:nth-child(3) { animation-delay: 1s; }
.quality-market-popover {
  position: absolute;
  --popover-half: min(280px, calc((100vw - 48px) / 2), 50%);
  left: clamp(var(--popover-half), var(--dot-x, 50%), calc(100% - var(--popover-half)));
  top: var(--dot-y, 50%);
  z-index: 12;
  width: min(560px, calc(100vw - 48px));
  padding: 30px;
  color: #fff;
  background: rgba(9, 20, 30, 0.96);
  border: 1px solid rgba(118, 212, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, 30px) scale(0.96);
  transform-origin: 50% 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms ease;
}
.quality-market-popover::before {
  content: "";
  position: absolute;
  right: -46px;
  top: -52px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(0, 159, 233, 0.18);
}
.quality-market-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 18px;
  height: 18px;
  background: rgba(9, 20, 30, 0.96);
  border-left: 1px solid rgba(118, 212, 255, 0.18);
  border-top: 1px solid rgba(118, 212, 255, 0.18);
  transform: translateX(-50%) rotate(45deg);
}
.quality-dot:hover + .quality-market-popover,
.quality-dot:focus-visible + .quality-market-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 22px) scale(1);
}
.quality-popover-country {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 16px;
  font-weight: 800;
}
.quality-market-popover h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.15;
  letter-spacing: 0;
}
.quality-market-popover p {
  position: relative;
  z-index: 1;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}
.quality-market-popover dl {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}
.quality-market-popover div {
  min-height: 84px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}
.quality-market-popover dt {
  margin: 0;
  color: #fff;
  font-family: var(--font-num);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.quality-market-popover dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.quality-stats {
  position: absolute;
  bottom: clamp(28px, 5vh, 58px);
  left: clamp(44px, 5.2vw, 100px);
  width: min(720px, 48vw);
  max-width: calc(100% - clamp(88px, 10.4vw, 200px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 32px);
  z-index: 10;
  pointer-events: none;
}
.quality-stat { min-width: 0; }
.quality-stat h3 { font-size: 24px; color: var(--blue); margin: 0; }
.quality-stat span { display: block; font-size: 11px; color: rgba(255,255,255,.62); line-height: 1.15; text-transform: uppercase; }

.control-home { background: #f3f5f6; }
.control-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.flow-node { min-height: 170px; padding: 24px; background: #fff; display: grid; align-content: space-between; }
.flow-node span { color: var(--blue); font-weight: 900; }
.flow-node strong { font-size: 20px; }
.download-list-home { display: grid; gap: 12px; }
.download-row { min-height: 86px; padding: 16px 20px; border: 1px solid var(--line); display: grid; grid-template-columns: 70px 1fr auto; gap: 18px; align-items: center; background: #fff; transition: transform 220ms ease, border-color 220ms ease; }
.download-row:hover { transform: translateY(-3px); border-color: var(--blue); }
.file-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0,159,233,.22);
}
.file-xlsx { background: #168556; }
.file-docx { background: #225fc7; }
.download-row em { color: var(--muted); font-style: normal; font-weight: 800; }

.news { background: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-item { min-height: 210px; padding: 26px; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; transition: transform 220ms ease, border-color 220ms ease; }
.news-item:hover { transform: translateY(-4px); border-color: var(--blue); }
.news-item time { color: var(--muted); font-size: 13px; font-weight: 800; }
.news-item h3 { margin: 30px 0 0; font-size: 21px; line-height: 1.16; }
.contact { background: linear-gradient(135deg, rgba(118, 212, 255, 0.18), transparent 34%), linear-gradient(315deg, rgba(0, 159, 233, 0.14), transparent 40%), #eef1f3; }
.contact-band { display: grid; grid-template-columns: 0.8fr 0.62fr; gap: clamp(28px, 5vw, 68px); align-items: start; }
.contact-band h2 { margin: 0; font-size: clamp(23px, 3.4vw, 42px); line-height: 1.04; }
.contact-band p:not(.eyebrow) { max-width: 620px; color: #343941; font-size: 18px; }
.quote-form { padding: 28px; display: grid; gap: 16px; }
.quote-form label, .captcha-form label { display: grid; gap: 8px; font-weight: 900; }
.quote-form input, .quote-form textarea, .captcha-form input {
  width: 100%;
  border: 1px solid rgba(17, 18, 20, 0.18);
  background: rgba(255, 255, 255, 0.82);
  padding: 13px 14px;
  outline: none;
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.quote-form input:focus, .quote-form textarea:focus, .captcha-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,159,233,.12); }
.quote-form .btn, .captcha-form .btn { width: 100%; border: 0; }
.form-success { padding: 12px 14px; background: rgba(22, 133, 86, .12); color: #168556; font-weight: 800; }
.form-errors { padding: 12px 14px; background: rgba(180, 29, 29, .1); color: #b41d1d; font-weight: 800; }

/* Company landing page, including the animated organization relationship chart. */
.company-landing { background: #fff; }
.company-overview {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}
.company-overview h2 {
  margin: 0 0 18px;
  font-size: clamp(23px, 3.4vw, 46px);
  line-height: .98;
}
.company-overview p:not(.eyebrow) {
  color: #343941;
  font-size: 18px;
}
.company-overview figure {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.company-overview img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}
.company-stat-grid {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.company-stat-grid article {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  align-content: end;
  background: linear-gradient(145deg, #fff, #f6f8fa);
}
.company-stat-grid strong {
  color: var(--blue);
  font-family: var(--font-num);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
}
.company-stat-grid span {
  color: var(--muted);
  font-weight: 800;
}
.company-org {
  scroll-margin-top: 110px;
  background: #fff;
}
.company-org .section-note {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.company-org-canvas {
  position: relative;
  width: 100%;
  min-height: clamp(760px, 62vw, 940px);
  margin-inline: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.company-org-canvas::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(220px, 27vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 18, 20, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.company-org-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.company-org-lines line {
  stroke: rgba(17, 18, 20, .28);
  stroke-width: 1;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  animation: orgLinePulse 4.8s ease-in-out infinite;
  animation-delay: var(--org-delay, 0ms);
}
.company-org-line-detail {
  stroke: rgba(17, 18, 20, .24);
}
.company-org-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(168px, 14vw, 220px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 28px;
  color: #fff;
  background: #005a94;
  border: 1px solid rgba(255, 255, 255, .32);
  box-shadow: 0 22px 60px rgba(0, 90, 148, .28);
}
.company-org-core::before,
.company-org-core::after {
  display: none;
}
.company-org-core::after {
  inset: -34px;
  opacity: .42;
  animation-delay: 1.2s;
}
.company-org-mark {
  width: min(138px, 76%);
  display: grid;
  place-items: center;
}
.company-org-mark img {
  width: 100%;
  height: auto;
  display: block;
}
.company-org-role {
  position: absolute;
  left: var(--org-role-x);
  top: var(--org-role-y);
  z-index: 4;
  padding: 3px 8px;
  transform: translate(-50%, -50%);
  color: #202328;
  background: rgba(255, 255, 255, .92);
  font-size: clamp(24px, 2.15vw, 34px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: color 200ms ease, transform 200ms ease;
  animation-delay: var(--org-delay, 0ms);
}
.company-org-role:hover {
  color: var(--blue);
  transform: translate(-50%, -50%) scale(1.04);
}
.company-org-detail {
  position: absolute;
  left: var(--org-detail-x);
  top: var(--org-detail-y);
  z-index: 3;
  width: clamp(190px, 18vw, 276px);
  color: #252a30;
  background: rgba(255, 255, 255, .76);
  line-height: 1.35;
}
.company-org-detail.is-left {
  text-align: right;
  transform: translate(-100%, -50%);
}
.company-org-detail.is-right {
  text-align: left;
  transform: translate(0, -50%);
}
.company-org-detail.is-center {
  text-align: center;
  transform: translate(-50%, -50%);
}
.company-org-mobile-role {
  display: none;
  color: var(--ink);
}
.company-org-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #2f3338;
  font-size: clamp(12px, .95vw, 15px);
  font-weight: 400;
  letter-spacing: 0;
}
.company-org-detail li {
  position: relative;
}
.company-org-detail li + li {
  margin-top: 10px;
}
.company-org-detail li + li::before {
  content: "+";
  display: block;
  margin: -4px 0 4px;
  color: #33383e;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}
.company-dark {
  color: #fff;
  background: radial-gradient(circle at 80% 10%, rgba(0,159,233,.18), transparent 28%), #0a0d12;
}
.company-dark .section-head h2 { color: #fff; }
.company-flow {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
}
.company-flow article {
  min-height: 310px;
  padding: 28px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  display: grid;
  align-content: space-between;
}
.company-flow span { color: var(--cyan); font-weight: 900; }
.company-flow h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.08;
}
.company-flow p {
  margin: 0;
  color: rgba(255,255,255,.68);
}

.material-landing {
  background:
    linear-gradient(90deg, rgba(0,159,233,.06), transparent 36%),
    #f5f7f9;
}
.material-lead-grid {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.material-lead-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
}
.material-lead-grid span {
  color: var(--blue);
  font-weight: 900;
}
.material-lead-grid h3 {
  margin: 26px 0 12px;
  font-size: 24px;
  line-height: 1.12;
}
.material-lead-grid p {
  margin: 0;
  color: var(--muted);
}
.material-anchor-bar {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.material-anchor-bar a {
  padding: 11px 14px;
  border: 1px solid rgba(0,159,233,.24);
  background: #fff;
  color: #10202d;
  font-size: 13px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.material-anchor-bar a:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.global-landing { background: #fff; }
.global-map-stage {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  color: #fff;
  background: var(--quality-bg);
  --global-map-shift: clamp(170px, 14vw, 300px);
}
.global-map-stage .quality-map-chart {
  position: absolute;
  inset: 0;
  opacity: .95;
  transform: translateX(var(--global-map-shift));
  transform-origin: center;
}
.global-map-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,7,13,.94) 0%, rgba(2,7,13,.72) 34%, rgba(2,7,13,.18) 70%),
    radial-gradient(circle at 75% 20%, rgba(0,159,233,.18), transparent 28%);
}
.global-map-copy {
  position: relative;
  z-index: 4;
  width: min(520px, calc(100% - var(--page-gutter)));
  min-height: 86vh;
  margin-left: max(20px, calc((100vw - 1400px) / 2));
  padding: 120px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.global-map-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(25px, 3.4vw, 48px);
  line-height: .98;
}
.global-map-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
  font-size: 18px;
}
.global-map-dots {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  transform: translateX(var(--global-map-shift));
}
.global-map-dots span {
  position: absolute;
  left: var(--dot-x);
  top: var(--dot-y);
  z-index: 5;
  pointer-events: auto;
  padding: 9px 12px 9px 28px;
  color: #fff;
  background: rgba(0,159,233,.16);
  border: 1px solid rgba(0,159,233,.38);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}
.global-map-dots span::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--blue);
  transform: translateY(-50%);
}
.global-stat-strip {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin: -70px auto 0;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  box-shadow: var(--shadow);
}
.global-stat-strip div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: end;
}
.global-stat-strip div:last-child { border-right: 0; }
.global-stat-strip strong {
  color: var(--blue);
  font-family: var(--font-num);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
}
.global-stat-strip span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}
.global-market-cards .market-card {
  min-height: 280px;
}
.global-market-cards {
  width: min(1320px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.global-market-cards .market-card {
  min-width: 0;
  grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
  border-color: rgba(15, 27, 38, .12);
  background: linear-gradient(145deg, #fff, #f7fafc);
  box-shadow: 0 18px 54px rgba(9, 25, 38, .07);
}
.global-market-cards .market-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 68px rgba(9, 25, 38, .12);
}
.global-market-cards .market-card img {
  min-height: 280px;
  height: 100%;
}
.global-market-cards .market-card > div {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.global-market-cards .market-card h2 {
  max-width: 520px;
  font-size: clamp(18px, 1.5vw, 24px);
}
.global-market-cards .market-card p:not(.eyebrow) {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.65;
}

.reference-landing {
  background: #fff;
}
.reference-overview {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(0,159,233,.22), transparent 30%),
    linear-gradient(135deg, #071019 0%, #0d1823 55%, #061018 100%);
}
.reference-dashboard {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}
.reference-dashboard-copy h2 {
  max-width: 720px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(25px, 3.4vw, 47px);
  line-height: .98;
}
.reference-dashboard-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}
.reference-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.14);
}
.reference-stat-grid article {
  min-height: 210px;
  padding: 26px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  display: grid;
  align-content: end;
}
.reference-stat-grid strong {
  color: var(--cyan);
  font-family: var(--font-num);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}
.reference-stat-grid span {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.reference-stat-grid p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.62);
}
.reference-editorial {
  width: min(1100px, calc(100% - var(--page-gutter)));
  margin: clamp(34px, 5vw, 62px) auto 0;
  padding: clamp(26px, 4vw, 44px);
  color: var(--ink);
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 70px rgba(0,0,0,.16);
}
.reference-cases {
  background:
    linear-gradient(90deg, rgba(0,159,233,.05), transparent 34%),
    #f5f7f9;
}
.reference-case-grid {
  width: min(1320px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.reference-case-card {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(15,27,38,.12);
  box-shadow: 0 18px 54px rgba(9,25,38,.07);
  cursor: default;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.reference-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,159,233,.34);
  box-shadow: 0 28px 76px rgba(9,25,38,.13);
}
.reference-case-card figure {
  margin: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #e8eef2;
  border-bottom: 1px solid rgba(15,27,38,.1);
  overflow: hidden;
}
.reference-case-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}
.reference-case-copy {
  min-width: 0;
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.reference-index {
  margin-bottom: 22px;
  color: rgba(0,159,233,.18);
  font-family: var(--font-num);
  font-size: clamp(62px, 7vw, 104px);
  font-weight: 700;
  line-height: .7;
}
.reference-case-copy h2 {
  max-width: 520px;
  margin: 0 0 14px;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.02;
}
.reference-case-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.reference-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}
.reference-mini-metrics div {
  min-height: 82px;
  padding: 14px;
  background: #f1f5f8;
  display: grid;
  align-content: center;
}
.reference-mini-metrics dt {
  color: var(--blue);
  font-family: var(--font-num);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.reference-mini-metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.reference-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.reference-chip-row span {
  padding: 7px 10px;
  color: #10202d;
  background: rgba(0,159,233,.08);
  border: 1px solid rgba(0,159,233,.18);
  font-size: 12px;
  font-weight: 900;
}
.reference-process {
  background: #fff;
}
.reference-flow-grid {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.reference-flow-grid article {
  min-height: 290px;
  padding: 28px;
  background: #fff;
  display: grid;
  align-content: space-between;
}
.reference-flow-grid span {
  color: var(--blue);
  font-weight: 900;
}
.reference-flow-grid h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
}
.reference-flow-grid p {
  margin: 0;
  color: var(--muted);
}

/* Reference page 3D logo showcase. JS controls sphere/list state and hit area. */
.logo-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 169, 232, .12), transparent 28%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 54%, #eef7fb 100%);
}
.logo-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(2, 7, 13, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 7, 13, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 70%, transparent);
  pointer-events: none;
}
.logo-showcase > * {
  position: relative;
  z-index: 1;
}
.logo-showcase-head,
.logo-showcase-stage,
.logo-showcase-notes {
  width: min(1460px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
}
.logo-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 76px);
}
.logo-showcase-head h2 {
  max-width: 880px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: .96;
  letter-spacing: 0;
}
.logo-showcase-head p:not(.eyebrow),
.logo-showcase-panel p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
}
.logo-showcase-panel {
  padding: 24px;
  border: 1px solid rgba(0, 169, 232, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 24px 70px rgba(10, 35, 56, .08);
  backdrop-filter: blur(18px);
}
.logo-showcase-panel span {
  display: block;
  color: rgba(0, 169, 232, .18);
  font-size: 72px;
  line-height: .78;
  font-weight: 800;
}
.logo-showcase-panel strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 18px;
}
.logo-showcase-stage {
  position: relative;
  min-height: clamp(560px, 55vw, 820px);
  perspective: var(--logo-perspective, 1200px);
  perspective-origin: 50% 48%;
  outline: none;
    isolation: isolate;
    cursor: default;
    touch-action: none;
}

.logo-showcase-stage.is-sphere-hit-ready {
    cursor: grab;
}

.logo-showcase-stage.is-dragging {
    cursor: grabbing;
}
.logo-showcase-stage::before,
.logo-showcase-stage::after {
  display: none;
  content: none;
}
.logo-showcase-stage::before {
  border: 0;
  box-shadow: none;
  transform: none;
}
.logo-showcase-stage::after {
  inset: auto;
  background: none;
  filter: none;
}
.logo-showcase-stage:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 169, 232, .24);
}
.logo-orbit-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  will-change: transform;
}
.logo-showcase.is-sphere-ready .logo-orbit-grid {
  display: block;
  min-height: clamp(560px, 55vw, 820px);
}
.logo-showcase.is-motion-off .logo-showcase-stage,
.logo-showcase:not(.is-sphere-ready) .logo-showcase-stage {
  min-height: 0;
}
.logo-showcase.is-motion-off .logo-showcase-stage::before,
.logo-showcase.is-motion-off .logo-showcase-stage::after,
.logo-showcase:not(.is-sphere-ready) .logo-showcase-stage::before,
.logo-showcase:not(.is-sphere-ready) .logo-showcase-stage::after,
.logo-showcase.is-grid-mode .logo-showcase-stage::before,
.logo-showcase.is-grid-mode .logo-showcase-stage::after {
  opacity: 0;
}
.logo-showcase.is-motion-off .logo-orbit-grid {
  display: grid;
  min-height: 0;
}
.logo-card {
  min-width: 0;
  perspective: var(--logo-perspective, 1200px);
  transform-style: preserve-3d;
  contain: layout paint;
  will-change: transform, opacity, width, height;
}
.logo-showcase.is-sphere-ready .logo-card {
  position: absolute;
  left: 0;
  top: 0;
}
.logo-card-clone {
  display: none;
}
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card-clone {
  display: block;
}
.logo-showcase.is-grid-mode .logo-card-clone,
.logo-showcase.is-motion-off .logo-card-clone {
  display: none !important;
}
.logo-card-inner {
  position: relative;
  min-height: clamp(250px, 22vw, 315px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(18, 37, 52, .08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(239, 246, 250, .46)),
    rgba(255, 255, 255, .62);
  box-shadow: 0 26px 70px rgba(8, 28, 45, .08);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: box-shadow .45s ease, border-color .45s ease;
}
.logo-showcase.is-sphere-ready .logo-card-inner {
  height: 100%;
  min-height: 100%;
}
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card-inner {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.logo-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, .86), transparent 25%),
    linear-gradient(120deg, rgba(255, 255, 255, .36), transparent 42%);
  pointer-events: none;
}
.logo-card-inner::after {
  content: "";
  position: absolute;
  inset: auto 22px 86px 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 169, 232, .28), transparent);
  opacity: .65;
  pointer-events: none;
}
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card-inner::before,
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card-inner::after {
  display: none;
}
.logo-card:hover .logo-card-inner,
.logo-card.is-hovered .logo-card-inner {
  border-color: rgba(0, 169, 232, .24);
  box-shadow: 0 34px 92px rgba(0, 88, 128, .16);
}
.logo-card-sheen {
  position: absolute;
  inset: -45% -30%;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .76), transparent 62%);
  transform: translateX(-60%) rotate(12deg);
  opacity: 0;
  pointer-events: none;
}
.logo-card:hover .logo-card-sheen,
.logo-card.is-hovered .logo-card-sheen {
  opacity: .92;
  animation: logoSheen 1.15s ease both;
}
.logo-card-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 178px;
  margin: 0;
  padding: 28px 26px 8px;
}
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card-media {
  min-height: 100%;
  height: 100%;
  padding: 0;
}
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card-media::before,
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card-sheen {
  display: none;
}
.logo-card-media::before {
  content: "";
  position: absolute;
  width: 54%;
  max-width: 220px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(0, 169, 232, .08);
  filter: blur(18px);
  transform: translateZ(-16px);
}
.logo-card-media picture,
.logo-card-media img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
}
.logo-card-media img {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 490 / 230;
  object-fit: contain;
  filter: grayscale(85%) saturate(.22) opacity(var(--logo-gray-opacity, .72));
  transform: translateZ(30px);
  transition: filter .45s ease, transform .45s ease;
}
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card-media img {
  max-width: 112px;
  filter: grayscale(85%) saturate(.2) opacity(.74);
  transform: translateZ(18px);
  backface-visibility: hidden;
}
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card:hover,
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card.is-hovered {
  z-index: 80;
}
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card:hover .logo-card-media img,
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card.is-hovered .logo-card-media img {
  filter: grayscale(0) saturate(1.18) opacity(1);
  transform: translateZ(58px) scale(1.16);
}
.logo-showcase.is-grid-mode .logo-card-media img {
  max-width: 300px;
}
.logo-card:hover .logo-card-media img,
.logo-card.is-hovered .logo-card-media img {
  filter: grayscale(0) saturate(1.16) opacity(1);
  transform: translateZ(42px) scale(1.035);
}
.logo-showcase.is-grid-mode .logo-card:hover .logo-card-media img,
.logo-showcase.is-grid-mode .logo-card.is-hovered .logo-card-media img {
  filter: grayscale(0) saturate(1.12) opacity(1);
  transform: translateZ(30px);
}
.logo-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 0 24px 24px;
  transform: translateZ(24px);
}
.logo-showcase.is-sphere-ready:not(.is-grid-mode) .logo-card-copy {
  display: none;
}
.logo-card-copy span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.logo-card-copy strong {
  color: var(--ink);
  font-size: 17px;
}
.logo-card-copy small {
  max-width: 100%;
  overflow: hidden;
  color: #7b8792;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.logo-showcase-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(36px, 5vw, 72px);
}
.logo-showcase-notes article {
  padding: 24px;
  border: 1px solid rgba(0, 169, 232, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(12px);
}
.logo-showcase-notes span {
  color: var(--blue);
  font-weight: 800;
}
.logo-showcase-notes h3 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 20px;
}
.logo-showcase-notes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.logo-showcase.is-motion-off .logo-card-inner {
  transform: none !important;
}
.logo-showcase.is-motion-off .logo-card:hover .logo-card-inner,
.logo-showcase.is-motion-off .logo-card.is-hovered .logo-card-inner {
  transform: translateY(calc(var(--logo-float, 18px) * -1)) scale(1.025) !important;
}
@keyframes logoSheen {
  from { transform: translateX(-60%) rotate(12deg); }
  to { transform: translateX(60%) rotate(12deg); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-card-inner,
  .logo-card-media img,
  .logo-card-sheen {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

.contact-landing {
  background:
    radial-gradient(circle at 88% 12%, rgba(0,159,233,.14), transparent 28%),
    linear-gradient(135deg, #eef3f6, #fff);
}
.contact-landing.section-pad {
  padding: clamp(50px, 6vw, 82px) 0;
}
.contact-landing-grid {
  width: min(1320px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1fr);
  gap: clamp(22px, 3.8vw, 46px);
  align-items: start;
}
.contact-landing-grid--balanced {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .72fr);
  align-items: stretch;
}
.contact-landing .quote-form {
  padding: clamp(20px, 2.3vw, 28px);
  gap: 12px;
}
.contact-landing .quote-form label {
  gap: 6px;
}
.contact-landing .quote-form input {
  min-height: 46px;
  padding: 10px 13px;
}
.contact-landing .quote-form .btn {
  min-height: 46px;
}
.contact-landing .quote-form textarea {
  min-height: 120px;
  padding: 10px 13px;
}
.contact-intel {
  padding: clamp(26px, 4vw, 44px);
  color: #fff;
  background: radial-gradient(circle at 90% 0%, rgba(0,159,233,.24), transparent 32%), #0e1a24;
  box-shadow: var(--shadow);
}
.contact-intel h2,
.contact-intel h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.04;
}
.contact-intel ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.contact-intel li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.76);
}
.contact-intel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--blue);
}
.contact-intel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}
.contact-intel dt {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-intel dd {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.contact-process-grid {
  width: min(1400px, calc(100% - var(--page-gutter)));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.contact-process-grid article {
  min-height: 220px;
  padding: 26px;
  background: #fff;
  display: grid;
  align-content: space-between;
}
.contact-process-grid span {
  color: var(--blue);
  font-weight: 900;
}
.contact-process-grid h3 {
  margin: 0;
  font-size: 24px;
}
.contact-process-grid p {
  margin: 0;
  color: var(--muted);
}
.contact-inquiry-panel {
  min-height: 100%;
  padding: clamp(28px, 3.6vw, 50px);
  display: grid;
  align-content: start;
  gap: clamp(17px, 1.8vw, 24px);
  background:
    linear-gradient(135deg, rgba(0,159,233,.08), transparent 42%),
    linear-gradient(180deg, #fff, #f4f8fb);
  border: 1px solid rgba(17,18,20,.08);
  box-shadow: 0 24px 70px rgba(8,25,38,.08);
}
.contact-inquiry-panel h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}
.contact-inquiry-lead {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.contact-route-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.contact-route-cards article {
  min-height: 138px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(17,18,20,.08);
  display: grid;
  align-content: space-between;
}
.contact-route-cards span {
  color: var(--blue);
  font-weight: 900;
}
.contact-route-cards h3 {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.12;
}
.contact-route-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.contact-checklist {
  padding: 22px;
  color: #fff;
  background: radial-gradient(circle at 100% 0%, rgba(0,159,233,.26), transparent 30%), #0e1a24;
}
.contact-checklist h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}
.contact-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.contact-checklist li {
  position: relative;
  padding-left: 16px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.45;
}
.contact-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  background: var(--blue);
}
.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-direct-grid a {
  min-width: 0;
  padding: 16px 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0,159,233,.18);
}
.contact-direct-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-direct-grid strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inner-hero {
  position: relative;
  margin-top: 0;
  min-height: 72svh;
  overflow: hidden;
  color: #fff;
  background: #090b0e;
}
.inner-hero-copy {
  position: relative;
  z-index: 6;
  width: min(1200px, calc(100% - var(--page-gutter)));
  min-height: 72svh;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-hero-copy h1 { max-width: 860px; margin: 0; font-size: clamp(28px, 4vw, 52px); line-height: 1.02; }
.inner-hero-copy > p { max-width: 760px; color: rgba(255,255,255,.8); font-size: clamp(17px, 2vw, 22px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 800; }
.breadcrumbs a { color: #fff; }

.listing-section { background: #fff; }
.category-filter { margin-bottom: 34px; padding: 12px; border: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 10px; background: rgba(245,246,247,.72); backdrop-filter: blur(14px); }
.category-filter span { font-weight: 900; color: var(--muted); margin-right: 8px; }
.category-filter a { padding: 9px 13px; background: #fff; border: 1px solid var(--line); font-weight: 800; }
.category-filter a.is-active, .category-filter a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.news-category-tabs { margin-bottom: 42px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); background: #fff; box-shadow: 0 18px 55px rgba(7, 26, 42, .06); }
.news-category-tabs a { min-height: 72px; padding: 0 24px; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--line); color: var(--ink); font-size: 17px; font-weight: 900; text-align: center; transition: background .22s ease, color .22s ease, border-color .22s ease; }
.news-category-tabs a:last-child { border-right: 0; }
.news-category-tabs a:hover, .news-category-tabs a.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
.detail-section > .news-category-tabs { width: min(1400px, calc(100% - var(--page-gutter))); margin-inline: auto; }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.listing-card, .content-card, .market-card { border: 1px solid var(--line); background: #fff; overflow: hidden; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.listing-card:hover, .content-card:hover, .market-card:hover { transform: translateY(-5px); border-color: rgba(0,159,233,.38); box-shadow: 0 18px 45px rgba(0,0,0,.08); }
.listing-media img, .content-card img, .market-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.listing-card > div, .content-card .card-copy, .market-card > div { padding: 24px; }
.listing-card h2, .market-card h2 { margin: 0 0 12px; font-size: 21px; line-height: 1.14; }
.listing-card p, .market-card p { color: var(--muted); }
.workshop-list-head {
  margin-bottom: 30px;
}
.workshop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.workshop-gallery-card {
  min-width: 0;
}
.workshop-card-trigger {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(0, 159, 233, 0.18);
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0, 26, 45, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.workshop-card-trigger:hover,
.workshop-card-trigger:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(0, 159, 233, 0.48);
  box-shadow: 0 28px 74px rgba(0, 26, 45, 0.14);
  outline: none;
}
.workshop-card-trigger figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--quality-bg);
}
.workshop-card-trigger figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,7,13,0.04), rgba(2,7,13,0.62));
  pointer-events: none;
}
.workshop-card-trigger img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 380ms ease;
}
.workshop-card-trigger:hover img,
.workshop-card-trigger:focus-visible img {
  transform: scale(1.045);
}
.workshop-card-index,
.workshop-card-action {
  position: absolute;
  z-index: 1;
}
.workshop-card-index {
  left: 18px;
  top: 16px;
  color: #fff;
  font: 700 18px / 1 var(--font-num);
  letter-spacing: 0;
}
.workshop-card-action {
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  background: rgba(0, 159, 233, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.workshop-card-copy {
  display: grid;
  gap: 12px;
  padding: 24px;
}
.workshop-card-copy strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}
.workshop-card-copy > span:last-child {
  color: var(--muted);
  font-size: 15px;
}
.workshop-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  background: rgba(2, 7, 13, 0.72);
  backdrop-filter: blur(20px);
}
.workshop-modal[hidden] {
  display: none;
}
.workshop-modal-panel {
  width: min(1180px, 94vw);
  max-height: min(820px, 88vh);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}
.workshop-modal-media {
  min-height: 520px;
  background: var(--quality-bg);
}
.workshop-modal-media img,
.workshop-modal-media video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.workshop-modal-copy {
  min-width: 0;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 54px);
}
.workshop-modal-copy h2 {
  margin: 8px 0 16px;
  font-size: clamp(20px, 2.2vw, 35px);
  line-height: 1.02;
}
.workshop-modal-lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}
.workshop-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.workshop-modal-tags span {
  padding: 8px 10px;
  background: rgba(0, 159, 233, 0.1);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
}
.workshop-modal-body {
  width: 100%;
  padding: 0;
  font-size: 15px;
}
.workshop-modal-body p {
  color: var(--muted);
}
.workshop-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.workshop-modal-close {
  position: absolute;
  top: clamp(14px, 2.5vw, 28px);
  right: clamp(14px, 2.5vw, 28px);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}
.pagination-wrap { margin-top: 36px; }

.table-shell { overflow-x: auto; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.material-standard-stack { width: min(1400px, calc(100% - var(--page-gutter))); margin-inline: auto; display: grid; gap: 28px; }
.material-standard-card { overflow: hidden; border: 1px solid rgba(17,18,20,.1); background: #fff; box-shadow: 0 20px 60px rgba(11,30,46,.08); }
.material-standard-head { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 28px; color: #fff; background: linear-gradient(90deg, rgba(0,159,233,.26), transparent 52%), #0e1a24; }
.material-standard-head .eyebrow { margin-bottom: 5px; color: var(--cyan); font-size: 12px; }
.material-standard-head h2 { margin: 0; font-size: clamp(16px, 1.4vw, 22px); line-height: 1.15; }
.material-standard-head > span { color: rgba(255,255,255,.24); font-family: var(--font-num); font-size: clamp(42px, 5vw, 72px); line-height: 1; }
.material-standard-scroll { overflow-x: auto; background: linear-gradient(90deg, #fff 30%, rgba(255,255,255,0)), linear-gradient(90deg, rgba(255,255,255,0), #fff 70%) 100% 0, radial-gradient(farthest-side at 0 50%, rgba(0,0,0,.14), transparent), radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,.14), transparent) 100% 0; background-repeat: no-repeat; background-size: 44px 100%, 44px 100%, 16px 100%, 16px 100%; background-attachment: local, local, scroll, scroll; }
.material-standard-table { width: 100%; min-width: 920px; border-collapse: separate; border-spacing: 0; table-layout: fixed; }
.material-standard-table.is-three-col { min-width: 760px; }
.material-standard-table th, .material-standard-table td { padding: 13px 18px; border-right: 1px solid rgba(17,18,20,.12); border-bottom: 1px solid rgba(17,18,20,.12); text-align: center; vertical-align: middle; }
.material-standard-table thead th { position: sticky; top: 0; z-index: 2; color: #10202d; background: #eef5fa; font-size: 12px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.material-standard-table tbody th { position: sticky; left: 0; z-index: 1; color: var(--ink); background: #fff; font-weight: 700; }
.material-standard-table tbody th a { display: inline-flex; color: inherit; }
.material-standard-table td { color: #29323a; font-size: 14px; }
.material-standard-table tbody tr:nth-child(even) th, .material-standard-table tbody tr:nth-child(even) td { background: #f8fbfd; }
.material-standard-table tbody tr:hover th, .material-standard-table tbody tr:hover td { color: #06151f; background: rgba(0,159,233,.08); }
.material-standard-table th:last-child, .material-standard-table td:last-child { border-right: 0; }
.empty-state { padding: 42px; border: 1px dashed var(--line); background: #fff; }
.empty-state h2 { margin: 0 0 8px; }
.empty-state p { margin: 0; color: var(--muted); }

.approval-page {
  padding-top: clamp(58px, 6vw, 86px);
  padding-bottom: clamp(64px, 7vw, 96px);
}
.certificate-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.approval-page .certificate-page-grid {
  gap: 18px;
}
.approval-page .certificate-page-grid + .approval-process-head {
  margin-top: clamp(40px, 4vw, 58px);
  margin-bottom: 24px;
}
.approval-page .certificate-document-card.reveal,
.approval-page .approval-process-head.reveal,
.approval-page .flow-node.reveal {
  opacity: 1;
  transform: none;
}
.certificate-card { min-height: 330px; padding: 26px; border: 1px solid var(--line); background: linear-gradient(145deg, #fff, #f4f8fb); display: grid; grid-template-columns: 170px 1fr; gap: 24px; align-items: center; }
.certificate-document-card { grid-template-columns: minmax(160px, 230px) 1fr; color: inherit; transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.approval-page .certificate-document-card {
  min-height: 286px;
  padding: 22px;
  grid-template-columns: minmax(140px, 190px) 1fr;
  gap: 22px;
}
.certificate-document-card:hover { transform: translateY(-4px); border-color: rgba(0,159,233,.35); box-shadow: 0 24px 70px rgba(7,26,42,.12); }
.certificate-document-image { width: 100%; margin: 0; padding: 14px; background: #fff; box-shadow: 0 18px 42px rgba(0,0,0,.1); border-top: 6px solid var(--blue); }
.approval-page .certificate-document-image {
  padding: 12px;
}
.certificate-document-image img { width: 100%; aspect-ratio: 3 / 4.15; object-fit: contain; display: block; background: #f7f9fb; }
.certificate-paper { width: 150px; min-height: 210px; padding: 18px; background: #fff; box-shadow: 0 16px 36px rgba(0,0,0,.1); border-top: 6px solid var(--blue); display: grid; align-content: space-between; }
.certificate-paper span { color: var(--blue); font-size: 12px; font-weight: 900; }
.certificate-paper strong { font-size: 14px; }
.certificate-card h2 { margin: 0 0 12px; font-size: 22px; line-height: 1.12; }
.certificate-card p { color: var(--muted); }
.approval-page .certificate-card h2 {
  font-size: clamp(18px, 1.5vw, 22px);
}
.approval-page .control-flow {
  gap: 16px;
  background: transparent;
}
.approval-page .flow-node {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fff, #f6f9fb);
  box-shadow: 0 18px 52px rgba(0, 26, 45, 0.06);
  align-content: start;
  gap: 16px;
}
.approval-page .flow-node span {
  font: 700 18px / 1 var(--font-num);
}

.performance-dashboard { display: grid; gap: 26px; }
.performance-summary { padding: clamp(26px, 4vw, 50px); color: var(--ink); }
.performance-summary h2 { max-width: 800px; margin: 0 0 16px; font-size: clamp(20px, 2.7vw, 35px); line-height: 1.04; }
.country-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.country-card { padding: 28px; background: #0e1a24; color: #fff; position: relative; overflow: hidden; }
.country-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; background: rgba(0,159,233,.18); border-radius: 50%; }
.country-card > span { color: var(--cyan); font-weight: 900; }
.country-card h2 { margin: 12px 0; font-size: 22px; }
.country-card p { color: rgba(255,255,255,.7); }
.country-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.country-metrics div { padding: 14px; background: rgba(255,255,255,.08); }
.country-metrics strong { color: #fff; font-size: 32px; }
.country-metrics em { color: rgba(255,255,255,.6); font-style: normal; font-size: 12px; }

.market-map-large { height: 76vh; min-height: 580px; margin-bottom: 26px; }
.market-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.market-card { display: grid; grid-template-columns: 220px 1fr; }
.market-card img { height: 100%; min-height: 220px; aspect-ratio: auto; }
.performance-dashboard .market-card {
  grid-template-columns: 1fr;
}
.performance-dashboard .market-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.performance-dashboard .market-card > div {
  padding: clamp(22px, 2.7vw, 34px);
}

.download-library { display: grid; gap: 18px; }
.download-card { padding: 24px; border: 1px solid var(--line); display: grid; grid-template-columns: 74px 1fr auto; gap: 22px; align-items: center; background: #fff; transition: transform 220ms ease, border-color 220ms ease; }
.download-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.download-card h2 { margin: 0 0 10px; font-size: 21px; }
.download-card p { color: var(--muted); }
.download-meta { display: flex; flex-wrap: wrap; gap: 18px; margin: 14px 0 0; }
.download-meta div { display: flex; gap: 6px; }
.download-meta dt { color: var(--muted); font-weight: 800; }
.download-meta dd { margin: 0; font-weight: 900; }
.downloads-page .section-head { width: min(1440px, calc(100% - var(--page-gutter-wide))); }
.downloads-page .section-note { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.download-library-list {
  width: min(1440px, calc(100% - var(--page-gutter-wide)));
  margin-inline: auto;
  display: grid;
  gap: 16px;
}
.download-list-item {
  width: 100%;
  min-height: 104px;
  padding: 20px clamp(20px, 3vw, 34px) 20px 20px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) max-content;
  gap: 30px;
  align-items: center;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.download-list-item:hover,
.download-list-item:focus-visible {
  border-color: rgba(0, 159, 233, .5);
  box-shadow: 0 24px 54px rgba(4, 14, 22, .09);
  transform: translateY(-2px);
  outline: 0;
}
.download-file-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 28px rgba(0, 159, 233, .18);
}
.download-file-badge.is-xls,
.download-file-badge.is-xlsx { background: #118a55; box-shadow: 0 14px 28px rgba(17, 138, 85, .16); }
.download-file-badge.is-doc,
.download-file-badge.is-docx { background: #2467c8; box-shadow: 0 14px 28px rgba(36, 103, 200, .16); }
.download-file-badge.is-zip { background: #111820; box-shadow: 0 14px 28px rgba(17, 24, 32, .16); }
.download-list-copy { min-width: 0; display: flex; align-items: baseline; gap: 8px; }
.download-list-copy strong { font-size: clamp(18px, 1.7vw, 23px); line-height: 1.2; white-space: nowrap; }
.download-list-copy span { min-width: 0; color: var(--muted); font-size: 16px; line-height: 1.6; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.download-list-meta {
  color: #535c67;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}
.download-captcha-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(2, 7, 13, .66);
  backdrop-filter: blur(16px);
}
html.has-download-modal { overflow: hidden; }
.download-captcha-modal[hidden] { display: none; }
.download-captcha-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .28);
}
.download-captcha-dialog h2 { margin: 8px 0 12px; font-size: clamp(19px, 2.7vw, 27px); line-height: 1.04; }
.download-captcha-dialog > p:not(.eyebrow) { margin: 0 0 24px; color: var(--muted); }
.download-captcha-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.download-captcha-form { display: grid; gap: 16px; }
.download-captcha-form label { display: grid; gap: 9px; color: var(--ink); font-weight: 900; }
.download-captcha-row { display: grid; grid-template-columns: 1fr 156px; gap: 12px; align-items: center; }
.download-captcha-row input {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  padding: 0 14px;
  font: inherit;
}
.download-captcha-row input:focus { border-color: var(--blue); outline: 0; box-shadow: 0 0 0 4px rgba(0, 159, 233, .12); }
.download-captcha-image-btn { height: 54px; padding: 0; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.download-captcha-image-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
.download-captcha-error { margin: -2px 0 0; color: #c42525; font-size: 14px; font-weight: 800; }

.control-landing { display: grid; gap: 36px; }
.control-panel { padding: clamp(28px, 5vw, 58px); display: grid; grid-template-columns: 1fr .74fr; gap: 34px; align-items: center; color: var(--ink); }
.control-panel h2 { margin: 0 0 16px; font-size: clamp(23px, 3.4vw, 43px); line-height: 1.02; }
.control-panel p { color: #343941; }
.control-panel img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.control-process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); }
.control-process article { min-height: 230px; padding: 24px; background: #fff; display: grid; align-content: space-between; }
.control-process span { color: var(--blue); font-weight: 900; }
.control-process h3 { margin: 0; font-size: 22px; line-height: 1.1; }
.control-process p { color: var(--muted); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit-card { padding: 24px; background: #0e1a24; color: #fff; min-height: 120px; display: grid; align-items: end; }
.control-copy { padding: clamp(28px, 5vw, 58px); background: #eef7fb; }
.control-copy h2 { max-width: 760px; margin: 0 0 16px; font-size: clamp(22px, 2.7vw, 36px); line-height: 1.04; }
.control-copy p { max-width: 820px; color: #343941; }

.detail-layout, .about-overview { display: grid; grid-template-columns: 320px 1fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.detail-aside, .editorial-index { position: sticky; top: 120px; padding: 26px; border: 1px solid var(--line); background: #fff; }
.detail-aside dl, .download-summary dl { display: grid; gap: 14px; margin: 0 0 24px; }
.detail-aside dt, .download-summary dt { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.detail-aside dd, .download-summary dd { margin: 0; font-weight: 800; }
.rich-content { max-width: 920px; font-size: 18px; color: #2b3036; }
.rich-content h2 { margin: 0 0 18px; font-size: clamp(20px, 2.7vw, 32px); line-height: 1.08; color: var(--ink); }
.rich-content h3 { margin: 34px 0 12px; font-size: 21px; color: var(--ink); }
.rich-content p { margin: 0 0 20px; }
.rich-content ul { padding-left: 22px; }
.rich-content li { margin: 10px 0; }
.related-section { background: #f3f5f6; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.index-stat { padding: 18px 0; border-top: 1px solid var(--line); }
.index-stat strong { color: var(--blue); }
.index-stat span { color: var(--muted); font-weight: 800; }
.value-grid, .matrix-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-grid article, .matrix-card { min-height: 240px; padding: 26px; border: 1px solid var(--line); background: #fff; }
.value-grid span { color: var(--blue); font-weight: 900; }
.value-grid h3 { font-size: 24px; }
.value-grid p, .matrix-card span { color: var(--muted); }
.about-matrix { background: #f3f5f6; }
.matrix-card { display: grid; align-content: space-between; }
.matrix-card strong { font-size: 24px; }

.verify-layout { display: grid; grid-template-columns: .7fr 1fr; gap: 34px; align-items: start; }
.download-summary { padding: 28px; color: var(--ink); }
.download-summary .file-icon { margin-bottom: 20px; }
.captcha-form { padding: 28px; border: 1px solid var(--line); background: #fff; display: grid; gap: 18px; }
.captcha-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.captcha-row img { width: 190px; height: 64px; border: 1px solid var(--line); border-radius: 8px; }

/* Global footer, callback form and floating TEL/MAIL/DOC/TOP action bar. */
.site-footer {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: #fff;
  background: var(--anson-footer-bg, #009fe9);
  isolation: isolate;
}
.site-footer::before {
  content: none;
}
.site-footer::after {
  content: none;
}
.site-footer .footer-inner {
  width: min(1460px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
  padding: clamp(30px, 3.5vw, 46px) 0 24px;
}
.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(22px, 3.8vw, 48px);
  align-items: start;
}
.footer-slogan span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}
.footer-slogan h2 {
  margin: 0;
  max-width: 560px;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}
.footer-callback {
  align-self: start;
  padding-top: 0;
}
.footer-callback label {
  display: block;
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
.footer-phone-field {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 5px 7px 5px 16px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.footer-phone-field span {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}
.footer-phone-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
}
.footer-phone-field input::placeholder { color: rgba(255, 255, 255, 0.45); }
.footer-phone-field button {
  height: 38px;
  min-width: 92px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #009fe9;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.footer-phone-field button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 28, 78, 0.22);
}
.footer-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(24px, 3.6vw, 50px);
  margin-top: clamp(24px, 3.4vw, 38px);
  align-items: start;
}
.footer-nav-grid {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(4, minmax(122px, 1fr));
  gap: 12px 30px;
}
.footer-nav-grid a,
.footer-cookie-link {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.94);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}
.footer-nav-grid a:hover,
.footer-cookie-link:hover { color: #ccecff; }
.footer-contact-panel {
  margin: 0;
  font-style: normal;
}
.footer-contact-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}
.footer-contact-panel div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
}
.footer-contact-panel dt {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.footer-contact-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.36;
}
.footer-contact-panel a:hover { color: #ccecff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-top: clamp(22px, 3.2vw, 34px);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-brand-line {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.footer-brand-line img {
  width: 112px;
  max-height: 42px;
  object-fit: contain;
}
.footer-brand-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 400;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 500;
  transition: background 180ms ease, transform 180ms ease;
}
.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}
.footer-float-actions {
  position: fixed;
  right: 28px;
  bottom: 104px;
  z-index: 90;
  width: auto;
  margin: 0;
  display: grid;
  justify-items: center;
  padding: 12px 9px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 46px rgba(7, 31, 72, 0.18);
  backdrop-filter: blur(16px);
}
.footer-float-actions a {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(17, 18, 20, 0.12);
  color: #111214;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  overflow: visible;
}
.footer-float-label {
  position: relative;
  z-index: 2;
}
.footer-float-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  z-index: 1;
  max-width: min(360px, calc(100vw - 130px));
  padding: 11px 15px;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 999px;
  color: #111214;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(7, 31, 72, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(12px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}
.footer-float-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(17, 18, 20, 0.1);
  border-right: 1px solid rgba(17, 18, 20, 0.1);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-50%) rotate(45deg);
}
.footer-float-actions a:hover .footer-float-tip,
.footer-float-actions a:focus-visible .footer-float-tip {
  opacity: 1;
  transform: translate(0, -50%);
}
.footer-float-actions a:last-child { border-bottom: 0; }
.footer-float-actions .is-primary {
  width: 58px;
  height: 58px;
  margin: 7px -4px;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #009fe9;
  box-shadow: 0 12px 26px rgba(0, 42, 120, 0.26);
}

.cookie-layer { position: fixed; inset: 0; z-index: 100; display: grid; align-items: start; padding: 20px; background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(8px); }
.cookie-layer[hidden] { display: none !important; }
.cookie-dialog { position: relative; width: min(1000px, 100%); max-height: calc(100svh - 40px); overflow: auto; margin: 0 auto; padding: clamp(26px, 5vw, 40px); background: #fff; border-radius: 6px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34); }
.cookie-close { position: absolute; right: 18px; top: 14px; border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.cookie-dialog h2 { margin: 0 0 16px; font-size: 22px; }
.cookie-dialog p { max-width: 900px; margin: 0 0 24px; color: #33373d; }
.cookie-options { display: grid; gap: 20px; }
.cookie-options label { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.cookie-options input { width: 20px; height: 20px; margin: 3px 0 0; accent-color: #5b5ce2; }
.cookie-options strong, .cookie-options small { display: block; }
.cookie-options small { color: #42464d; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cookie-btn { min-height: 42px; padding: 0 20px; border: 2px solid var(--ink); border-radius: 999px; background: #fff; color: var(--ink); cursor: pointer; font-weight: 900; }
.cookie-btn-primary { border-color: var(--blue); background: var(--blue); color: #fff; }
.noscript { position: fixed; left: 20px; bottom: 20px; z-index: 101; max-width: 420px; padding: 14px 16px; background: #fff; box-shadow: var(--shadow); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes heroZoom { from { transform: scale(1.04) translateY(0); } to { transform: scale(1.11) translateY(-1.4%); } }
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 72px 72px; } }
@keyframes logoBreath {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(118, 212, 255, 0));
  }
  48% {
    opacity: .84;
    transform: scale(.985);
    filter: drop-shadow(0 0 10px rgba(118, 212, 255, .26));
  }
}
@keyframes scanMove {
  0%, 38% { transform: skewX(-16deg) translateX(-150%); opacity: 0; }
  50% { opacity: .75; }
  72%, 100% { transform: skewX(-16deg) translateX(320%); opacity: 0; }
}
@keyframes meterPulse { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.35); } }
@keyframes heroCharIn { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes heroLeadIn { 0% { opacity: 0; transform: translateY(32px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes qualityRipple { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(12); opacity: 0; } }
@keyframes qualityDotBreathe { 0%, 100% { opacity: .65; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }
@keyframes orgLinePulse {
  0%, 100% { opacity: .58; stroke-dashoffset: 0; }
  50% { opacity: .92; stroke-dashoffset: -8; }
}
@keyframes orgCorePulse {
  0%, 100% { transform: scale(.96); opacity: .25; }
  50% { transform: scale(1.06); opacity: .72; }
}
@keyframes orgNodeFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}
@keyframes orgOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes videoRipple {
  0% { transform: scale(.72); opacity: .88; }
  100% { transform: scale(1.85); opacity: 0; }
}

@media (max-width: 1160px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .nav-toggle { display: grid; order: 3; justify-self: end; }
  .header-actions { order: 2; }
  .primary-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: grid;
    gap: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-item { display: grid; align-items: stretch; }
  .primary-nav a, .site-header.is-scrolled .primary-nav a { color: var(--ink); padding: 15px 20px; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0;
    background: rgba(0, 159, 233, 0.06);
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }
  .nav-submenu::before { display: none; }
  .nav-submenu a,
  .site-header.is-scrolled .nav-submenu a {
    padding: 12px 20px 12px 34px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  }
  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    background: rgba(0, 159, 233, 0.1);
    color: var(--blue-dark);
    transform: none;
  }
  .hero-content, .intro-layout, .feature-split, .contact-band, .control-panel, .detail-layout, .about-overview, .verify-layout, .certificate-showcase, .video-showcase, .company-overview, .contact-landing-grid { grid-template-columns: 1fr; }
  .hero-panel { align-self: auto; }
  .product-grid, .performance-cards, .certificate-strip, .company-stat-grid, .company-flow, .material-lead-grid, .contact-process-grid { grid-template-columns: repeat(2, 1fr); }
  .global-stat-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contact-landing-grid--balanced { align-items: start; }
  .contact-route-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .company-org-canvas {
    min-height: 0;
    width: min(calc(100% - var(--page-gutter)), 1120px);
    margin-inline: auto;
    padding: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .company-org-canvas::before,
  .company-org-lines { display: none; }
  .company-org-core,
  .company-org-detail {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
  }
  .company-org-core {
    grid-column: 1 / -1;
    width: min(210px, 58vw);
    justify-self: center;
    margin: 0 0 18px;
  }
  .company-org-role {
    display: none;
  }
  .company-org-detail {
    min-height: 0;
    padding: 22px;
    border: 1px solid rgba(0, 159, 233, .18);
    border-left: 4px solid var(--blue);
    background: linear-gradient(145deg, #fff, #f5f9fc);
    box-shadow: 0 16px 40px rgba(7, 26, 42, .06);
    text-align: left !important;
    transform: none !important;
    animation: none;
  }
  .company-org-detail.is-left,
  .company-org-detail.is-right,
  .company-org-detail.is-center {
    text-align: left !important;
    transform: none !important;
  }
  .company-org-detail:hover {
    transform: translateY(-3px);
  }
  .company-org-mobile-role {
    display: block;
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
  }
  .company-org-detail ul {
    display: grid;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
  }
  .company-org-detail li + li { margin-top: 0; }
  .company-org-detail li + li::before {
    display: inline-block;
    width: 16px;
    margin: 0 6px 0 0;
    color: var(--blue);
    font-weight: 900;
    text-align: center;
  }
  .workshop-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workshop-modal-panel { grid-template-columns: 1fr; max-height: 90vh; }
  .workshop-modal-media { min-height: min(42vh, 420px); }
  .workshop-modal-media img,
  .workshop-modal-media video { min-height: min(42vh, 420px); }
  .news-panel { grid-template-columns: repeat(2, 1fr); }
  .control-flow, .control-process { grid-template-columns: repeat(3, 1fr); }
  .value-grid, .matrix-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-aside, .editorial-index { position: relative; top: auto; }
  .video-cinema-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
  }
  .video-cinema-copy { max-width: 820px; }
  .video-cinema-stage { min-height: min(62vh, 620px); }
  .video-cinema-controls { grid-template-columns: 220px 1fr; align-items: stretch; }
  .video-playlist { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .home-market-tabs { grid-template-columns: repeat(4, minmax(160px, 1fr)); overflow-x: auto; }
  .home-market-panel { grid-template-columns: 1fr; min-height: 0; }
  .home-market-copy { align-self: auto; }
  .reference-dashboard {
    grid-template-columns: 1fr;
  }
  .logo-showcase-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .logo-orbit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logo-card-inner {
    min-height: 280px;
  }
  .logo-showcase-notes {
    grid-template-columns: 1fr;
  }
  .reference-case-grid {
    grid-template-columns: 1fr;
  }
  .reference-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .global-market-cards {
    grid-template-columns: 1fr;
  }
  .global-market-cards .market-card {
    grid-template-columns: minmax(240px, 36%) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 40px;
    --page-gutter-wide: 48px;
  }
  .header-inner { width: min(calc(100% - var(--page-gutter)), 1400px); min-height: 66px; gap: 8px; }
  .brand-block { width: 92px; min-height: 78px; margin-bottom: -10px; }
  .brand-logo img { width: 74px; max-height: 58px; }
  .header-actions { max-width: 88px; }
  .lang-btn { width: 34px; height: 28px; font-size: 12px; }
  .hero-content { width: min(calc(100% - var(--page-gutter)), 1400px); min-height: auto; padding-top: 120px; padding-bottom: 44px; grid-template-columns: 1fr; }
  .hero h1, .inner-hero-copy h1 { font-size: 21px; }
  .hero-metrics, .product-grid, .material-board, .news-grid, .news-panel, .listing-grid, .certificate-page-grid, .certificate-gallery, .country-grid, .market-card-grid, .download-card, .download-row, .footer-main, .company-stat-grid, .company-flow, .material-lead-grid, .contact-process-grid { grid-template-columns: 1fr; }
  .global-stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .approval-page .certificate-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .approval-page .certificate-document-card { grid-template-columns: 1fr; min-height: 0; padding: 12px; gap: 12px; }
  .approval-page .certificate-document-image { padding: 8px; }
  .approval-page .certificate-card h2 { font-size: 17px; }
  .approval-page .certificate-card p { font-size: 12px; line-height: 1.45; }
  .approval-page .certificate-document-card .eyebrow { font-size: 10px; }
  .workshop-gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .workshop-card-copy { padding: 20px; }
  .workshop-card-copy strong { font-size: 22px; }
  .workshop-modal { padding: 12px; }
  .workshop-modal-panel { width: 100%; max-height: 92vh; }
  .workshop-modal-media { min-height: 260px; }
  .workshop-modal-media img,
  .workshop-modal-media video { min-height: 260px; }
  .workshop-modal-copy { padding: 24px; }
  .workshop-modal-copy h2 { font-size: 19px; }
  .workshop-modal-actions { flex-direction: column; }
  .hero-metrics { width: calc(100% - var(--page-gutter)); margin-top: 0; }
  .hero-metrics div { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-head-row { align-items: start; flex-direction: column; }
  .section-pad, .section { padding: 58px 0; }
  .section-head, .intro-layout, .product-grid, .material-board, .certificate-strip, .certificate-showcase, .news-tabs-shell, .video-showcase, .feature-split, .performance-cards, .control-flow, .download-list-home, .news-grid, .contact-band, .listing-section > *, .detail-layout, .related-section .content-grid, .about-overview, .values-band .value-grid, .about-matrix .matrix-grid, .company-overview, .company-stat-grid, .company-flow, .company-org-canvas, .material-lead-grid, .material-anchor-bar, .material-standard-stack, .global-stat-strip, .contact-landing-grid, .contact-process-grid, .site-footer > * { width: calc(100% - var(--page-gutter)); }
  .detail-section > .news-category-tabs { width: calc(100% - var(--page-gutter)); }
  .company-overview { gap: 24px; }
  .company-overview figure { min-width: 0; }
  .company-flow article, .company-stat-grid article, .contact-process-grid article { min-height: 0; }
  .company-org-canvas {
    grid-template-columns: 1fr;
    width: calc(100% - var(--page-gutter));
    padding: 16px 0 0;
    gap: 12px;
  }
  .company-org-core {
    width: min(176px, 62vw);
    padding: 20px;
    margin-bottom: 8px;
  }
  .company-org-mobile-role {
    font-size: 20px;
  }
  .company-org-detail {
    padding: 18px;
    box-shadow: 0 12px 30px rgba(7, 26, 42, .05);
  }
  .company-org-detail ul {
    font-size: 13px;
  }
  .global-map-stage { min-height: 720px; }
  .global-map-stage { --global-map-shift: 0px; }
  .global-map-copy {
    width: calc(100% - var(--page-gutter));
    min-height: 460px;
    margin-inline: auto;
    padding: 120px 0 30px;
  }
  .global-map-stage .quality-map-chart {
    top: 300px;
    height: 420px;
  }
  .global-map-stage::after {
    background: linear-gradient(180deg, rgba(2,7,13,.96) 0%, rgba(2,7,13,.82) 42%, rgba(2,7,13,.2) 100%);
  }
  .global-map-dots span {
    font-size: 11px;
    transform: translate(-50%, -50%) scale(.92);
  }
  .global-stat-strip { margin-top: 0; }
  .contact-intel { padding: 24px; }
  .certificate-feature { min-height: auto; padding: 18px; }
  .certificate-feature figure { transform: none; }
  .certificate-feature img { max-height: 360px; }
  .certificate-home-card { grid-template-columns: 104px 1fr; min-height: 0; }
  .certificate-home-card img { width: 104px; height: 146px; }
  .news-category-tabs { grid-template-columns: 1fr; margin-bottom: 28px; }
  .news-category-tabs a { min-height: 58px; border-right: 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .news-category-tabs a:last-child { border-bottom: 0; }
  .news-tab-list { display: grid; grid-template-columns: 1fr; }
  .news-tab { width: 100%; min-width: 0; }
  .news-card { min-height: 0; grid-template-rows: 210px auto; }
  .video-card, .video-card:not(.is-featured) { min-height: 0; }
  .video-frame, .video-frame video { min-height: 260px; }
  .video-cinema { min-height: auto; }
  .video-cinema-inner {
    width: calc(100% - var(--page-gutter));
    gap: 22px;
    padding: 106px 0 52px;
  }
  .video-cinema-copy h2 { font-size: 24px; }
  .video-cinema-stage { min-height: 560px; }
  .video-cover-button { min-height: 420px; }
  .video-play-ripple { width: 76px; height: 76px; }
  .video-slide-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .video-slide-copy h3 { font-size: 18px; }
  .video-slide-copy p { font-size: 14px; line-height: 1.55; }
  .video-cinema-controls,
  .video-playlist { grid-template-columns: 1fr; }
  .video-next-button,
  .video-playlist-item { min-height: 74px; padding: 16px; }
  .video-modal { padding: 14px; }
  .video-modal-close { top: 14px; right: 14px; }
  .home-market-shell { width: calc(100% - var(--page-gutter)); }
  .home-market-tabs { grid-template-columns: 1fr; overflow: visible; }
  .home-market-tab { min-height: 58px; font-size: 14px; }
  .home-market-panel { min-height: 0; }
  .home-market-visual { width: 100%; min-height: auto; }
  .home-market-copy { margin: 0; padding: 26px 20px; box-shadow: none; }
  .home-market-copy h3 { font-size: 28px; line-height: 1.05; }
  .home-market-copy p:not(.eyebrow) { font-size: 15px; }
  .home-market-copy li { font-size: 14px; }
  .inner-hero, .inner-hero-copy { min-height: 62svh; }
  .inner-hero-copy { width: calc(100% - var(--page-gutter)); padding-top: 118px; }
  .quality, .quality-map, .quality-container { min-height: 760px; }
  .quality-map-area {
    top: 270px;
    right: 14px;
    bottom: 128px;
    left: 14px;
  }
  .quality-title-overlay {
    top: 58px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
  }
  .quality-stats {
    left: 16px;
    right: 16px;
    bottom: 22px;
    width: auto;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .material-standard-stack { gap: 20px; }
  .material-standard-head { min-height: 72px; padding: 18px; }
  .material-standard-head h2 { font-size: 16px; }
  .material-standard-head > span { font-size: 42px; }
  .material-standard-table { min-width: 760px; }
  .material-standard-table.is-three-col { min-width: 640px; }
  .material-standard-table th, .material-standard-table td { padding: 11px 12px; font-size: 13px; }
  .quality-market-popover {
    --popover-half: min(160px, calc((100vw - 28px) / 2));
    width: min(320px, calc(100vw - 28px));
    padding: 18px;
    transform: translate(-50%, 22px) scale(0.96);
  }
  .quality-dot:hover + .quality-market-popover,
  .quality-dot:focus-visible + .quality-market-popover {
    transform: translate(-50%, 16px) scale(1);
  }
  .quality-popover-country { margin-bottom: 8px; font-size: 13px; }
  .quality-market-popover h3 { margin-bottom: 10px; font-size: 16px; }
  .quality-market-popover p { margin-bottom: 14px; font-size: 13px; }
  .quality-market-popover dl { grid-template-columns: 1fr; gap: 8px; }
  .quality-market-popover div { min-height: auto; padding: 10px; }
  .quality-market-popover dt { font-size: 24px; }
  .quality-market-popover dd { font-size: 12px; }
  .market-map-large { min-height: 540px; height: 70vh; }
  .market-card { grid-template-columns: 1fr; }
  .global-market-cards .market-card { grid-template-columns: 1fr; }
  .global-market-cards .market-card img { min-height: 220px; max-height: 280px; }
  .reference-dashboard,
  .reference-case-grid,
  .reference-flow-grid,
  .reference-stat-grid,
  .reference-mini-metrics {
    grid-template-columns: 1fr;
  }
  .logo-showcase-head h2 {
    font-size: 30px;
    line-height: 1.04;
  }
  .logo-showcase-panel {
    padding: 18px;
  }
  .logo-orbit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .logo-card-inner {
    min-height: 238px;
  }
  .logo-card-media {
    min-height: 145px;
    padding: 22px 20px 4px;
  }
  .logo-card-media img {
    max-width: 250px;
  }
  .logo-card-copy {
    padding: 0 20px 20px;
  }
  .logo-showcase-notes article {
    padding: 18px;
  }
  .reference-case-card { grid-template-columns: 1fr; min-height: 0; }
  .reference-case-card figure { aspect-ratio: 16 / 9; }
  .reference-case-card img { min-height: 0; max-height: none; height: 100%; aspect-ratio: auto; }
  .reference-stat-grid article,
  .reference-flow-grid article { min-height: 0; }
  .certificate-card { grid-template-columns: 1fr; }
  .control-flow, .control-process, .value-grid, .matrix-grid, .benefit-grid, .content-grid { grid-template-columns: 1fr; }
  .download-card .btn { width: 100%; }
  .downloads-page .section-head,
  .download-library-list { width: calc(100% - var(--page-gutter)); }
  .downloads-page .section-note { max-width: none; }
  .download-list-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }
  .download-list-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .download-list-copy strong { white-space: normal; }
  .download-list-copy span {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .download-list-meta { grid-column: 2; font-size: 14px; }
  .footer-legal { flex-direction: column; }
  .cookie-layer { align-items: end; padding: 12px; }
  .cookie-actions { display: grid; }
}

@media (max-width: 420px) {
  .section-head h2 { font-size: 18px; }
  .hero h1, .inner-hero-copy h1 { font-size: 19px; }
  .hero-lead, .inner-hero-copy > p { font-size: 15px; }
  .brand-block { width: 84px; }
  .brand-logo img { width: 68px; }
  .certificate-home-card { grid-template-columns: 1fr; }
  .certificate-home-card img { width: 100%; height: 220px; }
  .country-metrics { grid-template-columns: 1fr; }
  .global-stat-strip { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .footer-hero,
  .footer-body {
    grid-template-columns: 1fr;
  }
  .footer-callback {
    max-width: 640px;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .contact-landing.section-pad {
    padding: 44px 0 50px;
  }
  .contact-landing-grid {
    width: calc(100% - var(--page-gutter));
    gap: 18px;
  }
  .contact-inquiry-panel {
    padding: 22px;
    gap: 15px;
  }
  .contact-inquiry-panel h2 {
    font-size: 26px;
  }
  .contact-route-cards,
  .contact-checklist ul,
  .contact-direct-grid {
    grid-template-columns: 1fr;
  }
  .contact-route-cards article {
    min-height: 0;
  }
  .contact-checklist {
    padding: 18px;
  }
  .contact-landing .quote-form {
    padding: 18px;
    gap: 11px;
  }
  .contact-landing .quote-form textarea {
    min-height: 108px;
  }
  .site-footer {
    min-height: auto;
  }
  .site-footer .footer-inner {
    width: calc(100% - var(--page-gutter));
    padding: 32px 0 76px;
  }
  .footer-slogan span {
    margin-bottom: 8px;
    font-size: 10px;
  }
.footer-slogan h2 {
    font-size: 20px;
  }
  .footer-callback label {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .footer-phone-field {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 20px;
    padding: 10px;
  }
  .footer-phone-field button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .footer-body {
    margin-top: 24px;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }
  .footer-nav-grid a,
  .footer-cookie-link {
    font-size: 13px;
  }
  .footer-contact-panel dl {
    gap: 14px;
  }
  .footer-contact-panel div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .footer-contact-panel div:last-child {
    border-bottom: 0;
  }
  .footer-contact-panel dt,
  .footer-contact-panel dd {
    font-size: 14px;
  }
  .footer-bottom {
    margin-top: 22px;
    gap: 12px;
  }
  .footer-brand-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .footer-brand-line img {
    width: 112px;
  }
  .footer-socials {
    flex-wrap: wrap;
    white-space: normal;
  }
  .footer-socials a {
    width: 34px;
    height: 34px;
  }
  .footer-float-actions {
    left: 14px;
    right: 14px;
    bottom: 12px;
    grid-template-columns: repeat(4, 1fr);
    padding: 6px;
    border-radius: 999px;
  }
  .footer-float-actions a {
    width: 100%;
    height: 42px;
    border-right: 1px solid rgba(17, 18, 20, 0.12);
    border-bottom: 0;
  }
  .footer-float-tip {
    display: none;
  }
  .footer-float-actions a:last-child {
    border-right: 0;
  }
  .footer-float-actions .is-primary {
    width: 42px;
    height: 42px;
    margin: 0 auto;
    border-width: 0;
  }
}

@media (max-width: 520px) {
  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-phone-field {
    gap: 10px;
  }
  .footer-phone-field input {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* JiZhiCMS template compatibility */
.captcha-inline {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 10px;
  align-items: center;
}
.captcha-inline img {
  width: 150px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--line);
  cursor: pointer;
  background: #fff;
}
.cms-pages {
  width: min(1460px, calc(100% - var(--page-gutter)));
  margin: 44px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.cms-pages a,
.cms-pages span {
  min-width: 42px;
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 159, 233, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(10, 21, 32, 0.08);
  backdrop-filter: blur(12px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
  list-style: none;
}
.cms-pages a:hover,
.cms-pages .is-current,
.cms-pages span.current,
.cms-pages li.active a {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 159, 233, 0.22);
  transform: translateY(-1px);
}
.cms-pages .cms-pages-meta {
  min-width: auto;
  padding-inline: 18px;
  border-color: rgba(13, 32, 49, 0.1);
  background: rgba(13, 32, 49, 0.04);
  color: rgba(13, 32, 49, 0.66);
  box-shadow: none;
}
.cms-pages .is-disabled {
  opacity: .42;
  pointer-events: none;
  box-shadow: none;
}
.cms-pages ul,
.cms-pages li {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 520px) {
  :root {
    --page-gutter: 32px;
    --page-gutter-wide: 36px;
  }
  .captcha-inline { grid-template-columns: 1fr; }
  .captcha-inline img { width: 100%; }
  .download-list-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }
  .download-file-badge { width: 50px; height: 50px; font-size: 11px; }
  .download-list-copy strong { font-size: 17px; }
  .download-list-copy span { font-size: 14px; }
  .download-list-meta { grid-column: 1 / -1; }
  .download-captcha-modal { padding: 14px; }
  .download-captcha-dialog { padding: 26px 18px; }
  .download-captcha-row { grid-template-columns: 1fr; }
  .download-captcha-image-btn { width: 180px; max-width: 100%; }
  .cms-pages {
    width: calc(100% - var(--page-gutter));
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }
  .cms-pages a,
  .cms-pages span {
    min-width: 40px;
    min-height: 40px;
    padding-inline: 12px;
    white-space: nowrap;
  }
}
/* Reference logo sphere interaction */
.logo-showcase-stage {
    cursor: default;
    touch-action: none;
}

.logo-showcase-stage.is-sphere-hit-ready {
    cursor: grab;
}

.logo-showcase-stage.is-dragging {
    cursor: grabbing;
}

.logo-card {
    cursor: pointer;
}

.has-logo-detail-modal {
    overflow: hidden;
}

.logo-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 64px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .26s ease;
}

.logo-detail-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.logo-detail-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background:
        radial-gradient(circle at 68% 24%, rgba(0, 159, 233, .2), transparent 32%),
        rgba(3, 8, 14, .72);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    cursor: pointer;
}

.logo-detail-panel {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    display: grid;
    grid-template-columns: minmax(280px, .88fr) minmax(0, 1fr);
    gap: clamp(20px, 4vw, 46px);
    padding: clamp(24px, 4vw, 54px);
    border: 1px solid rgba(255, 255, 255, .22);
    background: linear-gradient(135deg, rgba(245, 250, 253, .96), rgba(255, 255, 255, .88));
    box-shadow: 0 34px 90px rgba(0, 18, 34, .32);
    overflow: hidden;
}

.logo-detail-panel::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -72px;
    top: -82px;
    border-radius: 50%;
    background: rgba(0, 159, 233, .12);
    pointer-events: none;
}

.logo-detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 39, 64, .14);
    border-radius: 50%;
    background: rgba(255, 255, 255, .82);
    color: #091018;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.logo-detail-visual {
    min-height: 240px;
    display: grid;
    place-items: center;
    padding: clamp(18px, 3vw, 34px);
    background: linear-gradient(145deg, rgba(255, 255, 255, .7), rgba(233, 246, 253, .95));
    border: 1px solid rgba(0, 159, 233, .14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.logo-detail-visual img {
    width: min(320px, 82%);
    max-height: 180px;
    object-fit: contain;
}

.logo-detail-copy {
    position: relative;
    z-index: 1;
    align-self: center;
    min-width: 0;
}

.logo-detail-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: .98;
    letter-spacing: 0;
}

.logo-detail-scroll {
    max-height: 260px;
    padding-right: 10px;
    overflow-y: auto;
}

.logo-detail-scroll p {
    margin: 0;
    color: #59616b;
    font-size: 17px;
    line-height: 1.78;
}

.logo-detail-ghost {
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 54px rgba(0, 22, 38, .28);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

@media (max-width: 760px) {
    .logo-detail-modal {
        padding: 14px;
    }

    .logo-detail-panel {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 28px);
        padding: 24px;
    }

    .logo-detail-visual {
        min-height: 168px;
    }

    .logo-detail-copy h2 {
        font-size: 32px;
    }

    .logo-detail-scroll {
        max-height: 220px;
    }
}
