:root {
  /* ── Brand Colors ── */
  --coal:         #171B1F;
  --navy:         #0f2a44;  /* 补定义:about页数据条/时间轴/trust卡用 var(--navy),原全站未定义→透明,此处补上 */
  --dark:         #2C3339;
  --ink:          #171B1F;
  --gold:         #F57C00;
  --gold-dark:    #C25E00;
  --gold-light:   #FFF3E6;
  --white:        #FFFFFF;
  --card:         #FFFFFF;
  --paper:        #F6F7F8;
  --section-muted:#F2F3F5;
  --section-soft: #FFFFFF;

  /* ── Text ── */
  --mid:   #5C626A;
  --muted: #5C626A;
  --light: #8A9096;
  --slate: #8A9096;

  /* ── Borders / Lines ── */
  --border: #E5E7EA;
  --line:   #E5E7EA;

  /* ── Navigation (final: orange bar) ── */
  --nav-top:    #0F2A44;
  --nav-main:   #F57C00;
  --nav-text:   #FFFFFF;
  /* 顶栏尺寸单一来源(桌面)——header 第22条;改这三个即全站生效,移动端见 @media 覆盖。
     两栏高度之和 = body padding-top(下方 FINAL PATCH 用 calc 自动跟随)。 */
  --nav-utility-h:  48px;  /* 深蓝 utility 栏高度(原 40,加厚) */
  --nav-main-h:     52px;  /* 橙色主导航高度(原 60,压薄) */
  --nav-utility-fs: 14px;  /* 深蓝栏文字字号(原 12,调大) */

  /* ── Brand Accent / CTA ── */
  --brand-accent: #F57C00;
  --cta-bg:       #F57C00;
  --cta-text:     #FFFFFF;

  /* ── Hero overlays ── */
  --hero-overlay-a: rgba(23, 27, 31, 0.20);
  --hero-overlay-b: rgba(23, 27, 31, 0.62);
  --solution-overlay: rgba(23, 27, 31, 0.90);

  /* ── Hero banner — single source for overlay + height (B4.2) ──
     Desktop: text-side gradient (text on left, image shows on the right).
     Mobile:  vertical gradient, dark at top (text) → clear at bottom; image covers. */
  --hero-overlay: linear-gradient(to right, rgba(15,42,68,0.82) 0%, rgba(15,42,68,0.42) 48%, rgba(15,42,68,0.12) 100%);
  /* (mobile hero overlay removed in plan B — phones now stack image-over-text,
     so the image is no longer a text backdrop that needs darkening.) */
  --hero-h: 460px;          /* batch F: fixed uniform content-hero height */
  /* (--hero-h-mobile dropped in plan B — mobile height is now driven by the
     stacked media aspect-ratio + copy content, not a fixed banner height.) */
  --hero-pad-x: clamp(22px, 4.5vw, 60px);       /* hug-left inner padding */
  --hero-pad-y: clamp(26px, 3.5vw, 40px);
  --hero-title-size: clamp(30px, 3.4vw, 46px);  /* one title scale for every hero */
  --hero-title-lh:   1.12;
  --hero-desc-size:  15px;                       /* one description scale */
  --hero-desc-lh:    1.6;
  /* Mobile (plan B stack) overrides — smaller copy so the text block stays
     proportional to the small stacked image. Tune here (single source). */
  --hero-title-size-m: 28px;
  --hero-desc-size-m:  14px;

  /* ── B4.3 unified button tokens (.btn). One place to tune the button
     scale; colors reuse --gold / --gold-dark / --coal (no new colors). ── */
  --btn-h:           44px;
  --btn-pad-x:       24px;
  --btn-radius:      6px;
  --btn-font-size:   14px;
  --btn-font-weight: 700;

  /* ── Shadow / Radius ── */
  --shadow:      0 8px 28px rgba(23, 27, 31, 0.10);
  --shadow-soft: 0 4px 16px rgba(23, 27, 31, 0.07);
  --radius: 8px;

  /* ── Legacy aliases (backward-compat) ── */
  --teal: #2C3339;
  --red:  #DC2626;

  /* ── Spacing (8-point grid) ── */
  --sp-1:  8px;  --sp-2: 16px;  --sp-3: 24px;  --sp-4: 32px;
  --sp-5: 40px;  --sp-6: 48px;  --sp-8: 64px;  --sp-10: 80px;
  --section-y: clamp(56px, 7vw, 88px);
  --page-x: clamp(20px, 5vw, 80px);
  --max-w: 1280px;

  /* ── Typography ── */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --mono: 'Courier New', Courier, monospace;

  /* ── Font size scale (modular, 16px base) ── */
  --fs-xs:   0.75rem;   /* 12px — captions, fine print */
  --fs-sm:   0.875rem;  /* 14px — meta, labels */
  --fs-base: 1rem;      /* 16px — body */
  --fs-md:   1.125rem;  /* 18px — lead paragraph */
  --fs-lg:   1.375rem;  /* 22px — h4 / card title */
  --fs-xl:   1.75rem;   /* 28px — h3 */
  --fs-2xl:  2.25rem;   /* 36px — h2 */
  --fs-3xl:  clamp(2.25rem, 4vw, 3rem);     /* 36→48px — section title */
  --fs-4xl:  clamp(2.75rem, 5vw, 3.75rem);  /* 44→60px — hero h1 */

  /* ── Line heights ── */
  --lh-tight: 1.2;   /* headings */
  --lh-snug:  1.35;  /* sub-headings */
  --lh-base:  1.6;   /* body copy */
  --lh-loose: 1.8;   /* spacious blocks */
}

@media (max-width: 980px) {
  .top-contact-bar,
  .top-contact-bar.subpage-top-bar,
  .new-header,
  .site-header,
  .site-header.new-header {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    background: #f57c00 !important;
    color: var(--white) !important;
  }

  .top-contact-bar,
  .top-contact-bar.subpage-top-bar {
    background: #0f2a44 !important;
  }

  .main-nav,
  .main-nav.open,
  .new-header .main-nav {
    background: #f57c00 !important;
    color: var(--white) !important;
  }

  .main-nav > a,
  .nav-item > a,
  .new-header .main-nav > a,
  .new-header .nav-item > a {
    color: var(--white) !important;
    background: transparent !important;
  }
}

body {
  font-family: 'Inter', Arial, -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: var(--coal);
  background: var(--paper);
}

.top-contact-bar a,
.top-contact-bar button,
.top-contact-bar .top-search input {
  color: rgba(255, 255, 255, 0.55) !important;
}

.top-contact-bar a:first-child {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.top-contact-bar .utility-dealer-link {
  padding: 3px 10px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 3px !important;
}

.new-header .main-nav > a,
.new-header .nav-item > a,
.site-header .main-nav > a,
.site-header .nav-item > a,
.main-nav > a,
.nav-item > a {
  min-height: 68px !important;
  padding-bottom: 2px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 500 !important;
  border-bottom: 2px solid transparent !important;
}

.new-header .main-nav > a:hover,
.new-header .nav-item > a:hover,
.new-header .main-nav > a.active,
.new-header .nav-item > a.active,
.main-nav > a:hover,
.nav-item > a:hover {
  color: #fff !important;
  font-weight: 600 !important;
  border-bottom-color: var(--gold) !important;
}

.aside-form button,
.quote-form button {
  min-height: 42px;
  background: var(--gold) !important;
  color: var(--coal) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

section {
  padding-top: clamp(48px, 6vw, 64px);
  padding-bottom: clamp(48px, 6vw, 64px);
}

.solution-card,
.catalog-product-card,
.download-grid article,
.proof-grid article,
.content-block,
.page-aside,
.blog-article-main,
.blog-article-aside {
  border-radius: 8px !important;
}

.product-breadcrumb {
  padding: 10px 24px !important;
  color: var(--mid) !important;
  background: #fff !important;
  border-bottom: 1px solid var(--border) !important;
  font-size: 12px !important;
}

.section-heading,
.b-section h2,
.content-block h2 {
  padding-bottom: 8px !important;
  border-bottom: 2px solid var(--gold) !important;
}

#sec-detail { order: 1; }
#sec-attachments { order: 2; }
#sec-specs { order: 3; }
#sec-buyer-notes { order: 4; }
#sec-cases { order: 5; }
#sec-recommend { order: 6; }

/* Application "Recommended Products" grid (#2 fix): single source, mirrors the
   .catalog-product-grid cascade — 3 cols → 2 (≤1080) → 1 (≤680). The container
   also carries .catalog-product-grid / .b-product-grid, so this constrains both
   branches inside the narrower .wide-main (330px sidebar) and stops model values
   stacking char-by-char, capacity wrapping and buttons cramping. Old duplicate
   4-col base (was also defined twice) + low-breakpoint 2-col rules removed. */
.application-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
@media (max-width: 1080px) {
  .application-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 680px) {
  .application-product-grid {
    grid-template-columns: 1fr !important;
  }
}

.download-link-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.download-link-grid a {
  display: flex !important;
  min-height: 118px !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 20px !important;
  background: var(--white) !important;
  color: var(--coal) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
}

.download-link-grid a:nth-child(3) {
  border: 2px solid #1A7A4A !important;
}

@media (max-width: 1024px) {
  

  

  .download-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .new-header,
  .site-header,
  .site-header.new-header {
    background: var(--coal) !important;
  }

  .main-nav,
  .main-nav.open,
  .new-header .main-nav {
    background: var(--coal) !important;
  }

  

  .download-link-grid {
    grid-template-columns: 1fr !important;
  }

  
}

/* HONGLI redesign module rewrite - 2026-06-06 */
/* ── Hero banner (B4.2): live subpage hero (rendered by subpage.js).
   Overlay + height come from --hero-overlay / --hero-h tokens; per-page image
   is passed inline as --hero-img. Replaces the old dead .subpage-hero rules
   (nothing referenced them — verified zero usages across the site). ── */
.hero-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  height: var(--hero-h);
  padding: var(--hero-pad-y) var(--hero-pad-x);
  color: #fff;
  background: var(--hero-overlay), var(--hero-img, none) center / cover no-repeat #0a1626;
}

/* Shared hero content — same typography/alignment for every hero type
   (homepage carousel + category + content subpages). Single source. */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;          /* sits at the section's left padding — hugs left, no auto-centering */
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* text group at top, action group near the bottom */
  gap: 18px;
}
.hero-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero-crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 2px; font-size: 12px; color: rgba(255,255,255,0.55); }
.hero-crumbs a { color: rgba(255,255,255,0.55); text-decoration: none; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin: 0;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-accent);
}
.hero-title {
  margin: 0; max-width: 640px;
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-lh);
  font-weight: 800; color: #fff;
}
.hero-desc {
  margin: 0; max-width: 560px;
  font-size: var(--hero-desc-size);
  line-height: var(--hero-desc-lh);
  color: rgba(255,255,255,0.80);
  /* batch F: cap intro so a long paragraph can't overflow the fixed 460px hero */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

@media (max-width: 768px) {
  /* Mobile button scale — token-only (no !important): trim .btn font a touch
     on phones so the unified buttons aren't chunky on the stacked hero / narrow
     layout. Height stays 44px (tap target). Single source for every .btn. */
  :root {
    --btn-font-size: 13px;
  }

  /* Plan B — vertical stack on phones: the full product photo on top (contain,
     never cropped), the text block below. These hero photos are wide (~3.2:1)
     and can't fill a tall phone frame with `cover` without cutting the machine,
     so on mobile we stop using the image as a text backdrop entirely. The
     desktop overlaid layout (.hero-banner above) is untouched. */
  .hero-banner {
    flex-direction: column;
    min-height: 0;
    height: auto; /* batch F: desktop fixes height 460; mobile stays auto (stacked) */
    /* !important overrides the global `section { padding: …!important }` so the
       media sits flush under the header and the copy controls its own spacing. */
    padding: 0 !important;
    background: #0a1626;          /* dark base — same fill the hero already used */
  }
  /* Top block (media): product image shown whole. Box matches the photos' ~3.2:1
     ratio so `contain` fills it edge-to-edge with effectively no letterbox. */
  .hero-banner::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16 / 5;
    background: var(--hero-img, none) center / contain no-repeat #0a1626;
  }
  /* Bottom block (copy): breadcrumb/eyebrow/title/desc/actions, hugging left in
     normal flow (no space-between stretch). Carries its own padding now that the
     banner padding is zeroed. Tightened spacing + smaller type so the copy stays
     proportional to the small stacked image (no top-heavy look). */
  .hero-inner {
    justify-content: flex-start;
    gap: 14px;
    padding: var(--hero-pad-y) var(--hero-pad-x);
  }
  .hero-top { gap: 10px; }
  .hero-title {
    font-size: var(--hero-title-size-m);
    line-height: 1.16;
  }
  /* Keep hand-picked word-groups together so long titles break at a sensible
     point instead of stranding a preposition/conjunction. Mobile-only: on desktop
     the spans are inert (titles there fit/break fine at the larger size). */
  .hero-title .nowrap { white-space: nowrap; }
  .hero-desc {
    font-size: var(--hero-desc-size-m);
    line-height: 1.5;
  }
  /* Carousel slides are flex-stretched to the tallest one, and the dots float at
     the carousel's bottom (18px). Reserve room under the copy so the dots never
     collide with the buttons on the tallest slide. Carousel-only — subpages have
     no dots. */
  .hl-carousel-slide .hero-inner {
    padding-bottom: 48px;
  }
}

