/* ═══════════════════════════════════════════════
   DESIGN SYSTEM — 德维微纳 (Hosokawa-inspired)
   Template checkpoint: 2026-07-01  (spacing calibration v2 approved)
   Backup: codex-worktree/backups/site-prototype-backups-20260701-1113/
   ═══════════════════════════════════════════════ */

:root {
  /* Brand colors */
  --blue:        #0071b2;
  --blue-dark:   #005589;
  --blue-deep:   #003d66;
  --amber:       #e07c20;
  --amber-dark:  #b86318;
  --amber-light: #fdf3e8;
  --warm:        #f5a44f;
  --warm-soft:   #fff7ee;
  --copper:      #b86b3b;
  --cyan:        #35c7d8;
  --teal:        #005aa9;
  --lime:        #d8eaf8;
  --steel:       #8aa8bd;

  /* Neutrals */
  --navy:     #0c1d2d;
  --navy-mid: #163347;
  --ink:      #1a252f;
  --ink-mid:  #2e3d4a;
  --muted:    #5e6e7a;
  --line:     #dde3ea;
  --paper:    #f4f7fa;
  --white:    #ffffff;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(12, 29, 45, 0.07);
  --shadow:    0 8px 32px rgba(12, 29, 45, 0.11);
  --shadow-lg: 0 20px 56px rgba(12, 29, 45, 0.15);
  --glass-line: rgba(142, 190, 222, 0.22);
  --glass-light: rgba(255, 255, 255, 0.76);
  --glass-dark: rgba(8, 28, 43, 0.64);

  /* Layout */
  --max:          1220px;
  --section-pad:  100px;
  --radius:       4px;
  --radius-lg:    8px;

  /* Typography */
  --font-sans:    "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  --font-display: "Microsoft YaHei", "PingFang SC", "Source Han Sans SC", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(244,249,252,0.96) 42%, rgba(255,255,255,1) 100%);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p  { margin: 0; }
button { font: inherit; }

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 13px;
}

.form-status:empty {
  display: none;
}

.form-status[data-type="success"] {
  border-color: rgba(0, 113, 178, 0.24);
  background: rgba(0, 113, 178, 0.08);
  color: var(--blue-deep);
}

.form-status[data-type="error"] {
  border-color: rgba(224, 124, 32, 0.32);
  background: rgba(224, 124, 32, 0.09);
  color: var(--amber-dark);
}

button:disabled,
.btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(3, 8, 15, 0.66), rgba(3, 8, 15, 0.20) 72%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: none;
  /* backdrop-filter removed — causes repaint on every scroll frame */
  will-change: transform;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 187, 255, 0.34), rgba(224, 124, 32, 0.28), transparent);
  pointer-events: none;
}

.nav {
  width: min(100% - 40px, var(--max));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-right: 24px;
  margin-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  gap: 0;
}

.nav-links a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--blue));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  border-bottom-color: rgba(115, 187, 255, 0.72);
}

.nav-links a:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.07));
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-mega {
  position: absolute;
  top: 76px;
  left: 50%;
  z-index: 120;
  width: min(calc(100vw - 40px), var(--max));
  transform: translate(-50%, -8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  color: #ffffff;
  border: 1px solid rgba(185, 216, 236, 0.24);
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(135deg, rgba(248, 252, 255, 0.10), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(7, 20, 32, 0.98), rgba(8, 31, 48, 0.94));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-header.mega-open .nav-mega {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mega::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(224, 124, 32, 0.28), transparent 28%, transparent 72%, rgba(53, 199, 216, 0.20)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
  opacity: 0.62;
  pointer-events: none;
}

.nav-mega-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.8fr);
  gap: 24px;
  padding: 22px;
}

.nav-mega-copy {
  min-width: 0;
  padding: 4px 18px 4px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-mega-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(245, 164, 79, 0.95);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-mega-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
}

.nav-mega-copy strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
}

.nav-mega-copy p {
  color: rgba(226, 238, 247, 0.82);
  font-size: 13px;
  line-height: 1.75;
}

.nav-mega-cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 16px;
  padding: 0 13px;
  border: 1px solid rgba(115, 187, 255, 0.36);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  font-size: 12px;
  font-weight: 800;
}

.nav-mega-cta::after {
  content: "→";
  margin-left: 8px;
  color: var(--warm);
}

.nav-mega-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
}

.nav-mega-list a {
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(199, 221, 235, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-mega-list a:hover,
.nav-mega-list a:focus {
  transform: translateY(-1px);
  border-color: rgba(115, 187, 255, 0.42);
  background: rgba(255, 255, 255, 0.10);
  outline: none;
}

.nav-mega-list span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.nav-mega-list em {
  color: rgba(219, 232, 241, 0.70);
  font-size: 11.5px;
  font-style: normal;
  line-height: 1.45;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-phone {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-phone:hover { color: #ffffff; }
@media (max-width: 900px) { .nav-phone { display: none; } }

.nav-actions .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(224,124,32,0.95), rgba(245,164,79,0.90));
  border-color: rgba(255, 199, 127, 0.55);
  box-shadow: 0 12px 34px rgba(224,124,32,0.22);
}

.language {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.language:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 8px 22px rgba(0,0,0,0.14);
  transform: translateY(-1px);
}

/* Mobile menu */
.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.menu-button:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 8px 22px rgba(0,0,0,0.14);
}

/* ── Buttons ── */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:focus-visible,
.language:focus-visible,
.menu-button:focus-visible,
.card-link:focus-visible {
  outline: 3px solid rgba(245,164,79,0.34);
  outline-offset: 3px;
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0) 48%),
    linear-gradient(135deg, #008dcc 0%, #006ea9 45%, #00588d 72%, #0b5a69 100%);
  color: var(--white);
  border-color: rgba(0,113,178,0.88);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    inset 0 -1px 0 rgba(0,55,88,0.22),
    0 10px 22px rgba(0,113,178,0.20),
    0 0 0 1px rgba(53,199,216,0.08);
}

.btn-primary:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.17), rgba(255,255,255,0) 48%),
    linear-gradient(135deg, #0093d6 0%, #0077b5 46%, #005d95 100%);
  border-color: rgba(37,151,205,0.95);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,55,88,0.20),
    0 14px 28px rgba(0,113,178,0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.50);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.82);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 12px 26px rgba(0,0,0,0.14);
}

.btn-outline {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(232,243,251,0.62));
  color: var(--blue);
  border-color: rgba(0,113,178,0.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
}

.btn-outline:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 48%),
    linear-gradient(135deg, #0079bd, #005d95);
  color: var(--white);
  border-color: rgba(0,113,178,0.84);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,113,178,0.20);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
  padding: 0 2px 4px;
  height: auto;
  min-height: 0;
  box-shadow: none;
}

.btn-ghost::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--blue));
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.btn-ghost:hover {
  color: var(--blue-dark);
}

.btn-ghost:hover::after {
  transform: scaleX(1);
}

.btn-amber {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0) 50%),
    linear-gradient(135deg, #f3a13c 0%, #e07c20 48%, #b85f17 80%, #83532e 100%);
  color: var(--white);
  border-color: rgba(224,124,32,0.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 10px 22px rgba(224,124,32,0.22),
    0 0 0 1px rgba(168,214,109,0.08);
}

.btn-amber:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 50%),
    linear-gradient(135deg, #f19a2e 0%, #df7817 52%, #bd6418 100%);
  border-color: rgba(245,164,79,0.95);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 14px 28px rgba(224,124,32,0.28);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(53,199,216,0.09), transparent 26%),
    linear-gradient(245deg, rgba(168,214,109,0.08), transparent 30%),
    linear-gradient(180deg, #050708 0%, #09101a 56%, #050708 100%);
  --hero-scroll: 0;
  --hero-pointer-x: 0;
  --hero-pointer-y: 0;
}

.hero-motion,
.hero-process {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-process {
  left: auto;
  right: 5%;
  top: 14%;
  width: min(48vw, 720px);
  height: auto;
  opacity: 0.34;
}

.hero-process svg {
  display: block;
  width: 100%;
  height: auto;
}

.process-track,
.process-glow {
  fill: none;
  stroke-linecap: round;
}

.process-track {
  stroke: rgba(255,255,255,0.18);
  stroke-width: 1.4;
}

.process-glow {
  stroke: rgba(224,124,32,0.48);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(224,124,32,0.28));
}

.process-node,
.process-particle {
  fill: var(--amber);
  filter: drop-shadow(0 0 8px rgba(224,124,32,0.35));
}

.hero::before {
  content: "";
  position: absolute;
  top: clamp(96px, 14vh, 150px);
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: clamp(52px, 8vh, 92px);
  left: max(420px, calc((100vw - var(--max)) / 2 + 430px));
  z-index: 0;
  border: 1px solid rgba(154, 199, 237, 0.26);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 28%, rgba(53,199,216,0.06) 62%, transparent 100%),
    linear-gradient(180deg, rgba(10, 19, 30, 0.18), rgba(10, 19, 30, 0.72)),
    linear-gradient(90deg, rgba(5, 7, 8, 0.86), rgba(5, 7, 8, 0.08) 44%, rgba(5, 7, 8, 0.68)),
    url("../images/generated-equipment/homepage-system-overview-20260601-a.webp") center 56% / cover no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 0 9px rgba(255,255,255,0.025),
    inset 0 -90px 120px rgba(5, 7, 8, 0.78),
    0 0 70px rgba(38, 132, 202, 0.22),
    0 26px 80px rgba(0,0,0,0.28);
  filter: saturate(1.08) contrast(1.05);
  transform:
    translate3d(
      calc(var(--hero-pointer-x) * 9px),
      calc((var(--hero-scroll) * 20px) + (var(--hero-pointer-y) * 6px)),
      0
    )
    scale(1.02);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

/* Dark overlay — left-heavy for text legibility over photo */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 58%, rgba(53,199,216,0.10) 68%, transparent 82%),
    linear-gradient(100deg, rgba(5, 7, 8, 0.98) 0%, rgba(5, 7, 8, 0.90) 34%, rgba(5, 7, 8, 0.42) 62%, rgba(5, 7, 8, 0.20) 100%),
    linear-gradient(0deg, rgba(5, 7, 8, 0.92) 0%, transparent 38%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.86) 0%, transparent 28%);
}

/* Pipe-flow canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
  will-change: contents;
  mix-blend-mode: screen;
}

.hero-cosmos {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  transform:
    translate3d(
      calc(var(--hero-pointer-x) * 12px),
      calc((var(--hero-scroll) * 24px) + (var(--hero-pointer-y) * 8px)),
      0
    );
  transition: transform 0.18s ease-out;
}

.hero-screen-glow {
  position: absolute;
  top: clamp(108px, 16vh, 170px);
  right: max(36px, calc((100vw - var(--max)) / 2 + 18px));
  bottom: clamp(70px, 10vh, 114px);
  left: max(440px, calc((100vw - var(--max)) / 2 + 450px));
  border-radius: 2px;
  background:
    linear-gradient(110deg, transparent 0%, rgba(53,199,216,0.18) 34%, rgba(245,164,79,0.18) 52%, transparent 74%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 46px),
    linear-gradient(180deg, rgba(20, 33, 49, 0.04), rgba(5, 7, 8, 0.72));
  filter: blur(1px);
  opacity: 0.82;
  animation: screenBreathe 7s ease-in-out infinite alternate;
}

.hero-arc {
  position: absolute;
  right: max(54px, calc((100vw - var(--max)) / 2 + 40px));
  left: max(450px, calc((100vw - var(--max)) / 2 + 455px));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-top: 1px solid rgba(137, 205, 255, 0.70);
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.12),
    0 -18px 52px rgba(74, 168, 241, 0.22);
  opacity: 0.82;
  transform-origin: center bottom;
}

.hero-arc-primary {
  top: clamp(158px, 23vh, 230px);
  height: clamp(170px, 30vw, 380px);
  animation: arcPulse 5.8s ease-in-out infinite alternate;
}

.hero-arc-secondary {
  top: clamp(176px, 25vh, 258px);
  height: clamp(134px, 25vw, 320px);
  border-top-color: rgba(118, 180, 240, 0.32);
  filter: blur(0.5px);
  opacity: 0.52;
  animation: arcPulse 7.5s ease-in-out infinite alternate-reverse;
}

.hero-horizon {
  position: absolute;
  right: max(90px, calc((100vw - var(--max)) / 2 + 80px));
  bottom: clamp(138px, 20vh, 206px);
  width: min(44vw, 620px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(238, 124, 39, 0.55), rgba(255, 235, 196, 0.92), rgba(238, 124, 39, 0.60), transparent);
  box-shadow:
    0 0 18px rgba(242, 145, 58, 0.56),
    0 0 70px rgba(242, 145, 58, 0.32);
  opacity: 0.86;
  animation: horizonBreathe 4.8s ease-in-out infinite alternate;
}

.hero-silhouette {
  position: absolute;
  right: max(30%, calc((100vw - var(--max)) / 2 + 320px));
  bottom: clamp(108px, 16vh, 160px);
  width: 22px;
  height: 86px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, rgba(16, 30, 44, 0.70), rgba(2, 5, 8, 0.94));
  box-shadow: 0 0 22px rgba(64, 156, 226, 0.28);
  opacity: 0.58;
}

.hero-silhouette::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(8, 17, 27, 0.86);
  transform: translateX(-50%);
}

.hero-scanline {
  position: absolute;
  top: clamp(112px, 16vh, 176px);
  right: max(22px, calc((100vw - var(--max)) / 2 + 6px));
  bottom: clamp(56px, 8vh, 98px);
  left: max(424px, calc((100vw - var(--max)) / 2 + 434px));
  border-radius: 2px;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  background-size: auto, 100% 42%;
  background-position: 0 0, 0 -40%;
  opacity: 0.34;
  mix-blend-mode: screen;
  animation: scanSweep 7.2s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 80px 0 60px;
  color: var(--white);
  max-width: 700px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 22px;
  text-shadow: 0 18px 44px rgba(0,0,0,0.34);
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #ffb663 0%, var(--amber) 42%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 36px;
}

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

/* hero image slow drift */
@keyframes heroDrift {
  from { background-position: center 56%, center 56%, center 56%; }
  to   { background-position: center 56%, center 56%, 53% 50%; }
}

@keyframes screenBreathe {
  from { opacity: 0.66; transform: scale(0.992); }
  to { opacity: 0.96; transform: scale(1.01); }
}

@keyframes arcPulse {
  from { opacity: 0.50; filter: drop-shadow(0 0 8px rgba(80, 170, 242, 0.12)); }
  to { opacity: 0.92; filter: drop-shadow(0 0 24px rgba(80, 170, 242, 0.34)); }
}

@keyframes horizonBreathe {
  from { opacity: 0.58; transform: scaleX(0.88); }
  to { opacity: 0.94; transform: scaleX(1.02); }
}

@keyframes scanSweep {
  0%, 100% { background-position: 0 0, 0 -52%; opacity: 0.20; }
  45% { opacity: 0.38; }
  72% { background-position: 0 0, 0 118%; opacity: 0.28; }
}

@keyframes heroCloudLayerDrift {
  0% {
    transform: translate3d(-1.4%, 0, 0) scale(1.035);
    opacity: 0.16;
  }
  45% {
    opacity: 0.24;
  }
  100% {
    transform: translate3d(1.8%, -0.35%, 0) scale(1.035);
    opacity: 0.18;
  }
}

@keyframes footerEarthTurn {
  from { transform: translate3d(-0.35%, 0, 0) scale(1.08) rotate(-0.25deg); }
  to   { transform: translate3d(0.45%, -0.25%, 0) scale(1.105) rotate(0.25deg); }
}

/* ── Hero flow decorative lines ── */
.hero-flow {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.6;
}

.hero-flow span {
  position: absolute;
  left: -10%;
  width: 70%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), rgba(224, 124, 32, 0.25), transparent);
  transform: rotate(-8deg);
  animation: flowLine 8s ease-in-out infinite;
}

.hero-flow span:nth-child(1) { top: 30%; animation-delay: 0s; }
.hero-flow span:nth-child(2) { top: 50%; width: 80%; animation-delay: 2.8s; }
.hero-flow span:nth-child(3) { top: 68%; width: 62%; animation-delay: 5.4s; }

@keyframes flowLine {
  0%   { opacity: 0; transform: translate3d(0,0,0) rotate(-8deg); }
  20%  { opacity: 0.7; }
  75%  { opacity: 0.3; }
  100% { opacity: 0; transform: translate3d(160%,-50px,0) rotate(-8deg); }
}

/* ══════════════════════════════
   STATS BAND  (below hero)
══════════════════════════════ */

.stats-band {
  background: var(--navy);
  color: var(--white);
}

.stats-band-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  position: relative;
  overflow: hidden;
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}

.stat-item:hover {
  border-bottom-color: var(--amber);
  background: rgba(255,255,255,0.035);
}

.stat-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  transition: color 0.25s, text-shadow 0.25s, transform 0.25s;
}

.stat-num.counting,
.about-stat-num.counting {
  color: var(--warm);
  text-shadow: 0 0 18px rgba(224,124,32,0.22);
  transform: translateY(-1px);
}

.stat-num sup {
  font-size: 20px;
  vertical-align: super;
}

.stat-label {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.stat-item:hover .stat-label { color: rgba(255,255,255,0.80); }

/* ══════════════════════════════
   SCROLL PANORAMA
══════════════════════════════ */

.scroll-panorama {
  --panorama-x: 50%;
  --panorama-y: 50%;
  position: relative;
  min-height: clamp(280px, 42vw, 470px);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #061725;
  color: var(--white);
}

.scroll-panorama::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7,24,39,0.20), rgba(7,24,39,0.70)),
    url("../images/generated-equipment/homepage-system-overview-20260601-b.webp") var(--panorama-x) var(--panorama-y) / 136% auto no-repeat;
  transform: scale(1.04);
  transition: background-position 0.1s linear;
}

.scroll-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at calc(var(--panorama-x) - 8%) 50%, rgba(0,113,178,0.32), transparent 24%),
    radial-gradient(circle at calc(var(--panorama-x) + 8%) 52%, rgba(224,124,32,0.23), transparent 18%),
    linear-gradient(90deg, rgba(5,15,26,0.90) 0%, rgba(5,15,26,0.30) 45%, rgba(5,15,26,0.86) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 68px);
}

.scroll-panorama-inner {
  width: min(100% - 40px, var(--max));
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: 64px 0;
}

.scroll-panorama-inner p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
}

.scroll-panorama-inner p::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--warm), rgba(255,255,255,0.22));
}

.scroll-panorama h2 {
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.12;
  color: var(--white);
}

.panorama-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panorama-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-left-color: rgba(224,124,32,0.72);
  border-radius: var(--radius);
  background: rgba(4,22,36,0.42);
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */

.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section > .wrap {
  position: relative;
  z-index: 1;
}

.section.alt {
  overflow: clip;
  background:
    linear-gradient(120deg, rgba(53,199,216,0.08), transparent 28%),
    linear-gradient(250deg, rgba(168,214,109,0.08), transparent 34%),
    linear-gradient(135deg, rgba(238,245,251,0.98) 0%, rgba(255,247,238,0.76) 100%);
}

.section.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(112deg, transparent 0 58px, rgba(0,113,178,0.035) 58px 59px, transparent 59px 116px),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.52) 46%, transparent 72%);
  opacity: 0.70;
}

.section.sm  { padding: 60px 0; }
.section.dark {
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(53,199,216,0.12), transparent 38%),
    linear-gradient(246deg, rgba(224,124,32,0.14), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 56%, #081621 100%);
  color: var(--white);
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.030) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  opacity: 0.46;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

/* Section header */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  flex-shrink: 0;
}

.dark .section-label { color: var(--amber); }
.dark .section-label::before { background: var(--amber); }

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: 0;
}

.dark .section-title h2 { color: var(--white); }

.section-title p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
}

.dark .section-title p { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════
   INDUSTRY TILES  (Hosokawa-style)
══════════════════════════════ */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.industry-tile {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  text-decoration: none;
}

.industry-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform 0.5s ease;
}

/* Distinct color overlays per industry */
.industry-tile:nth-child(1)::before {
  background: linear-gradient(135deg, #0d3b5e 0%, #1a6296 100%),
              url("../images/hero-powder-system.webp") center / cover;
  background-blend-mode: multiply;
}
.industry-tile:nth-child(2)::before {
  background: linear-gradient(135deg, #00366f 0%, #005aa9 100%),
              url("../images/hero-powder-system.webp") 30% center / cover;
  background-blend-mode: multiply;
}
.industry-tile:nth-child(3)::before {
  background: linear-gradient(135deg, #3a1a0d 0%, #8b4513 100%),
              url("../images/hero-powder-system.webp") 60% center / cover;
  background-blend-mode: multiply;
}
.industry-tile:nth-child(4)::before {
  background: linear-gradient(135deg, #1a1a3a 0%, #2d2d8b 100%),
              url("../images/hero-powder-system.webp") 20% center / cover;
  background-blend-mode: multiply;
}
.industry-tile:nth-child(5)::before {
  background: linear-gradient(135deg, #2a2a2a 0%, #555 100%),
              url("../images/hero-powder-system.webp") 80% center / cover;
  background-blend-mode: multiply;
}
.industry-tile:nth-child(6)::before {
  background: linear-gradient(135deg, #1a2d3a 0%, #2d5a6e 100%),
              url("../images/hero-powder-system.webp") 70% center / cover;
  background-blend-mode: multiply;
}

.industry-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.10) 60%);
  transition: opacity 0.3s;
}

.industry-tile:hover::before { transform: scale(1.06); }
.industry-tile:hover::after  { opacity: 0.7; }

.industry-tile-body {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.industry-tile-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.industry-tile-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s;
}

.industry-tile:hover .industry-tile-body p {
  max-height: 80px;
  margin-top: 6px;
}

.industry-tile-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  gap: 6px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.industry-tile:hover .industry-tile-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════
   PRODUCT CARDS
══════════════════════════════ */

.grid {
  display: grid;
  gap: 20px;
}

.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four  { grid-template-columns: repeat(4, 1fr); }

.product-card {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,250,253,0.88));
  border: 1px solid rgba(0,113,178,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    0 12px 34px rgba(12,29,45,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s, background 0.28s;
}

.product-card:hover {
  transform: translateY(-7px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,249,252,0.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96),
    0 24px 60px rgba(12,29,45,0.17),
    0 0 0 1px rgba(53,199,216,0.08);
  border-color: rgba(224,124,32,0.52);
}

.product-media {
  min-height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  overflow: hidden;
}

.product-media.photo-media {
  background:
    linear-gradient(135deg, rgba(53,199,216,0.12), transparent 34%),
    linear-gradient(180deg, rgba(12,29,45,0.02) 0%, rgba(12,29,45,0.12) 56%, rgba(12,29,45,0.72) 100%),
    var(--product-image, url("../images/hero-powder-system.webp")) center / cover no-repeat;
}

.product-media.photo-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: inherit;
  transform: scale(1);
  transition: transform 0.62s cubic-bezier(0.22,1,0.36,1), filter 0.62s;
}

.product-card:hover .product-media.photo-media::before {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

.product-media.photo-fluidized {
  --product-image: url("../images/generated-equipment/jet-mill-ai-clean-showcase-fan-removed-ai-20260606-card.webp");
  background-position: center 54%;
}

.product-media.photo-lab {
  --product-image: url("../images/generated-equipment/fluid-energy-jet-mill-main-stand-20260606-card.webp");
  background-position: center 54%;
}

.product-media.photo-inert {
  --product-image: url("../images/generated-equipment/stainless-platform-processing-system-retouched-20260606-card.webp");
  background-position: center 52%;
}

.product-media.photo-spiral {
  --product-image: url("../images/generated-equipment/fluid-energy-jet-mill-main-stand-20260606-card.webp");
  background-position: center 54%;
}

.product-media.photo-classifier {
  --product-image: url("../images/generated-equipment/classifier-system-stainless-20260606-card.webp");
  background-position: center 52%;
}

.product-media.photo-line {
  --product-image: url("../images/generated-equipment/stainless-platform-processing-system-retouched-20260606-card.webp");
  background-position: center 52%;
}

.product-media.photo-mechanical {
  --product-image: url("../images/generated-equipment/mechanical-mill-main-machine-20260606-card-soft.webp");
  background-position: center 54%;
}

.product-media.photo-mechanical-line {
  --product-image: url("../images/generated-equipment/mechanical-mill-system-stainless-with-impact-host-20260606-card-soft.webp");
  background-position: center 52%;
}

.product-media.photo-spheronizer {
  --product-image: url("../images/generated-equipment/graphite-spheronizer-main-host-final-20260625-card.webp");
  background-position: center 51%;
}

.product-media.photo-impact {
  --product-image: url("../images/generated-equipment/impact-mill-main-host-blue-skid-final-20260625-card.webp");
  background-position: center 52%;
}

.product-media.photo-platform {
  --product-image: url("../images/generated-equipment/stainless-platform-processing-system-retouched-20260606-card.webp");
  background-position: center 52%;
}

body.home-hero-dome #products .product-media.photo-media,
body.products-page .product-media.photo-media {
  background:
    radial-gradient(circle at 50% 88%, rgba(12,29,45,0.10), transparent 35%),
    linear-gradient(180deg, #fbfcfd 0%, #eef3f6 100%);
}

body.home-hero-dome #products .product-media.photo-media::before,
body.products-page .product-media.photo-media::before {
  inset: 8px 6px 18px;
  background: var(--product-image, url("../images/hero-powder-system.webp")) center 54% / cover no-repeat;
  filter: saturate(0.96) contrast(1.02) drop-shadow(0 15px 18px rgba(12,29,45,0.16));
  transform: scale(1);
  transform-origin: center 56%;
  transition: transform 0.32s ease, filter 0.32s ease;
  will-change: transform, filter;
}

body.home-hero-dome #products .product-card:hover .product-media.photo-media::before,
body.products-page .product-card:hover .product-media.photo-media::before {
  transform: scale(1.08);
  filter: saturate(1.02) contrast(1.04) drop-shadow(0 22px 24px rgba(12,29,45,0.22));
}

body.home-hero-dome #products .product-media span,
body.home-hero-dome #products .product-media small,
body.products-page .product-media span,
body.products-page .product-media small {
  text-shadow: none;
}

body.home-hero-dome #products .product-media span:not(.product-tag),
body.products-page .product-media span:not(.product-tag) {
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(20,38,56,0.86);
  color: var(--white);
}

body.home-hero-dome #products .product-media small,
body.products-page .product-media small {
  margin-left: 8px;
  color: rgba(20,38,56,0.72);
  font-weight: 800;
}

.product-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(12,29,45,0.62);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 20px rgba(0,0,0,0.22);
}

.product-media span,
.product-media small {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(3, 10, 18, 0.42);
}

.product-media span:not(.product-tag) {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.product-media small {
  margin-left: 2px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 600;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--blue);
  border: 1px solid rgba(0,113,178,0.14);
  border-left: 2px solid var(--amber);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0,113,178,0.07), rgba(255,255,255,0.58));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.80);
  transition: gap 0.2s, color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card-link::after {
  content: "→";
  transition: transform 0.2s;
}

.card-link:hover {
  color: var(--blue-dark);
  border-color: rgba(0,113,178,0.30);
  border-left-color: var(--warm);
  background:
    linear-gradient(90deg, rgba(224,124,32,0.10), rgba(232,243,251,0.72));
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 8px 18px rgba(0,113,178,0.10);
}
.card-link:hover::after { transform: translateX(4px); }

body.home-hero-dome #products .home-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

body.home-hero-dome #products .home-product-grid .product-card {
  display: grid;
  grid-template-rows: minmax(258px, auto) auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(0,113,178,0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.58), rgba(242,248,251,0.40)),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(236,247,250,0.22) 54%, rgba(255,255,255,0.16));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.90),
    0 14px 34px rgba(12,29,45,0.07);
}

body.home-hero-dome #products .home-product-grid .product-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  z-index: 2;
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(53,199,216,0.68));
}

body.home-hero-dome #products .home-product-grid .product-media {
  min-height: 258px;
  height: auto;
  padding: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 83%, rgba(12,29,45,0.14), transparent 42%),
    linear-gradient(180deg, rgba(252,254,255,0.98) 0%, rgba(238,245,248,0.82) 100%);
}

body.home-hero-dome #products .home-product-grid .product-media.photo-media::before {
  inset: 22px 16px 20px;
  background: var(--product-image, url("../images/hero-powder-system.webp")) center center / contain no-repeat;
  filter: saturate(0.98) contrast(1.03) drop-shadow(0 16px 19px rgba(12,29,45,0.14));
}

body.home-hero-dome #products .home-product-grid .product-media.photo-fluidized {
  --product-image: url("../images/generated-equipment/fluid-energy-jet-mill-main-stand-20260606-card.webp");
}

body.home-hero-dome #products .home-product-grid .product-media.photo-impact {
  --product-image: url("../images/generated-equipment/impact-mill-main-host-blue-skid-final-20260625-card.webp");
}

body.home-hero-dome #products .home-product-grid .product-media.photo-spheronizer {
  --product-image: url("../images/generated-equipment/graphite-spheronizer-main-host-final-20260625-card.webp");
}

body.home-hero-dome #products .home-product-grid .product-card:hover .product-media.photo-media::before {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.04) drop-shadow(0 18px 22px rgba(12,29,45,0.18));
}

body.home-hero-dome #products .home-product-grid .product-tag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  margin: 0;
  align-self: auto;
  border: 1px solid rgba(255,255,255,0.34);
  background:
    linear-gradient(135deg, rgba(20,38,56,0.76), rgba(57,76,92,0.62));
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 10px 22px rgba(12,29,45,0.20);
}

body.home-hero-dome #products .home-product-grid .card-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title link"
    "desc desc";
  align-content: start;
  align-items: center;
  gap: 8px 14px;
  min-width: 0;
  margin: 0;
  min-height: 116px;
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(0,113,178,0.10);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.64), rgba(245,250,252,0.34) 60%, rgba(232,245,249,0.18));
  backdrop-filter: blur(12px) saturate(1.06);
  -webkit-backdrop-filter: blur(12px) saturate(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72);
}

body.home-hero-dome #products .home-product-grid .card-body::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, rgba(224,124,32,0.82), rgba(53,199,216,0.50));
}

body.home-hero-dome #products .home-product-grid .card-body::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), transparent 34%),
    repeating-linear-gradient(135deg, rgba(0,113,178,0.016) 0 1px, transparent 1px 30px);
}

body.home-hero-dome #products .home-product-grid .card-body h3 {
  grid-area: title;
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  color: rgba(9, 29, 47, 0.96);
}

body.home-hero-dome #products .home-product-grid .card-body p {
  grid-area: desc;
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1.56;
  color: rgba(45, 68, 86, 0.82);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home-hero-dome #products .home-product-grid .card-link {
  grid-area: link;
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  margin-top: 0;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0,113,178,0.16);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.68);
  white-space: nowrap;
  font-size: 13px;
  color: rgba(0, 100, 152, 0.96);
}

body.home-hero-dome #products .home-product-grid .card-link:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.50), rgba(239,248,251,0.26));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76), 0 8px 16px rgba(0,113,178,0.08);
  transform: translateX(1px);
}

.product-card.is-new .product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--warm));
}

/* Feature cards (dark section) */
.feature-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  transition: background 0.25s, transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border-color: rgba(53,199,216,0.32);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 18px 42px rgba(0,0,0,0.18);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.feature-icon {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  margin-bottom: 20px;
}

/* Resource cards */
.resource-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,250,253,0.88));
  border: 1px solid rgba(0,113,178,0.14);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 10px 28px rgba(12,29,45,0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(12,29,45,0.13);
  border-color: rgba(53,199,216,0.42);
}

.resource-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Application cards */
.application-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,250,253,0.88));
  border: 1px solid rgba(0,113,178,0.14);
  border-radius: var(--radius-lg);
  border-top: 3px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.application-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--cyan), var(--lime));
}

.application-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53,199,216,0.36);
  box-shadow: 0 18px 42px rgba(12,29,45,0.12);
}

.application-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.application-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.application-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.application-group {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,247,238,0.72));
  border: 1px solid rgba(184,107,59,0.16);
  border-radius: var(--radius-lg);
}

.application-group::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--amber), rgba(224,124,32,0));
}

.application-group h2 {
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--ink);
}

.application-list {
  display: grid;
  gap: 12px;
}

.application-list a,
.application-list .application-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(12,29,45,0.08);
  font-size: 14px;
  color: var(--ink-mid);
}

.application-list a:last-child,
.application-list .application-list-item:last-child { border-bottom: 0; }

.application-list a:hover {
  color: var(--blue);
}

.application-list small {
  color: var(--copper);
  font-weight: 700;
  white-space: nowrap;
}

/* ══════════════════════════════
   PROCESS STEPS
══════════════════════════════ */

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  counter-reset: step;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  padding: 24px 20px;
  background: #f0f7fd;
  border-right: 1px solid rgba(0,113,178,0.10);
  counter-increment: step;
  position: relative;
  transition: background 0.25s;
}

.process-step:last-child { border-right: 0; }

.process-step:hover { background: #e8f3fb; }

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.25;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.process-step strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

/* ══════════════════════════════
   CASES
══════════════════════════════ */

.cases {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}

.case-list { display: grid; gap: 16px; }

.case-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,250,253,0.88));
  border: 1px solid rgba(0,113,178,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224,124,32,0.40);
  box-shadow: 0 18px 42px rgba(12,29,45,0.12);
}

.case-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.case-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.case-card.major {
  background:
    linear-gradient(135deg, rgba(12,29,45,0.94), rgba(22,51,71,0.86)),
    url("../images/generated-equipment/homepage-system-overview-20260601-b.webp") center / cover no-repeat;
  color: var(--white);
  border-color: transparent;
}

.case-card.major h3 { color: var(--white); }
.case-card.major p  { color: rgba(255,255,255,0.75); }

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

.home-case-grid .case-card {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,253,0.92));
  border-color: rgba(0,113,178,0.15);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.94),
    0 14px 34px rgba(12,29,45,0.055);
}

.home-case-grid .case-card.is-featured {
  border-color: rgba(224,124,32,0.44);
}

.home-case-grid .case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,113,178,0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96),
    0 18px 42px rgba(12,29,45,0.10);
}

.home-case-grid .case-card.is-featured:hover {
  border-color: rgba(224,124,32,0.58);
}

.home-case-grid .case-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.home-case-grid .case-card p {
  max-width: 92%;
}

@media (max-width: 780px) {
  .home-case-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-case-grid .case-card {
    min-height: auto;
    padding: 24px;
  }

  .home-case-grid .case-card p {
    max-width: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .about-photos img {
    transform-origin: center;
    transition: transform 0.62s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s, filter 0.32s;
  }

  .about-photos img:hover {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.02);
    box-shadow: 0 18px 34px rgba(12,29,45,0.16);
  }
}

/* ══════════════════════════════
   ABOUT BAND
══════════════════════════════ */

.about-band {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.about-tags span {
  padding: 6px 14px;
  border-radius: 999px;
  background: #e8f3fb;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(0,113,178,0.15);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: #e8f3fb;
  border: 1px solid rgba(0,113,178,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}

.about-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.about-stat:first-child {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: transparent;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.about-stat:first-child .about-stat-num { color: var(--white); }

.about-stat-num sup {
  font-size: 20px;
  vertical-align: super;
}

.about-stat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.about-stat:first-child .about-stat-label { color: rgba(255,255,255,0.60); }

.about-stat-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
}

.about-photos {
  width: min(100% - 40px, var(--max));
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-photos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(53,199,216,0.18), transparent 36%),
    linear-gradient(248deg, rgba(245,164,79,0.24), transparent 34%),
    linear-gradient(135deg, var(--blue-deep), var(--navy));
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 72px),
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,0.08) 42%, transparent 64%);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   INQUIRY FORM
══════════════════════════════ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.inquiry {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.90), rgba(245,248,250,0.76) 48%, rgba(234,240,244,0.64)),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(236,242,246,0.58));
  border: 1px solid rgba(133,154,168,0.28);
  box-shadow:
    0 24px 58px rgba(12,29,45,0.11),
    inset 0 1px 0 rgba(255,255,255,0.88);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.inquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.62), transparent 36%),
    linear-gradient(135deg, rgba(0,113,178,0.045), transparent 44%, rgba(224,124,32,0.035));
}

.inquiry > * {
  position: relative;
  z-index: 1;
}

.inquiry-only {
  max-width: 920px;
}

.inquiry-only .inquiry {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(246,249,251,0.78) 50%, rgba(236,242,246,0.66)),
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(238,244,247,0.56));
  border-color: rgba(133,154,168,0.26);
  box-shadow:
    0 22px 54px rgba(12,29,45,0.10),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(132,151,164,0.34);
  border-radius: var(--radius);
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,252,253,0.86));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.74),
    0 1px 0 rgba(12,29,45,0.03);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255,255,255,0.98);
  box-shadow:
    0 0 0 3px rgba(0,113,178,0.10),
    inset 0 1px 0 rgba(255,255,255,0.86);
}

.field textarea { min-height: 110px; resize: vertical; }

.inquiry .btn-secondary {
  color: var(--blue);
  border-color: rgba(105,131,148,0.38);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(242,246,249,0.70));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
}

.inquiry .btn-secondary:hover {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 48%),
    linear-gradient(135deg, #0079bd, #005d95);
  border-color: rgba(0,113,178,0.84);
}

.particle-size-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(132,151,164,0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.66), rgba(241,245,248,0.62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76);
}

.particle-size-grid .field {
  gap: 4px;
}

.particle-size-grid .field label {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-mid);
}

.particle-size-grid .field input {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 13px;
}

.contact-inquiry-section {
  padding-top: 86px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
}

.contact-aside h2 {
  font-size: clamp(30px, 3.6vw, 44px);
}

.contact-aside p {
  max-width: 460px;
  color: var(--muted);
}

.contact-steps {
  display: grid;
  gap: 10px;
}

.contact-steps div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(0,113,178,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
}

.contact-steps strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-size: 13px;
}

.contact-steps span {
  color: var(--ink-mid);
  font-size: 14px;
}

.contact-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0,113,178,0.12);
  border-radius: var(--radius-lg);
  background: rgba(0,113,178,0.12);
}

.contact-card a,
.contact-card div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  background: rgba(255,255,255,0.82);
}

.contact-card b {
  color: var(--ink);
  font-size: 13px;
}

.contact-card span {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  word-break: break-word;
}

.contact-form {
  padding: clamp(24px, 3vw, 34px);
  border-color: rgba(133,154,168,0.30);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(247,249,251,0.80) 46%, rgba(236,242,246,0.66)),
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(238,244,247,0.58));
  box-shadow:
    0 24px 62px rgba(12,29,45,0.12),
    inset 0 1px 0 rgba(255,255,255,0.90);
}

.form-intro {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(132,151,164,0.22);
}

.form-intro h3 {
  color: var(--ink);
  font-size: 22px;
}

.form-intro p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

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

.contact-form .field label {
  color: var(--ink-mid);
}

.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select {
  min-height: 42px;
  border-color: rgba(124,148,162,0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,252,253,0.88));
}

.contact-form .field textarea {
  min-height: 92px;
}

.particle-details {
  grid-column: 1 / -1;
  border: 1px solid rgba(132,151,164,0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.68), rgba(241,245,248,0.62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76);
}

.particle-details-head,
.particle-details summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.particle-details summary::-webkit-details-marker {
  display: none;
}

.particle-details-head small,
.particle-details summary small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.particle-details .particle-size-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 0;
  border-top: 1px solid rgba(132,151,164,0.18);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: rgba(248,250,251,0.62);
  box-shadow: none;
}

.submit-field {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.submit-field .btn {
  min-width: 180px;
}

.submit-field span {
  color: var(--muted);
  font-size: 13px;
}

/* ══════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════ */

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 156px 0 68px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(53,199,216,0.10), transparent 34%),
    linear-gradient(100deg, rgba(10,22,36,0.94), rgba(10,22,36,0.64)),
    url("../images/hero-powder-system.webp") center / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 62%, rgba(224,124,32,0.14) 68%, transparent 78%);
  background-size: 72px 72px, 72px 72px, auto;
  opacity: 0.58;
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: max(20px, calc((100vw - var(--max)) / 2));
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--cyan), rgba(0,113,178,0.16), transparent);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  margin-bottom: 16px;
  text-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 640px;
}

/* ══════════════════════════════
   TABLES
══════════════════════════════ */

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.table th, .table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  font-size: 13px;
  font-family: var(--font-sans);
  line-height: 1.5;
}

.table-scroll .table th,
.table-scroll .table td {
  font-size: 13.5px;
}

.table td {
  word-break: break-word;
}

.table th:last-child, .table td:last-child {
  border-right: none;
}

.table th {
  background: var(--blue-dark);
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
}

.table tbody tr:nth-child(even) {
  background: var(--paper);
}

.table tbody tr:hover {
  background: #e8f0f7;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */

.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 0%, rgba(224,124,32,0.14), rgba(224,124,32,0) 30%),
    linear-gradient(135deg, #071827 0%, var(--navy) 52%, #0a2437 100%);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer::before {
  content: "";
  position: absolute;
  inset: -12% -8% -18%;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(0,113,178,0.20), rgba(0,113,178,0) 38%),
    radial-gradient(circle at 86% 58%, rgba(224,124,32,0.13), rgba(224,124,32,0) 30%),
    linear-gradient(90deg, rgba(4,14,25,0.96) 0%, rgba(4,14,25,0.82) 46%, rgba(4,14,25,0.62) 100%),
    linear-gradient(180deg, rgba(4,14,25,0.50) 0%, rgba(4,14,25,0.90) 100%);
  opacity: 0.92;
}

.footer::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent max(20px, calc((100vw - var(--max)) / 2)), var(--amber) max(20px, calc((100vw - var(--max)) / 2)), rgba(0,113,178,0.60) 42%, transparent 70%) top / 100% 2px no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(3,12,22,0.10), rgba(3,12,22,0.46));
  background-size: 100% 2px, 64px 64px, 64px 64px, auto;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.40));
}

.footer > * {
  position: relative;
  z-index: 3;
}

.footer-earth-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
  pointer-events: none;
  opacity: 0.94;
  transform-origin: 86% 82%;
  animation: footerEarthTurn 12s ease-in-out infinite alternate;
  filter: saturate(1.2) contrast(1.1) drop-shadow(0 0 38px rgba(0,142,230,0.32)) drop-shadow(0 0 62px rgba(47,177,255,0.22));
}

.footer-earth-label {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2 + 8px));
  bottom: 34px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  pointer-events: none;
}

.footer-preview-mode body {
  background: var(--navy);
}

.footer-preview-mode .topbar,
.footer-preview-mode .site-header,
.footer-preview-mode .header,
.footer-preview-mode main,
.footer-preview-mode .mobile-bar,
.footer-preview-mode .online-consult {
  display: none !important;
}

.footer-preview-mode .footer {
  min-height: 100vh;
  display: grid;
  align-content: end;
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) minmax(130px, 0.85fr) minmax(130px, 0.9fr) minmax(130px, 0.9fr);
  gap: clamp(28px, 3.4vw, 48px);
  padding-bottom: 48px;
}

.footer-inner > * {
  min-width: 0;
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(0, 300px);
  column-gap: 22px;
  row-gap: 8px;
  align-items: start;
}

.footer-brand img {
  grid-column: 1;
  height: 40px;
  width: auto;
  /* dark background — invert to white */
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
  mix-blend-mode: normal;
}

.footer-brand p {
  grid-column: 1;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

.footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 12px;
}

.footer p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

.footer-contact {
  grid-column: 1;
  align-self: end;
  margin-top: 20px;
  display: grid;
  gap: 6px;
}

.footer-contact a {
  position: relative;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, transform 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col a {
  position: relative;
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  padding-left: 0;
  transition: color 0.2s, transform 0.2s, padding-left 0.2s;
}

.footer-col a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), rgba(255,255,255,0.36));
  transition: width 0.24s cubic-bezier(0.22,1,0.36,1);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 14px;
  transform: translateX(2px);
}

.footer-col a:hover::before {
  width: 9px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(2,10,18,0.18);
}

.footer-bottom-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  position: relative;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  transition: color 0.2s;
}

.footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), rgba(0,113,178,0.72));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.75);
}

.footer-bottom a:hover::after {
  transform: scaleX(1);
}

.footer-links {
  display: flex;
  gap: 20px;
}

/* ══════════════════════════════
   MOBILE BAR
══════════════════════════════ */

.mobile-bar { display: none; }

/* ══════════════════════════════
   ONLINE CONSULT
══════════════════════════════ */

.online-consult {
  position: fixed;
  right: 20px;
  bottom: 86px;
  z-index: 95;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.online-consult-main,
.online-consult-panel,
.online-consult-inline {
  pointer-events: auto;
}

.online-consult-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(224,124,32,0.55);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(9,34,55,0.96), rgba(11,56,86,0.94));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(4,22,36,0.24), inset 0 1px 0 rgba(255,255,255,0.16);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s;
}

.online-consult-main::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 0 6px rgba(224,124,32,0.16), 0 0 18px rgba(224,124,32,0.54);
}

.online-consult:hover .online-consult-main,
.online-consult:focus-within .online-consult-main {
  border-color: rgba(245,164,79,0.88);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(4,22,36,0.30), inset 0 1px 0 rgba(255,255,255,0.20);
}

.online-consult-panel {
  width: 238px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-top-color: rgba(224,124,32,0.56);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 0%, rgba(224,124,32,0.16), transparent 34%),
    linear-gradient(145deg, rgba(7,24,39,0.96), rgba(10,38,59,0.94));
  color: rgba(255,255,255,0.72);
  box-shadow: 0 18px 44px rgba(4,22,36,0.28);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.online-consult:hover .online-consult-panel,
.online-consult:focus-within .online-consult-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.online-consult-panel strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 5px;
}

.online-consult-panel p {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.58);
  margin-bottom: 12px;
}

.online-consult-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.online-consult-actions a {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.065);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 800;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.online-consult-actions a:hover {
  color: var(--white);
  border-color: rgba(224,124,32,0.55);
  background: rgba(224,124,32,0.16);
  transform: translateY(-1px);
}

.online-consult-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(132,151,164,0.24);
  border-left: 3px solid rgba(224,124,32,0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(244,247,249,0.64));
  color: var(--ink-mid);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.76),
    0 10px 24px rgba(12,29,45,0.06);
}

.online-consult-inline strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.online-consult-inline span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.online-consult-inline a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0)),
    var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(12,29,45,0.14);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.online-consult-inline a:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(12,29,45,0.18);
}

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }
.reveal-delay-4 { transition-delay: 0.28s; }

/* ══════════════════════════════
   PRODUCT DETAIL — new modules
══════════════════════════════ */

/* 工作原理步骤 */
.principle-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.principle-step {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  background: var(--white);
}
.principle-step:last-child { border-right: 0; }
.principle-step-num {
  display: inline-flex;
  width: 34px; height: 34px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.principle-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.principle-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* 可选配置网格 */
.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  min-width: 0;
}
.config-item {
  min-width: 0;
  padding: 22px 20px;
  border: 1px solid rgba(0,113,178,0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,250,253,0.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.config-item:hover {
  border-color: rgba(53,199,216,0.42);
  box-shadow: 0 12px 30px rgba(0,113,178,0.10);
  transform: translateY(-2px);
}
.config-item h3,
.config-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.config-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.config-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 10px;
  background: #e8f3fb;
  color: var(--blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* 常见问题 FAQ */
.faq { margin-top: 24px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  padding: 18px 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '＋';
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-style: normal;
}
.faq details[open] > summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 4px 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

/* 参数表溢出处理 */
.table-scroll { overflow-x: auto; margin-top: 28px; }
.table-scroll .table { min-width: 600px; }
.table .placeholder { color: #bbb; font-style: italic; }

/* ── 工艺流程图（静态展示） ── */
.flow-chart {
  position: relative;
  isolation: isolate;
  margin-top: 36px;
  padding: 28px;
  border: 1px solid rgba(174, 206, 226, 0.68);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(112deg, rgba(219, 241, 250, 0.62), transparent 35%),
    linear-gradient(248deg, rgba(246, 248, 242, 0.76), transparent 38%),
    linear-gradient(135deg, #f8fbfd 0%, #eef4f7 48%, #ffffff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    0 20px 54px rgba(12, 29, 45, 0.12);
  overflow: hidden;
}
.flow-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(25, 72, 105, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 72, 105, 0.04) 1px, transparent 1px),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(0,113,178,0.045) 42px 43px, transparent 43px 92px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.flow-chart::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 76px;
  height: 1px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(224, 124, 32, 0.42), rgba(0, 113, 178, 0.46), transparent);
  box-shadow: 0 0 18px rgba(78, 172, 230, 0.14);
  opacity: 0.62;
}
.flow-fluid-canvas {
  display: none;
}
.flow-chart h4,
.fc-nodes,
.fc-loop {
  position: relative;
  z-index: 2;
}
.flow-chart h4 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(61, 88, 108, 0.88);
}
.flow-chart h4::after {
  content: "";
  width: 86px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,113,178,0.42), rgba(224,124,32,0.50), transparent);
  box-shadow: 0 0 12px rgba(53,199,216,0.12);
}
.fc-nodes {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  padding: 8px 2px 22px;
  counter-reset: flow-step;
}
.fc-node {
  counter-increment: flow-step;
  position: relative;
  width: auto;
  min-width: 104px;
  min-height: 78px;
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 14px;
  border: 1px solid rgba(185, 222, 247, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(235, 246, 251, 0.62)),
    rgba(255, 255, 255, 0.26);
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 12px 26px rgba(4, 16, 28, 0.22);
  transform: translateZ(0);
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.24s, box-shadow 0.24s, background 0.24s;
}
.fc-node::before {
  content: counter(flow-step, decimal-leading-zero);
  position: absolute;
  left: 10px;
  top: 9px;
  width: 29px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,113,178,0.95), rgba(53,199,216,0.78));
  color: var(--white);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 0 12px rgba(0, 113, 178, 0.35);
}
.fc-node:hover,
.fc-node:focus-visible {
  z-index: 4;
  transform: translateY(-8px) scale(1.085);
  border-color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 248, 255, 0.72)),
    rgba(255, 255, 255, 0.40);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 20px 42px rgba(4, 16, 28, 0.32),
    0 0 24px rgba(91, 184, 245, 0.20);
  outline: none;
}
.fc-node .nl {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--navy);
}
.fc-node.hi {
  border-color: rgba(224, 124, 32, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 247, 238, 0.90), rgba(255, 231, 205, 0.66)),
    rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.88),
    0 14px 30px rgba(4,16,28,0.26),
    0 0 0 1px rgba(224,124,32,0.08),
    0 0 34px rgba(224,124,32,0.16);
}
.fc-node.hi::before {
  background: linear-gradient(135deg, var(--amber), var(--warm));
  box-shadow: 0 0 14px rgba(224, 124, 32, 0.56);
}
.fc-node.go {
  border-color: rgba(82, 184, 124, 0.58);
}
.fc-node.go .nl { color: #00366f; }
.fc-node.go::before {
  background: linear-gradient(135deg, #005aa9, var(--lime));
  box-shadow: 0 0 14px rgba(34, 160, 97, 0.46);
}
.fc-node.sp {
  border-color: rgba(104, 190, 248, 0.58);
}
.fc-node.sp .nl { color: var(--blue-deep); }
.fc-node.sp::before {
  background: linear-gradient(135deg, #4ea4dc, var(--cyan));
}
.fc-arr {
  position: relative;
  flex: 0 1 clamp(22px, 3vw, 40px);
  display: flex;
  align-items: center;
  align-self: center;
  min-width: 18px;
  height: 30px;
}
.fc-arr::before {
  content: "";
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(0, 113, 178, 0.10), rgba(0, 113, 178, 0.48), rgba(224, 124, 32, 0.52), rgba(0, 113, 178, 0.10));
  box-shadow: 0 0 10px rgba(91, 184, 245, 0.12);
}
.fc-arr::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: -2px;
  border-top: 2px solid rgba(0, 113, 178, 0.58);
  border-right: 2px solid rgba(0, 113, 178, 0.58);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 7px rgba(91, 184, 245, 0.42));
}
/* 返回环路 */
.fc-loop {
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-width: 100%;
  padding: 0 18px 2px;
}
.fc-lv, .fc-rv {
  width: 1px;
  height: 18px;
  border-left: 1px dashed rgba(0, 113, 178, 0.26);
}
.fc-lh {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px dashed rgba(0, 113, 178, 0.26);
}
.fc-loop-txt {
  max-width: min(720px, calc(100vw - 72px));
  padding: 4px 10px;
  border: 1px solid rgba(0, 113, 178, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .05em;
  color: rgba(46, 73, 92, 0.80);
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

/* ══════════════════════════════
   RESPONSIVE — tablet
══════════════════════════════ */

@media (max-width: 1100px) {
  :root { --section-pad: 80px; }

  .menu-button { display: grid; }

  .nav-mega {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    background: rgba(4, 13, 24, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 0 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    height: auto;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.86);
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .nav-links a::after {
    left: 24px;
    right: auto;
    bottom: 9px;
    width: 34px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-bottom: none;
    border-left-color: var(--blue);
  }

  .brand {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  .nav-actions .btn-primary { display: none; }

  .hero::before,
  .hero-screen-glow,
  .hero-scanline {
    left: 38%;
    right: 18px;
  }

  .hero-arc {
    left: 40%;
    right: 34px;
  }

  .hero-horizon {
    right: 56px;
    width: 52vw;
  }

  .industry-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
  }

  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .footer-earth-image {
    object-position: 78% 100%;
    opacity: 0.64;
  }

  .footer-earth-label {
    display: none;
  }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-stat-grid { grid-template-columns: repeat(4, 1fr); }

  .cases, .split { grid-template-columns: 1fr; }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-aside {
    position: static;
  }

  .principle-steps { grid-template-columns: 1fr 1fr; }
  .principle-step { border-bottom: 1px solid var(--line); }
  .principle-step:nth-child(even) { border-right: 0; }
  .config-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .application-groups { grid-template-columns: 1fr; }

  body.home-hero-dome #products .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-hero-dome #products .home-product-grid .product-card {
    grid-template-rows: minmax(240px, auto) auto;
    min-height: 0;
  }

  body.home-hero-dome #products .home-product-grid .product-media {
    min-height: 240px;
  }
}

/* ══════════════════════════════
   RESPONSIVE — mobile
══════════════════════════════ */

@media (max-width: 680px) {
  :root { --section-pad: 64px; }

  .nav { width: min(100% - 24px, var(--max)); }

  .wrap {
    width: min(calc(100vw - 40px), 340px);
    max-width: calc(100vw - 40px);
    min-width: 0;
  }

  .hero {
    min-height: 700px;
    align-items: flex-start;
  }

  .hero::before {
    top: 86px;
    right: 12px;
    bottom: auto;
    left: 12px;
    height: 282px;
    opacity: 0.78;
  }

  .hero::after {
    background:
      radial-gradient(ellipse at 52% 26%, rgba(111, 185, 255, 0.16), transparent 40%),
      linear-gradient(180deg, rgba(5, 7, 8, 0.28) 0%, rgba(5, 7, 8, 0.74) 44%, rgba(5, 7, 8, 0.98) 76%),
      linear-gradient(100deg, rgba(5, 7, 8, 0.62), rgba(5, 7, 8, 0.26));
  }

  .hero-cosmos {
    transform: none;
  }

  .hero-screen-glow,
  .hero-scanline {
    top: 94px;
    right: 18px;
    bottom: auto;
    left: 18px;
    height: 268px;
  }

  .hero-arc {
    top: 142px;
    right: 22px;
    left: 22px;
    height: 178px;
  }

  .hero-arc-secondary {
    top: 162px;
    height: 142px;
  }

  .hero-horizon {
    top: 292px;
    right: auto;
    bottom: auto;
    left: 15%;
    width: 70%;
  }

  .hero-silhouette {
    top: 252px;
    right: auto;
    bottom: auto;
    left: calc(50% - 10px);
    height: 62px;
    width: 17px;
  }

  .hero-silhouette::before {
    top: -9px;
    width: 18px;
    height: 18px;
  }

  .hero-inner {
    width: min(calc(100vw - 24px), 360px);
    max-width: min(calc(100vw - 24px), 360px);
    padding: 330px 0 48px;
    margin-left: 12px;
  }

  .hero-eyebrow {
    max-width: 320px;
    gap: 8px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.08em;
    flex-wrap: wrap;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.14;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    max-width: 344px;
    font-size: 14px;
    line-height: 1.68;
    overflow-wrap: anywhere;
  }

  .page-hero {
    padding: 128px 0 52px;
  }

  .page-hero .wrap {
    width: min(calc(100vw - 40px), 340px);
    max-width: min(calc(100vw - 40px), 340px);
    min-width: 0;
    margin-left: 20px;
    margin-right: auto;
  }

  .page-hero h1 {
    width: 100%;
    max-width: 320px;
    max-inline-size: 320px;
    font-size: clamp(23px, 6.4vw, 28px);
    line-height: 1.2;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page-hero p {
    width: 100%;
    max-width: 330px;
    max-inline-size: 330px;
    font-size: 14px;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-process {
    top: 16%;
    right: auto;
    left: 18%;
    width: 112%;
    opacity: 0.16;
  }

  .scroll-panorama {
    min-height: 330px;
  }

  .scroll-panorama::before {
    background-size: auto 122%;
  }

  .scroll-panorama-inner {
    width: min(100% - 28px, var(--max));
    padding: 48px 0;
  }

  .panorama-tags {
    gap: 8px;
  }

  .about-photos {
    grid-template-columns: 1fr;
  }
  .about-photos img {
    height: 220px;
  }

  .industry-grid { grid-template-columns: 1fr; }
  .industry-tile { min-height: 200px; }

  .grid.three,
  .grid.four,
  .process,
  .about-stat-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner { gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }

  .section-head { flex-direction: column; align-items: flex-start; }

  .form-grid { grid-template-columns: 1fr; }
  .wrap.split {
    width: min(calc(100vw - 40px), 340px);
    max-width: min(calc(100vw - 40px), 340px);
    margin-left: 20px;
    margin-right: auto;
  }
  .split .section-title,
  .split .section-title p,
  .split .inquiry {
    max-width: 100%;
    min-width: 0;
  }
  .split .section-title p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .split .inquiry {
    padding: 26px 20px;
  }
  .inquiry-only .inquiry { padding: 28px; }
  .contact-inquiry-section {
    padding-top: 58px;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-card a,
  .contact-card div {
    grid-template-columns: 46px 1fr;
  }

  .particle-details-head,
  .particle-details summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .submit-field .btn {
    width: 100%;
  }

  .particle-size-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .config-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .config-item {
    width: 100%;
    max-width: 100%;
  }

  .config-item h3,
  .config-item h4,
  .config-item p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .table-scroll { margin-left: -4px; margin-right: -4px; padding-bottom: 6px; }
  .table-scroll .table { min-width: 520px; }
  .table-scroll .table:has(thead th:nth-child(2):last-child) { min-width: 100%; }
  .table-scroll .table th,
  .table-scroll .table td {
    padding: 9px 10px;
    font-size: 12.5px;
    line-height: 1.55;
  }

  .flow-chart {
    margin-top: 28px;
    padding: 18px 16px 16px;
    overflow: hidden;
  }

  .flow-chart::after {
    left: 50%;
    right: auto;
    top: 86px;
    bottom: 74px;
    width: 1px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(224, 124, 32, 0.62), rgba(104, 190, 248, 0.66), transparent);
  }

  .flow-chart h4 {
    max-width: 300px;
    line-height: 1.45;
    white-space: normal;
  }

  .fc-nodes {
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 6px 0 10px;
  }

  .fc-node {
    width: min(100%, 286px);
    min-height: 58px;
    margin: 0 auto;
    padding: 24px 14px 13px;
  }

  .fc-node::before {
    left: 9px;
    top: 8px;
    width: 27px;
    height: 16px;
    font-size: 8.5px;
  }

  .fc-node:hover,
  .fc-node:focus-visible {
    transform: translateY(-3px) scale(1.035);
  }

  .fc-node .nl {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .fc-arr {
    flex: 0 0 25px;
    width: 26px;
    min-width: 0;
    height: 25px;
    margin: -1px auto;
    flex-direction: column;
    justify-content: center;
  }

  .fc-arr::before {
    flex: 0 0 100%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 113, 178, 0.10), rgba(0, 113, 178, 0.46), rgba(224, 124, 32, 0.52), rgba(0, 113, 178, 0.10));
  }

  .fc-arr::after {
    margin-top: -4px;
    margin-left: 0;
    transform: rotate(135deg);
  }

  .fc-loop {
    width: 100%;
    min-width: 0;
    padding: 4px 0 0;
  }

  .fc-lv,
  .fc-rv {
    display: none;
  }

  .fc-lh {
    padding-top: 8px;
    border-top-color: rgba(0, 113, 178, 0.22);
  }

  .fc-loop-txt {
    max-width: 280px;
    font-size: 9px;
  }

  .cta-band {
    padding: 48px 0;
    text-align: left;
  }

  .cta-band h2 {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.25;
  }

  .cta-band p {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.75;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .mobile-bar {
    position: sticky;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.97), rgba(244,247,250,0.96));
    border-top: 1px solid rgba(0,113,178,0.16);
    box-shadow: 0 -8px 24px rgba(12,29,45,0.08);
  }

  .mobile-bar a {
    min-height: 52px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue);
    border-right: 1px solid rgba(0,113,178,0.10);
    box-shadow: inset 0 2px 0 transparent;
  }

  .mobile-bar a:last-child {
    border-right: 0;
  }

  .mobile-bar a:hover {
    color: var(--blue-dark);
    background: rgba(0,113,178,0.06);
    box-shadow: inset 0 2px 0 var(--amber);
  }

  .mobile-bar a {
    position: relative;
    overflow: hidden;
  }

  .mobile-bar a::after {
    content: "";
    position: absolute;
    left: 24%;
    right: 24%;
    bottom: 8px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--amber), var(--blue));
    transform: scaleX(0);
    transition: transform 0.22s ease;
  }

  .mobile-bar a:hover::after {
    transform: scaleX(1);
  }

  .online-consult {
    left: 20px;
    right: auto;
    bottom: 64px;
  }

  .online-consult-panel {
    display: none;
  }

  .online-consult-main {
    width: 46px;
    min-height: 46px;
    justify-content: center;
    gap: 0;
    padding: 0;
    font-size: 0;
  }

  .online-consult-main::before {
    width: 10px;
    height: 10px;
  }

  .online-consult-inline {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .online-consult-inline a {
    width: 100%;
  }

  body.home-hero-dome #products .home-product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.home-hero-dome #products .home-product-grid .product-card {
    grid-template-rows: minmax(220px, auto) auto;
    min-height: 0;
    padding: 0;
  }

  body.home-hero-dome #products .home-product-grid .product-media {
    min-height: 220px;
    height: auto;
  }

  body.home-hero-dome #products .home-product-grid .product-media.photo-media::before {
    inset: 12px 12px 20px;
  }

  body.home-hero-dome #products .home-product-grid .card-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "desc"
      "link";
    align-content: start;
    align-items: start;
    margin: 0;
    padding: 16px;
  }

  body.home-hero-dome #products .home-product-grid .card-link {
    justify-self: start;
  }

  .footer-bottom-inner { flex-direction: column; height: auto; padding: 16px 0; gap: 8px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 440px) {
  .page-hero h1 {
    font-size: clamp(23px, 6.4vw, 28px);
    line-height: 1.22;
  }

  .page-hero .eyebrow {
    font-size: 11px;
  }

  .grid.three,
  .grid.four,
  .about-stat-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .principle-steps,
  .config-grid { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer { padding: 40px 0 0; }
  .footer-inner { padding-bottom: 32px; }

  .footer-inner > div:first-child:has(.footer-contact) .footer-contact {
    margin-top: 0;
  }

  .footer-inner > div:first-child:has(h3):has(.footer-contact) .footer-contact {
    grid-row: 4;
  }

  .footer-inner > div:first-child:has(h3) > h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .footer-inner > div:first-child:has(h3) > p {
    margin-bottom: 8px;
  }

  .footer-col h4 {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 9px;
  }

  .footer-earth-image {
    object-position: 82% 100%;
    opacity: 0.5;
  }

  .particle-size-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inquiry-only .inquiry { padding: 22px 18px; }
  .scroll-panorama h2 { font-size: 25px; }
  .scroll-panorama-inner p { font-size: 11px; }
  .table-scroll .table th,
  .table-scroll .table td {
    padding: 8px 9px;
    font-size: 12px;
  }
}

/* ══════════════════════════════
   REDUCED MOTION
══════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::before,
  #hero-canvas,
  .hero-flow span,
  .hero-screen-glow,
  .hero-arc,
  .hero-horizon,
  .hero-scanline,
  .footer::before,
  .flow-chart::after,
  .fc-arr::before {
    animation: none;
  }
  .hero-cosmos { transform: none; transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn,
  .nav-links a,
  .product-card,
  .product-media.photo-media::before,
  .resource-card,
  .application-card,
  .feature-card,
  .case-card,
  .about-photos img,
  .online-consult-main,
  .online-consult-panel,
  .online-consult-inline a,
  .fc-node,
  .footer-col a,
  .mobile-bar a {
    transition: none;
  }
  body.home-hero-dome #products .product-card:hover .product-media.photo-media::before {
    animation: none;
    transform: scale(1.035);
  }
}

/* Homepage hero-only full screen background */
body.home-hero-dome .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 15, 0.66), rgba(3, 8, 15, 0.20) 72%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

body.home-hero-dome .site-header::after {
  background: linear-gradient(90deg, transparent, rgba(115, 187, 255, 0.34), rgba(224, 124, 32, 0.28), transparent);
}

body.home-hero-dome .nav {
  width: min(100% - 40px, var(--max));
}

body.home-hero-dome .brand {
  border-right-color: rgba(255, 255, 255, 0.18);
}

body.home-hero-dome .brand-logo {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

body.home-hero-dome .nav-links a {
  color: rgba(255, 255, 255, 0.80);
}

body.home-hero-dome .nav-links a:hover,
body.home-hero-dome .nav-links a.active {
  color: #ffffff;
  border-bottom-color: rgba(115, 187, 255, 0.72);
}

body.home-hero-dome .nav-links a:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.07));
}

body.home-hero-dome .language {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.20);
}

body.home-hero-dome .nav-actions .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(224,124,32,0.95), rgba(245,164,79,0.90));
  border-color: rgba(255, 199, 127, 0.55);
  box-shadow: 0 12px 34px rgba(224,124,32,0.22);
}

body.home-hero-dome .hero {
  min-height: 100vh;
  align-items: center;
  background: #030811;
}

body.home-hero-dome .hero::before {
  inset: 0;
  z-index: 0;
  border: 0;
  border-radius: 0;
  background:
    url("../images/hero-ai-dome-background-20260605-no-person.webp") center center / cover no-repeat;
  box-shadow: none;
  filter: saturate(1.02) contrast(1.03);
  transform: none;
  animation: none;
}

body.home-hero-dome .hero-silhouette {
  display: none;
}

body.home-hero-dome .hero::after {
  background:
    radial-gradient(circle at 54% 65%, rgba(224,124,32,0.16), transparent 28%),
    linear-gradient(90deg, rgba(2, 6, 12, 0.82) 0%, rgba(2, 6, 12, 0.62) 34%, rgba(2, 6, 12, 0.20) 62%, rgba(2, 6, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(2, 6, 12, 0.60) 0%, rgba(2, 6, 12, 0.10) 28%, rgba(2, 6, 12, 0.70) 100%);
}

body.home-hero-dome #hero-canvas,
body.home-hero-dome .hero-flow {
  display: none;
}

body.home-hero-dome .hero-cosmos,
body.home-hero-dome .hero-motion {
  display: block;
  z-index: 2;
  transform: none;
  transition: none;
  mix-blend-mode: normal;
  opacity: 1;
}

body.home-hero-dome .hero-cosmos > span {
  display: none;
}

body.home-hero-dome .hero-cosmos::before,
body.home-hero-dome .hero-motion::before {
  content: none;
  display: none;
}

body.home-hero-dome .hero-cosmos::after,
body.home-hero-dome .hero-motion::after {
  content: none;
  display: none;
}

body.home-hero-dome .hero-inner {
  padding: 150px 0 84px;
}

@media (max-width: 1100px) {
  body.home-hero-dome .nav-links {
    top: 76px;
    background: rgba(4, 13, 24, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  body.home-hero-dome .nav-links a {
    color: rgba(255, 255, 255, 0.86);
  }
}

@media (max-width: 680px) {
  body.home-hero-dome .nav {
    width: min(100% - 24px, var(--max));
  }

  body.home-hero-dome .hero {
    min-height: 100vh;
  }

  body.home-hero-dome .hero::before {
    inset: 0;
    height: auto;
    opacity: 1;
    background-position: 54% center;
  }

  body.home-hero-dome .hero-cosmos::before,
  body.home-hero-dome .hero-motion::before {
    inset: 0;
    width: auto;
    height: auto;
    right: auto;
    top: auto;
    background-position: 54% center;
    -webkit-mask-image: radial-gradient(ellipse at 66% 62%, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.66) 36%, rgba(0,0,0,0.18) 56%, transparent 74%);
    mask-image: radial-gradient(ellipse at 66% 62%, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.66) 36%, rgba(0,0,0,0.18) 56%, transparent 74%);
  }

  body.home-hero-dome .hero-inner {
    width: min(calc(100vw - 40px), 360px);
    max-width: min(calc(100vw - 40px), 360px);
    margin-left: 20px;
    padding: 150px 0 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-hero-dome .hero-cosmos::before,
  body.home-hero-dome .hero-motion::before {
    animation: none;
  }
}

/* Product detail B: token-grid single product page */
body.product-detail-b {
  --pd-primary: #006fa8;
  --pd-primary-dark: #0d4f77;
  --pd-accent: #e07c20;
  --pd-ink: #162331;
  --pd-muted: #5f6f7c;
  --pd-soft: #f5f8fa;
  --pd-panel: #ffffff;
  --pd-line: rgba(15, 70, 104, 0.14);
  --pd-radius: 10px;
  --pd-shadow: 0 12px 32px rgba(15, 42, 62, 0.08);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fa 46%, #ffffff 100%);
  overflow-x: hidden;
}

.pd-page {
  color: var(--pd-ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 113, 178, 0.08), transparent 28%),
    radial-gradient(circle at 92% 24%, rgba(224, 124, 32, 0.06), transparent 26%);
}

.pd-wrap {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
}

.pd-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--pd-line);
  background:
    linear-gradient(135deg, rgba(245, 248, 250, 0.96), rgba(255, 255, 255, 0.98));
}

.pd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.pd-hero-copy,
.pd-product-panel,
.pd-spec-card,
.pd-quote-card,
.pd-data-card {
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  background: var(--pd-panel);
  box-shadow: var(--pd-shadow);
}

.pd-hero-copy {
  min-height: 432px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pd-kicker,
.pd-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pd-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 18px;
}

.pd-kicker::before,
.pd-section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--pd-accent), var(--pd-primary));
}

.pd-hero h1 {
  margin-top: 16px;
  max-width: 520px;
  color: var(--pd-ink);
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0;
}

.pd-lead {
  margin-top: 16px;
  max-width: 560px;
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 22px;
}

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

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.pd-btn-primary {
  color: #ffffff;
  border-color: rgba(0, 111, 168, 0.88);
  background: linear-gradient(135deg, #0086c8, #006fa8 56%, #0d4f77);
  box-shadow: 0 10px 22px rgba(0, 111, 168, 0.18);
}

.pd-btn-secondary {
  color: var(--pd-primary-dark);
  border-color: rgba(13, 79, 119, 0.22);
  background: rgba(255, 255, 255, 0.76);
}

.pd-btn-secondary-light {
  color: var(--pd-primary-dark);
  border-color: rgba(13, 79, 119, 0.18);
  background: #f5f9fc;
}

.pd-note {
  margin-top: 24px;
  padding: 12px 16px;
  border-left: 3px solid var(--pd-accent);
  border-radius: 8px;
  background: #f7fafc;
  color: var(--pd-muted);
  font-size: 12px;
  line-height: 18px;
}

.pd-product-panel {
  min-height: 432px;
  padding: 24px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,251,0.98));
}

.pd-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--pd-muted);
  font-size: 12px;
  line-height: 18px;
}

.pd-panel-top strong {
  color: var(--pd-ink);
  font-size: 14px;
  line-height: 22px;
}

.pd-equipment-stage {
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(15, 70, 104, 0.10);
  border-radius: var(--pd-radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 90%, rgba(22, 35, 49, 0.10), transparent 34%),
    linear-gradient(180deg, #fbfcfd 0%, #eef3f6 100%);
}

.pd-equipment-stage::before {
  content: "";
  position: absolute;
  inset: 8px 4px 16px;
  background: url("../images/generated-equipment/jet-mill-ai-clean-showcase-fan-removed-ai-20260606-card.webp") center 54% / cover no-repeat;
  filter: saturate(0.98) contrast(1.03) drop-shadow(0 18px 22px rgba(12, 29, 45, 0.18));
}

.pd-equipment-stage::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 111, 168, 0.32), rgba(224, 124, 32, 0.32), transparent);
}

.pd-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pd-metric-row div,
.pd-spec-card dl div {
  border: 1px solid rgba(15, 70, 104, 0.10);
  border-radius: 8px;
  background: #ffffff;
}

.pd-metric-row div {
  padding: 12px;
}

.pd-metric-row span,
.pd-spec-card dt {
  display: block;
  color: var(--pd-muted);
  font-size: 12px;
  line-height: 18px;
}

.pd-metric-row strong,
.pd-spec-card dd {
  display: block;
  margin-top: 4px;
  color: var(--pd-ink);
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
}

.pd-section {
  padding: 64px 0;
}

.pd-section-soft {
  border-block: 1px solid var(--pd-line);
  background:
    linear-gradient(135deg, rgba(245,248,250,0.92), rgba(255,255,255,0.98));
}

.pd-section-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.pd-section-head h2 {
  margin-top: 12px;
  color: var(--pd-ink);
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
}

.pd-section-head p {
  margin-top: 12px;
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 22px;
}

.pd-card-grid {
  display: grid;
  gap: 16px;
}

.pd-card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.pd-card,
.pd-check-list div,
.pd-app-grid article,
.pd-process-step,
.pd-faq details {
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 42, 62, 0.05);
}

.pd-card {
  min-height: 168px;
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pd-card:hover,
.pd-app-grid article:hover,
.pd-process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 111, 168, 0.26);
  box-shadow: 0 14px 30px rgba(15, 42, 62, 0.08);
}

.pd-card-tag,
.pd-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pd-primary), #36b5d4);
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}

.pd-card h3,
.pd-app-grid h3,
.pd-spec-card h3,
.pd-quote-card h3 {
  margin-top: 16px;
  color: var(--pd-ink);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}

.pd-card p,
.pd-app-grid p,
.pd-quote-card p,
.pd-process-step p {
  margin-top: 8px;
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 22px;
}

.pd-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.pd-two-col-wide {
  grid-template-columns: minmax(0, 1fr) 336px;
}

.pd-check-list {
  display: grid;
  gap: 12px;
}

.pd-check-list div {
  padding: 16px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
}

.pd-check-list strong {
  color: var(--pd-ink);
  font-size: 14px;
  line-height: 22px;
}

.pd-check-list span {
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 22px;
}

.pd-spec-card,
.pd-quote-card,
.pd-data-card {
  padding: 24px;
}

.pd-spec-card h3 {
  margin-top: 0;
}

.pd-spec-card dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.pd-spec-card dl div {
  padding: 12px;
}

.pd-spec-card dt,
.pd-spec-card dd {
  margin: 0;
}

.pd-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pd-process-step {
  position: relative;
  min-height: 176px;
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pd-process-step::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -14px;
  width: 12px;
  height: 1px;
  background: rgba(0, 111, 168, 0.32);
}

.pd-process-step:last-child::after {
  content: none;
}

.pd-process-step strong {
  display: block;
  margin-top: 16px;
  color: var(--pd-ink);
  font-size: 16px;
  line-height: 24px;
}

.pd-process-step.is-active {
  border-color: rgba(224, 124, 32, 0.42);
  background: linear-gradient(180deg, #fffaf4, #ffffff);
}

.pd-process-step.is-active span {
  background: linear-gradient(135deg, var(--pd-accent), #f1a24d);
}

.pd-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  background: #ffffff;
  box-shadow: var(--pd-shadow);
}

.pd-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pd-table th,
.pd-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 70, 104, 0.10);
  text-align: left;
  font-size: 14px;
  line-height: 22px;
}

.pd-table th {
  color: var(--pd-ink);
  background: #f4f8fb;
  font-weight: 800;
}

.pd-table td {
  color: var(--pd-muted);
}

.pd-table tr:last-child td {
  border-bottom: 0;
}

.pd-app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pd-app-grid article {
  min-height: 136px;
  padding: 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pd-app-grid h3 {
  margin-top: 0;
}

.pd-quote-card {
  position: sticky;
  top: 100px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,249,252,0.98));
}

.pd-quote-card span {
  color: var(--pd-primary);
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.pd-quote-card .pd-btn {
  margin-top: 20px;
  width: 100%;
}

.pd-data-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 28px;
}

.pd-data-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pd-faq {
  display: grid;
  gap: 12px;
}

.pd-faq details {
  padding: 0 20px;
}

.pd-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  color: var(--pd-ink);
  font-size: 15px;
  line-height: 22px;
  font-weight: 800;
  list-style: none;
}

.pd-faq summary::-webkit-details-marker {
  display: none;
}

.pd-faq summary::after {
  content: "+";
  color: var(--pd-primary);
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
}

.pd-faq details[open] summary::after {
  transform: rotate(45deg);
}

.pd-faq p {
  padding: 0 0 18px;
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 1100px) {
  .pd-hero-grid,
  .pd-two-col,
  .pd-two-col-wide {
    grid-template-columns: 1fr;
  }

  .pd-card-grid-4,
  .pd-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-quote-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .pd-wrap {
    width: min(100% - 32px, 420px);
  }

  .pd-hero {
    padding: 40px 0;
  }

  .pd-hero-copy,
  .pd-product-panel,
  .pd-spec-card,
  .pd-quote-card,
  .pd-data-card {
    padding: 20px;
  }

  .pd-hero-copy {
    min-height: auto;
  }

  .pd-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .pd-hero-actions,
  .pd-data-actions {
    flex-direction: column;
  }

  .pd-btn {
    width: 100%;
  }

  .pd-product-panel {
    min-height: auto;
  }

  .pd-equipment-stage {
    min-height: 220px;
  }

  .pd-metric-row,
  .pd-card-grid-4,
  .pd-process,
  .pd-app-grid {
    grid-template-columns: 1fr;
  }

  .pd-section {
    padding: 48px 0;
  }

  .pd-section-head h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .pd-card,
  .pd-process-step,
  .pd-app-grid article {
    padding: 20px;
    min-height: auto;
  }

  .pd-check-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pd-process-step::after {
    content: none;
  }

  .pd-table {
    min-width: 680px;
  }
}

/* Product detail B2: compact concept-layout override */
body.product-detail-b .pd-page {
  background:
    linear-gradient(rgba(214, 224, 233, 0.58) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 224, 233, 0.58) 1px, transparent 1px),
    linear-gradient(180deg, #f7f9fb 0%, #eef3f7 100%);
  background-size: 64px 64px;
}

body.product-detail-b .pd-top-hero {
  padding: 84px 0 72px;
  background:
    linear-gradient(110deg, rgba(53, 199, 216, 0.08), transparent 34%),
    linear-gradient(100deg, rgba(5, 20, 34, 0.94), rgba(8, 24, 39, 0.68)),
    url("../images/hero-powder-system.webp") center 48% / cover no-repeat;
}

body.product-detail-b .pd-top-hero .wrap {
  width: min(100% - 48px, 1200px);
}

body.product-detail-b .pd-top-hero .hero-actions {
  margin-top: 28px;
}

body.product-detail-b .pd-hero {
  padding: 32px 0 24px;
  border-bottom: 0;
  background: transparent;
}

.pd-showcase-card {
  display: grid;
  grid-template-columns: 472px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(15, 42, 62, 0.08);
}

body.product-detail-b .pd-hero-copy {
  min-width: 0;
  min-height: auto;
  padding: 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  justify-content: flex-start;
}

body.product-detail-b .pd-kicker {
  position: relative;
  color: var(--pd-accent);
}

body.product-detail-b .pd-kicker::before {
  content: none;
}

body.product-detail-b .pd-kicker::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-left: 0;
  background: var(--pd-accent);
  position: absolute;
  transform: translateY(22px);
}

body.product-detail-b .pd-hero h1,
body.product-detail-b .pd-hero h2 {
  margin-top: 48px;
  margin-bottom: 0;
  max-width: 520px;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0;
  color: var(--pd-ink);
}

body.product-detail-b .pd-lead {
  max-width: 440px;
  margin-top: 12px;
}

.pd-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.pd-chip-row span {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(15, 70, 104, 0.14);
  border-radius: var(--pd-radius);
  background: #f2f7fa;
  color: var(--pd-primary-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
}

.pd-mini-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.pd-mini-specs div {
  min-height: 96px;
  padding: 16px 24px;
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  background: #f8fafc;
}

.pd-mini-specs span,
.pd-mini-specs em {
  display: block;
  color: var(--pd-muted);
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
}

.pd-mini-specs strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--pd-ink);
  font-size: 16px;
  line-height: 24px;
}

body.product-detail-b .pd-hero-actions {
  margin-top: 16px;
}

body.product-detail-b .pd-product-panel {
  min-width: 0;
  max-width: 100%;
  min-height: auto;
  padding: 24px;
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  background: #f8fafc;
  box-shadow: none;
  gap: 16px;
}

body.product-detail-b .pd-principle-first {
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--pd-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 252, 0.92));
}

body.product-detail-b .pd-section-head-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 14px;
}

body.product-detail-b .pd-section-head-row .pd-section-label {
  color: var(--pd-accent);
}

body.product-detail-b .pd-section-head-row h2 {
  margin-top: 10px;
}

body.product-detail-b .pd-section-head-row p {
  max-width: 620px;
  margin-top: 0;
}

body.product-detail-b .pd-flow-chart {
  margin-top: 0;
  padding: 22px 24px 20px;
  border-color: rgba(15, 70, 104, 0.13);
  border-radius: var(--pd-radius);
  background:
    linear-gradient(112deg, rgba(219, 241, 250, 0.50), transparent 34%),
    linear-gradient(248deg, rgba(246, 248, 242, 0.58), transparent 38%),
    linear-gradient(135deg, rgba(248, 251, 253, 0.98), rgba(238, 244, 247, 0.94) 50%, rgba(255,255,255,0.98));
  box-shadow: 0 14px 34px rgba(15, 42, 62, 0.07), inset 0 1px 0 rgba(255,255,255,0.92);
}

body.product-detail-b .pd-flow-chart::after {
  top: 62px;
}

body.product-detail-b .pd-flow-chart h4,
body.product-detail-b .pd-flow-chart .fc-node .nl,
body.product-detail-b .pd-flow-chart .fc-node::before,
body.product-detail-b .pd-flow-chart .fc-loop-txt {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

body.product-detail-b .pd-flow-chart h4 {
  margin-bottom: 18px;
  color: rgba(50, 75, 94, 0.86);
}

body.product-detail-b .pd-flow-chart .fc-nodes {
  padding: 4px 0 18px;
}

body.product-detail-b .pd-flow-chart .fc-node {
  min-height: 68px;
  min-width: 96px;
  padding: 18px 12px 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 10px 22px rgba(4, 16, 28, 0.12);
}

body.product-detail-b .pd-flow-chart .fc-node:hover,
body.product-detail-b .pd-flow-chart .fc-node:focus-visible {
  transform: translateY(-4px) scale(1.03);
}

body.product-detail-b .pd-flow-chart .fc-node .nl {
  font-size: 13px;
  line-height: 1.45;
}

body.product-detail-b .pd-flow-chart .fc-arr {
  flex-basis: clamp(16px, 2.2vw, 30px);
}

body.product-detail-b .pd-flow-chart .fc-loop {
  padding: 0 22px;
}

body.product-detail-b .pd-flow-chart .fc-loop-txt {
  max-width: min(640px, calc(100vw - 72px));
  font-size: 11px;
  font-weight: 800;
  text-transform: none;
}

body.product-detail-b .pd-showcase-compact {
  padding: 22px 0 18px;
}

body.product-detail-b .pd-showcase-compact .pd-showcase-card {
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 20px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(15, 42, 62, 0.07);
}

body.product-detail-b .pd-showcase-compact .pd-hero-copy {
  padding: 0;
}

body.product-detail-b .pd-showcase-compact .pd-kicker::after {
  transform: translateY(18px);
}

body.product-detail-b .pd-showcase-compact .pd-hero h2,
body.product-detail-b .pd-showcase-compact h2 {
  margin-top: 34px;
  font-size: 28px;
  line-height: 36px;
}

body.product-detail-b .pd-showcase-compact .pd-lead {
  max-width: 520px;
  margin-top: 8px;
}

body.product-detail-b .pd-showcase-compact .pd-chip-row {
  margin-top: 18px;
}

body.product-detail-b .pd-showcase-compact .pd-chip-row span {
  height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

body.product-detail-b .pd-showcase-compact .pd-mini-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

body.product-detail-b .pd-showcase-compact .pd-mini-specs div {
  min-height: 74px;
  padding: 12px 14px;
}

body.product-detail-b .pd-showcase-compact .pd-mini-specs strong {
  margin: 4px 0 2px;
  font-size: 15px;
  line-height: 22px;
}

body.product-detail-b .pd-showcase-compact .pd-hero-actions {
  margin-top: 14px;
}

body.product-detail-b .pd-showcase-compact .pd-btn {
  min-width: 124px;
  height: 36px;
}

body.product-detail-b .pd-showcase-compact .pd-product-panel {
  padding: 18px;
  gap: 12px;
}

body.product-detail-b .pd-showcase-compact .pd-equipment-stage {
  min-height: 292px;
}

body.product-detail-b .pd-showcase-compact .pd-equipment-stage::before {
  inset: 26px 72px 36px;
}

body.product-detail-b .pd-showcase-compact .pd-process-chips {
  gap: 10px;
}

body.product-detail-b .pd-showcase-compact .pd-process-chips span {
  height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

body.product-detail-b .pd-showcase-compact .pd-process-chips em {
  margin-right: 12px;
}

body.product-detail-b .pd-equipment-stage {
  max-width: 100%;
  min-height: 360px;
  border-color: rgba(15, 70, 104, 0.10);
  background:
    linear-gradient(180deg, rgba(238, 243, 246, 0.94), rgba(246, 249, 251, 0.86));
}

body.product-detail-b .pd-equipment-stage::before {
  z-index: 1;
  inset: 34px 84px 44px;
  background: url("../images/generated-equipment/jet-mill-ai-clean-showcase-fan-removed-ai-20260606-card.webp") center 56% / contain no-repeat;
  filter: saturate(0.98) contrast(1.03) drop-shadow(0 18px 22px rgba(12, 29, 45, 0.18));
}

body.product-detail-b .pd-equipment-stage.pd-equipment-inert::before,
body.product-detail-b .pd-equipment-stage.pd-equipment-line::before {
  background: url("../images/generated-equipment/stainless-platform-processing-system-retouched-20260606-card.webp") center 52% / contain no-repeat;
}

body.product-detail-b .pd-equipment-stage.pd-equipment-classifier::before {
  background: url("../images/generated-equipment/classifier-system-stainless-20260606-card.webp") center 52% / contain no-repeat;
}

body.product-detail-b .pd-equipment-stage.pd-equipment-lab::before,
body.product-detail-b .pd-equipment-stage.pd-equipment-spiral::before {
  background: url("../images/generated-equipment/fluid-energy-jet-mill-main-stand-20260606-card.webp") center 54% / contain no-repeat;
}

body.product-detail-b .pd-equipment-stage::after {
  z-index: 2;
  left: 36px;
  right: 36px;
  bottom: 26px;
  background: linear-gradient(90deg, transparent, rgba(0, 111, 168, 0.28), rgba(224, 124, 32, 0.24), transparent);
}

/* Product detail catalogue mode: cleaner first scan, less visual noise. */
body.product-detail-b .pd-showcase-card {
  grid-template-columns: minmax(330px, 0.76fr) minmax(500px, 1.24fr);
  gap: 18px;
  padding: 18px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245,249,251,0.94));
}

body.product-detail-b .pd-hero-copy {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(15, 70, 104, 0.10);
  border-radius: var(--pd-radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,249,251,0.78));
}

body.product-detail-b .pd-kicker {
  font-size: 12px;
  line-height: 16px;
}

body.product-detail-b .pd-kicker::after {
  width: 32px;
  transform: translateY(18px);
}

body.product-detail-b .pd-hero h1,
body.product-detail-b .pd-hero h2 {
  max-width: none;
  margin-top: 36px;
  font-size: 28px;
  line-height: 34px;
}

body.product-detail-b .pd-lead {
  max-width: none;
  margin-top: 10px;
  font-size: 15px;
  line-height: 24px;
}

body.product-detail-b .pd-chip-row {
  gap: 6px;
  margin-top: 16px;
}

body.product-detail-b .pd-chip-row span {
  height: 30px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

body.product-detail-b .pd-mini-specs {
  gap: 8px;
  margin-top: 16px;
}

body.product-detail-b .pd-mini-specs div {
  min-height: 64px;
  padding: 10px 12px;
}

body.product-detail-b .pd-mini-specs span {
  font-size: 11px;
  line-height: 16px;
}

body.product-detail-b .pd-mini-specs strong {
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 20px;
}

body.product-detail-b .pd-mini-specs em {
  display: none;
}

body.product-detail-b .pd-hero-actions {
  margin-top: auto;
  padding-top: 14px;
}

body.product-detail-b .pd-hero-actions .pd-btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

body.product-detail-b .pd-product-panel {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(247,250,252,0.98), rgba(239,245,248,0.90));
}

body.product-detail-b .pd-panel-top {
  min-height: 30px;
}

body.product-detail-b .pd-equipment-stage {
  min-height: 386px;
}

body.product-detail-b .pd-equipment-stage::before {
  inset: 22px 56px 34px;
}

body.product-detail-b .pd-callout {
  display: none;
}

body.product-detail-b .pd-process-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body.product-detail-b .pd-process-chips span {
  justify-content: center;
  height: 32px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 18px;
}

body.product-detail-b .pd-process-chips em {
  margin-right: 6px;
}

body.product-detail-b .pd-info-section .pd-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 14px;
}

body.product-detail-b .pd-info-section .pd-section-head h2 {
  margin: 0;
  font-size: 26px;
  line-height: 32px;
}

body.product-detail-b .pd-info-section .pd-section-head p {
  max-width: 640px;
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}

body.product-detail-b .pd-card-grid-4 {
  gap: 10px;
}

body.product-detail-b .pd-card {
  min-height: 112px;
  padding: 16px;
}

body.product-detail-b .pd-card h3 {
  font-size: 15px;
  line-height: 22px;
}

body.product-detail-b .pd-card p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 21px;
}

body.product-detail-b .pd-card small {
  display: none;
}

.pd-callout {
  position: absolute;
  z-index: 4;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.11s ease-out, filter 0.11s ease-out;
}

.pd-callout::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 24px;
}

.pd-callout:hover,
.pd-callout:focus-visible {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 20px rgba(0, 111, 168, 0.12));
  transition-duration: 0.17s;
  outline: none;
}

.pd-callout-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(0, 111, 168, 0.26);
  border-radius: var(--pd-radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--pd-primary-dark);
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 42, 62, 0.06);
  white-space: nowrap;
}

.pd-callout-line {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 199, 216, 0.86), rgba(0, 111, 168, 0.12));
  transform-origin: left center;
}

.pd-callout-dot {
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(53, 199, 216, 0.14);
}

.pd-callout-wheel {
  left: 32px;
  top: 36px;
  width: 342px;
  height: 108px;
}

.pd-callout-wheel .pd-callout-label {
  left: 0;
  top: 0;
}

.pd-callout-wheel .pd-callout-line {
  left: 112px;
  top: 40px;
  width: 232px;
  transform: rotate(8deg);
}

.pd-callout-wheel .pd-callout-dot {
  right: 0;
  top: 58px;
}

.pd-callout-nozzle {
  right: 32px;
  top: 56px;
  width: 278px;
  height: 128px;
}

.pd-callout-nozzle .pd-callout-label {
  right: 0;
  top: 0;
}

.pd-callout-nozzle .pd-callout-line {
  right: 96px;
  top: 42px;
  width: 126px;
  transform: rotate(52deg);
}

.pd-callout-nozzle .pd-callout-dot {
  left: 46px;
  bottom: 22px;
}

.pd-callout-chamber {
  left: 36px;
  bottom: 52px;
  width: 352px;
  height: 78px;
}

.pd-callout-chamber .pd-callout-label {
  left: 0;
  bottom: 0;
}

.pd-callout-chamber .pd-callout-line {
  left: 112px;
  bottom: 30px;
  width: 240px;
  transform: rotate(-1deg);
}

.pd-callout-chamber .pd-callout-dot {
  right: 0;
  bottom: 26px;
}

.pd-callout-recycle {
  right: 30px;
  bottom: 50px;
  width: 300px;
  height: 88px;
}

.pd-callout-recycle .pd-callout-label {
  right: 0;
  bottom: 0;
}

.pd-callout-recycle .pd-callout-line {
  right: 112px;
  bottom: 30px;
  width: 188px;
  transform: rotate(-6deg);
}

.pd-callout-recycle .pd-callout-dot {
  left: 0;
  bottom: 40px;
}

.pd-process-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  min-width: 0;
}

.pd-process-chips span {
  min-width: 0;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--pd-radius);
  background: #082033;
  color: #e9f4f8;
  font-size: 14px;
  font-weight: 800;
}

.pd-process-chips em {
  margin-right: 24px;
  color: var(--cyan);
  font-size: 12px;
  font-style: normal;
}

body.product-detail-b .pd-info-section {
  padding: 16px 0 28px;
}

body.product-detail-b .pd-info-section .pd-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  margin-bottom: 16px;
}

body.product-detail-b .pd-info-section .pd-section-head h2 {
  margin-top: 0;
}

body.product-detail-b .pd-info-section .pd-section-head p {
  max-width: 560px;
  margin-top: 0;
}

body.product-detail-b .pd-detail-section {
  padding: 42px 0;
}

body.product-detail-b .pd-detail-section .section-title {
  max-width: 780px;
  margin-bottom: 18px;
}

body.product-detail-b .pd-detail-section .section-title h2 {
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: 0;
}

body.product-detail-b .pd-detail-section .section-title p:not(.eyebrow) {
  margin-top: 8px;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.75;
}

body.product-detail-b .pd-lean-grid {
  gap: 12px;
  margin-top: 18px;
}

body.product-detail-b .pd-lean-grid .config-item {
  padding: 18px 18px 16px;
  border-color: rgba(15, 70, 104, 0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(246,249,251,0.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 10px 24px rgba(15,42,62,0.05);
}

body.product-detail-b .pd-lean-grid .config-item h3 {
  font-size: 15px;
}

body.product-detail-b .pd-lean-grid .config-item p {
  font-size: 13px;
  line-height: 1.72;
}

body.product-detail-b .pd-lean-table {
  margin-top: 18px;
  border: 1px solid rgba(15, 70, 104, 0.10);
  border-radius: var(--pd-radius);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.84), 0 12px 28px rgba(15,42,62,0.06);
}

body.product-detail-b .pd-lean-table .table {
  margin: 0;
  min-width: 720px;
  border: 0;
  box-shadow: none;
}

body.product-detail-b .pd-lean-table .table th,
body.product-detail-b .pd-lean-table .table td {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
}

body.product-detail-b .pd-lean-table .table th {
  color: rgba(15, 70, 104, 0.92);
  background: rgba(236, 244, 248, 0.9);
}

body.product-detail-b .pd-spec-block {
  padding: 52px 0 58px;
  background:
    radial-gradient(circle at 92% 14%, rgba(0, 145, 182, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(246,250,252,0.96), rgba(250,252,253,0.98));
}

body.product-detail-b .pd-spec-shell {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(128, 154, 170, 0.22);
  border-radius: var(--pd-radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,248,250,0.76) 52%, rgba(238,244,247,0.68)),
    rgba(255,255,255,0.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.94),
    0 24px 58px rgba(15,42,62,0.08);
}

body.product-detail-b .pd-spec-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.66), transparent 32%),
    repeating-linear-gradient(135deg, rgba(0,93,143,0.026) 0 1px, transparent 1px 42px);
}

body.product-detail-b .pd-spec-shell > * {
  position: relative;
  z-index: 1;
}

body.product-detail-b .pd-spec-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(128, 154, 170, 0.20);
}

body.product-detail-b .pd-spec-head .section-title {
  margin-bottom: 0;
}

body.product-detail-b .pd-spec-note {
  justify-self: end;
  width: 100%;
  padding: 14px 16px;
  border-left: 2px solid rgba(232, 124, 32, 0.88);
  background: rgba(255,255,255,0.48);
}

body.product-detail-b .pd-spec-note span,
body.product-detail-b .pd-spec-note strong {
  display: block;
}

body.product-detail-b .pd-spec-note span {
  color: var(--pd-muted);
  font-size: 12px;
  line-height: 18px;
}

body.product-detail-b .pd-spec-note strong {
  margin-top: 4px;
  color: var(--pd-ink);
  font-size: 15px;
  line-height: 22px;
}

body.product-detail-b .pd-model-table {
  overflow: hidden;
  margin-top: 22px;
  border-color: rgba(0, 93, 143, 0.14);
  border-radius: 6px;
  background: rgba(255,255,255,0.58);
  box-shadow: none;
}

body.product-detail-b .pd-model-table .table {
  min-width: 640px;
}

body.product-detail-b .pd-model-table .table th,
body.product-detail-b .pd-model-table .table td {
  padding: 11px 14px;
}

body.product-detail-b .pd-model-table .table th {
  color: #fff;
  background: #075f8d;
  border-right-color: rgba(255,255,255,0.22);
}

body.product-detail-b .pd-model-table .table td {
  border-color: rgba(128, 160, 182, 0.24);
  background: rgba(255,255,255,0.38);
}

body.product-detail-b .pd-model-table .table tbody tr:nth-child(even) td {
  background: rgba(237, 243, 247, 0.76);
}

body.product-detail-b .pd-model-table .table tbody tr:hover td {
  background: rgba(226, 238, 246, 0.92);
}

body.product-detail-b .pd-model-table .table td:first-child {
  color: var(--pd-ink);
  font-weight: 700;
}

body.product-detail-b .pd-selection-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.78fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(128, 154, 170, 0.20);
}

body.product-detail-b .pd-selection-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

body.product-detail-b .pd-selection-copy .eyebrow {
  margin-bottom: 10px;
}

body.product-detail-b .pd-selection-copy h2 {
  margin: 0;
  color: var(--pd-ink);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
}

body.product-detail-b .pd-selection-copy p {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 1.78;
}

body.product-detail-b .pd-selection-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--pd-muted);
  font-size: 13px;
  line-height: 1.62;
}

body.product-detail-b .pd-selection-copy li {
  position: relative;
  min-width: 0;
  padding-left: 14px;
}

body.product-detail-b .pd-selection-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--pd-accent);
}

body.product-detail-b .pd-contact-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(128,154,170,0.24);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.80), rgba(244,248,250,0.68)),
    rgba(255,255,255,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
  backdrop-filter: blur(12px) saturate(1.04);
}

body.product-detail-b .pd-contact-card h3 {
  margin: 0;
  color: var(--pd-ink);
  font-size: 18px;
  line-height: 1.35;
}

body.product-detail-b .pd-contact-card p {
  margin: 10px 0 0;
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 1.7;
}

body.product-detail-b .pd-contact-card .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}

body.product-detail-b .pd-contact-card .btn + .btn {
  margin-top: 10px;
}

body.product-detail-b .pd-contact-card .pd-contact-phone {
  margin-top: 16px;
  font-size: 13px;
}

body.product-detail-b .pd-contact-card .pd-contact-phone a {
  color: var(--blue);
  font-weight: 700;
}

body.product-detail-b .pd-lean-faq {
  margin-top: 16px;
  border-top-color: rgba(15, 70, 104, 0.12);
}

body.product-detail-b .pd-lean-faq details {
  border-bottom-color: rgba(15, 70, 104, 0.12);
}

body.product-detail-b .pd-lean-faq summary {
  padding: 17px 42px 17px 0;
  font-size: 15px;
}

body.product-detail-b .pd-lean-faq details p {
  max-width: 920px;
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.78;
}

body.product-detail-b .pd-card {
  min-height: 116px;
  padding: 18px;
}

body.product-detail-b .pd-card h3 {
  margin-top: 0;
  font-size: 17px;
  line-height: 24px;
}

body.product-detail-b .pd-card p {
  max-width: none;
  margin-top: 10px;
  font-size: 13px;
  line-height: 20px;
}

body.product-detail-b .pd-card small {
  display: block;
  margin-top: 8px;
  color: var(--pd-muted);
  font-size: 12px;
  line-height: 18px;
}

body.product-detail-b .pd-card::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 12px;
  background: var(--pd-accent);
}

.pd-compact-cta {
  padding: 0 0 40px;
}

.pd-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius);
  background: rgba(238, 247, 251, 0.88);
}

.pd-cta-strip strong,
.pd-cta-strip span {
  display: block;
}

.pd-cta-strip strong {
  color: var(--pd-ink);
  font-size: 16px;
  line-height: 24px;
}

.pd-cta-strip span {
  margin-top: 4px;
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 1100px) {
  .pd-showcase-card {
    grid-template-columns: minmax(0, 1fr);
  }

  body.product-detail-b .pd-hero-copy {
    padding: 0;
  }

  .pd-card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  body.product-detail-b .pd-spec-head,
  body.product-detail-b .pd-selection-panel {
    grid-template-columns: 1fr;
  }

  body.product-detail-b .pd-spec-note {
    justify-self: stretch;
  }
}

@media (max-width: 680px) {
  body.product-detail-b .pd-page {
    background-size: 48px 48px;
  }

  body.product-detail-b .pd-top-hero {
    padding: 56px 0 48px;
  }

  body.product-detail-b .pd-top-hero .wrap {
    width: min(100% - 32px, 420px);
  }

  body.product-detail-b .pd-hero {
    padding: 24px 0 16px;
  }

  body.product-detail-b .pd-spec-block {
    padding: 36px 0 40px;
  }

  body.product-detail-b .pd-spec-shell {
    padding: 18px;
  }

  body.product-detail-b .pd-spec-head {
    gap: 16px;
    padding-bottom: 16px;
  }

  body.product-detail-b .pd-spec-note {
    padding: 12px 14px;
  }

  body.product-detail-b .pd-model-table {
    margin-top: 18px;
  }

  body.product-detail-b .pd-selection-panel {
    gap: 18px;
    margin-top: 20px;
    padding-top: 18px;
  }

  body.product-detail-b .pd-selection-copy h2 {
    font-size: 22px;
  }

  body.product-detail-b .pd-selection-copy ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.product-detail-b .pd-contact-card {
    padding: 18px;
  }

  .pd-showcase-card {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
  }

  body.product-detail-b .pd-hero h1,
  body.product-detail-b .pd-hero h2 {
    margin-top: 40px;
    font-size: 28px;
    line-height: 36px;
  }

  .pd-chip-row {
    margin-top: 24px;
  }

  .pd-chip-row span {
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .pd-mini-specs {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .pd-mini-specs div {
    min-height: 88px;
    padding: 14px 16px;
  }

  body.product-detail-b .pd-product-panel {
    margin-top: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px;
    overflow: hidden;
  }

  body.product-detail-b .pd-panel-top strong {
    display: none;
  }

  body.product-detail-b .pd-equipment-stage {
    max-width: 100%;
    min-height: 292px;
    overflow: hidden;
  }

  body.product-detail-b .pd-equipment-stage::before {
    inset: 62px 18px 54px;
  }

  .pd-callout::before {
    inset: -12px;
  }

  .pd-callout-label {
    min-width: 88px;
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .pd-callout-wheel {
    left: 10px;
    top: 26px;
    width: 222px;
    height: 70px;
  }

  .pd-callout-wheel .pd-callout-line {
    left: 86px;
    top: 32px;
    width: 132px;
  }

  .pd-callout-wheel .pd-callout-dot {
    top: 44px;
  }

  .pd-callout-nozzle {
    right: 12px;
    top: 30px;
    width: 154px;
    height: 86px;
  }

  .pd-callout-nozzle .pd-callout-line {
    right: 82px;
    top: 34px;
    width: 58px;
  }

  .pd-callout-nozzle .pd-callout-label {
    right: 10px;
  }

  .pd-callout-nozzle .pd-callout-dot {
    left: 6px;
    bottom: 16px;
  }

  .pd-callout-chamber {
    left: 10px;
    bottom: 44px;
    width: 230px;
    height: 56px;
  }

  .pd-callout-chamber .pd-callout-line {
    left: 86px;
    bottom: 24px;
    width: 140px;
  }

  .pd-callout-recycle {
    right: 12px;
    bottom: 38px;
    width: 160px;
    height: 64px;
  }

  .pd-callout-recycle .pd-callout-line {
    right: 90px;
    bottom: 24px;
    width: 70px;
  }

  .pd-callout-recycle .pd-callout-label {
    right: 10px;
  }

  .pd-process-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 100%;
  }

  .pd-process-chips span {
    box-sizing: border-box;
    padding: 0 10px;
  }

  .pd-process-chips em {
    margin-right: 12px;
  }

  .pd-card-grid-4 {
    grid-template-columns: 1fr;
  }

  body.product-detail-b .pd-info-section {
    padding-bottom: 24px;
  }

  body.product-detail-b .pd-card {
    min-height: auto;
    padding: 20px;
  }

  .pd-cta-strip {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }
}

@media (max-width: 420px) {
  body.product-detail-b .pd-product-panel {
    padding: 12px;
  }

  body.product-detail-b .pd-equipment-stage {
    min-height: 280px;
  }

  body.product-detail-b .pd-equipment-stage::before {
    inset: 64px 14px 56px;
  }

  body.product-detail-b .pd-callout-label {
    min-width: 84px;
    padding: 0 8px;
  }
}

@media (max-width: 1100px) {
  body.product-detail-b .pd-section-head-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  body.product-detail-b .pd-flow-chart::after {
    display: none;
  }

  body.product-detail-b .pd-flow-chart .fc-nodes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 12px;
  }

  body.product-detail-b .pd-flow-chart .fc-arr {
    display: none;
  }

  body.product-detail-b .pd-showcase-compact .pd-showcase-card {
    grid-template-columns: minmax(0, 1fr);
  }

  body.product-detail-b .pd-info-section .pd-section-head {
    display: block;
  }

  body.product-detail-b .pd-info-section .pd-section-head p {
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  body.product-detail-b .pd-principle-first {
    padding: 22px 0 16px;
  }

  body.product-detail-b .pd-flow-chart {
    padding: 16px;
  }

  body.product-detail-b .pd-flow-chart h4 {
    margin-bottom: 12px;
  }

  body.product-detail-b .pd-flow-chart .fc-nodes {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.product-detail-b .pd-flow-chart .fc-node {
    width: 100%;
    min-height: 56px;
    padding: 18px 14px 12px;
  }

  body.product-detail-b .pd-flow-chart .fc-loop {
    padding: 2px 0 0;
  }

  body.product-detail-b .pd-flow-chart .fc-loop-txt {
    max-width: 100%;
    font-size: 10px;
  }

  body.product-detail-b .pd-showcase-compact {
    padding: 16px 0 14px;
  }

  body.product-detail-b .pd-showcase-compact .pd-showcase-card {
    padding: 16px;
  }

  body.product-detail-b .pd-showcase-compact h2 {
    margin-top: 36px;
    font-size: 25px;
    line-height: 32px;
  }

  body.product-detail-b .pd-showcase-compact .pd-mini-specs {
    grid-template-columns: 1fr;
  }

  body.product-detail-b .pd-showcase-compact .pd-product-panel {
    margin-top: 14px;
    padding: 14px;
  }

  body.product-detail-b .pd-showcase-compact .pd-equipment-stage {
    min-height: 270px;
  }

  body.product-detail-b .pd-showcase-compact .pd-equipment-stage::before {
    inset: 58px 16px 52px;
  }
}

/* Inner pages: make the navigation sit as one visual layer with the dark hero. */
body:not(.home-hero-dome):has(.page-hero) .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 15, 0.66), rgba(3, 8, 15, 0.20) 72%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

body:not(.home-hero-dome):has(.page-hero) .site-header::after {
  background: linear-gradient(90deg, transparent, rgba(115, 187, 255, 0.34), rgba(224, 124, 32, 0.28), transparent);
}

body:not(.home-hero-dome):has(.page-hero) .brand {
  border-right-color: rgba(255, 255, 255, 0.18);
}

body:not(.home-hero-dome):has(.page-hero) .brand-logo {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

body:not(.home-hero-dome):has(.page-hero) .nav-links a {
  color: rgba(255, 255, 255, 0.80);
}

body:not(.home-hero-dome):has(.page-hero) .nav-links a:hover,
body:not(.home-hero-dome):has(.page-hero) .nav-links a.active {
  color: #ffffff;
  border-bottom-color: rgba(115, 187, 255, 0.72);
}

body:not(.home-hero-dome):has(.page-hero) .nav-links a:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.07));
}

body:not(.home-hero-dome):has(.page-hero) .language {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.20);
}

body:not(.home-hero-dome):has(.page-hero) .menu-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.20);
}

body:not(.home-hero-dome):has(.page-hero) .nav-actions .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(224,124,32,0.95), rgba(245,164,79,0.90));
  border-color: rgba(255, 199, 127, 0.55);
  box-shadow: 0 12px 34px rgba(224,124,32,0.22);
}

body:not(.home-hero-dome):has(.page-hero) .page-hero {
  padding-top: 156px;
}

@media (max-width: 1100px) {
  body:not(.home-hero-dome):has(.page-hero) .nav-links {
    top: 76px;
    background: rgba(4, 13, 24, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  body:not(.home-hero-dome):has(.page-hero) .nav-links a {
    color: rgba(255, 255, 255, 0.86);
  }
}

@media (max-width: 680px) {
  body:not(.home-hero-dome):has(.page-hero) .page-hero {
    padding-top: 128px;
  }
}

/* Final product-detail cleanup: catalogue-like, aligned, less text-heavy. */
body.product-detail-b .pd-showcase-card {
  grid-template-columns: minmax(320px, 0.74fr) minmax(520px, 1.26fr);
  gap: 18px;
  padding: 18px;
  align-items: stretch;
}

body.product-detail-b .pd-hero-copy {
  padding: 20px;
  border: 1px solid rgba(15, 70, 104, 0.10);
  border-radius: var(--pd-radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,249,251,0.78));
}

body.product-detail-b .pd-hero h1,
body.product-detail-b .pd-hero h2 {
  margin-top: 34px;
  font-size: 28px;
  line-height: 34px;
}

body.product-detail-b .pd-lead {
  font-size: 15px;
  line-height: 24px;
}

body.product-detail-b .pd-chip-row {
  gap: 6px;
  margin-top: 16px;
}

body.product-detail-b .pd-chip-row span {
  height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

body.product-detail-b .pd-mini-specs {
  gap: 8px;
  margin-top: 16px;
}

body.product-detail-b .pd-mini-specs div {
  min-height: 64px;
  padding: 10px 12px;
}

body.product-detail-b .pd-mini-specs strong {
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 20px;
}

body.product-detail-b .pd-mini-specs em,
body.product-detail-b .pd-card small {
  display: none;
}

body.product-detail-b .pd-product-panel {
  padding: 18px;
}

body.product-detail-b .pd-equipment-stage {
  min-height: 386px;
}

body.product-detail-b .pd-equipment-stage::before {
  inset: 22px 56px 34px;
}

body.product-detail-b .pd-callout {
  display: none;
}

body.product-detail-b .pd-process-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body.product-detail-b .pd-process-chips span {
  justify-content: center;
  height: 32px;
  padding: 0 8px;
  font-size: 12px;
}

body.product-detail-b .pd-process-chips em {
  margin-right: 6px;
}

body.product-detail-b .pd-info-section .pd-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 14px;
}

body.product-detail-b .pd-info-section .pd-section-head h2 {
  margin: 0;
  font-size: 26px;
  line-height: 32px;
}

body.product-detail-b .pd-info-section .pd-section-head p {
  max-width: 640px;
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}

body.product-detail-b .pd-card-grid-4 {
  gap: 10px;
}

body.product-detail-b .pd-card {
  min-height: 108px;
  padding: 16px;
}

body.product-detail-b .pd-card h3 {
  font-size: 15px;
  line-height: 22px;
}

body.product-detail-b .pd-card p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 21px;
}

body.product-detail-b .pd-card::after {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  body.product-detail-b .pd-showcase-card {
    grid-template-columns: 1fr;
  }

  body.product-detail-b .pd-hero-copy {
    padding: 18px;
  }

  body.product-detail-b .pd-product-panel {
    margin-top: 0;
  }

  body.product-detail-b .pd-card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.product-detail-b .pd-showcase-card {
    padding: 14px;
  }

  body.product-detail-b .pd-hero-copy {
    padding: 16px;
  }

  body.product-detail-b .pd-hero h1,
  body.product-detail-b .pd-hero h2 {
    margin-top: 32px;
    font-size: 25px;
    line-height: 32px;
  }

  body.product-detail-b .pd-mini-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  body.product-detail-b .pd-mini-specs div {
    min-height: 62px;
    padding: 9px 10px;
  }

  body.product-detail-b .pd-mini-specs span {
    font-size: 11px;
    line-height: 15px;
  }

  body.product-detail-b .pd-mini-specs strong {
    font-size: 13px;
    line-height: 18px;
  }

  body.product-detail-b .pd-equipment-stage {
    min-height: 276px;
  }

  body.product-detail-b .pd-equipment-stage::before {
    inset: 42px 18px 44px;
  }

  body.product-detail-b .pd-process-chips {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  body.product-detail-b .pd-process-chips span {
    height: 30px;
    padding: 0 4px;
    font-size: 11px;
  }

  body.product-detail-b .pd-process-chips em {
    display: none;
  }

  body.product-detail-b .pd-info-section .pd-section-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.product-detail-b .pd-card-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* NETZSCH-reference pass: sober industrial catalogue structure, not a clone. */
:root {
  --industrial-green: #004896;
  --industrial-green-dark: #00366f;
  --industrial-mist: #e8f1f8;
}

.product-finder-section {
  padding: 54px 0 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,247,246,0.92));
  border-bottom: 1px solid rgba(15,70,104,0.10);
}

.product-finder-title {
  max-width: 860px;
}

.product-finder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.product-finder-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 142px;
  padding: 20px;
  border: 1px solid rgba(0,72,150,0.16);
  border-radius: 4px;
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15,42,62,0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-finder-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,72,150,0.34);
  box-shadow: 0 18px 36px rgba(15,42,62,0.10);
}

.product-finder-card span {
  color: var(--industrial-green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.product-finder-card strong {
  margin-top: 16px;
  color: #143344;
  font-size: 17px;
  line-height: 24px;
}

.product-finder-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 21px;
}

.product-directory-title {
  max-width: 860px;
  margin-bottom: 28px;
}

body.products-page .product-directory-grid {
  align-items: stretch;
  gap: 16px;
}

body.products-page .product-directory-grid .product-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 0;
  border-radius: 4px;
}

body.products-page .product-directory-grid .product-media {
  height: auto;
}

body.products-page .product-directory-grid .card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 188px;
  padding: 18px;
}

body.products-page .product-directory-grid .card-body h3 {
  color: #153442;
  font-size: 18px;
  line-height: 25px;
}

body.products-page .product-directory-grid .card-body p {
  display: -webkit-box;
  min-height: 66px;
  margin-top: 10px;
  overflow: hidden;
  color: rgba(50,75,94,0.78);
  font-size: 13px;
  line-height: 22px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.products-page .product-directory-grid .card-link {
  align-self: end;
  width: fit-content;
  margin-top: 14px;
  border-left-color: var(--industrial-green);
  color: var(--industrial-green-dark);
}

body.product-detail-b .pd-local-nav {
  position: sticky;
  top: 78px;
  z-index: 20;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(15,70,104,0.13);
  background: rgba(250,252,253,0.94);
  box-shadow: 0 12px 28px rgba(15,42,62,0.07);
}

body.product-detail-b .pd-local-nav .pd-wrap {
  display: flex;
  gap: 4px;
  align-items: center;
  min-height: 50px;
  overflow-x: auto;
  scrollbar-width: none;
}

body.product-detail-b .pd-local-nav .pd-wrap::-webkit-scrollbar {
  display: none;
}

body.product-detail-b .pd-local-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 3px;
  color: rgba(29,55,72,0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  text-decoration: none;
  white-space: nowrap;
}

body.product-detail-b .pd-local-nav a:hover {
  background: var(--industrial-mist);
  color: var(--industrial-green-dark);
}

body.product-detail-b .pd-local-nav a:last-child {
  margin-left: auto;
  color: #fff;
  background: var(--industrial-green);
}

body.product-detail-b .pd-local-nav a:last-child:hover {
  color: #fff;
  background: var(--industrial-green-dark);
}

body.product-detail-b .pd-section-head h2,
body.product-detail-b .pd-detail-section .section-title h2,
body.product-detail-b .pd-spec-head h2 {
  color: #143344;
}

body.product-detail-b .pd-card::after,
body.product-detail-b .pd-spec-note {
  border-color: rgba(0,72,150,0.18);
}

body.product-detail-b .pd-card::after {
  background: var(--industrial-green);
}

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

  body.products-page .product-directory-grid .product-card {
    grid-template-rows: 220px 1fr;
  }

  body.product-detail-b .pd-local-nav {
    top: 72px;
  }

  body.product-detail-b .pd-local-nav a:last-child {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .product-finder-section {
    padding: 42px 0 34px;
  }

  .product-finder-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-finder-card {
    min-height: 116px;
    padding: 16px;
  }

  body.products-page .product-directory-grid .product-card {
    grid-template-rows: 210px 1fr;
  }

  body.products-page .product-directory-grid .card-body {
    min-height: auto;
  }

  body.product-detail-b .pd-local-nav {
    top: 64px;
  }

  body.product-detail-b .pd-local-nav .pd-wrap {
    width: min(100% - 24px, 1180px);
    min-height: 46px;
  }

  body.product-detail-b .pd-local-nav a {
    padding: 9px 10px;
    font-size: 12px;
  }
}

/* Strong industrial corporate pass: close to a mature equipment group website while keeping original assets/content. */
:root {
  --corp-green: #004896;
  --corp-green-deep: #00366f;
  --corp-green-soft: #e7f0f8;
  --corp-ink: #15313d;
  --corp-line: rgba(12, 49, 60, 0.13);
  --corp-paper: #f4f7fb;
}

body.home-hero-dome,
body.products-page,
body.product-detail-b {
  color: var(--corp-ink);
  background: var(--corp-paper);
}

body.home-hero-dome .site-header,
body.products-page .site-header,
body.product-detail-b .site-header,
body:not(.home-hero-dome):has(.page-hero) .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(12, 49, 60, 0.08);
  backdrop-filter: blur(14px);
}

body.home-hero-dome .site-header::after,
body.products-page .site-header::after,
body.product-detail-b .site-header::after,
body:not(.home-hero-dome):has(.page-hero) .site-header::after {
  height: 4px;
  background: linear-gradient(90deg, var(--corp-green), #0d63ad 42%, #d58936);
  opacity: 1;
}

body.home-hero-dome .brand,
body.products-page .brand,
body.product-detail-b .brand,
body:not(.home-hero-dome):has(.page-hero) .brand {
  color: var(--corp-ink);
}

body.home-hero-dome .nav-links a,
body.products-page .nav-links a,
body.product-detail-b .nav-links a,
body:not(.home-hero-dome):has(.page-hero) .nav-links a {
  color: rgba(21, 49, 61, 0.80);
  border-bottom-color: transparent;
}

body.home-hero-dome .nav-links a:hover,
body.home-hero-dome .nav-links a.active,
body.products-page .nav-links a:hover,
body.products-page .nav-links a.active,
body.product-detail-b .nav-links a:hover,
body.product-detail-b .nav-links a.active,
body:not(.home-hero-dome):has(.page-hero) .nav-links a:hover,
body:not(.home-hero-dome):has(.page-hero) .nav-links a.active {
  color: var(--corp-green-deep);
  background: rgba(0, 72, 150, 0.07);
  border-bottom-color: var(--corp-green);
}

body.home-hero-dome .language,
body.products-page .language,
body.product-detail-b .language,
body:not(.home-hero-dome):has(.page-hero) .language {
  color: var(--corp-green-deep);
  background: var(--corp-green-soft);
  border-color: rgba(0, 72, 150, 0.18);
}

body.home-hero-dome .nav-actions .btn-primary,
body.products-page .nav-actions .btn-primary,
body.product-detail-b .nav-actions .btn-primary,
body:not(.home-hero-dome):has(.page-hero) .nav-actions .btn-primary {
  color: #ffffff;
  background: var(--corp-green);
  border-color: var(--corp-green);
  box-shadow: 0 12px 28px rgba(0, 72, 150, 0.20);
}

body.home-hero-dome .menu-button,
body.products-page .menu-button,
body.product-detail-b .menu-button,
body:not(.home-hero-dome):has(.page-hero) .menu-button {
  color: var(--corp-green-deep);
  background: #ffffff;
  border-color: rgba(0, 72, 150, 0.20);
}

body.home-hero-dome .hero {
  min-height: 620px;
  padding: 150px 0 74px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.92) 0%, rgba(0, 72, 150, 0.80) 36%, rgba(0, 72, 150, 0.18) 72%, rgba(0, 72, 150, 0.05) 100%),
    url("../images/factory-production-line.webp") center / cover no-repeat;
}

body.home-hero-dome .hero::before {
  inset: auto 0 0 0;
  height: 78px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0), var(--corp-paper));
  opacity: 1;
  filter: none;
}

body.home-hero-dome .hero::after {
  content: "";
  position: absolute;
  right: 9vw;
  bottom: 70px;
  width: min(360px, 34vw);
  height: 6px;
  background: #d58936;
  opacity: 0.92;
  transform: skewX(-28deg);
}

body.home-hero-dome #hero-canvas,
body.home-hero-dome .hero-cosmos,
body.home-hero-dome .hero-flow,
body.home-hero-dome .hero-motion {
  display: none;
}

body.home-hero-dome .hero-inner {
  width: min(1180px, calc(100% - 44px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

body.home-hero-dome .hero-eyebrow {
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0;
}

body.home-hero-dome .hero-eyebrow::before {
  background: #d58936;
}

body.home-hero-dome .hero h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

body.home-hero-dome .hero h1 em {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
}

body.home-hero-dome .hero-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 17px;
  line-height: 30px;
}

body.home-hero-dome .hero-actions {
  gap: 12px;
  margin-top: 34px;
}

body.home-hero-dome .hero-actions .btn {
  min-width: 156px;
  border-radius: 2px;
}

body.home-hero-dome .stats-band {
  margin-top: 0;
  background: var(--corp-green);
  border: 0;
  box-shadow: none;
}

body.home-hero-dome .stats-band-inner {
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

body.home-hero-dome .stat-item {
  padding: 26px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

body.home-hero-dome .stat-num,
body.home-hero-dome .stat-label {
  color: #ffffff;
}

.industrial-route-section {
  padding: 68px 0 60px;
  background: #ffffff;
  border-bottom: 1px solid var(--corp-line);
}

.industrial-route-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.industrial-route-head h2 {
  margin: 8px 0 0;
  color: var(--corp-ink);
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.14;
}

.industrial-route-head p:last-child {
  margin: 0;
  color: rgba(32, 64, 78, 0.76);
  font-size: 15px;
  line-height: 27px;
}

.industrial-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--corp-line);
  border-left: 1px solid var(--corp-line);
}

.industrial-route-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 250px;
  padding: 26px 24px;
  border-right: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  color: var(--corp-ink);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.industrial-route-card:hover {
  position: relative;
  z-index: 1;
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(12, 49, 60, 0.12);
  transform: translateY(-3px);
}

.industrial-route-index {
  color: var(--corp-green);
  font-size: 13px;
  font-weight: 900;
}

.industrial-route-card h3 {
  margin: 36px 0 0;
  color: var(--corp-ink);
  font-size: 22px;
  line-height: 28px;
}

.industrial-route-card p {
  margin: 12px 0 22px;
  color: rgba(44, 70, 83, 0.78);
  font-size: 14px;
  line-height: 24px;
}

.industrial-route-card strong {
  color: var(--corp-green-deep);
  font-size: 13px;
  line-height: 18px;
}

body.home-hero-dome .section,
body.products-page .section {
  padding-top: 68px;
  padding-bottom: 68px;
}

body.home-hero-dome .section-head,
body.products-page .section-head,
body.product-detail-b .pd-info-section .pd-section-head {
  align-items: end;
  border-bottom: 1px solid var(--corp-line);
  padding-bottom: 18px;
}

body.home-hero-dome .section-title h2,
body.products-page .section-title h2,
body.product-detail-b .pd-section-head h2,
body.product-detail-b .pd-detail-section .section-title h2,
body.product-detail-b .pd-spec-head h2 {
  color: var(--corp-ink);
  letter-spacing: 0;
}

body.home-hero-dome .section-label,
body.products-page .section-label,
body.products-page .eyebrow,
body.product-detail-b .eyebrow,
body.product-detail-b .pd-kicker {
  color: var(--corp-green-deep);
}

body.home-hero-dome #products {
  background: var(--corp-paper);
}

body.home-hero-dome #products .home-product-grid,
body.products-page .product-directory-grid {
  gap: 0;
  border-top: 1px solid var(--corp-line);
  border-left: 1px solid var(--corp-line);
}

body.home-hero-dome #products .home-product-grid .product-card,
body.products-page .product-directory-grid .product-card {
  border: 0;
  border-right: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

body.home-hero-dome #products .home-product-grid .product-card:hover,
body.products-page .product-directory-grid .product-card:hover {
  position: relative;
  z-index: 1;
  box-shadow: 0 22px 46px rgba(12, 49, 60, 0.13);
  transform: translateY(-2px);
}

body.home-hero-dome #products .home-product-grid .product-media,
body.products-page .product-directory-grid .product-media {
  border-radius: 0;
  background-color: #edf3f2;
}

body.home-hero-dome #products .home-product-grid .card-body,
body.products-page .product-directory-grid .card-body {
  padding: 22px 22px 24px;
  background: #ffffff;
}

body.home-hero-dome #products .home-product-grid .card-body h3,
body.products-page .product-directory-grid .card-body h3 {
  color: var(--corp-ink);
  font-size: 20px;
  line-height: 27px;
}

body.home-hero-dome #products .home-product-grid .card-body p,
body.products-page .product-directory-grid .card-body p {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  color: rgba(37, 65, 78, 0.75);
  font-size: 14px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.home-hero-dome #products .home-product-grid .card-link,
body.products-page .product-directory-grid .card-link,
.product-finder-card strong {
  color: var(--corp-green-deep);
}

body.home-hero-dome #applications {
  background: #ffffff;
}

body.home-hero-dome .industry-grid {
  border-top: 1px solid var(--corp-line);
  border-left: 1px solid var(--corp-line);
}

body.home-hero-dome .industry-tile {
  border-radius: 0;
  border-right: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
  box-shadow: none;
}

body.products-page .page-hero {
  padding: 166px 0 86px;
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.90), rgba(0, 72, 150, 0.64) 42%, rgba(0, 72, 150, 0.16)),
    url("../images/hero-workshop.jpg") center / cover no-repeat;
}

body.products-page .page-hero::before,
body.products-page .page-hero::after {
  display: none;
}

body.products-page .page-hero .wrap {
  max-width: 1180px;
}

body.products-page .page-hero .eyebrow,
body.products-page .page-hero h1,
body.products-page .page-hero p {
  color: #ffffff;
}

body.products-page .page-hero h1 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
}

body.products-page .page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 30px;
}

.product-finder-section {
  background: #ffffff;
}

.product-finder-grid {
  gap: 0;
  border-top: 1px solid var(--corp-line);
  border-left: 1px solid var(--corp-line);
}

.product-finder-card {
  min-height: 190px;
  border: 0;
  border-right: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
  border-radius: 0;
  box-shadow: none;
}

.product-finder-card:hover {
  box-shadow: 0 20px 42px rgba(12, 49, 60, 0.12);
}

body.product-detail-b .pd-top-hero {
  padding: 146px 0 30px;
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 1), rgba(244, 247, 251, 0.94) 46%, rgba(231, 240, 248, 0.72)),
    url("../images/hero-powder-system.webp") right center / contain no-repeat;
}

body.product-detail-b .pd-top-hero .wrap,
body.product-detail-b .pd-wrap {
  width: min(1180px, calc(100% - 44px));
}

body.product-detail-b .pd-local-nav {
  top: 82px;
  border-top: 0;
  background: rgba(255, 255, 255, 0.96);
}

body.product-detail-b .pd-local-nav .pd-wrap {
  min-height: 54px;
}

body.product-detail-b .pd-local-nav a {
  border-radius: 0;
}

body.product-detail-b .pd-showcase-card {
  grid-template-columns: minmax(380px, 0.88fr) minmax(480px, 1.12fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--corp-line);
  border-top: 4px solid var(--corp-green);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 26px 58px rgba(12, 49, 60, 0.12);
}

body.product-detail-b .pd-hero-copy {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 34px 36px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

body.product-detail-b .pd-hero h1,
body.product-detail-b .pd-hero h2 {
  margin-top: 26px;
  color: var(--corp-ink);
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.13;
}

body.product-detail-b .pd-lead {
  max-width: 620px;
  color: rgba(37, 65, 78, 0.78);
  font-size: 15px;
  line-height: 27px;
}

body.product-detail-b .pd-chip-row {
  margin-top: 22px;
}

body.product-detail-b .pd-chip-row span,
body.product-detail-b .pd-process-chips span {
  border-radius: 0;
  background: var(--corp-green-soft);
  color: var(--corp-green-deep);
}

body.product-detail-b .pd-mini-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
  padding-top: 22px;
}

body.product-detail-b .pd-mini-specs div {
  border-radius: 0;
  background: #f6f9fc;
}

body.product-detail-b .pd-product-panel {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 24px;
  border-left: 1px solid var(--corp-line);
  background: linear-gradient(180deg, #f8fafc, #e8f1f8);
}

body.product-detail-b .pd-equipment-stage {
  flex: 1 1 auto;
  min-height: 356px;
  border-radius: 0;
  background: #ffffff;
}

body.product-detail-b .pd-equipment-stage::before {
  inset: 22px 46px 28px;
}

body.product-detail-b .pd-process-chips {
  margin-top: 14px;
}

body.product-detail-b .pd-info-section,
body.product-detail-b .pd-detail-section,
body.product-detail-b .pd-spec-block {
  padding-top: 66px;
  padding-bottom: 66px;
}

body.product-detail-b .pd-card,
body.product-detail-b .pd-spec-shell,
body.product-detail-b .pd-lean-table,
body.product-detail-b .pd-contact-card,
body.product-detail-b .pd-lean-faq details {
  border-radius: 0;
}

body.product-detail-b .pd-card-grid-4,
body.product-detail-b .pd-lean-grid {
  gap: 0;
  border-top: 1px solid var(--corp-line);
  border-left: 1px solid var(--corp-line);
}

body.product-detail-b .pd-card,
body.product-detail-b .pd-lean-grid .config-item {
  border: 0;
  border-right: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
  background: #ffffff;
  box-shadow: none;
}

body.product-detail-b .pd-card::after {
  background: var(--corp-green);
}

body.product-detail-b .pd-spec-shell {
  border-top: 4px solid var(--corp-green);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96));
}

body.product-detail-b .pd-model-table .table th {
  background: var(--corp-green);
  color: #ffffff;
}

@media (max-width: 1100px) {
  body.home-hero-dome .nav-links,
  body.products-page .nav-links,
  body.product-detail-b .nav-links,
  body:not(.home-hero-dome):has(.page-hero) .nav-links {
    background: rgba(255, 255, 255, 0.98);
  }

  body.home-hero-dome .nav-links a,
  body.products-page .nav-links a,
  body.product-detail-b .nav-links a,
  body:not(.home-hero-dome):has(.page-hero) .nav-links a {
    color: rgba(21, 49, 61, 0.86);
  }

  .industrial-route-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  body.product-detail-b .pd-showcase-card {
    grid-template-columns: 1fr;
  }

  body.product-detail-b .pd-product-panel {
    border-left: 0;
    border-top: 1px solid var(--corp-line);
  }
}

@media (max-width: 680px) {
  body.home-hero-dome .hero {
    min-height: 560px;
    padding: 128px 0 58px;
    background:
      linear-gradient(90deg, rgba(0, 43, 89, 0.94), rgba(0, 72, 150, 0.74)),
      url("../images/factory-production-line.webp") center / cover no-repeat;
  }

  body.home-hero-dome .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  body.home-hero-dome .hero h1 {
    font-size: 38px;
    line-height: 1.10;
  }

  body.home-hero-dome .hero-lead {
    font-size: 15px;
    line-height: 26px;
  }

  body.home-hero-dome .stats-band-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-hero-dome .stat-item {
    padding: 20px 16px;
  }

  .industrial-route-section,
  body.home-hero-dome .section,
  body.products-page .section,
  body.product-detail-b .pd-info-section,
  body.product-detail-b .pd-detail-section,
  body.product-detail-b .pd-spec-block {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .industrial-route-grid,
  .product-finder-grid {
    grid-template-columns: 1fr;
  }

  .industrial-route-card {
    min-height: 190px;
    padding: 22px 18px;
  }

  .industrial-route-card h3 {
    margin-top: 20px;
    font-size: 20px;
  }

  body.products-page .page-hero {
    padding: 132px 0 64px;
  }

  body.product-detail-b .pd-top-hero {
    padding: 122px 0 24px;
    background: var(--corp-paper);
  }

  body.product-detail-b .pd-local-nav {
    top: 64px;
  }

  body.product-detail-b .pd-top-hero .wrap,
  body.product-detail-b .pd-wrap {
    width: min(100% - 28px, 1180px);
  }

  body.product-detail-b .pd-hero-copy {
    min-height: 0;
    padding: 24px 18px;
  }

  body.product-detail-b .pd-product-panel {
    min-height: 0;
    padding: 18px;
  }

  body.product-detail-b .pd-mini-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
    padding-top: 0;
  }
}

/* NETZSCH consistency layer: unified industrial group-site shell using Dewei content and assets. */
:root {
  --netzsch-green: #004896;
  --netzsch-green-2: #005aa9;
  --netzsch-green-3: #002b59;
  --netzsch-accent: #d88a31;
  --netzsch-text: #17323f;
  --netzsch-muted: rgba(23, 50, 63, 0.68);
  --netzsch-border: rgba(10, 48, 58, 0.14);
  --netzsch-bg: #f4f7fb;
}

body {
  background: var(--netzsch-bg);
}

.site-header {
  min-height: 86px;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--netzsch-green);
  z-index: 1;
}

.site-header .nav {
  min-height: 86px;
}

.brand-logo {
  max-height: 46px;
}

.nav-links {
  gap: 0;
}

.nav-links a {
  min-height: 86px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-left: 1px solid rgba(10, 48, 58, 0.05);
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links a:last-child {
  border-right: 1px solid rgba(10, 48, 58, 0.05);
}

.nav-actions .btn,
.btn,
.card-link,
.language {
  border-radius: 0 !important;
}

body.home-hero-dome .hero {
  min-height: 680px;
  padding-top: 164px;
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.96) 0%, rgba(0, 72, 150, 0.88) 34%, rgba(0, 72, 150, 0.42) 62%, rgba(0, 72, 150, 0.12) 100%),
    url("../images/factory-production-line.webp") center / cover no-repeat;
}

body.home-hero-dome .hero::after {
  right: 0;
  bottom: 0;
  width: min(48vw, 620px);
  height: 86px;
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(216, 138, 49, 0.94) 28% 43%, transparent 43% 100%);
  transform: none;
}

body.home-hero-dome .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-content: center;
}

body.home-hero-dome .hero h1 {
  margin-top: 18px;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 0.98;
  font-weight: 900;
}

body.home-hero-dome .hero-lead {
  max-width: 720px;
  margin-top: 26px;
  font-size: 18px;
  line-height: 32px;
}

.corporate-hero-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, 100%);
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.corporate-hero-links a {
  display: grid;
  gap: 10px;
  min-height: 112px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(6px);
}

.corporate-hero-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.corporate-hero-links span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.corporate-hero-links strong {
  font-size: 18px;
  line-height: 24px;
}

.stats-band {
  position: relative;
  z-index: 3;
}

body.home-hero-dome .stats-band-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.section,
.industrial-route-section,
.about-band,
.cta-band {
  position: relative;
}

.section::before,
.industrial-route-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--netzsch-border);
}

.wrap,
.footer-inner,
.footer-bottom-inner,
.about-inner {
  width: min(1180px, calc(100% - 44px));
}

.section-head,
.industrial-route-head,
.section-title {
  max-width: none;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--netzsch-green-2) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--netzsch-accent);
}

.section-title h2,
.industrial-route-head h2,
.about-text h2 {
  color: var(--netzsch-text);
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.section-title p,
.industrial-route-head p:last-child,
.about-text p,
.page-hero p {
  color: var(--netzsch-muted);
}

.industrial-route-grid,
body.home-hero-dome #products .home-product-grid,
body.products-page .product-directory-grid,
body.home-hero-dome .industry-grid,
.home-case-grid,
.grid.three,
.grid.four,
.application-list,
.application-groups {
  gap: 0 !important;
}

.industrial-route-card,
.product-card,
.industry-tile,
.case-card,
.resource-card,
.application-card,
.application-group,
.application-list a,
.application-list-item,
.inquiry,
.about-stat,
.config-item,
.pd-card {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.product-card,
.resource-card,
.case-card,
.application-card,
.application-group,
.inquiry {
  border-color: var(--netzsch-border) !important;
}

.product-card:hover,
.resource-card:hover,
.case-card:hover,
.application-card:hover,
.industrial-route-card:hover,
.industry-tile:hover {
  box-shadow: 0 24px 52px rgba(10, 48, 58, 0.13) !important;
  transform: translateY(-2px);
}

.product-media.photo-media::before {
  background-size: contain !important;
}

.industry-grid {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.industry-tile {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(0, 72, 150, 0.04), rgba(0, 72, 150, 0.12)),
    #ffffff;
}

.industry-tile-body {
  min-height: 100%;
  padding: 30px;
}

.industry-tile h3,
.resource-card h3,
.case-card h3,
.application-card h3,
.application-list span {
  color: var(--netzsch-text);
}

.industry-tile-arrow,
.card-link {
  color: var(--netzsch-green-2);
  font-weight: 900;
}

.about-band {
  padding: 86px 0;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 56%, var(--netzsch-green) 56%, var(--netzsch-green) 100%);
  overflow: hidden;
}

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(360px, 0.45fr);
  gap: 44px;
  margin: 0 auto;
  align-items: end;
}

.about-photos {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 86px;
  width: min(430px, 35vw);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.about-photos img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  border: 8px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.about-stat {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.about-stat-num,
.about-stat-label,
.about-stat-sub {
  color: #ffffff;
}

.home-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--netzsch-border);
  border-left: 1px solid var(--netzsch-border);
}

.home-case-item {
  min-height: 250px;
  padding: 26px;
  border: 0;
  border-right: 1px solid var(--netzsch-border);
  border-bottom: 1px solid var(--netzsch-border);
  background: #ffffff;
}

.home-case-item.is-featured {
  background:
    linear-gradient(180deg, rgba(0, 72, 150, 0.88), rgba(0, 43, 89, 0.96)),
    url("../images/case-lfp-line.jpg") center / cover no-repeat;
}

.home-case-item.is-featured h3,
.home-case-item.is-featured p {
  color: #ffffff;
}

.cta-band {
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.94), rgba(0, 72, 150, 0.86)),
    url("../images/hero-pipes-valve.jpg") center / cover no-repeat;
}

.cta-band .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) auto;
  gap: 34px;
  align-items: end;
}

.cta-band h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.08;
}

.cta-band p {
  grid-column: 1;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.resource-card {
  min-height: 230px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--netzsch-border);
}

body:not(.home-hero-dome):not(.products-page):not(.product-detail-b) .page-hero {
  padding: 166px 0 86px;
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.94), rgba(0, 72, 150, 0.70) 46%, rgba(0, 72, 150, 0.18)),
    url("../images/factory-cleanroom.webp") center / cover no-repeat;
}

body:not(.home-hero-dome):not(.products-page):not(.product-detail-b) .page-hero::before,
body:not(.home-hero-dome):not(.products-page):not(.product-detail-b) .page-hero::after {
  display: none;
}

body:not(.home-hero-dome):not(.products-page):not(.product-detail-b) .page-hero .eyebrow,
body:not(.home-hero-dome):not(.products-page):not(.product-detail-b) .page-hero h1,
body:not(.home-hero-dome):not(.products-page):not(.product-detail-b) .page-hero p {
  color: #ffffff !important;
}

body:not(.home-hero-dome):not(.products-page):not(.product-detail-b) .page-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
}

.application-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--netzsch-border);
  border-left: 1px solid var(--netzsch-border);
}

.application-group {
  padding: 30px;
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--netzsch-border);
  border-bottom: 1px solid var(--netzsch-border);
}

.application-list {
  border-top: 1px solid var(--netzsch-border);
  border-left: 1px solid var(--netzsch-border);
}

.application-list a,
.application-list-item {
  border: 0;
  border-right: 1px solid var(--netzsch-border);
  border-bottom: 1px solid var(--netzsch-border);
  background: #f9fbfa;
}

.footer {
  background: var(--netzsch-green-3);
}

.footer-inner {
  grid-template-columns: 1.25fr repeat(3, minmax(0, 0.75fr));
  padding-top: 68px;
  padding-bottom: 48px;
  border-top: 6px solid var(--netzsch-green);
}

.footer-brand,
.footer-col {
  padding-top: 0;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer p,
.footer a,
.footer h4,
.footer-contact a,
.footer-bottom p,
.footer-links a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
}

.footer-col a:hover,
.footer-contact a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 1100px) {
  .site-header,
  .site-header .nav,
  .nav-links a {
    min-height: 72px;
  }

  .corporate-hero-links,
  .home-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-band {
    background: #ffffff;
  }

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

  .about-photos {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 760px);
    margin: 34px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat-grid {
    border-color: var(--netzsch-border);
  }

  .about-stat {
    background: var(--netzsch-green);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .cta-band .wrap {
    grid-template-columns: 1fr;
  }

  .cta-band p,
  .cta-actions {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .wrap,
  .footer-inner,
  .footer-bottom-inner,
  .about-inner,
  .industry-grid {
    width: min(100% - 28px, 1180px);
  }

  body.home-hero-dome .hero {
    min-height: 620px;
    padding-top: 124px;
  }

  body.home-hero-dome .hero h1 {
    font-size: 39px;
  }

  .corporate-hero-links,
  .home-case-grid,
  .application-groups,
  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .corporate-hero-links a {
    min-height: 86px;
    padding: 18px;
  }

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

  .cta-band {
    padding: 58px 0;
  }

  body:not(.home-hero-dome):not(.products-page):not(.product-detail-b) .page-hero {
    padding: 126px 0 60px;
  }

  .footer-inner {
    padding-top: 44px;
  }
}

/* NGB NETZSCH behavior reference layer: Dewei content, safer structural emulation. */
:root {
  --ngb-green: #004896;
  --ngb-green-deep: #002b59;
  --ngb-green-mid: #005aa9;
  --ngb-amber: #fbaa1d;
  --ngb-ink: #17323f;
  --ngb-muted: rgba(23, 50, 63, 0.68);
  --ngb-border: rgba(10, 48, 58, 0.14);
}

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 86px;
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(12, 49, 60, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--ngb-green);
  z-index: 2;
}

.site-header::after {
  height: 0 !important;
  opacity: 0 !important;
}

.site-header .nav {
  min-height: 86px;
  height: 86px;
  width: min(100% - 7.5vw, 1360px);
}

.nav-links {
  gap: 0;
}

.nav-links a {
  min-height: 86px;
  border-left: 1px solid rgba(10, 48, 58, 0.05);
  border-bottom: 0;
  color: rgba(21, 49, 61, 0.86) !important;
  background: transparent !important;
}

.nav-links a:last-child {
  border-right: 1px solid rgba(10, 48, 58, 0.05);
}

.nav-links a::after {
  left: 50%;
  right: auto;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--ngb-green);
  transform: translateX(-50%) scaleX(0);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ngb-green-deep) !important;
  font-weight: 800;
}

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

.nav-mega {
  top: 86px;
  width: 100vw;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 32px 70px rgba(10, 48, 58, 0.16);
  transform: translate(-50%, -12px);
}

.nav-mega::before {
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.90)),
    linear-gradient(135deg, rgba(0, 72, 150, 0.10), rgba(251, 170, 29, 0.05));
  border: 0;
}

.nav-mega-inner {
  width: min(100% - 12vw, 1360px);
  margin: 0 auto;
  padding: 34px 0 38px;
  grid-template-columns: minmax(260px, 0.30fr) minmax(0, 0.70fr);
  gap: 42px;
}

.nav-mega-copy {
  padding: 8px 36px 8px 0;
  border-right: 1px solid #dddddd;
}

.nav-mega-eyebrow {
  color: var(--ngb-green-mid);
}

.nav-mega-eyebrow::before {
  background: var(--ngb-amber);
}

.nav-mega-copy strong {
  color: var(--ngb-ink);
  font-size: 24px;
}

.nav-mega-copy p {
  color: var(--ngb-muted);
  font-size: 14px;
}

.nav-mega-cta {
  color: var(--ngb-green-deep);
  border: 1px solid var(--ngb-border);
  background: #ffffff;
}

.nav-mega-cta:hover {
  color: #ffffff;
  border-color: var(--ngb-green);
  background: var(--ngb-green);
}

.nav-mega-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ngb-border);
  border-left: 1px solid var(--ngb-border);
}

.nav-mega-list a {
  min-height: 82px;
  padding: 17px 18px;
  border: 0;
  border-right: 1px solid var(--ngb-border);
  border-bottom: 1px solid var(--ngb-border);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.nav-mega-list a:hover,
.nav-mega-list a:focus {
  transform: none;
  border-color: var(--ngb-border);
  background: #f1f6fb;
  outline: none;
}

.nav-mega-list span {
  color: var(--ngb-ink);
  font-size: 14px;
}

.nav-mega-list em {
  color: rgba(23, 50, 63, 0.58);
  font-size: 12px;
}

.online-consult {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 980;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

body.ngb-scrolled .online-consult {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.online-consult-main,
.online-consult-backtop {
  width: 68px;
  height: 68px;
  min-height: 68px;
  border: 0;
  border-radius: 0;
  background: var(--ngb-green);
  color: #ffffff;
  box-shadow: none;
  cursor: pointer;
}

.online-consult-main {
  padding: 8px 10px;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
}

.online-consult-backtop {
  display: grid;
  place-items: center;
  font: 700 26px/1 Arial, sans-serif;
}

.online-consult-main::before {
  display: none;
}

.online-consult-main:hover,
.online-consult-backtop:hover {
  background: var(--ngb-green-mid);
  transform: none;
}

.online-consult-panel {
  position: absolute;
  top: 0;
  right: 69px;
  width: 250px;
  min-height: 137px;
  border: 0;
  border-radius: 0;
  background: var(--ngb-green);
  box-shadow: none;
  transform: translateX(10px);
}

.online-consult:hover .online-consult-panel,
.online-consult:focus-within .online-consult-panel {
  transform: translateX(0);
}

.online-consult-panel strong,
.online-consult-panel p {
  color: #ffffff;
}

.online-consult-actions a {
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 0;
  color: #ffffff;
}

.online-consult-actions a:hover {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.10);
}

@media (min-width: 1000px) {
  body {
    background: var(--ngb-green-deep);
  }

  main {
    position: relative;
    z-index: 3;
    margin-bottom: clamp(470px, 46vw, 620px);
    background: #fefefe;
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.20);
  }

  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-height: 540px;
    height: clamp(520px, 42vw, 620px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
      linear-gradient(135deg, rgba(0, 43, 89, 0.97), rgba(0, 33, 68, 0.98)),
      radial-gradient(circle at 72% 28%, rgba(251, 170, 29, 0.16), transparent 34%);
  }

  .footer::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
  }

  .footer-inner {
    width: min(100% - 12vw, 1360px);
    padding-top: 58px;
    padding-bottom: 28px;
    grid-template-columns: 1.15fr repeat(3, minmax(0, 0.8fr));
    gap: 42px;
    border-top: 7px solid var(--ngb-green);
  }

  .footer-bottom-inner {
    width: min(100% - 12vw, 1360px);
  }
}

@media (max-width: 1100px) {
  .nav-mega {
    display: none;
  }

  .site-header,
  .site-header .nav,
  .nav-links a {
    min-height: 72px;
  }

  .site-header .nav {
    height: 72px;
    width: min(100% - 24px, 1180px);
  }

  .online-consult {
    top: auto;
    right: auto;
    bottom: 74px;
    left: 16px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .online-consult-main,
  .online-consult-backtop {
    width: 46px;
    height: 46px;
    min-height: 46px;
    font-size: 0;
  }

  .online-consult-main::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 50%;
  }

  .online-consult-backtop {
    display: none;
  }
}

/* Blue trial recolor from the user's equipment-frame reference image. */
:root {
  --blue: #004896;
  --blue-dark: #00366f;
  --blue-deep: #002b59;
  --teal: #005aa9;
  --lime: #d8eaf8;
  --industrial-green: #004896;
  --industrial-green-dark: #00366f;
  --industrial-mist: #e8f1f8;
  --corp-green: #004896;
  --corp-green-deep: #00366f;
  --corp-green-soft: #e7f0f8;
  --corp-line: rgba(0, 72, 150, 0.15);
  --corp-paper: #f4f7fb;
  --netzsch-green: #004896;
  --netzsch-green-2: #005aa9;
  --netzsch-green-3: #002b59;
  --netzsch-bg: #f4f7fb;
  --netzsch-border: rgba(0, 72, 150, 0.15);
  --ngb-green: #004896;
  --ngb-green-deep: #002b59;
  --ngb-green-mid: #005aa9;
  --ngb-border: rgba(0, 72, 150, 0.15);
}

body.home-hero-dome .site-header::after,
body.products-page .site-header::after,
body.product-detail-b .site-header::after,
body:not(.home-hero-dome):has(.page-hero) .site-header::after {
  background: linear-gradient(90deg, var(--corp-green), #0d63ad 42%, #d58936);
}

body.home-hero-dome .hero {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.96) 0%, rgba(0, 72, 150, 0.90) 34%, rgba(0, 72, 150, 0.44) 62%, rgba(0, 72, 150, 0.12) 100%),
    url("../images/factory-production-line.webp") center / cover no-repeat;
}

body.products-page .page-hero {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.92), rgba(0, 72, 150, 0.68) 42%, rgba(0, 72, 150, 0.16)),
    url("../images/hero-workshop.jpg") center / cover no-repeat;
}

body:not(.home-hero-dome):not(.products-page):not(.product-detail-b) .page-hero {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.94), rgba(0, 72, 150, 0.72) 46%, rgba(0, 72, 150, 0.18)),
    url("../images/factory-cleanroom.webp") center / cover no-repeat;
}

body.product-detail-b .pd-top-hero {
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 1), rgba(244, 247, 251, 0.94) 46%, rgba(231, 240, 248, 0.76)),
    url("../images/hero-powder-system.webp") right center / contain no-repeat;
}

.nav-mega::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.90)),
    linear-gradient(135deg, rgba(0, 72, 150, 0.10), rgba(251, 170, 29, 0.05));
}

.nav-mega-list a:hover,
.nav-mega-list a:focus {
  background: #f1f6fb;
}

.industry-tile {
  background:
    linear-gradient(180deg, rgba(0, 72, 150, 0.04), rgba(0, 72, 150, 0.12)),
    #ffffff;
}

body.home-hero-dome #products .home-product-grid .product-media,
body.products-page .product-directory-grid .product-media {
  background-color: #e8f1f8;
}

.home-case-item.is-featured {
  background:
    linear-gradient(180deg, rgba(0, 72, 150, 0.88), rgba(0, 43, 89, 0.96)),
    url("../images/case-lfp-line.jpg") center / cover no-repeat;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.94), rgba(0, 72, 150, 0.86)),
    url("../images/hero-pipes-valve.jpg") center / cover no-repeat;
}

.application-list a,
.application-list-item {
  background: #f6f9fc;
}

@media (min-width: 1000px) {
  .footer {
    background:
      linear-gradient(135deg, rgba(0, 43, 89, 0.97), rgba(0, 33, 68, 0.98)),
      radial-gradient(circle at 72% 28%, rgba(251, 170, 29, 0.16), transparent 34%);
  }
}

/* Homepage blue cinematic hero: a full-cover blue opening panel reveals the current factory image. */
body.home-hero-dome .hero-cinematic {
  min-height: 100vh;
  min-height: 100svh;
  padding: 126px 0 72px;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(0, 31, 66, 0.96) 0%, rgba(0, 72, 150, 0.72) 34%, rgba(0, 72, 150, 0.18) 68%, rgba(0, 43, 89, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 20, 42, 0.30), rgba(0, 20, 42, 0.08) 34%, rgba(0, 20, 42, 0.22) 100%),
    url("../images/factory-production-line.webp") center top / cover no-repeat;
}

body.home-hero-dome .hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(112deg, rgba(0, 33, 68, 0.98) 0%, rgba(0, 72, 150, 0.98) 42%, rgba(0, 90, 169, 0.92) 72%, rgba(0, 43, 89, 0.96) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.075) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.050) 0 1px, transparent 1px 86px);
  box-shadow: none;
  filter: none;
  transform: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: heroBlueCoverOpen 4.8s cubic-bezier(0.20, 0.80, 0.18, 1) 0.15s forwards;
  will-change: clip-path, opacity;
}

body.home-hero-dome .hero-cinematic::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 2;
  width: min(58vw, 760px);
  height: 100%;
  background:
    linear-gradient(112deg, transparent 0 40%, rgba(251, 170, 29, 0.86) 40% 46%, transparent 46% 100%),
    linear-gradient(90deg, transparent 0 38%, rgba(255, 255, 255, 0.12) 38% 39%, transparent 39% 100%);
  opacity: 0.96;
  transform: translateX(20%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  animation: heroBlueEdgeSweep 4.8s cubic-bezier(0.20, 0.80, 0.18, 1) 0.15s forwards;
  pointer-events: none;
}

body.home-hero-dome .hero-cinematic .hero-inner {
  z-index: 4;
  align-content: center;
  padding-top: 34px;
  padding-bottom: 38px;
}

body.home-hero-dome .hero-cinematic .hero-eyebrow,
body.home-hero-dome .hero-cinematic h1,
body.home-hero-dome .hero-cinematic .hero-lead,
body.home-hero-dome .hero-cinematic .corporate-hero-links {
  text-shadow: 0 16px 38px rgba(0, 20, 42, 0.38);
}

body.home-hero-dome .hero-cinematic .corporate-hero-links {
  background: rgba(0, 43, 89, 0.24);
  backdrop-filter: blur(8px);
}

body.home-hero-dome .hero-cinematic #hero-canvas,
body.home-hero-dome .hero-cinematic .hero-flow {
  z-index: 3;
}

@keyframes heroBlueCoverOpen {
  0%,
  18% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  64% {
    opacity: 0.96;
    clip-path: polygon(0 0, 62% 0, 50% 100%, 0 100%);
  }
  100% {
    opacity: 0.88;
    clip-path: polygon(0 0, 34% 0, 22% 100%, 0 100%);
  }
}

@keyframes heroBlueEdgeSweep {
  0%,
  18% {
    transform: translateX(0);
    opacity: 0;
  }
  58% {
    transform: translateX(-20%);
    opacity: 0.92;
  }
  100% {
    transform: translateX(-54%);
    opacity: 0.82;
  }
}

@media (max-width: 1100px) {
  body.home-hero-dome .hero-cinematic {
    min-height: 100svh;
    padding: 108px 0 58px;
    background-position: 58% top;
  }

  body.home-hero-dome .hero-cinematic::before {
    animation-duration: 4.2s;
  }

  body.home-hero-dome .hero-cinematic::after {
    width: 86vw;
  }
}

@media (max-width: 680px) {
  body.home-hero-dome .hero-cinematic {
    min-height: 100svh;
    padding: 92px 0 44px;
    background:
      linear-gradient(180deg, rgba(0, 31, 66, 0.94) 0%, rgba(0, 72, 150, 0.76) 52%, rgba(0, 31, 66, 0.52) 100%),
      url("../images/factory-production-line.webp") 62% top / cover no-repeat;
  }

  body.home-hero-dome .hero-cinematic::before {
    clip-path: polygon(0 0, 100% 0, 100% 62%, 0 78%);
    animation-name: heroBlueCoverOpenMobile;
  }

  body.home-hero-dome .hero-cinematic::after {
    display: none;
  }
}

@keyframes heroBlueCoverOpenMobile {
  0%,
  18% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    opacity: 0.82;
    clip-path: polygon(0 0, 100% 0, 100% 34%, 0 50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-hero-dome .hero-cinematic::before,
  body.home-hero-dome .hero-cinematic::after {
    animation: none !important;
  }

  body.home-hero-dome .hero-cinematic::before {
    opacity: 0.88;
    clip-path: polygon(0 0, 34% 0, 22% 100%, 0 100%);
  }

  body.home-hero-dome .hero-cinematic::after {
    transform: translateX(-54%);
    opacity: 0.82;
  }
}

/* Page-turn hero revision: yellow edge moves left, blue side covers the image, right side stays photographic. */
body.home-hero-dome .hero-cinematic {
  --hero-turn-blue: #004896;
  --hero-turn-blue-deep: #002b59;
  --hero-turn-yellow: #e0a432;
  min-height: 100vh;
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(0, 20, 42, 0.12) 0%, transparent 34%, rgba(0, 20, 42, 0.16) 100%),
    url("../images/factory-production-line.webp") center top / cover no-repeat;
}

body.home-hero-dome .hero-cinematic #hero-canvas,
body.home-hero-dome .hero-cinematic .hero-cosmos,
body.home-hero-dome .hero-cinematic .hero-flow,
body.home-hero-dome .hero-cinematic .hero-motion {
  display: none !important;
}

body.home-hero-dome .hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background: var(--hero-turn-blue);
  box-shadow: none;
  filter: none;
  transform: none;
  clip-path: polygon(0 0, 98% 0, 86% 100%, 0 100%);
  animation: heroPageTurnBlue 4.4s cubic-bezier(0.18, 0.82, 0.20, 1) 0.12s forwards;
  will-change: clip-path;
}

body.home-hero-dome .hero-cinematic::after {
  content: "";
  position: absolute;
  top: -20vh;
  left: 0;
  z-index: 2;
  width: clamp(54px, 5.8vw, 92px);
  height: 140vh;
  background:
    linear-gradient(90deg, rgba(154, 98, 18, 0.92) 0%, rgba(224, 164, 50, 0.98) 42%, rgba(247, 199, 82, 0.92) 64%, rgba(173, 112, 20, 0.96) 100%);
  box-shadow:
    -34px 0 64px rgba(0, 43, 89, 0.38),
    18px 0 42px rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translate3d(92vw, 18vh, 0) skewX(-18deg);
  transform-origin: center bottom;
  animation: heroPageTurnYellow 4.4s cubic-bezier(0.18, 0.82, 0.20, 1) 0.12s forwards;
  pointer-events: none;
  will-change: transform, opacity;
}

body.home-hero-dome .hero-cinematic .hero-inner {
  z-index: 4;
}

body.home-hero-dome .hero-cinematic .corporate-hero-links {
  background: rgba(0, 43, 89, 0.18);
  border-color: rgba(255, 255, 255, 0.30);
}

@keyframes heroPageTurnBlue {
  0%,
  14% {
    clip-path: polygon(0 0, 98% 0, 86% 100%, 0 100%);
  }
  62% {
    clip-path: polygon(0 0, 66% 0, 52% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 58% 0, 43% 100%, 0 100%);
  }
}

@keyframes heroPageTurnYellow {
  0%,
  14% {
    opacity: 0;
    transform: translate3d(92vw, 18vh, 0) skewX(-18deg);
  }
  22% {
    opacity: 0.98;
    transform: translate3d(86vw, 10vh, 0) skewX(-18deg);
  }
  62% {
    opacity: 0.98;
    transform: translate3d(57vw, 0, 0) skewX(-18deg);
  }
  100% {
    opacity: 0.96;
    transform: translate3d(46vw, 0, 0) skewX(-18deg);
  }
}

@media (max-width: 1100px) {
  body.home-hero-dome .hero-cinematic::before {
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    animation-name: heroPageTurnBlueTablet;
  }

  body.home-hero-dome .hero-cinematic::after {
    width: clamp(44px, 7vw, 72px);
    transform: translate3d(94vw, 14vh, 0) skewX(-16deg);
    animation-name: heroPageTurnYellowTablet;
  }
}

@keyframes heroPageTurnBlueTablet {
  0%,
  14% {
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 76% 0, 60% 100%, 0 100%);
  }
}

@keyframes heroPageTurnYellowTablet {
  0%,
  14% {
    opacity: 0;
    transform: translate3d(94vw, 14vh, 0) skewX(-16deg);
  }
  100% {
    opacity: 0.96;
    transform: translate3d(68vw, 0, 0) skewX(-16deg);
  }
}

@media (max-width: 680px) {
  body.home-hero-dome .hero-cinematic {
    background:
      linear-gradient(180deg, rgba(0, 20, 42, 0.10), rgba(0, 20, 42, 0.18)),
      url("../images/factory-production-line.webp") 62% top / cover no-repeat;
  }

  body.home-hero-dome .hero-cinematic::before {
    animation-name: heroPageTurnBlueMobile;
  }

  body.home-hero-dome .hero-cinematic::after {
    display: block;
    top: -16vh;
    height: 132vh;
    width: 42px;
    animation-name: heroPageTurnYellowMobile;
  }
}

@keyframes heroPageTurnBlueMobile {
  0%,
  14% {
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 90% 0, 76% 100%, 0 100%);
  }
}

@keyframes heroPageTurnYellowMobile {
  0%,
  14% {
    opacity: 0;
    transform: translate3d(96vw, 12vh, 0) skewX(-15deg);
  }
  100% {
    opacity: 0.96;
    transform: translate3d(82vw, 0, 0) skewX(-15deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-hero-dome .hero-cinematic::before {
    animation: none !important;
    clip-path: polygon(0 0, 58% 0, 43% 100%, 0 100%);
  }

  body.home-hero-dome .hero-cinematic::after {
    animation: none !important;
    opacity: 0.96;
    transform: translate3d(46vw, 0, 0) skewX(-18deg);
  }
}

/* Corrected page-turn: the yellow strip shares its left edge with the blue mask. */
body.home-hero-dome .hero-cinematic {
  --hero-turn-blue: #004896;
  --hero-turn-yellow: #e0a432;
  background:
    url("../images/factory-production-line.webp") center top / cover no-repeat;
}

body.home-hero-dome .hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border: 0;
  border-radius: 0;
  background: var(--hero-turn-blue);
  box-shadow: none;
  filter: none;
  transform: none !important;
  opacity: 1;
  clip-path: polygon(0 0, 112% 0, 96% 100%, 0 100%);
  animation: heroPageTurnBlueLocked 4.2s cubic-bezier(0.18, 0.82, 0.20, 1) 0.1s forwards !important;
}

body.home-hero-dome .hero-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(154, 96, 15, 0.96), rgba(224, 164, 50, 1) 42%, rgba(249, 205, 91, 0.98) 58%, rgba(173, 111, 18, 0.94));
  box-shadow:
    -26px 0 52px rgba(0, 43, 89, 0.32),
    18px 0 36px rgba(255, 255, 255, 0.20);
  opacity: 1;
  transform: none !important;
  clip-path: polygon(112% 0, 119% 0, 103% 100%, 96% 100%);
  animation: heroPageTurnYellowLocked 4.2s cubic-bezier(0.18, 0.82, 0.20, 1) 0.1s forwards !important;
  pointer-events: none;
}

body.home-hero-dome .hero-cinematic .hero-inner {
  position: relative;
  z-index: 4;
}

/* Final homepage hero reveal: start blue, then bring in the equipment scene after a short pause. */
body.home-hero-dome .hero-cinematic {
  isolation: isolate;
  overflow: hidden;
  background: #004896 !important;
}

body.home-hero-dome .hero-cinematic::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("../images/factory-production-line.webp") 66% top / cover no-repeat;
  opacity: 0;
  transform: translateX(3.5%) scale(1.02);
  animation: homeEquipmentSceneIn 1.15s cubic-bezier(.2, .72, .18, 1) 1.5s forwards;
  clip-path: none !important;
  pointer-events: none;
}

body.home-hero-dome .hero-cinematic::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(0, 43, 89, 0.98) 0%,
      rgba(0, 72, 150, 0.92) 24%,
      rgba(0, 72, 150, 0.70) 43%,
      rgba(0, 72, 150, 0.28) 60%,
      rgba(0, 72, 150, 0.00) 78%),
    linear-gradient(180deg, rgba(0, 72, 150, 0.12) 0%, rgba(0, 72, 150, 0.00) 54%, rgba(238, 246, 250, 0.92) 100%);
  opacity: 0;
  animation: homeEquipmentOverlayIn 1.05s ease 1.5s forwards;
  clip-path: none !important;
  pointer-events: none;
}

body.home-hero-dome .hero-cinematic .hero-inner {
  position: relative;
  z-index: 3;
}

body.home-hero-dome .hero-cinematic .hero-eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

body.home-hero-dome .hero-cinematic h1 {
  max-width: 760px;
  color: #ffffff;
  text-shadow: 0 18px 44px rgba(0, 28, 61, 0.32);
}

body.home-hero-dome .hero-cinematic h1 em {
  color: #ffffff;
  font-style: normal;
}

body.home-hero-dome .hero-cinematic .hero-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.91);
  text-shadow: 0 10px 24px rgba(0, 30, 62, 0.28);
}

@keyframes homeEquipmentSceneIn {
  0% {
    opacity: 0;
    transform: translateX(9%) scale(1.04);
    filter: saturate(0.92) contrast(1.04);
  }
  100% {
    opacity: 1;
    transform: translateX(3.5%) scale(1.02);
    filter: saturate(0.95) contrast(1.04);
  }
}

@keyframes homeEquipmentOverlayIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  body.home-hero-dome .hero-cinematic::before {
    background-position: 70% top;
    transform: translateX(0) scale(1.04);
  }

  body.home-hero-dome .hero-cinematic::after {
    background:
      linear-gradient(90deg,
        rgba(0, 43, 89, 0.98) 0%,
        rgba(0, 72, 150, 0.88) 38%,
        rgba(0, 72, 150, 0.40) 72%,
        rgba(0, 72, 150, 0.04) 100%),
      linear-gradient(180deg, rgba(0, 72, 150, 0.10) 0%, rgba(238, 246, 250, 0.90) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-hero-dome .hero-cinematic::before,
  body.home-hero-dome .hero-cinematic::after {
    animation: none !important;
    opacity: 1;
  }
}

/* Final product detail restoration: keep the four machine callouts visible and interactive. */
body.product-detail-b .pd-equipment-stage {
  overflow: visible !important;
}

body.product-detail-b .pd-callout {
  display: block !important;
  pointer-events: auto;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 0.22s cubic-bezier(.18, .72, .18, 1),
    filter 0.22s ease,
    opacity 0.22s ease;
}

body.product-detail-b .pd-callout::before {
  inset: -18px;
}

body.product-detail-b .pd-callout-label {
  min-width: 104px;
  height: 36px;
  padding: 0 14px;
  border-radius: 4px;
  border-color: rgba(0, 72, 150, 0.28);
  background: rgba(255, 255, 255, 0.96);
  color: #00366f;
  box-shadow:
    0 10px 24px rgba(0, 72, 150, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s cubic-bezier(.18, .72, .18, 1);
}

body.product-detail-b .pd-callout-line {
  background: linear-gradient(90deg, rgba(33, 177, 224, 0.92), rgba(0, 72, 150, 0.18));
  transition: background 0.2s ease, filter 0.2s ease;
}

body.product-detail-b .pd-callout-dot {
  background: #21b1e0;
  box-shadow:
    0 0 0 4px rgba(33, 177, 224, 0.16),
    0 0 18px rgba(33, 177, 224, 0.34);
  animation: productCalloutPulse 2.6s ease-in-out infinite;
}

body.product-detail-b .pd-callout-wheel {
  left: 28px;
  top: 28px;
  width: 322px;
  height: 104px;
}

body.product-detail-b .pd-callout-nozzle {
  right: 28px;
  top: 42px;
  width: 252px;
  height: 118px;
}

body.product-detail-b .pd-callout-chamber {
  left: 30px;
  bottom: 42px;
  width: 330px;
  height: 78px;
}

body.product-detail-b .pd-callout-recycle {
  right: 28px;
  bottom: 42px;
  width: 282px;
  height: 84px;
}

body.product-detail-b .pd-callout:hover,
body.product-detail-b .pd-callout:focus-visible {
  filter: drop-shadow(0 18px 26px rgba(0, 72, 150, 0.18));
  outline: none;
}

body.product-detail-b .pd-callout-wheel:hover,
body.product-detail-b .pd-callout-wheel:focus-visible {
  transform: translate3d(-4px, -7px, 0) scale(1.035);
}

body.product-detail-b .pd-callout-nozzle:hover,
body.product-detail-b .pd-callout-nozzle:focus-visible {
  transform: translate3d(5px, -7px, 0) scale(1.035);
}

body.product-detail-b .pd-callout-chamber:hover,
body.product-detail-b .pd-callout-chamber:focus-visible {
  transform: translate3d(-5px, 6px, 0) scale(1.035);
}

body.product-detail-b .pd-callout-recycle:hover,
body.product-detail-b .pd-callout-recycle:focus-visible {
  transform: translate3d(5px, 6px, 0) scale(1.035);
}

body.product-detail-b .pd-callout:hover .pd-callout-label,
body.product-detail-b .pd-callout:focus-visible .pd-callout-label {
  background: #004896;
  color: #ffffff;
  border-color: #004896;
  box-shadow:
    0 14px 28px rgba(0, 72, 150, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

body.product-detail-b .pd-callout:hover .pd-callout-line,
body.product-detail-b .pd-callout:focus-visible .pd-callout-line {
  background: linear-gradient(90deg, rgba(245, 148, 35, 0.95), rgba(33, 177, 224, 0.74));
  filter: drop-shadow(0 0 8px rgba(33, 177, 224, 0.38));
}

body.product-detail-b .pd-callout:hover .pd-callout-dot,
body.product-detail-b .pd-callout:focus-visible .pd-callout-dot {
  background: #f59423;
  box-shadow:
    0 0 0 6px rgba(245, 148, 35, 0.18),
    0 0 20px rgba(245, 148, 35, 0.42);
}

@keyframes productCalloutPulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(33, 177, 224, 0.16),
      0 0 16px rgba(33, 177, 224, 0.28);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(33, 177, 224, 0.08),
      0 0 22px rgba(33, 177, 224, 0.38);
  }
}

@media (max-width: 760px) {
  body.product-detail-b .pd-equipment-stage {
    overflow: hidden !important;
  }

  body.product-detail-b .pd-callout-label {
    min-width: 82px;
    height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  body.product-detail-b .pd-callout-wheel {
    left: 8px;
    top: 22px;
    width: 206px;
    height: 66px;
  }

  body.product-detail-b .pd-callout-nozzle {
    right: 8px;
    top: 28px;
    width: 144px;
    height: 78px;
  }

  body.product-detail-b .pd-callout-chamber {
    left: 8px;
    bottom: 40px;
    width: 214px;
    height: 52px;
  }

  body.product-detail-b .pd-callout-recycle {
    right: 8px;
    bottom: 36px;
    width: 152px;
    height: 58px;
  }
}

/* Final header scope: blue only while the homepage hero is still under the header. */
body:not(.home-hero-dome) .site-header,
body.home-hero-dome.ngb-past-hero .site-header {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 12px 32px rgba(12, 49, 60, 0.08) !important;
}

body:not(.home-hero-dome) .site-header::before,
body.home-hero-dome.ngb-past-hero .site-header::before {
  background: var(--ngb-green) !important;
}

body:not(.home-hero-dome) .site-header .brand,
body.home-hero-dome.ngb-past-hero .site-header .brand {
  border-right-color: rgba(10, 48, 58, 0.08) !important;
}

body:not(.home-hero-dome) .site-header .brand-logo,
body.home-hero-dome.ngb-past-hero .site-header .brand-logo {
  filter: none !important;
  opacity: 1;
}

body:not(.home-hero-dome) .site-header .nav-links a,
body.home-hero-dome.ngb-past-hero .site-header .nav-links a {
  color: rgba(21, 49, 61, 0.86) !important;
  border-left-color: rgba(10, 48, 58, 0.05) !important;
  background: transparent !important;
}

body:not(.home-hero-dome) .site-header .nav-links a:last-child,
body.home-hero-dome.ngb-past-hero .site-header .nav-links a:last-child {
  border-right-color: rgba(10, 48, 58, 0.05) !important;
}

body:not(.home-hero-dome) .site-header .nav-links a:hover,
body:not(.home-hero-dome) .site-header .nav-links a.active,
body.home-hero-dome.ngb-past-hero .site-header .nav-links a:hover,
body.home-hero-dome.ngb-past-hero .site-header .nav-links a.active {
  color: var(--ngb-green-deep) !important;
  background: rgba(0, 72, 150, 0.06) !important;
}

body:not(.home-hero-dome) .site-header .language,
body.home-hero-dome.ngb-past-hero .site-header .language {
  color: var(--ngb-green-deep) !important;
  background: #e7f0f8 !important;
  border-color: rgba(0, 72, 150, 0.18) !important;
}

body:not(.home-hero-dome) .site-header .nav-actions .btn-primary,
body.home-hero-dome.ngb-past-hero .site-header .nav-actions .btn-primary {
  color: #ffffff !important;
  background: var(--ngb-green) !important;
  border-color: var(--ngb-green) !important;
  box-shadow: 0 12px 28px rgba(0, 72, 150, 0.20) !important;
}

body:not(.home-hero-dome) .site-header .menu-button,
body.home-hero-dome.ngb-past-hero .site-header .menu-button {
  color: var(--ngb-green-deep) !important;
  background: #ffffff !important;
  border-color: rgba(0, 72, 150, 0.20) !important;
}

/* Final navigation state: blue at rest, current white panel on hover/open. */
.site-header {
  background: #004896 !important;
  border-bottom-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: none !important;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-header:hover,
.site-header:focus-within,
.site-header.mega-open {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 12px 32px rgba(12, 49, 60, 0.08) !important;
}

.site-header::before {
  background: rgba(255, 255, 255, 0.10) !important;
  transition: background 0.22s ease;
}

.site-header:hover::before,
.site-header:focus-within::before,
.site-header.mega-open::before {
  background: var(--ngb-green) !important;
}

.site-header .brand {
  border-right-color: rgba(255, 255, 255, 0.20) !important;
}

.site-header:hover .brand,
.site-header:focus-within .brand,
.site-header.mega-open .brand {
  border-right-color: rgba(10, 48, 58, 0.08) !important;
}

.site-header .brand-logo {
  filter: brightness(0) invert(1) !important;
  opacity: 0.98;
  transition: filter 0.22s ease, opacity 0.22s ease;
}

.site-header:hover .brand-logo,
.site-header:focus-within .brand-logo,
.site-header.mega-open .brand-logo {
  filter: none !important;
  opacity: 1;
}

.site-header .nav-links a {
  color: rgba(255, 255, 255, 0.92) !important;
  border-left-color: rgba(255, 255, 255, 0.12) !important;
  background: transparent !important;
}

.site-header .nav-links a:last-child {
  border-right-color: rgba(255, 255, 255, 0.12) !important;
}

.site-header .nav-links a::after {
  background: #fbaa1d !important;
}

.site-header .nav-links a:hover,
.site-header .nav-links a.active {
  color: #ffffff !important;
}

.site-header:hover .nav-links a,
.site-header:focus-within .nav-links a,
.site-header.mega-open .nav-links a {
  color: rgba(21, 49, 61, 0.86) !important;
  border-left-color: rgba(10, 48, 58, 0.05) !important;
}

.site-header:hover .nav-links a:last-child,
.site-header:focus-within .nav-links a:last-child,
.site-header.mega-open .nav-links a:last-child {
  border-right-color: rgba(10, 48, 58, 0.05) !important;
}

.site-header:hover .nav-links a:hover,
.site-header:hover .nav-links a.active,
.site-header:focus-within .nav-links a:hover,
.site-header:focus-within .nav-links a.active,
.site-header.mega-open .nav-links a:hover,
.site-header.mega-open .nav-links a.active {
  color: var(--ngb-green-deep) !important;
  background: rgba(0, 72, 150, 0.06) !important;
}

.site-header .language {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
}

.site-header:hover .language,
.site-header:focus-within .language,
.site-header.mega-open .language {
  color: var(--ngb-green-deep) !important;
  background: #e7f0f8 !important;
  border-color: rgba(0, 72, 150, 0.18) !important;
}

.site-header .nav-actions .btn-primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, #f28c19, #c86a08) !important;
  border-color: rgba(255, 188, 92, 0.72) !important;
  box-shadow: 0 14px 30px rgba(0, 24, 54, 0.18) !important;
}

.site-header:hover .nav-actions .btn-primary,
.site-header:focus-within .nav-actions .btn-primary,
.site-header.mega-open .nav-actions .btn-primary {
  color: #ffffff !important;
  background: var(--ngb-green) !important;
  border-color: var(--ngb-green) !important;
  box-shadow: 0 12px 28px rgba(0, 72, 150, 0.20) !important;
}

.site-header .menu-button {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
}

.site-header:hover .menu-button,
.site-header:focus-within .menu-button,
.site-header.mega-open .menu-button {
  color: var(--ngb-green-deep) !important;
  background: #ffffff !important;
  border-color: rgba(0, 72, 150, 0.20) !important;
}

/* Final hero CTA entry: the two buttons slide in from the right like accelerated marbles. */
body.home-hero-dome .hero-cinematic .hero-actions {
  overflow: visible;
}

body.home-hero-dome .hero-cinematic .hero-actions .btn {
  will-change: transform, opacity;
  animation: heroCtaMarbleIn 1.12s cubic-bezier(0.10, 0.88, 0.18, 1) backwards;
}

body.home-hero-dome .hero-cinematic .hero-actions .btn:nth-child(1) {
  animation-delay: 0.28s;
}

body.home-hero-dome .hero-cinematic .hero-actions .btn:nth-child(2) {
  animation-delay: 0.45s;
}

@keyframes heroCtaMarbleIn {
  0% {
    opacity: 0;
    transform: translate3d(92vw, 0, 0) scaleX(0.96);
  }
  58% {
    opacity: 1;
    transform: translate3d(-18px, 0, 0) scaleX(1.02);
  }
  74% {
    transform: translate3d(8px, 0, 0) scaleX(0.995);
  }
  88% {
    transform: translate3d(-3px, 0, 0) scaleX(1.002);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(1);
  }
}

@media (max-width: 680px) {
  body.home-hero-dome .hero-cinematic .hero-actions .btn {
    animation-duration: 0.96s;
  }

  body.home-hero-dome .hero-cinematic .hero-actions .btn:nth-child(1) {
    animation-delay: 0.20s;
  }

  body.home-hero-dome .hero-cinematic .hero-actions .btn:nth-child(2) {
    animation-delay: 0.34s;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-hero-dome .hero-cinematic .hero-actions .btn {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Final homepage readability and menu-hover pass. */
.nav-mega-list a:hover,
.nav-mega-list a:focus,
.nav-mega-list a:focus-visible {
  background: linear-gradient(135deg, #005aa9 0%, #004896 62%, #00366f 100%) !important;
  border-color: rgba(0, 72, 150, 0.92) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    0 14px 30px rgba(0, 72, 150, 0.20) !important;
  outline: none;
}

.nav-mega-list a:hover span,
.nav-mega-list a:focus span,
.nav-mega-list a:focus-visible span,
.nav-mega-list a:hover em,
.nav-mega-list a:focus em,
.nav-mega-list a:focus-visible em {
  color: #ffffff !important;
}

.nav-mega-list a:hover em,
.nav-mega-list a:focus em,
.nav-mega-list a:focus-visible em {
  color: rgba(255, 255, 255, 0.78) !important;
}

.industry-tile::after {
  background:
    linear-gradient(0deg, rgba(0, 16, 34, 0.82) 0%, rgba(0, 26, 55, 0.55) 42%, rgba(0, 32, 66, 0.32) 100%) !important;
  opacity: 1 !important;
}

.industry-tile:hover::after {
  opacity: 0.92 !important;
}

.industry-tile-body {
  display: flex;
  min-height: auto !important;
  max-width: min(100%, 360px);
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px !important;
  border-left: 3px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(90deg, rgba(0, 28, 58, 0.70), rgba(0, 28, 58, 0.24) 72%, transparent);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.50);
}

.industry-tile h3,
.industry-tile-body h3 {
  color: #ffffff !important;
  font-weight: 900;
}

.industry-tile-body p {
  color: rgba(255, 255, 255, 0.90) !important;
}

.industry-tile-arrow {
  color: #73bbff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.50);
}

@keyframes heroPageTurnBlueLocked {
  0%,
  14% {
    clip-path: polygon(0 0, 112% 0, 96% 100%, 0 100%);
  }
  52% {
    clip-path: polygon(0 0, 74% 0, 58% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
  }
}

@keyframes heroPageTurnYellowLocked {
  0%,
  14% {
    clip-path: polygon(112% 0, 119% 0, 103% 100%, 96% 100%);
  }
  52% {
    clip-path: polygon(74% 0, 81% 0, 65% 100%, 58% 100%);
  }
  100% {
    clip-path: polygon(58% 0, 65% 0, 49% 100%, 42% 100%);
  }
}

@media (max-width: 1100px) {
  body.home-hero-dome .hero-cinematic::before {
    animation-name: heroPageTurnBlueLockedTablet !important;
  }

  body.home-hero-dome .hero-cinematic::after {
    animation-name: heroPageTurnYellowLockedTablet !important;
  }
}

@keyframes heroPageTurnBlueLockedTablet {
  0%,
  14% {
    clip-path: polygon(0 0, 112% 0, 98% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 74% 0, 58% 100%, 0 100%);
  }
}

@keyframes heroPageTurnYellowLockedTablet {
  0%,
  14% {
    clip-path: polygon(112% 0, 121% 0, 107% 100%, 98% 100%);
  }
  100% {
    clip-path: polygon(74% 0, 83% 0, 67% 100%, 58% 100%);
  }
}

@media (max-width: 680px) {
  body.home-hero-dome .hero-cinematic::before {
    animation-name: heroPageTurnBlueLockedMobile !important;
  }

  body.home-hero-dome .hero-cinematic::after {
    animation-name: heroPageTurnYellowLockedMobile !important;
  }
}

@keyframes heroPageTurnBlueLockedMobile {
  0%,
  14% {
    clip-path: polygon(0 0, 116% 0, 104% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 88% 0, 72% 100%, 0 100%);
  }
}

@keyframes heroPageTurnYellowLockedMobile {
  0%,
  14% {
    clip-path: polygon(116% 0, 126% 0, 114% 100%, 104% 100%);
  }
  100% {
    clip-path: polygon(88% 0, 98% 0, 82% 100%, 72% 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-hero-dome .hero-cinematic::before {
    animation: none !important;
    clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
  }

  body.home-hero-dome .hero-cinematic::after {
    animation: none !important;
    clip-path: polygon(58% 0, 65% 0, 49% 100%, 42% 100%);
  }
}

/* Final solid-blue homepage hero: no equipment image, no yellow page-turn strip. */
body.home-hero-dome .hero-cinematic {
  min-height: 100vh;
  min-height: 100svh;
  background: #004896 !important;
}

body.home-hero-dome .hero-cinematic::before,
body.home-hero-dome .hero-cinematic::after {
  content: none !important;
  display: none !important;
  animation: none !important;
  clip-path: none !important;
}

body.home-hero-dome .hero-cinematic #hero-canvas,
body.home-hero-dome .hero-cinematic .hero-cosmos,
body.home-hero-dome .hero-cinematic .hero-flow,
body.home-hero-dome .hero-cinematic .hero-motion {
  display: none !important;
}

body.home-hero-dome .hero-cinematic .hero-inner {
  position: relative;
  z-index: 4;
}

/* True final homepage hero: blue first, real equipment layers fade in after 1.5s. */
body.home-hero-dome .hero-cinematic {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  background: #004896 !important;
}

body.home-hero-dome .hero-cinematic::before,
body.home-hero-dome .hero-cinematic::after {
  content: none !important;
  display: none !important;
  animation: none !important;
  opacity: 0 !important;
  clip-path: none !important;
}

body.home-hero-dome .hero-equipment-scene,
body.home-hero-dome .hero-equipment-shade {
  position: absolute;
  inset: 0;
  display: block !important;
  pointer-events: none;
  opacity: 0;
}

body.home-hero-dome .hero-equipment-scene {
  z-index: 0;
  background: url("../images/factory-production-line.webp") 68% top / cover no-repeat;
  transform: translateX(6%) scale(1.03);
  filter: saturate(0.95) contrast(1.04);
  animation: homeEquipmentSceneDomIn 1.15s cubic-bezier(.2, .72, .18, 1) 1.5s forwards !important;
}

body.home-hero-dome .hero-equipment-shade {
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(0, 43, 89, 0.99) 0%,
      rgba(0, 72, 150, 0.94) 23%,
      rgba(0, 72, 150, 0.76) 42%,
      rgba(0, 72, 150, 0.30) 59%,
      rgba(0, 72, 150, 0.00) 77%),
    linear-gradient(180deg, rgba(0, 72, 150, 0.10) 0%, rgba(0, 72, 150, 0.00) 56%, rgba(238, 246, 250, 0.90) 100%);
  animation: homeEquipmentShadeDomIn 1.05s ease 1.5s forwards !important;
}

body.home-hero-dome .hero-cinematic #hero-canvas,
body.home-hero-dome .hero-cinematic .hero-cosmos,
body.home-hero-dome .hero-cinematic .hero-flow,
body.home-hero-dome .hero-cinematic .hero-motion {
  display: none !important;
}

body.home-hero-dome .hero-cinematic .hero-inner {
  position: relative;
  z-index: 3;
}

body.home-hero-dome .hero-cinematic .hero-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

body.home-hero-dome .hero-cinematic h1,
body.home-hero-dome .hero-cinematic h1 em {
  color: #ffffff;
  font-style: normal;
}

body.home-hero-dome .hero-cinematic h1 {
  max-width: 760px;
  text-shadow: 0 18px 44px rgba(0, 28, 61, 0.32);
}

body.home-hero-dome .hero-cinematic .hero-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 24px rgba(0, 30, 62, 0.30);
}

@keyframes homeEquipmentSceneDomIn {
  0% {
    opacity: 0;
    transform: translateX(12%) scale(1.06);
  }
  100% {
    opacity: 1;
    transform: translateX(6%) scale(1.03);
  }
}

@keyframes homeEquipmentShadeDomIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  body.home-hero-dome .hero-equipment-scene {
    background-position: 72% top;
    transform: translateX(3%) scale(1.05);
  }

  body.home-hero-dome .hero-equipment-shade {
    background:
      linear-gradient(90deg,
        rgba(0, 43, 89, 0.99) 0%,
        rgba(0, 72, 150, 0.90) 40%,
        rgba(0, 72, 150, 0.46) 74%,
        rgba(0, 72, 150, 0.06) 100%),
      linear-gradient(180deg, rgba(0, 72, 150, 0.10) 0%, rgba(238, 246, 250, 0.90) 100%);
  }

  @keyframes homeEquipmentSceneDomIn {
    0% {
      opacity: 0;
      transform: translateX(9%) scale(1.07);
    }
    100% {
      opacity: 1;
      transform: translateX(3%) scale(1.05);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-hero-dome .hero-equipment-scene,
  body.home-hero-dome .hero-equipment-shade {
    animation: none !important;
    opacity: 1;
  }
}

/* Final homepage about layout: keep company photos and metric cards from overlapping. */
body.home-hero-dome .about-band {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #004896 52%, #004896 100%);
  overflow: hidden;
}

body.home-hero-dome .about-inner {
  grid-template-columns: minmax(0, 0.52fr) minmax(440px, 0.48fr);
  gap: 58px;
  align-items: center;
}

body.home-hero-dome .about-side {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  min-width: 0;
}

body.home-hero-dome .about-side .about-photos {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

body.home-hero-dome .about-side .about-photos img {
  height: clamp(168px, 15vw, 220px);
  border: 8px solid rgba(255, 255, 255, 0.94);
  background: #ffffff;
  object-fit: cover;
}

body.home-hero-dome .about-side .about-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 43, 89, 0.20);
}

body.home-hero-dome .about-side .about-stat {
  min-height: 132px;
  padding: 20px 16px 18px;
  background: rgba(0, 43, 89, 0.34);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

body.home-hero-dome .about-side .about-stat:first-child {
  background: rgba(0, 32, 68, 0.72);
}

body.home-hero-dome .about-side .about-stat-num {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 0.95;
}

body.home-hero-dome .about-side .about-stat-num sup {
  font-size: 0.45em;
}

body.home-hero-dome .about-side .about-stat-label {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

body.home-hero-dome .about-side .about-stat-sub {
  margin-top: 8px;
  color: #ffffff;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  body.home-hero-dome .about-band {
    background: #ffffff;
  }

  body.home-hero-dome .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  body.home-hero-dome .about-side {
    padding: 22px;
    background: #004896;
  }
}

@media (max-width: 760px) {
  body.home-hero-dome .about-side .about-photos,
  body.home-hero-dome .about-side .about-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.home-hero-dome .about-side .about-stat {
    min-height: 118px;
    padding: 18px 14px;
  }
}

@media (max-width: 520px) {
  body.home-hero-dome .about-side {
    padding: 16px;
  }

  body.home-hero-dome .about-side .about-photos {
    grid-template-columns: 1fr;
  }

  body.home-hero-dome .about-side .about-photos img {
    height: 190px;
  }

  body.home-hero-dome .about-side .about-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* Final NETZSCH-like homepage hero carousel: 3000ms interval with diagonal image switch. */
body.home-hero-dome .hero-cinematic {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  background: #004896 !important;
}

body.home-hero-dome .hero-cinematic::before,
body.home-hero-dome .hero-cinematic::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

body.home-hero-dome .hero-powder-scene,
body.home-hero-dome .hero-equipment-scene,
body.home-hero-dome .hero-equipment-shade,
body.home-hero-dome .hero-diagonal-ribbon {
  position: absolute;
  inset: 0;
  display: block !important;
  pointer-events: none;
}

body.home-hero-dome .hero-powder-scene {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 32, 68, 0.92) 0%, rgba(0, 72, 150, 0.78) 37%, rgba(0, 72, 150, 0.18) 68%, rgba(0, 72, 150, 0) 100%),
    url("../images/hero-industrial-powder-v5-flowing-sample-group.png") 58% center / cover no-repeat;
  opacity: 1;
  transform: translateX(0) scale(1.02);
  animation: netzschPowderSlide 6s cubic-bezier(.42, 0, .2, 1) infinite;
}

body.home-hero-dome .hero-equipment-scene {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.96) 0%, rgba(0, 72, 150, 0.62) 31%, rgba(255, 255, 255, 0.08) 62%, rgba(255, 255, 255, 0) 100%),
    url("../images/factory-production-line.webp") 69% top / cover no-repeat;
  opacity: 0;
  transform: translateX(10%) scale(1.04);
  clip-path: polygon(64% 0, 100% 0, 100% 100%, 46% 100%);
  animation: netzschEquipmentSlide 6s cubic-bezier(.42, 0, .2, 1) infinite;
}

body.home-hero-dome .hero-equipment-shade {
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(0, 43, 89, 0.98) 0%,
      rgba(0, 72, 150, 0.88) 26%,
      rgba(0, 72, 150, 0.44) 48%,
      rgba(255, 255, 255, 0.08) 64%,
      rgba(255, 255, 255, 0.00) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.00) 18%, rgba(238, 246, 250, 0.92) 100%);
  opacity: 0;
  animation: netzschEquipmentShade 6s cubic-bezier(.42, 0, .2, 1) infinite;
}

body.home-hero-dome .hero-diagonal-ribbon {
  z-index: 2;
  background:
    linear-gradient(104deg, transparent 0 68%, rgba(164, 206, 199, 0.28) 68% 75%, rgba(0, 113, 103, 0.40) 75% 81%, transparent 81% 100%),
    linear-gradient(104deg, transparent 0 34%, rgba(255, 255, 255, 0.42) 34% 43%, transparent 43% 100%);
  opacity: 0;
  transform: translateX(26%);
  animation: netzschDiagonalSwitch 6s cubic-bezier(.42, 0, .2, 1) infinite;
}

body.home-hero-dome .hero-cinematic #hero-canvas,
body.home-hero-dome .hero-cinematic .hero-cosmos,
body.home-hero-dome .hero-cinematic .hero-flow,
body.home-hero-dome .hero-cinematic .hero-motion {
  display: none !important;
}

body.home-hero-dome .hero-cinematic .hero-inner {
  position: relative;
  z-index: 4;
}

@keyframes netzschPowderSlide {
  0%,
  42% {
    opacity: 1;
    transform: translateX(0) scale(1.02);
  }
  50%,
  92% {
    opacity: 0;
    transform: translateX(-8%) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1.02);
  }
}

@keyframes netzschEquipmentSlide {
  0%,
  42% {
    opacity: 0;
    transform: translateX(10%) scale(1.04);
    clip-path: polygon(92% 0, 100% 0, 100% 100%, 84% 100%);
  }
  50%,
  92% {
    opacity: 1;
    transform: translateX(2.5%) scale(1.02);
    clip-path: polygon(38% 0, 100% 0, 100% 100%, 24% 100%);
  }
  100% {
    opacity: 0;
    transform: translateX(10%) scale(1.04);
    clip-path: polygon(92% 0, 100% 0, 100% 100%, 84% 100%);
  }
}

@keyframes netzschEquipmentShade {
  0%,
  42% {
    opacity: 0;
  }
  50%,
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes netzschDiagonalSwitch {
  0%,
  40% {
    opacity: 0;
    transform: translateX(36%);
  }
  46% {
    opacity: 1;
    transform: translateX(6%);
  }
  54%,
  88% {
    opacity: 0.98;
    transform: translateX(0);
  }
  96% {
    opacity: 1;
    transform: translateX(8%);
  }
  100% {
    opacity: 0;
    transform: translateX(36%);
  }
}

/* Final homepage header state: transparent over hero image, white only on hover/open. */
body.home-hero-dome:not(.ngb-past-hero) .site-header {
  background: transparent !important;
  border-bottom-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header::before {
  background: rgba(255, 255, 255, 0.34) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .brand {
  border-right-color: rgba(255, 255, 255, 0.18) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .brand-logo {
  filter: brightness(0) invert(1) !important;
  opacity: 0.98;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .nav-links a {
  color: rgba(255, 255, 255, 0.94) !important;
  background: transparent !important;
  border-left-color: rgba(255, 255, 255, 0.14) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .nav-links a:last-child {
  border-right-color: rgba(255, 255, 255, 0.14) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .nav-links a:hover,
body.home-hero-dome:not(.ngb-past-hero) .site-header .nav-links a.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.10) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .language {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header:hover,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 12px 32px rgba(12, 49, 60, 0.08) !important;
  backdrop-filter: blur(10px) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header:hover .brand-logo,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within .brand-logo,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open .brand-logo {
  filter: none !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header:hover .nav-links a,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within .nav-links a,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open .nav-links a {
  color: rgba(21, 49, 61, 0.86) !important;
  border-left-color: rgba(10, 48, 58, 0.05) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header:hover .nav-links a:hover,
body.home-hero-dome:not(.ngb-past-hero) .site-header:hover .nav-links a.active,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within .nav-links a:hover,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within .nav-links a.active,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open .nav-links a:hover,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open .nav-links a.active {
  color: var(--ngb-green-deep) !important;
  background: rgba(0, 72, 150, 0.06) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header:hover .language,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within .language,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open .language {
  color: var(--ngb-green-deep) !important;
  background: #e7f0f8 !important;
  border-color: rgba(0, 72, 150, 0.18) !important;
}

@media (max-width: 980px) {
  body.home-hero-dome .hero-equipment-scene {
    background-position: 74% top;
  }

  body.home-hero-dome .hero-powder-scene {
    background-position: 64% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-hero-dome .hero-powder-scene,
  body.home-hero-dome .hero-equipment-scene,
  body.home-hero-dome .hero-equipment-shade,
  body.home-hero-dome .hero-diagonal-ribbon {
    animation: none !important;
  }

  body.home-hero-dome .hero-equipment-scene,
  body.home-hero-dome .hero-equipment-shade,
  body.home-hero-dome .hero-diagonal-ribbon {
    opacity: 1;
  }
}

/* Final correction: simple three-slide hero, no diagonal strips or extra animated overlays. */
body.home-hero-dome .hero-cinematic {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 164px;
  background: #004896 !important;
}

body.home-hero-dome .hero-cinematic::before,
body.home-hero-dome .hero-cinematic::after {
  content: none !important;
  display: none !important;
}

body.home-hero-dome .hero-cinematic #hero-canvas,
body.home-hero-dome .hero-cinematic .hero-cosmos,
body.home-hero-dome .hero-cinematic .hero-flow,
body.home-hero-dome .hero-cinematic .hero-powder-scene,
body.home-hero-dome .hero-cinematic .hero-equipment-scene,
body.home-hero-dome .hero-cinematic .hero-equipment-shade,
body.home-hero-dome .hero-cinematic .hero-diagonal-ribbon {
  display: none !important;
  animation: none !important;
}

body.home-hero-dome .hero-slides,
body.home-hero-dome .hero-slide {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.home-hero-dome .hero-slides {
  z-index: 0;
  background: #004896;
}

body.home-hero-dome .hero-slide {
  opacity: 0;
  transform: scale(1);
  animation: deweiHeroSimpleFade 9s ease-in-out infinite;
}

body.home-hero-dome .hero-slide-blue {
  opacity: 1;
  background: #004896;
  animation-delay: 0s;
}

body.home-hero-dome .hero-slide-equipment-a {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.92) 0%, rgba(0, 72, 150, 0.78) 38%, rgba(0, 72, 150, 0.24) 70%, rgba(0, 72, 150, 0.06) 100%),
    url("../images/factory-production-line.webp") 64% center / cover no-repeat;
  animation-delay: 3s;
}

body.home-hero-dome .hero-slide-equipment-b {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.94) 0%, rgba(0, 72, 150, 0.70) 36%, rgba(0, 72, 150, 0.18) 68%, rgba(0, 72, 150, 0.02) 100%),
    url("../images/generated-equipment/jet-mill-ai-clean-showcase-fan-removed-polished-20260606.png") 72% center / cover no-repeat;
  animation-delay: 6s;
}

body.home-hero-dome .hero-cinematic .hero-inner {
  position: relative;
  z-index: 2;
}

@keyframes deweiHeroSimpleFade {
  0%,
  30% {
    opacity: 1;
    transform: scale(1);
  }
  36%,
  94% {
    opacity: 0;
    transform: scale(1.012);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Product detail top hero: full image cover like the homepage, header transparent until hover. */
body.product-detail-b .pd-top-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 386px;
  padding: 136px 0 52px !important;
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.88) 0%, rgba(0, 72, 150, 0.58) 42%, rgba(0, 72, 150, 0.12) 74%, rgba(0, 72, 150, 0.02) 100%),
    url("../images/generated-equipment/jet-mill-ai-clean-showcase-fan-removed-polished-20260606.png") 64% 45% / cover no-repeat !important;
}

body.product-detail-b .pd-top-hero::before,
body.product-detail-b .pd-top-hero::after {
  content: none !important;
  display: none !important;
}

body.product-detail-b .pd-top-hero .wrap {
  position: relative;
  z-index: 1;
}

body.product-detail-b .pd-top-hero .eyebrow,
body.product-detail-b .pd-top-hero h1,
body.product-detail-b .pd-top-hero .hero-lead {
  color: #ffffff !important;
  text-shadow: 0 12px 30px rgba(0, 32, 68, 0.22);
}

body.product-detail-b .pd-top-hero .hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88) !important;
}

body.product-detail-b .pd-local-nav {
  top: 86px;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header,
body.product-detail-b:not(.ngb-past-hero) .site-header {
  background: transparent !important;
  border-bottom-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header::before,
body.product-detail-b:not(.ngb-past-hero) .site-header::before {
  background: transparent !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header::after,
body.product-detail-b:not(.ngb-past-hero) .site-header::after {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.18) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .brand-logo,
body.product-detail-b:not(.ngb-past-hero) .site-header .brand-logo {
  filter: brightness(0) invert(1) !important;
  opacity: 0.98;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .brand,
body.product-detail-b:not(.ngb-past-hero) .site-header .brand {
  border-right-color: rgba(255, 255, 255, 0.18) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .nav-links a,
body.product-detail-b:not(.ngb-past-hero) .site-header .nav-links a {
  color: rgba(255, 255, 255, 0.95) !important;
  background: transparent !important;
  border-left-color: rgba(255, 255, 255, 0.12) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .nav-links a:last-child,
body.product-detail-b:not(.ngb-past-hero) .site-header .nav-links a:last-child {
  border-right-color: rgba(255, 255, 255, 0.12) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header .language,
body.product-detail-b:not(.ngb-past-hero) .site-header .language {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.30) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header:hover,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open,
body.product-detail-b:not(.ngb-past-hero) .site-header:hover,
body.product-detail-b:not(.ngb-past-hero) .site-header:focus-within,
body.product-detail-b:not(.ngb-past-hero) .site-header.mega-open,
body.product-detail-b.ngb-past-hero .site-header {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 12px 32px rgba(12, 49, 60, 0.08) !important;
  backdrop-filter: blur(10px) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header:hover .brand-logo,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within .brand-logo,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open .brand-logo,
body.product-detail-b:not(.ngb-past-hero) .site-header:hover .brand-logo,
body.product-detail-b:not(.ngb-past-hero) .site-header:focus-within .brand-logo,
body.product-detail-b:not(.ngb-past-hero) .site-header.mega-open .brand-logo,
body.product-detail-b.ngb-past-hero .site-header .brand-logo {
  filter: none !important;
  opacity: 1;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header:hover .brand,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within .brand,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open .brand,
body.product-detail-b:not(.ngb-past-hero) .site-header:hover .brand,
body.product-detail-b:not(.ngb-past-hero) .site-header:focus-within .brand,
body.product-detail-b:not(.ngb-past-hero) .site-header.mega-open .brand,
body.product-detail-b.ngb-past-hero .site-header .brand {
  border-right-color: rgba(10, 48, 58, 0.08) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header:hover .nav-links a,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within .nav-links a,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open .nav-links a,
body.product-detail-b:not(.ngb-past-hero) .site-header:hover .nav-links a,
body.product-detail-b:not(.ngb-past-hero) .site-header:focus-within .nav-links a,
body.product-detail-b:not(.ngb-past-hero) .site-header.mega-open .nav-links a,
body.product-detail-b.ngb-past-hero .site-header .nav-links a {
  color: rgba(21, 49, 61, 0.86) !important;
  border-left-color: rgba(10, 48, 58, 0.05) !important;
}

body.home-hero-dome:not(.ngb-past-hero) .site-header:hover .language,
body.home-hero-dome:not(.ngb-past-hero) .site-header:focus-within .language,
body.home-hero-dome:not(.ngb-past-hero) .site-header.mega-open .language,
body.product-detail-b:not(.ngb-past-hero) .site-header:hover .language,
body.product-detail-b:not(.ngb-past-hero) .site-header:focus-within .language,
body.product-detail-b:not(.ngb-past-hero) .site-header.mega-open .language,
body.product-detail-b.ngb-past-hero .site-header .language {
  color: #00366f !important;
  background: #e7f0f8 !important;
  border-color: rgba(0, 72, 150, 0.18) !important;
}

@media (max-width: 760px) {
  body.home-hero-dome .hero-cinematic {
    min-height: 620px;
    padding-top: 132px;
  }

  body.home-hero-dome .hero-slide-equipment-a,
  body.home-hero-dome .hero-slide-equipment-b {
    background-position: 68% center;
  }

  body.product-detail-b .pd-top-hero {
    min-height: 430px;
    padding: 124px 0 42px !important;
    background-position: 62% center !important;
  }

  body.product-detail-b .pd-local-nav {
    top: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-hero-dome .hero-slide {
    animation: none !important;
  }

  body.home-hero-dome .hero-slide-blue {
    opacity: 1;
  }

  body.home-hero-dome .hero-slide-equipment-a,
  body.home-hero-dome .hero-slide-equipment-b {
    opacity: 0;
  }
}

/* Impact mill formal detail page: align with the fluidized-bed jet mill product shell. */
body.product-detail-b.impact-detail .pd-top-hero {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.88) 0%, rgba(0, 72, 150, 0.58) 42%, rgba(0, 72, 150, 0.12) 74%, rgba(0, 72, 150, 0.02) 100%),
    url("../images/generated-equipment/impact-mill-main-host-blue-skid-final-20260625-hero.webp") center center / cover no-repeat !important;
}

body.product-detail-b .pd-equipment-stage.pd-equipment-impact::before {
  background: url("../images/generated-equipment/impact-mill-main-host-blue-skid-final-20260625.webp") center 52% / contain no-repeat;
}

body.product-detail-b .pd-principle-animation {
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 145, 182, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(246, 250, 252, 0.98), rgba(237, 244, 248, 0.94));
}

body.product-detail-b .pd-principle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.64fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 20px;
}

body.product-detail-b .pd-principle-frame {
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(0, 72, 150, 0.16);
  border-top: 4px solid var(--corp-green);
  background: #071a2b;
  box-shadow: 0 22px 52px rgba(12, 49, 60, 0.14);
}

body.product-detail-b .pd-principle-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

body.product-detail-b .pd-impact-principle-locked .pd-principle-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

body.product-detail-b .pd-impact-principle-locked .pd-principle-frame {
  border-top-color: var(--corp-blue);
}

body.product-detail-b .pd-principle-list {
  display: grid;
  gap: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--corp-line);
  border-left: 1px solid var(--corp-line);
  background: #ffffff;
}

body.product-detail-b .pd-principle-list li {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
}

body.product-detail-b .pd-principle-list strong {
  color: var(--corp-ink);
  font-size: 15px;
  line-height: 1.35;
}

body.product-detail-b .pd-principle-list span {
  color: rgba(37, 65, 78, 0.76);
  font-size: 13px;
  line-height: 1.72;
}

@media (max-width: 1100px) {
  body.product-detail-b .pd-principle-grid {
    grid-template-columns: 1fr;
  }

  body.product-detail-b .pd-principle-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.product-detail-b.impact-detail .pd-top-hero {
    background-position: 62% center !important;
  }

  body.product-detail-b .pd-equipment-stage.pd-equipment-impact::before {
    inset: 46px 18px 50px;
  }

  body.product-detail-b .pd-principle-frame {
    aspect-ratio: 4 / 3;
  }

  body.product-detail-b .pd-principle-list {
    grid-template-columns: 1fr;
  }

  body.product-detail-b .pd-principle-list li {
    min-height: 0;
    padding: 16px;
  }
}

/* Product directory cleanup: keep the catalogue calm, direct and easy to scan. */
body.products-page .product-catalog-section {
  padding: 76px 0 88px;
  background:
    linear-gradient(180deg, #f7f9fb 0%, #eef4f6 100%);
}

body.products-page .product-directory-title {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
  gap: 42px;
  align-items: end;
  max-width: none;
  margin: 0 0 30px;
  text-align: left;
}

body.products-page .product-directory-title h2 {
  max-width: 560px;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.08;
}

body.products-page .product-directory-title > p {
  max-width: 560px;
  margin: 0;
  color: rgba(45, 70, 84, 0.76);
  font-size: 15px;
  line-height: 28px;
}

body.products-page .product-directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px !important;
  border: 0;
  align-items: stretch;
}

body.products-page .product-directory-grid .product-card {
  display: grid;
  grid-template-rows: 206px 1fr;
  min-height: 458px;
  border: 1px solid rgba(25, 71, 90, 0.14) !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 28px rgba(12, 37, 52, 0.055) !important;
  overflow: hidden;
  transform: none;
}

body.products-page .product-directory-grid .product-card:hover {
  border-color: rgba(0, 72, 150, 0.26) !important;
  box-shadow: 0 18px 40px rgba(12, 37, 52, 0.11) !important;
  transform: translateY(-3px);
}

body.products-page .product-directory-grid .product-media {
  min-height: 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 252, 0.96), rgba(232, 240, 244, 0.92));
}

body.products-page .product-directory-grid .product-media.photo-media::before {
  inset: 18px 22px 20px;
  background: var(--product-image, url("../images/hero-powder-system.webp")) center / contain no-repeat !important;
  filter: saturate(0.98) contrast(1.02) drop-shadow(0 18px 18px rgba(21, 49, 66, 0.16));
  transform: scale(1);
}

body.products-page .product-directory-grid .product-card:hover .product-media.photo-media::before {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.04) drop-shadow(0 22px 22px rgba(21, 49, 66, 0.19));
}

body.products-page .product-directory-grid .product-media span,
body.products-page .product-directory-grid .product-media small,
body.products-page .product-directory-grid .product-card.is-new .product-media::after {
  display: none;
}

body.products-page .product-directory-grid .card-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 24px 24px 22px;
  background: #ffffff;
}

body.products-page .product-directory-grid .product-series {
  display: block;
  margin-bottom: 10px;
  color: #004896;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

body.products-page .product-directory-grid .card-body h3 {
  margin: 0;
  color: #122f3f;
  font-size: 20px;
  line-height: 28px;
  font-weight: 900;
}

body.products-page .product-directory-grid .card-body p {
  display: -webkit-box;
  min-height: 72px;
  margin: 12px 0 0;
  overflow: hidden;
  color: rgba(38, 62, 76, 0.72);
  font-size: 14px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.products-page .product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

body.products-page .product-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(0, 72, 150, 0.12);
  border-radius: 3px;
  background: #f5f8fa;
  color: rgba(24, 61, 78, 0.76);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

body.products-page .product-directory-grid .card-link {
  justify-content: space-between;
  width: 100%;
  margin-top: 18px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid rgba(25, 71, 90, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #004896;
  font-size: 14px;
  font-weight: 900;
}

body.products-page .product-directory-grid .card-link:hover {
  color: #00366f;
  background: transparent;
  box-shadow: none;
  transform: none;
}

@media (max-width: 1100px) {
  body.products-page .product-directory-title {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.products-page .product-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.products-page .product-catalog-section {
    padding: 52px 0 62px;
  }

  body.products-page .product-directory-grid {
    grid-template-columns: 1fr;
    gap: 14px !important;
  }

  body.products-page .product-directory-grid .product-card {
    grid-template-rows: 190px 1fr;
    min-height: 0;
  }

  body.products-page .product-directory-grid .card-body {
    padding: 20px;
  }
}

/* Homepage product cards: simplified image-first matrix requested 2026-06-21. */
body.home-hero-dome #products .home-product-grid {
  gap: 0 !important;
  border: 0 !important;
}

body.home-hero-dome #products .home-product-grid .product-card {
  display: grid;
  grid-template-rows: 236px minmax(132px, auto);
  min-height: 0;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background 0.22s ease;
}

body.home-hero-dome #products .home-product-grid .product-card:hover {
  z-index: 1;
  background: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
}

body.home-hero-dome #products .home-product-grid .product-card::before,
body.home-hero-dome #products .home-product-grid .product-card::after,
body.home-hero-dome #products .home-product-grid .card-body::before,
body.home-hero-dome #products .home-product-grid .card-body::after,
body.home-hero-dome #products .home-product-grid .product-tag {
  display: none !important;
}

body.home-hero-dome #products .home-product-grid .product-media {
  min-height: 0;
  height: 236px;
  padding: 0;
  overflow: hidden;
  border-radius: 0 !important;
  background: #f4f7f9 !important;
}

body.home-hero-dome #products .home-product-grid .product-media.photo-media::before {
  inset: 0;
  background: var(--product-image, url("../images/hero-powder-system.webp")) center center / cover no-repeat;
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.36s ease, filter 0.36s ease;
  will-change: transform;
}

body.home-hero-dome #products .home-product-grid .product-card:hover .product-media.photo-media::before {
  transform: scale(1.055);
  filter: saturate(1.02) contrast(1.04);
}

body.home-hero-dome #products .home-product-grid .card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title link"
    "desc desc";
  gap: 10px 16px;
  align-content: start;
  align-items: start;
  min-height: 0;
  margin: 0;
  padding: 20px 22px 24px;
  border: 0;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-hero-dome #products .home-product-grid .card-body h3 {
  grid-area: title;
  margin: 0;
  color: var(--corp-ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
}

body.home-hero-dome #products .home-product-grid .card-body p {
  grid-area: desc;
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(37, 65, 78, 0.74);
  font-size: 14px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.home-hero-dome #products .home-product-grid .card-link {
  grid-area: link;
  justify-self: end;
  align-self: start;
  min-height: 34px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(0, 72, 150, 0.16);
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  color: #004896;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transform: none !important;
}

body.home-hero-dome #products .home-product-grid .card-link:hover {
  border-color: rgba(0, 72, 150, 0.34);
  background: #f5f8fb !important;
  box-shadow: none !important;
  transform: none !important;
}

@media (max-width: 1100px) {
  body.home-hero-dome #products .home-product-grid .product-card {
    grid-template-rows: 224px minmax(132px, auto);
  }

  body.home-hero-dome #products .home-product-grid .product-media {
    height: 224px;
  }
}

@media (max-width: 680px) {
  body.home-hero-dome #products .home-product-grid {
    gap: 14px !important;
    border: 0;
  }

  body.home-hero-dome #products .home-product-grid .product-card {
    grid-template-rows: 210px minmax(0, auto);
    border: 0 !important;
  }

  body.home-hero-dome #products .home-product-grid .product-media {
    height: 210px;
  }

  body.home-hero-dome #products .home-product-grid .card-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "desc"
      "link";
    padding: 18px;
  }

  body.home-hero-dome #products .home-product-grid .card-link {
    justify-self: start;
  }
}

/* Product type page: use the same simplified product matrix language as the homepage. */
body.products-page .product-directory-grid {
  gap: 0 !important;
  border: 0 !important;
}

body.products-page .product-directory-grid .product-card {
  display: grid;
  grid-template-rows: 236px minmax(132px, auto);
  min-height: 0;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background 0.22s ease;
}

body.products-page .product-directory-grid .product-card:hover {
  z-index: 1;
  border-color: transparent !important;
  background: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
}

body.products-page .product-directory-grid .product-card::before,
body.products-page .product-directory-grid .product-card::after,
body.products-page .product-directory-grid .card-body::before,
body.products-page .product-directory-grid .card-body::after,
body.products-page .product-directory-grid .product-tag,
body.products-page .product-directory-grid .product-series,
body.products-page .product-directory-grid .product-card-meta,
body.products-page .product-directory-grid .product-media span,
body.products-page .product-directory-grid .product-media small,
body.products-page .product-directory-grid .product-card.is-new .product-media::after {
  display: none !important;
}

body.products-page .product-directory-grid .product-media {
  min-height: 0;
  height: 236px;
  padding: 0;
  overflow: hidden;
  border-radius: 0 !important;
  background: #f4f7f9 !important;
}

body.products-page .product-directory-grid .product-media.photo-media::before {
  inset: 0;
  background: var(--product-image, url("../images/hero-powder-system.webp")) center center / cover no-repeat !important;
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.36s ease, filter 0.36s ease;
  will-change: transform;
}

body.products-page .product-directory-grid .product-card:hover .product-media.photo-media::before {
  transform: scale(1.055);
  filter: saturate(1.02) contrast(1.04);
}

body.products-page .product-directory-grid .card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title link"
    "desc desc";
  gap: 10px 16px;
  align-content: start;
  align-items: start;
  min-height: 0;
  margin: 0;
  padding: 20px 22px 24px;
  border: 0;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.products-page .product-directory-grid .card-body h3 {
  grid-area: title;
  margin: 0;
  color: var(--corp-ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
}

body.products-page .product-directory-grid .card-body p {
  grid-area: desc;
  display: -webkit-box;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(37, 65, 78, 0.74);
  font-size: 14px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.products-page .product-directory-grid .card-link {
  grid-area: link;
  justify-self: end;
  align-self: start;
  justify-content: center;
  width: auto;
  min-height: 34px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(0, 72, 150, 0.16);
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  color: #004896;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transform: none !important;
}

body.products-page .product-directory-grid .card-link:hover {
  border-color: rgba(0, 72, 150, 0.34);
  color: #004896;
  background: #f5f8fb !important;
  box-shadow: none !important;
  transform: none !important;
}

@media (max-width: 1100px) {
  body.products-page .product-directory-grid .product-card {
    grid-template-rows: 224px minmax(132px, auto);
  }

  body.products-page .product-directory-grid .product-media {
    height: 224px;
  }
}

@media (max-width: 680px) {
  body.products-page .product-directory-grid {
    gap: 14px !important;
    border: 0;
  }

  body.products-page .product-directory-grid .product-card {
    grid-template-rows: 210px minmax(0, auto);
    border: 0 !important;
  }

  body.products-page .product-directory-grid .product-media {
    height: 210px;
  }

  body.products-page .product-directory-grid .card-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "desc"
      "link";
    padding: 18px;
  }

body.products-page .product-directory-grid .card-link {
    justify-self: start;
  }
}

/* About page professional rebuild: scoped to avoid changing product and home pages. */
body.about-page {
  color: #102436;
  background:
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 36%, #f3f8fb 100%);
}

body.about-page .site-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 59, 105, 0.12);
  box-shadow: 0 10px 28px rgba(13, 41, 64, 0.08);
}

body.about-page .site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #004896;
}

body.about-page .site-header::after {
  display: none;
}

body.about-page .brand {
  background: rgba(255, 255, 255, 0.92);
}

body.about-page .brand-logo {
  filter: none;
}

body.about-page .nav-links a {
  color: #122c40;
}

body.about-page .nav-links a:hover,
body.about-page .nav-links a.active {
  background: #f3f7fb;
  color: #003f7d;
}

body.about-page .nav-links a.active::after {
  background: #f59b20;
}

body.about-page .language {
  border-color: rgba(0, 72, 150, 0.22);
  background: #f4f8fc;
  color: #004896;
}

body.about-page .menu-button {
  border-color: rgba(0, 72, 150, 0.22);
  color: #004896;
  background: #f4f8fc;
}

body.about-page .about-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    linear-gradient(90deg, rgba(244, 249, 252, 0.96) 0%, rgba(244, 249, 252, 0.88) 43%, rgba(255, 255, 255, 0.42) 100%),
    linear-gradient(135deg, rgba(0, 72, 150, 0.09), rgba(63, 189, 204, 0.10));
}

body.about-page .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 72, 150, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 72, 150, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.42), rgba(0,0,0,0.08));
}

body.about-page .about-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1fr);
  gap: 64px;
  align-items: center;
}

body.about-page .about-hero-copy h1 {
  max-width: 780px;
  color: #132b3d;
  font-size: clamp(38px, 4.3vw, 66px);
  font-weight: 900;
  line-height: 1.05;
}

body.about-page .about-hero-copy p {
  max-width: 700px;
  margin-top: 26px;
  color: rgba(24, 49, 66, 0.76);
  font-size: 17px;
  line-height: 2;
}

body.about-page .about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

body.about-page .about-hero-media {
  position: relative;
  min-height: 500px;
  padding: 26px 26px 92px;
  border: 1px solid rgba(0, 72, 150, 0.12);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(234,244,249,0.72));
  box-shadow: 0 28px 70px rgba(13, 53, 81, 0.18);
}

body.about-page .about-hero-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(53, 199, 216, 0.22);
  pointer-events: none;
}

body.about-page .about-hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 408px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 72, 150, 0.10);
  background: #f7fafc;
}

body.about-page .about-kpi-strip {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 0.7fr 1.1fr;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(0, 64, 117, 0.92);
  box-shadow: 0 18px 34px rgba(0, 43, 79, 0.20);
}

body.about-page .about-kpi-strip div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

body.about-page .about-kpi-strip div:last-child {
  border-right: 0;
}

body.about-page .about-kpi-strip strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
}

body.about-page .about-kpi-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
  line-height: 1.45;
}

body.about-page .about-section {
  position: relative;
  padding: 88px 0;
}

body.about-page .about-section:nth-of-type(odd) {
  background: #ffffff;
}

body.about-page .about-section-head {
  max-width: 820px;
}

body.about-page .about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 64px;
  align-items: start;
}

body.about-page .about-info-card {
  border-top: 4px solid #004896;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(13, 53, 81, 0.12);
}

body.about-page .about-info-card h3 {
  padding: 28px 30px 22px;
  color: #122c40;
  font-size: 24px;
  font-weight: 900;
}

body.about-page .about-info-card dl {
  margin: 0;
  border-top: 1px solid rgba(0, 72, 150, 0.12);
}

body.about-page .about-info-card dl div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 30px;
  border-bottom: 1px solid rgba(0, 72, 150, 0.12);
}

body.about-page .about-info-card dl div:last-child {
  border-bottom: 0;
}

body.about-page .about-info-card dt {
  color: rgba(18, 44, 64, 0.55);
  font-size: 13px;
  font-weight: 800;
}

body.about-page .about-info-card dd {
  margin: 0;
  color: #102436;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

body.about-page .about-strength-head {
  margin-top: 68px;
}

body.about-page .about-section-head.compact {
  max-width: 680px;
}

body.about-page .about-section-head h2,
body.about-page .about-capability-copy h2,
body.about-page .about-cta h2 {
  color: #122c40;
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 900;
  line-height: 1.16;
}

body.about-page .about-section-head p:not(.eyebrow),
body.about-page .about-capability-copy p,
body.about-page .about-cta p {
  margin-top: 18px;
  color: rgba(32, 58, 76, 0.72);
  font-size: 16px;
  line-height: 1.95;
}

body.about-page .eyebrow {
  color: #004896;
}

body.about-page .about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 2px solid #004896;
  border-left: 1px solid rgba(0, 72, 150, 0.14);
}

body.about-page .about-proof-grid article {
  min-height: 250px;
  padding: 30px 28px;
  border-right: 1px solid rgba(0, 72, 150, 0.14);
  border-bottom: 1px solid rgba(0, 72, 150, 0.14);
  background: rgba(255, 255, 255, 0.82);
  transition: background 0.22s ease, transform 0.22s ease;
}

body.about-page .about-proof-grid article:hover {
  background: #eef6fb;
  transform: translateY(-4px);
}

body.about-page .about-proof-grid span {
  color: #e07c20;
  font-size: 13px;
  font-weight: 900;
}

body.about-page .about-proof-grid h3 {
  margin-top: 28px;
  color: #132b3d;
  font-size: 23px;
  font-weight: 900;
}

body.about-page .about-proof-grid p {
  margin-top: 14px;
  color: rgba(32, 58, 76, 0.70);
  font-size: 14px;
  line-height: 1.85;
}

body.about-page .about-capabilities {
  background:
    linear-gradient(90deg, #073c73 0%, #004896 54%, #0a6e91 100%);
  color: #ffffff;
}

body.about-page .about-capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
}

body.about-page .about-capability-copy h2,
body.about-page .about-capability-copy p,
body.about-page .about-capability-copy .eyebrow {
  color: #ffffff;
}

body.about-page .about-capability-copy p {
  color: rgba(255, 255, 255, 0.76);
}

body.about-page .about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

body.about-page .about-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

body.about-page .about-capability-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 58px rgba(0, 30, 55, 0.26);
}

body.about-page .about-capability-item {
  min-height: 174px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

body.about-page .about-capability-item:nth-child(2n) {
  border-right: 0;
}

body.about-page .about-capability-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

body.about-page .about-capability-item strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

body.about-page .about-capability-item span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

body.about-page .about-visuals {
  background:
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

body.about-page .about-visual-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 18px;
  margin-top: 36px;
}

body.about-page .about-visual-grid figure {
  display: grid;
  grid-template-rows: 330px minmax(126px, auto);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 72, 150, 0.14);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(13, 53, 81, 0.10);
}

body.about-page .about-visual-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  background: #eef4f7;
  transition: transform 0.36s ease;
}

body.about-page .about-visual-grid figure:hover img {
  transform: scale(1.045);
}

body.about-page .about-visual-grid figcaption {
  padding: 24px 26px;
  border-top: 1px solid rgba(0, 72, 150, 0.10);
}

body.about-page .about-visual-grid strong,
body.about-page .about-flow strong,
body.about-page .about-trust-list strong {
  display: block;
  color: #122c40;
  font-size: 20px;
  font-weight: 900;
}

body.about-page .about-visual-grid span,
body.about-page .about-trust-list span {
  display: block;
  margin-top: 8px;
  color: rgba(32, 58, 76, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

body.about-page .about-flow-section {
  background: #ffffff;
}

body.about-page .about-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 2px solid #004896;
}

body.about-page .about-flow div {
  position: relative;
  min-height: 190px;
  padding: 28px 18px 24px;
  border-right: 1px solid rgba(0, 72, 150, 0.16);
  border-bottom: 1px solid rgba(0, 72, 150, 0.16);
  background: #f8fbfd;
}

body.about-page .about-flow div:first-child {
  border-left: 1px solid rgba(0, 72, 150, 0.16);
}

body.about-page .about-flow div::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 18px;
  width: 52px;
  height: 6px;
  background: linear-gradient(90deg, #e07c20, #35c7d8);
}

body.about-page .about-flow span {
  display: block;
  color: #004896;
  font-size: 13px;
  font-weight: 900;
}

body.about-page .about-flow strong {
  margin-top: 16px;
  font-size: 18px;
}

body.about-page .about-flow p {
  margin-top: 10px;
  color: rgba(32, 58, 76, 0.68);
  font-size: 13px;
  line-height: 1.75;
}

body.about-page .about-trust {
  background:
    linear-gradient(180deg, #eef5f9 0%, #ffffff 100%);
}

body.about-page .about-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1fr);
  gap: 66px;
  align-items: start;
}

body.about-page .about-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(0, 72, 150, 0.14);
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(13, 53, 81, 0.10);
}

body.about-page .about-trust-list article {
  min-height: 168px;
  padding: 28px;
  border-right: 1px solid rgba(0, 72, 150, 0.12);
  border-bottom: 1px solid rgba(0, 72, 150, 0.12);
}

body.about-page .about-trust-list article:nth-child(2n) {
  border-right: 0;
}

body.about-page .about-trust-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

body.about-page .about-cta {
  padding: 0 0 92px;
  background: #ffffff;
}

body.about-page .about-cta-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 42px 48px;
  border-top: 4px solid #e07c20;
  background:
    linear-gradient(135deg, #073c73 0%, #004896 72%, #0a6e91 100%);
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(0, 50, 92, 0.22);
}

body.about-page .about-cta h2,
body.about-page .about-cta p,
body.about-page .about-cta .eyebrow {
  color: #ffffff;
}

body.about-page .about-cta p {
  color: rgba(255, 255, 255, 0.78);
}

body.about-page .about-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 1120px) {
  body.about-page .about-hero-grid,
  body.about-page .about-intro-grid,
  body.about-page .about-capability-layout,
  body.about-page .about-trust-grid {
    grid-template-columns: 1fr;
  }

  body.about-page .about-hero-media {
    min-height: 0;
  }

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

  body.about-page .about-visual-grid {
    grid-template-columns: 1fr;
  }

  body.about-page .about-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.about-page .site-header {
    position: relative;
  }

  body.about-page .about-hero {
    padding: 54px 0 56px;
  }

  body.about-page .about-hero-grid {
    gap: 32px;
  }

  body.about-page .about-hero-copy h1 {
    font-size: 36px;
  }

  body.about-page .about-hero-copy p {
    font-size: 15px;
    line-height: 1.85;
  }

  body.about-page .about-hero-actions {
    flex-direction: column;
  }

  body.about-page .about-hero-actions .btn,
  body.about-page .about-cta .btn {
    width: 100%;
  }

  body.about-page .about-hero-media {
    padding: 14px 14px 0;
  }

  body.about-page .about-hero-media::before {
    inset: 10px;
  }

  body.about-page .about-hero-media img {
    height: 260px;
  }

  body.about-page .about-kpi-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  body.about-page .about-kpi-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  body.about-page .about-kpi-strip div:last-child {
    border-bottom: 0;
  }

  body.about-page .about-section {
    padding: 60px 0;
  }

  body.about-page .about-info-card dl div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 20px;
  }

  body.about-page .about-info-card h3 {
    padding: 22px 20px 18px;
    font-size: 21px;
  }

  body.about-page .about-strength-head {
    margin-top: 44px;
  }

  body.about-page .about-proof-grid,
  body.about-page .about-capability-panel,
  body.about-page .about-trust-list,
  body.about-page .about-flow {
    grid-template-columns: 1fr;
  }

  body.about-page .about-capability-item,
  body.about-page .about-trust-list article {
    border-right: 0;
  }

  body.about-page .about-capability-item:nth-last-child(-n + 2),
  body.about-page .about-trust-list article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.about-page .about-trust-list article:nth-last-child(-n + 2) {
    border-bottom-color: rgba(0, 72, 150, 0.12);
  }

  body.about-page .about-capability-item:last-child,
  body.about-page .about-trust-list article:last-child {
    border-bottom: 0;
  }

  body.about-page .about-visual-grid figure {
    grid-template-rows: 240px minmax(0, auto);
  }

  body.about-page .about-visual-grid img {
    height: 240px;
  }

  body.about-page .about-cta {
    padding-bottom: 60px;
  }

  body.about-page .about-cta-inner {
    display: grid;
    padding: 30px 22px;
  }
}

/* About page company-profile layout inspired by mature industrial company pages. */
body.about-profile-page {
  background: #f4f8fb;
}

body.about-profile-page .about-profile-hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 118px 0 76px;
  background:
    linear-gradient(90deg, rgba(3, 25, 48, 0.88) 0%, rgba(4, 55, 95, 0.7) 43%, rgba(0, 92, 145, 0.38) 100%),
    linear-gradient(180deg, rgba(2, 28, 56, 0.14), rgba(2, 31, 58, 0.34)),
    url("../images/factory-exterior.webp") center 42% / cover no-repeat;
  color: #ffffff;
}

body.about-profile-page .about-profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 28, 55, 0.38), rgba(0, 72, 150, 0.08) 54%, rgba(255,255,255,0.10)),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: auto, 76px 76px, 76px 76px;
}

body.about-profile-page .about-profile-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 0.68fr);
  gap: 54px;
  align-items: stretch;
}

body.about-profile-page .about-profile-copy {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  min-height: clamp(500px, 36vw, 560px);
  padding-top: 0;
}

body.about-profile-page .about-profile-copy .eyebrow,
body.about-profile-page .about-profile-cta .eyebrow {
  color: #ffffff;
}

body.about-profile-page .about-profile-copy h1 {
  max-width: 840px;
  color: #ffffff;
  font-size: clamp(46px, 5vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

body.about-profile-page .about-profile-copy p {
  max-width: 740px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.95;
}

body.about-profile-page .about-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

body.about-profile-page .about-profile-visual {
  position: relative;
  align-self: stretch;
  justify-self: stretch;
  display: grid;
  width: 100%;
  min-height: clamp(500px, 36vw, 560px);
  margin: 0;
  grid-template-rows: 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 30px 80px rgba(0, 23, 45, 0.28);
  backdrop-filter: blur(10px);
}

body.about-profile-page .about-profile-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.18);
}

body.about-profile-page .about-profile-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 18% 50%;
  opacity: 0.96;
  display: block;
}

body.about-profile-page .about-profile-facts {
  display: grid;
  grid-template-columns: 0.76fr 0.9fr 1.34fr;
  border-top: 1px solid rgba(255,255,255,0.20);
  background: rgba(0, 45, 86, 0.86);
}

body.about-profile-page .about-profile-facts-inline {
  max-width: 840px;
  margin-top: auto;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(0, 45, 86, 0.40);
  backdrop-filter: blur(10px);
}

body.about-profile-page .about-profile-facts article {
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,0.14);
}

body.about-profile-page .about-profile-facts article:last-child {
  border-right: 0;
}

body.about-profile-page .about-profile-facts strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

body.about-profile-page .about-profile-facts span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.45;
}

body.about-profile-page .about-anchor-nav {
  position: sticky;
  top: 90px;
  z-index: 40;
  border-bottom: 1px solid rgba(0, 72, 150, 0.12);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 30px rgba(10, 42, 66, 0.08);
}

body.about-profile-page .about-anchor-nav .wrap {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
}

body.about-profile-page .about-anchor-nav a {
  min-width: 150px;
  padding: 18px 26px;
  border-left: 1px solid rgba(0, 72, 150, 0.10);
  color: #15354b;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

body.about-profile-page .about-anchor-nav a:last-child {
  border-right: 1px solid rgba(0, 72, 150, 0.10);
}

body.about-profile-page .about-anchor-nav a:hover {
  background: #f0f6fa;
  color: #004896;
}

body.about-profile-page .about-profile-section {
  padding: 92px 0;
  background: #ffffff;
}

body.about-profile-page .about-intro-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 1fr);
  gap: 82px;
  align-items: start;
}

body.about-profile-page .about-intro-lead {
  position: relative;
  padding-left: 34px;
  border-left: 5px solid #e07c20;
}

body.about-profile-page .about-intro-lead h2,
body.about-profile-page .about-band-head h2,
body.about-profile-page .about-factory-copy h2,
body.about-profile-page .about-profile-cta h2 {
  color: #122c40;
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
}

body.about-profile-page .about-intro-body p {
  color: rgba(25, 52, 70, 0.78);
  font-size: 17px;
  line-height: 2.05;
}

body.about-profile-page .about-intro-body p + p {
  margin-top: 20px;
}

body.about-profile-page .about-business-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 3px solid #004896;
  background: #f7fafc;
}

body.about-profile-page .about-business-board article {
  min-height: 170px;
  padding: 28px 30px;
  border-right: 1px solid rgba(0, 72, 150, 0.14);
  border-bottom: 1px solid rgba(0, 72, 150, 0.14);
}

body.about-profile-page .about-business-board article:nth-child(3n + 1) {
  border-left: 1px solid rgba(0, 72, 150, 0.14);
}

body.about-profile-page .about-business-board span,
body.about-profile-page .about-delivery-flow span,
body.about-profile-page .about-strength-grid span {
  color: #e07c20;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.about-profile-page .about-business-board strong {
  display: block;
  margin-top: 22px;
  color: #132b3d;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.65;
}

body.about-profile-page .about-strength-band {
  padding: 92px 0 100px;
  background:
    linear-gradient(135deg, #082b47 0%, #004896 58%, #006987 100%);
  color: #ffffff;
}

body.about-profile-page .about-band-head {
  max-width: 840px;
}

body.about-profile-page .about-band-head h2,
body.about-profile-page .about-band-head p,
body.about-profile-page .about-band-head .eyebrow {
  color: #ffffff;
}

body.about-profile-page .about-band-head.light h2 {
  color: #122c40;
}

body.about-profile-page .about-band-head.light p {
  color: rgba(25, 52, 70, 0.72);
}

body.about-profile-page .about-band-head.light .eyebrow {
  color: #004896;
}

body.about-profile-page .about-band-head p,
body.about-profile-page .about-factory-copy p,
body.about-profile-page .about-profile-cta p {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.95;
}

body.about-profile-page .about-strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,0.20);
  border-left: 1px solid rgba(255,255,255,0.18);
}

body.about-profile-page .about-strength-grid article {
  min-height: 292px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
}

body.about-profile-page .about-strength-grid h3 {
  margin-top: 42px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

body.about-profile-page .about-strength-grid p {
  margin-top: 16px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.9;
}

body.about-profile-page .about-factory-section {
  background:
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

body.about-profile-page .about-cert-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

body.about-profile-page .about-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-top: 3px solid #004896;
  border-left: 1px solid rgba(0, 72, 150, 0.14);
}

body.about-profile-page .about-cert-grid article {
  min-height: 430px;
  padding: 24px;
  border-right: 1px solid rgba(0, 72, 150, 0.14);
  border-bottom: 1px solid rgba(0, 72, 150, 0.14);
  background: rgba(255,255,255,0.92);
}

body.about-profile-page .about-cert-media {
  display: grid;
  height: 260px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 72, 150, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,248,252,0.94));
}

body.about-profile-page .about-cert-media img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

body.about-profile-page .about-cert-paper {
  position: relative;
  display: grid;
  min-height: 132px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 72, 150, 0.16);
  background:
    linear-gradient(135deg, rgba(0,72,150,0.08), rgba(255,255,255,0.95) 34%, rgba(224,124,32,0.10)),
    linear-gradient(rgba(0,72,150,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,72,150,0.06) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
}

body.about-profile-page .about-cert-paper::before,
body.about-profile-page .about-cert-paper::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body.about-profile-page .about-cert-paper::before {
  inset: 14px;
  border: 1px solid rgba(0, 72, 150, 0.16);
}

body.about-profile-page .about-cert-paper::after {
  right: 22px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(224, 124, 32, 0.46);
  border-radius: 50%;
}

body.about-profile-page .about-cert-paper span {
  position: absolute;
  top: 20px;
  left: 22px;
  color: #e07c20;
  font-size: 12px;
  font-weight: 900;
}

body.about-profile-page .about-cert-paper strong {
  position: relative;
  z-index: 1;
  color: #004896;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

body.about-profile-page .about-cert-grid h3 {
  margin-top: 24px;
  color: #132b3d;
  font-size: 20px;
  font-weight: 900;
}

body.about-profile-page .about-cert-grid p {
  margin-top: 12px;
  color: rgba(25, 52, 70, 0.70);
  font-size: 14px;
  line-height: 1.85;
}

body.about-profile-page .about-factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.78fr);
  gap: 58px;
  align-items: center;
}

body.about-profile-page .about-factory-main {
  overflow: hidden;
  border: 1px solid rgba(0, 72, 150, 0.14);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(13, 53, 81, 0.14);
}

body.about-profile-page .about-factory-main img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

body.about-profile-page .about-factory-copy h2 {
  margin-top: 8px;
}

body.about-profile-page .about-factory-copy p {
  color: rgba(25, 52, 70, 0.72);
}

body.about-profile-page .about-mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

body.about-profile-page .about-mini-gallery figure {
  margin: 0;
  border: 1px solid rgba(0, 72, 150, 0.14);
  background: #ffffff;
}

body.about-profile-page .about-mini-gallery img {
  width: 100%;
  height: 174px;
  object-fit: cover;
}

body.about-profile-page .about-mini-gallery figcaption {
  padding: 14px 16px;
  color: #132b3d;
  font-size: 13px;
  font-weight: 900;
}

body.about-profile-page .about-process-section {
  background: #ffffff;
}

body.about-profile-page .about-delivery-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 3px solid #004896;
}

body.about-profile-page .about-delivery-flow div {
  min-height: 212px;
  padding: 30px 26px;
  border-right: 1px solid rgba(0, 72, 150, 0.14);
  border-bottom: 1px solid rgba(0, 72, 150, 0.14);
  background: #f7fafc;
}

body.about-profile-page .about-delivery-flow div:first-child {
  border-left: 1px solid rgba(0, 72, 150, 0.14);
}

body.about-profile-page .about-delivery-flow strong {
  display: block;
  margin-top: 26px;
  color: #132b3d;
  font-size: 21px;
  font-weight: 900;
}

body.about-profile-page .about-delivery-flow p {
  margin-top: 12px;
  color: rgba(25, 52, 70, 0.70);
  font-size: 14px;
  line-height: 1.85;
}

body.about-profile-page .about-profile-cta {
  padding: 0 0 96px;
  background: #ffffff;
}

body.about-profile-page .about-profile-cta-inner {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 48px 54px;
  background:
    linear-gradient(135deg, rgba(5, 39, 72, 0.96), rgba(0, 72, 150, 0.94)),
    url("../images/generated-equipment/homepage-system-overview-20260601-a.webp") center center / cover no-repeat;
  color: #ffffff;
}

body.about-profile-page .about-profile-cta h2,
body.about-profile-page .about-profile-cta p {
  color: #ffffff;
}

body.about-profile-page .about-profile-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 1120px) {
  body.about-profile-page .about-profile-hero-grid,
  body.about-profile-page .about-intro-layout,
  body.about-profile-page .about-factory-layout {
    grid-template-columns: 1fr;
  }

  body.about-profile-page .about-profile-copy {
    min-height: 0;
    padding-top: 0;
  }

  body.about-profile-page .about-profile-visual {
    justify-self: start;
    width: min(100%, 720px);
    min-height: 360px;
    margin-top: 30px;
  }

  body.about-profile-page .about-profile-facts-inline {
    margin-top: 34px;
  }

  body.about-profile-page .about-strength-grid,
  body.about-profile-page .about-cert-grid,
  body.about-profile-page .about-delivery-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.about-profile-page .about-business-board {
    grid-template-columns: 1fr;
  }

  body.about-profile-page .about-business-board article {
    border-left: 1px solid rgba(0, 72, 150, 0.14);
  }
}

@media (max-width: 680px) {
  body.about-profile-page .about-profile-hero {
    min-height: 0;
    padding: 54px 0 62px;
  }

  body.about-profile-page .about-profile-copy h1 {
    font-size: 38px;
  }

  body.about-profile-page .about-profile-copy p {
    font-size: 15px;
  }

  body.about-profile-page .about-profile-actions,
  body.about-profile-page .about-profile-cta-inner {
    display: grid;
  }

  body.about-profile-page .about-profile-actions .btn,
  body.about-profile-page .about-profile-cta .btn {
    width: 100%;
  }

  body.about-profile-page .about-profile-visual {
    min-height: 240px;
    grid-template-rows: 1fr;
  }

  body.about-profile-page .about-profile-visual img {
    min-height: 0;
  }

  body.about-profile-page .about-profile-visual::before {
    inset: 12px;
  }

  body.about-profile-page .about-profile-facts-inline {
    margin-top: 24px;
  }

  body.about-profile-page .about-profile-facts,
  body.about-profile-page .about-strength-grid,
  body.about-profile-page .about-cert-grid,
  body.about-profile-page .about-delivery-flow,
  body.about-profile-page .about-mini-gallery {
    grid-template-columns: 1fr;
  }

  body.about-profile-page .about-profile-facts article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  body.about-profile-page .about-profile-facts article:last-child {
    border-bottom: 0;
  }

  body.about-profile-page .about-anchor-nav {
    position: static;
  }

  body.about-profile-page .about-anchor-nav .wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.about-profile-page .about-anchor-nav a {
    min-width: 0;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0,72,150,0.10);
  }

  body.about-profile-page .about-profile-section,
  body.about-profile-page .about-strength-band {
    padding: 62px 0;
  }

  body.about-profile-page .about-intro-lead {
    padding-left: 18px;
  }

  body.about-profile-page .about-intro-lead h2,
  body.about-profile-page .about-band-head h2,
  body.about-profile-page .about-factory-copy h2,
  body.about-profile-page .about-profile-cta h2 {
    font-size: 30px;
  }

  body.about-profile-page .about-factory-main img {
    height: 260px;
  }

  body.about-profile-page .about-profile-cta {
    padding-bottom: 62px;
  }

body.about-profile-page .about-profile-cta-inner {
    padding: 30px 22px;
  }
}

/* About page: mature industrial company-profile layout. */
body.about-industrial-page {
  background: #f3f7fb;
}

body.about-industrial-page .about-company-hero {
  position: relative;
  overflow: hidden;
  padding: 126px 0 86px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 28, 55, 0.92) 0%, rgba(5, 48, 86, 0.78) 50%, rgba(7, 81, 124, 0.48) 100%),
    url("../images/factory-exterior.webp") center 42% / cover no-repeat;
}

body.about-industrial-page .about-company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 78px 78px;
}

body.about-industrial-page .about-company-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 88px;
  align-items: end;
}

body.about-industrial-page .about-company-copy {
  max-width: 850px;
  padding-top: 70px;
}

body.about-industrial-page .about-company-copy .eyebrow,
body.about-industrial-page .about-company-snapshot span {
  color: #74d7e6;
}

body.about-industrial-page .about-company-copy h1 {
  max-width: 760px;
  margin-top: 18px;
  color: #ffffff;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

body.about-industrial-page .about-company-copy p {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
  line-height: 1.95;
}

body.about-industrial-page .about-company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

body.about-industrial-page .about-company-snapshot {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(5, 35, 65, 0.76);
  box-shadow: 0 30px 80px rgba(0, 22, 42, 0.28);
  backdrop-filter: blur(14px);
}

body.about-industrial-page .about-company-snapshot > span {
  display: block;
  font-size: 12px;
  font-weight: 900;
}

body.about-industrial-page .about-company-snapshot > strong {
  display: block;
  margin-top: 16px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}

body.about-industrial-page .about-company-snapshot dl {
  margin: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,0.16);
}

body.about-industrial-page .about-company-snapshot div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

body.about-industrial-page .about-company-snapshot dt {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 800;
}

body.about-industrial-page .about-company-snapshot dd {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

body.about-industrial-page .about-anchor-nav {
  top: 90px;
}

body.about-industrial-page .about-company-section {
  padding: 96px 0;
  background: #ffffff;
}

body.about-industrial-page .about-company-section + .about-company-section {
  border-top: 1px solid rgba(0, 72, 150, 0.10);
}

body.about-industrial-page .about-editorial-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

body.about-industrial-page .about-section-label {
  position: sticky;
  top: 166px;
  align-self: start;
  padding-left: 28px;
  border-left: 4px solid #e07c20;
}

body.about-industrial-page .about-section-label .eyebrow,
body.about-industrial-page .about-section-head .eyebrow {
  color: #004896;
}

body.about-industrial-page .about-section-label h2,
body.about-industrial-page .about-section-head h2 {
  margin-top: 14px;
  color: #122c40;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

body.about-industrial-page .about-section-label p:not(.eyebrow),
body.about-industrial-page .about-section-head p,
body.about-industrial-page .about-company-text p {
  color: rgba(25, 52, 70, 0.72);
  font-size: 16px;
  line-height: 1.92;
}

body.about-industrial-page .about-company-text {
  max-width: 860px;
}

body.about-industrial-page .about-company-text .about-lead {
  color: #17354b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.85;
}

body.about-industrial-page .about-company-text p + p {
  margin-top: 22px;
}

body.about-industrial-page .about-metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 3px solid #004896;
  border-left: 1px solid rgba(0, 72, 150, 0.14);
  background: #f7fafc;
}

body.about-industrial-page .about-metric-strip article {
  min-height: 178px;
  padding: 28px;
  border-right: 1px solid rgba(0, 72, 150, 0.14);
  border-bottom: 1px solid rgba(0, 72, 150, 0.14);
}

body.about-industrial-page .about-metric-strip span,
body.about-industrial-page .about-capability-grid span,
body.about-industrial-page .about-expect-grid span,
body.about-industrial-page .about-proof-feature span,
body.about-industrial-page .about-proof-list span {
  color: #e07c20;
  font-size: 12px;
  font-weight: 900;
}

body.about-industrial-page .about-metric-strip strong {
  display: block;
  margin-top: 24px;
  color: #132b3d;
  font-size: 22px;
  font-weight: 900;
}

body.about-industrial-page .about-metric-strip p {
  margin-top: 12px;
  color: rgba(25, 52, 70, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

body.about-industrial-page .about-capability-section {
  background:
    linear-gradient(180deg, #f3f7fb 0%, #ffffff 100%);
}

body.about-industrial-page .about-section-head {
  max-width: 860px;
}

body.about-industrial-page .about-section-head p {
  margin-top: 18px;
}

body.about-industrial-page .about-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 3px solid #004896;
  border-left: 1px solid rgba(0, 72, 150, 0.14);
}

body.about-industrial-page .about-capability-grid article {
  min-height: 242px;
  padding: 32px;
  border-right: 1px solid rgba(0, 72, 150, 0.14);
  border-bottom: 1px solid rgba(0, 72, 150, 0.14);
  background: rgba(255,255,255,0.90);
  transition: background 0.22s, transform 0.22s;
}

body.about-industrial-page .about-capability-grid article:hover {
  background: #edf6fb;
  transform: translateY(-2px);
}

body.about-industrial-page .about-capability-grid h3,
body.about-industrial-page .about-expect-grid h3 {
  margin-top: 36px;
  color: #132b3d;
  font-size: 22px;
  font-weight: 900;
}

body.about-industrial-page .about-capability-grid p,
body.about-industrial-page .about-expect-grid p {
  margin-top: 14px;
  color: rgba(25, 52, 70, 0.68);
  font-size: 14px;
  line-height: 1.85;
}

body.about-industrial-page .about-expect-band {
  padding: 96px 0;
  background: linear-gradient(135deg, #072741 0%, #004896 58%, #007287 100%);
  color: #ffffff;
}

body.about-industrial-page .about-section-head.is-dark h2,
body.about-industrial-page .about-section-head.is-dark p,
body.about-industrial-page .about-section-head.is-dark .eyebrow {
  color: #ffffff;
}

body.about-industrial-page .about-expect-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.20);
  border-left: 1px solid rgba(255,255,255,0.16);
}

body.about-industrial-page .about-expect-grid article {
  min-height: 258px;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
}

body.about-industrial-page .about-expect-grid h3 {
  color: #ffffff;
}

body.about-industrial-page .about-expect-grid p {
  color: rgba(255,255,255,0.74);
}

body.about-industrial-page .about-facility-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 78px;
  align-items: start;
}

body.about-industrial-page .about-facility-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 320px;
  gap: 22px;
}

body.about-industrial-page .about-facility-visuals figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 72, 150, 0.14);
  background: #ffffff;
}

body.about-industrial-page .about-facility-visuals img {
  display: block;
  width: 100%;
  object-fit: cover;
}

body.about-industrial-page .about-facility-main img {
  height: 508px;
  object-position: 15% 50%;
}

body.about-industrial-page .about-facility-side {
  display: grid;
  gap: 22px;
}

body.about-industrial-page .about-facility-side img {
  height: 218px;
}

body.about-industrial-page .about-facility-visuals figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  background: rgba(5, 35, 65, 0.82);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

body.about-industrial-page .about-proof-section {
  background: #f3f7fb;
}

body.about-industrial-page .about-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  margin-top: 44px;
}

body.about-industrial-page .about-proof-feature,
body.about-industrial-page .about-proof-list article {
  border: 1px solid rgba(0, 72, 150, 0.14);
  background: #ffffff;
}

body.about-industrial-page .about-proof-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
}

body.about-industrial-page .about-proof-feature-image {
  display: grid;
  min-height: 520px;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #edf4f8);
  border: 1px solid rgba(0, 72, 150, 0.12);
}

body.about-industrial-page .about-proof-feature-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

body.about-industrial-page .about-proof-feature h3,
body.about-industrial-page .about-proof-list h3 {
  margin-top: 12px;
  color: #132b3d;
  font-size: 24px;
  font-weight: 900;
}

body.about-industrial-page .about-proof-feature p,
body.about-industrial-page .about-proof-list p {
  margin-top: 14px;
  color: rgba(25, 52, 70, 0.70);
  font-size: 14px;
  line-height: 1.85;
}

body.about-industrial-page .about-proof-list {
  display: grid;
  gap: 16px;
}

body.about-industrial-page .about-proof-list article {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
}

body.about-industrial-page .about-proof-list img {
  width: 172px;
  height: 118px;
  object-fit: cover;
  border: 1px solid rgba(0, 72, 150, 0.12);
  background: #f7fafc;
}

body.about-industrial-page .about-proof-list article:first-child img {
  object-fit: contain;
  padding: 6px;
}

@media (max-width: 1120px) {
  body.about-industrial-page .about-company-hero-inner,
  body.about-industrial-page .about-editorial-grid,
  body.about-industrial-page .about-facility-layout,
  body.about-industrial-page .about-proof-layout,
  body.about-industrial-page .about-proof-feature {
    grid-template-columns: 1fr;
  }

  body.about-industrial-page .about-section-label {
    position: relative;
    top: auto;
  }

  body.about-industrial-page .about-metric-strip,
  body.about-industrial-page .about-expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.about-industrial-page .about-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.about-industrial-page .about-facility-visuals {
    grid-template-columns: 1fr;
  }

  body.about-industrial-page .about-facility-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.about-industrial-page .about-company-hero {
    padding: 62px 0;
  }

  body.about-industrial-page .about-company-copy {
    padding-top: 0;
  }

  body.about-industrial-page .about-company-copy h1 {
    font-size: 40px;
  }

  body.about-industrial-page .about-company-copy p,
  body.about-industrial-page .about-company-text .about-lead {
    font-size: 16px;
  }

  body.about-industrial-page .about-company-snapshot {
    padding: 24px;
  }

  body.about-industrial-page .about-company-snapshot div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.about-industrial-page .about-company-section,
  body.about-industrial-page .about-expect-band {
    padding: 64px 0;
  }

  body.about-industrial-page .about-section-label h2,
  body.about-industrial-page .about-section-head h2 {
    font-size: 32px;
  }

  body.about-industrial-page .about-metric-strip,
  body.about-industrial-page .about-capability-grid,
  body.about-industrial-page .about-expect-grid,
  body.about-industrial-page .about-facility-side,
  body.about-industrial-page .about-proof-list article {
    grid-template-columns: 1fr;
  }

  body.about-industrial-page .about-facility-main img {
    height: 310px;
  }

  body.about-industrial-page .about-facility-side img {
    height: 180px;
  }

  body.about-industrial-page .about-proof-feature-image {
    min-height: 420px;
  }

  body.about-industrial-page .about-proof-feature-image img {
    max-height: 390px;
  }

  body.about-industrial-page .about-proof-list img {
    width: 100%;
    height: 190px;
  }
}

/* Professional solutions pages. */
body.solutions-page,
body.solution-detail-page {
  background: #f4f8fb;
}

body.solutions-page .site-header,
body.solution-detail-page .site-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 59, 105, 0.12);
  box-shadow: 0 10px 28px rgba(13, 41, 64, 0.08);
}

body.solutions-page .site-header::before,
body.solution-detail-page .site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #004896;
}

body.solutions-page .site-header::after,
body.solution-detail-page .site-header::after {
  display: none;
}

body.solutions-page .brand,
body.solution-detail-page .brand {
  background: rgba(255, 255, 255, 0.92);
}

body.solutions-page .brand-logo,
body.solution-detail-page .brand-logo {
  filter: none;
}

body.solutions-page .nav-links a,
body.solution-detail-page .nav-links a {
  color: #122c40;
}

body.solutions-page .nav-links a:hover,
body.solutions-page .nav-links a.active,
body.solution-detail-page .nav-links a:hover,
body.solution-detail-page .nav-links a.active {
  background: #f3f7fb;
  color: #003f7d;
}

body.solutions-page .nav-links a.active::after,
body.solution-detail-page .nav-links a.active::after {
  background: #f59b20;
}

body.solutions-page .language,
body.solution-detail-page .language,
body.solutions-page .menu-button,
body.solution-detail-page .menu-button {
  border-color: rgba(0, 72, 150, 0.22);
  background: #f4f8fc;
  color: #004896;
}

.solutions-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 90px;
  background:
    linear-gradient(100deg, rgba(4, 37, 67, 0.96) 0%, rgba(0, 72, 150, 0.88) 48%, rgba(238, 247, 251, 0.66) 100%),
    url("../images/generated-equipment/homepage-system-overview-20260601-a.webp") center center / cover no-repeat;
  color: #ffffff;
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 78px 78px;
}

.solutions-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.76fr);
  gap: 68px;
  align-items: end;
}

.solutions-hero-copy .eyebrow,
.solutions-hero-copy h1,
.solutions-hero-copy p {
  color: #ffffff;
}

.solutions-hero-copy h1 {
  max-width: 860px;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 900;
  line-height: 1.05;
}

.solutions-hero-copy p {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.95;
}

.solutions-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.solutions-hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 28px 70px rgba(0, 23, 45, 0.24);
}

.solutions-hero-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.solutions-hero-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  background: rgba(0, 47, 91, 0.88);
  color: #ffffff;
}

.solutions-hero-label strong,
.solutions-hero-label span {
  display: block;
}

.solutions-hero-label strong {
  font-size: 18px;
  font-weight: 900;
}

.solutions-hero-label span {
  margin-top: 5px;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
}

.solutions-index,
.solutions-logic,
.solution-detail-section {
  padding: 92px 0;
  background: #ffffff;
}

.solutions-section-head {
  max-width: 820px;
}

.solutions-section-head h2,
.solutions-logic h2,
.solution-detail-head h2,
.solution-detail-hero-copy h1 {
  color: #122c40;
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 900;
  line-height: 1.14;
}

.solutions-section-head p,
.solutions-logic p,
.solution-detail-head p,
.solution-detail-hero-copy p {
  margin-top: 18px;
  color: rgba(25, 52, 70, 0.72);
  font-size: 16px;
  line-height: 1.95;
}

.solutions-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 3px solid #004896;
  border-left: 1px solid rgba(0, 72, 150, 0.14);
}

.solution-tile {
  min-height: 292px;
  padding: 32px 30px;
  border-right: 1px solid rgba(0, 72, 150, 0.14);
  border-bottom: 1px solid rgba(0, 72, 150, 0.14);
  background: #ffffff;
  transition: background 0.22s ease, transform 0.22s ease;
}

.solution-tile:hover {
  background: #eef6fb;
  transform: translateY(-4px);
}

.solution-tile span {
  color: #e07c20;
  font-size: 13px;
  font-weight: 900;
}

.solution-tile h3 {
  margin-top: 38px;
  color: #132b3d;
  font-size: 24px;
  font-weight: 900;
}

.solution-tile p {
  margin-top: 15px;
  color: rgba(25, 52, 70, 0.70);
  line-height: 1.85;
}

.solution-tile strong {
  display: inline-flex;
  margin-top: 26px;
  color: #004896;
  font-size: 14px;
  font-weight: 900;
}

.solutions-logic {
  background:
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

.solutions-logic-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
  gap: 70px;
  align-items: start;
}

.solutions-logic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(0, 72, 150, 0.14);
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(13, 53, 81, 0.10);
}

.solutions-logic-list article {
  min-height: 170px;
  padding: 28px;
  border-right: 1px solid rgba(0, 72, 150, 0.12);
  border-bottom: 1px solid rgba(0, 72, 150, 0.12);
}

.solutions-logic-list article:nth-child(2n) {
  border-right: 0;
}

.solutions-logic-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.solutions-logic-list span {
  color: #e07c20;
  font-size: 13px;
  font-weight: 900;
}

.solutions-logic-list strong {
  display: block;
  margin-top: 16px;
  color: #122c40;
  font-size: 20px;
  font-weight: 900;
}

.solutions-logic-list p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.75;
}

.solution-detail-hero {
  position: relative;
  padding: 84px 0 76px;
  background:
    linear-gradient(90deg, #f5f9fc 0%, #ffffff 48%, #eef6fb 100%);
}

.solution-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 0.86fr);
  gap: 70px;
  align-items: center;
}

.solution-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(18, 44, 64, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.solution-breadcrumb a {
  color: #004896;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.solution-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(0, 72, 150, 0.16);
  background: #ffffff;
  color: #004896;
  font-size: 13px;
  font-weight: 900;
}

.solution-detail-visual {
  overflow: hidden;
  border: 1px solid rgba(0, 72, 150, 0.14);
  background: #ffffff;
  box-shadow: 0 28px 68px rgba(13, 53, 81, 0.13);
}

.solution-detail-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.solution-detail-visual figcaption {
  padding: 20px 24px;
  color: rgba(18, 44, 64, 0.70);
  font-size: 14px;
  font-weight: 800;
}

.solution-detail-nav {
  border-top: 1px solid rgba(0, 72, 150, 0.12);
  border-bottom: 1px solid rgba(0, 72, 150, 0.12);
  background: #ffffff;
}

.solution-detail-nav .wrap {
  display: flex;
  justify-content: center;
}

.solution-detail-nav a {
  min-width: 146px;
  padding: 17px 22px;
  border-left: 1px solid rgba(0, 72, 150, 0.10);
  color: #15354b;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.solution-detail-nav a:last-child {
  border-right: 1px solid rgba(0, 72, 150, 0.10);
}

.solution-detail-nav a:hover {
  background: #f0f6fa;
  color: #004896;
}

.solution-detail-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.solution-route-grid,
.solution-equipment-grid,
.solution-confirm-grid {
  display: grid;
  gap: 18px;
}

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

.solution-route-grid article,
.solution-equipment-grid article,
.solution-confirm-grid article {
  border: 1px solid rgba(0, 72, 150, 0.14);
  background: #ffffff;
}

.solution-route-grid article {
  min-height: 180px;
  padding: 24px 20px;
}

.solution-route-grid span,
.solution-equipment-grid span,
.solution-confirm-grid span {
  color: #e07c20;
  font-size: 13px;
  font-weight: 900;
}

.solution-route-grid strong,
.solution-equipment-grid strong,
.solution-confirm-grid strong {
  display: block;
  margin-top: 20px;
  color: #122c40;
  font-size: 18px;
  font-weight: 900;
}

.solution-route-grid p,
.solution-equipment-grid p,
.solution-confirm-grid p {
  margin-top: 10px;
  color: rgba(25, 52, 70, 0.70);
  font-size: 14px;
  line-height: 1.75;
}

.solution-detail-section.is-alt {
  background:
    linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

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

.solution-equipment-grid article,
.solution-confirm-grid article {
  min-height: 190px;
  padding: 28px 26px;
}

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

.solution-detail-cta {
  padding: 0 0 92px;
  background: #ffffff;
}

.solution-detail-cta-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 42px 48px;
  background:
    linear-gradient(135deg, rgba(5, 39, 72, 0.96), rgba(0, 72, 150, 0.94));
  color: #ffffff;
}

.solution-detail-cta h2,
.solution-detail-cta p,
.solution-detail-cta .eyebrow {
  color: #ffffff;
}

.solution-detail-cta h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
}

.solution-detail-cta p {
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
}

.solution-detail-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 1120px) {
  .solutions-hero-grid,
  .solutions-logic-grid,
  .solution-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .solutions-matrix,
  .solution-route-grid,
  .solution-equipment-grid,
  .solution-confirm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .solutions-hero,
  .solution-detail-hero {
    padding: 54px 0 60px;
  }

  .solutions-hero-copy h1,
  .solution-detail-hero-copy h1 {
    font-size: 38px;
  }

  .solutions-hero-copy p,
  .solution-detail-hero-copy p {
    font-size: 15px;
  }

  .solutions-hero-actions,
  .solution-detail-cta-inner {
    display: grid;
  }

  .solutions-hero-actions .btn,
  .solution-detail-cta .btn {
    width: 100%;
  }

  .solutions-hero-visual img,
  .solution-detail-visual img {
    height: 250px;
  }

  .solutions-matrix,
  .solutions-logic-list,
  .solution-route-grid,
  .solution-equipment-grid,
  .solution-confirm-grid {
    grid-template-columns: 1fr;
  }

  .solutions-logic-list article,
  .solutions-logic-list article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 72, 150, 0.12);
  }

  .solutions-logic-list article:last-child {
    border-bottom: 0;
  }

  .solution-detail-nav .wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-detail-nav a {
    min-width: 0;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0,72,150,0.10);
  }

  .solutions-index,
  .solutions-logic,
  .solution-detail-section {
    padding: 62px 0;
  }

  .solution-detail-cta {
    padding-bottom: 62px;
  }

  .solution-detail-cta-inner {
    padding: 30px 22px;
  }
}

/* Cases center: two-column article cards, no featured dark block. */
body.cases-article-page {
  background: #f5f9fc;
}

body.cases-article-page .cases-article-section {
  padding: 78px 0 92px;
}

body.cases-article-page .cases-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

body.cases-article-page .case-article-card {
  position: relative;
  min-height: 196px;
  padding: 34px 36px 30px;
  border: 1px solid rgba(0, 72, 150, 0.16);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(13, 53, 81, 0.06);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

body.cases-article-page .case-article-card::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 44px;
  width: 28px;
  height: 2px;
  background: #e07c20;
}

body.cases-article-page .case-article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 72, 150, 0.30);
  background: #f9fcfe;
  box-shadow: 0 24px 54px rgba(13, 53, 81, 0.10);
}

body.cases-article-page .case-kicker {
  margin: 0 0 12px 42px;
  color: #004896;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

body.cases-article-page .case-article-card h3 {
  margin: 0;
  color: #132b3d;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.38;
}

body.cases-article-page .case-article-card p:not(.case-kicker) {
  margin-top: 14px;
  color: rgba(32, 58, 76, 0.72);
  font-size: 15px;
  line-height: 1.95;
}

body.cases-article-page .case-article-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #004896;
  font-size: 14px;
  font-weight: 900;
}

body.cases-article-page .case-article-card span::after {
  content: "→";
  color: #e07c20;
  font-weight: 900;
}

@media (max-width: 900px) {
  body.cases-article-page .cases-article-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body.cases-article-page .cases-article-section {
    padding: 54px 0 66px;
  }

  body.cases-article-page .case-article-card {
    min-height: 0;
    padding: 28px 22px 26px;
  }

  body.cases-article-page .case-article-card::before {
    left: 22px;
    top: 37px;
  }

  body.cases-article-page .case-kicker {
    margin-left: 40px;
  }

body.cases-article-page .case-article-card h3 {
    font-size: 20px;
  }
}

/* Applications page accent cleanup: keep every local stripe in one blue industrial system. */
body.applications-page {
  --app-accent: #004896;
  --app-accent-2: #2674ad;
  --app-accent-soft: rgba(0, 72, 150, 0.13);
  --app-line: rgba(0, 72, 150, 0.17);
  --app-surface: rgba(244, 249, 252, 0.92);
  --app-text-accent: #176995;
}

body.applications-page .nav-links a.active {
  border-bottom-color: var(--app-accent) !important;
}

body.applications-page .section-label::before,
body.applications-page .eyebrow::before {
  background: linear-gradient(90deg, var(--app-accent), rgba(38, 116, 173, 0.58)) !important;
}

body.applications-page .application-groups {
  border-color: var(--app-line) !important;
}

body.applications-page .application-group {
  border-color: var(--app-line) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), var(--app-surface)) !important;
}

body.applications-page .application-group::before {
  width: 3px !important;
  background: linear-gradient(180deg, var(--app-accent), rgba(0, 72, 150, 0.18)) !important;
}

body.applications-page .application-list,
body.applications-page .application-list a,
body.applications-page .application-list .application-list-item,
body.applications-page .application-list-item {
  border-color: var(--app-line) !important;
}

body.applications-page .application-list a,
body.applications-page .application-list-item {
  background: rgba(246, 250, 253, 0.96) !important;
}

body.applications-page .application-list a:hover,
body.applications-page .application-list .application-list-item:hover,
body.applications-page .application-list-item:hover {
  background: rgba(229, 241, 249, 0.98) !important;
  color: var(--app-accent) !important;
}

body.applications-page .application-list small {
  color: var(--app-text-accent) !important;
}

body.applications-page .application-card {
  border-color: var(--app-line) !important;
  border-top-color: var(--app-accent) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 252, 0.93)) !important;
}

body.applications-page .application-card::after {
  background: linear-gradient(90deg, var(--app-accent), rgba(38, 116, 173, 0.54)) !important;
}

body.applications-page .application-card:hover {
  border-color: rgba(0, 72, 150, 0.34) !important;
  background:
    linear-gradient(180deg, #ffffff, rgba(233, 243, 250, 0.96)) !important;
}

body.applications-page .application-card h3 {
  color: #132b3d;
}

/* About page certificate wall: replace the heavy feature/list split with balanced proof cards. */
body.about-industrial-page .about-company-section {
  scroll-margin-top: 150px;
}

body.about-industrial-page .about-proof-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

body.about-industrial-page .about-proof-list {
  display: contents;
}

body.about-industrial-page .about-proof-feature,
body.about-industrial-page .about-proof-list article {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 228px 1fr;
  gap: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(0, 72, 150, 0.15);
  background: #ffffff;
}

body.about-industrial-page .about-proof-feature:hover,
body.about-industrial-page .about-proof-list article:hover {
  border-color: rgba(0, 72, 150, 0.28);
  box-shadow: 0 22px 52px rgba(13, 53, 81, 0.10);
}

body.about-industrial-page .about-proof-feature-image,
body.about-industrial-page .about-proof-list img,
body.about-industrial-page .about-proof-list article:first-child img {
  width: 100%;
  height: 228px;
  min-height: 0;
  padding: 18px;
  border: 0;
  border-bottom: 1px solid rgba(0, 72, 150, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 250, 0.92));
}

body.about-industrial-page .about-proof-feature-image {
  display: grid;
  place-items: center;
}

body.about-industrial-page .about-proof-list img,
body.about-industrial-page .about-proof-list article:first-child img {
  display: block;
  object-fit: contain;
}

body.about-industrial-page .about-proof-feature-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 192px;
  object-fit: contain;
}

body.about-industrial-page .about-proof-feature > div:last-child,
body.about-industrial-page .about-proof-list article > div {
  padding: 22px 24px 26px;
}

body.about-industrial-page .about-proof-feature h3,
body.about-industrial-page .about-proof-list h3 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.32;
}

body.about-industrial-page .about-proof-feature p,
body.about-industrial-page .about-proof-list p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.82;
}

body.about-industrial-page .about-proof-feature > div:last-child,
body.about-industrial-page .about-proof-list article > div {
  min-height: 112px;
}

body.about-industrial-page .about-proof-feature span,
body.about-industrial-page .about-proof-list span {
  color: #176995 !important;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  body.about-industrial-page .about-proof-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body.about-industrial-page .about-proof-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.about-industrial-page .about-proof-feature,
  body.about-industrial-page .about-proof-list article {
    grid-template-rows: 210px 1fr;
  }

  body.about-industrial-page .about-proof-feature-image,
  body.about-industrial-page .about-proof-list img,
  body.about-industrial-page .about-proof-list article:first-child img {
    height: 210px;
  }
}

/* Global accent-strip cleanup: remove mixed orange/cyan/green bars from the site. */
:root {
  --strip-blue: #004896;
  --strip-blue-2: #2e78aa;
  --strip-blue-soft: rgba(0, 72, 150, 0.18);
}

.site-header::after,
body.home-hero-dome .site-header::after,
body.products-page .site-header::after,
body.product-detail-b .site-header::after,
body:not(.home-hero-dome):has(.page-hero) .site-header::after {
  background: linear-gradient(90deg, transparent, rgba(0, 72, 150, 0.34), rgba(46, 120, 170, 0.24), transparent) !important;
}

.nav-links a::after,
.mobile-bar a::after,
.footer-col a::before,
.footer-bottom a::after,
.card-link::after {
  background: linear-gradient(90deg, var(--strip-blue), rgba(46, 120, 170, 0.58)) !important;
}

.site-header .nav-links a::after,
body.about-page .nav-links a.active::after,
body.solutions-page .nav-links a.active::after,
body.solution-detail-page .nav-links a.active::after {
  background: linear-gradient(90deg, var(--strip-blue), rgba(46, 120, 170, 0.58)) !important;
}

.nav-links a.active,
body.home-hero-dome .nav-links a.active,
body.products-page .nav-links a.active,
body.product-detail-b .nav-links a.active {
  border-bottom-color: var(--strip-blue) !important;
}

.nav-mega-eyebrow::before,
.hero-eyebrow::before,
.section-label::before,
.dark .section-label::before,
.eyebrow::before,
.pd-kicker::before,
.pd-section-label::before,
body.cases-article-page .case-article-card::before {
  background: linear-gradient(90deg, var(--strip-blue), rgba(46, 120, 170, 0.58)) !important;
}

body.about-industrial-page .about-section-label,
body.about-profile-page .about-feature-copy,
body.about-profile-page .about-profile-card {
  border-left-color: var(--strip-blue) !important;
}

.page-hero::after,
.hero-flow span,
.hero-card::before,
.scroll-panorama-inner p::before,
.product-card.is-new .product-media::after,
.application-card::after,
.application-group::before,
body.home-hero-dome #products .home-product-grid .product-card::before,
body.home-hero-dome #products .home-product-grid .card-body::before,
body.product-detail-b .pd-card::after,
.pd-equipment-stage::after,
body.product-detail-b .pd-equipment-stage::after,
.pd-callout::before,
.flow-chart::after,
.flow-chart h4::after,
.fc-arr::before,
.pd-flow-chart::after,
body.product-detail-b .pd-flow-chart::after {
  background: linear-gradient(90deg, var(--strip-blue), rgba(46, 120, 170, 0.46)) !important;
}

.stat-item:hover {
  border-bottom-color: var(--strip-blue) !important;
}

.fc-node::before,
.fc-node.hi::before,
.fc-node.go::before,
.fc-node.sp::before,
body.product-detail-b .pd-flow-chart .fc-node::before {
  background: linear-gradient(135deg, var(--strip-blue), var(--strip-blue-2)) !important;
}

.application-card,
body.product-detail-b .pd-principle-frame,
.pd-principle-frame,
body.product-detail-b .pd-card,
body.about-page .about-proof-grid article,
body.about-profile-page .about-cert-grid article,
body.about-industrial-page .about-metric-strip article,
body.about-industrial-page .about-capability-grid article,
body.about-industrial-page .about-proof-feature,
body.about-industrial-page .about-proof-list article,
body.solutions-page .solution-card,
body.solution-detail-page .solution-detail-card {
  border-top-color: var(--strip-blue) !important;
}

/* 2026-06-24 product cleanup: image-only entry on home cards, no pale grid on product pages. */
body.home-hero-dome #products .home-product-grid .product-image-link {
  display: block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

body.home-hero-dome #products .home-product-grid .product-image-link:focus-visible {
  outline: 3px solid rgba(0, 72, 150, 0.42);
  outline-offset: -3px;
}

body.home-hero-dome #products .home-product-grid .card-body {
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-areas:
    "title"
    "desc" !important;
  gap: 10px !important;
}

body.product-detail-b .pd-page {
  background: #f5f8fa !important;
  background-image: none !important;
  background-size: auto !important;
}

body.product-detail-b .pd-callout {
  display: none !important;
}

/* 2026-06-24 fluidized machine hooks: restore small labels without blocking the machine. */
body.product-detail-b .pd-equipment-stage .pd-callout {
  display: block !important;
  position: absolute !important;
  z-index: 5;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1) !important;
  transform-origin: center center;
  transition:
    transform 0.22s cubic-bezier(.18, .72, .18, 1),
    filter 0.22s ease;
}

body.product-detail-b .pd-equipment-stage .pd-callout::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 10px;
  background: transparent !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-label {
  position: absolute;
  z-index: 3;
  min-width: 68px !important;
  height: 26px !important;
  padding: 0 9px !important;
  border: 1px solid rgba(0, 72, 150, 0.22) !important;
  border-radius: 3px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #004896 !important;
  font-size: 11px !important;
  line-height: 24px !important;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0, 42, 82, 0.08) !important;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

body.product-detail-b .pd-equipment-stage .pd-callout-line {
  position: absolute;
  z-index: 2;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(0, 72, 150, 0.12), rgba(33, 177, 224, 0.86)) !important;
  transform-origin: left center;
  filter: none !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-dot {
  position: absolute;
  z-index: 4;
  width: 7px !important;
  height: 7px !important;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #21b1e0 !important;
  box-shadow: 0 0 0 3px rgba(33, 177, 224, 0.16) !important;
  animation: none !important;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

body.product-detail-b .pd-equipment-stage .pd-callout-wheel {
  left: 40%;
  top: 28%;
}

body.product-detail-b .pd-equipment-stage .pd-callout-wheel .pd-callout-label {
  right: 18px;
  top: -12px;
}

body.product-detail-b .pd-equipment-stage .pd-callout-wheel .pd-callout-line {
  left: -12px;
  top: 2px;
  width: 46px !important;
  transform: rotate(8deg) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-wheel .pd-callout-dot {
  left: 32px;
  top: 2px;
}

body.product-detail-b .pd-equipment-stage .pd-callout-nozzle {
  left: 63%;
  top: 43%;
}

body.product-detail-b .pd-equipment-stage .pd-callout-nozzle .pd-callout-label {
  left: 24px;
  top: -18px;
}

body.product-detail-b .pd-equipment-stage .pd-callout-nozzle .pd-callout-line {
  left: 0;
  top: 2px;
  width: 42px !important;
  transform: rotate(-33deg) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-nozzle .pd-callout-dot {
  left: -3px;
  top: -2px;
}

body.product-detail-b .pd-equipment-stage .pd-callout-chamber {
  left: 42%;
  top: 62%;
}

body.product-detail-b .pd-equipment-stage .pd-callout-chamber .pd-callout-label {
  right: 22px;
  bottom: -12px;
}

body.product-detail-b .pd-equipment-stage .pd-callout-chamber .pd-callout-line {
  left: -48px;
  top: 2px;
  width: 48px !important;
  transform: rotate(-10deg) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-chamber .pd-callout-dot {
  left: -4px;
  top: -2px;
}

body.product-detail-b .pd-equipment-stage .pd-callout-recycle {
  left: 72%;
  top: 66%;
}

body.product-detail-b .pd-equipment-stage .pd-callout-recycle .pd-callout-label {
  left: 22px;
  bottom: -12px;
}

body.product-detail-b .pd-equipment-stage .pd-callout-recycle .pd-callout-line {
  left: 0;
  top: 2px;
  width: 40px !important;
  transform: rotate(12deg) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-recycle .pd-callout-dot {
  left: -3px;
  top: -2px;
}

body.product-detail-b .pd-equipment-stage .pd-callout:hover,
body.product-detail-b .pd-equipment-stage .pd-callout:focus-visible {
  filter: drop-shadow(0 10px 16px rgba(0, 72, 150, 0.14)) !important;
  outline: none;
}

body.product-detail-b .pd-equipment-stage .pd-callout-wheel:hover,
body.product-detail-b .pd-equipment-stage .pd-callout-wheel:focus-visible {
  transform: translate3d(-4px, -6px, 0) scale(1.08) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-nozzle:hover,
body.product-detail-b .pd-equipment-stage .pd-callout-nozzle:focus-visible {
  transform: translate3d(4px, -6px, 0) scale(1.08) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-chamber:hover,
body.product-detail-b .pd-equipment-stage .pd-callout-chamber:focus-visible {
  transform: translate3d(-4px, 5px, 0) scale(1.08) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-recycle:hover,
body.product-detail-b .pd-equipment-stage .pd-callout-recycle:focus-visible {
  transform: translate3d(4px, 5px, 0) scale(1.08) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout:hover .pd-callout-label,
body.product-detail-b .pd-equipment-stage .pd-callout:focus-visible .pd-callout-label {
  background: #004896 !important;
  color: #ffffff !important;
  border-color: #004896 !important;
  box-shadow: 0 10px 20px rgba(0, 72, 150, 0.18) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout:hover .pd-callout-dot,
body.product-detail-b .pd-equipment-stage .pd-callout:focus-visible .pd-callout-dot {
  background: #f59423 !important;
  box-shadow: 0 0 0 4px rgba(245, 148, 35, 0.16), 0 0 14px rgba(245, 148, 35, 0.24) !important;
}

/* 2026-06-24: restore the original hook interaction exactly over later small-label experiments. */
body.product-detail-b .pd-equipment-stage {
  overflow: visible !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout {
  display: block !important;
  position: absolute !important;
  z-index: 5;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  pointer-events: auto;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  transform-origin: center center;
  transition:
    transform 0.22s cubic-bezier(.18, .72, .18, 1),
    filter 0.22s ease,
    opacity 0.22s ease;
}

body.product-detail-b .pd-equipment-stage .pd-callout::before {
  content: "";
  position: absolute;
  inset: -18px !important;
  border-radius: 24px !important;
  background: transparent !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-label {
  min-width: 104px !important;
  height: 36px !important;
  padding: 0 14px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(0, 72, 150, 0.28) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #00366f !important;
  font-size: 14px !important;
  line-height: 34px !important;
  font-weight: 800;
  box-shadow:
    0 10px 24px rgba(0, 72, 150, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-line {
  height: 1px !important;
  background: linear-gradient(90deg, rgba(33, 177, 224, 0.92), rgba(0, 72, 150, 0.18)) !important;
  filter: none !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-dot {
  width: 8px !important;
  height: 8px !important;
  border: 0 !important;
  background: #21b1e0 !important;
  box-shadow:
    0 0 0 4px rgba(33, 177, 224, 0.16),
    0 0 18px rgba(33, 177, 224, 0.34) !important;
  animation: productCalloutPulse 2.6s ease-in-out infinite !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-wheel {
  left: 28px !important;
  top: 28px !important;
  width: 322px !important;
  height: 104px !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-wheel .pd-callout-label {
  left: 0 !important;
  right: auto !important;
  top: 0 !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-wheel .pd-callout-line {
  left: 112px !important;
  top: 40px !important;
  width: 232px !important;
  transform: rotate(8deg) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-wheel .pd-callout-dot {
  left: auto !important;
  right: 0 !important;
  top: 58px !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-nozzle {
  left: auto !important;
  right: 32px !important;
  top: 56px !important;
  width: 278px !important;
  height: 128px !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-nozzle .pd-callout-label {
  left: auto !important;
  right: 0 !important;
  top: 0 !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-nozzle .pd-callout-line {
  left: auto !important;
  right: 96px !important;
  top: 42px !important;
  width: 126px !important;
  transform: rotate(52deg) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-nozzle .pd-callout-dot {
  left: 46px !important;
  right: auto !important;
  top: auto !important;
  bottom: 22px !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-chamber {
  left: 36px !important;
  top: auto !important;
  bottom: 52px !important;
  width: 352px !important;
  height: 78px !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-chamber .pd-callout-label {
  left: 0 !important;
  right: auto !important;
  top: auto !important;
  bottom: 0 !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-chamber .pd-callout-line {
  left: 112px !important;
  top: auto !important;
  bottom: 30px !important;
  width: 240px !important;
  transform: rotate(-1deg) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-chamber .pd-callout-dot {
  left: auto !important;
  right: 0 !important;
  top: auto !important;
  bottom: 26px !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-recycle {
  left: auto !important;
  right: 30px !important;
  top: auto !important;
  bottom: 50px !important;
  width: 300px !important;
  height: 88px !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-recycle .pd-callout-label {
  left: auto !important;
  right: 0 !important;
  top: auto !important;
  bottom: 0 !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-recycle .pd-callout-line {
  left: auto !important;
  right: 112px !important;
  top: auto !important;
  bottom: 30px !important;
  width: 188px !important;
  transform: rotate(-6deg) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-recycle .pd-callout-dot {
  left: 0 !important;
  right: auto !important;
  top: auto !important;
  bottom: 40px !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout:hover,
body.product-detail-b .pd-equipment-stage .pd-callout:focus-visible {
  filter: drop-shadow(0 18px 26px rgba(0, 72, 150, 0.18)) !important;
  outline: none;
}

body.product-detail-b .pd-equipment-stage .pd-callout-wheel:hover,
body.product-detail-b .pd-equipment-stage .pd-callout-wheel:focus-visible {
  transform: translate3d(-4px, -7px, 0) scale(1.035) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-nozzle:hover,
body.product-detail-b .pd-equipment-stage .pd-callout-nozzle:focus-visible {
  transform: translate3d(5px, -7px, 0) scale(1.035) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-chamber:hover,
body.product-detail-b .pd-equipment-stage .pd-callout-chamber:focus-visible {
  transform: translate3d(-5px, 6px, 0) scale(1.035) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout-recycle:hover,
body.product-detail-b .pd-equipment-stage .pd-callout-recycle:focus-visible {
  transform: translate3d(5px, 6px, 0) scale(1.035) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout:hover .pd-callout-label,
body.product-detail-b .pd-equipment-stage .pd-callout:focus-visible .pd-callout-label {
  background: #004896 !important;
  color: #ffffff !important;
  border-color: #004896 !important;
  box-shadow:
    0 14px 28px rgba(0, 72, 150, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout:hover .pd-callout-line,
body.product-detail-b .pd-equipment-stage .pd-callout:focus-visible .pd-callout-line {
  background: linear-gradient(90deg, rgba(245, 148, 35, 0.95), rgba(33, 177, 224, 0.74)) !important;
  filter: drop-shadow(0 0 8px rgba(33, 177, 224, 0.38)) !important;
}

body.product-detail-b .pd-equipment-stage .pd-callout:hover .pd-callout-dot,
body.product-detail-b .pd-equipment-stage .pd-callout:focus-visible .pd-callout-dot {
  background: #f59423 !important;
  box-shadow:
    0 0 0 6px rgba(245, 148, 35, 0.18),
    0 0 20px rgba(245, 148, 35, 0.42) !important;
}

/* 2026-06-25 fluidized detail page: match the spiral jet mill's flatter rhythm while keeping all content unchanged. */
body.product-detail-b.fluidized-layout-flat .pd-top-hero {
  min-height: 374px;
  padding: 128px 0 46px !important;
}

body.product-detail-b.fluidized-layout-flat .pd-top-hero .hero-lead {
  max-width: 680px;
  font-size: 16px;
  line-height: 28px;
}

body.product-detail-b.fluidized-layout-flat .pd-local-nav .pd-wrap {
  min-height: 50px;
}

body.product-detail-b.fluidized-layout-flat .pd-local-nav a {
  font-size: 13px;
}

body.product-detail-b.fluidized-layout-flat .pd-hero {
  padding: 28px 0 0;
}

body.product-detail-b.fluidized-layout-flat .pd-showcase-card {
  grid-template-columns: minmax(360px, 0.86fr) minmax(480px, 1.14fr);
  box-shadow: 0 22px 46px rgba(12, 49, 60, 0.10);
}

body.product-detail-b.fluidized-layout-flat .pd-hero-copy,
body.product-detail-b.fluidized-layout-flat .pd-product-panel {
  min-height: 420px;
}

body.product-detail-b.fluidized-layout-flat .pd-hero-copy {
  padding: 30px 34px;
}

body.product-detail-b.fluidized-layout-flat .pd-hero h1,
body.product-detail-b.fluidized-layout-flat .pd-hero h2 {
  margin-top: 22px;
  font-size: clamp(31px, 2.8vw, 40px);
  line-height: 1.14;
}

body.product-detail-b.fluidized-layout-flat .pd-lead {
  margin-top: 10px;
  font-size: 14px;
  line-height: 25px;
}

body.product-detail-b.fluidized-layout-flat .pd-chip-row {
  gap: 7px;
  margin-top: 18px;
}

body.product-detail-b.fluidized-layout-flat .pd-chip-row span,
body.product-detail-b.fluidized-layout-flat .pd-process-chips span {
  height: 34px;
  padding: 0 13px;
  font-size: 13px;
  line-height: 32px;
}

body.product-detail-b.fluidized-layout-flat .pd-mini-specs {
  gap: 0;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--corp-line);
  border-left: 1px solid var(--corp-line);
}

body.product-detail-b.fluidized-layout-flat .pd-mini-specs div {
  min-height: 82px;
  padding: 13px 16px;
  border: 0;
  border-right: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
}

body.product-detail-b.fluidized-layout-flat .pd-mini-specs strong {
  margin: 6px 0 2px;
  font-size: 15px;
  line-height: 22px;
}

body.product-detail-b.fluidized-layout-flat .pd-product-panel {
  padding: 22px;
}

body.product-detail-b.fluidized-layout-flat .pd-equipment-stage {
  min-height: 334px;
}

body.product-detail-b.fluidized-layout-flat .pd-equipment-stage::before {
  inset: 20px 44px 26px;
}

body.product-detail-b.fluidized-layout-flat .pd-info-section,
body.product-detail-b.fluidized-layout-flat .pd-detail-section,
body.product-detail-b.fluidized-layout-flat .pd-spec-block {
  padding-top: 56px;
  padding-bottom: 56px;
}

body.product-detail-b.fluidized-layout-flat .pd-info-section .pd-section-head {
  margin-bottom: 14px;
}

body.product-detail-b.fluidized-layout-flat .pd-info-section .pd-section-head h2,
body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title h2,
body.product-detail-b.fluidized-layout-flat .pd-spec-head h2 {
  font-size: 25px;
  line-height: 1.24;
}

body.product-detail-b.fluidized-layout-flat .pd-info-section .pd-section-head p,
body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title p:not(.eyebrow) {
  max-width: 690px;
  font-size: 14px;
  line-height: 1.72;
}

body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title {
  margin-bottom: 16px;
}

body.product-detail-b.fluidized-layout-flat .pd-card,
body.product-detail-b.fluidized-layout-flat .pd-lean-grid .config-item {
  padding: 17px 18px 16px;
}

body.product-detail-b.fluidized-layout-flat .pd-card h3,
body.product-detail-b.fluidized-layout-flat .pd-lean-grid .config-item h3 {
  font-size: 15px;
  line-height: 1.36;
}

body.product-detail-b.fluidized-layout-flat .pd-card p,
body.product-detail-b.fluidized-layout-flat .pd-lean-grid .config-item p {
  font-size: 13px;
  line-height: 1.68;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-animation {
  background:
    linear-gradient(180deg, rgba(246, 250, 252, 0.98), rgba(240, 246, 249, 0.96));
}

body.product-detail-b.fluidized-layout-flat .pd-principle-animation .wrap {
  width: min(1180px, calc(100% - 44px));
}

body.product-detail-b.fluidized-layout-flat .pd-principle-grid {
  grid-template-columns: minmax(0, 1fr) minmax(286px, 0.52fr);
  gap: 16px;
  margin-top: 16px;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-frame {
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 38px rgba(12, 49, 60, 0.10);
}

body.product-detail-b.fluidized-layout-flat .pd-principle-list li {
  min-height: 92px;
  padding: 16px;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-list strong {
  font-size: 14px;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-list span {
  font-size: 13px;
  line-height: 1.62;
}

body.product-detail-b.fluidized-layout-flat .pd-lean-table {
  margin-top: 16px;
}

body.product-detail-b.fluidized-layout-flat .pd-lean-table .table th,
body.product-detail-b.fluidized-layout-flat .pd-lean-table .table td {
  padding: 11px 13px;
  font-size: 13px;
  line-height: 1.55;
}

body.product-detail-b.fluidized-layout-flat .pd-spec-shell {
  padding: 24px;
}

body.product-detail-b.fluidized-layout-flat .pd-spec-head {
  gap: 22px;
  padding-bottom: 18px;
}

body.product-detail-b.fluidized-layout-flat .pd-selection-panel {
  gap: 22px;
  margin-top: 22px;
}

body.product-detail-b.fluidized-layout-flat .pd-selection-copy h2 {
  font-size: 27px;
  line-height: 1.22;
}

body.product-detail-b.fluidized-layout-flat .pd-selection-copy p,
body.product-detail-b.fluidized-layout-flat .pd-selection-copy li,
body.product-detail-b.fluidized-layout-flat .pd-contact-card p,
body.product-detail-b.fluidized-layout-flat .pd-lean-faq details p {
  font-size: 14px;
  line-height: 1.72;
}

body.product-detail-b.fluidized-layout-flat .pd-contact-card {
  padding: 24px;
}

body.product-detail-b.fluidized-layout-flat .pd-lean-faq {
  margin-top: 16px;
}

body.product-detail-b.fluidized-layout-flat .pd-lean-faq summary {
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  body.product-detail-b.fluidized-layout-flat .pd-showcase-card,
  body.product-detail-b.fluidized-layout-flat .pd-principle-grid,
  body.product-detail-b.fluidized-layout-flat .pd-spec-head,
  body.product-detail-b.fluidized-layout-flat .pd-selection-panel {
    grid-template-columns: 1fr;
  }

  body.product-detail-b.fluidized-layout-flat .pd-hero-copy,
  body.product-detail-b.fluidized-layout-flat .pd-product-panel {
    min-height: 0;
  }

  body.product-detail-b.fluidized-layout-flat .pd-principle-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.product-detail-b.fluidized-layout-flat .pd-top-hero {
    min-height: 390px;
    padding: 118px 0 38px !important;
  }

  body.product-detail-b.fluidized-layout-flat .pd-hero-copy {
    padding: 24px 20px;
  }

  body.product-detail-b.fluidized-layout-flat .pd-hero h1,
  body.product-detail-b.fluidized-layout-flat .pd-hero h2 {
    font-size: 30px;
  }

  body.product-detail-b.fluidized-layout-flat .pd-mini-specs,
  body.product-detail-b.fluidized-layout-flat .pd-principle-list {
    grid-template-columns: 1fr;
  }

  body.product-detail-b.fluidized-layout-flat .pd-info-section,
  body.product-detail-b.fluidized-layout-flat .pd-detail-section,
  body.product-detail-b.fluidized-layout-flat .pd-spec-block {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  body.product-detail-b.fluidized-layout-flat .pd-principle-animation .wrap {
    width: min(100% - 28px, 1180px);
  }

  body.product-detail-b.fluidized-layout-flat .pd-principle-frame {
    aspect-ratio: 4 / 3;
  }
}

/* 2026-06-25 correction: fluidized page must use the same product-detail layout skeleton as the spiral jet mill. */
body.product-detail-b.fluidized-layout-flat .pd-top-hero {
  min-height: 386px;
  padding: 136px 0 52px !important;
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.88) 0%, rgba(0, 72, 150, 0.58) 42%, rgba(0, 72, 150, 0.12) 74%, rgba(0, 72, 150, 0.02) 100%),
    url("../images/generated-equipment/jet-mill-ai-clean-showcase-fan-removed-polished-20260606.png") 64% 45% / cover no-repeat !important;
}

body.product-detail-b.fluidized-layout-flat .pd-top-hero .wrap,
body.product-detail-b.fluidized-layout-flat .pd-wrap,
body.product-detail-b.fluidized-layout-flat .pd-principle-animation .wrap {
  width: min(1180px, calc(100% - 44px));
}

body.product-detail-b.fluidized-layout-flat .pd-top-hero .hero-lead {
  max-width: 720px;
  font-size: inherit;
  line-height: inherit;
}

body.product-detail-b.fluidized-layout-flat .pd-local-nav {
  top: 86px;
}

body.product-detail-b.fluidized-layout-flat .pd-local-nav .pd-wrap {
  min-height: 54px;
}

body.product-detail-b.fluidized-layout-flat .pd-local-nav a {
  font-size: inherit;
}

body.product-detail-b.fluidized-layout-flat .pd-hero {
  padding: 32px 0 24px;
}

body.product-detail-b.fluidized-layout-flat .pd-showcase-card {
  grid-template-columns: minmax(380px, 0.88fr) minmax(480px, 1.12fr);
  gap: 0;
  padding: 0;
  border: 1px solid var(--corp-line);
  border-top: 4px solid var(--corp-green);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 26px 58px rgba(12, 49, 60, 0.12);
}

body.product-detail-b.fluidized-layout-flat .pd-hero-copy,
body.product-detail-b.fluidized-layout-flat .pd-product-panel {
  min-height: 440px;
}

body.product-detail-b.fluidized-layout-flat .pd-hero-copy {
  padding: 34px 36px;
}

body.product-detail-b.fluidized-layout-flat .pd-hero h1,
body.product-detail-b.fluidized-layout-flat .pd-hero h2 {
  margin-top: 26px;
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.13;
}

body.product-detail-b.fluidized-layout-flat .pd-lead {
  max-width: 620px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 27px;
}

body.product-detail-b.fluidized-layout-flat .pd-chip-row {
  gap: 8px;
  margin-top: 22px;
}

body.product-detail-b.fluidized-layout-flat .pd-chip-row span,
body.product-detail-b.fluidized-layout-flat .pd-process-chips span {
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 22px;
}

body.product-detail-b.fluidized-layout-flat .pd-mini-specs {
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 0;
  border-left: 0;
}

body.product-detail-b.fluidized-layout-flat .pd-mini-specs div {
  min-height: 96px;
  padding: 16px 24px;
  border: 1px solid var(--pd-line);
  border-radius: 0;
  background: #f6f9fc;
}

body.product-detail-b.fluidized-layout-flat .pd-mini-specs strong {
  margin: 8px 0 4px;
  font-size: 16px;
  line-height: 24px;
}

body.product-detail-b.fluidized-layout-flat .pd-product-panel {
  padding: 24px;
}

body.product-detail-b.fluidized-layout-flat .pd-equipment-stage {
  min-height: 356px;
}

body.product-detail-b.fluidized-layout-flat .pd-equipment-stage::before {
  inset: 22px 46px 28px;
}

body.product-detail-b.fluidized-layout-flat .pd-info-section,
body.product-detail-b.fluidized-layout-flat .pd-detail-section,
body.product-detail-b.fluidized-layout-flat .pd-spec-block {
  padding-top: 66px;
  padding-bottom: 66px;
}

body.product-detail-b.fluidized-layout-flat .pd-info-section .pd-section-head {
  margin-bottom: 16px;
}

body.product-detail-b.fluidized-layout-flat .pd-info-section .pd-section-head h2,
body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title h2,
body.product-detail-b.fluidized-layout-flat .pd-spec-head h2 {
  font-size: 26px;
  line-height: 1.25;
}

body.product-detail-b.fluidized-layout-flat .pd-info-section .pd-section-head p,
body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title p:not(.eyebrow) {
  max-width: 720px;
  font-size: 14px;
  line-height: 1.75;
}

body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title {
  margin-bottom: 18px;
}

body.product-detail-b.fluidized-layout-flat .pd-card,
body.product-detail-b.fluidized-layout-flat .pd-lean-grid .config-item {
  padding: 18px 18px 16px;
}

body.product-detail-b.fluidized-layout-flat .pd-card h3,
body.product-detail-b.fluidized-layout-flat .pd-lean-grid .config-item h3 {
  font-size: 15px;
  line-height: inherit;
}

body.product-detail-b.fluidized-layout-flat .pd-card p,
body.product-detail-b.fluidized-layout-flat .pd-lean-grid .config-item p {
  font-size: 13px;
  line-height: 1.72;
}

body.product-detail-b.fluidized-layout-flat .pd-lean-table {
  margin-top: 18px;
}

body.product-detail-b.fluidized-layout-flat .pd-lean-table .table th,
body.product-detail-b.fluidized-layout-flat .pd-lean-table .table td {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
}

body.product-detail-b.fluidized-layout-flat .pd-spec-shell {
  padding: 28px;
}

body.product-detail-b.fluidized-layout-flat .pd-spec-head {
  gap: 28px;
  padding-bottom: 20px;
}

body.product-detail-b.fluidized-layout-flat .pd-selection-panel {
  gap: 28px;
  margin-top: 28px;
}

body.product-detail-b.fluidized-layout-flat .pd-selection-copy h2 {
  font-size: inherit;
  line-height: inherit;
}

body.product-detail-b.fluidized-layout-flat .pd-selection-copy p,
body.product-detail-b.fluidized-layout-flat .pd-selection-copy li,
body.product-detail-b.fluidized-layout-flat .pd-contact-card p,
body.product-detail-b.fluidized-layout-flat .pd-lean-faq details p {
  font-size: inherit;
  line-height: inherit;
}

body.product-detail-b.fluidized-layout-flat .pd-contact-card {
  padding: 28px;
}

body.product-detail-b.fluidized-layout-flat .pd-lean-faq {
  margin-top: 18px;
}

body.product-detail-b.fluidized-layout-flat .pd-lean-faq summary {
  font-size: inherit;
  line-height: inherit;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-animation {
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 145, 182, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(246, 250, 252, 0.98), rgba(237, 244, 248, 0.94));
}

body.product-detail-b.fluidized-layout-flat .pd-principle-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.64fr);
  gap: 20px;
  margin-top: 20px;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-frame {
  aspect-ratio: 16 / 10;
  box-shadow: 0 22px 52px rgba(12, 49, 60, 0.14);
}

body.product-detail-b.fluidized-layout-flat .pd-principle-list li {
  min-height: 112px;
  padding: 18px;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-list strong {
  font-size: 15px;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-list span {
  font-size: 13px;
  line-height: 1.72;
}

@media (max-width: 1100px) {
  body.product-detail-b.fluidized-layout-flat .pd-showcase-card,
  body.product-detail-b.fluidized-layout-flat .pd-principle-grid,
  body.product-detail-b.fluidized-layout-flat .pd-spec-head,
  body.product-detail-b.fluidized-layout-flat .pd-selection-panel {
    grid-template-columns: 1fr;
  }

  body.product-detail-b.fluidized-layout-flat .pd-hero-copy,
  body.product-detail-b.fluidized-layout-flat .pd-product-panel {
    min-height: 0;
  }

  body.product-detail-b.fluidized-layout-flat .pd-principle-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.product-detail-b.fluidized-layout-flat .pd-top-hero {
    min-height: 430px;
    padding: 124px 0 42px !important;
    background-position: 62% center !important;
  }

  body.product-detail-b.fluidized-layout-flat .pd-hero-copy {
    padding: 34px 36px;
  }

  body.product-detail-b.fluidized-layout-flat .pd-hero h1,
  body.product-detail-b.fluidized-layout-flat .pd-hero h2 {
    font-size: clamp(32px, 3.1vw, 44px);
  }

  body.product-detail-b.fluidized-layout-flat .pd-mini-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.product-detail-b.fluidized-layout-flat .pd-info-section,
  body.product-detail-b.fluidized-layout-flat .pd-detail-section,
  body.product-detail-b.fluidized-layout-flat .pd-spec-block {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  body.product-detail-b.fluidized-layout-flat .pd-principle-animation .wrap {
    width: min(100% - 28px, 1180px);
  }

  body.product-detail-b.fluidized-layout-flat .pd-principle-frame {
    aspect-ratio: 4 / 3;
  }

body.product-detail-b.fluidized-layout-flat .pd-principle-list {
    grid-template-columns: 1fr;
  }
}

/* 2026-06-25 equipment host refresh: keep product directory photos uncropped. */
body.products-page .product-directory-grid .product-media.photo-impact::before {
  inset: 16px 18px 18px;
}

body.products-page .product-directory-grid .product-media.photo-spheronizer::before {
  inset: 10px 30px 12px;
}

/* 2026-06-25 homepage product strip: match the jet mill card canvas without editing equipment art. */
body.home-hero-dome #products .home-product-grid {
  gap: 0 !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
}

body.home-hero-dome #products .home-product-grid .product-card {
  margin: 0 !important;
  border: 0 !important;
}

body.home-hero-dome #products .home-product-grid .product-media {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
}

body.home-hero-dome #products .home-product-grid .product-media.photo-media::before {
  inset: 0 !important;
  background-position: center center !important;
  background-size: calc(100% + 48px) auto !important;
}

@media (min-width: 1101px) {
  body.home-hero-dome #products .home-product-grid .product-card:nth-child(3n+2),
  body.home-hero-dome #products .home-product-grid .product-card:nth-child(3n) {
    margin-left: -2px !important;
    width: calc(100% + 2px);
  }

  body.home-hero-dome #products .home-product-grid .product-card:nth-child(3n+2) .product-media.photo-media::before,
  body.home-hero-dome #products .home-product-grid .product-card:nth-child(3n) .product-media.photo-media::before {
    background-position: calc(50% - 8px) center !important;
  }

  body.home-hero-dome #products .home-product-grid .product-card:nth-child(3n+2) .product-media.photo-media::after,
  body.home-hero-dome #products .home-product-grid .product-card:nth-child(3n) .product-media.photo-media::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 8px;
    pointer-events: none;
    background: linear-gradient(180deg, #f1f2f3 0%, #f8f8f7 46%, #f4f5f5 100%);
  }
}

@media (min-width: 681px) and (max-width: 1100px) {
  body.home-hero-dome #products .home-product-grid .product-card:nth-child(even) {
    margin-left: -2px !important;
    width: calc(100% + 2px);
  }

  body.home-hero-dome #products .home-product-grid .product-card:nth-child(even) .product-media.photo-media::before {
    background-position: calc(50% - 8px) center !important;
  }

  body.home-hero-dome #products .home-product-grid .product-card:nth-child(even) .product-media.photo-media::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 8px;
    pointer-events: none;
    background: linear-gradient(180deg, #f1f2f3 0%, #f8f8f7 46%, #f4f5f5 100%);
  }
}

body.graphite-spheronizer-page .product-equipment-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

body.graphite-spheronizer-page .product-equipment-card img {
  display: block;
  width: 100%;
  height: clamp(260px, 28vw, 360px);
  object-fit: contain;
  border: 1px solid rgba(0, 72, 150, 0.10);
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfcfd 0%, #eef3f6 100%);
}

body.solution-detail-page.graphite-spheronizing-detail .solution-detail-visual {
  background: linear-gradient(180deg, #fbfcfd 0%, #eef3f6 100%);
}

body.solution-detail-page.graphite-spheronizing-detail .solution-detail-visual img {
  height: 400px;
  padding: 18px 22px;
  object-fit: contain;
  background: transparent;
}

@media (max-width: 680px) {
  body.products-page .product-directory-grid .product-media.photo-spheronizer::before {
    inset: 6px 20px 8px;
  }

  body.graphite-spheronizer-page .product-equipment-card {
    padding: 18px;
  }

  body.graphite-spheronizer-page .product-equipment-card img {
    height: 300px;
  }

  body.solution-detail-page.graphite-spheronizing-detail .solution-detail-visual img {
    height: 320px;
    padding: 14px;
  }
}

/* 2026-06-25 fluidized jet mill detail: internal ceramic parts module. */
body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--corp-line);
  background: #ffffff;
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: end;
  padding: 24px;
  border-bottom: 1px solid var(--corp-line);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-head h3 {
  margin: 5px 0 0;
  color: var(--corp-ink);
  font-size: 22px;
  line-height: 1.35;
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-head p:last-child {
  margin: 0;
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 1.85;
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card {
  min-width: 0;
  padding: 18px 18px 20px;
  border-right: 1px solid var(--corp-line);
  background: #ffffff;
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card:last-child {
  border-right: 0;
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 49, 60, 0.10);
  background: #f7f9fb;
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card img {
  display: block;
  width: 100%;
  aspect-ratio: 36 / 23;
  object-fit: cover;
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card h4 {
  margin: 14px 0 0;
  color: var(--corp-ink);
  font-size: 16px;
  line-height: 1.35;
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card p {
  margin: 8px 0 0;
  color: var(--pd-muted);
  font-size: 13px;
  line-height: 1.72;
}

body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-note {
  margin: 0;
  padding: 14px 24px;
  border-top: 1px solid var(--corp-line);
  background: #f8fafc;
  color: var(--pd-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Gallery section */
.pd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.pd-gallery-wide {
  grid-column: 1 / -1;
}
.pd-gallery-item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f7fa;
}
.pd-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.pd-gallery-wide img {
  height: 360px;
}
.pd-gallery-item figcaption {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--pd-muted, #6b7c8d);
  border-top: 1px solid rgba(0,0,0,0.06);
}
/* 两图并排版式：矮框 + 裁切窗口贴下方，保证主机和地面可见 */
.pd-gallery-duo .pd-gallery-item img {
  height: 230px;
  object-position: center 90%;
}
@media (max-width: 640px) {
  .pd-gallery-grid { grid-template-columns: 1fr; }
  .pd-gallery-wide { grid-column: auto; }
  .pd-gallery-item img, .pd-gallery-wide img { height: 220px; }
  .pd-gallery-duo .pd-gallery-item img { height: 200px; }
}

@media (max-width: 980px) {
  body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card {
    border-bottom: 1px solid var(--corp-line);
  }

  body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card:nth-child(even) {
    border-right: 0;
  }

  body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts {
    margin-top: 18px;
  }

  body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-head,
  body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-note {
    padding: 18px;
  }

  body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-head h3 {
    font-size: 20px;
  }

  body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts-grid {
    grid-template-columns: 1fr;
  }

  body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card,
  body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card:nth-child(even) {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--corp-line);
  }

body.product-detail-b.fluidized-layout-flat .pd-ceramic-part-card:last-child {
    border-bottom: 0;
  }
}

/* 2026-06-29 product type page: calmer industrial catalogue typography. */
body.products-page .page-hero h1 {
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 1.12;
  font-weight: 800;
}

body.products-page .page-hero p {
  font-size: 16px;
  line-height: 1.75;
}

body.products-page .section-title h2 {
  color: var(--corp-ink);
  font-size: clamp(30px, 2.45vw, 40px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

body.products-page .product-finder-title h2 {
  max-width: 760px;
  font-size: clamp(32px, 2.55vw, 42px);
}

body.products-page .product-directory-title h2 {
  max-width: 520px;
  font-size: clamp(30px, 2.15vw, 36px);
  line-height: 1.2;
  font-weight: 800;
}

body.products-page .section-title p,
body.products-page .product-directory-title > p {
  color: rgba(45, 70, 84, 0.76);
  font-size: 15px;
  line-height: 1.85;
}

.product-finder-card strong {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.product-finder-card p {
  font-size: 13px;
  line-height: 1.7;
}

body.products-page .product-directory-grid .card-body h3 {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

body.products-page .product-directory-grid .card-body p {
  font-size: 13px;
  line-height: 1.75;
}

body.products-page .product-directory-grid .card-link {
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 680px) {
  body.products-page .page-hero h1 {
    font-size: 32px;
  }

  body.products-page .section-title h2,
  body.products-page .product-finder-title h2,
  body.products-page .product-directory-title h2 {
    font-size: 28px;
    line-height: 1.22;
  }
}

/* 2026-06-29 homepage product matrix: remove visible seams between product images. */
body.home-hero-dome #products .home-product-grid {
  gap: 0 !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
  overflow: hidden;
  background: #ffffff;
}

body.home-hero-dome #products .home-product-grid .product-card {
  position: relative;
  margin: 0 !important;
  border: 0 !important;
  outline: 0;
  box-shadow: none !important;
  overflow: hidden;
  background: #ffffff !important;
}

body.home-hero-dome #products .home-product-grid .product-media {
  display: block;
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  outline: 0;
  box-shadow: none !important;
}

body.home-hero-dome #products .home-product-grid .product-media.photo-media::before {
  inset: -1px !important;
  background-position: center center !important;
  background-size: calc(100% + 56px) auto !important;
}

body.home-hero-dome #products .home-product-grid .product-media.photo-media::after {
  content: none !important;
  display: none !important;
}

@media (min-width: 1101px) {
  body.home-hero-dome #products .home-product-grid .product-card:nth-child(3n+2),
  body.home-hero-dome #products .home-product-grid .product-card:nth-child(3n) {
    margin-left: -6px !important;
    width: calc(100% + 6px);
  }
}

@media (min-width: 681px) and (max-width: 1100px) {
  body.home-hero-dome #products .home-product-grid .product-card:nth-child(even) {
    margin-left: -6px !important;
    width: calc(100% + 6px);
  }
}

/* 2026-06-29 resources center: old-site technical clues rewritten as engineering resources. */
body.resources-page .resources-hero {
  background:
    linear-gradient(110deg, rgba(5, 23, 42, 0.9), rgba(0, 72, 150, 0.76)),
    radial-gradient(circle at 74% 28%, rgba(160, 193, 208, 0.26), transparent 34%),
    #071626;
}

body.resources-page .resources-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(26px, 4vw, 56px);
  align-items: end;
}

body.resources-page .resources-summary-panel {
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

body.resources-page .resources-summary-panel span,
body.resources-page .resource-card span,
body.resource-detail-page .resource-side span {
  display: block;
  color: var(--strip-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 10px;
}

body.resources-page .resources-summary-panel strong {
  display: block;
  font-size: 22px;
  line-height: 1.32;
  margin-bottom: 12px;
}

body.resources-page .resources-summary-panel p,
body.resources-page .resources-summary-panel li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

body.resources-page .resources-summary-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

body.resources-page .resource-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--netzsch-border);
  background: #ffffff;
}

body.resources-page .resource-feature-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  border-right: 1px solid var(--netzsch-border);
  display: flex;
  flex-direction: column;
}

body.resources-page .resource-feature-card:last-child {
  border-right: 0;
}

body.resources-page .resource-tag {
  color: var(--strip-blue);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 900;
  margin-bottom: 18px;
}

body.resources-page .resource-feature-card h3 {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 16px;
}

body.resources-page .resource-feature-card > p:not(.resource-tag) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 20px;
}

body.resources-page .resource-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

body.resources-page .resource-meta-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  background: rgba(0, 72, 150, 0.08);
  color: var(--strip-blue);
  font-size: 12px;
  font-weight: 800;
  margin: 0;
}

body.resources-page .resource-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  margin-top: 20px;
  border-top: 1px solid var(--netzsch-border);
}

body.resources-page .resource-text-link {
  color: var(--netzsch-muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

body.resources-page .resource-text-link:hover {
  color: var(--strip-blue);
}

body.resources-page .resource-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--netzsch-border);
}

body.resources-page .resource-secondary-grid .resource-card {
  display: block;
  min-height: 230px;
  text-decoration: none;
  border: 0 !important;
  border-right: 1px solid var(--netzsch-border) !important;
}

body.resources-page .resource-secondary-grid .resource-card:last-child {
  border-right: 0 !important;
}

body.resources-page .resource-secondary-grid .resource-card h3 {
  font-size: 20px;
  line-height: 1.35;
}

body.resources-page .resources-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  background:
    linear-gradient(120deg, rgba(4, 22, 38, 0.96), rgba(0, 72, 150, 0.9)),
    #071626;
  color: #ffffff;
}

body.resources-page .resources-cta-panel h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 14px;
}

body.resources-page .resources-cta-panel p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

body.resources-page .resources-cta-actions {
  display: grid;
  gap: 12px;
}

body.resource-detail-page .resource-detail-hero {
  padding: 130px 0 76px;
  background:
    linear-gradient(112deg, rgba(5, 23, 42, 0.93), rgba(0, 72, 150, 0.8)),
    radial-gradient(circle at 78% 22%, rgba(204, 223, 232, 0.24), transparent 34%),
    #071626;
  color: #ffffff;
}

body.resource-detail-page .resource-breadcrumb {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 22px;
}

body.resource-detail-page .resource-detail-hero h1 {
  max-width: 980px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 20px;
}

body.resource-detail-page .resource-detail-hero p:not(.eyebrow) {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.9;
}

body.resource-detail-page .resource-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.resource-detail-page .resource-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: fit-content;
  max-width: 100%;
}

body.resource-detail-page .resource-hero-facts span {
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

body.resource-detail-page .resource-hero-facts span:last-child {
  border-right: 0;
}

body.resource-detail-page .resource-article-section {
  padding: clamp(58px, 7vw, 92px) 0;
  background: #f5f8fb;
}

body.resource-detail-page .resource-article-layout {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

body.resource-detail-page .resource-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1px;
  background: var(--netzsch-border);
  border: 1px solid var(--netzsch-border);
}

body.resource-detail-page .resource-side > div,
body.resource-detail-page .resource-side .btn {
  background: #ffffff;
  padding: 22px;
}

body.resource-detail-page .resource-side strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
}

body.resource-detail-page .resource-side p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

body.resource-detail-page .resource-article {
  background: #ffffff;
  border: 1px solid var(--netzsch-border);
}

body.resource-detail-page .resource-block {
  padding: clamp(28px, 4vw, 46px);
  border-bottom: 1px solid var(--netzsch-border);
}

body.resource-detail-page .resource-block:last-child {
  border-bottom: 0;
}

body.resource-detail-page .resource-block h2 {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.16;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 16px;
}

body.resource-detail-page .resource-block p,
body.resource-detail-page .resource-list li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

body.resource-detail-page .resource-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  border: 1px solid var(--netzsch-border);
}

body.resource-detail-page .resource-check-grid article {
  padding: 22px;
  border-right: 1px solid var(--netzsch-border);
}

body.resource-detail-page .resource-check-grid article:last-child {
  border-right: 0;
}

body.resource-detail-page .resource-check-grid span {
  display: block;
  color: var(--strip-blue);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

body.resource-detail-page .resource-check-grid strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 8px;
}

body.resource-detail-page .resource-check-grid p {
  font-size: 13px;
  line-height: 1.75;
}

body.resource-detail-page .resource-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  font-size: 14px;
}

body.resource-detail-page .resource-table th,
body.resource-detail-page .resource-table td {
  padding: 16px;
  border: 1px solid var(--netzsch-border);
  text-align: left;
  vertical-align: top;
  line-height: 1.75;
}

body.resource-detail-page .resource-table th {
  color: var(--ink);
  background: #f1f6fa;
  font-weight: 850;
}

body.resource-detail-page .resource-table td {
  color: var(--muted);
}

body.resource-detail-page .resource-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

body.resource-detail-page .resource-next-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

body.resource-detail-page .resource-next-panel h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 14px;
}

body.resource-detail-page .resource-next-panel p {
  color: var(--muted);
  line-height: 1.85;
}

body.resource-detail-page .resource-next-links {
  display: grid;
  border: 1px solid var(--netzsch-border);
  background: #ffffff;
}

body.resource-detail-page .resource-next-links a {
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  border-bottom: 1px solid var(--netzsch-border);
}

body.resource-detail-page .resource-next-links a:last-child {
  border-bottom: 0;
}

body.resource-detail-page .resource-next-links a:hover {
  color: var(--strip-blue);
  background: rgba(0, 72, 150, 0.06);
}

@media (max-width: 980px) {
  body.resources-page .resources-hero-grid,
  body.resources-page .resource-featured-grid,
  body.resources-page .resource-secondary-grid,
  body.resources-page .resources-cta-panel,
  body.resource-detail-page .resource-article-layout,
  body.resource-detail-page .resource-check-grid,
  body.resource-detail-page .resource-next-panel {
    grid-template-columns: 1fr;
  }

  body.resource-detail-page .resource-side {
    position: static;
  }

  body.resources-page .resource-feature-card,
  body.resources-page .resource-secondary-grid .resource-card,
  body.resource-detail-page .resource-check-grid article {
    border-right: 0 !important;
    border-bottom: 1px solid var(--netzsch-border) !important;
  }

  body.resources-page .resource-feature-card:last-child,
  body.resources-page .resource-secondary-grid .resource-card:last-child,
  body.resource-detail-page .resource-check-grid article:last-child {
    border-bottom: 0 !important;
  }
}

@media (max-width: 640px) {
  body.resources-page .resources-summary-panel,
  body.resources-page .resource-feature-card,
  body.resources-page .resources-cta-panel,
  body.resource-detail-page .resource-block {
    padding: 22px;
  }

  body.resource-detail-page .resource-detail-hero {
    padding: 110px 0 58px;
  }

  body.resource-detail-page .resource-hero-facts {
    width: 100%;
  }

  body.resource-detail-page .resource-hero-facts span {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  body.resource-detail-page .resource-hero-facts span:last-child {
    border-bottom: 0;
  }

  body.resource-detail-page .resource-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }
}

/* 2026-06-29: remove the small blue decorative block after card CTA links site-wide. */
.card-link {
  gap: 0 !important;
}

.card-link::after,
.card-link:hover::after,
body.home-hero-dome #products .home-product-grid .card-link::after,
body.products-page .product-directory-grid .card-link::after,
body.resources-page .resource-feature-card .card-link::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  transform: none !important;
}

/* 2026-06-29 fluidized jet mill: full principle description under section title. */
body.product-detail-b.fluidized-layout-flat .pd-principle-animation .section-title .pd-principle-copy {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(45, 70, 84, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-list .pd-principle-summary {
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

body.product-detail-b.fluidized-layout-flat .pd-principle-list .pd-principle-summary strong {
  color: var(--corp-blue);
}

body.product-detail-b.fluidized-layout-flat .pd-principle-list .pd-principle-summary span {
  color: rgba(37, 65, 78, 0.78);
  font-size: 13px;
  line-height: 1.78;
}

/* 2026-06-29 fluidized jet mill: balanced principle copy beside the animation. */
body.product-detail-b.fluidized-layout-flat .pd-principle-side {
  align-self: stretch;
  padding: 22px 24px;
  border: 1px solid var(--corp-line);
  border-top: 4px solid var(--corp-blue);
  background: #ffffff;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-side h3 {
  margin: 0 0 12px;
  color: var(--corp-ink);
  font-size: 18px;
  line-height: 1.35;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-side p {
  margin: 0;
  color: rgba(37, 65, 78, 0.78);
  font-size: 14px;
  line-height: 1.85;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--corp-line);
  border-left: 1px solid var(--corp-line);
  background: #ffffff;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-steps li {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 16px;
  border-right: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
}

body.product-detail-b.fluidized-layout-flat .pd-principle-steps strong {
  color: var(--corp-ink);
  font-size: 14px;
  line-height: 1.35;
}

body.product-detail-b.fluidized-layout-flat .pd-principle-steps span {
  color: rgba(37, 65, 78, 0.74);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  body.product-detail-b.fluidized-layout-flat .pd-principle-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body.product-detail-b.fluidized-layout-flat .pd-principle-side {
    padding: 18px;
  }

  body.product-detail-b.fluidized-layout-flat .pd-principle-steps {
    grid-template-columns: 1fr;
  }
}

/* 2026-06-30 product detail unification: all product detail pages use the fluidized detail shell at native scale. */
body.product-detail-b.fluidized-layout-flat {
  zoom: 1;
  transform: none;
}

body.product-detail-b.fluidized-layout-flat .pd-page {
  transform: none;
}

body.product-detail-b.fluidized-layout-flat.product-air-classifier .pd-top-hero {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.88) 0%, rgba(0, 72, 150, 0.56) 42%, rgba(0, 72, 150, 0.10) 74%, rgba(0, 72, 150, 0.02) 100%),
    url("../images/generated-equipment/classifier-system-stainless-20260606.webp") 62% 46% / cover no-repeat !important;
}

body.product-detail-b.fluidized-layout-flat.product-lab-jet-mill .pd-top-hero,
body.product-detail-b.fluidized-layout-flat.product-spiral-jet-mill .pd-top-hero,
body.product-detail-b.fluidized-layout-flat.product-ceramic-lined-jet-mill .pd-top-hero {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.88) 0%, rgba(0, 72, 150, 0.58) 42%, rgba(0, 72, 150, 0.12) 74%, rgba(0, 72, 150, 0.02) 100%),
    url("../images/generated-equipment/fluid-energy-jet-mill-main-stand-20260606.webp") 62% 46% / cover no-repeat !important;
}

body.product-detail-b.fluidized-layout-flat.product-inert-gas-jet-milling-system .pd-top-hero,
body.product-detail-b.fluidized-layout-flat.product-grinding-classification-line .pd-top-hero,
body.product-detail-b.fluidized-layout-flat.product-solid-electrolyte-system .pd-top-hero,
body.product-detail-b.fluidized-layout-flat.product-steam-jet-mill .pd-top-hero {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.88) 0%, rgba(0, 72, 150, 0.55) 42%, rgba(0, 72, 150, 0.12) 74%, rgba(0, 72, 150, 0.02) 100%),
    url("../images/generated-equipment/stainless-platform-processing-system-retouched-20260606.webp") 64% 48% / cover no-repeat !important;
}

body.product-detail-b.fluidized-layout-flat.product-inert-gas-mechanical-mill .pd-top-hero {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.88) 0%, rgba(0, 72, 150, 0.56) 42%, rgba(0, 72, 150, 0.12) 74%, rgba(0, 72, 150, 0.02) 100%),
    url("../images/generated-equipment/mechanical-mill-system-stainless-with-impact-host-20260606.webp") 64% 50% / cover no-repeat !important;
}

body.product-detail-b.fluidized-layout-flat.product-graphite-spheronizer .pd-top-hero {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.88) 0%, rgba(0, 72, 150, 0.58) 42%, rgba(0, 72, 150, 0.10) 74%, rgba(0, 72, 150, 0.02) 100%),
    url("../images/generated-equipment/graphite-spheronizer-main-host-final-20260625-hero.webp") 64% 48% / cover no-repeat !important;
}

body.product-detail-b.fluidized-layout-flat.product-fluidized-bed-jet-mill .pd-top-hero {
  background:
    linear-gradient(90deg, rgba(0, 43, 89, 0.88) 0%, rgba(0, 72, 150, 0.58) 42%, rgba(0, 72, 150, 0.12) 74%, rgba(0, 72, 150, 0.02) 100%),
    url("../images/generated-equipment/fluidized-bed-jet-mill-site-install-worker-20260704.webp") 62% 62% / cover no-repeat !important;
}

body.product-detail-b.fluidized-layout-flat .pd-equipment-stage.pd-equipment-spheronizer::before {
  background: url("../images/generated-equipment/graphite-spheronizer-main-host-final-20260625-card.webp") center 52% / contain no-repeat;
}

body.product-detail-b.fluidized-layout-flat .pd-equipment-stage.pd-equipment-ceramic::before {
  background: url("../images/generated-equipment/jet-mill-ai-clean-showcase-fan-removed-polished-20260606-card.webp") center 54% / contain no-repeat;
}

body.product-detail-b.fluidized-layout-flat .pd-equipment-stage.pd-equipment-mechanical::before {
  background: url("../images/generated-equipment/mechanical-mill-system-stainless-with-impact-host-20260606-card-soft.webp") center 52% / contain no-repeat;
}

body.product-detail-b.fluidized-layout-flat .pd-equipment-stage.pd-equipment-solid::before,
body.product-detail-b.fluidized-layout-flat .pd-equipment-stage.pd-equipment-steam::before {
  background: url("../images/generated-equipment/stainless-platform-processing-system-retouched-20260606-card.webp") center 52% / contain no-repeat;
}

/* ==========================================================================
   2026-06-30: product-detail fluidized-layout-flat — layout polish
   1) align all section containers to pd-wrap width (1200px / 24px gutters)
   2) clean backgrounds: white / #f5f7f9 only, no tinted gradients or grids
   3) consistent 72px vertical rhythm across all content sections
   ========================================================================== */

/* 1 — Container alignment
   pd-showcase-card has padding:24px, so card content starts at container_left+24px.
   Add padding-inline:24px to all content section wraps so text edges match exactly. */
body.product-detail-b.fluidized-layout-flat .pd-detail-section > .wrap,
body.product-detail-b.fluidized-layout-flat .pd-principle-animation > .wrap,
body.product-detail-b.fluidized-layout-flat .pd-spec-block > .wrap {
  width: min(100% - 48px, 1200px);
  padding-inline: 24px;
  box-sizing: border-box;
}

/* 2 — Clean backgrounds */
/* Remove page-level tinted radial gradients */
body.product-detail-b.fluidized-layout-flat .pd-page {
  background: #ffffff;
}

/* Alt sections → neutral light gray */
body.product-detail-b.fluidized-layout-flat .section.alt.pd-detail-section,
body.product-detail-b.fluidized-layout-flat .section.alt.pd-principle-animation {
  background: #f5f7f9;
}

/* Non-alt sections → pure white */
body.product-detail-b.fluidized-layout-flat .section.pd-detail-section:not(.alt),
body.product-detail-b.fluidized-layout-flat .section.pd-spec-block {
  background: #ffffff;
}

/* Override the earlier principle-animation specific tinted gradient */
body.product-detail-b.fluidized-layout-flat .pd-principle-animation {
  background: #f5f7f9;
}

/* Kill decorative grid / stripe overlays on alt sections */
body.product-detail-b.fluidized-layout-flat .pd-detail-section::before,
body.product-detail-b.fluidized-layout-flat .pd-principle-animation::before,
body.product-detail-b.fluidized-layout-flat .pd-spec-block::before {
  display: none !important;
}

/* 3 — Consistent 72px vertical rhythm (overrides .section.sm 60px) */
body.product-detail-b.fluidized-layout-flat .pd-detail-section,
body.product-detail-b.fluidized-layout-flat .pd-principle-animation,
body.product-detail-b.fluidized-layout-flat .pd-spec-block {
  padding: 72px 0;
}

/* Section title block: consistent spacing and type scale */
body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title,
body.product-detail-b.fluidized-layout-flat .pd-principle-animation .section-title {
  margin-bottom: 36px;
}

body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title .eyebrow,
body.product-detail-b.fluidized-layout-flat .pd-principle-animation .section-title .eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue, #0071b2);
}

body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title h2,
body.product-detail-b.fluidized-layout-flat .pd-principle-animation .section-title h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--navy, #0c1d2d);
}

body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title p:not(.eyebrow),
body.product-detail-b.fluidized-layout-flat .pd-principle-animation .section-title p:not(.eyebrow) {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #4a5568;
  max-width: 680px;
}

/* Mobile: tighten to 52px */
@media (max-width: 680px) {
  body.product-detail-b.fluidized-layout-flat .pd-detail-section,
  body.product-detail-b.fluidized-layout-flat .pd-principle-animation,
  body.product-detail-b.fluidized-layout-flat .pd-spec-block {
    padding: 52px 0;
  }
}

/* ============================================================
   2026-06-30 spacing calibration v2 — compact industrial catalogue rhythm
   All section padding pulled to 56px; internal sub-block margins tightened.
   ============================================================ */

/* 1 — Showcase card (pd-hero): symmetric, compact */
body.product-detail-b.fluidized-layout-flat .pd-hero {
  padding: 36px 0;
}

/* 2 — All content sections: uniform 56px (down from 72px) */
body.product-detail-b.fluidized-layout-flat .pd-detail-section,
body.product-detail-b.fluidized-layout-flat .pd-principle-animation,
body.product-detail-b.fluidized-layout-flat .pd-spec-block {
  padding: 56px 0;
}

/* 3 — Section title: 28px to first content item */
body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title,
body.product-detail-b.fluidized-layout-flat .pd-principle-animation .section-title {
  margin-bottom: 28px;
}

/* 4 — Principle: steps bar gap (was 14px — still needs to be distinct) */
body.product-detail-b.fluidized-layout-flat .pd-principle-grid {
  margin-top: 0;
}
body.product-detail-b.fluidized-layout-flat .pd-principle-steps {
  margin-top: 20px;
}

/* 5 — Features: card grid and ceramic parts block */
body.product-detail-b.fluidized-layout-flat .pd-lean-grid {
  margin-top: 0;
}
body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts {
  margin-top: 28px;
}

/* 6 — Tables */
body.product-detail-b.fluidized-layout-flat .pd-lean-table {
  margin-top: 0;
}

/* 7 — Spec shell */
body.product-detail-b.fluidized-layout-flat .pd-spec-shell {
  padding: 24px;
}
body.product-detail-b.fluidized-layout-flat .pd-spec-head {
  padding-bottom: 18px;
}
body.product-detail-b.fluidized-layout-flat .pd-selection-panel {
  margin-top: 24px;
}

/* 8 — FAQ */
body.product-detail-b.fluidized-layout-flat .pd-lean-faq {
  margin-top: 0;
}

/* 9 — Mobile (≤680px) */
@media (max-width: 680px) {
  body.product-detail-b.fluidized-layout-flat .pd-hero {
    padding: 28px 0;
  }
  body.product-detail-b.fluidized-layout-flat .pd-detail-section,
  body.product-detail-b.fluidized-layout-flat .pd-principle-animation,
  body.product-detail-b.fluidized-layout-flat .pd-spec-block {
    padding: 40px 0;
  }
  body.product-detail-b.fluidized-layout-flat .pd-detail-section .section-title,
  body.product-detail-b.fluidized-layout-flat .pd-principle-animation .section-title {
    margin-bottom: 20px;
  }
  body.product-detail-b.fluidized-layout-flat .pd-ceramic-parts {
    margin-top: 20px;
  }
  body.product-detail-b.fluidized-layout-flat .pd-selection-panel {
    margin-top: 20px;
  }
}

/* ═══════════════════════════════════════════════
   新增：微信浮动按钮 / 信任栏 / 快速询盘 / ICP / 4列底部栏
   ═══════════════════════════════════════════════ */

/* ── 微信浮动侧边按钮 (桌面) ── */
.wechat-float {
  position: fixed;
  right: 0;
  top: 30%;
  z-index: 200;
  display: flex;
  align-items: center;
}

.wechat-float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 9px;
  background: #07c160;
  color: #fff;
  border: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.5px;
  writing-mode: vertical-lr;
  box-shadow: -3px 4px 18px rgba(0,0,0,0.18);
  transition: background 0.18s, transform 0.18s;
  font-family: var(--font-sans);
  user-select: none;
}

.wechat-float-btn .wf-icon {
  writing-mode: horizontal-tb;
  font-size: 20px;
  margin-bottom: 2px;
}

.wechat-float-btn:hover {
  background: #06ae56;
  transform: translateX(-3px);
}

.wechat-float-popup {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  text-align: center;
  width: 168px;
}

.wechat-float-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.wechat-float-popup p {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.wechat-qr-img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 10px;
  border-radius: 6px;
}

.wechat-float-popup small {
  font-size: 11px;
  color: var(--muted);
  display: block;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .wechat-float { display: none; }
}

/* ── ICP 备案号 ── */
.footer-icp {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

/* ── 页脚微信咨询按钮 ── */
.footer-wechat {
  position: relative;
  display: inline-block;
  margin-top: 14px;
}

.footer-wechat-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #07c160;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  box-shadow: 0 3px 14px rgba(7,193,96,0.35);
  transition: transform 0.18s, box-shadow 0.18s;
  user-select: none;
}

.footer-wechat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(7,193,96,0.45);
}

.footer-wechat-popup {
  position: fixed;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  text-align: center;
  width: 172px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 9999;
}

.footer-wechat-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-wechat-popup p {
  font-size: 12px;
  font-weight: 700;
  color: #0c1d2d;
  margin: 0 0 10px;
}

.footer-wechat-popup img {
  display: block !important;
  width: 144px !important;
  height: 144px !important;
  object-fit: contain !important;
  margin: 0 auto 10px !important;
  border-radius: 6px !important;
  filter: none !important;
}

.footer-wechat-popup small {
  font-size: 11px;
  color: #888;
  display: block;
  line-height: 1.5;
}

.footer-icp a {
  color: var(--muted);
  text-decoration: none;
}

.footer-icp a:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* ── 信任徽章条 ── */
.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.trust-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  border-right: 1px solid var(--line);
}

.trust-item:last-child { border-right: 0; }

.trust-item .ti-icon {
  font-size: 15px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-item { font-size: 11px; padding: 4px 10px; }
  .ti-icon { display: none; }
}

/* ── 快速询盘条 ── */
.quick-inq {
  background: var(--blue);
  padding: 44px 0;
}

.quick-inq-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: end;
}

.quick-inq-copy h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.quick-inq-copy p {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.quick-inq-form {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr auto;
  gap: 10px;
  align-items: end;
}

.qi-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.qi-field label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.4px;
}

.qi-field input {
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0 12px;
  font-size: 14px;
  color: #fff;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color 0.15s, background 0.15s;
}

.qi-field input::placeholder { color: rgba(255,255,255,0.38); }

.qi-field input:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.16);
}

.btn-qi {
  height: 44px;
  padding: 0 22px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
  white-space: nowrap;
  font-family: var(--font-sans);
  align-self: end;
}

.btn-qi:hover { background: var(--amber-dark); transform: translateY(-1px); }

@media (max-width: 900px) {
  .quick-inq-inner { grid-template-columns: 1fr; gap: 20px; }
  .quick-inq-form { grid-template-columns: 1fr 1fr; }
  .quick-inq-form .qi-field:nth-child(3),
  .quick-inq-form .btn-qi { grid-column: 1 / -1; width: 100%; height: 44px; }
}

/* ── 详细参数折叠区 ── */
.form-detail-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 0 0;
  margin-top: 20px;
  border: none;
  border-top: 1px dashed var(--line);
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  font-family: var(--font-sans);
  transition: color 0.15s;
}

.form-detail-toggle:hover { color: var(--blue-dark); }

.fdt-arrow {
  display: inline-block;
  transition: transform 0.22s;
}

.form-detail-toggle.is-open .fdt-arrow { transform: rotate(180deg); }

.form-detail-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.form-detail-body.is-open { max-height: 3000px; }

/* ── 4列移动底部栏 ── */
@media (max-width: 768px) {
  .mobile-bar.has-wechat {
    grid-template-columns: repeat(4, 1fr);
  }
  .mobile-bar.has-wechat a.mb-wechat {
    color: #07c160;
  }
}

/* ═══════════════════════════════════════════════
   排版校准层 2026-07-04
   目的：降低标题字号/字重（对标 Hosokawa / Netzsch 工业站），
   栏目标签改为安静的小字，配置网格支持主推大卡。
   规则与前文同选择器、后置生效；回滚删除本段即可。
   ═══════════════════════════════════════════════ */

/* ── 标题层级：首页 > 栏目页 > 详情页 ── */
body.home-hero-dome .hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
}

/* 应用领域详情、案例中心 hub、试机、联系等通用副页 hero */
body:not(.home-hero-dome):not(.products-page):not(.product-detail-b) .page-hero h1 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

body.products-page .page-hero h1 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

.solutions-hero-copy h1 {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.18;
}

.solution-detail-hero-copy h1 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.22;
}

body.resource-detail-page .resource-detail-hero h1 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
}

body.about-page .about-hero-copy h1,
body.about-profile-page .about-profile-copy h1,
body.about-industrial-page .about-company-copy h1 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

/* ── 区块标题：从 54px/900 收敛到正文可读层级 ── */
.section-title h2,
.industrial-route-head h2,
.about-text h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
}

.cta-band h2 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.scroll-panorama h2 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.contact-aside h2 {
  font-size: clamp(24px, 2.6vw, 32px);
}

/* ── 栏目标签：中文小字，安静不喧宾 ── */
.section-label,
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ── 配置网格主推卡：整行大卡 + 琥珀左缘 ── */
.grid.three .card-featured,
.grid.four .card-featured {
  grid-column: 1 / -1;
  border-left: 3px solid var(--amber) !important;
}

.grid.three .card-featured h3,
.grid.four .card-featured h3 {
  font-size: 19px;
}