.top-contact-bar a {
  color: #f5b942 !important;
  font-size: var(--nav-utility-fs) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.top-contact-bar a:hover {
  color: #fff !important;
}

.top-contact-bar .utility-dealer-link {
  padding: 4px 14px !important;
  border: 1px solid rgba(245,185,66,0.55) !important;
  border-radius: 3px !important;
}

.site-header,
.new-header,
.site-header.new-header,
.site-header.new-header.scrolled {
  height: 68px !important;
  min-height: 68px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 clamp(24px, 5vw, 80px) !important;
  background: #f57c00 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
}

.site-header .brand {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.nav-logo > div:nth-child(2) > div:first-child {
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

.nav-logo > div:nth-child(2) > div:nth-child(2) {
  color: rgba(255,255,255,0.8) !important;
  font-size: 11px !important;
  letter-spacing: 0.5px !important;
}

.site-header nav a,
.main-nav a,
.new-header .main-nav > a,
.new-header .nav-item > a {
  min-height: 0 !important;
  padding: 8px 14px !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2px !important;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s !important;
}

.site-header nav a:hover,
.main-nav a:hover,
.site-header nav a.active {
  color: #fff !important;
  background: rgba(0,0,0,0.12) !important;
}

.products-section-head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-section-head h2 {
  margin: 8px 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
}

.section-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.product-filter-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-bottom: 40px !important;
}

.filter-tab,
.product-filter-tabs .filter-tab {
  padding: 10px 28px !important;
  color: var(--ink) !important;
  background: transparent !important;
  border: 2px solid var(--border) !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
}

.filter-tab.active,
.filter-tab:hover {
  color: #fff !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.product-grid-3col {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.product-card {
  display: block !important;
  overflow: hidden !important;
  color: inherit !important;
  text-decoration: none !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  transition: box-shadow 0.25s, transform 0.25s !important;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
  transform: translateY(-3px) !important;
}

.product-card-img {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: contain !important;
  padding: 20px !important;
  background: #f8f9fa !important;
  border-bottom: 1px solid var(--border) !important;
}

.product-card-body {
  padding: 20px !important;
}

.product-card-type {
  margin: 0 0 6px !important;
  color: var(--gold) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

.product-card-name {
  margin: 0 0 6px !important;
  color: var(--ink) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.product-card-desc {
  margin: 0 0 16px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  /* 业主裁定:产品名下方只保留一行介绍,超出省略号 */
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.product-card-link {
  color: var(--gold) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.about-content-col h2 {
  margin: 0 !important;
  color: var(--white) !important;
  font-size: clamp(26px, 2.8vw, 38px) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.about-content-col p {
  margin: 0 !important;
  color: rgba(255,255,255,0.75) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.about-links-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 8px !important;
}

.about-link-chip {
  padding: 8px 18px !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201,151,45,0.5) !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  text-decoration: none !important;
}

.about-link-chip:hover {
  color: var(--white) !important;
  background: var(--gold) !important;
}

.about-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  margin-top: 16px !important;
}

.stat-item .stat-num {
  display: block !important;
  color: var(--gold) !important;
  font-size: 36px !important;
  font-weight: 800 !important;
}

.stat-item .stat-label {
  display: block !important;
  margin-top: 4px !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 12px !important;
}

.products-layout {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: 32px !important;
  align-items: start !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 40px clamp(16px, 4vw, 48px) 72px !important;
}

.products-sidebar {
  position: sticky !important;
  top: 80px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
}

.sidebar-title {
  margin: 0 !important;
  padding: 18px 20px !important;
  color: var(--ink) !important;
  background: var(--paper) !important;
  border-bottom: 1px solid var(--border) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

.category-tree {
  padding: 8px 0 !important;
}

.cat-item {
  border-bottom: 1px solid var(--border) !important;
}

.cat-toggle {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 13px 20px !important;
  color: var(--ink) !important;
  background: none !important;
  border: 0 !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-align: left !important;
}

.cat-toggle:hover {
  background: var(--paper) !important;
}

.cat-toggle .arrow {
  width: 10px !important;
  height: 6px !important;
  margin-left: auto !important;
  stroke: var(--muted) !important;
  fill: none !important;
  stroke-width: 1.5 !important;
  transition: transform 0.2s !important;
}

.cat-item.open .arrow {
  transform: rotate(180deg) !important;
}

.cat-item.active > .cat-toggle {
  color: var(--gold) !important;
  background: var(--gold-light) !important;
}

.sub-cats {
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  background: #fafafa !important;
  transition: max-height 0.3s ease !important;
}

.cat-item.open .sub-cats {
  max-height: 400px !important;
}

.sub-cats li a {
  display: block !important;
  padding: 10px 20px 10px 44px !important;
  color: var(--muted) !important;
  border-bottom: 1px solid var(--border) !important;
  font-size: 13px !important;
  text-decoration: none !important;
}

.sub-cats li a:hover,
.sub-cats li a.active {
  color: var(--gold);
  background: var(--gold-light);
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.results-count {
  color: var(--muted);
  font-size: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card-img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #f8f9fa;
  border-bottom: 1px solid #e8eaed;
}

.product-card-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card-all {
  display: flex !important;
  align-items: center !important;
  min-height: 292px !important;
  border-style: dashed !important;
}

.spec-item {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 16px 12px !important;
  text-align: center !important;
}

.spec-value {
  color: var(--ink) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
}

.blog-grid,
.b-section .guide-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 28px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 48px clamp(24px, 5vw, 80px) !important;
}

.blog-card,
.kb-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: box-shadow 0.25s;
}

.blog-card:hover,
.kb-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.blog-card-img,
.kb-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body,
.kb-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.blog-card-tag,
.kb-card-category {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-card-title,
.kb-card-title {
  flex: 1;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-card-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.kb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px clamp(24px, 5vw, 80px);
}

.kb-card-read {
  margin-top: auto !important;
  color: var(--gold) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--ink);
  background: #fff;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border-radius: 50%;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-arrow {
  color: #fff;
  background: var(--gold);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 16px 20px 20px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1000px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .products-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .product-grid-3col {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .products-layout,
.home-about-band
{
    grid-template-columns: 1fr !important;
  }

  .products-sidebar {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .main-nav.open,
  .new-header .main-nav {
    background: #f57c00 !important;
  }
}

@media (max-width: 600px) {
  .product-grid-3col,
.products-grid
{
    grid-template-columns: 1fr !important;
  }
}

/* Global header + hero alignment adjustment - 2026-06-06 */

body.new-home,
body.subpage-body {
  background: var(--paper);
}

.top-contact-bar a,
.top-contact-bar button,
.top-contact-bar .top-search input {
  color: var(--white);
}

.top-contact-bar .top-search {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.top-contact-bar .top-search input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.top-contact-bar .top-search button {
  border-color: transparent;
}

.new-header .main-nav > a,
.new-header .nav-item > a,
.main-nav > a,
.nav-item > a {
  min-height: 72px;
  color: var(--white);
  background: transparent;
}

.new-header .main-nav > a:hover,
.new-header .nav-item > a:hover,
.main-nav > a:hover,
.nav-item > a:hover {
  color: var(--white);
}

.nav-logo > div:first-child {
  color: var(--white);
  background: var(--gold);
}

.nav-logo > div:nth-child(2) > div:first-child {
  color: var(--coal);
}

.nav-logo > div:nth-child(2) > div:nth-child(2) {
  color: rgba(255, 255, 255, 0.72);
}

.mega-menu,
.new-header .mega-menu {
  color: var(--coal);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(23, 27, 31, 0.12);
}

main {
  margin-top: 0;
}

@media (max-width: 768px) {
  .top-contact-bar,
  .top-contact-bar.subpage-top-bar {
    min-height: auto !important;
    padding: 8px 16px !important;
  }

  .new-header,
  .site-header,
  .site-header.new-header {
    min-height: 64px !important;
    padding: 0 16px !important;
  }

  .new-header .main-nav > a,
  .new-header .nav-item > a,
  .main-nav > a,
  .nav-item > a {
    min-height: 48px !important;
  }
}

/* ── Unified button system (.btn) ────────────────────────────────────────
   Token-driven, zero !important, built on the old family-4 .btn pattern.
   B4.3 converged all 6 legacy button sets onto this single base + modifiers
   (.btn--primary / .btn--outline / .btn--outline-on-dark). Product detail
   pages keep their own industrial buttons isolated under .btn-industrial. ── */
.btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-h);
  padding: 0 var(--btn-pad-x);
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }

/* Solid orange — primary action */
.btn--primary {
  background: var(--gold);
  color: var(--coal);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Outline for LIGHT backgrounds — dark text + currentColor border */
.btn--outline {
  background: transparent;
  color: var(--coal);
  border-color: currentColor;
}
.btn--outline:hover {
  background: rgba(17, 24, 32, 0.06);
}

/* Outline for DARK backgrounds (hero over image) — white text + white border */
.btn--outline-on-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--outline-on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.blog-article-main,
.blog-article-aside {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.blog-article-main {
  padding: clamp(26px, 4vw, 52px);
}

.blog-article-main h1 {
  margin: 0 0 18px;
  max-width: 980px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.blog-article-main .article-lead {
  max-width: 860px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.blog-article-main section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.blog-article-main h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 36px);
}

.blog-article-main p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.blog-article-aside {
  position: sticky;
  top: 112px;
  padding: 28px;
}

.blog-article-aside h2 {
  margin: 0 0 12px;
}

.blog-article-aside p {
  color: var(--muted);
  line-height: 1.65;
}

.blog-article-aside a {
  display: block;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

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

  .blog-article-aside {
    position: static;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

.top-contact-bar,
.subpage-top-bar {
  background: rgba(0, 0, 0, 0.85) !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 12px !important;
}

.top-contact-bar a:first-child {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.top-contact-bar .utility-dealer-link {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 3px 10px;
  border-radius: 3px;
}

.new-header,
.site-header.new-header {
  background: var(--coal) !important;
}

.new-header .main-nav > a,
.new-header .nav-item > a {
  color: rgba(255, 255, 255, 0.76) !important;
}

.new-header .main-nav > a:hover,
.new-header .nav-item > a:hover,
.new-header .main-nav > a.active,
.new-header .nav-item > a.active {
  border-bottom: 2px solid var(--gold);
  color: #fff !important;
  font-weight: 600;
  padding-bottom: 2px;
}

.aside-form button,
.quote-form button,
.download-link-grid a,
.catalog-product-actions a:last-child {
  background: var(--gold) !important;
  color: var(--coal) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
}

.product-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-filter-tabs .tab,
.product-filter-tabs button {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--mid);
  border-radius: 100px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 12px;
}

.product-filter-tabs .tab.active,
.product-filter-tabs button.active {
  background: var(--gold-light);
  color: var(--gold);
  font-weight: 700;
}

.product-breadcrumb {
  padding: 10px 24px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  color: var(--mid);
  font-size: 12px;
}

.product-breadcrumb a {
  color: var(--mid);
}

.product-breadcrumb span {
  color: var(--coal);
  font-weight: 600;
}

#sec-detail { order: 1; }
#sec-attachments { order: 2; }
#sec-specs { order: 3; }
#sec-buyer-notes { order: 4; }
#sec-cases { order: 5; }
#sec-recommend { order: 6; }

.attachment-option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.attachment-option-grid article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
}

.attachment-option-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold-light);
  color: var(--gold);
  font-weight: 900;
}

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

.buyer-note-grid article {
  padding: 22px;
  border-radius: 8px;
  background: var(--coal);
}

.buyer-note-grid h3 {
  margin: 0 0 10px;
  color: var(--gold);
}

.buyer-note-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.application-bottom-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.section-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--coal);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.solution-card,
.catalog-product-card,
.download-grid article,
.proof-grid article,
.content-block,
.page-aside,
.blog-article-main,
.blog-article-aside {
  border-radius: 8px !important;
  border: 1px solid var(--border);
}

.b-section h2,
.content-block h2,
.section-heading {
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

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

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

.site-header {
  position: fixed;
  inset: 18px 28px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  color: #f8f4ea;
  background: rgba(30, 36, 40, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, inset 180ms ease;
}

.site-header.scrolled {
  inset: 10px 18px auto;
  background: rgba(30, 36, 40, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

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

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: rgba(248, 244, 234, 0.72);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav > a,
.nav-item > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 11px;
  color: rgba(248, 244, 234, 0.82);
  border-radius: 6px;
  font-size: 14px;
}

.main-nav > a:hover,
.nav-item > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.has-menu {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  width: min(760px, calc(100% - 60px));
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.has-menu:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.mega-menu a,
.mega-menu small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.filter,
.quote-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
}

.quote-form button {
  padding: 0 18px;
  color: var(--coal);
  background: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 800;
}

.quote-form button:hover {
  background: var(--gold-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 40px;
  padding: 138px clamp(24px, 6vw, 88px) 72px;
  overflow: hidden;
  color: #fff;
  background: var(--coal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 35, 40, 0.97), rgba(29, 35, 40, 0.88) 48%, rgba(29, 35, 40, 0.72)),
    url("/assets/content/common/hero-forklift-loader.webp") center / cover;
  opacity: 0.96;
  filter: saturate(0.8) contrast(0.92);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

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

.section {
  padding: 84px clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.benefits {
  display: grid;
  gap: 18px;
}

.product-card,
.quote-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(29, 35, 40, 0.06);
}

.product-card a {
  color: var(--gold-dark);
  font-weight: 800;
}

.trust-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.filter {
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  background: #f1f2f3;
  border: 1px solid var(--line);
  font-weight: 800;
}

.filter.active,
.filter:hover {
  color: #fff;
  background: var(--coal);
  border-color: var(--coal);
}

.product-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  min-height: 230px;
  padding: 22px;
}

.product-card.hidden {
  display: none !important;
}

.b-product-card.hidden,
.catalog-product-card.hidden {
  display: none;
}

.product-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.product-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  margin: 18px 0;
  font-size: 14px;
}

.product-card dt {
  color: var(--muted);
}

.product-card dd {
  margin: 0;
  font-weight: 800;
}

.benefits {
  grid-template-columns: repeat(3, 1fr);
  background: #ece7dc;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.honeypot,
.ohnohoney,
.netlify-form-definitions {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}

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

.trust-grid span {
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.contact-section {
  padding: 90px clamp(20px, 6vw, 88px);
  /* #3 撞色止血:原为 coal 深底,与上方 navy hero 边到边糊成一片(无浅缝)。
     沿用 certifications 手法翻浅底(var(--paper))+ 深字,与深底 hero 清晰分界;
     右侧 .quote-form 本就是 --card 白卡 + --line 边框,在浅底上自然凸显。
     用现有令牌、未新造色、不做全局 navy 收敛。 */
  color: var(--coal);
  background: var(--paper);
}

.contact-copy p {
  color: var(--mid);
}

.contact-facts {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-facts a,
.contact-facts span {
  padding: 16px;
  /* #3 撞色止血:随 section 翻浅底,芯片由半透明白(深底用)改浅白卡 + 描边 */
  color: var(--coal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.quote-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 28px;
  color: var(--ink);
}

.quote-form .full,
.quote-form button {
  grid-column: 1 / -1;
}

.site-footer {
  display: block;
  padding: 54px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.76);
  background: #12191e;
}

.site-footer strong {
  color: #fff;
}

.footer-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid rgba(201, 151, 45, 0.45);
  border-radius: 6px;
}

.site-footer h3 {
  color: #fff;
  font-size: 15px;
}

.site-footer a {
  display: block;
  margin-top: 10px;
}

.subpage-body {
  background: var(--paper);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 52px clamp(20px, 5vw, 72px);
}

.page-layout.no-aside {
  grid-template-columns: minmax(0, 1fr);
}

.page-main,
.page-aside,
.solution-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(29, 35, 40, 0.06);
}

.page-main,
.page-aside {
  min-width: 0;
  padding: 28px;
}

.page-main > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.solution-card {
  min-height: 190px;
  padding: 22px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.solution-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.solution-card h3 {
  margin-top: 14px;
}

.solution-card p,
.page-aside p {
  color: var(--muted);
  line-height: 1.6;
}

.page-aside {
  position: sticky;
  top: 98px;
  align-self: start;
}

.page-aside a,
.page-aside button {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  color: var(--coal);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-weight: 900;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.spec-table th,
.spec-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-list details {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.b-section {
  padding: 52px clamp(20px, 5vw, 72px);
}

.b-section-head {
  max-width: 1600px;
  margin: 0 auto 30px;
}
/* 排版统一(批3):标题块内的介绍段保持可读窄度,左对齐于容器左缘 */
.b-section-head > p:not(.eyebrow) { max-width: 760px; }

.b-section-head p:not(.eyebrow),
.b-section > p,
.content-block > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.muted-band {
  background: #ece7dc;
}

.category-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
}

.category-toolbar button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  background: #f1f2f3;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.category-toolbar button.active,
.category-toolbar button:hover {
  color: var(--coal);
  background: var(--gold);
  border-color: var(--gold);
}

.b-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.catalog-product-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 27, 31, 0.06);
}

.catalog-product-image {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 16px;
  background: linear-gradient(180deg, #f6f7f8, #eef0f2);
}

.catalog-product-image img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.catalog-product-body {
  padding: 18px;
}

.catalog-product-body > p {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-product-body h3 {
  min-height: 54px;
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.28;
}

.catalog-product-body dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.catalog-product-body dl div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.catalog-product-body dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-product-body dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.catalog-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.catalog-product-tags span {
  padding: 6px 8px;
  color: var(--muted);
  background: var(--paper);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.catalog-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.catalog-product-actions a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 6px;
  font-weight: 900;
}

.catalog-product-actions a:first-child {
  color: #fff;
  background: var(--coal);
}

.catalog-product-actions a:last-child {
  color: var(--coal);
  background: var(--gold);
}

.compact-head {
  margin-top: 38px;
}

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

.b-product-card {
  display: grid;
  min-height: 278px;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(29, 35, 40, 0.06);
  transition: transform 160ms ease, border-color 160ms ease;
}

.b-product-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.b-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.b-product-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.b-product-card li {
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.b-product-card a,
.solution-card span,
.guide-list a {
  align-self: end;
  color: var(--gold-dark);
  font-weight: 900;
}

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

.content-block {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.content-block:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.comparison-table thead th {
  color: var(--ink);
  background: #f1f2f3;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.split-showcase img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-showcase p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.solution-grid article,
.solution-grid a,
.proof-grid article,
.download-grid article,
.guide-list article {
  min-height: 180px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(29, 35, 40, 0.06);
}

.solution-grid p,
.proof-grid p,
.download-grid p,
.guide-list p {
  color: var(--muted);
  line-height: 1.65;
}

.fallback-product-image {
  display: block;
  width: 100%;
  min-height: 132px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.fallback-product-image img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  object-position: center;
}

.download-intro {
  color: var(--muted);
  max-width: 820px;
  margin: 0 0 18px;
}

.download-grid article span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #f4f7fb;
  color: #334155;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 800;
}

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

.catalog-download-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.catalog-download-list h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.catalog-download-list p {
  color: var(--muted);
  margin: 0 0 14px;
}

.catalog-download-list a {
  color: var(--red);
  font-weight: 800;
}

.process-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.process-row span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  color: var(--coal);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

.product-detail-layout {
  align-items: start;
}

body[data-page="productDetail"] .product-detail-layout {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1440px;
}

body[data-page="productDetail"] .page-main {
  width: 100%;
}

.public-detail-hero {
  background: linear-gradient(135deg, #1e252b, #303840);
}

.product-showcase-hero {
  position: relative;
  left: 50%;
  width: 100%;
  min-height: min(720px, calc(100vh - 84px));
  margin-left: -50%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(430px, 0.65fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: linear-gradient(90deg, #edf4fa 0%, #f7fafc 66%, #fff 66%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

body[data-page="productDetail"] .product-showcase-hero {
  background:
    linear-gradient(90deg, rgba(237, 244, 250, 0.92) 0%, rgba(247, 250, 252, 0.88) 62%, rgba(255, 255, 255, 0.96) 62%, rgba(255, 255, 255, 0.98) 100%),
    url("/assets/content/headers/product-detail-bg.webp") center / cover;
}

.product-showcase-stage {
  position: relative;
  min-height: min(720px, calc(100vh - 84px));
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(26px, 4vw, 58px);
  background: transparent;
  box-shadow: none;
}

.product-showcase-stage::before {
  position: absolute;
  inset: auto 14% 15% 14%;
  height: 18%;
  content: "";
  background: radial-gradient(ellipse at center, rgba(23, 27, 31, 0.2), transparent 72%);
  filter: blur(8px);
}

.product-showcase-stage img {
  position: relative;
  z-index: 1;
  width: min(78%, 760px);
  max-height: min(60vh, 520px);
  object-fit: contain;
}

.product-slide-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.product-slide-dots span {
  width: 46px;
  height: 4px;
  background: rgba(23, 27, 31, 0.22);
}

.product-slide-dots span.active {
  background: #c21f1a;
}

.product-showcase-card {
  min-height: min(720px, calc(100vh - 84px));
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 56px) clamp(34px, 4vw, 64px);
  background: #fff;
  box-shadow: none;
}

.product-model {
  margin: 0 0 10px;
  color: #bd201d;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
}

.product-showcase-card h1 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.04;
}

.showcase-spec-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.showcase-spec-row article {
  min-height: 76px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.showcase-spec-row article:first-child {
  padding-left: 0;
  border-left: 0;
}

.showcase-spec-row span,
.showcase-spec-row strong {
  display: block;
}

.showcase-spec-row span {
  color: #9a9ca2;
  font-size: 15px;
  font-weight: 900;
}

.showcase-spec-row strong {
  margin-top: 10px;
  color: #34383d;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.05;
}

.showcase-work {
  padding: 24px 0 28px;
}

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

.showcase-card-head h3 {
  margin: 0;
  font-size: 18px;
}

.showcase-card-head a {
  color: #9a9ca2;
  font-weight: 900;
}

.showcase-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.showcase-work-grid span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: #8b8f95;
  background: #f5f6f7;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.showcase-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72px;
}

.showcase-actions a {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.showcase-actions a:first-child {
  background: #c21f1a;
}

.showcase-actions a:last-child {
  background: #333;
}

.product-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 0 clamp(20px, 5vw, 72px);
  max-width: 100%;
  overflow-x: auto;
  background: var(--coal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-anchor-nav a {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.product-anchor-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.product-publish-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--coal), #2a2f34);
  border-radius: 8px;
}

.product-publish-hero h2 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
}

.product-publish-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.publish-status-panel {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.publish-status-panel span,
.section-title-row span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.publish-status-panel strong {
  color: #fff;
  font-size: 24px;
}

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

.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-gallery div {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-gallery span {
  min-height: 58px;
  display: grid;
  place-items: center;
  background: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.product-video-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-video-panel video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 6px;
}

.product-video-panel h3 {
  margin: 0 0 8px;
}

.download-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.download-link-grid a {
  display: grid;
  gap: 8px;
  padding: 16px;
  min-height: 118px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.download-link-grid span {
  color: var(--muted);
  font-size: 13px;
}

.contact-qr {
  width: 148px;
  max-width: 100%;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

/* Product detail template based on the provided compact product-page HTML. */
body[data-page="productDetail"] main {
  background: #fff;
}

/* Hongli product v2: scenic hero with inset white parameter card. */

.quick-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.quick-specs div {
  min-height: 110px;
  padding: 18px;
  background: var(--coal);
  border-radius: 6px;
  color: #fff;
}

.quick-specs strong,
.quick-specs span {
  display: block;
}

.quick-specs strong {
  font-size: 26px;
}

.quick-specs span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
}

.section-title-row {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin: 0 auto 18px;
  max-width: 1600px;
}

.section-title-row h2 {
  margin: 4px 0 0;
}

.section-title-row a {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

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

.publish-standard-grid article,
.configuration-grid article {
  min-height: 148px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.publish-standard-grid h3,
.configuration-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.publish-standard-grid p,
.configuration-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.configuration-grid article {
  background: #fff;
}

.configuration-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--coal);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.requirement-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  color: #fff;
  background: var(--coal);
}

.requirement-board h2 {
  color: #fff;
}

.requirement-board p {
  color: rgba(255, 255, 255, 0.68);
}

.requirement-board ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.requirement-board li {
  padding: 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.case-mini-grid,
.recommended-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-mini-grid article,
.recommended-product-grid article {
  min-height: 150px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-mini-grid span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-mini-grid h3,
.recommended-product-grid h3 {
  margin: 10px 0 8px;
}

.case-mini-grid p,
.recommended-product-grid p {
  color: var(--muted);
}

.parameter-groups {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}

.parameter-groups article {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.parameter-groups h3 {
  margin: 0 0 12px;
}

.copy-guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding: 64px clamp(20px, 5vw, 72px);
  background: #fff;
}

.copy-guide-intro h2,
.copy-guide-head h2,
.copy-guide-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.copy-guide-intro p,
.copy-guide-head p,
.copy-home-preview p,
.copy-product-sample p,
.copy-guide-cta p {
  color: var(--muted);
  line-height: 1.7;
}

.copy-guide-intro aside {
  align-self: start;
  padding: 26px;
  color: #fff;
  background: var(--coal);
  border-radius: 8px;
}

.copy-guide-intro aside span,
.copy-token-grid span,
.copy-matrix span,
.copy-template-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.copy-guide-intro aside strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.1;
}

.copy-guide-band {
  padding: 64px clamp(20px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.copy-guide-band.dark {
  color: #fff;
  background: var(--coal);
  border-top: 0;
}

.copy-guide-band.muted {
  background: var(--paper);
}

.copy-guide-head {
  max-width: 840px;
  margin-bottom: 28px;
}

.copy-token-grid,
.copy-template-grid,
.copy-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.copy-token-grid article,
.copy-template-grid article,
.copy-solution-grid article,
.copy-matrix article,
.copy-risk-list article {
  min-width: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.copy-guide-band.dark .copy-token-grid article,
.copy-guide-band.dark .copy-risk-list article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.copy-token-grid strong {
  display: block;
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.35;
}

.copy-home-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 20px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, rgba(23, 27, 31, 0.96), rgba(44, 51, 57, 0.88));
  border-radius: 8px;
}

.copy-home-preview h3 {
  margin: 6px 0 12px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
}

.copy-home-preview a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-right: 10px;
  padding: 0 16px;
  color: var(--coal);
  background: var(--gold);
  border-radius: 6px;
  font-weight: 900;
}

.copy-home-preview ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copy-home-preview li {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

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

.copy-matrix h3,
.copy-solution-grid h3 {
  margin: 10px 0;
}

.copy-matrix p,
.copy-template-grid p,
.copy-solution-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.copy-matrix em {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  color: var(--coal);
  background: #f2eee5;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.copy-product-sample {
  margin-top: 18px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.copy-product-sample h3 {
  margin: 0 0 10px;
}

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

.copy-risk-list article {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: center;
}

.copy-risk-list strong {
  color: #ffd1d1;
}

.copy-risk-list span {
  color: rgba(255, 255, 255, 0.82);
}

.copy-guide-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 64px clamp(20px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.parameter-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.recommended-product-grid a {
  color: var(--gold-dark);
  font-weight: 900;
}

.dealer-earning-strip {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 26px;
  color: #fff;
  background: var(--coal);
  border-radius: 8px;
}

.dealer-earning-strip h2 {
  color: #fff;
}

.dealer-earning-strip p {
  color: rgba(255, 255, 255, 0.72);
}

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

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

.guide-list span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.aside-form {
  display: grid;
  gap: 12px;
}

.aside-form .page-aside a,
.aside-form a,
.aside-form button {
  margin-top: 4px;
}

.aside-form button {
  min-height: 44px;
  color: #fff;
  background: var(--cta-bg);
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.b-contact-page {
  margin-top: 0;
}

.top-contact-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 22;
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--coal);
  font-size: 13px;
}

.top-contact-bar div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.top-contact-bar button {
  min-height: 26px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.new-header {
  top: 48px;
}

.mega-wide {
  width: min(920px, calc(100% - 60px));
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
}

.mega-visual img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
}

.banner-hotspot {
  position: absolute;
  z-index: 4;
  top: 74%;
  height: 15%;
  border-radius: 4px;
}

.banner-hotspot:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@keyframes home-banner-fade {
  0%,
  33% {
    opacity: 1;
  }

  38%,
  100% {
    opacity: 0;
  }
}

@keyframes home-banner-dot {
  0%,
  33% {
    background: var(--gold);
  }

  38%,
  100% {
    background: rgba(17, 24, 32, 0.2);
  }
}

@keyframes slow-pan {
  from {
    transform: scale(1.02) translateX(-1%);
  }
  to {
    transform: scale(1.08) translateX(1%);
  }
}

.home-products-section,
.case-home-section,
.resources-home-section {
  padding: 52px clamp(20px, 5vw, 72px);
}

.application-hover-section {
  padding: 52px max(112px, clamp(20px, 5vw, 72px)) 52px clamp(20px, 5vw, 72px);
  background: #fff;
}

.case-grid article,
.resource-home-grid a {
  min-height: 260px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(11, 15, 18, 0.16);
}

.case-grid p,
.resource-home-grid span,
.dealer-value-section li {
  color: var(--muted);
  line-height: 1.6;
}

.case-grid a,
.resource-home-grid a strong {
  color: var(--gold-dark);
  font-weight: 900;
}

.home-about-band img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-about-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.case-grid,
.resource-home-grid {
  display: grid;
  gap: 16px;
}

.case-home-section {
  background: var(--paper);
}

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

.case-grid span {
  color: var(--gold-dark);
  font-weight: 900;
}

.dealer-value-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--coal);
  color: #fff;
}

.dealer-value-section > div {
  padding: 54px clamp(20px, 5vw, 72px);
  background: var(--coal);
}

.dealer-value-section h2 {
  max-width: 580px;
}

.dealer-value-section ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding-left: 20px;
}

.resources-home-section {
  background: var(--section-muted);
}

.resource-home-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.resource-home-grid strong,
.resource-home-grid span {
  display: block;
}

.resource-home-grid span {
  margin-top: 12px;
}

.resources-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: 22px;
  align-items: stretch;
  padding: 54px clamp(20px, 5vw, 72px) 28px;
}

.resources-dashboard-main,
.resources-dashboard-panel,
.resource-card,
.resource-file-list a,
.resource-topic-list article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 27, 31, 0.06);
}

.resources-dashboard-main {
  padding: clamp(28px, 4vw, 52px);
}

.resources-dashboard-main h2 {
  max-width: 900px;
  font-size: clamp(2.3rem, 5vw, 5.4rem);
  line-height: 1.02;
}

.resources-dashboard-main p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.76;
}

.resources-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.resources-dashboard-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.resources-dashboard-panel span {
  color: var(--muted);
  font-weight: 900;
}

.resources-dashboard-panel strong {
  margin: 10px 0;
  color: var(--gold-dark);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
}

.resources-dashboard-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.resource-center-section {
  padding-top: 24px;
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 244px;
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(23, 27, 31, 0.1);
}

.resource-card span {
  width: max-content;
  padding: 7px 10px;
  color: #171b1f;
  background: rgba(210, 158, 41, 0.18);
  border-radius: 6px;
  font-weight: 900;
}

.resource-card h3 {
  margin: 20px 0 10px;
  font-size: 1.45rem;
}

.resource-card p,
.resource-file-list span,
.resource-topic-list p {
  color: var(--muted);
  line-height: 1.65;
}

.resource-card strong {
  margin-top: auto;
  color: var(--gold-dark);
}

.resource-toolkit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: start;
}

.resource-file-list,
.resource-topic-list {
  display: grid;
  gap: 12px;
}

.resource-file-list a {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  color: var(--ink);
}

.resource-topic-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-topic-list article {
  min-height: 150px;
  padding: 20px;
}

.resource-path-section {
  padding-top: 34px;
}

.deep-footer {
  grid-template-columns: 1.4fr repeat(5, 1fr);
}

.side-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -18px;
  width: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(208, 215, 222, 0.9);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: -8px 0 24px rgba(23, 27, 31, 0.08);
}

.side-cta::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 3px;
  height: 34px;
  background: var(--gold);
  border-radius: 99px;
  transform: translateY(-50%);
}

.side-cta:hover,
.side-cta:focus-within {
  transform: translate(0, -50%);
  box-shadow: 0 18px 42px rgba(23, 27, 31, 0.18);
}

body[data-page="productDetail"] .side-cta {
  display: none;
}

.side-cta a,
.side-cta button {
  display: grid;
  min-width: 86px;
  min-height: 38px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.side-cta a:hover,
.side-cta button:hover {
  color: var(--coal);
  background: var(--cta-bg);
  border-color: var(--cta-bg);
}

.mobile-bottom-bar {
  display: none;
}

.search-modal {
  width: min(620px, calc(100% - 32px));
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-modal::backdrop {
  background: rgba(16, 21, 24, 0.62);
  backdrop-filter: blur(6px);
}

.search-results-demo {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.modal-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}

.modal-search-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}

.modal-search-form button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--cta-bg);
  font-weight: 900;
  cursor: pointer;
}

.search-results-demo a {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.search-results-demo span {
  color: var(--muted);
}

.search-empty {
  padding: 16px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

/* CLARK-inspired two-tier industrial navigation */
.top-contact-bar {
  min-height: 40px;
  padding: 0 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.top-contact-bar > div:first-child {
  flex: 1;
  justify-content: center;
  gap: clamp(20px, 4vw, 58px);
}

.top-contact-bar a {
  color: var(--ink);
}

.top-search {
  display: flex;
  width: min(300px, 24vw);
  min-width: 220px;
  background: transparent;
  border-left: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.top-search input {
  min-height: 34px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 15px;
  font-weight: 700;
}

.top-search input::placeholder {
  color: #9aa0a6;
}

.top-search button {
  width: 44px;
  color: #7a8087;
  background: transparent;
  border: 0;
  font-size: 22px;
}

.new-header,
.site-header.new-header {
  inset: 40px 0 auto;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  min-height: 68px;
  padding: 0 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 10px 26px rgba(23, 27, 31, 0.06);
  backdrop-filter: blur(10px);
}

.site-header.new-header.scrolled {
  inset: 40px 0 auto;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(23, 27, 31, 0.08);
}

.brand {
  min-width: 0;
}

.new-header .main-nav {
  gap: clamp(12px, 2.1vw, 34px);
  justify-content: center;
}

.new-header .main-nav > a,
.new-header .nav-item > a {
  position: relative;
  min-height: 68px;
  padding: 0;
  color: #25292f;
  background: transparent;
  border-radius: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 700;
}

.new-header .main-nav > a::after,
.new-header .nav-item > a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #0f2a44 !important;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  display: none !important;
}

.new-header .main-nav > a:hover,
.new-header .nav-item > a:hover {
  color: var(--gold-dark);
  background: transparent;
}

.new-header .main-nav > a:hover::after,
.new-header .nav-item > a:hover::after {
  transform: scaleX(1);
}

.new-header .mega-menu {
  top: calc(100% + 0px);
  width: min(940px, 62vw);
  color: var(--ink);
  border-radius: 0 0 8px 8px;
}

/* HELI-inspired full-width about section */
.about-full-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--section-soft);
}

/* HCForklift-inspired solution board */
.solution-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(208px, auto);
  gap: 16px;
}

.solution-board a {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 208px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 24, 29, 0.08), rgba(18, 24, 29, 0.38) 42%, rgba(18, 24, 29, 0.92)),
    var(--solution-image, url("/assets/content/common/applications-real-worksites.jpg")) center / cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(23, 27, 31, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.solution-board a::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 46px;
  height: 3px;
  content: "";
  background: var(--gold);
}


.solution-board a:nth-child(1) {
  --solution-image: url("/assets/content/sections/applications--8industryapplications-1.webp");
}

.solution-board a:nth-child(2) {
  --solution-image: url("/assets/content/sections/applications--8industryapplications-7.webp");
}

.solution-board a:nth-child(3) {
  --solution-image: url("/assets/content/sections/applications--8industryapplications-3.webp");
}

.solution-board a:nth-child(4) {
  --solution-image: url("/assets/content/sections/applications--8industryapplications-4.webp");
}

.solution-board a:nth-child(5) {
  --solution-image: url("/assets/content/sections/applications--8industryapplications-5.webp");
}

.solution-board a:nth-child(6) {
  --solution-image: url("/assets/content/sections/applications--8industryapplications-6.webp");
}

.solution-board a:nth-child(7) {
  --solution-image: url("/assets/content/sections/dealers--dealervoices-1.webp");
}

.solution-board a:nth-child(8) {
  --solution-image: url("/assets/content/sections/applications--8industryapplications-8.webp");
}

.solution-board a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(23, 27, 31, 0.16);
}

.solution-board span {
  color: var(--brand-accent);
  font-size: 19px;
  font-weight: 1000;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
}

.solution-board strong {
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.12;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.42);
}

.solution-board em {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.service-overview-section,
.service-flow-section {
  padding: 48px clamp(20px, 5vw, 72px);
}

.dealer-support-grid,
.service-detail-grid {
  display: grid;
  gap: 14px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.dealer-support-grid article,
.service-detail-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dealer-support-grid article,
.service-detail-card {
  padding: 22px;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: var(--ink);
  text-decoration: none;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--gold);
  font-weight: 900;
}

.service-single-section {
  padding-bottom: 28px;
}

.service-single-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 24px;
  align-items: stretch;
}

.service-single-head h2 {
  max-width: 980px;
  font-size: clamp(2.1rem, 4.8vw, 5.2rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

.service-single-head p {
  max-width: 900px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.service-single-head aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(23, 27, 31, 0.08);
}

.service-single-head aside span {
  color: var(--muted);
  font-weight: 800;
}

.service-single-head aside strong {
  font-size: 1.35rem;
}

.service-single-head aside a {
  display: inline-flex;
  justify-content: center;
  padding: 14px 18px;
  color: #171b1f;
  background: var(--gold);
  border-radius: 6px;
  font-weight: 900;
}

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

.service-single-grid article {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-single-grid ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.service-single-grid li {
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  line-height: 1.6;
}

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

.dealer-support-grid p,
.service-detail-card p {
  color: var(--muted);
  line-height: 1.68;
}

.dealer-support-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-detail-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-detail-card p {
  flex: 1;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(23, 27, 31, 0.14);
}

.mini-process {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.mini-process span {
  padding: 7px 9px;
  color: var(--coal);
  background: var(--section-muted);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.service-flow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 24px;
  align-items: center;
  color: #fff;
  background: var(--coal);
}

.service-workflow-redesign {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: stretch;
  padding: 64px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.98), rgba(28, 36, 45, 0.94)),
    url("/assets/content/common/about-factory-real.jpg") center / cover;
}

.workflow-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  max-width: 620px;
  color: #fff;
}

.workflow-copy .eyebrow {
  color: var(--gold);
}

.workflow-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.06;
}

.workflow-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.workflow-copy a {
  width: fit-content;
  padding: 14px 18px;
  color: #171b1f;
  background: var(--gold);
  border-radius: 6px;
  font-weight: 900;
}

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

.workflow-steps article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.workflow-steps article > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #171b1f;
  background: var(--gold);
  border-radius: 6px;
  font-size: 18px;
  font-weight: 900;
}

.workflow-steps h3 {
  margin: 0 0 8px;
  color: #111820;
  font-size: 20px;
  line-height: 1.25;
}

.workflow-steps p {
  margin: 0;
  color: #5f6872;
  font-size: 14px;
  line-height: 1.68;
}

.service-capability-section {
  padding: 56px clamp(20px, 5vw, 72px) 64px;
  background: #f4f6f7;
}

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

.service-capability-grid article {
  display: grid;
  min-height: 260px;
  align-content: start;
  gap: 16px;
  padding: 26px;
  background: #fff;
  border: 1px solid #dfe4e8;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(17, 24, 32, 0.08);
}

.service-capability-grid article:first-child {
  color: #fff;
  background: #111820;
  border-color: #111820;
}

.service-capability-grid article:first-child p,
.service-capability-grid article:first-child span {
  color: rgba(255, 255, 255, 0.72);
}

.service-capability-grid span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-capability-grid h3 {
  margin: 0;
  color: inherit;
  font-size: 28px;
  line-height: 1.18;
}

.service-capability-grid p {
  margin: 0;
  color: #5f6872;
  font-size: 16px;
  line-height: 1.75;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: #eee7d8;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: 24px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(30, 36, 40, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
  }

  .new-header .main-nav {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(23, 27, 31, 0.1);
  }

  .main-nav.open {
    display: flex;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }

  .main-nav > a,
  .nav-item > a {
    min-height: 48px;
  }

  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-menu:hover .mega-menu {
    display: grid;
  }

  .main-nav.open .mega-menu {
    display: grid;
  }

  .hero,
.trust-section,
.contact-section {
    grid-template-columns: 1fr;
  }

  

  

  .benefits,
.blog-grid {
    grid-template-columns: 1fr;
  }

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

  .page-layout,
.product-showcase-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-showcase-hero {
    left: auto;
    width: auto;
    margin-left: 0;
  }

  .page-aside {
    position: static;
  }

  .service-single-head,
.service-single-grid,
.resources-dashboard,
.resource-toolkit-grid {
    grid-template-columns: 1fr;
  }

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

  .b-product-grid,
.category-products,
.proof-grid,
.download-grid,
.guide-list,
.case-mini-grid,
.recommended-product-grid,
.publish-standard-grid,
.publish-standard-grid.compact,
.configuration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-card-grid,
  .resource-topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-products-section {
    background: linear-gradient(180deg, #f3f5f6 0%, #f3f5f6 58%, #ffffff 58%, #ffffff 100%);
  }

  

  

  

  

  

  .service-workflow-redesign {
    grid-template-columns: 1fr;
  }

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

  .split-showcase {
    grid-template-columns: 1fr;
  }

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

  .product-publish-hero,
  .requirement-board {
    grid-template-columns: 1fr;
  }

  .product-anchor-nav {
    justify-content: start;
    overflow-x: auto;
  }

  .product-anchor-nav a {
    flex: 0 0 auto;
  }

  .product-showcase-stage {
    min-height: 420px;
  }

  .product-showcase-card {
    min-height: auto;
  }

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

  

  .case-grid,
.resource-home-grid,
.deep-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-about-band,
  .dealer-value-section {
    grid-template-columns: 1fr;
  }

  

  .new-header,
  .site-header.new-header {
    grid-template-columns: auto auto;
    min-height: 64px;
  }

  .new-header .main-nav > a,
  .new-header .nav-item > a {
    min-height: 48px;
  }

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

  .service-flow-section {
    grid-template-columns: 1fr;
  }

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

  

  .copy-guide-intro,
  .copy-home-preview,
  .copy-guide-cta {
    grid-template-columns: 1fr;
  }

  .copy-token-grid,
  .copy-template-grid,
  .copy-solution-grid,
  .copy-matrix,
  .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    inset: 10px 10px auto;
    padding-left: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 116px 20px 52px;
  }

  h1 {
    font-size: 42px;
  }

  

  

  

  

  

  

  .trust-grid,
.quote-form,
.site-footer,
.resource-card-grid,
.resource-topic-list {
    grid-template-columns: 1fr;
  }

  

  .section,
  .contact-section {
    padding: 62px 20px;
  }

  

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-gallery,
  .product-video-panel,
  .download-link-grid {
    grid-template-columns: 1fr;
  }

  

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .page-layout {
    padding: 44px 20px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  

  

  .b-section {
    padding: 54px 20px;
  }

  .b-product-grid,
.category-products,
.proof-grid,
.download-grid,
.guide-list,
.case-mini-grid,
.recommended-product-grid,
.publish-standard-grid,
.publish-standard-grid.compact,
.configuration-grid,
.requirement-board ul,
.quick-specs,
.product-gallery div {
    grid-template-columns: 1fr;
  }

  .spec-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: normal;
  }

  .spec-table th,
  .spec-table td {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  

  .product-showcase-hero {
    min-height: auto;
    padding: 0;
  }

  .product-showcase-stage {
    min-height: 300px;
    padding: 24px 20px;
  }

  .product-showcase-stage img {
    max-height: 300px;
  }

  .product-showcase-card {
    padding: 24px;
  }

  .showcase-spec-row,
  .showcase-work-grid,
  .showcase-actions {
    grid-template-columns: 1fr;
  }

  .showcase-spec-row article {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .showcase-spec-row article:first-child {
    border-top: 0;
  }

  

  .dealer-earning-strip {
    align-items: start;
    flex-direction: column;
  }

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

  .workflow-steps,
  .service-capability-grid {
    grid-template-columns: 1fr;
  }

  .workflow-steps article {
    min-height: auto;
  }

  .top-contact-bar {
    display: none;
  }

  .new-header {
    top: 10px;
  }

  

  

  

  

  .home-products-section,
  .application-hover-section,
  .case-home-section,
  .resources-home-section,
  .home-about-band {
    padding: 42px 20px;
  }

  .case-grid,
.resource-home-grid,
.deep-footer,
.solution-board {
    grid-template-columns: 1fr;
  }

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

  

  

  

  .solution-board a {
    min-height: 150px;
  }

  

  .service-overview-section,
.service-flow-section {
    padding: 38px 20px;
  }

  .dealer-support-grid,
.service-detail-grid {
    grid-template-columns: 1fr;
  }

  

  

  

  .copy-guide-intro,
  .copy-guide-band,
  .copy-guide-cta {
    padding: 42px 20px;
  }

  .copy-token-grid,
  .copy-template-grid,
  .copy-solution-grid,
  .copy-matrix,
  .copy-risk-list article,
  .catalog-product-grid,
  .catalog-download-list,
  .catalog-product-actions {
    grid-template-columns: 1fr;
  }

  .catalog-product-image {
    min-height: 190px;
  }

  .catalog-product-image img {
    height: 180px;
  }

  .copy-home-preview {
    padding: 22px;
  }

  .copy-home-preview a {
    width: 100%;
    justify-content: center;
    margin: 8px 0 0;
  }

  

  

  .side-cta {
    display: none;
  }

  .mobile-bottom-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--coal);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-bottom-bar a {
    display: grid;
    min-height: 58px;
    place-items: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 900;
  }

  

  body {
    padding-bottom: 58px;
  }
}

/* Final navigation override: keep every hero below non-black two-tier nav */

.new-header,
.site-header,
.site-header.new-header,
.site-header.new-header.scrolled {
  z-index: 39;
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  width: 100% !important;
  margin: 0 !important;
  background: #f57c00 !important;
  color: var(--white) !important;
  border-radius: 0 !important;
  min-height: 72px !important;
  padding: 0 clamp(18px, 4vw, 72px) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 8px 22px rgba(23, 27, 31, 0.05) !important;
  right: auto !important;
  left: auto !important;
  border: 0 !important;
  backdrop-filter: none !important;
}

.new-header .main-nav > a,
.new-header .nav-item > a,
.site-header .main-nav > a,
.site-header .nav-item > a,
.main-nav > a,
.nav-item > a {
  color: var(--white) !important;
}

.new-header .main-nav > a:hover,
.new-header .nav-item > a:hover,
.site-header .main-nav > a:hover,
.site-header .nav-item > a:hover,
.main-nav > a:hover,
.nav-item > a:hover {
  color: var(--white) !important;
}

@media (max-width: 980px) {
  .top-contact-bar,
  .top-contact-bar.subpage-top-bar,
  .new-header,
  .site-header,
  .site-header.new-header {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    background: #f57c00 !important;
    color: var(--white) !important;
  }

  .top-contact-bar,
  .top-contact-bar.subpage-top-bar {
    background: #0f2a44 !important;
  }

  .main-nav,
  .main-nav.open,
  .new-header .main-nav {
    background: #f57c00 !important;
    color: var(--white) !important;
  }

  .main-nav > a,
  .nav-item > a,
  .new-header .main-nav > a,
  .new-header .nav-item > a {
    color: var(--white) !important;
    background: transparent !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FINAL COMPREHENSIVE PATCH — 2026-06-07
   Overrides earlier !important rules via cascade position (last rule wins)
═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. FIXED NAVIGATION (two-tier) ──────────────────────────────────── */
.top-contact-bar,
.top-contact-bar.subpage-top-bar {
  z-index: 1001 !important;
  position: fixed !important;
  inset: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: #0f2a44 !important;
  color: rgba(255,255,255,.75) !important;
  min-height: var(--nav-utility-h) !important;
  padding: 0 clamp(24px, 5vw, 80px) !important;
  font-size: var(--nav-utility-fs) !important;
  border: 0 !important;
  height: var(--nav-utility-h) !important;
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 22%, var(--border)) !important;
  box-shadow: none !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  max-height: var(--nav-utility-h) !important;
  justify-content: space-between !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.site-header,
.new-header,
.site-header.new-header,
.site-header.new-header.scrolled {
  position: fixed !important;
  top: var(--nav-utility-h) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  height: var(--nav-main-h) !important;
  min-height: var(--nav-main-h) !important;
  max-height: var(--nav-main-h) !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 clamp(24px, 5vw, 80px) !important;
  background: #f57c00 !important;
  color: #fff !important;
  box-sizing: border-box !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Body compensation: utility + main 两栏高度之和(令牌驱动,改令牌自动跟随) */
body,
body.new-home,
body.subpage-body {
  padding-top: calc(var(--nav-utility-h) + var(--nav-main-h)) !important;
}

/* ── 2. TOP BAR: left links + right search aligned ───────────────────── */
.top-contact-bar > div:first-child {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex: 1 !important;
}
.top-contact-bar > div:last-child {
  display: flex !important;
  align-items: center !important;
}
.top-contact-bar .top-search {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.top-contact-bar .top-search input[type="search"] {
  height: 32px !important;
  padding: 0 12px !important;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 5px !important;
  color: rgba(255,255,255,.85) !important;
  font-size: 13px !important;
  outline: none !important;
  width: 190px !important;
}
.top-contact-bar .top-search button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 32px !important;
  color: rgba(255,255,255,.85) !important;
  background: none !important;
  border: 0 !important;
  font-size: 20px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  padding: 0 6px !important;
}

/* ── 3. LOGO – fix for subpages (from subpage.js uses image path) ─────── */
.nav-logo-img {
  height: 32px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain !important;
  display: block !important;
  filter: none !important; /* 彩色品牌 logo(不再染白) */
}

/* ── 4. MAIN-NAV: left-aligned, larger text ──────────────────────────── */
.new-header .main-nav,
.site-header .main-nav,
.main-nav[data-nav] {
  margin-left: 20px !important;
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  justify-content: flex-start !important;
}

.site-header .main-nav > a,
.new-header .main-nav > a,
.site-header .nav-item > a,
.new-header .nav-item > a,
.main-nav > a,
.nav-item > a {
  height: var(--nav-main-h) !important;
  min-height: var(--nav-main-h) !important;
  padding: 0 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  color: rgba(255,255,255,.92) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1px !important;
  text-decoration: none !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
  transition: color .15s, border-color .15s !important;
  white-space: nowrap !important;
}

.site-header .main-nav > a:hover,
.new-header .main-nav > a:hover,
.site-header .nav-item > a:hover,
.new-header .nav-item > a:hover,
.main-nav > a:hover,
.nav-item > a:hover {
  color: #fff !important;
  background: rgba(0,0,0,.10) !important;
  border-bottom-color: rgba(255,255,255,.5) !important;
}

/* ── 6. TOP-BAR: "Become a Dealer" stays visible (first layer) ──────── */
.top-contact-bar .utility-dealer-link {
  padding: 4px 12px !important;
  color: #f5b942 !important;
  border: 1px solid rgba(245,185,66,.55) !important;
  border-radius: 3px !important;
  font-size: var(--nav-utility-fs) !important;
  text-decoration: none !important;
}

/* ── 8. ALL SECTIONS: reduce height by ~1/3 ─────────────────────────── */
section {
  padding-top: clamp(24px, 3vw, 44px) !important;
  padding-bottom: clamp(24px, 3vw, 44px) !important;
}

.home-products-section {
  color: var(--ink);
  background: #fff !important;
  padding: 72px clamp(24px, 5vw, 80px) !important;
  padding-top: clamp(28px, 3.5vw, 48px) !important;
  padding-bottom: clamp(28px, 3.5vw, 48px) !important;
  padding-left: clamp(24px, 5vw, 80px) !important;
  padding-right: clamp(24px, 5vw, 80px) !important;
}

.products-section-head {
  margin-bottom: 28px !important;
}

.application-hover-section,
.case-home-section,
.resources-home-section {
  padding-top: clamp(24px, 3vw, 40px) !important;
  padding-bottom: clamp(24px, 3vw, 40px) !important;
}

.resources-home-section {
  padding-left: clamp(20px, 5vw, 72px) !important;
  padding-right: clamp(20px, 5vw, 72px) !important;
}

/* ── 10. MOBILE OVERRIDES ─────────────────────────────────────────────── */
/* header 两栏几何在所有宽度统一由 :root 令牌(--nav-utility-h/--nav-main-h)+
   上方 FINAL PATCH 驱动,移动端不再硬编码高度(旧的 56/52/36 + 固定 top/padding
   要么是死规则、要么与令牌冲突造成两栏间缝),仅保留非几何的移动项。 */
@media (max-width: 768px) {
  .top-contact-bar .top-search input[type="search"] { width: 120px !important; }
}

/* ════════════════════════════════════════════════════════════════════════
   MASTER FIX PATCH — 2026-06-08
   Fixes: Logo, Hero grid layout, font sizes, About section
════════════════════════════════════════════════════════════════════════ */

/* ── LOGO: white pill container, no filter ──────────────────────────── */
.nav-logo,
.site-header .brand .nav-logo,
.new-header .brand .nav-logo {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.nav-logo-img {
  height: 28px !important;
  width: auto !important;
  max-width: 230px !important;
  object-fit: contain !important;
  display: block !important;
  filter: none !important;
}

/* ── HOME ABOUT: compact, single-line title, aligned layout ─────────── */
.about-content-col h2 {
  font-size: clamp(14px, 1.5vw, 20px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin: 0 0 12px !important;
}

/* About stats: horizontal strip */
.about-stats-grid,
.home-about-band .about-stats-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  margin-top: 12px !important;
  grid-template-columns: unset !important;
}

.about-stats-grid .stat-item {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.about-stats-grid .stat-num {
  font-size: clamp(22px,2.5vw,32px) !important;
}

.about-stats-grid .stat-label {
  font-size: 10px !important;
  white-space: nowrap !important;
}

/* About image: fill height */

/* Remove excess background below about section */
.home-about-band {
  display: grid !important;
  /* 问题2修复:1fr=minmax(auto,1fr),机翻后长文本会撑爆某栏挤扁另一栏+overflow:hidden裁切。
     改 minmax(0,1fr) 锁死两栏各半、文本在栏内换行/省略,永不溢出。 */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 38px;
  align-items: center;
  padding: 0 !important;
  background: var(--coal) !important;
  min-height: auto !important;
  color: var(--white) !important;
  overflow: hidden !important;
  /* 业主裁定:整块往里缩、对齐内容(图不再贴屏幕左边)。
     max-width 1280 与上方产品网格(.product-grid-3col)同宽同居中 → 左缘对齐产品卡;
     width:calc(100%-64px) 保证任何窄屏都留 32px 边距、永不贴边;做成居中卡片。 */
  max-width: 1280px !important;
  width: calc(100% - 64px) !important;
  margin: 48px auto !important;
  border-radius: 14px !important;
}

/* ── PRODUCTS MEGA MENU ────────────────────────────────────────────── */
.mega-menu.mega-wide {
  width: min(780px, calc(100% - 40px)) !important;
  grid-template-columns: 1fr 1fr 1fr !important;
}

/* ── ABOUT JOURNEY SECTION: compact height ─────────────────────────── */
.timeline-section {
  padding-top: clamp(20px, 2.5vw, 36px) !important;
  padding-bottom: clamp(20px, 2.5vw, 36px) !important;
}

.tl-icon {
  width: 44px !important;
  height: 44px !important;
  margin-bottom: 10px !important;
}

.tl-year { font-size: 15px !important; }
.tl-title { font-size: 11px !important; }
.tl-desc { font-size: 11px !important; }

/* ── MOBILE ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-content-col h2 {
    white-space: normal !important;
    font-size: clamp(14px, 3vw, 18px) !important;
  }
  .about-stats-grid {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
}

/* ── PRODUCT-INDUSTRIAL: hide second nav, fix body reset conflict ─── */

/* Restore site body styling after product-industrial.css resets */
body.subpage-body {
  font-family: 'Inter', Arial, -apple-system, BlinkMacSystemFont, sans-serif !important;
  background: var(--paper) !important;
  color: var(--coal) !important;
}

/* ════════════════════════════════════════════════════════════════
   PATCH 2 — remaining fixes  2026-06-08
════════════════════════════════════════════════════════════════ */

/* ── Product section heading: reduce to single line ──────────── */
.products-section-head h2 {
  font-size: clamp(18px, 2vw, 26px) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-bottom: 10px !important;
}

/* ── About band: remove excess bottom padding ────────────────── */
.home-about-band.about-full-layout {
  min-height: auto !important;
}

/* Stat nums: prevent wrapping */
.stat-item .stat-num {
  font-size: clamp(20px,2.2vw,28px) !important;
  white-space: nowrap !important;
}
.stat-item .stat-label {
  font-size: 10px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* ── Side CTA: redesigned icon bar ──────────────────────────── */

.side-cta a,
.side-cta button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  border: 0 !important;
  cursor: pointer !important;
  transition: background .15s, transform .15s !important;
  padding: 0 !important;
  border-radius: 0 !important;
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
}

/* Quote button */
.side-cta a:nth-child(1) {
  background: var(--gold) !important;
  color: #fff !important;
  font-size: 10px !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.side-cta a:nth-child(1)::before { content: "💬"; font-size: 16px; }

/* Chat */
.side-cta button {
  background: #0f2a44 !important;
  color: rgba(255,255,255,.8) !important;
  font-size: 10px !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.side-cta button::before { content: "🗨"; font-size: 16px; }

/* WhatsApp */
.side-cta a[href*="wa.me"] {
  background: #25D366 !important;
  color: #fff !important;
  font-size: 10px !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.side-cta a[href*="wa.me"]::before { content: "📱"; font-size: 16px; }

/* Email */
.side-cta a[href*="contact"] {
  background: #3498db !important;
  color: #fff !important;
  font-size: 10px !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.side-cta a[href*="contact"]::before { content: "✉"; font-size: 16px; }

/* Support */
.side-cta a[href*="after-sales"],
.side-cta a[href*="support"] {
  background: #e74c3c !important;
  color: #fff !important;
  font-size: 10px !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.side-cta a[href*="after-sales"]::before,
.side-cta a[href*="support"]::before { content: "🛠"; font-size: 16px; }

.side-cta a:hover, .side-cta button:hover {
  filter: brightness(1.15) !important;
  transform: scale(1.05) !important;
}

/* ── Mega menu: properly styled ───────────────────────────────── */
.mega-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 900 !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 0 10px 10px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.14) !important;
  padding: 20px !important;
  display: none !important;
}
.nav-item.has-menu:hover .mega-menu,
.nav-item.has-menu:focus-within .mega-menu {
  display: grid !important;
}
.mega-menu h3 {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  margin: 0 0 8px !important;
  padding-bottom: 6px !important;
  border-bottom: 1px solid var(--border) !important;
}
.mega-menu a,
.has-menu .mega-menu a,
.nav-item .mega-menu a,
.site-header .mega-menu a {
  display: block !important;
  padding: 5px 0 !important;
  color: var(--coal) !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: color .12s !important;
}
.mega-menu a:hover,
.has-menu .mega-menu a:hover,
.nav-item .mega-menu a:hover,
.site-header .mega-menu a:hover {
  color: var(--gold) !important;
}

/* ── Timeline: compress further ───────────────────────────────── */
section[style*="background:var(--paper)"] {
  /* timeline parent */
}
.timeline-track {
  overflow-x: auto !important;
}
.tl-item {
  min-width: 120px !important;
  flex: 1 !important;
}
.tl-icon {
  width: 42px !important;
  height: 42px !important;
  font-size: 18px !important;
  margin-bottom: 8px !important;
}
.tl-year { font-size: 15px !important; font-weight: 800 !important; }
.tl-title { font-size: 11px !important; }
.tl-desc { font-size: 10px !important; max-width: 100px !important; }

/* ── Mobile bottom nav: icon improvements ─────────────────────── */
.mobile-bottom-bar {
  display: none !important;
}
@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex !important;
  }
  .side-cta {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   FINAL FIX BLOCK v20260607 — Hero减高1/3 · 图片对齐 · 关于区优化
════════════════════════════════════════════════════════════════════════ */

/* 2. 首页About区：图片顶部与标题平齐，底部与统计数据平齐，裁切多余底色 */
.home-about-band.about-full-layout {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: stretch !important;
  overflow: hidden !important;
}
.about-image-col {
  min-height: unset !important;
  background-size: cover !important;
  /* 业主裁定:about图改用单台叉车实景大图(about-factory-forklift.jpg,由拼图裁出、去掉右侧3小图)。
     cover 铺满图框 + 居中 + 框 overflow:hidden → 完整覆盖、不超框。 */
  background-position: center !important;
  align-self: stretch !important;
  background-attachment: local !important;
}
.about-content-col {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 4vw, 48px) !important;
}

/* 3. 图库图片：添加可点击样式提示 */
.product-gallery div {
  cursor: zoom-in !important;
  position: relative !important;
  overflow: hidden !important;
}
.product-gallery div img {
  transition: transform 0.3s ease !important;
  display: block !important;
  width: 100% !important;
}
.product-gallery div:hover img {
  transform: scale(1.06) !important;
}
.product-gallery div::after {
  content: "🔍" !important;
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  background: rgba(0,0,0,0.55) !important;
  color: #fff !important;
  border-radius: 4px !important;
  padding: 2px 6px !important;
  font-size: 12px !important;
  opacity: 0 !important;
  transition: opacity 0.2s !important;
  pointer-events: none !important;
}
.product-gallery div:hover::after {
  opacity: 1 !important;
}

/* 4. 图片预览遮罩（由JS触发） */
#hl-gallery-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#hl-gallery-overlay.open {
  display: flex !important;
}
#hl-gallery-overlay img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  cursor: default;
  background: #fff;
}
#hl-gallery-overlay .hl-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  opacity: 0.8;
}
#hl-gallery-overlay .hl-close-btn:hover { opacity: 1; }

#hl-gallery-overlay .hl-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 74px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 8px;
  font-size: 52px;
  line-height: 1;
  cursor: pointer;
}
#hl-gallery-overlay .hl-gallery-prev { left: 28px; }
#hl-gallery-overlay .hl-gallery-next { right: 28px; }
#hl-gallery-overlay .hl-gallery-nav:hover {
  background: rgba(255,255,255,0.28);
}
#hl-gallery-overlay .hl-gallery-count {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  #hl-gallery-overlay .hl-gallery-nav {
    width: 44px;
    height: 58px;
    font-size: 40px;
  }
  #hl-gallery-overlay .hl-gallery-prev { left: 12px; }
  #hl-gallery-overlay .hl-gallery-next { right: 12px; }
}

/* ── MEGA MENU: 修复左侧溢出 —— 相对nav-item定位 ─────────────── */
.nav-item.has-menu,
.new-header .nav-item.has-menu {
  position: relative !important;
}

.mega-menu,
.has-menu .mega-menu,
.new-header .nav-item .mega-menu {
  left: 0 !important;
  right: auto !important;
  /* 防止超出视口右侧 */
  max-width: calc(100% - 40px) !important;
}

/* Products 超级菜单: 如果从左侧溢出就改用右对齐 */
.nav-item.has-menu .mega-menu.mega-wide {
  left: 0 !important;
  transform: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   SIDE CTA v2 — 全白色 + 收起/展开
═══════════════════════════════════════════════════════════════ */

/* 容器 */
.side-cta {
  position: fixed !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 500 !important;
  display: flex !important;
  gap: 0 !important;
  padding: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(208, 215, 222, 0.9);
  border-right: 0;
  border-radius: 8px 0 0 8px !important;
  box-shadow: -3px 0 18px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(10px);
  transition: width .22s ease !important;
  will-change: transform;
  flex-direction: column !important;
  overflow: hidden !important;
}

/* Toggle 按钮 */
.side-cta-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 48px !important;
  background: #1a1a1a !important;
  color: #fff !important;
  border: 0 !important;
  cursor: pointer !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  padding: 0 !important;
  border-radius: 8px 0 0 0 !important;
  transition: background .15s !important;
  flex-shrink: 0 !important;
  writing-mode: horizontal-tb !important;
  align-self: flex-start !important;
  position: relative !important;
  z-index: 1 !important;
}
.side-cta-toggle:hover { background: #333 !important; }

/* 所有功能按钮：统一白色 */
.side-cta a,
.side-cta button:not(.side-cta-toggle) {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 2px !important;
  width: 52px !important;
  height: 52px !important;
  background: #fff !important;
  color: #1a1a1a !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
  text-decoration: none !important;
  border: 0 !important;
  border-top: 1px solid #eee !important;
  cursor: pointer !important;
  transition: background .15s, color .15s !important;
  padding: 0 !important;
  border-radius: 0 !important;
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
}

.side-cta a:hover,
.side-cta button:not(.side-cta-toggle):hover {
  background: #f5f5f5 !important;
  color: #000 !important;
  filter: none !important;
  transform: none !important;
}

/* 图标 emoji */
.side-cta a:nth-of-type(1)::before  { content: "💬"; font-size: 15px; display: block; }
.side-cta a[href*="wa.me"]::before  { content: "📱"; font-size: 15px; display: block; }
.side-cta a[href*="contact"]::before { content: "✉"; font-size: 15px; display: block; }
.side-cta a[href*="after-sales"]::before,
.side-cta a[href*="support"]::before { content: "🛠"; font-size: 15px; display: block; }
.side-cta button:not(.side-cta-toggle)::before { content: "💬"; font-size: 15px; display: block; }

/* 收起状态：隐藏所有功能按钮 */
.side-cta.collapsed a,
.side-cta.collapsed button:not(.side-cta-toggle) {
  display: none !important;
}
.side-cta.collapsed .side-cta-toggle {
  border-radius: 8px 0 0 8px !important;
}

/* 强制覆盖所有旧的颜色规则 — 全白 */
.side-cta a[href*="wa.me"],
.side-cta a[href*="contact"],
.side-cta a[href*="after-sales"],
.side-cta a[href*="support"],
.side-cta a[href*="quote"],
.side-cta a:nth-child(1),
.side-cta a:nth-child(2),
.side-cta a:nth-child(3),
.side-cta a:nth-child(4),
.side-cta a:nth-child(5),
.side-cta a:nth-child(6) {
  background: #fff !important;
  color: #222 !important;
}
.side-cta a[href*="wa.me"]:hover,
.side-cta a[href*="contact"]:hover,
.side-cta a[href*="after-sales"]:hover,
.side-cta a[href*="support"]:hover {
  background: #f0f0f0 !important;
  filter: none !important;
  transform: none !important;
}

/* Side CTA localStorage state restore — handled inline */

/* Page scheme integration: FAQ + OEM / ODM */
.scheme-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr) !important;
  gap: clamp(24px, 4vw, 56px) !important;
  align-items: center !important;
  padding: clamp(46px, 6vw, 78px) clamp(20px, 5vw, 72px) !important;
  background: #0f2a44 !important;
  color: #fff !important;
  overflow: hidden !important;
}

.scheme-hero-oem {
  background: linear-gradient(135deg,rgba(10,22,38,0.55) 0%,rgba(10,22,38,0.35) 60%,rgba(10,22,38,0.55) 100%),url('/assets/content/common/oem-hero.webp?v=20260609c') center/cover no-repeat !important;
  min-height: clamp(400px, 31.25vw, 701px) !important;
  max-height: none !important;
  align-items: start !important;
}

.scheme-hero-faq {
  background: linear-gradient(135deg,rgba(10,22,38,0.68) 0%,rgba(15,42,68,0.48) 58%,rgba(10,22,38,0.68) 100%),url('/assets/content/common/faq-hero.webp') center/cover no-repeat !important;
}

.scheme-breadcrumb {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  align-items: center !important;
  margin-bottom: 18px !important;
  color: rgba(255,255,255,.58) !important;
  font-size: 12px !important;
}

.scheme-breadcrumb a {
  color: rgba(255,255,255,.68) !important;
  text-decoration: none !important;
}

.scheme-breadcrumb strong {
  color: rgba(255,255,255,.9) !important;
}

.scheme-hero-copy {
  max-width: 760px !important;
}

.scheme-hero-copy h1 {
  margin: 0 0 16px !important;
  color: #fff !important;
  font-size: clamp(30px, 4.2vw, 58px) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
}

.scheme-hero-copy p:not(.eyebrow) {
  max-width: 680px !important;
  margin: 0 0 24px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

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

.scheme-hero-media {
  min-width: 0 !important;
}

.scheme-hero-media img {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 8px !important;
  box-shadow: 0 22px 52px rgba(0,0,0,.28) !important;
}

.scheme-section,
.scheme-faq-layout,
.scheme-form-section,
.scheme-bottom-cta {
  padding: clamp(46px, 5.5vw, 76px) clamp(20px, 5vw, 72px) !important;
}

.scheme-muted {
  background: #f6f7f8 !important;
}

.scheme-section-head {
  max-width: 1100px !important;
  margin: 0 auto 32px !important;
  text-align: center !important;
}

.scheme-section-head h2,
.scheme-bottom-cta h2 {
  margin: 0 0 12px !important;
  color: var(--ink, #171b1f) !important;
  font-size: clamp(24px, 3vw, 42px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

.scheme-form-copy h2 {
  margin: 0 0 12px !important;
  color: var(--ink, #171b1f) !important;
  font-size: clamp(20px, 2vw, 30px) !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
}

.scheme-section-head p:not(.eyebrow),
.scheme-bottom-cta p,
.scheme-form-copy p:not(.eyebrow) {
  margin: 0 !important;
  color: var(--muted, #5c626a) !important;
  line-height: 1.72 !important;
}

.scheme-two-grid,
.scheme-card-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
}

.scheme-two-grid article,
.scheme-card-grid article {
  min-width: 0 !important;
  padding: 22px !important;
  background: #fff !important;
  border: 1px solid var(--line, #e5e7ea) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(23,27,31,.06) !important;
}

.scheme-two-grid img,
.scheme-card-grid img {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  display: block !important;
  margin-bottom: 18px !important;
  border-radius: 6px !important;
}

.scheme-two-grid h3,
.scheme-card-grid h3 {
  margin: 0 0 10px !important;
  color: var(--ink, #171b1f) !important;
  font-size: 18px !important;
  line-height: 1.28 !important;
}

.scheme-two-grid p,
.scheme-card-grid p {
  margin: 0 !important;
  color: var(--muted, #5c626a) !important;
  font-size: 14px !important;
  line-height: 1.68 !important;
}

.scheme-two-grid ul {
  display: grid !important;
  gap: 8px !important;
  margin: 16px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.scheme-two-grid li {
  padding-left: 14px !important;
  border-left: 3px solid var(--gold, #F57C00) !important;
  color: var(--ink, #171b1f) !important;
  font-size: 13px !important;
}

.scheme-table-wrap {
  max-width: 1600px !important;
  margin: 0 auto !important;
  overflow-x: auto !important;
}

.scheme-table {
  width: 100% !important;
  min-width: 720px !important;
  border-collapse: collapse !important;
  background: #fff !important;
  border: 1px solid var(--line, #e5e7ea) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.scheme-table th,
.scheme-table td {
  padding: 16px !important;
  border-bottom: 1px solid var(--line, #e5e7ea) !important;
  color: var(--ink, #171b1f) !important;
  text-align: left !important;
  vertical-align: top !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.scheme-table th {
  background: #0f2a44 !important;
  color: #fff !important;
}

.scheme-form-section {
  display: grid !important;
  grid-template-columns: minmax(0, .75fr) minmax(320px, 1.25fr) !important;
  gap: 40px !important;
  align-items: center !important;
  background: #fff !important;
}

.scheme-oem-form {
  margin: 0 !important;
  max-width: none !important;
}

.scheme-faq-layout {
  display: grid !important;
  grid-template-columns: 300px minmax(0, 1fr) !important;
  gap: 28px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.scheme-faq-aside {
  min-width: 0 !important;
}

.scheme-help-card {
  padding: 18px !important;
  background: #fff !important;
  border: 1px solid var(--line, #e5e7ea) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(23,27,31,.06) !important;
}

.scheme-help-card img,
.scheme-image-strip img {
  width: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 6px !important;
}

.scheme-help-card img {
  aspect-ratio: 16 / 10 !important;
  margin-bottom: 14px !important;
}

.scheme-help-card h2 {
  margin: 0 0 8px !important;
  color: var(--ink, #171b1f) !important;
  font-size: 20px !important;
}

.scheme-help-card p {
  margin: 0 0 14px !important;
  color: var(--muted, #5c626a) !important;
  font-size: 13px !important;
  line-height: 1.62 !important;
}

.scheme-help-card a {
  display: inline-flex !important;
  padding: 10px 14px !important;
  color: #fff !important;
  background: #25d366 !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.scheme-category-nav {
  position: sticky !important;
  top: 118px !important;
  display: grid !important;
  gap: 8px !important;
  margin-top: 14px !important;
  padding: 14px !important;
  background: #f6f7f8 !important;
  border: 1px solid var(--line, #e5e7ea) !important;
  border-radius: 8px !important;
}

.scheme-category-nav a {
  padding: 9px 10px !important;
  color: var(--ink, #171b1f) !important;
  background: #fff !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.scheme-faq-main {
  min-width: 0 !important;
}

.scheme-search {
  width: 100% !important;
  margin-bottom: 18px !important;
}

.scheme-image-strip {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-bottom: 28px !important;
}

.scheme-image-strip img {
  aspect-ratio: 16 / 8 !important;
}

.scheme-faq-group {
  scroll-margin-top: 130px !important;
  margin-bottom: 30px !important;
}

.scheme-faq-group h2 {
  margin: 0 0 14px !important;
  color: var(--ink, #171b1f) !important;
  font-size: clamp(22px, 2.4vw, 32px) !important;
  line-height: 1.18 !important;
}

.scheme-bottom-cta {
  display: flex !important;
  gap: 24px !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #f6f7f8 !important;
}

.scheme-bottom-cta > div {
  max-width: 780px !important;
}

@media (max-width: 1024px) {
  .scheme-hero,
  .scheme-form-section,
  .scheme-faq-layout {
    grid-template-columns: 1fr !important;
  }
  
  .scheme-category-nav {
    position: static !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .scheme-two-grid,
  .scheme-card-grid,
  .scheme-image-strip {
    grid-template-columns: 1fr !important;
  }
  .scheme-bottom-cta {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

@media (max-width: 420px) {
  .scheme-hero,
  .scheme-section,
  .scheme-faq-layout,
  .scheme-form-section,
  .scheme-bottom-cta {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .scheme-category-nav {
    grid-template-columns: 1fr !important;
  }
  .scheme-hero-actions a,
  .scheme-bottom-cta a {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ============================================================
   产品目录/列表页图片铺满图片框 修复 v20260608
   问题：列表卡片图片容器使用 object-fit: contain + 内边距，
   导致图片四周出现大面积空白，看起来"没有填满图片框"。
   方案：改为 object-fit: cover 并去除多余内边距/限制，
   让图片裁切填满容器（不影响产品详情页大图/相册）。
   ============================================================ */
.product-card-img-wrap,
.catalog-product-image,
.b-product-card figure,
.application-product-grid figure,
.recommended-product-grid figure {
  padding: 0 !important;
  overflow: hidden !important;
}

.product-card-img-wrap img,
.product-card-img,
.catalog-product-image img,
.b-product-card img,
.application-product-grid img,
.recommended-product-grid img,
.products-grid img,
.product-grid-3col img,
.catalog-product-card img,
.b-product-grid img,
.catalog-product-grid img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* ============================================================
   产品详情页白底图适配 v20260616
   详情页大图使用完整产品白底图，不能沿用列表页铺满裁切逻辑。
   ============================================================ */

body[data-page="productDetail"] [data-hpl-main-image] {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* ============================================================
   侧边悬浮CTA：自动伸缩 v20260608
   需求：鼠标移到区域内自动展开，移出区域后自动收起（不依赖点击）
   方案：常驻显示一个小把手在屏幕右边缘，鼠标悬停时整体滑出，
   离开后自动滑回藏起大部分内容——不再需要手动点击按钮。
   ============================================================ */
.side-cta,
.side-cta.collapsed {
  display: flex !important;
  flex-direction: column !important;
  transform: translate(calc(100% - 14px), -50%) !important;
  transition: transform .25s ease !important;
}
.side-cta:hover,
.side-cta:focus-within,
.side-cta.collapsed:hover,
.side-cta.collapsed:focus-within {
  transform: translate(0, -50%) !important;
}

/* 始终保持按钮可见（容器整体滑动，不再单独隐藏按钮） */
.side-cta a,
.side-cta button:not(.side-cta-toggle),
.side-cta.collapsed a,
.side-cta.collapsed button:not(.side-cta-toggle) {
  display: flex !important;
}

/* 把手：未悬停时露出一小条，提示可交互 */
.side-cta::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 -14px !important;
  width: 14px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(208, 215, 222, 0.9) !important;
  border-right: 0 !important;
  border-radius: 8px 0 0 8px !important;
  box-shadow: -6px 0 18px rgba(23, 27, 31, 0.1) !important;
}

/* 旧的点击式收缩按钮不再需要 */
.side-cta-toggle {
  display: none !important;
}

/* ============================================================
   OEM/ODM & Dealers page reshape — 页面重塑方案 (2026-06-08)
   仅新增"确无对应样式"的 class，配色全部沿用现有 :root 变量
   ============================================================ */

/* Hero — reuse the v20260607 FIX BLOCK compact sizing on .scheme-hero */
.scheme-hero-compact {
  grid-template-columns: minmax(0, 1fr) !important;
  min-height: clamp(240px, 24vw, 340px) !important;
  max-height: clamp(240px, 28vw, 360px) !important;
  padding: 24px clamp(40px, 5vw, 80px) 20px !important;
  align-items: center !important;
}
.scheme-hero-compact .scheme-hero-copy h1 {
  font-size: clamp(18px, 2.2vw, 32px) !important;
  margin: 0 0 8px !important;
}
.scheme-hero-compact .scheme-hero-copy p:not(.eyebrow) {
  font-size: 13.5px !important;
  margin: 0 0 14px !important;
  max-width: 580px !important;
}
.scheme-hero-compact .scheme-breadcrumb {
  margin-bottom: 8px !important;
  font-size: 11px !important;
}
/* OEM hero — override compact height clamp to show full image */
.scheme-hero-oem.scheme-hero-compact {
  min-height: clamp(400px, 31.25vw, 701px) !important;
  max-height: none !important;
  align-items: stretch !important;
  padding-top: clamp(24px, 3vw, 40px) !important;
  padding-bottom: clamp(28px, 4vw, 52px) !important;
}
.scheme-hero-oem .scheme-hero-copy {
  display: flex !important;
  flex-direction: column !important;
}
.scheme-hero-oem .scheme-hero-copy p:not(.eyebrow) {
  margin-top: auto !important;
}
.scheme-hero-dealers {
  background: linear-gradient(135deg,rgba(10,22,38,0.65) 0%,rgba(10,22,38,0.45) 60%,rgba(10,22,38,0.65) 100%),url('/assets/content/common/dealers-hero.webp?v=20260609') center/cover no-repeat !important;
}
/* Products hero — push content to bottom above attachments */
[data-page="products"] #app > section:first-of-type {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding-top: clamp(24px, 3vw, 40px) !important;
  padding-bottom: clamp(32px, 4vw, 56px) !important;
}
.scheme-hero-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.scheme-hero-caps span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #fff;
}
.scheme-hero-caps i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 13px;
}
.scheme-hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.scheme-hero-checks li {
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  padding: 3px 0 3px 20px;
  position: relative;
}
.scheme-hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* MOQ + Process — symmetric two-column band (OEM/ODM) */
.scheme-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.scheme-split > div {
  display: flex;
  flex-direction: column;
}
.scheme-moq-card,
.scheme-flow-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line, #e5e7ea);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 27, 31, .06);
}
.scheme-moq-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.scheme-moq-card th {
  background: var(--nav-top);
  color: #fff;
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 13px;
}
.scheme-moq-card td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line, #e5e7ea);
  color: var(--muted);
}
.scheme-moq-card tr:last-child td {
  border-bottom: none;
}
.scheme-moq-card td:first-child {
  color: var(--ink);
  font-weight: 600;
}
.scheme-flow-card {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.scheme-flow-step {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 7px 0;
}
.scheme-flow-step + .scheme-flow-step {
  border-top: 1px solid var(--line, #e5e7ea);
}
.scheme-flow-step .num {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scheme-flow-step h4 {
  font-size: 14px;
  margin: 0 0 1px;
  line-height: 1.3;
}
.scheme-flow-step p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.3;
}

/* Comparison table — three-tone header (OEM/ODM) */
.scheme-table-cmp th:first-child {
  background: var(--paper) !important;
  color: var(--muted) !important;
}
.scheme-table-cmp th:nth-child(2) {
  background: var(--ink) !important;
  color: #fff !important;
}
.scheme-table-cmp th:nth-child(3) {
  background: var(--brand-accent) !important;
  color: #fff !important;
}
.scheme-table-cmp td:first-child {
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-weight: 600 !important;
}

/* Card grid modifiers — reused for Dealers support / cases / testimonials */
.scheme-card-grid--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.scheme-card-grid--quad {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.scheme-adv-card {
  position: relative;
}
.scheme-adv-card .num {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: var(--font-display, inherit);
}
.scheme-adv-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--ink);
}
.scheme-adv-card p {
  margin: 0;
  font-size: 13px;
  color: var(--mid, var(--muted));
  line-height: 1.6;
}
.scheme-card-grid--quote .flag {
  font-size: 20px;
  margin-bottom: 4px;
}
.scheme-card-grid--quote .meta {
  font-size: 12px;
  color: var(--light);
  margin: 0 0 8px;
}
.scheme-card-grid--quote blockquote {
  margin: 0;
  padding-left: 10px;
  border-left: 3px solid var(--gold);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}

/* Dark profile card — exclusive agency (Dealers) */
.scheme-card-dark {
  background: var(--nav-top) !important;
  border-color: transparent !important;
}
.scheme-card-dark h3 {
  color: #fff !important;
}
.scheme-card-dark p,
.scheme-card-dark li {
  color: rgba(255, 255, 255, .78) !important;
}
.scheme-badge-ribbon {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* SKD / CKD dealer-side support band */
.scheme-skd-band {
  background: var(--nav-top);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 44px);
  color: #fff;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.scheme-skd-band h2 {
  color: #fff !important;
  font-size: 24px !important;
  margin: 0 0 12px !important;
}
.scheme-skd-band > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72) !important;
  font-size: 14px;
  max-width: none !important;
  margin: 0 0 16px !important;
}
.scheme-skd-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.scheme-skd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.scheme-skd-item {
  background: rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: 16px 18px;
}
.scheme-skd-item .num {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}
.scheme-skd-item h4 {
  font-size: 14px;
  margin: 0 0 4px;
  color: #fff;
}
.scheme-skd-item p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .65);
  margin: 0;
}

/* Values row — circular icon cards (Dealers) */
.scheme-value-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
}
.scheme-value-card .ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
}
.scheme-value-card h4 {
  font-size: 15px;
  margin: 0 0 6px;
}
.scheme-value-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Dealer application band — dark info panel + white form panel */
.scheme-apply-band {
  background: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  max-width: 1180px;
  margin: 0 auto;
}
.scheme-apply-info {
  padding: clamp(28px, 4vw, 44px);
  color: #fff;
}
.scheme-apply-info h2 {
  color: #fff !important;
  font-size: 24px !important;
  margin: 0 0 12px !important;
}
.scheme-apply-info p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  margin: 0 0 18px;
}
.scheme-apply-info .tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.scheme-apply-info .tag {
  font-size: 12px;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .1);
  padding: 6px 12px;
  border-radius: 20px;
}
.scheme-apply-form {
  background: #fff;
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}
.scheme-apply-form .full,
.scheme-apply-form button {
  grid-column: 1 / -1;
}
.scheme-apply-form h3 {
  font-size: 17px;
  margin: 0;
}
.scheme-apply-form input,
.scheme-apply-form select,
.scheme-apply-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--line, #e5e7ea);
  font-size: 14px;
  font-family: inherit;
}
.scheme-apply-form textarea {
  min-height: 64px;
  resize: vertical;
}
.scheme-apply-form button {
  background: var(--brand-accent);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 13px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .scheme-split,
  .scheme-skd-band,
  .scheme-apply-band {
    grid-template-columns: 1fr !important;
  }
  .scheme-card-grid--triple,
  .scheme-card-grid--quad,
  .scheme-value-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px) {
  .scheme-card-grid--triple,
  .scheme-card-grid--quad,
  .scheme-value-row,
  .scheme-skd-grid,
  .scheme-apply-form {
    grid-template-columns: 1fr !important;
  }
  .scheme-hero-caps,
  .scheme-hero-checks {
    gap: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════
   NOVA HERO  ·  STATS BAR  ·  PRODUCTS STRIP
   Added: homepage redesign (NOVAMACH-style layout)
═══════════════════════════════════════════════════════════ */

/* ── Nova Stats Bar ─────────────────────────────────────── */
.nova-stats-bar {
  background: #0d1b2a;
  display: flex;
  align-items: stretch;
}

.nova-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,.07);
  color: #fff;
}

.nova-stat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1.5px solid rgba(245,124,0,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}

.nova-stat-num {
  font-size: 26px; font-weight: 900;
  color: #F57C00; line-height: 1;
  letter-spacing: -.01em;
}
.nova-stat-num .u {
  font-size: 12px; font-weight: 700;
  color: rgba(245,124,0,.8);
  vertical-align: super;
}

.nova-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

.nova-stat-video {
  flex: 0 0 190px;
  background: url('/assets/content/common/about-factory-real.jpg') center/cover;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
}
.nova-stat-video::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.82) 0%, rgba(13,27,42,.55) 100%);
}
.nova-stat-video-play {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff;
  position: relative; z-index: 1;
  padding-left: 2px;
  text-decoration: none;
  transition: background .15s;
}
.nova-stat-video-play:hover { background: rgba(245,124,0,.7); border-color: #F57C00; }
.nova-stat-video-text { position: relative; z-index: 1; }
.nova-stat-video-title { font-size: 11px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .06em; }
.nova-stat-video-link { font-size: 11px; color: #F57C00; text-decoration: none; font-weight: 600; display: block; margin-top: 2px; }
.nova-stat-video-link:hover { text-decoration: underline; }

/* ── Nova Products Strip ────────────────────────────────── */
.nova-products-strip {
  background: #fff;
  display: flex;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.nova-strip-intro {
  flex: 0 0 190px;
  padding: 28px 24px;
  border-right: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nova-strip-intro h3 {
  font-size: 17px; font-weight: 900;
  line-height: 1.2; color: #0d1b2a;
  text-transform: uppercase;
  margin: 0;
}
.nova-view-all {
  display: inline-flex; align-items: center; gap: 6px;
  color: #F57C00; font-size: 12px; font-weight: 700;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: .04em;
}
.nova-view-all:hover { text-decoration: underline; }

.nova-strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  border-right: 1px solid #e8e8e8;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.nova-strip-item:last-child { border-right: none; }
.nova-strip-item:hover { background: #fafafa; }

.nova-strip-thumb {
  width: 100px; height: 68px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #efefef;
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.nova-strip-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 2px;
}

.nova-strip-info { flex: 1; min-width: 0; }
.nova-strip-type { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.nova-strip-name { font-size: 14px; font-weight: 800; color: #0d1b2a; margin: 2px 0; }
.nova-strip-range { font-size: 12px; color: #777; }

.nova-strip-arrow {
  width: 28px; height: 28px;
  border: 1.5px solid #e0e0e0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #aaa;
  flex-shrink: 0;
  transition: border-color .15s, color .15s;
}
.nova-strip-item:hover .nova-strip-arrow { border-color: #F57C00; color: #F57C00; }

/* ── Remove gray gap below hero banners ───────────────────────── */
main > section:first-child + section,
main > section:first-child + div {
  margin-top: 0 !important;
}

/* ══════════════════════════════════════════════════════════════════════
   MEGA MENU — DEFINITIVE FIX
   Removes the always-visible bug (.mega-wide had display:grid !important
   which won over the display:none !important rule at lower specificity).
   Also restores mobile hamburger-open mega menu display.
══════════════════════════════════════════════════════════════════════ */

/* Mobile hamburger: when nav is open, show all mega menus (2-col default) */
.main-nav.open .mega-menu,
.main-nav.open .mega-menu.mega-wide {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* Mobile narrow: single column */
@media (max-width: 640px) {
  .main-nav.open .mega-menu,
  .main-nav.open .mega-menu.mega-wide {
    grid-template-columns: 1fr !important;
  }
}

/* ── WhatsApp QR Modal ─────────────────────────────────────── */
#wa-qr-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
#wa-qr-overlay.open { display: flex; }
#wa-qr-box {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 24px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  max-width: 320px;
  width: 88vw;
  position: relative;
  animation: waQrIn .22s ease;
}
@keyframes waQrIn {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
#wa-qr-box img {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto 16px;
}
#wa-qr-box .wa-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
#wa-qr-box .wa-sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}
#wa-qr-box .wa-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}
#wa-qr-box .wa-direct:hover { background: #1ebe5d; }
#wa-qr-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 4px 6px;
}
#wa-qr-close:hover { color: #333; }

/* ── Dealer Cases Section ──────────────────────────────────── */
.dealer-cases {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 40px 80px;
}
.dealer-cases-header {
  margin-bottom: 48px;
}
.dealer-cases-header .eyebrow {
  color: var(--gold, #F57C00);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dealer-cases-header h2 {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  color: var(--coal, #171B1F);
  margin: 0 0 12px;
  line-height: 1.15;
}
.dealer-cases-header p {
  font-size: 15px;
  color: #555;
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}
.dealer-case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid #e8e8e8;
}
.dealer-case-card:last-child { border-bottom: 1px solid #e8e8e8; }
.dealer-case-card.reverse { direction: rtl; }
.dealer-case-card.reverse > * { direction: ltr; }
.dealer-case-copy {}
.dealer-case-copy .case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold, #F57C00);
  background: rgba(201,151,45,.08);
  border: 1px solid rgba(201,151,45,.25);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
}
.dealer-case-copy h3 {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--coal, #171B1F);
  margin: 0 0 14px;
  line-height: 1.25;
}
.dealer-case-copy p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 20px;
}
.dealer-case-copy p a {
  color: var(--gold, #F57C00);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dealer-case-copy p a:hover { color: #a87820; }
.dealer-case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--coal, #171B1F);
  text-decoration: none;
  border-bottom: 2px solid var(--gold, #F57C00);
  padding-bottom: 2px;
  transition: color .15s;
}
.dealer-case-link:hover { color: var(--gold, #F57C00); }
.dealer-case-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #f0f0f0;
}
.dealer-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.dealer-case-card:hover .dealer-case-img img { transform: scale(1.03); }
@media (max-width: 768px) {
  .dealer-cases { padding: 24px 20px 48px; }
  .dealer-case-card { grid-template-columns: 1fr; gap: 20px; }
  .dealer-case-card.reverse { direction: ltr; }
}

/* ── Dealer cases CTA strip (in dealer page) ──────────────── */
.scheme-cases-cta {
  background: #f9f6ee;
  border-top: 3px solid var(--gold, #F57C00);
  text-align: center;
  padding: 18px 24px;
  font-size: 14px;
  color: #555;
}
.scheme-cases-cta a {
  color: var(--gold, #F57C00);
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}
.scheme-cases-cta a:hover { text-decoration: underline; }

/* ============================================================
   产品列表白底图放大适配 v20260616
   白底产品图本身有留白，列表卡片需要放大主体以匹配图片框。
   ============================================================ */
body:not([data-page="productDetail"]) .product-card-img-wrap,
body:not([data-page="productDetail"]) .catalog-product-image {
  aspect-ratio: 4 / 3 !important;
  height: auto !important;
  padding: 0 !important;
  background: #fff !important;
  overflow: hidden !important;
}

body:not([data-page="productDetail"]) .product-card-img-wrap img,
body:not([data-page="productDetail"]) .product-card-img,
body:not([data-page="productDetail"]) .catalog-product-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
}

/* ── Mobile nav collapse fix (overrides desktop ".main-nav[data-nav]{display:flex!important}" at L9935) ── */
@media (max-width: 1080px) {
  .new-header .main-nav,
  .site-header .main-nav,
  .main-nav[data-nav] { display: none !important; }
  .new-header .main-nav.open,
  .site-header .main-nav.open,
  .main-nav[data-nav].open { display: flex !important; }
}

/* ── Mobile: hide desktop floating side-CTA (mobile-bottom-bar covers this) ── */
@media (max-width: 1080px) {
  .side-cta { display: none !important; }
}

/* ── Mobile/narrow: stack the homepage category strip vertically (断点提到1200,给放大的分类图留横排空间) ── */
@media (max-width: 1200px) {
  .nova-products-strip { flex-direction: column !important; }
  .nova-strip-intro { flex: none !important; width: 100% !important; border-right: none !important; border-bottom: 1px solid #e8e8e8 !important; }
  .nova-strip-item { border-right: none !important; border-bottom: 1px solid #e8e8e8 !important; }
}

/* ── Mobile: wrap the homepage stats bar ── */
@media (max-width: 1080px) {
  .nova-stats-bar { flex-wrap: wrap !important; }
  .nova-stats-bar .nova-stat { flex: 1 1 45% !important; }
  .nova-stats-bar .nova-stat-video { flex: 1 1 100% !important; }
}

/* ── Mobile polish: top-bar declutter + bottom-bar even spacing ── */
@media (max-width: 1080px) {
  .top-contact-bar .utility-dealer-link { display: none !important; }
  .mobile-bottom-bar { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; }
  .mobile-bottom-bar a { justify-self: stretch !important; text-align: center !important; justify-items: center !important; }
}

/* 批·首页 hotProducts(.product-grid-3col)卡图留白修复 + 4列响应式
   根因:.product-card-img(图为直接子元素)被非详情覆写 height:100% 撑成竖高框,4:3 产品图 contain 后上下大留白。
   改:回归 aspect-ratio 4/3 + height:auto,图框=图比例、留白≈0(仍 contain 不裁)。 */

/* Mobile overflow containment: page body must not inherit horizontal scroll from
   utility search, filter chips, or full-bleed viewport-width helpers. */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  .top-contact-bar,
  .site-header,
  .mobile-bottom-bar {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-layout,
  .page-layout.no-aside,
  .page-layout.no-aside.wide-main,
  .wide-main {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .page-main,
  .page-layout > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .top-contact-bar .top-search {
    display: none !important;
  }

  .category-toolbar,
  .product-filter-tabs {
    max-width: 100% !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    width: 100% !important;
    min-width: 0 !important;
    contain: inline-size;
  }

  .category-toolbar button,
  .product-filter-tabs button,
  .product-filter-tabs .tab,
  .product-filter-tabs .filter-tab {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }

  .product-showcase-hero {
    left: auto !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
}
body:not([data-page="productDetail"]) .product-grid-3col .product-card-img {
  aspect-ratio: 4 / 3 !important;
  height: auto !important;
}
@media (max-width: 560px) {
  .product-grid-3col {
    grid-template-columns: 1fr !important;
  }
}

/* Batch B1: /products/ catalog-only image scale and empty category state. */
body .products-page-catalog .product-card-img-wrap {
  aspect-ratio: 4 / 3 !important;
  height: auto !important;
  padding: 0 !important;
  background: #fff !important;
  overflow: hidden !important;
}

body .products-page-catalog .products-grid .product-card-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.08);
  transform-origin: center;
}

.products-page-catalog .products-empty-state {
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 42px;
  place-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 27, 31, 0.06);
}

.products-page-catalog .products-empty-state[hidden],
.products-page-catalog .products-grid[hidden] {
  display: none !important;
}

.products-page-catalog .empty-kicker {
  margin: 0;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-page-catalog .empty-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
}

.products-page-catalog .empty-copy {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Batch A: desktop mega-menu rebuild. Keep mobile hamburger behavior untouched. */
@media (min-width: 981px) {
  .site-header.new-header .main-nav {
    display: flex !important;
    align-items: center !important;
    gap: clamp(14px, 1.45vw, 24px) !important;
    overflow: visible !important;
  }

  .site-header.new-header .nav-item.has-menu {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: var(--nav-main-h) !important;
  }

  .site-header.new-header .nav-item > a,
  .site-header.new-header .main-nav > a {
    min-height: var(--nav-main-h) !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .site-header.new-header .nav-item.has-menu > a::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 7px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: .72;
  }

  .site-header.new-header .mega-menu,
  .site-header.new-header .mega-menu.mega-wide {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    z-index: 1200 !important;
    display: grid !important;
    width: min(520px, calc(100vw - 40px)) !important;
    max-width: calc(100vw - 40px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
    padding: 20px !important;
    color: var(--coal) !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 0 0 10px 10px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,.14) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(8px) !important;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease !important;
  }

  .site-header.new-header .mega-menu.mega-wide {
    width: min(760px, calc(100vw - 40px)) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .site-header.new-header .nav-item.has-menu:hover .mega-menu,
  .site-header.new-header .nav-item.has-menu:focus-within .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .site-header.new-header .mega-menu h3 {
    margin: 0 0 8px !important;
    padding-bottom: 6px !important;
    color: var(--mid) !important;
    border-bottom: 1px solid var(--border) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    line-height: 1.35 !important;
    text-transform: uppercase !important;
  }

  .site-header.new-header .mega-menu a {
    display: block !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 5px 0 !important;
    color: var(--coal) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
    white-space: normal !important;
  }

  .site-header.new-header .mega-menu a:hover {
    color: var(--gold) !important;
  }

  .site-header.new-header .mega-visual img {
    width: 100% !important;
    height: 90px !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 6px !important;
  }

  .site-header.new-header .mega-menu[aria-label="About menu"] .mega-visual img {
    height: 140px !important;
  }
}

/* Ninja Forms inquiry form adapter */
.hongli-nf-form {
  width: 100%;
}

.hongli-nf-form .nf-form-cont,
.hongli-nf-form .nf-form-wrap,
.hongli-nf-form .nf-form-layout,
.hongli-nf-form .nf-form-content {
  width: 100%;
  max-width: none;
}

.hongli-nf-form .nf-form-content {
  padding: 0;
}

.hongli-nf-form .nf-field-container {
  margin-bottom: 16px;
}

.hongli-nf-form .nf-field-label label {
  color: #111820;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.hongli-nf-form .nf-field-element input,
.hongli-nf-form .nf-field-element select,
.hongli-nf-form .nf-field-element textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d9dee6;
  border-radius: 6px;
  background: #fff;
  color: #111820;
  font-size: 15px;
  line-height: 1.45;
  padding: 11px 13px;
}

.hongli-nf-form .nf-field-element textarea {
  min-height: 124px;
  resize: vertical;
}

.hongli-nf-form .nf-field-element input:focus,
.hongli-nf-form .nf-field-element select:focus,
.hongli-nf-form .nf-field-element textarea:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.14);
  outline: none;
}

.hongli-nf-form .nf-field-element input[type="button"],
.hongli-nf-form .nf-field-element input[type="submit"] {
  width: auto;
  min-width: 180px;
  border: 0;
  background: #ff7a00;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 13px 22px;
}

.hongli-nf-form .nf-field-element input[type="button"]:hover,
.hongli-nf-form .nf-field-element input[type="submit"]:hover {
  background: #e96f00;
}

.hongli-nf-form .nf-error .nf-error-msg,
.hongli-nf-form .nf-error-msg,
.hongli-nf-form .ninja-forms-req-symbol {
  color: #c43b2f;
}

/* Cookie consent */
.hongli-cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(620px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid #d9dee6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 24, 32, 0.16);
  color: #111820;
}

.hongli-cookie-consent[hidden] {
  display: none;
}

.hongli-cookie-consent__text {
  display: grid;
  gap: 4px;
  font-size: 14px;
  line-height: 1.45;
}

.hongli-cookie-consent__text strong {
  font-size: 15px;
}

.hongli-cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.hongli-cookie-consent__actions button {
  min-height: 40px;
  border: 1px solid #d9dee6;
  border-radius: 6px;
  background: #fff;
  color: #111820;
  cursor: pointer;
  font-weight: 800;
  padding: 9px 14px;
}

.hongli-cookie-consent__actions [data-cookie-consent-accept] {
  border-color: #ff7a00;
  background: #ff7a00;
  color: #fff;
}

@media (max-width: 640px) {
  .hongli-cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .hongli-cookie-consent__actions {
    justify-content: flex-end;
  }
}

.footer-legal {
  max-width: 1180px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.footer-legal nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.82); }
.footer-legal p { margin: 0; }
@media (max-width: 680px) {
  .footer-legal { flex-direction: column; }
}


/* HONGLI tail fixes 2026-07-03 home resources density */
.resources-home-section {
  padding-bottom: clamp(36px, 4vw, 56px) !important;
}
.resource-home-grid {
  align-items: stretch;
}
.resource-home-grid a {
  min-height: 0 !important;
  padding: 22px 20px !important;
  border-top: 3px solid var(--gold);
}
.resource-home-grid strong {
  margin-bottom: 8px !important;
}
.resource-home-grid span {
  margin-top: 0 !important;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .resource-home-grid a {
    padding: 18px 18px !important;
  }
}
/* HONGLI pure-English logo responsive override */
.nav-logo-img {
  height: 34px !important;
  width: auto !important;
  max-width: 300px !important;
  object-fit: contain !important;
  display: block !important;
  filter: none !important;
}
@media (max-width: 980px) {
  .nav-logo-img {
    height: 32px !important;
    max-width: 260px !important;
    filter: none !important;
  }
}
@media (max-width: 768px) {
  .nav-logo-img {
    height: 28px !important;
    max-width: 230px !important;
    filter: none !important;
  }
}
/* HONGLI Ninja Forms compaction + responsive two-column grid */
.nf-form-content .nf-field-element input:not([type=button]):not([type=submit]),
.nf-form-content .nf-field-element select,
.nf-form-content .nf-field-element textarea {
  min-height: 38px !important;
  height: auto !important;
  padding: 6px 10px !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.nf-form-content .nf-field-element textarea {
  min-height: 76px !important;
}
.nf-form-content .nf-field-container {
  margin-bottom: 10px !important;
}
.nf-form-content .nf-field-label {
  margin-bottom: 2px !important;
}
.nf-form-content .nf-field-label label,
.nf-form-content .nf-field-label .nf-label-span {
  font-size: 12.5px !important;
  line-height: 1.25 !important;
  margin-bottom: 2px !important;
}
.nf-form-content .nf-error-msg,
.nf-form-content .ninja-forms-req-symbol,
.nf-form-content .nf-error .nf-error-msg {
  font-size: 11px !important;
  margin-top: 2px !important;
}
.nf-form-content .submit-container input[type=button],
.nf-form-content .submit-container input[type=submit] {
  min-height: 40px !important;
  padding: 9px 18px !important;
  font-size: 14px !important;
}
@media (min-width: 640px) {
  .nf-form-content > nf-fields-wrap {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 16px !important;
    row-gap: 0 !important;
    align-items: start !important;
  }
  .nf-form-content > nf-fields-wrap > nf-field {
    min-width: 0 !important;
  }
  .nf-form-content > nf-fields-wrap > nf-field:has(.textarea-container),
  .nf-form-content > nf-fields-wrap > nf-field:has(.listselect-container),
  .nf-form-content > nf-fields-wrap > nf-field:has(.submit-container) {
    grid-column: 1 / -1 !important;
  }
}
@media (max-width: 639px) {
  .nf-form-content > nf-fields-wrap {
    display: block !important;
  }
}

.blog-card.hidden {
  display: none !important;
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px) 8px;
}

.blog-filter-btn {
  min-height: 40px;
  padding: 0 16px;
  color: #0f2a44;
  background: #fff;
  border: 1px solid rgba(15, 42, 68, 0.16);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.is-active {
  color: #fff;
  background: #f57c00;
  border-color: #f57c00;
}

@media (max-width: 640px) {
  .blog-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .blog-filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}/* Blog archive: buyer-first hierarchy, filtering and conversion. */
body[data-page="blog"] .hero-banner{min-height:390px}body[data-page="blog"] .hero-inner{padding-top:76px;padding-bottom:64px}body[data-page="blog"] .hero-desc{max-width:820px}body[data-page="blog"] .hero-actions{display:none}
.blog-featured,.blog-library,.blog-topic-section,.blog-cta{max-width:1280px;margin:0 auto}.blog-section-head{display:flex;justify-content:space-between;gap:40px;align-items:end;margin-bottom:30px}.blog-section-head h2{margin:5px 0 0;font-size:clamp(30px,3.6vw,48px);line-height:1.08}.blog-section-head>p{max-width:520px;margin:0;color:var(--muted);line-height:1.7}
.blog-featured-grid{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(300px,.85fr);grid-template-rows:repeat(2,minmax(220px,1fr));gap:22px}.blog-feature-card{position:relative;display:block;min-height:220px;overflow:hidden;border-radius:14px;background:var(--ink);color:#fff;text-decoration:none}.blog-feature-card--primary{grid-row:1/3;min-height:462px}.blog-feature-card img{width:100%;height:100%;object-fit:cover;transition:transform .35s}.blog-feature-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 20%,rgba(7,16,27,.92) 100%)}.blog-feature-card:hover img{transform:scale(1.025)}.blog-feature-copy{position:absolute;z-index:1;inset:auto 0 0;padding:24px}.blog-feature-card--primary .blog-feature-copy{padding:clamp(26px,4vw,44px)}.blog-feature-copy h2{max-width:760px;margin:6px 0 8px;color:#fff;font-size:clamp(21px,2.2vw,36px);line-height:1.15}.blog-feature-card:not(.blog-feature-card--primary) .blog-feature-copy h2{font-size:clamp(18px,1.65vw,24px)}.blog-feature-copy>p:not(.blog-card-tag){max-width:700px;margin:0 0 14px;color:rgba(255,255,255,.82);line-height:1.55}.blog-feature-card:not(.blog-feature-card--primary) .blog-feature-copy>p:not(.blog-card-tag){display:none}.blog-feature-copy>span{display:flex;justify-content:space-between;gap:20px;color:rgba(255,255,255,.72);font-size:13px}.blog-feature-copy strong{color:#fff}
.blog-filter-bar{display:flex;gap:10px;overflow-x:auto;margin:0 0 28px;padding:4px 0 10px;scrollbar-width:thin}.blog-filter{flex:0 0 auto;padding:10px 16px;border:1px solid var(--border);border-radius:999px;background:#fff;color:var(--ink);font:inherit;font-size:14px;font-weight:700;cursor:pointer}.blog-filter:hover{border-color:var(--gold)}.blog-filter.is-active{border-color:var(--gold);background:var(--gold);color:var(--ink)}
.blog-library .blog-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:24px!important;max-width:none!important;padding:0!important}.blog-library .blog-card{border-radius:12px;box-shadow:0 2px 12px rgba(12,25,40,.04)}.blog-library .blog-card[hidden]{display:none!important}.blog-library .blog-card-img{aspect-ratio:16/9;height:auto}.blog-library .blog-card-body{padding:22px}.blog-library .blog-card-title{flex:none;min-height:3.95em;font-size:18px;line-height:1.32}.blog-library .blog-card-excerpt{display:-webkit-box;overflow:hidden;min-height:4.8em;-webkit-box-orient:vertical;-webkit-line-clamp:3;font-size:14px}.blog-card-meta{display:flex;justify-content:space-between;gap:16px;margin-top:20px;padding-top:16px;border-top:1px solid var(--border);color:var(--muted);font-size:13px}.blog-card-meta strong{color:var(--gold-dark)}
.blog-topic-section{padding-top:32px!important}.blog-topic-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border:1px solid var(--border);border-radius:14px;background:#fff}.blog-topic-grid a{min-height:230px;padding:28px;border-right:1px solid var(--border);color:inherit;text-decoration:none}.blog-topic-grid a:last-child{border-right:0}.blog-topic-grid span{color:var(--gold-dark);font-size:13px;font-weight:800}.blog-topic-grid h3{margin:32px 0 12px;font-size:21px;line-height:1.25}.blog-topic-grid p{margin:0;color:var(--muted);font-size:14px;line-height:1.6}.blog-topic-grid a:hover{background:#fff8ef}
.blog-cta{display:flex;justify-content:space-between;gap:48px;align-items:center;margin-bottom:80px;padding:clamp(34px,5vw,60px)!important;border-radius:16px;background:var(--ink);color:#fff}.blog-cta h2{margin:6px 0 10px;color:#fff;font-size:clamp(28px,3.5vw,46px)}.blog-cta p:not(.eyebrow){max-width:760px;margin:0;color:rgba(255,255,255,.75);line-height:1.65}.blog-cta-actions{display:flex;flex:0 0 auto;gap:12px}
@media(max-width:960px){.blog-featured-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto}.blog-feature-card--primary{grid-column:1/3;grid-row:auto;min-height:410px}.blog-library .blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.blog-topic-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.blog-topic-grid a:nth-child(2){border-right:0}.blog-topic-grid a:nth-child(-n+2){border-bottom:1px solid var(--border)}.blog-cta{align-items:flex-start;flex-direction:column}}
@media(max-width:640px){body[data-page="blog"] .hero-banner{min-height:320px}body[data-page="blog"] .hero-inner{padding-top:54px;padding-bottom:46px}.blog-section-head{display:block;margin-bottom:22px}.blog-section-head>p{margin-top:12px}.blog-featured-grid{display:block}.blog-feature-card,.blog-feature-card--primary{min-height:330px;margin-bottom:16px}.blog-feature-card:not(.blog-feature-card--primary) .blog-feature-copy>p:not(.blog-card-tag){display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2}.blog-library .blog-grid{grid-template-columns:1fr!important;gap:18px!important}.blog-library .blog-card-title,.blog-library .blog-card-excerpt{min-height:0}.blog-topic-grid{grid-template-columns:1fr}.blog-topic-grid a{min-height:0;border-right:0;border-bottom:1px solid var(--border)}.blog-topic-grid a:last-child{border-bottom:0}.blog-topic-grid h3{margin-top:18px}.blog-cta{margin-right:20px;margin-bottom:56px;margin-left:20px;border-radius:12px}.blog-cta-actions{width:100%;flex-direction:column}.blog-cta-actions .btn{width:100%;text-align:center}}
.page-id-97 .hero-banner{min-height:390px}.page-id-97 .hero-inner{padding-top:76px;padding-bottom:64px}.page-id-97 .hero-desc{max-width:820px}.page-id-97 .hero-actions{display:none}
.blog-post-cover{margin:26px 0 34px}.blog-post-cover img{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;border-radius:12px}.blog-post-cover figcaption{margin-top:9px;color:var(--muted);font-size:12px;line-height:1.5}
@media(max-width:640px){.page-id-97 .hero-banner{min-height:320px}.page-id-97 .hero-inner{padding-top:54px;padding-bottom:46px}}
/* 2026-07-14: keep both comparison forklifts fully visible */
.page-id-97 .blog-feature-card--primary img {
  object-fit: contain !important;
  object-position: center !important;
  background: #111b26;
}
.page-id-97 .blog-feature-card--primary:hover img {
  transform: none !important;
}
/* 2026-07-14: compact the lead card to the cover's native 16:9 ratio */
@media (min-width: 641px) {
  .page-id-97 .blog-featured-grid {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .page-id-97 .blog-feature-card--primary {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}
/* 2026-07-14: equalize the stacked side cards with the 16:9 lead card */
@media (min-width: 641px) {
  .page-id-97 .blog-feature-card:not(.blog-feature-card--primary) {
    min-height: 0;
  }
}
/* 2026-07-14: remove intrinsic image height from featured grid sizing */
@media (min-width: 641px) {
  .page-id-97 .blog-feature-card img {
    position: absolute;
    inset: 0;
  }
}
/* 2026-07-14: larger desktop contact rail controls */
@media (min-width: 1081px) {
  .side-cta { padding: 7px !important; }
  .side-cta-toggle {
    width: 28px !important;
    height: 52px !important;
    font-size: 20px !important;
  }
  .side-cta a,
  .side-cta button:not(.side-cta-toggle) {
    width: 76px !important;
    height: 68px !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    gap: 5px !important;
  }
  .side-cta a::before,
  .side-cta button:not(.side-cta-toggle)::before {
    font-size: 20px !important;
  }
}
/* 2026-07-14: preserve brand and title casing in the contact rail */
@media (min-width: 1081px) {
  .side-cta a,
  .side-cta button:not(.side-cta-toggle) {
    text-transform: none !important;
  }
}
/* 2026-07-14: stronger contact rail visibility with channel colors */
@media (min-width: 1081px) {
  .side-cta {
    border-color: rgba(15, 42, 68, .18) !important;
    box-shadow: -6px 0 24px rgba(15, 42, 68, .22) !important;
  }
  .side-cta a {
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    border-top-color: rgba(255,255,255,.22) !important;
  }
  .side-cta a[href*="get-a-quote"] { background: #ef7f1a !important; }
  .side-cta a[href*="wa.me"] { background: #25d366 !important; }
  .side-cta a[href^="mailto:"] { background: #1976d2 !important; }
  .side-cta a[href*="after-sales"],
  .side-cta a[href*="support"] { background: #0f2a44 !important; }
  .side-cta a:hover {
    color: #fff !important;
    filter: brightness(1.08) !important;
    transform: translateX(-5px) !important;
  }
}
