/* ==========================================================================
   企业官网 - 主样式
   工业风配色 · 中英双语 · 响应式
   Design system inspired by ui-ux-pro-max + impeccable
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---------- Design system: PERSOLY "Spec Sheet" ----------
   Two-pass design.
   Pass-1 Token system:
     Palette: void / ink / rust (safety orange) / concrete (slate-400)
     Type: display = Plus Jakarta Sans 800; body = PJS 400; mono = JetBrains Mono 500
     Layout: black ground + giant display text + 1 signature mono ribbon
     Signature: an oversized mono SKU ribbon pinned above the heading, thin orange hairline
   Pass-2 Anti-AI-default critique:
     Not cream/serif ✅ — void black + PJS sans
     Not acid-green ✅ — rust orange reserved for live/CTA only
     Not broadsheet ✅ — no newspaper density, only 1 ribbon + 1 heading + 1 search
   ---------------------------------------------------- */
:root {
  /* Reset to dark-only spec-sheet theme */
  --bg: #000;
  --bg-elev: #0A0A0A;
  --bg-card: #131313;
  --ink: #FFFFFF;
  --ink-muted: #94A3B8;
  --ink-dim: #475569;
  --rust: #EA580C;
  --rust-bright: #F97316;
  --rule: rgba(255,255,255,0.08);
  --rule-strong: rgba(255,255,255,0.18);
  /* Legacy aliases — keep existing code working */
  --color-primary: var(--bg);
  --color-bg: #000;
  --color-bg-alt: #0A0A0A;
  --color-bg-dark: #000;
  --color-text: var(--ink);
  --color-text-secondary: var(--ink-muted);
  --color-text-muted: var(--ink-dim);
  --color-text-light: var(--ink);
  --color-accent: var(--rust);
  --color-accent-light: var(--rust-bright);
  --color-accent-dark: #C2410C;
  --color-border: var(--rule);
  --color-border-light: var(--rule-strong);
  --rd-fg: var(--ink);
  --rd-fg-muted: var(--ink-muted);
  --rd-accent: var(--rust);
  --rd-rule: var(--rule);
}

/* ---------- CSS 变量 / 主题 ---------- */
:root {
  /* 主色 - 深 navy（专业、可信、工业）-- ui-ux-pro-max B2B recommended */
  --color-primary: #0F172A;
  --color-primary-light: #1E293B;
  --color-primary-dark: #020617;

  /* 强调色 - safety orange（CTA）-- WCAG 3:1 verified */
  --color-accent: #EA580C;
  --color-accent-light: #F97316;
  --color-accent-dark: #C2410C;

  /* 中性色 */
  --color-bg: #ffffff;
  --color-bg-alt: #f7fafc;
  --color-bg-dark: #0a2540;
  --color-border: #e2e8f0;
  --color-border-light: #edf2f7;

  /* 文字 */
  --color-text: #1a202c;
  --color-text-secondary: #4a5568;
  --color-text-muted: #718096;
  --color-text-light: #ffffff;

  /* 状态色 */
  --color-success: #38a169;
  --color-warning: #ed8936;
  --color-error: #e53e3e;

  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);

  /* 圆角 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* 间距 */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* 字体 - Plus Jakarta Sans for B2B (ui-ux-pro-max recommended) */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* 容器 */
  --container-max: 1280px;
  --container-padding: 1.5rem;

  /* 过渡 */
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Header 高度（用于锚点滚动偏移） */
  --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent);
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
}

/* ---------- 排版 ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
h4 {
  font-size: 1.125rem;
}

p {
  color: var(--color-text-secondary);
}

.text-muted {
  color: var(--color-text-muted);
}
.text-accent {
  color: var(--color-accent);
}

/* ---------- 布局 ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title h2 {
  margin-bottom: var(--space-sm);
}

.section-title p {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-arrow::after {
  content: "→";
  transition: transform var(--transition-base);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ---------- 顶部公告栏 ---------- */
.topbar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-left a:hover {
  color: var(--color-accent-light);
}

.topbar-right {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.lang-switch {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding-left: var(--space-md);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base);
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  color: var(--color-accent-light);
  font-weight: 600;
}

/* ---------- Header / 主导航 ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.logo-text small {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 0.875rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.nav-link:hover {
  color: var(--color-accent);
  background: var(--color-bg-alt);
}

.nav-link.active {
  color: var(--color-accent);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-base);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 50;
  border: 1px solid var(--color-border-light);
}

.nav-item:hover .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.nav-dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent);
  padding-left: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
  transition: all var(--transition-base);
}

.icon-btn:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  padding: var(--space-3xl) 0 var(--space-2xl);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 138, 91, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero h1 span {
  color: var(--color-accent-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Search */
.hero-search {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  display: flex;
  gap: 0.5rem;
  max-width: 720px;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-xl);
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  background: transparent;
  color: var(--color-text);
}

.hero-search input::placeholder {
  color: var(--color-text-muted);
}

.hero-search button {
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-search button:hover {
  background: var(--color-accent-dark);
}

.hero-search-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-tab {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-tab.active,
.hero-tab:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-help {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-help a {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.hero-cta {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- 卡片网格 ---------- */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

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

/* ---------- 卡片 ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-icon.accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
}

.card-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* 分类入口卡（大图） */
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.cat-card:hover {
  transform: translateY(-4px);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-card-bg svg {
  width: 60%;
  height: 60%;
  color: rgba(255, 255, 255, 0.15);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.cat-card h3 {
  color: #fff;
  margin-bottom: var(--space-xs);
}

.cat-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.cat-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: var(--space-sm);
  font-weight: 600;
  color: var(--color-accent-light);
  font-size: 0.875rem;
}

/* 服务特性 */
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

/* ---------- 品牌墙 ---------- */
.brands {
  background: var(--color-bg-alt);
  padding: var(--space-2xl) 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: #fff;
  border-radius: var(--radius-md);
  height: 80px;
  transition: all var(--transition-base);
  filter: grayscale(1) opacity(0.6);
}

.brand-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.brand-logo svg,
.brand-logo img {
  max-width: 100%;
  max-height: 48px;
}

/* ---------- 产品目录 ---------- */
.catalog {
  padding: var(--space-3xl) 0;
  background: #fff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.catalog-col h4 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.catalog-col ul li {
  margin-bottom: 0.5rem;
}

.catalog-col a {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.catalog-col a::before {
  content: "›";
  color: var(--color-accent);
  font-weight: bold;
}

.catalog-col a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: var(--color-accent-light);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  max-width: 360px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact strong {
  color: #fff;
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom-links a:hover {
  color: var(--color-accent-light);
}

/* ---------- 统计数据条 ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  padding: var(--space-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ---------- 通用页面元素 ---------- */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
}

.page-header-inner {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: #fff;
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 640px;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.breadcrumb a:hover {
  color: var(--color-accent-light);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- 关于我们：里程碑 ---------- */
.timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-xl) + 6px);
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-year {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
}

/* ---------- 产品卡 ---------- */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-image {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border-light) 100%);
}

.product-image svg {
  position: relative;
  z-index: 1;
  width: 50%;
  height: 50%;
}

.product-info {
  padding: var(--space-md);
}

.product-info h4 {
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ---------- 筛选标签 ---------- */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  justify-content: center;
}

.filter-tab {
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-tab:hover {
  background: var(--color-border-light);
}

.filter-tab.active {
  background: var(--color-primary);
  color: #fff;
}

/* ---------- 解决方案/应用领域 ---------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.solution-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--color-accent);
}

.solution-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon svg {
  width: 28px;
  height: 28px;
}

.solution-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.solution-content p {
  font-size: 0.9375rem;
}

/* ---------- 联系页 ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-content h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-info-content p,
.contact-info-content a {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.contact-info-content a:hover {
  color: var(--color-accent);
}

/* ---------- 表单 ---------- */
.form {
  background: #fff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.form-group label .required {
  color: var(--color-error);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: all var(--transition-base);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  display: none;
}

.form-message.success {
  background: #f0fff4;
  color: var(--color-success);
  border: 1px solid #c6f6d5;
  display: block;
}

.form-message.error {
  background: #fff5f5;
  color: var(--color-error);
  border: 1px solid #fed7d7;
  display: block;
}

/* ---------- 地图占位 ---------- */
.map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  position: relative;
}

.map-placeholder svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.map-placeholder-text {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  z-index: 1;
}

/* ---------- 产品搜索框（产品页专用） ---------- */
.product-search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.search-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.search-tab {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.search-tab:hover {
  background: var(--color-border-light);
}

.search-tab.active {
  background: var(--color-primary);
  color: #fff;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: var(--color-text-muted);
  pointer-events: none;
}

.search-input-wrap input {
  width: 100%;
  padding: 0.875rem 3rem 0.875rem 3rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  font-size: 1rem;
  transition: all var(--transition-base);
}

.search-input-wrap input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-clear {
  position: absolute;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-border-light);
  color: var(--color-text-secondary);
  font-size: 1.25rem;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-clear.visible {
  display: flex;
}

.search-clear:hover {
  background: var(--color-text-muted);
  color: #fff;
}

.search-meta {
  margin-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.search-meta strong {
  color: var(--color-accent);
  font-size: 1rem;
  margin-right: 0.25rem;
}

.search-tip {
  font-size: 0.8125rem;
}

.cat-count {
  display: inline-block;
  background: var(--color-border-light);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  padding: 0.05rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.25rem;
  font-weight: 500;
}

.filter-tab.active .cat-count {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- 产品卡片（产品页专用） ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.product-card-real {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.product-card-real:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-img-box {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.product-img-box svg {
  width: 30%;
  height: 60%;
}

.product-img-box .product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: #fff;
  box-sizing: border-box;
  transition: transform .3s ease;
}

.product-card-real:hover .product-photo {
  transform: scale(1.05);
}

.product-img-box.img-fallback {
  background-blend-mode: normal;
}

.product-img-box.cat-fuel {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
}
.product-img-box.cat-oil {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a5b 100%);
}
.product-img-box.cat-air {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}
.product-img-box.cat-other {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

.product-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.product-category-tag {
  display: inline-block;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: "SF Mono", Consolas, Monaco, monospace;
  letter-spacing: -0.02em;
}

.product-spec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--color-bg-alt);
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.spec-row span {
  color: var(--color-text-muted);
}

.spec-row strong {
  color: var(--color-text);
  font-weight: 500;
  text-align: right;
  font-family: "SF Mono", Consolas, Monaco, monospace;
  font-size: 0.8125rem;
}

.spec-row.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.spec-row.vertical strong {
  text-align: left;
}

.product-vehicle {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-vehicle strong {
  color: var(--color-text-muted);
  font-weight: 500;
}

.product-oem {
  border-top: 1px dashed var(--color-border);
  padding-top: var(--space-sm);
}

.oem-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 0.375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.oem-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.oem-chip {
  display: inline-block;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
  font-size: 0.6875rem;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: "SF Mono", Consolas, Monaco, monospace;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oem-chip.oem-more {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
}

/* ---------- 加载/空状态 ---------- */
.loading-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-3xl) 0;
  color: var(--color-text-muted);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-border-light);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-3xl) 0;
  color: var(--color-text-muted);
}

.empty-state svg {
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

.empty-state h3 {
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.empty-state p {
  margin-bottom: var(--space-md);
}

/* ---------- 分页 ---------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.page-btn {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
}

.page-btn:hover:not(:disabled) {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-info {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.page-info strong {
  color: var(--color-accent);
}

/* ---------- OEM 交叉检索数据 ---------- */
.crossref-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.crossref-stats > div {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.crossref-stats strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.crossref-stats span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- 产品详情弹窗 ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--space-md);
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  z-index: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: var(--color-accent);
  color: #fff;
}

.modal-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 500px;
}

.modal-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
}

.modal-image svg {
  width: 40%;
  height: 50%;
}

.modal-info {
  padding: var(--space-xl);
}

.modal-info h2 {
  font-size: 1.75rem;
  font-family: "SF Mono", Consolas, Monaco, monospace;
  margin-bottom: 0.25rem;
}

.modal-product-name {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.modal-specs {
  background: var(--color-bg-alt);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.modal-specs .spec-row {
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.modal-specs .spec-row:last-child {
  border-bottom: none;
}

.modal-section {
  margin-bottom: var(--space-lg);
}

.modal-section h4 {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.oem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem;
  padding-left: 0;
}

.oem-list li {
  background: var(--color-bg-alt);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: "SF Mono", Consolas, Monaco, monospace;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  list-style: none;
}

.oem-list li.muted {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-muted);
  font-style: italic;
}

.mfg-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mfg-tag {
  background: var(--color-primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
}

.modal-actions {
  display: flex;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .crossref-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-image {
    aspect-ratio: 16/9;
  }
  .modal-info {
    padding: var(--space-md);
  }
  .oem-list {
    grid-template-columns: 1fr;
  }
  .search-meta {
    flex-direction: column;
  }
}

/* ---------- 交叉检索块 ---------- */
.cross-ref {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cross-ref::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 60%);
}

.cross-ref-inner {
  position: relative;
  z-index: 1;
}

.cross-ref h2 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.cross-ref p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 动画 ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.6s ease-out backwards;
}

.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }
.fade-up:nth-child(5) { animation-delay: 0.4s; }
.fade-up:nth-child(6) { animation-delay: 0.5s; }

/* ---------- 工具类 ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.bg-alt { background: var(--color-bg-alt); }
.bg-dark { background: var(--color-primary-dark); color: #fff; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }

  .topbar {
    font-size: 0.75rem;
  }

  .topbar-left,
  .topbar-right {
    gap: 0.75rem;
  }

  .nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--color-border-light);
  }

  .nav-link {
    width: 100%;
    padding: 1rem 0.5rem;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--color-bg-alt);
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    width: 100%;
    border-radius: var(--radius-md);
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .header-actions .btn {
    display: none;
  }

  .header-actions .icon-btn:not(:last-child) {
    display: none;
  }

  .hero {
    padding: var(--space-2xl) 0 var(--space-xl);
  }

  .hero-search {
    flex-direction: column;
    padding: 1rem;
  }

  .hero-search button {
    width: 100%;
    justify-content: center;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

  .timeline {
    padding-left: var(--space-md);
  }

  .timeline::before {
    left: 6px;
  }

  .timeline-item::before {
    left: calc(-1 * var(--space-md));
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cta {
    flex-direction: column;
  }

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

/* ---------- 打印 ---------- */
@media print {
  .header,
  .footer,
  .topbar,
  .no-print {
    display: none !important;
  }
}

/* ==========================================================================
   OEM 交叉检索页面 (cross-reference.html)
   ========================================================================== */

.xrf-hero {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  color: #fff;
  padding: 60px 0 80px;
  margin-top: 0;
}
.xrf-hero .breadcrumb { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.xrf-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.xrf-hero .breadcrumb-sep { color: rgba(255,255,255,0.4); margin: 0 6px; }
.xrf-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.xrf-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  max-width: 720px;
}

.xrf-search-form { max-width: 760px; }
.xrf-search-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  gap: 8px;
  position: relative;
}
.xrf-search-icon { color: var(--color-text-secondary); flex-shrink: 0; }
.xrf-search-input-wrap input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 1rem;
  padding: 12px 4px;
  color: var(--color-text);
  min-width: 0;
}
.xrf-search-input-wrap input::placeholder { color: #94a3b8; }
.xrf-search-clear {
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px 8px;
  display: none;
}
.xrf-search-clear.visible { display: inline-block; }
.xrf-search-clear:hover { color: var(--color-text); }
.xrf-search-submit {
  padding: 10px 24px;
  font-weight: 600;
  white-space: nowrap;
}

.xrf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  max-width: 720px;
}
.xrf-stats > div {
  display: flex;
  flex-direction: column;
}
.xrf-stats strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.xrf-stats span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .xrf-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .xrf-stats strong { font-size: 1.4rem; }
}

/* ---- 结果头 ---- */
.xrf-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.xrf-result-count {
  font-size: 1rem;
  color: var(--color-text);
}
.xrf-result-count #xrfResultCount {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.2rem;
}
.xrf-query-echo {
  margin-left: 12px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}
.xrf-query-echo mark, .xrf-table mark {
  background: #fff3cd;
  color: #b45309;
  padding: 0 2px;
  border-radius: 2px;
}
.xrf-page-size {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}
.xrf-page-size select {
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ---- 表格 ---- */
.xrf-table-wrap {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  overflow-x: auto;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.xrf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 720px;
}
.xrf-table thead {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 2px solid var(--color-border-light);
}
.xrf-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.xrf-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}
.xrf-table tbody tr {
  transition: background-color .15s ease;
}
.xrf-table tbody tr:hover {
  background-color: #f8fafc;
}
.xrf-table tbody tr:last-child td {
  border-bottom: 0;
}
.col-no { width: 56px; color: var(--color-text-secondary); font-variant-numeric: tabular-nums; }
.col-oem { font-family: 'Consolas', 'Monaco', monospace; font-size: 0.95rem; min-width: 180px; }
.col-brand { min-width: 100px; }
.col-persoly { min-width: 200px; }
.col-type { width: 110px; }
.col-action { width: 160px; white-space: nowrap; }

.xrf-product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  text-decoration: none;
}
.xrf-product-link:hover .xrf-persoly-no {
  color: var(--color-accent);
}
.xrf-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  object-fit: contain;
  padding: 3px;
  flex-shrink: 0;
}
.xrf-thumb-fallback {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a5b 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.xrf-persoly-no {
  font-weight: 700;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color .15s;
}

.xrf-type-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.xrf-type-chip.cat-fuel { background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%); }
.xrf-type-chip.cat-oil  { background: linear-gradient(135deg, #ff6b35 0%, #ff8a5b 100%); }
.xrf-type-chip.cat-air  { background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%); }
.xrf-type-chip.cat-other { background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%); }

.xrf-btn-detail, .xrf-btn-quote {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-right: 4px;
  transition: all .15s ease;
}
.xrf-btn-detail {
  background: #f1f5f9;
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
}
.xrf-btn-detail:hover {
  background: #e2e8f0;
  border-color: var(--color-text-secondary);
}
.xrf-btn-quote {
  background: var(--color-accent);
  color: #fff;
}
.xrf-btn-quote:hover {
  background: #e55a2b;
}

/* ---- 空状态 ---- */
.xrf-empty {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  padding: 60px 20px;
  text-align: center;
  color: var(--color-text-secondary);
}
.xrf-empty svg { color: #cbd5e1; margin-bottom: 16px; }
.xrf-empty h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 8px;
}
.xrf-empty p { margin: 0; }
.xrf-empty code {
  background: #f1f5f9;
  color: var(--color-text);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  margin: 0 2px;
}
.xrf-empty a { color: var(--color-accent); }

/* ---- 分页 ---- */
.xrf-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.xrf-page-numbers {
  display: flex;
  gap: 4px;
}
.xrf-pagination .page-btn {
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all .15s ease;
}
.xrf-pagination .page-btn:hover:not(:disabled) {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.xrf-pagination .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.xrf-pagination .page-num {
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  min-width: 36px;
  transition: all .15s ease;
}
.xrf-pagination .page-num:hover {
  background: #f1f5f9;
}
.xrf-pagination .page-num.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.xrf-pagination .page-ellipsis {
  padding: 8px 4px;
  color: var(--color-text-secondary);
  user-select: none;
}

/* ---- 帮助卡片 ---- */
.xrf-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .xrf-help-grid { grid-template-columns: 1fr; }
}
.xrf-help-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all .2s ease;
}
.xrf-help-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}
.xrf-help-card .help-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 100%);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.xrf-help-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text);
}
.xrf-help-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}
.xrf-help-card code {
  background: #f1f5f9;
  color: var(--color-text);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88em;
}
.xrf-help-card a { color: var(--color-accent); text-decoration: none; }
.xrf-help-card a:hover { text-decoration: underline; }

/* ==========================================================================
   全站浮动按钮（WhatsApp / 邮件 / 微信 / 电话 / 询盘 / 回顶）
   ========================================================================== */

.floater {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floater-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: all .2s ease;
  position: relative;
}
.floater-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.floater-btn .floater-tip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
.floater-btn:hover .floater-tip {
  opacity: 1;
}

.floater-wa    { background: #25D366; }
.floater-email { background: #2563eb; }
.floater-wechat{ background: #07c160; }
.floater-phone { background: #ff6b35; }
.floater-quote { background: linear-gradient(135deg, #ff6b35 0%, #ff8a5b 100%); }
.floater-top   { background: #475569; }

.floater-quote {
  width: 60px;
  height: 60px;
}
.floater-quote svg {
  width: 26px;
  height: 26px;
}

/* 浮动面板（微信二维码 + 询盘表单） */
.floater-panel {
  position: fixed;
  right: 84px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  width: 320px;
  max-width: calc(100vw - 110px);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.floater-panel-inner {
  padding: 24px;
  width: 100%;
  position: relative;
}
.floater-panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  color: var(--color-text-secondary);
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floater-panel-close:hover {
  background: #f1f5f9;
  color: var(--color-text);
}
.floater-panel h4 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}
.wechat-qr {
  width: 180px;
  height: 180px;
  margin: 0 auto 12px;
  background: #f8fafc;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wechat-qr-placeholder {
  color: #94a3b8;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 4px;
}
.floater-panel p {
  margin: 8px 0;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  text-align: center;
}
.wechat-id {
  margin-top: 12px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.btn-copy {
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
}
.btn-copy:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* 询盘表单 */
.quick-quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qq-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.qq-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}
.qq-row input,
.qq-row textarea {
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
.qq-row input:focus,
.qq-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}
.qq-submit {
  margin-top: 4px;
  padding: 10px 16px;
  font-weight: 600;
}
.qq-note {
  font-size: 0.78rem;
  text-align: center;
  color: var(--color-text-secondary);
  margin: 4px 0 0;
}

@media (max-width: 768px) {
  .floater { right: 12px; bottom: 80px; gap: 8px; }
  .floater-btn { width: 46px; height: 46px; }
  .floater-btn svg { width: 22px; height: 22px; }
  .floater-quote { width: 52px; height: 52px; }
  .floater-panel {
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100vw - 90px);
  }
}

/* ==========================================================================
   About 页面专用样式
   ========================================================================== */

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-light { color: #ff8a5b; }

.about-hero-en {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 60%, #1e4976 100%);
  color: #fff;
  padding: 60px 0 80px;
}
.about-hero-en h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.about-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  line-height: 1.6;
}
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-hero-stats > div {
  display: flex;
  flex-direction: column;
}
.about-hero-stats strong {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.about-hero-stats span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .about-hero-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .about-hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* 双栏布局 */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
}
.about-text strong { color: var(--color-text); font-weight: 700; }
.about-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.about-visual {
  display: flex;
  justify-content: center;
}
.about-image-box {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}
.about-image-box svg { width: 100%; height: auto; display: block; }

/* Capability */
.capability-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all .25s ease;
  height: 100%;
}
.capability-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}
.capability-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.capability-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
}
.capability-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 12px;
}
.capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}
.capability-list li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.capability-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Regions */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .region-grid { grid-template-columns: 1fr; } }

.region-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 24px 22px;
  position: relative;
  transition: all .25s ease;
}
.region-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.region-flag {
  font-size: 1.6rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.region-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}
.region-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}
.region-marker {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  background: rgba(255, 107, 53, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Clients */
.section-title.light h2,
.section-title.light p {
  color: #fff;
}
.section.light,
.section.bg-dark .section-title p {
  color: rgba(255,255,255,0.85);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .client-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }

.client-logo {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  padding: 12px;
}
.client-logo:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.client-logo-placeholder {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}
.client-cta {
  text-align: center;
  margin-top: 48px;
  color: rgba(255,255,255,0.9);
}
.client-cta p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 80px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent) 50%, #e2e8f0 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  position: absolute;
  left: -80px;
  top: 0;
  width: 60px;
  text-align: center;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 0;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  z-index: 1;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-accent);
}
.timeline-content {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px;
}
.timeline-content p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 540px) {
  .timeline { padding-left: 60px; }
  .timeline::before { left: 36px; }
  .timeline-year { left: -60px; width: 50px; font-size: 0.85rem; }
  .timeline-item::before { left: -32px; }
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  color: #fff;
}
.cta-band-inner {
  text-align: center;
  padding: 60px 0;
}
.cta-band-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
}
.cta-band-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: #0a2540;
}

/* Topbar time */
.topbar-time {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  margin-left: 16px;
}

/* Hero Stats - 中文版也通用 */
.about-hero-stats {
  /* inherited from above */
}

/* Section title light - 已有 .section.bg-dark */
.section.bg-dark h2,
.section.bg-dark p {
  color: #fff;
}

/* Buttons outline */
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ==========================================================================
   English Homepage Hero
   ========================================================================== */

.hero-en {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 60%, #1e4976 100%);
  color: #fff;
  overflow: hidden;
}
.hero-en-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(7, 193, 96, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.hero-en-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
.hero-en-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-en-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero-en-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.hero-en-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-en-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.hero-en-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
  max-width: 580px;
}
.hero-en-sub strong {
  color: var(--color-accent);
  font-weight: 700;
}
.hero-en-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-en-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}
.badge-item {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stats card */
.hero-en-card {
  background: #fff;
  color: var(--color-text);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-en-card-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 16px;
}
.hero-en-card-head strong {
  font-size: 1rem;
  font-weight: 700;
}
.hero-en-card-stats {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-en-card-stats li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border-light);
  font-size: 0.92rem;
}
.hero-en-card-stats li:last-child { border-bottom: 0; }
.hero-en-card-stats span {
  color: var(--color-text-secondary);
}
.hero-en-card-stats strong {
  color: var(--color-text);
  font-weight: 800;
  font-size: 1rem;
}
.hero-en-card-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}
.hero-en-card-foot a {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
}
.hero-en-card-foot a:hover { text-decoration: underline; }

/* Trusted by marquee */
.section-tight { padding: 32px 0; }
.trusted-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin: 0 0 20px;
}
.logo-marquee {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  background: #fff;
}
.logo-marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.logo-marquee-track span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Product category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.cat-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.cat-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 4px;
}
.cat-card strong {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.cat-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.cat-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  transition: all .2s ease;
}
.cat-card:hover .cat-arrow {
  color: var(--color-accent);
  transform: translateX(4px);
}

/* Why PERSOLY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}
.why-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.18;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
}
.why-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Trade grid */
.trade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .trade-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .trade-grid { grid-template-columns: 1fr; } }
.trade-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 22px;
  transition: all .2s ease;
}
.trade-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.trade-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.trade-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.trade-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 28px 26px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-rating {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

/* Topbar link colors for en version (override if needed) */
.topbar-right a.active {
  color: #fff;
  font-weight: 700;
}
.topbar-right a:not(.active) {
  color: rgba(255,255,255,0.65);
}

/* ==========================================================================
   产品页：MOQ / HS Code / 装箱量 / 货期 字段
   ========================================================================== */

.product-trade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 8px;
  margin: 8px 0 10px;
  border: 1px solid var(--color-border-light);
}
.trade-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.trade-cell span {
  font-size: 0.65rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.trade-cell strong {
  font-size: 0.78rem;
  color: var(--color-text);
  font-weight: 800;
}

/* Modal: 商业信息卡片 */
.trade-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0;
}
@media (max-width: 540px) {
  .trade-info-grid { grid-template-columns: repeat(2, 1fr); }
}
.trade-info-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  border-radius: 8px;
}
.trade-info-label {
  font-size: 0.7rem;
  color: #9a3412;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.trade-info-value {
  font-size: 1rem;
  color: #9a3412;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.trade-info-sub {
  font-size: 0.7rem;
  color: #c2410c;
  opacity: 0.8;
}

/* Modal photo */
.modal-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

/* Category quick nav */
.cat-nav {
  background: #fff;
  border-bottom: 1px solid var(--color-border-light);
  padding: 24px 0;
}
.cat-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .cat-nav-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all .2s ease;
  background: #fff;
}
.cat-nav-item:hover {
  border-color: var(--color-accent);
  background: rgba(255, 107, 53, 0.04);
  transform: translateY(-2px);
}
.cat-nav-icon { font-size: 1.8rem; }
.cat-nav-item strong {
  display: block;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
}
.cat-nav-item small {
  color: var(--color-text-secondary);
  font-size: 0.82rem;
}

/* Products toolbar */
.products-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.products-toolbar-stats strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text);
}
.products-toolbar-stats span {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-left: 6px;
}
.products-search {
  flex: 1;
  position: relative;
  max-width: 420px;
  margin-left: auto;
}
.products-search input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  background: #fff;
}
.products-search input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}
.products-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-secondary);
}

/* Cross-sell cards */
.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cross-sell-grid { grid-template-columns: 1fr; } }
.cross-sell-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.cross-sell-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.cross-sell-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.cross-sell-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}
.cross-sell-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 14px;
  flex: 1;
}
.cross-sell-card span {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 700;
}

/* ==========================================================================
   Contact 页面（英文版）专用样式
   ========================================================================== */

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .contact-channels { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .contact-channels { grid-template-columns: 1fr; } }

.channel-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
  cursor: pointer;
}
.channel-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}
.channel-whatsapp .channel-icon { background: #25D366; }
.channel-wechat   .channel-icon { background: #07c160; }
.channel-email    .channel-icon { background: #2563eb; }
.channel-skype    .channel-icon { background: #00aff0; }
.channel-phone    .channel-icon { background: #ff6b35; }
.channel-secondary .channel-icon { background: #475569; }

.channel-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px;
}
.channel-primary {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 4px;
  word-break: break-all;
}
.channel-meta {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
  flex: 1;
}
.channel-action {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* Inquiry section */
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .inquiry-grid { grid-template-columns: 1fr; gap: 32px; } }
.inquiry-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--color-text);
}
.inquiry-info > p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 24px;
}
.inquiry-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}
.trust-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}
.inquiry-tips {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(255, 107, 53, 0.05);
  border-left: 3px solid var(--color-accent);
  border-radius: 6px;
}
.inquiry-tips h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
}
.inquiry-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inquiry-tips li {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  padding: 4px 0;
}

/* Form */
.inquiry-form {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.inquiry-form h3 {
  margin: 0 0 24px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  text-align: center;
  margin: 12px 0 0;
}
.form-note a { color: var(--color-accent); text-decoration: none; }

/* Warehouses */
.warehouse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .warehouse-grid { grid-template-columns: 1fr; } }
.warehouse-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 28px 26px;
  border-top: 4px solid var(--color-accent);
}
.warehouse-flag {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.warehouse-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 4px;
}
.warehouse-loc {
  font-size: 0.92rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 12px;
}
.warehouse-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 12px;
}
.warehouse-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.warehouse-card li {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  padding: 3px 0;
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 700;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  margin: 0;
  padding: 0 24px 18px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   Solutions 页面（行业方案）
   ========================================================================== */

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .solution-grid { grid-template-columns: 1fr; } }

.solution-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  transition: all .25s ease;
}
.solution-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.solution-icon {
  font-size: 3rem;
  text-align: center;
  line-height: 1;
}
.solution-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}
.solution-content > p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 14px;
}
.solution-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.solution-brands span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: #f1f5f9;
  padding: 3px 10px;
  border-radius: 4px;
}
.solution-sku {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.solution-sku strong {
  font-size: 0.95rem;
}
.solution-disclaimer {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  font-style: italic;
  text-align: center;
  margin: 32px 0 0;
}

/* Business Models */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .model-grid { grid-template-columns: 1fr; } }
.model-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: all .25s ease;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.model-featured {
  border-color: var(--color-accent);
  border-width: 2px;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
}
.model-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.model-tag {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  letter-spacing: 0;
}
.model-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
}
.model-card > p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 16px;
}
.model-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.model-card li {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  padding: 4px 0;
}

/* Why PERSOLY (solutions) */
.why-persoly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why-persoly-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-persoly-grid { grid-template-columns: 1fr; } }
.why-persoly-card {
  padding: 24px;
}
.why-persoly-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.2;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.why-persoly-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}
.why-persoly-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ==========================================================================
   English Homepage Styles (en/index.html)
   ========================================================================== */

.hero-en {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 60%, #1e4976 100%);
  color: #fff;
  overflow: hidden;
}
.hero-en-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(7, 193, 96, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.hero-en-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-en-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero-en-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.hero-en-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-en-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.hero-en-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
  max-width: 580px;
}
.hero-en-sub strong {
  color: var(--color-accent);
  font-weight: 700;
}
.hero-en-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-en-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}
.badge-item {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-en-card {
  background: #fff;
  color: var(--color-text);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-en-card-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-en-card-head strong {
  font-size: 1rem;
  font-weight: 700;
}
.hero-en-card-sub {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}
.hero-en-card-stats {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-en-card-stats li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border-light);
  font-size: 0.92rem;
}
.hero-en-card-stats li:last-child { border-bottom: 0; }
.hero-en-card-stats span {
  color: var(--color-text-secondary);
}
.hero-en-card-stats strong {
  color: var(--color-text);
  font-weight: 800;
  font-size: 1rem;
}
.hero-en-card-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}
.hero-en-card-foot a {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
}
.hero-en-card-foot a:hover { text-decoration: underline; }

/* Section helpers */
.section-tight { padding: 32px 0; }
.section-title.light h2 { color: #fff; }
.section-title.light p { color: rgba(255, 255, 255, 0.75); }
.bg-dark {
  background: #0a2540;
  color: #fff;
}

.trusted-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin: 0 0 20px;
}
.logo-marquee {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  background: #fff;
}
.logo-marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 60s linear infinite;
  white-space: nowrap;
  align-items: center;
  width: max-content;
}
.logo-marquee-track span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Top bar separator (en version) */
.topbar-sep { color: rgba(255, 255, 255, 0.3); margin: 0 8px; }

/* Product category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all .25s ease;
}
.cat-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.cat-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.cat-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 4px;
}
.cat-card strong {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.cat-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}
.cat-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  transition: all .2s ease;
}
.cat-card:hover .cat-arrow {
  color: var(--color-accent);
  transform: translateX(4px);
}

/* Cross-reference CTA */
.xrf-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2540 0%, #1e4976 100%);
  color: #fff;
}
.xrf-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .xrf-cta-inner { grid-template-columns: 1fr; } }
.xrf-cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 16px 0 16px;
}
.xrf-cta-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
  line-height: 1.6;
}
.xrf-cta-text p strong { color: var(--color-accent); }

.xrf-cta-demo {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.xrf-cta-search {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.xrf-cta-search input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.xrf-cta-search input:focus {
  outline: none;
  border-color: var(--color-accent);
}
.xrf-cta-result {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xrf-cta-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}
.xrf-cta-row span:first-child { color: rgba(255, 255, 255, 0.75); font-family: monospace; }
.xrf-cta-row strong { color: var(--color-accent); font-weight: 800; font-family: monospace; }
.xrf-cta-arrow { color: rgba(255, 255, 255, 0.5); font-size: 1.2rem; }

/* Why PERSOLY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}
.why-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.18;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
}
.why-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Trade assurance */
.trade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .trade-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .trade-grid { grid-template-columns: 1fr; } }
.trade-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 22px;
  transition: all .2s ease;
}
.trade-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.trade-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.trade-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.trade-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 28px 26px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-rating {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #ff6b35 0%, #f04a16 100%);
  color: #fff;
  padding: 64px 0;
}
.cta-band-inner {
  text-align: center;
}
.cta-band-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.cta-band-inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--color-accent);
}

/* Topbar right: active style override for en */
.topbar-right a.active {
  color: #fff;
  font-weight: 700;
}
.topbar-right a:not(.active) {
  color: rgba(255, 255, 255, 0.65);
}
.topbar-right a:not(.active):hover {
  color: #fff;
}

/* ==========================================================================
   PERSOLY 询价车 — 产品卡按钮状态
   ========================================================================== */
.product-add-quote {
  transition: background .18s, color .18s, border-color .18s;
}
.product-add-quote.is-in-cart {
  background: var(--rd-fg, #0a0a0a);
  color: #fff;
  border-color: var(--rd-fg, #0a0a0a);
}
.product-add-quote.is-in-cart:hover {
  background: var(--rd-accent, #ff5722);
  border-color: var(--rd-accent, #ff5722);
}
.product-add-quote.is-added {
  background: var(--rd-accent, #ff5722) !important;
  color: #fff !important;
  border-color: var(--rd-accent, #ff5722) !important;
}

/* ==========================================================================
   产品列表页 — 侧边栏 + 4 列极简卡片（UFI / MANN-FILTER 风格）
   ========================================================================== */

/* === 整体布局 === */
.pl-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .pl-layout { grid-template-columns: 1fr; gap: 24px; }
}

/* === 侧边栏 === */
.pl-side {
  position: sticky; top: 100px;
  border: 1px solid var(--rd-rule);
  background: #fff;
  padding: 20px 18px;
}
.pl-side-block { margin-bottom: 20px; }
.pl-side-block:last-of-type { margin-bottom: 0; }
.pl-side-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rd-fg-muted);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--rd-rule);
}

/* === 极简头部：面包屑 + 标题 + 数量 === */
.pl-bar {
  background: #fff;
  border-bottom: 1px solid var(--rd-rule);
  padding: 24px 0 22px;
}
.pl-crumb { margin-bottom: 16px; }
.pl-bar-row {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 12px;
}
.pl-bar-title {
  font-size: 28px; font-weight: 900; letter-spacing: -0.02em;
  color: var(--rd-fg); margin: 0; line-height: 1.1;
}
.pl-bar-title em {
  font-style: normal; color: var(--rd-fg-muted);
  font-size: 18px; font-weight: 500; margin-left: 6px;
  letter-spacing: 0;
}
.pl-bar-count {
  font-size: 12px; color: var(--rd-fg-muted);
  letter-spacing: 0.06em;
}
.pl-bar-count strong {
  font-family: 'Inter', monospace; font-weight: 800;
  color: var(--rd-fg); font-size: 16px; margin-right: 2px;
}

/* === excofilter 风格：左侧分类导航 + 右侧横向卡片列表 === */
.pl-page {
  background: #fff;
  padding: 32px 0 60px;
}
.pl-layout-2col {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .pl-layout-2col { grid-template-columns: 1fr; gap: 24px; }
}

/* 左侧分类导航（蓝色链接） */
.pl-nav-side {
  position: sticky; top: 100px;
  border-top: 1px solid var(--rd-fg);
}
.pl-nav-list {
  list-style: none; margin: 0; padding: 0;
  border-bottom: 1px solid var(--rd-fg);
}
.pl-nav-list li { border-bottom: 1px solid var(--rd-rule); }
.pl-nav-list li:last-child { border-bottom: 0; }
.pl-nav-link {
  display: block; padding: 14px 4px;
  color: var(--rd-fg); text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .15s, padding-left .15s;
  position: relative;
}
.pl-nav-link:hover {
  color: var(--rd-accent);
  padding-left: 12px;
}
.pl-nav-link:hover::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 4px; height: 4px; background: var(--rd-accent);
  transform: translateY(-50%);
}
.pl-nav-link.active {
  color: var(--rd-fg); font-weight: 800;
}
.pl-nav-link.active::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 0; height: 0;
  border-left: 5px solid var(--rd-accent);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: translateY(-50%);
}

.pl-nav-tip {
  margin-top: 24px; padding: 14px 12px;
  background: #fafafa; border-left: 2px solid var(--rd-accent);
  font-size: 11px; color: var(--rd-fg-muted); line-height: 1.8;
  letter-spacing: 0.04em;
}
.pl-nav-tip strong { color: var(--rd-fg); font-weight: 800; }

/* 右侧：横向卡片列表 */
.pl-list-wrap { min-width: 0; }

.pl-list-toolbar {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--rd-rule);
}
.pl-list-search {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--rd-rule);
  padding: 0 8px;
  flex: 1; min-width: 220px; max-width: 380px;
}
.pl-list-search svg { color: var(--rd-fg-muted); flex-shrink: 0; }
.pl-list-search input {
  flex: 1; border: 0; padding: 8px 8px;
  font-size: 13px; outline: none; background: transparent;
  color: var(--rd-fg); font-family: inherit;
}
.pl-list-search input::placeholder { color: #aaa; }
.pl-list-search #clearSearch {
  width: 24px; height: 28px; background: transparent; border: 0;
  cursor: pointer; color: var(--rd-fg-muted);
  font-size: 16px; line-height: 1;
}
.pl-list-search:focus-within { border-color: var(--rd-fg); }

.pl-list-meta {
  font-size: 13px; color: var(--rd-fg-muted);
}
.pl-list-meta strong {
  font-family: 'Inter', monospace; font-weight: 800;
  font-size: 16px; color: var(--rd-fg); margin-right: 4px;
  letter-spacing: -0.02em;
}
.pl-list-meta .pl-resultbar-cat { color: var(--rd-accent); font-weight: 600; }

.pl-list-sort { margin-left: auto; }
.pl-select {
  border: 1px solid var(--rd-rule);
  background: #fff; padding: 8px 30px 8px 12px;
  font-size: 12px; font-family: inherit;
  color: var(--rd-fg); font-weight: 600;
  cursor: pointer; outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 8px center;
  background-size: 14px;
}
.pl-select:focus { border-color: var(--rd-fg); }

/* === 横向卡片列表（excofilter 风格） === */
.pl-list {
  display: flex; flex-direction: column;
  gap: 6px;
}
/* --- 紧凑型：列表只显示型号，点击进详情才看图 --- */
.pl-list-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--rd-rule);
  transition: border-color .15s, box-shadow .15s, transform .15s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.pl-list-row:hover {
  border-color: var(--rd-fg);
  box-shadow: 0 6px 20px rgba(10,10,10,0.06);
}
.pl-list-row--compact {
  grid-template-columns: 88px 1fr 96px;
  gap: 14px;
  padding: 10px 14px;
}
.pl-list-thumb {
  display: flex; align-items: center; justify-content: center;
  width: 120px; height: 120px;
  background: #fafafa;
  border: 1px solid var(--rd-rule);
  overflow: hidden;
}
.pl-list-thumb img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.pl-list-thumb svg { max-width: 90%; max-height: 90%; }
.pl-list-info { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pl-list-sku {
  display: block;
  font-family: 'Inter', monospace;
  font-size: 22px; font-weight: 800;
  color: var(--rd-fg); text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.pl-list-sku:hover { color: var(--rd-accent); }
.pl-list-sku-sub {
  font-size: 11px; color: var(--rd-fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.pl-list-desc {
  font-size: 13px; color: var(--rd-fg-muted);
  line-height: 1.6; margin-bottom: 10px;
}
.pl-list-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 11px; color: var(--rd-fg-muted);
  letter-spacing: 0.06em;
}
.pl-list-meta span { display: inline-block; }
.pl-list-tag {
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  min-width: 88px; min-height: 56px;
  padding: 8px 10px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  background: var(--rd-fg); color: #fff;
  border: 1px solid var(--rd-fg);
  text-transform: uppercase;
}
.pl-list-tag--air     { background: #1f2937; border-color: #1f2937; }
.pl-list-tag--fuel    { background: #b91c1c; border-color: #b91c1c; }
.pl-list-tag--oil     { background: #c2410c; border-color: #c2410c; }
.pl-list-tag--other   { background: #6b7280; border-color: #6b7280; }
.pl-list-tag-cn {
  display: inline-block; white-space: nowrap;
  font-family: 'Inter', 'PingFang SC', sans-serif;
}
.pl-list-cat {
  font-weight: 700; color: var(--rd-fg);
  padding: 2px 8px; background: #fafafa;
  border: 1px solid var(--rd-rule);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pl-list-dim {
  font-family: 'Inter', monospace;
}
.pl-list-trade {
  font-family: 'Inter', monospace;
}
.pl-list-add {
  background: var(--rd-fg); color: #fff;
  border: 0; padding: 12px 20px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .15s;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  height: 100%;
}
.pl-list-add:hover { background: var(--rd-accent); }
.pl-list-add.added {
  background: #fff; color: var(--rd-fg);
  border: 1px solid var(--rd-fg);
}
.pl-list-add-plus {
  font-size: 14px; line-height: 1;
}
.pl-list-add-text {
  font-size: 12px;
}
@media (max-width: 720px) {
  .pl-list-row {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }
  .pl-list-row--compact {
    grid-template-columns: 64px 1fr 72px;
    padding: 8px 10px;
  }
  .pl-list-thumb { width: 80px; height: 80px; }
  .pl-list-tag { min-width: 64px; min-height: 44px; font-size: 10px; }
  .pl-list-sku { font-size: 16px; margin-bottom: 2px; }
  .pl-list-add { grid-column: 1 / -1; padding: 10px; }
}

/* 分页 */
.pl-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 32px;
  padding-top: 20px; border-top: 1px solid var(--rd-rule);
}
.pl-page-btn {
  background: transparent; border: 1px solid var(--rd-rule);
  padding: 8px 16px; font-size: 12px;
  color: var(--rd-fg); font-family: inherit;
  cursor: pointer; letter-spacing: 0.04em;
  transition: all .15s;
}
.pl-page-btn:hover:not(:disabled) { border-color: var(--rd-fg); background: var(--rd-fg); color: #fff; }
.pl-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pl-page-info {
  font-size: 12px; color: var(--rd-fg-muted);
}
.pl-page-info strong { color: var(--rd-fg); font-family: 'Inter', monospace; }

/* 空状态 */
.pl-empty {
  text-align: center; padding: 80px 20px;
  color: var(--rd-fg-muted);
}
.pl-empty svg { color: var(--rd-fg-muted); }
.pl-empty h3 {
  font-size: 18px; color: var(--rd-fg); font-weight: 700;
  margin: 16px 0 8px;
}
.pl-empty p { font-size: 13px; margin: 0 0 20px; }
.pl-empty-btn {
  background: var(--rd-fg); color: #fff;
  border: 0; padding: 10px 24px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; cursor: pointer;
  font-family: inherit;
}
.pl-empty-btn:hover { background: var(--rd-accent); }

/* 隐藏旧样式 */
.pl-side, .pl-layout, .pl-grid, .pl-card,
.pl-cat-rows, .pl-cat-row, .pl-cat-index,
.pl-prod-section, .pl-toolbar, .pl-cat-list { display: none; }

/* 搜索框 */
.pl-search-input {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--rd-rule);
}
.pl-search-input svg { margin: 0 8px; color: var(--rd-fg-muted); flex-shrink: 0; }
.pl-search-input input {
  flex: 1; border: 0; padding: 10px 0; font-size: 13px;
  outline: none; background: transparent; font-family: inherit;
  color: var(--rd-fg);
}
.pl-search-input input::placeholder { color: var(--rd-fg-muted); }
.pl-search-input #clearSearch {
  width: 28px; height: 32px; background: transparent; border: 0; cursor: pointer;
  color: var(--rd-fg-muted); font-size: 18px; line-height: 1;
}
.pl-search-input #clearSearch:hover { color: var(--rd-fg); }
.pl-search-input:focus-within { border-color: var(--rd-fg); }

/* 搜索模式 chips */
.pl-search-modes {
  display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px;
}
.pl-mode {
  background: transparent; border: 1px solid var(--rd-rule);
  padding: 4px 10px; font-size: 11px; cursor: pointer;
  color: var(--rd-fg-muted); font-family: inherit;
  letter-spacing: 0.04em;
  transition: all .15s;
}
.pl-mode:hover { color: var(--rd-fg); border-color: var(--rd-fg-muted); }
.pl-mode.active {
  background: var(--rd-fg); color: #fff; border-color: var(--rd-fg);
}

/* 分类 / 排序 list */
.pl-cat-list { list-style: none; margin: 0; padding: 0; }
.pl-cat-list li { border-bottom: 1px solid var(--rd-rule); }
.pl-cat-list li:last-child { border-bottom: 0; }
.pl-cat, .pl-sort {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: transparent; border: 0; cursor: pointer;
  padding: 10px 0; font-size: 13px; color: var(--rd-fg);
  font-family: inherit; text-align: left; transition: color .15s;
}
.pl-cat:hover, .pl-sort:hover { color: var(--rd-accent); }
.pl-cat.active, .pl-sort.active { color: var(--rd-fg); font-weight: 700; }
.pl-cat.active::before, .pl-sort.active::before {
  content: ''; display: inline-block;
  width: 8px; height: 2px; background: var(--rd-accent);
  margin-right: 8px;
}
.pl-cat em {
  font-style: normal; font-family: 'Inter', monospace;
  font-size: 11px; color: var(--rd-fg-muted); font-weight: 400;
}
.pl-cat.active em { color: var(--rd-fg); }

/* 提示块 */
.pl-side-tip {
  margin-top: 24px; padding: 14px;
  background: #fafafa; border-left: 2px solid var(--rd-accent);
  font-size: 12px; color: var(--rd-fg-muted); line-height: 1.7;
}
.pl-side-tip strong { color: var(--rd-fg); font-weight: 800; }

/* === 右侧主区 === */
.pl-main { min-width: 0; }

.pl-resultbar {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; margin-bottom: 24px;
  border-bottom: 2px solid var(--rd-fg);
}
.pl-resultbar-l { font-size: 13px; color: var(--rd-fg-muted); letter-spacing: 0.06em; }
.pl-resultbar-l strong {
  font-family: 'Inter', monospace; font-weight: 800;
  font-size: 18px; color: var(--rd-fg); margin-right: 4px;
  letter-spacing: -0.02em;
}
.pl-resultbar-r { display: flex; gap: 4px; }
.pl-view-btn {
  width: 32px; height: 32px;
  background: transparent; border: 1px solid var(--rd-rule);
  cursor: pointer; color: var(--rd-fg-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.pl-view-btn:hover { color: var(--rd-fg); border-color: var(--rd-fg); }
.pl-view-btn.active { color: var(--rd-fg); border-color: var(--rd-fg); background: #fafafa; }

/* === 4 列卡片网格 === */
.pl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rd-rule);
  border-left: 1px solid var(--rd-rule);
}
@media (max-width: 1080px) { .pl-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .pl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .pl-grid { grid-template-columns: 1fr; } }

/* 列表视图 */
.pl-grid.is-list { grid-template-columns: 1fr; }
.pl-grid.is-list .pl-card-thumb { aspect-ratio: 16 / 7; }

.pl-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border-right: 1px solid var(--rd-rule);
  border-bottom: 1px solid var(--rd-rule);
  transition: background .18s;
}
.pl-card:hover { background: #fafafa; }

/* 缩略图 — 工业风 fallback */
.pl-card-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse at 50% 45%, #fff 0%, #f5f5f3 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--rd-rule);
}
.pl-card-thumb img {
  width: 100%; height: 100%; object-fit: contain; padding: 8%;
  position: relative; z-index: 2;
}
.pl-card-thumb svg.bp {
  width: 70%; height: 70%;
  position: relative; z-index: 2;
}
.pl-card-thumb svg.bp .bp-line {
  stroke: #1a3a5a; stroke-width: 1.2; fill: none;
}
.pl-card-thumb svg.bp .bp-dim {
  stroke: #ff5722; stroke-width: 1; fill: none;
}
.pl-card-thumb svg.bp .bp-label {
  fill: #6b6b6b; font-family: 'Inter', monospace;
  font-size: 9px; letter-spacing: 0.12em;
}
.pl-card-thumb .pl-card-stamp {
  position: absolute; top: 8px; left: 8px;
  font-family: 'Inter', monospace; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rd-fg-muted);
  background: rgba(255,255,255,0.85);
  padding: 3px 6px; z-index: 5;
}
.pl-card-thumb .pl-card-badge {
  position: absolute; top: 8px; right: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rd-fg);
  padding: 3px 6px; border: 1px solid var(--rd-rule);
  background: #fff; z-index: 5;
  font-family: 'Inter', monospace;
}
.pl-card-thumb .pl-card-badge.cat-fuel { color: #c2410c; border-color: rgba(194,65,12,0.3); background: rgba(255,247,237,0.92); }
.pl-card-thumb .pl-card-badge.cat-oil  { color: #1e40af; border-color: rgba(30,64,175,0.3); background: rgba(239,246,255,0.92); }
.pl-card-thumb .pl-card-badge.cat-air  { color: #166534; border-color: rgba(22,101,52,0.3); background: rgba(240,253,244,0.92); }
.pl-card-thumb .pl-card-badge.cat-other { color: #4a4a4a; border-color: var(--rd-rule); background: #fafafa; }

/* 卡片底部信息 */
.pl-card-body { padding: 14px 14px 0; flex: 1; }
.pl-card-cat {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rd-fg-muted);
}
.pl-card-sku {
  font-family: 'Inter', monospace; font-size: 15px; font-weight: 800;
  color: var(--rd-fg); margin: 6px 0 0; letter-spacing: -0.01em;
}
.pl-card-dim {
  font-size: 11px; color: var(--rd-fg-muted);
  font-family: 'Inter', monospace;
  margin-top: 4px;
}

/* 底部动作 */
.pl-card-foot {
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.pl-add {
  width: 100%; padding: 10px 12px;
  background: transparent; color: var(--rd-fg);
  border: 1px solid var(--rd-fg);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; cursor: pointer;
  font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all .15s;
}
.pl-add:hover { background: var(--rd-fg); color: #fff; }
.pl-add.is-in-cart {
  background: var(--rd-fg); color: #fff;
}
.pl-add.is-in-cart:hover { background: var(--rd-accent); border-color: var(--rd-accent); }
.pl-add.is-added { background: var(--rd-accent); border-color: var(--rd-accent); color: #fff; }
.pl-add svg { width: 12px; height: 12px; }

.pl-card-meta {
  font-size: 10px; color: var(--rd-fg-muted);
  letter-spacing: 0.06em; text-align: center;
  font-family: 'Inter', monospace;
}
.pl-card-meta strong { color: var(--rd-fg); font-weight: 700; }

/* === Loading === */
.pl-loading {
  grid-column: 1 / -1; padding: 80px 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--rd-fg-muted);
}
.spinner {
  width: 28px; height: 28px;
  border: 2px solid var(--rd-rule); border-top-color: var(--rd-fg);
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === 分页 === */
.pl-pagination {
  display: flex; justify-content: center; align-items: center; gap: 24px;
  margin-top: 32px; padding: 24px 0;
  border-top: 1px solid var(--rd-rule);
}
.pl-page-btn {
  background: transparent; border: 1px solid var(--rd-rule);
  padding: 10px 20px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; color: var(--rd-fg); font-family: inherit;
  transition: all .15s;
}
.pl-page-btn:hover:not(:disabled) { background: var(--rd-fg); color: #fff; }
.pl-page-btn:disabled { opacity: .35; cursor: not-allowed; }
.pl-page-info { font-size: 12px; color: var(--rd-fg-muted); letter-spacing: 0.08em; }
.pl-page-info strong {
  font-family: 'Inter', monospace; font-weight: 800;
  color: var(--rd-fg); margin: 0 2px;
}

/* === 空状态 === */
.pl-empty {
  padding: 80px 32px; text-align: center;
  border: 1px solid var(--rd-rule);
  background: #fafafa;
}
.pl-empty svg { color: var(--rd-fg-muted); margin-bottom: 12px; }
.pl-empty h3 { font-size: 18px; margin: 0 0 6px; color: var(--rd-fg); }
.pl-empty p { font-size: 13px; color: var(--rd-fg-muted); margin: 0 0 20px; }
.pl-empty-btn {
  background: var(--rd-fg); color: #fff; border: 0;
  padding: 12px 24px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; font-family: inherit;
}
.pl-empty-btn:hover { background: var(--rd-accent); }

/* === 列表视图下的卡片（横向布局） === */
.pl-grid.is-list .pl-card {
  flex-direction: row; align-items: stretch;
}
.pl-grid.is-list .pl-card-thumb { aspect-ratio: auto; width: 200px; flex-shrink: 0; }
.pl-grid.is-list .pl-card-body { padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; }
.pl-grid.is-list .pl-card-sku { font-size: 18px; }
.pl-grid.is-list .pl-card-dim { font-size: 12px; margin-top: 6px; }
.pl-grid.is-list .pl-card-foot { width: 240px; padding: 18px 20px; justify-content: center; }

/* ==========================================================================
   OEM 交叉检索页 — 搜索 hero + 快速 chips
   ========================================================================== */

.xrf-hero {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(255,87,34,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(74,144,255,0.05) 0%, transparent 50%),
    #fafafa;
  border-bottom: 1px solid var(--rd-rule);
  padding: 32px 0 48px;
}
.xrf-crumb { margin-bottom: 20px; }
.xrf-hero-title {
  font-size: 36px; font-weight: 900; letter-spacing: -0.02em;
  color: var(--rd-fg); margin: 0 0 8px; line-height: 1.15;
  max-width: 800px;
}
.xrf-hero-title em { font-style: normal; color: var(--rd-accent); }
.xrf-hero-sub {
  font-size: 13px; color: var(--rd-fg-muted);
  margin: 0 0 32px; letter-spacing: 0.04em;
  max-width: 720px;
}
.xrf-hero-sub strong { color: var(--rd-fg); font-weight: 700; }

/* 搜索框 — 大、宽、突出 */
.xrf-search-form { margin: 0 0 24px; }
.xrf-search-input-wrap {
  display: flex; align-items: center;
  background: #fff;
  border: 2px solid var(--rd-fg);
  transition: border-color .15s, box-shadow .15s;
  max-width: 900px;
}
.xrf-search-input-wrap:focus-within {
  border-color: var(--rd-accent);
  box-shadow: 0 0 0 4px rgba(255,87,34,0.1);
}
.xrf-search-icon { margin: 0 16px; color: var(--rd-fg-muted); flex-shrink: 0; }
.xrf-search-input-wrap input {
  flex: 1; border: 0; padding: 20px 0; font-size: 18px;
  outline: none; background: transparent;
  font-family: 'Inter', system-ui, monospace; color: var(--rd-fg);
  font-weight: 500; letter-spacing: 0.02em;
}
.xrf-search-input-wrap input::placeholder { color: #aaa; font-weight: 400; }
.xrf-search-clear {
  width: 36px; height: 36px; background: transparent; border: 0;
  cursor: pointer; color: var(--rd-fg-muted);
  font-size: 22px; line-height: 1; margin-right: 4px;
}
.xrf-search-clear:hover { color: var(--rd-fg); }
.xrf-search-submit {
  background: var(--rd-fg); color: #fff; border: 0;
  padding: 0 32px; height: 64px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer;
  font-family: inherit;
  display: flex; align-items: center; gap: 10px;
  transition: background .15s;
  flex-shrink: 0;
}
.xrf-search-submit:hover { background: var(--rd-accent); }
.xrf-search-submit svg { width: 16px; height: 16px; }

/* 快速 chips */
.xrf-quick {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  margin-bottom: 32px; max-width: 900px;
}
.xrf-quick-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rd-fg-muted);
}
.xrf-quick-divider {
  width: 1px; height: 16px; background: var(--rd-rule);
  margin: 0 8px;
}
.xrf-quick-chip {
  background: transparent; border: 1px solid var(--rd-rule);
  padding: 5px 12px; font-size: 12px; cursor: pointer;
  color: var(--rd-fg); font-family: 'Inter', monospace;
  font-weight: 500; letter-spacing: 0.02em;
  transition: all .15s;
}
.xrf-quick-chip:hover {
  background: var(--rd-fg); color: #fff;
  border-color: var(--rd-fg);
}

/* 紧凑 stats */
.xrf-stats-mini {
  display: flex; gap: 48px;
  padding-top: 20px; border-top: 1px solid var(--rd-rule);
  max-width: 900px;
}
.xrf-stats-mini > div {
  display: flex; align-items: baseline; gap: 8px;
}
.xrf-stats-mini strong {
  font-family: 'Inter', monospace; font-size: 22px;
  font-weight: 800; color: var(--rd-fg); letter-spacing: -0.02em;
}
.xrf-stats-mini span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rd-fg-muted);
}

.xrf-hero .xrf-crumb,
.xrf-hero .xrf-crumb a,
.xrf-hero .xrf-crumb span {
  color: var(--rd-fg-muted) !important;
}

.xrf-hero .xrf-hero-title,
.xrf-hero .xrf-hero-title * {
  color: var(--rd-fg) !important;
  text-shadow: none !important;
}

.xrf-hero .xrf-hero-title em {
  color: var(--rd-accent) !important;
}

.xrf-hero .xrf-hero-sub,
.xrf-hero .xrf-quick-label,
.xrf-hero .xrf-stats-mini span {
  color: var(--rd-fg-muted) !important;
}

.xrf-hero .xrf-stats-mini strong,
.xrf-hero .xrf-stats-mini b {
  color: var(--rd-fg) !important;
  text-shadow: none !important;
}

@media (max-width: 720px) {
  .xrf-hero-title { font-size: 24px; }
  .xrf-search-input-wrap input { font-size: 14px; padding: 16px 0; }
  .xrf-search-submit { height: 56px; padding: 0 20px; }
  .xrf-stats-mini { gap: 24px; flex-wrap: wrap; }
}

/* ============ 4 分类大图卡 (UFI 风格) ============ */
.rd-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.rd-cat-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--rd-rule);
  text-decoration: none; color: inherit; cursor: pointer;
  overflow: hidden;
  transition: border-color .15s, box-shadow .2s, transform .2s;
  position: relative;
}
.rd-cat-card:hover {
  border-color: var(--rd-fg);
  box-shadow: 0 14px 36px rgba(10,10,10,.10);
  transform: translateY(-4px);
}
.rd-cat-card::before {
  /* 顶部细色条 — 表分类 */
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--cat-color, var(--rd-fg));
  transition: height .15s;
}
.rd-cat-card:hover::before { height: 6px; }

.rd-cat-card--fuel   { --cat-color: #b91c1c; }
.rd-cat-card--oil    { --cat-color: #c2410c; }
.rd-cat-card--air    { --cat-color: #1f2937; }
.rd-cat-card--other  { --cat-color: #6b7280; }

.rd-cat-img {
  width: 100%; aspect-ratio: 4 / 3;
  background: #fff; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.rd-cat-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .35s ease;
}
.rd-cat-card:hover .rd-cat-img img { transform: scale(1.05); }

.rd-cat-info {
  padding: 22px 20px 24px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.rd-cat-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cat-color, var(--rd-fg));
  font-family: 'Inter', monospace;
}
.rd-cat-title {
  font-size: 22px; font-weight: 800; color: var(--rd-fg);
  line-height: 1.15;
}
.rd-cat-title em {
  font-style: normal; color: var(--cat-color, var(--rd-fg));
}
.rd-cat-desc {
  font-size: 13px; color: var(--rd-fg-muted);
  line-height: 1.6;
  flex: 1;
}
.rd-cat-more {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rd-fg); margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--rd-rule);
}
.rd-cat-more span {
  font-size: 14px; transition: transform .15s;
}
.rd-cat-card:hover .rd-cat-more { color: var(--cat-color, var(--rd-fg)); }
.rd-cat-card:hover .rd-cat-more span { transform: translateX(4px); }

@media (max-width: 1100px) { .rd-cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .rd-cats-grid { grid-template-columns: 1fr; } .rd-cat-title { font-size: 20px; } }

/* ============ Hero Banner (轮播) ============ */
.rd-hero-banner {
  position: relative;
  width: 100%;
  height: clamp(360px, 55vh, 620px);
  overflow: hidden;
  background: #0a0a0a;
}
.rd-hero-slides { position: relative; width: 100%; height: 100%; }
.rd-hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 800ms ease;
  pointer-events: none;
}
.rd-hero-slide.is-active { opacity: 1; pointer-events: auto; }
.rd-hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.15) 100%);
}
.rd-hero-content {
  position: relative; z-index: 2;
  max-width: var(--container-max, 1280px);
  width: 100%; margin: 0 auto;
  padding: 0 32px;
  color: #fff;
}
.rd-hero-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 14px;
  background: var(--rd-accent, #c2410c);
  margin-bottom: 24px;
}
.rd-hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900; line-height: 1.05;
  margin: 0 0 20px; max-width: 720px;
  letter-spacing: -0.02em;
}
.rd-hero-subtitle {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.5; color: rgba(255,255,255,0.85);
  margin: 0 0 32px; max-width: 560px;
}
.rd-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.rd-hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border: 0; cursor: pointer;
  transition: all .15s;
}
.rd-hero-btn--primary { background: #fff; color: #0a0a0a; }
.rd-hero-btn--primary:hover { background: var(--rd-accent, #c2410c); color: #fff; }
.rd-hero-btn--ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.rd-hero-btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.rd-hero-dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 8px;
}
.rd-hero-dot {
  width: 28px; height: 4px;
  background: rgba(255,255,255,0.3);
  border: 0; padding: 0; cursor: pointer;
  transition: background .2s;
}
.rd-hero-dot.is-active { background: #fff; }

.rd-hero-arrows {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.rd-hero-arrow {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto;
  transition: background .2s;
}
.rd-hero-arrow:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 600px) {
  .rd-hero-banner { height: 480px; }
  .rd-hero-content { padding: 0 20px; }
  .rd-hero-arrows { display: none; }
}

/* ============ SEO 大段描述 + 2 列大产品卡 ============ */
.rd-seo-section { background: #fff; }
.rd-seo-prose {
  max-width: 880px; margin: 0 auto 56px;
  text-align: center;
  color: #2a2a2a; line-height: 1.8;
  font-size: 16px;
}
.rd-seo-prose h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800; margin: 0 0 20px;
  letter-spacing: -0.01em;
  color: var(--rd-fg, #0a0a0a);
}
.rd-seo-prose h3 em { font-style: normal; color: var(--rd-accent, #c2410c); }
.rd-seo-prose p { margin: 0 0 16px; color: var(--rd-fg-muted, #6b7280); }
.rd-seo-prose strong { color: var(--rd-fg, #0a0a0a); }

.rd-products2-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.rd-prod2-card {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 24px; align-items: stretch;
  padding: 28px; background: #fafafa;
  border: 1px solid var(--rd-rule, #e5e7eb);
  text-decoration: none; color: inherit;
  transition: border-color .15s, box-shadow .2s, transform .2s;
}
.rd-prod2-card:hover {
  border-color: var(--rd-fg, #0a0a0a);
  box-shadow: 0 8px 24px rgba(10,10,10,0.08);
  transform: translateY(-2px);
}
.rd-prod2-img {
  width: 200px; height: 100%; min-height: 180px;
  background: #fff; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.rd-prod2-img img { width: 100%; height: 100%; object-fit: cover; }
.rd-prod2-info { display: flex; flex-direction: column; gap: 8px; }
.rd-prod2-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rd-accent, #c2410c);
}
.rd-prod2-title {
  font-size: 22px; font-weight: 800; line-height: 1.2;
  color: var(--rd-fg, #0a0a0a); margin: 0;
}
.rd-prod2-desc {
  font-size: 14px; line-height: 1.6;
  color: var(--rd-fg-muted, #6b7280);
}
.rd-prod2-link {
  margin-top: auto;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rd-fg, #0a0a0a);
  display: inline-flex; align-items: center; gap: 6px;
  padding-top: 8px;
}
.rd-prod2-link::after {
  content: '→'; transition: transform .15s;
}
.rd-prod2-card:hover .rd-prod2-link::after { transform: translateX(4px); }
.rd-prod2-card:hover .rd-prod2-link { color: var(--rd-accent, #c2410c); }

@media (max-width: 800px) {
  .rd-products2-grid { grid-template-columns: 1fr; }
  .rd-prod2-card { grid-template-columns: 1fr; }
  .rd-prod2-img { width: 100%; height: 200px; }
}

/* ============ 内联询价表单 ============ */
.rd-form-section {
  background: #fafafa;
  padding: 80px 0;
}
.rd-form-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: stretch;
  max-width: 1100px; margin: 0 auto;
}
.rd-form-info { display: flex; flex-direction: column; gap: 24px; }
.rd-form-info h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900; line-height: 1.1;
  margin: 0; letter-spacing: -0.02em;
  color: var(--rd-fg, #0a0a0a);
}
.rd-form-info h2 em { font-style: normal; color: var(--rd-accent, #c2410c); }
.rd-form-info p {
  margin: 0; color: var(--rd-fg-muted, #6b7280);
  font-size: 16px; line-height: 1.7;
}
.rd-form-info ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.rd-form-info li { display: flex; gap: 10px; font-size: 14px; color: var(--rd-fg, #0a0a0a); }
.rd-form-info li::before { content: '✓'; color: var(--rd-accent, #c2410c); font-weight: 800; }

.rd-form-card {
  background: #fff; padding: 32px;
  border: 1px solid var(--rd-rule, #e5e7eb);
  display: flex; flex-direction: column; gap: 16px;
}
.rd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rd-form-field { display: flex; flex-direction: column; gap: 6px; }
.rd-form-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rd-fg, #0a0a0a);
}
.rd-form-input, .rd-form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px; font-family: inherit;
  background: #fafafa;
  border: 1px solid var(--rd-rule, #e5e7eb);
  color: var(--rd-fg, #0a0a0a);
  transition: border-color .15s, background .15s;
}
.rd-form-input:focus, .rd-form-textarea:focus {
  outline: 0; border-color: var(--rd-fg, #0a0a0a);
  background: #fff;
}
.rd-form-textarea { min-height: 120px; resize: vertical; }
.rd-form-submit {
  margin-top: 8px;
  padding: 14px 32px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--rd-fg, #0a0a0a); color: #fff;
  border: 0; cursor: pointer;
  transition: background .15s;
}
.rd-form-submit:hover { background: var(--rd-accent, #c2410c); }
.rd-form-msg {
  font-size: 13px; padding: 10px 14px;
  background: #ecfdf5; color: #065f46;
  border-left: 3px solid #10b981;
  display: none;
}
.rd-form-msg.is-show { display: block; }

@media (max-width: 800px) {
  .rd-form-wrap { grid-template-columns: 1fr; gap: 24px; }
  .rd-form-row { grid-template-columns: 1fr; }
}

/* ============ 暗背景 News ============ */
.rd-news-section {
  background: #0a0a0a; color: #fff;
  padding: 80px 0;
}
.rd-news-section .rd-sec-eyebrow { color: var(--rd-accent, #c2410c); }
.rd-news-section .rd-sec-h2 { color: #fff; }
.rd-news-section .rd-sec-h2 em { color: var(--rd-accent, #c2410c); }
.rd-news-section .rd-sec-sub { color: rgba(255,255,255,0.7); }
.rd-news-section .rd-sec-rule { background: var(--rd-accent, #c2410c); }
.rd-news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.rd-news-card {
  display: block; background: #1a1a1a;
  text-decoration: none; color: #fff;
  border: 1px solid #2a2a2a;
  overflow: hidden;
  transition: border-color .15s, transform .15s;
}
.rd-news-card:hover { border-color: var(--rd-accent, #c2410c); transform: translateY(-4px); }
.rd-news-cover {
  width: 100%; aspect-ratio: 16/9;
  background: #2a2a2a center/cover; position: relative;
}
.rd-news-cover-tag {
  position: absolute; top: 16px; left: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--rd-accent, #c2410c); color: #fff;
  padding: 5px 10px;
}
.rd-news-body { padding: 24px; }
.rd-news-date {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 10px;
}
.rd-news-title {
  font-size: 18px; font-weight: 700; line-height: 1.3;
  margin: 0 0 12px;
}
.rd-news-excerpt {
  font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.7);
  margin: 0 0 16px;
}
.rd-news-link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rd-accent, #c2410c);
}
.rd-news-link::after { content: ' →'; }
@media (max-width: 900px) { .rd-news-grid { grid-template-columns: 1fr; } }

/* ============ About 图标三联 ============ */
.rd-tri-section { background: #fafafa; }
.rd-tri-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 40px;
}
.rd-tri-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--rd-rule, #e5e7eb);
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.rd-tri-card:hover {
  border-color: var(--rd-fg, #0a0a0a);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(10,10,10,0.08);
}
.rd-tri-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--rd-fg, #0a0a0a); color: #fff;
  border-radius: 50%;
}
.rd-tri-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 2; }
.rd-tri-title {
  font-size: 18px; font-weight: 800; margin: 0 0 12px;
  color: var(--rd-fg, #0a0a0a);
}
.rd-tri-desc {
  font-size: 14px; line-height: 1.7;
  color: var(--rd-fg-muted, #6b7280); margin: 0;
}
@media (max-width: 800px) { .rd-tri-grid { grid-template-columns: 1fr; } }


/* ========= Sticky Nav ========= */
.header-redesign {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.topbar-redesign { position: sticky; top: 0; z-index: 100; }

/* ========= Cinema Hero Title ========= */
.rd-hero-title-cinema {
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
  letter-spacing: -0.03em;
  font-weight: 950;
}
.rd-hero-title-cinema em {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #f5d493 50%, #c2410c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.rd-hero-slide.is-active::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(194,65,12,0.25) 0%, transparent 50%),
    radial-gradient(circle at 95% 20%, rgba(255,180,80,0.4) 0%, transparent 35%);
}

/* ========= Brand Wall ========= */
.rd-brand-wall {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff; padding: 64px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rd-bw-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; text-align: center; }
.rd-bw-eyebrow {
  font-size: 11px; letter-spacing: 0.3em; font-weight: 700;
  color: #c2410c; text-transform: uppercase; margin: 0 0 14px;
}
.rd-bw-h {
  font-size: clamp(24px,3vw,36px); font-weight: 800;
  letter-spacing: 0.05em; margin: 0 0 8px; color: #fff;
}
.rd-bw-sub {
  font-size: 13px; color: rgba(255,255,255,0.5);
  font-style: italic; margin: 0 0 40px;
}
.rd-bw-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 24px; margin-bottom: 36px;
}
.rd-bw-card {
  padding: 24px 16px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  transition: all 0.25s ease; cursor: default;
}
.rd-bw-card:hover {
  border-color: rgba(194,65,12,0.6);
  background: rgba(194,65,12,0.08); transform: translateY(-3px);
}
.rd-bw-mark {
  width: 48px; height: 48px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  font-family: 'Arial Black', sans-serif;
  border: 2px solid currentColor; color: #fff;
}
.rd-bw-mark-fuel { color: #f59e0b; }
.rd-bw-mark-oil  { color: #c2410c; }
.rd-bw-mark-air  { color: #06b6d4; }
.rd-bw-mark-cab  { color: #10b981; }
.rd-bw-mark-hyd  { color: #8b5cf6; }
.rd-bw-mark-ind  { color: #ec4899; }
.rd-bw-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 4px;
}
.rd-bw-meta { font-size: 11px; color: rgba(255,255,255,0.5); }
.rd-bw-foot { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }
.rd-bw-link {
  color: #c2410c; text-decoration: none; font-weight: 700;
  margin-left: 8px; border-bottom: 1px solid rgba(194,65,12,0.4);
  padding-bottom: 2px; transition: all 0.2s;
}
.rd-bw-link:hover { color: #fff; border-bottom-color: #fff; }
@media (max-width: 980px) { .rd-bw-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) {
  .rd-bw-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .rd-brand-wall { padding: 40px 0 36px; }
}


/* ========= Cinema Mode: hero is full-bleed poster ========= */
.rd-hero-minimal {
  position: absolute;
  bottom: 140px;
  left: 60px;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.95);
  margin: 0;
  z-index: 4;
}
.rd-hero-min {
  position: absolute;
  bottom: 100px;
  left: 60px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 2px 8px rgba(0,0,0,0.85);
  margin: 0;
  z-index: 4;
  max-width: 600px;
}
.rd-hero-slide .rd-hero-actions {
  position: absolute;
  bottom: 36px;
  left: 60px;
  z-index: 4;
}
.rd-hero-slide .rd-hero-eyebrow {
  position: absolute;
  top: 36px;
  left: 60px;
  z-index: 4;
}
.rd-hero-slide, .rd-hero-banner { background: #000; }
.rd-hero-slide.is-active::before {
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0) 100%);
}
.rd-hero-slide::before {
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0) 100%);
}

/* Brand Wall - horizontal row */
.rd-brand-wall { background: #000; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.rd-bw-inner { display: flex; align-items: center; gap: 24px; padding: 0 40px; max-width: none; }
.rd-bw-eyebrow {
  font-size: 10px; letter-spacing: 0.3em; font-weight: 700;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  margin: 0; padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.rd-bw-grid { display: flex; gap: 0; flex: 1; }
.rd-bw-card {
  padding: 8px 18px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 12px;
  transition: all 0.2s;
  background: transparent;
  border-top: 0; border-bottom: 0; border-left: 0;
}
.rd-bw-card:last-child { border-right: 0; }
.rd-bw-card:hover { background: rgba(194,65,12,0.12); }
.rd-bw-mark {
  width: 28px; height: 28px; margin: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
  font-family: "Arial Black", sans-serif;
  border: 1px solid currentColor;
}
.rd-bw-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin: 0; }
.rd-bw-meta, .rd-bw-foot, .rd-bw-h, .rd-bw-sub { display: none; }

@media (max-width: 720px) {
  .rd-bw-inner { flex-direction: column; gap: 12px; padding: 0 20px; }
  .rd-bw-eyebrow { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 0 0 8px; }
  .rd-bw-grid { flex-wrap: wrap; }
  .rd-bw-card { width: 50%; padding: 8px 12px; }
}

/* ========= Hero — search-led, not decorative (no AI-template defaults) ========= */
.rd-hero-typeled {
  position: relative;
  min-height: 70vh;
  background: #0F172A;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 90px 24px 80px;
}
.rd-ht-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(95%) contrast(1.4);
}
.rd-ht-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.45) 0%, rgba(15,23,42,0.75) 100%);
  z-index: 1;
}
.rd-ht-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
  color: #fff;
}
.rd-ht-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin: 0 0 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.18);
}
.rd-ht-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 20px;
  max-width: 780px;
  text-wrap: balance;
}
.rd-ht-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 36px;
  line-height: 1.55;
  max-width: 620px;
}
.rd-ht-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 0;
  font-size: 13px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}
.rd-ht-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: all 0.2s;
}
.rd-ht-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.rd-ht-link-primary {
  font-weight: 700;
  color: #EA580C;
  border-bottom-color: rgba(234,88,12,0.4);
}
.rd-ht-link-primary:hover {
  color: #F97316;
  border-bottom-color: #F97316;
}
.rd-ht-meta-sep { opacity: 0.35; padding: 0 2px; }
.rd-ht-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}
.rd-ht-live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: rd-pulse 2.2s ease-out infinite;
}
@keyframes rd-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@media (max-width: 720px) {
  .rd-hero-typeled { min-height: auto; padding: 60px 20px 50px; }
  .rd-ht-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============ Master Search Component ============ */
.rd-search-master { position: relative; max-width: 720px; margin: 0 auto; }
.rd-sm-row1 { margin-bottom: 12px; }
.rd-sm-brands { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rd-sm-brands-label { font-size: 10px; letter-spacing: 0.3em; font-weight: 800; opacity: 0.65; text-transform: uppercase; }
.rd-sm-brand-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.rd-sm-chip { position: relative; cursor: pointer; user-select: none; }
.rd-sm-chip input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.rd-sm-chip span {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.15s;
  color: rgba(255,255,255,0.85);
}
.rd-sm-chip:hover span { border-color: rgba(194,65,12,0.7); color: #fff; }
.rd-sm-chip input:checked + span {
  background: #c2410c;
  border-color: #c2410c;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(194,65,12,0.15);
}
.rd-sm-row2 {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(15,23,42,0.85);
  transition: all 0.2s;
  position: relative;
}
.rd-sm-row2:focus-within {
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234,88,12,0.22);
  background: rgba(15,23,42,0.95);
}
.rd-sm-icon {
  flex-shrink: 0;
  margin: auto 0 auto 22px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.rd-sm-row2:focus-within .rd-sm-icon { color: #fbbf24; }
.rd-sm-input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 22px 16px 22px 18px;
  font-size: 16px;
  letter-spacing: 0.04em;
  outline: none;
  font-family: inherit;
}
.rd-sm-input::placeholder { color: rgba(255,255,255,0.4); }
.rd-sm-go {
  padding: 0 36px;
  background: #c2410c;
  color: #fff;
  border: 0;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.rd-sm-go:hover { background: #ea580c; }
.rd-sm-row3 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding: 0 4px;
}
.rd-sm-row3-lbl {
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 800;
  opacity: 0.5;
  text-transform: uppercase;
}
.rd-sm-quick {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  padding: 4px 10px;
  font-size: 12px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.15s;
  border-radius: 2px;
}
.rd-sm-quick:hover {
  background: #c2410c;
  border-color: #c2410c;
  color: #fff;
}
.rd-sm-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  list-style: none;
  margin: 4px 0 0;
  padding: 6px 0;
  background: rgba(20,20,20,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  max-height: 320px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.rd-sm-suggest li {
  padding: 11px 22px;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rd-sm-suggest li:last-child { border-bottom: 0; }
.rd-sm-suggest li:hover, .rd-sm-suggest li.focused {
  background: rgba(194,65,12,0.18);
}
.rd-sm-suggest li mark { color: #fbbf24; background: transparent; font-weight: 700; }
.rd-sm-suggest li small { font-size: 11px; opacity: 0.55; letter-spacing: 0.08em; text-transform: uppercase; }
.rd-sm-suggest .rd-sm-suggest-empty {
  padding: 14px 22px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-style: italic;
}

/* Light variant */
.rd-search-master.rd-search-light .rd-sm-row2 {
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
}
.rd-search-master.rd-search-light .rd-sm-icon { color: #6b7280; }
.rd-search-master.rd-search-light .rd-sm-input { color: #0a0a0a; }
.rd-search-master.rd-search-light .rd-sm-input::placeholder { color: #94a3b8; }
.rd-search-master.rd-search-light .rd-sm-row3-lbl { color: #6b7280; opacity: 1; }
.rd-search-master.rd-search-light .rd-sm-quick { color: rgba(0,0,0,0.65); border-color: rgba(0,0,0,0.15); }
.rd-search-master.rd-search-light .rd-sm-quick:hover { background: #c2410c; color: #fff; border-color: #c2410c; }
.rd-search-master.rd-search-light .rd-sm-chip span { color: rgba(0,0,0,0.7); border-color: rgba(0,0,0,0.15); background: #fff; }
.rd-search-master.rd-search-light .rd-sm-chip:hover span { border-color: #c2410c; color: #0a0a0a; }
.rd-search-master.rd-search-light .rd-sm-suggest { background: rgba(255,255,255,0.99); border-color: rgba(0,0,0,0.1); }
.rd-search-master.rd-search-light .rd-sm-suggest li { color: #0a0a0a; border-color: rgba(0,0,0,0.05); }
.rd-search-master.rd-search-light .rd-sm-suggest li:hover, .rd-search-master.rd-search-light .rd-sm-suggest li.focused { background: rgba(194,65,12,0.08); }
.rd-search-master.rd-search-light .rd-sm-suggest li mark { color: #c2410c; }
.rd-search-master.rd-search-light .rd-sm-suggest .rd-sm-suggest-empty { color: #6b7280; }

@media (max-width: 720px) {
  .rd-sm-go { padding: 0 18px; font-size: 11px; letter-spacing: 0.12em; }
  .rd-sm-icon { margin-left: 14px; }
  .rd-sm-input { padding: 18px 14px; font-size: 15px; }
  .rd-sm-row2 { flex-wrap: wrap; }
  .rd-sm-row3 { gap: 6px; }
  .rd-sm-quick { padding: 3px 8px; font-size: 11px; }
}

/* ========= PERSOLY spec-sheet global ========= */
html, body { background: #000 !important; color: var(--ink); }
.rd-sec { background: #000 !important; color: var(--ink); }
.rd-sec--light { background: #0A0A0A; }

/* Mono SKU ribbon — signature element */
.rd-ribbon {
  border-top: 2px solid var(--rust);
  border-bottom: 1px solid var(--rule);
  background: #050505;
  padding: 14px 0;
  overflow: hidden;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  white-space: nowrap;
  position: relative;
}
.rd-ribbon-track {
  display: inline-flex;
  gap: 56px;
  animation: rd-ribbon-march 38s linear infinite;
  padding-left: 56px;
}
.rd-ribbon-item { display: inline-flex; align-items: center; gap: 16px; text-transform: uppercase; }
.rd-ribbon-item .rd-ribbon-dot { width: 6px; height: 6px; background: var(--rust); display: inline-block; }
.rd-ribbon-item strong { color: var(--ink); font-weight: 700; }
@keyframes rd-ribbon-march {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section divider hairline */
.rd-rule-hairline {
  border: 0;
  height: 1px;
  background: var(--rust);
  margin: 0 auto 32px;
  width: 64px;
}

/* Section title pattern */
.rd-sec-h2-v2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 5.6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: balance;
}
.rd-sec-h2-v2 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--rust) 0%, var(--rust-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rd-sec-eyebrow-v2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--rust);
  text-transform: uppercase;
  margin: 0 0 16px;
  display: block;
}
.rd-sec-sub-v2 {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 720px;
  line-height: 1.55;
  margin: 0 0 48px;
}

/* Hairline-bordered card */
.rd-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 32px;
  transition: border-color 0.2s;
  position: relative;
}
.rd-card-v2:hover { border-color: var(--rust); }
.rd-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--rust);
  margin: 0 0 18px;
}
.rd-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.rd-card-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

/* Stats block (large mono numbers) */
.rd-stats-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.rd-stat-v2 {
  padding: 48px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.rd-stat-v2:last-child { border-right: 0; }
.rd-stat-v2-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 12px;
}
.rd-stat-v2-num em {
  font-style: normal;
  color: var(--rust);
}
.rd-stat-v2-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.rd-stat-v2-sub {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .rd-stats-v2 { grid-template-columns: repeat(2, 1fr); }
  .rd-stat-v2:nth-child(2) { border-right: 0; }
}
@media (max-width: 540px) {
  .rd-stats-v2 { grid-template-columns: 1fr; }
  .rd-stat-v2 { border-right: 0; }
}

/* CTA button — minimal, hairline */
.rd-btn-primary-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: var(--rust); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.18s;
}
.rd-btn-primary-v2:hover { background: var(--rust-bright); }
.rd-btn-ghost-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: transparent; color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--rule-strong);
  cursor: pointer;
  transition: all 0.18s;
}
.rd-btn-ghost-v2:hover { border-color: var(--ink); background: rgba(255,255,255,0.04); }

/* News card */
.rd-news-v2 {
  display: block;
  border: 1px solid var(--rule);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  background: var(--bg-card);
}
.rd-news-v2:hover { border-color: var(--rust); transform: translateY(-2px); }
.rd-news-v2-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--rust);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}
.rd-news-v2-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.rd-news-v2-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.3;
}
.rd-news-v2-excerpt {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}


/* ============ 简化版 hero 搜索 + 4 大类图卡 (v10 clear) ============ */
/* Hero search */
.rd-hero-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  max-width: 720px;
  margin: 36px auto 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 12px;
  overflow: hidden;
  padding: 8px;
}
.rd-hero-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 18px;
  padding: 14px 16px;
  letter-spacing: 0.02em;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.rd-hero-input::placeholder { color: rgba(255,255,255,0.55); }
.rd-hero-go {
  background: #EA580C;
  color: #fff;
  border: 0;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background .15s ease;
}
.rd-hero-go:hover { background: #C2410C; }

/* 4-wide product categories (clean image grid) */
.rd-sec-cat { background: #fff; }
.rd-cat-h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0F172A;
  margin: 0 0 12px;
  text-align: center;
}
.rd-cat-sub {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  color: #475569;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.6;
}
.rd-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .rd-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .rd-cat-grid { grid-template-columns: 1fr; }
}
.rd-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 14px rgba(15,23,42,0.10);
  border: 1px solid rgba(15,23,42,0.08);
}
.rd-cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.05) 30%, rgba(15,23,42,0.78) 100%);
  transition: background .25s ease;
}
.rd-cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(15,23,42,0.20); }
.rd-cat-card:hover::before { background: linear-gradient(180deg, rgba(15,23,42,0.20) 30%, rgba(234,88,12,0.85) 100%); }
.rd-cat-cn {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 1.9vw, 30px);
  letter-spacing: 0.02em;
  padding: 16px 18px 2px;
}
.rd-cat-en {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.85);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 0 18px 18px;
}

/* ============ v12 ctpiston-inspired product hero ============ */
.rd-ct-hero {
  min-height: 760px;
  background: #050505;
}

.rd-ct-hero .rd-ht-bg {
  opacity: .18;
  filter: grayscale(100%) contrast(1.15);
}

.rd-ct-hero .rd-ht-veil {
  background:
    radial-gradient(circle at 72% 48%, rgba(234,88,12,.28) 0%, rgba(234,88,12,0) 28%),
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 48%, rgba(0,0,0,.58) 100%);
}

.rd-ct-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 48px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: center;
  padding: 72px 0 64px;
}

.rd-ct-hero-copy {
  max-width: 660px;
  margin: 0;
  text-align: left;
}

.rd-ct-hero .rd-ht-eyebrow {
  color: #ea580c;
  letter-spacing: .18em;
}

.rd-ct-hero .rd-ht-title {
  font-size: clamp(48px, 6.4vw, 96px) !important;
  line-height: .96 !important;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 16px 40px rgba(0,0,0,.55);
}

.rd-ct-hero .rd-ht-title em {
  font-style: normal;
  color: #ea580c;
}

.rd-ct-hero .rd-ht-sub {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.35vw, 22px) !important;
  text-shadow: none !important;
}

.rd-ct-hero .rd-hero-search {
  margin-left: 0;
  margin-right: 0;
  max-width: 680px;
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.10);
}

.rd-ct-hero-visual {
  position: relative;
  min-height: 560px;
}

.rd-ct-filter {
  position: absolute;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 34px 70px rgba(0,0,0,.46);
  overflow: hidden;
}

.rd-ct-filter img {
  width: 145%;
  height: 145%;
  object-fit: contain;
  transform: scale(1.28);
  mix-blend-mode: multiply;
}

.rd-ct-filter-main {
  width: 430px;
  height: 430px;
  right: 86px;
  top: 52px;
}

.rd-ct-filter-oil {
  width: 250px;
  height: 250px;
  right: 0;
  bottom: 34px;
}

.rd-ct-filter-air {
  width: 220px;
  height: 220px;
  left: 0;
  bottom: 96px;
}

.rd-ct-hero-badge {
  position: absolute;
  left: 72px;
  top: 58px;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: #ea580c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 50px rgba(234,88,12,.32);
}

.rd-ct-hero-badge strong {
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
}

.rd-ct-hero-badge span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-top: 8px;
}

.rd-ct-hero + .rd-sec-cat {
  position: relative;
  margin-top: -34px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  z-index: 3;
}

@media (max-width: 980px) {
  .rd-ct-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }
  .rd-ct-hero-visual {
    min-height: 430px;
  }
  .rd-ct-filter-main { width: 330px; height: 330px; right: 12%; top: 20px; }
  .rd-ct-filter-oil { width: 190px; height: 190px; right: 8%; bottom: 18px; }
  .rd-ct-filter-air { width: 170px; height: 170px; left: 8%; bottom: 52px; }
}

@media (max-width: 620px) {
  .rd-ct-hero { min-height: auto; }
  .rd-ct-hero-inner { width: min(100% - 28px, 1240px); padding: 48px 0 38px; }
  .rd-ct-hero-visual { min-height: 300px; }
  .rd-ct-filter-main { width: 230px; height: 230px; right: 0; top: 20px; }
  .rd-ct-filter-oil { width: 140px; height: 140px; right: 8px; bottom: 6px; }
  .rd-ct-filter-air { width: 130px; height: 130px; left: 0; bottom: 36px; }
  .rd-ct-hero-badge { width: 96px; height: 96px; left: 0; top: 8px; }
  .rd-ct-hero-badge strong { font-size: 28px; }
}

/* ============ v11 clean B2B pass: white sections + product photos ============ */
html, body { background: #fff !important; }

.rd-home-light {
  --ink: #0f172a;
  --ink-muted: #475569;
  --ink-dim: #64748b;
  --rule: rgba(15,23,42,0.10);
  --rule-strong: rgba(15,23,42,0.18);
  background: #fff !important;
  color: #0f172a;
}

.rd-home-light .rd-sec-h2-v2,
.rd-home-light .rd-sec-h2,
.rd-home-light .rd-ind-row-h3,
.rd-home-light .rd-news-v2-title {
  color: #0f172a !important;
}

.rd-home-light .rd-sec-sub-v2,
.rd-home-light .rd-sec-sub,
.rd-home-light .rd-ind-row-desc,
.rd-home-light .rd-news-v2-excerpt {
  color: #475569 !important;
}

.rd-home-light .rd-rule-hairline,
.rd-home-light .rd-sec-rule {
  background: #ea580c;
}

.rd-home-stats .rd-stats-v2 {
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.rd-home-stats .rd-stat-v2 {
  border-color: rgba(15,23,42,0.10);
  background: #fff;
}

.rd-home-stats .rd-stat-v2-num {
  color: #0f172a;
  letter-spacing: 0;
}

.rd-home-stats .rd-stat-v2-lbl {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: 0;
  font-size: 15px;
  color: #0f172a;
  font-weight: 800;
}

.rd-clean-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.rd-brand-clean {
  border-top: 1px solid rgba(15,23,42,0.08);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.rd-brand-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.rd-brand-pills span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.rd-clean-link {
  color: #ea580c;
  font-weight: 800;
  text-decoration: none;
}

.rd-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .9fr);
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

.rd-about-photo {
  min-height: 320px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(15,23,42,0.10);
}

.rd-cert-box {
  grid-column: 1 / -1;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 8px;
  padding: 28px;
}

.rd-cert-box li {
  border-color: rgba(15,23,42,0.10) !important;
}

.rd-industries-clean {
  border-top: 1px solid rgba(15,23,42,0.08);
}

.rd-industries-clean .rd-ind-list {
  border-top: 1px solid rgba(15,23,42,0.10);
}

.rd-industries-clean .rd-ind-row {
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,0.10);
  color: #0f172a;
}

.rd-industries-clean .rd-ind-row:hover {
  background: #fff7ed;
}

.rd-news-clean {
  padding: 88px 0;
  border-top: 1px solid rgba(15,23,42,0.08);
}

.rd-news-clean > .container > div[style*="grid"] {
  gap: 18px !important;
  border: 0 !important;
}

.rd-news-clean .rd-news-v2 {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.10) !important;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}

.rd-news-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.rd-news-clean .rd-news-v2-tag,
.rd-news-clean .rd-news-v2-date,
.rd-news-clean .rd-news-v2-title,
.rd-news-clean .rd-news-v2-excerpt {
  display: block;
  margin-left: 22px;
  margin-right: 22px;
}

.rd-news-clean .rd-news-v2-tag { margin-top: 22px; }
.rd-news-clean .rd-news-v2-excerpt { margin-bottom: 24px; }

.rd-founder-clean,
.rd-final-clean {
  border-top: 1px solid rgba(15,23,42,0.08);
}

.rd-final-clean .rd-btn-ghost-v2,
.rd-home-light .rd-btn-ghost-v2 {
  color: #0f172a;
  border-color: rgba(15,23,42,0.18);
}

.rd-home-light .rd-btn-ghost-v2:hover {
  background: #f8fafc;
  border-color: #0f172a;
}

.pl-list-row--with-image {
  display: grid !important;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px 20px !important;
  min-height: 166px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 8px;
  color: #0f172a;
}

.pl-list-row--with-image + .pl-list-row--with-image {
  margin-top: 12px;
}

.pl-list-thumb {
  width: 150px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.pl-list-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: none;
}

.pl-list-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.pl-list-row--with-image .pl-list-sku {
  font-size: 21px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0;
}

.pl-list-row--with-image .pl-list-tag {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: #fff7ed;
  color: #c2410c;
}

.pl-list-name,
.pl-list-meta-line,
.pl-list-refs {
  display: block;
  line-height: 1.45;
}

.pl-list-name {
  color: #334155;
  font-weight: 700;
  margin-bottom: 3px;
}

.pl-list-meta-line,
.pl-list-refs {
  color: #64748b;
  font-size: 13px;
}

.pl-list-row--with-image .pl-list-add {
  min-width: 92px;
  justify-content: center;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .rd-brand-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rd-about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pl-list-row--with-image {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }
  .pl-list-thumb { width: 104px; height: 96px; }
  .pl-list-row--with-image .pl-list-add {
    grid-column: 1 / -1;
    width: 100%;
  }
  .rd-brand-pills { grid-template-columns: 1fr; }
}

/* ============ v13 local preview: ctpiston-like industrial hero ============ */
.redesign .topbar-redesign {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 34px;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.redesign .tbr-inner {
  width: min(100% - 48px, 1280px);
  height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
}
.redesign .tbr-inner a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}
.redesign .tbr-active {
  color: #fff;
}
.redesign .header-redesign {
  position: sticky;
  top: 34px;
  z-index: 99;
  height: 76px;
  background: rgba(10,10,10,0.94);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.redesign .hdr-inner {
  width: min(100% - 48px, 1280px);
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.redesign .logo-redesign {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  min-width: 128px;
}
.redesign .logo-redesign img {
  display: none;
}
.redesign .logo-redesign::before {
  content: "";
  width: 12px;
  height: 32px;
  background: #ea580c;
  display: inline-block;
}
.redesign .logo-text-rd {
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0;
}
.redesign .nav-redesign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
}
.redesign .nav-redesign a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.redesign .nav-redesign a:hover {
  color: #fff;
}
.redesign .btn-rd-primary {
  min-height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ea580c;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.rd-hero-industrial {
  min-height: min(660px, calc(100vh - 118px));
  padding: 78px 24px 54px;
  background: #050505;
  align-items: center;
  isolation: isolate;
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
}
.rd-hero-industrial .rd-ht-bg {
  opacity: 1;
  filter: none;
  background-position: center center;
  background-size: cover;
  transform: scale(1.035);
  transform-origin: 72% 52%;
  animation: rdHeroImageSettle 1100ms var(--motion-ease) 120ms both;
  will-change: transform, filter;
}
.rd-hero-industrial .rd-ht-veil {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.82) 29%, rgba(0,0,0,0.36) 55%, rgba(0,0,0,0.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.04) 48%, rgba(0,0,0,0.65) 100%);
  clip-path: inset(0 100% 0 0);
  animation: rdHeroShadeWipe 760ms var(--motion-ease) 80ms both;
}
.rd-hero-industrial .rd-ht-content {
  max-width: 1280px;
  margin: 0 auto;
}
.rd-hero-copy {
  width: min(100%, 640px);
}
.rd-hero-industrial .rd-ht-eyebrow {
  margin: 0 0 24px;
  padding: 8px 12px;
  border-color: rgba(234,88,12,0.48);
  color: rgba(255,255,255,0.78);
  background: rgba(234,88,12,0.12);
  opacity: 0;
  transform: translateY(18px);
  animation: rdHeroTextIn 680ms var(--motion-ease) 260ms both;
}
.rd-hero-industrial .rd-ht-title {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0,0,0,0.48);
  opacity: 0;
  transform: translateY(28px);
  clip-path: inset(0 0 18% 0);
  animation: rdHeroTitleIn 760ms var(--motion-ease) 380ms both;
}
.rd-hero-industrial .rd-ht-sub {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(16px, 1.35vw, 20px);
  color: rgba(255,255,255,0.76);
  text-shadow: 0 12px 26px rgba(0,0,0,0.44);
  opacity: 0;
  transform: translateY(18px);
  animation: rdHeroTextIn 680ms var(--motion-ease) 520ms both;
}
.rd-hero-industrial .rd-hero-search {
  max-width: 640px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(7,7,7,0.78);
  box-shadow: 0 28px 80px rgba(0,0,0,0.38);
  opacity: 0;
  transform: translateY(22px);
  animation: rdHeroSearchIn 720ms var(--motion-ease) 650ms both;
  transition: border-color 180ms var(--motion-ease), box-shadow 240ms var(--motion-ease), transform 180ms var(--motion-ease), background 180ms var(--motion-ease);
}
.rd-hero-industrial .rd-hero-search:focus-within {
  border-color: rgba(234,88,12,0.88);
  background: rgba(8,8,8,0.9);
  box-shadow: 0 30px 90px rgba(0,0,0,0.44), 0 0 0 3px rgba(234,88,12,0.18);
  transform: translateY(-1px);
}
.rd-hero-industrial .rd-hero-input {
  min-width: 0;
  padding: 22px 20px;
  color: #fff;
}
.rd-hero-industrial .rd-hero-go {
  min-width: 128px;
  background: #ea580c;
  letter-spacing: 0.08em;
  transition: transform 120ms var(--motion-ease), background 160ms var(--motion-ease), box-shadow 180ms var(--motion-ease);
}
.rd-hero-industrial .rd-hero-go:hover {
  background: #f97316;
  box-shadow: 0 14px 34px rgba(234,88,12,0.28);
}
.rd-hero-industrial .rd-hero-go:active,
.rd-hero-quote:active,
.rd-hero-browse:active,
.redesign .btn-rd-primary:active {
  transform: translateY(1px) scale(0.985);
}
.rd-hero-actions-clean {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(18px);
  animation: rdHeroTextIn 640ms var(--motion-ease) 780ms both;
}
.rd-hero-quote,
.rd-hero-browse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
}
.rd-hero-quote {
  background: #fff;
  color: #080808;
  transition: transform 140ms var(--motion-ease), background 180ms var(--motion-ease), color 180ms var(--motion-ease), box-shadow 180ms var(--motion-ease);
}
.rd-hero-quote:hover {
  background: #ea580c;
  color: #fff;
  box-shadow: 0 14px 34px rgba(234,88,12,0.28);
}
.rd-hero-browse {
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  background: rgba(255,255,255,0.04);
  transition: transform 140ms var(--motion-ease), border-color 180ms var(--motion-ease), background 180ms var(--motion-ease);
}
.rd-hero-browse:hover {
  border-color: rgba(234,88,12,0.9);
  color: #fff;
  background: rgba(234,88,12,0.18);
}
.rd-hero-proof {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.rd-hero-proof span {
  padding: 13px 18px;
  border-right: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}
.rd-hero-proof span:last-child {
  border-right: 0;
}
.rd-hero-proof strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}
.rd-hero-industrial + .rd-sec-cat {
  border-top: 3px solid #ea580c;
}
.rd-hero-industrial + .rd-sec-cat > .container > div {
  padding-top: 54px !important;
}
.rd-hero-industrial + .rd-sec-cat .rd-cat-h2 {
  text-align: left;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.rd-hero-industrial + .rd-sec-cat .rd-cat-sub {
  text-align: left;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.rd-hero-industrial + .rd-sec-cat .rd-cat-card {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rd-hero-industrial + .rd-sec-cat .rd-cat-card:hover {
  transform: translateY(-6px);
  filter: saturate(1.06) contrast(1.04);
}
.motion-ready [data-reveal] .rd-cat-card {
  opacity: 0;
  transform: translateY(26px);
}
.motion-ready [data-reveal].is-visible .rd-cat-card {
  animation: rdCatIn 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i, 0) * 70ms);
}
@media (max-width: 980px) {
  .rd-hero-industrial {
    min-height: auto;
    padding: 88px 20px 64px;
  }
  .rd-hero-industrial .rd-ht-bg {
    background-position: 62% center;
    transform-origin: 68% 50%;
  }
  .rd-hero-industrial .rd-ht-veil {
    background:
      linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.82) 50%, rgba(0,0,0,0.34) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.72));
  }
  .rd-hero-copy {
    width: min(100%, 560px);
  }
}
@media (max-width: 640px) {
  .redesign .tbr-inner,
  .redesign .hdr-inner {
    width: min(100% - 28px, 1280px);
  }
  .redesign .tbr-left span:nth-of-type(n+2),
  .redesign .tbr-left a:nth-of-type(2),
  .redesign .nav-redesign {
    display: none;
  }
  .redesign .header-redesign {
    height: 68px;
  }
  .redesign .hdr-inner {
    height: 68px;
  }
  .rd-hero-industrial {
    padding: 72px 16px 46px;
  }
  .rd-hero-industrial .rd-ht-bg {
    background-position: 70% center;
  }
  .rd-hero-industrial .rd-ht-veil {
    background: linear-gradient(90deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.86) 74%, rgba(0,0,0,0.62) 100%);
  }
  .rd-hero-industrial .rd-ht-title {
    font-size: 38px;
  }
  .rd-hero-industrial .rd-hero-search {
    display: grid;
    grid-template-columns: 1fr;
  }
  .rd-hero-industrial .rd-hero-go {
    width: 100%;
    min-height: 52px;
  }
  .rd-hero-actions-clean {
    display: grid;
    grid-template-columns: 1fr;
  }
  .rd-hero-proof {
    grid-template-columns: 1fr;
  }
  .rd-hero-proof span {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }
  .rd-hero-proof span:last-child {
    border-bottom: 0;
  }
}

@keyframes rdHeroImageSettle {
  from {
    transform: scale(1.08) translateX(22px);
    filter: brightness(0.76) contrast(1.08);
  }
  to {
    transform: scale(1.035) translateX(0);
    filter: brightness(1) contrast(1);
  }
}
@keyframes rdHeroShadeWipe {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes rdHeroTextIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rdHeroTitleIn {
  from {
    opacity: 0;
    transform: translateY(30px);
    clip-path: inset(0 0 24% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes rdHeroSearchIn {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes rdCatIn {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rd-hero-industrial .rd-ht-bg,
  .rd-hero-industrial .rd-ht-veil,
  .rd-hero-industrial .rd-ht-eyebrow,
  .rd-hero-industrial .rd-ht-title,
  .rd-hero-industrial .rd-ht-sub,
  .rd-hero-industrial .rd-hero-search,
  .rd-hero-actions-clean,
  .motion-ready [data-reveal].is-visible .rd-cat-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }
  .motion-ready [data-reveal] .rd-cat-card {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto !important;
  }
}

/* ============ v14 rebuild: industrial B2B homepage ============ */
.neo-home {
  --neo-black: #050505;
  --neo-ink: #111111;
  --neo-text: #f7f7f2;
  --neo-muted: #6f716f;
  --neo-line: #d9d9d2;
  --neo-paper: #f4f4ef;
  --neo-orange: #f05a1a;
  --neo-orange-dark: #b9390f;
  background: var(--neo-paper) !important;
  color: var(--neo-ink);
}

.neo-home .topbar-redesign {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.neo-home .header-redesign {
  top: 34px;
  height: 72px;
  background: rgba(5,5,5,0.94);
  border-bottom: 1px solid rgba(255,255,255,0.13);
  box-shadow: none;
}

.neo-home .hdr-inner {
  height: 72px;
}

.neo-home .logo-redesign::before {
  width: 10px;
  height: 34px;
  background: var(--neo-orange);
}

.neo-home .logo-text-rd {
  font-size: 24px;
  letter-spacing: 0;
}

.neo-home .nav-redesign a {
  color: rgba(255,255,255,0.72);
  letter-spacing: 0;
}

.neo-home .nav-redesign a:hover {
  color: #fff;
}

.neo-home .btn-rd-primary {
  border-radius: 0;
  background: var(--neo-orange);
  color: #fff;
  box-shadow: none;
}

.neo-main {
  background: var(--neo-paper);
  overflow: hidden;
}

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

.neo-kicker {
  margin: 0 0 18px;
  color: var(--neo-orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.neo-hero {
  position: relative;
  min-height: calc(100dvh - 106px);
  background: var(--neo-black);
  color: var(--neo-text);
  isolation: isolate;
}

.neo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.86) 35%, rgba(0,0,0,0.44) 68%, rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.72));
}

.neo-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.neo-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.04);
  filter: contrast(1.04) saturate(0.96);
  animation: neoHeroSettle 1100ms cubic-bezier(.16,1,.3,1) both;
}

.neo-hero-grid {
  min-height: calc(100dvh - 106px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.5fr);
  gap: 44px;
  align-items: center;
  padding: 70px 0 64px;
}

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

.neo-hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(48px, 7.4vw, 112px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  color: #fff !important;
  text-wrap: balance;
  opacity: 1;
  transform: none;
  animation: none;
}

.neo-lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.56;
  text-wrap: pretty;
  opacity: 1;
  transform: none;
  animation: none;
}

.neo-search {
  width: min(100%, 640px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.7);
  opacity: 1;
  transform: none;
  animation: none;
}

.neo-search input,
.neo-search button {
  min-height: 58px;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.neo-search input {
  min-width: 0;
  padding: 0 18px;
  background: transparent;
  color: #fff;
  outline: 0;
}

.neo-search input::placeholder {
  color: rgba(255,255,255,0.58);
}

.neo-search button,
.neo-btn-primary,
.neo-form button {
  background: var(--neo-orange);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.neo-search button:hover,
.neo-btn-primary:hover,
.neo-form button:hover {
  background: #ff6a24;
}

.neo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  opacity: 1;
  transform: none;
  animation: none;
}

.neo-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.neo-btn-secondary {
  background: rgba(255,255,255,0.08);
}

.neo-btn:active,
.neo-search button:active,
.neo-form button:active {
  transform: translateY(1px);
}

.neo-hero-panel {
  --neo-panel-y: 118px;
  align-self: end;
  justify-self: end;
  width: min(100%, 380px);
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(5,5,5,0.62);
  color: #fff;
  transform: translateY(var(--neo-panel-y));
}

.neo-panel-top,
.neo-panel-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.neo-panel-top span,
.neo-panel-foot span {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.neo-panel-top strong,
.neo-panel-foot b {
  color: var(--neo-orange);
  font-size: 48px;
  line-height: 0.9;
  letter-spacing: 0;
}

.neo-panel-lines {
  display: grid;
  gap: 12px;
  padding: 4px 24px 26px;
}

.neo-panel-lines span {
  width: var(--w);
  height: 12px;
  background: rgba(255,255,255,0.18);
}

.neo-strip {
  background: var(--neo-orange);
  color: #fff;
}

.neo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(255,255,255,0.32);
}

.neo-strip-grid div {
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.32);
}

.neo-strip-grid strong {
  font-size: clamp(36px, 4vw, 62px);
  line-height: 0.9;
  letter-spacing: 0;
}

.neo-strip-grid span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.neo-section {
  padding: clamp(70px, 9vw, 118px) 0;
  background: var(--neo-paper);
}

.neo-section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.neo-section h2,
.neo-quote h2 {
  margin: 0 0 16px;
  color: var(--neo-ink);
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.neo-section-head p:not(.neo-kicker),
.neo-reference-grid p,
.neo-quote-copy p:not(.neo-kicker) {
  margin: 0;
  max-width: 650px;
  color: #4b4d49;
  font-size: 17px;
  line-height: 1.65;
}

.neo-cat-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(260px, 1fr);
  gap: 14px;
}

.neo-cat {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #111;
  border: 1px solid rgba(0,0,0,0.2);
}

.neo-cat-large {
  grid-row: span 2;
}

.neo-cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(.16,1,.3,1);
}

.neo-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.78));
}

.neo-cat span,
.neo-cat b {
  position: relative;
  z-index: 1;
  margin-left: 22px;
  margin-right: 22px;
}

.neo-cat span {
  margin-bottom: 4px;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 950;
  line-height: 1;
}

.neo-cat b {
  margin-bottom: 22px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  text-transform: uppercase;
}

.neo-cat.text-cat {
  padding: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 90, 31, 0.24), transparent 30%),
    linear-gradient(135deg, #171717 0%, #080808 62%, #1f1a17 100%);
  border-color: rgba(255,255,255,0.13);
}

.neo-cat.text-cat::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.42));
  opacity: 0.75;
}

.neo-cat-code {
  position: relative;
  z-index: 1;
  margin: 0 0 auto;
  color: rgba(255,255,255,0.9);
  font-size: clamp(56px, 8vw, 118px);
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.85;
}

.neo-cat.text-cat span,
.neo-cat.text-cat b {
  margin-left: 0;
  margin-right: 0;
}

.neo-cat.text-cat b {
  margin-bottom: 0;
  color: rgba(255,255,255,0.62);
}

.neo-cat:hover img {
  transform: scale(1.06);
}

.neo-process {
  background: #fff;
  border-top: 1px solid var(--neo-line);
  border-bottom: 1px solid var(--neo-line);
}

.neo-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
}

.neo-steps {
  display: grid;
  border-top: 2px solid #111;
}

.neo-steps div {
  display: grid;
  grid-template-columns: 70px minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--neo-line);
}

.neo-steps span {
  color: var(--neo-orange);
  font-weight: 950;
}

.neo-steps h3 {
  margin: 0;
  font-size: 22px;
  color: #111;
}

.neo-steps p {
  margin: 0;
  color: #555852;
  line-height: 1.6;
}

.neo-reference {
  background: #111;
  color: #fff;
}

.neo-reference-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: start;
}

.neo-reference h2 {
  color: #fff;
}

.neo-reference-grid p {
  color: rgba(255,255,255,0.72);
}

.neo-brand-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 28px 0;
}

.neo-brand-row span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 900;
}

.neo-link {
  color: var(--neo-orange);
  font-weight: 950;
  text-decoration: none;
}

.neo-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid #111;
  border-left: 1px solid var(--neo-line);
}

.neo-ind-grid a {
  min-height: 156px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  color: #111;
  text-decoration: none;
  border-right: 1px solid var(--neo-line);
  border-bottom: 1px solid var(--neo-line);
  background: #fff;
}

.neo-ind-grid a:hover {
  background: var(--neo-orange);
  color: #fff;
}

.neo-ind-grid b {
  font-size: 24px;
  line-height: 1;
}

.neo-ind-grid span {
  color: inherit;
  opacity: 0.72;
  line-height: 1.5;
}

.neo-quote {
  padding: clamp(70px, 9vw, 118px) 0;
  background: var(--neo-orange);
  color: #fff;
}

.neo-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.neo-quote .neo-kicker,
.neo-quote h2,
.neo-quote-copy p:not(.neo-kicker) {
  color: #fff;
}

.neo-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  color: #111;
}

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

.neo-form label {
  display: grid;
  gap: 8px;
  color: #202020;
  font-size: 13px;
  font-weight: 900;
}

.neo-form input,
.neo-form textarea {
  width: 100%;
  border: 1px solid #c9c9c2;
  border-radius: 0;
  background: #f7f7f2;
  color: #111;
  font: inherit;
  outline: 0;
}

.neo-form input {
  min-height: 50px;
  padding: 0 14px;
}

.neo-form textarea {
  min-height: 124px;
  padding: 14px;
  resize: vertical;
}

.neo-form input:focus,
.neo-form textarea:focus {
  border-color: var(--neo-orange);
  box-shadow: 0 0 0 2px rgba(240,90,26,0.18);
}

.neo-form button {
  min-height: 54px;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.neo-form .rd-form-msg {
  color: var(--neo-orange-dark);
  font-weight: 800;
}

[data-reveal] {
  opacity: 1;
}

.motion-ready [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.neo-home .footer-rd {
  padding: 56px 0 28px;
  background: #080808;
  color: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.neo-home .container-rd {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.neo-home .footer-rd-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(160px, 1fr));
  gap: 42px;
}

.neo-home .footer-rd-brand p {
  max-width: 360px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.neo-home .footer-rd h5 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
}

.neo-home .footer-rd ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.neo-home .footer-rd a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
}

.neo-home .footer-rd a:hover {
  color: var(--neo-orange);
}

.neo-home .footer-rd-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.48);
  font-size: 12px;
}

@keyframes neoHeroSettle {
  from { transform: scale(1.09); filter: contrast(0.98) saturate(0.86); }
  to { transform: scale(1.04); filter: contrast(1.04) saturate(0.96); }
}

@keyframes neoTextIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .neo-home .topbar-redesign {
    display: none;
  }
  .neo-home .header-redesign {
    top: 0;
  }
  .neo-home .nav-redesign {
    display: none;
  }
  .neo-wrap {
    width: min(100% - 32px, 1280px);
  }
  .neo-hero-grid,
  .neo-process-grid,
  .neo-reference-grid,
  .neo-quote-grid {
    grid-template-columns: 1fr;
  }
  .neo-hero-grid {
    padding-top: 52px;
  }
  .neo-hero-panel {
    --neo-panel-y: 0px;
    max-width: 420px;
    margin-bottom: 0;
  }
  .neo-strip-grid,
  .neo-brand-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .neo-cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .neo-cat-large {
    grid-row: span 1;
  }
  .neo-steps div {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .neo-steps p {
    grid-column: 2;
  }
  .neo-ind-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .neo-home .footer-rd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .neo-wrap {
    width: min(100% - 24px, 1280px);
  }
  .neo-home .header-redesign {
    height: 66px;
  }
  .neo-home .hdr-inner {
    width: min(100% - 24px, 1280px);
    height: 66px;
  }
  .neo-hero,
  .neo-hero-grid {
    min-height: auto;
  }
  .neo-hero-grid {
    padding: 44px 0 48px;
  }
  .neo-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 1.04;
  }
  .neo-search {
    grid-template-columns: 1fr;
  }
  .neo-search button {
    min-height: 50px;
  }
  .neo-actions {
    display: grid;
  }
  .neo-btn {
    width: 100%;
  }
  .neo-strip-grid,
  .neo-cat-grid,
  .neo-brand-row,
  .neo-ind-grid,
  .neo-form-row {
    grid-template-columns: 1fr;
  }
  .neo-strip-grid div {
    min-height: 92px;
  }
  .neo-cat {
    min-height: 230px;
  }
  .neo-section,
  .neo-quote {
    padding: 58px 0;
  }
  .neo-home .container-rd {
    width: min(100% - 24px, 1280px);
  }
  .neo-home .footer-rd-grid,
  .neo-home .footer-rd-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neo-hero-media img,
  .neo-hero h1,
  .neo-lead,
  .neo-search,
  .neo-actions,
  .motion-ready [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============ Neo homepage motion polish ============ */
.neo-home {
  overflow-x: hidden;
}

.neo-home.neo-scrolled .header-redesign {
  top: 0;
  height: 62px;
  background: rgba(5,5,5,0.98);
  box-shadow: 0 18px 46px rgba(0,0,0,0.28);
}

.neo-home.neo-scrolled .hdr-inner {
  height: 62px;
}

.neo-home .nav-redesign a {
  position: relative;
}

.neo-home .nav-redesign a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--neo-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(.16,1,.3,1);
}

.neo-home .nav-redesign a:hover::after {
  transform: scaleX(1);
}

.neo-hero {
  overflow: hidden;
}

.neo-hero::before {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2));
  top: 96px;
  bottom: 72px;
  z-index: -1;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--neo-orange) 18%, rgba(240,90,26,0.2) 76%, transparent);
  box-shadow: 0 0 34px rgba(240,90,26,0.34);
  transform-origin: top;
}

.neo-hero-media img {
  transform: translate3d(0, var(--neo-hero-y, 0), 0) scale(1.05);
  will-change: transform;
}

.neo-hero-copy .neo-kicker,
.neo-hero h1,
.neo-lead,
.neo-search,
.neo-actions {
  will-change: transform, opacity;
}

.motion-ready .neo-hero::before {
  transform: scaleY(0);
  animation: neoRailBuild 940ms cubic-bezier(.16,1,.3,1) 220ms both;
}

.motion-ready .neo-hero-copy .neo-kicker,
.motion-ready .neo-hero h1,
.motion-ready .neo-lead,
.motion-ready .neo-search,
.motion-ready .neo-actions {
  opacity: 0.86;
  transform: translateY(18px);
  animation: neoTextRise 760ms cubic-bezier(.16,1,.3,1) both;
}

.motion-ready .neo-hero-copy .neo-kicker { animation-delay: 100ms; }
.motion-ready .neo-hero h1 { animation-delay: 180ms; }
.motion-ready .neo-lead { animation-delay: 300ms; }
.motion-ready .neo-search { animation-delay: 420ms; }
.motion-ready .neo-actions { animation-delay: 540ms; }

.neo-search,
.neo-btn,
.neo-home .btn-rd-primary,
.neo-form button {
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.neo-search::after,
.neo-btn::after,
.neo-home .btn-rd-primary::after,
.neo-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255,255,255,0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 560ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}

.neo-search:focus-within,
.neo-btn:hover,
.neo-home .btn-rd-primary:hover,
.neo-form button:hover {
  transform: translateY(-2px);
  border-color: rgba(240,90,26,0.62);
  box-shadow: 0 20px 48px rgba(240,90,26,0.2);
}

.neo-search:focus-within::after,
.neo-btn:hover::after,
.neo-home .btn-rd-primary:hover::after,
.neo-form button:hover::after {
  transform: translateX(120%);
}

.neo-hero-panel {
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}

.neo-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.neo-hero-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--neo-orange);
  transform: scaleX(0);
  transform-origin: left;
}

.motion-ready .neo-hero-panel.is-visible::after {
  animation: neoLineGrow 760ms cubic-bezier(.16,1,.3,1) 160ms both;
}

.motion-ready .neo-hero-panel {
  opacity: 0.88;
  transform: translateY(calc(var(--neo-panel-y, 0px) + 24px));
  transition: opacity 760ms cubic-bezier(.16,1,.3,1), transform 760ms cubic-bezier(.16,1,.3,1);
}

.motion-ready .neo-hero-panel.is-visible {
  opacity: 1;
  transform: translateY(var(--neo-panel-y, 0px));
}

.motion-ready .neo-panel-lines span {
  transform: scaleX(0);
  transform-origin: left;
}

.motion-ready .neo-hero-panel.is-visible .neo-panel-lines span {
  animation: neoLineGrow 720ms cubic-bezier(.16,1,.3,1) both;
  animation-delay: calc(var(--neo-i, 0) * 90ms + 260ms);
}

.neo-panel-lines span:nth-child(1) { --neo-i: 1; }
.neo-panel-lines span:nth-child(2) { --neo-i: 2; }
.neo-panel-lines span:nth-child(3) { --neo-i: 3; }
.neo-panel-lines span:nth-child(4) { --neo-i: 4; }

.neo-strip {
  position: relative;
  overflow: hidden;
}

.neo-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: neoStripSweep 3800ms cubic-bezier(.16,1,.3,1) infinite;
  pointer-events: none;
}

.neo-cat,
.neo-steps div,
.neo-ind-grid a {
  transition: transform 320ms cubic-bezier(.16,1,.3,1), border-color 320ms ease, box-shadow 320ms ease, background 320ms ease, color 320ms ease;
}

.neo-cat::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  height: 3px;
  background: var(--neo-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(.16,1,.3,1);
}

.neo-cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

.neo-cat:hover::before {
  transform: scaleX(1);
}

.neo-process {
  background:
    linear-gradient(90deg, rgba(17,17,17,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17,17,17,0.04) 1px, transparent 1px),
    #fff;
  background-size: 56px 56px, 56px 56px, auto;
}

.neo-steps div:hover {
  padding-left: 18px;
  background: rgba(240,90,26,0.06);
}

.neo-ind-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

.motion-ready .neo-cat-grid:not(.is-visible) .neo-cat,
.motion-ready .neo-steps:not(.is-visible) div,
.motion-ready .neo-ind-grid:not(.is-visible) a {
  opacity: 0.62;
  transform: translateY(26px);
}

.motion-ready .neo-cat-grid .neo-cat,
.motion-ready .neo-steps div,
.motion-ready .neo-ind-grid a {
  transition-delay: calc(var(--neo-i, 0) * 70ms);
}

.neo-cat-grid .neo-cat:nth-child(1),
.neo-steps div:nth-child(1),
.neo-ind-grid a:nth-child(1) { --neo-i: 1; }
.neo-cat-grid .neo-cat:nth-child(2),
.neo-steps div:nth-child(2),
.neo-ind-grid a:nth-child(2) { --neo-i: 2; }
.neo-cat-grid .neo-cat:nth-child(3),
.neo-steps div:nth-child(3),
.neo-ind-grid a:nth-child(3) { --neo-i: 3; }
.neo-cat-grid .neo-cat:nth-child(4),
.neo-steps div:nth-child(4),
.neo-ind-grid a:nth-child(4) { --neo-i: 4; }
.neo-ind-grid a:nth-child(5) { --neo-i: 5; }
.neo-ind-grid a:nth-child(6) { --neo-i: 6; }

@keyframes neoRailBuild {
  from { opacity: 0; transform: scaleY(0); }
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes neoTextRise {
  from {
    opacity: 0.86;
    transform: translateY(18px);
    clip-path: inset(0 0 8% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes neoLineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes neoStripSweep {
  0% { transform: translateX(-100%); opacity: 0; }
  22% { opacity: 1; }
  64% { opacity: 0.42; }
  100% { transform: translateX(100%); opacity: 0; }
}

@media (max-width: 620px) {
  .neo-hero::before {
    top: 82px;
    bottom: 48px;
  }

  .neo-hero::after {
    background:
      linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 44%, rgba(0,0,0,0.64) 78%, rgba(0,0,0,0.48) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0.78));
  }

  .neo-hero-media img {
    object-position: 70% center;
  }

  .neo-actions .neo-btn-secondary {
    display: none;
  }

  .neo-hero-panel {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neo-home.neo-scrolled .header-redesign,
  .neo-home.neo-scrolled .hdr-inner,
  .motion-ready .neo-hero::before,
  .motion-ready .neo-hero-copy .neo-kicker,
  .motion-ready .neo-hero h1,
  .motion-ready .neo-lead,
  .motion-ready .neo-search,
  .motion-ready .neo-actions,
  .motion-ready .neo-hero-panel,
  .motion-ready .neo-panel-lines span,
  .motion-ready .neo-cat-grid:not(.is-visible) .neo-cat,
  .motion-ready .neo-steps:not(.is-visible) div,
  .motion-ready .neo-ind-grid:not(.is-visible) a,
  .neo-strip::before {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* ============ Framer-like solutions page ============ */
.framer-page {
  --fr-ink: #08080a;
  --fr-muted: #656875;
  --fr-soft: #f5f5f7;
  --fr-line: rgba(8,8,10,0.1);
  --fr-orange: #ff5a1f;
  margin: 0;
  background: #fff;
  color: var(--fr-ink);
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

.fr-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  width: min(100% - 40px, 1180px);
  height: 72px;
  margin: 14px auto 0;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 18px 60px rgba(15,23,42,0.1);
}

.fr-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fr-ink);
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
}

.fr-logo span {
  width: 10px;
  height: 28px;
  border-radius: 999px;
  background: var(--fr-orange);
}

.fr-nav nav {
  display: flex;
  gap: 26px;
}

.fr-nav nav a {
  color: rgba(8,8,10,0.72);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.fr-nav nav a:hover,
.fr-nav nav a[aria-current="page"] {
  color: var(--fr-ink);
}

.fr-nav-cta,
.fr-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.fr-nav-cta,
.fr-btn-dark {
  background: var(--fr-ink);
  color: #fff;
}

.fr-btn-light {
  background: #fff;
  color: var(--fr-ink);
  border: 1px solid var(--fr-line);
}

.fr-btn-white {
  background: #fff;
  color: var(--fr-ink);
}

.fr-hero {
  width: min(100% - 40px, 1240px);
  min-height: calc(100dvh - 96px);
  margin: -86px auto 0;
  padding: 170px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: 44px;
  align-items: center;
}

.fr-pill {
  margin: 0 0 16px;
  color: var(--fr-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fr-hero h1,
.fr-head h2,
.fr-panel-dark h2,
.fr-final h2 {
  margin: 0;
  color: var(--fr-ink);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.fr-lead,
.fr-head p,
.fr-panel-dark p,
.fr-final p {
  margin: 24px 0 0;
  max-width: 640px;
  color: var(--fr-muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.fr-hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: 38px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 10%, #fff 0%, #f4f4f7 42%, #e7e9ee 100%);
  box-shadow: 0 40px 120px rgba(15,23,42,0.16);
}

.fr-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.fr-float {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: 22px;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 18px 50px rgba(15,23,42,0.14);
}

.fr-float strong {
  font-size: 36px;
  line-height: 1;
}

.fr-float span {
  color: var(--fr-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fr-float-one {
  left: 24px;
  bottom: 34px;
}

.fr-float-two {
  right: 24px;
  top: 34px;
}

.fr-marquee {
  width: min(100% - 40px, 1240px);
  margin: 20px auto 0;
  display: flex;
  gap: 12px;
  overflow: hidden;
}

.fr-marquee span {
  flex: 1;
  min-width: max-content;
  padding: 16px 20px;
  border-radius: 999px;
  background: var(--fr-soft);
  color: rgba(8,8,10,0.62);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.fr-section {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.fr-head {
  max-width: 850px;
  margin-bottom: 34px;
}

.fr-head h2,
.fr-panel-dark h2,
.fr-final h2 {
  font-size: clamp(42px, 5.7vw, 82px);
}

.fr-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 300px;
  gap: 18px;
}

.fr-card {
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 32px;
  background: var(--fr-soft);
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(8,8,10,0.06);
}

.fr-card-large {
  grid-row: span 2;
}

.fr-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.16,1,.3,1);
}

.fr-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.7));
}

.fr-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.fr-card span {
  display: block;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 950;
  line-height: 1;
}

.fr-card b {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.fr-card:hover img {
  transform: scale(1.06);
}

.fr-card-soft {
  color: var(--fr-ink);
  background:
    radial-gradient(circle at 80% 0%, rgba(255,90,31,0.18), transparent 34%),
    linear-gradient(135deg, #fff, #eef1f6);
}

.fr-card-soft::after {
  display: none;
}

.fr-card-soft b {
  color: var(--fr-muted);
}

.fr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fr-panel-dark {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 86% 14%, rgba(255,90,31,0.34), transparent 28%),
    #09090b;
  color: #fff;
}

.fr-panel-dark h2 {
  color: #fff;
}

.fr-panel-dark p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

.fr-steps {
  display: grid;
  gap: 18px;
}

.fr-steps div {
  padding: 34px;
  border-radius: 30px;
  background: var(--fr-soft);
  border: 1px solid var(--fr-line);
}

.fr-steps span {
  color: var(--fr-orange);
  font-weight: 950;
}

.fr-steps strong {
  display: block;
  margin-top: 34px;
  font-size: 30px;
}

.fr-steps p {
  margin: 10px 0 0;
  color: var(--fr-muted);
  line-height: 1.6;
}

.fr-product-band {
  padding-top: 34px;
}

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

.fr-system-grid div {
  min-height: 180px;
  display: grid;
  align-content: end;
  padding: 24px;
  border-radius: 28px;
  background: var(--fr-soft);
  border: 1px solid var(--fr-line);
}

.fr-system-grid strong {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.fr-system-grid span {
  margin-top: 8px;
  color: var(--fr-muted);
  font-weight: 900;
}

.fr-final {
  width: min(100% - 40px, 1180px);
  margin: 0 auto 80px;
  padding: clamp(56px, 9vw, 110px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,0.64), transparent 34%),
    linear-gradient(135deg, #ff6a2a, #ff4f16);
  color: #fff;
  text-align: center;
}

.fr-final .fr-pill,
.fr-final h2,
.fr-final p {
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.fr-final .fr-btn {
  margin-top: 28px;
}

.fr-footer {
  width: min(100% - 40px, 1180px);
  margin: 0 auto 30px;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--fr-line);
}

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

.fr-footer div:last-child {
  display: flex;
  gap: 18px;
  align-items: start;
}

.fr-footer a {
  color: var(--fr-ink);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .fr-nav nav {
    display: none;
  }
  .fr-hero,
  .fr-split {
    grid-template-columns: 1fr;
  }
  .fr-hero {
    margin-top: -86px;
    padding-top: 142px;
  }
  .fr-hero-visual {
    min-height: 500px;
  }
  .fr-hero-visual img {
    min-height: 500px;
  }
  .fr-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .fr-card-large {
    grid-row: span 1;
  }
  .fr-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .fr-nav,
  .fr-hero,
  .fr-section,
  .fr-marquee,
  .fr-final,
  .fr-footer {
    width: min(100% - 24px, 1240px);
  }
  .fr-nav {
    height: 62px;
    border-radius: 18px;
  }
  .fr-nav-cta {
    min-height: 40px;
    padding: 0 16px;
  }
  .fr-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }
  .fr-lead,
  .fr-head p,
  .fr-panel-dark p,
  .fr-final p {
    font-size: 16px;
  }
  .fr-actions {
    display: grid;
  }
  .fr-btn {
    width: 100%;
  }
  .fr-hero-visual,
  .fr-hero-visual img {
    min-height: 420px;
  }
  .fr-showcase,
  .fr-system-grid {
    grid-template-columns: 1fr;
  }
  .fr-showcase {
    grid-auto-rows: 250px;
  }
  .fr-split {
    padding-top: 40px;
  }
  .fr-panel-dark {
    min-height: auto;
    border-radius: 28px;
  }
  .fr-footer,
  .fr-footer div:last-child {
    display: grid;
  }
}

/* ============ Factory credibility pass for Framer-like page ============ */
.factory-page {
  background:
    radial-gradient(circle at 76% 4%, rgba(255,90,31,0.08), transparent 26%),
    #fff;
}

.factory-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
}

.factory-hero .fr-hero h1,
.factory-hero h1 {
  max-width: 720px;
}

.factory-visual {
  background: #eef0f4;
}

.factory-visual img {
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.factory-page .fr-marquee span {
  background: #101014;
  color: rgba(255,255,255,0.82);
}

.factory-proof {
  padding-bottom: 44px;
}

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

.factory-proof-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--fr-line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,90,31,0.12), transparent 30%),
    #f6f6f8;
}

.factory-proof-card strong {
  color: var(--fr-orange);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.factory-proof-card h3 {
  margin: auto 0 12px;
  color: var(--fr-ink);
  font-size: 34px;
  line-height: 1;
}

.factory-proof-card p {
  margin: 0;
  color: var(--fr-muted);
  font-size: 16px;
  line-height: 1.65;
}

.factory-floor {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 22px;
  align-items: stretch;
  padding-top: 44px;
}

.factory-floor-image {
  min-height: 620px;
  border-radius: 40px;
  overflow: hidden;
  background: #101014;
  box-shadow: 0 34px 100px rgba(15,23,42,0.16);
}

.factory-floor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.factory-floor-copy {
  padding: clamp(30px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 40px;
  background: #101014;
  color: #fff;
}

.factory-floor-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
}

.factory-floor-copy p {
  margin: 22px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.7;
}

.factory-mini-stats {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.factory-mini-stats div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.factory-mini-stats strong {
  color: var(--fr-orange);
  font-size: 42px;
  line-height: 0.9;
}

.factory-mini-stats span {
  color: rgba(255,255,255,0.62);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.factory-split .fr-panel-dark {
  background:
    radial-gradient(circle at 88% 12%, rgba(255,90,31,0.30), transparent 26%),
    linear-gradient(135deg, #09090b, #15151a);
}

.factory-final {
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,0.58), transparent 34%),
    linear-gradient(135deg, #101014 0%, #282830 42%, #ff5a1f 100%);
}

@media (max-width: 980px) {
  .factory-hero,
  .factory-floor {
    grid-template-columns: 1fr;
  }
  .factory-proof-grid {
    grid-template-columns: 1fr;
  }
  .factory-floor-image {
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .factory-proof-card {
    min-height: 230px;
    border-radius: 24px;
    padding: 24px;
  }
  .factory-proof-card h3 {
    font-size: 30px;
  }
  .factory-floor-image {
    min-height: 320px;
    border-radius: 28px;
  }
  .factory-floor-copy {
    border-radius: 28px;
  }
  .factory-mini-stats strong {
    font-size: 34px;
  }
}

/* ============ Cinematic factory concept ============ */
.cinema-factory {
  --cf-bg: #050506;
  --cf-ink: #f7f7f3;
  --cf-muted: rgba(247,247,243,0.68);
  --cf-line: rgba(255,255,255,0.14);
  --cf-orange: #ff5a1f;
  margin: 0;
  background: var(--cf-bg) !important;
  color: var(--cf-ink);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

.cinema-factory main {
  background: var(--cf-bg) !important;
}

.cinema-factory .cf-section {
  background: transparent !important;
}

.cinema-factory .cf-capacity {
  background:
    linear-gradient(90deg, rgba(8,8,10,0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8,8,10,0.045) 1px, transparent 1px),
    #eeeeea !important;
  background-size: 64px 64px, 64px 64px, auto !important;
  padding-left: max(32px, calc((100vw - 1280px) / 2));
  padding-right: max(32px, calc((100vw - 1280px) / 2));
  width: 100%;
}

.cf-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 1200;
  width: min(100% - 48px, 1280px);
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 12px 0 22px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(5,5,6,0.68);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  transition: height 240ms ease, top 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.cinema-factory.cf-scrolled .cf-nav,
.products-cinema.cf-scrolled .cf-nav,
.site-cinema.cf-scrolled .cf-nav {
  top: 10px;
  height: 58px;
  background: rgba(5,5,6,0.86);
  border-color: rgba(255,255,255,0.26);
  box-shadow: 0 20px 80px rgba(0,0,0,0.34);
}

.products-cinema .cf-nav,
.site-cinema .cf-nav {
  will-change: top, height, background;
}

.cf-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 950;
  text-decoration: none;
}

.cf-logo span {
  width: 10px;
  height: 32px;
  background: var(--cf-orange);
}

.cf-nav nav {
  display: flex;
  gap: 28px;
}

.cf-nav nav a,
.cf-footer a {
  position: relative;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cf-nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--cf-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms cubic-bezier(.16,1,.3,1);
}

.cf-nav nav a:hover,
.cf-nav nav a[aria-current="page"],
.cf-footer a:hover {
  color: #fff;
}

.cf-nav nav a:hover::after,
.cf-nav nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.cf-nav-cta {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--cf-orange);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}

.cf-hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.cf-hero::before {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2));
  top: 128px;
  bottom: 154px;
  z-index: -1;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--cf-orange) 18%, rgba(255,90,31,0.18) 72%, transparent);
  box-shadow: 0 0 34px rgba(255,90,31,0.34);
  transform-origin: top;
}

.cf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 42%, rgba(255,90,31,0.14) 48%, transparent 55%),
    linear-gradient(180deg, transparent 0 82%, rgba(255,90,31,0.08) 100%);
  mix-blend-mode: screen;
  opacity: 0;
}

.cf-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
  transform: translate3d(0, var(--cf-hero-y, 0), 0) scale(1.04);
  filter: contrast(1.06) saturate(0.98);
  will-change: transform;
}

.cf-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.72) 34%, rgba(0,0,0,0.28) 72%, rgba(0,0,0,0.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.08) 45%, #050506 100%);
}

.cf-hero-inner {
  width: min(100% - 64px, 1280px);
  min-height: 100dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 170px;
}

.cf-kicker {
  margin: 0 0 18px;
  color: var(--cf-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cf-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 9vw, 142px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.cf-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

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

.cf-btn {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,0.26);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  isolation: isolate;
}

.cf-btn::after,
.cf-nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 520ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}

.cf-btn:hover,
.cf-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255,90,31,0.18);
}

.cf-btn:hover::after,
.cf-nav-cta:hover::after {
  transform: translateX(120%);
}

.cf-btn:active,
.cf-nav-cta:active {
  transform: translateY(1px);
}

.cf-btn-orange {
  border-color: var(--cf-orange);
  background: var(--cf-orange);
}

.cf-btn-ghost {
  border-color: rgba(255,255,255,0.34);
  background: rgba(5,5,6,0.72);
  backdrop-filter: blur(10px);
}

.cf-hero-stats {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(100% - 64px, 1280px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(16px);
}

.cf-hero-stats div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.14);
}

.cf-hero-stats div:last-child {
  border-right: 0;
}

.cf-hero-stats strong {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.9;
}

.cf-hero-stats span {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.cf-blackband {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--cf-line);
  border-bottom: 1px solid var(--cf-line);
  overflow: hidden;
  background: #070708;
}

.cf-blackband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,90,31,0.18), transparent);
  transform: translateX(-100%);
  pointer-events: none;
}

.cf-blackband span {
  position: relative;
  min-height: 76px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--cf-line);
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: color 240ms ease, background 240ms ease;
}

.cf-blackband span:hover {
  background: rgba(255,90,31,0.12);
  color: #fff;
}

.cf-application-strip {
  width: min(100% - 64px, 1280px);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    #0d0d10;
  background-size: 42px 42px, auto;
}

.cf-application-strip div {
  min-height: 132px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.cf-application-strip div:last-child {
  border-right: 0;
}

.cf-application-strip strong {
  color: #fff;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1;
}

.cf-application-strip span {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  font-weight: 900;
}

.cf-sector-board {
  padding-bottom: clamp(40px, 6vw, 86px);
}

.cf-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    #0d0d10;
  background-size: 52px 52px, 52px 52px, auto;
}

.cf-sector-grid article {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 24px;
  padding: clamp(22px, 2.4vw, 34px);
  border-right: 1px solid rgba(255,255,255,0.13);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.cf-sector-grid article:last-child {
  border-right: 0;
}

.cf-sector-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--cf-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(.16,1,.3,1);
}

.cf-sector-grid article::after {
  content: "";
  position: absolute;
  right: -64px;
  top: -64px;
  width: 178px;
  height: 178px;
  border: 1px solid rgba(255,90,31,0.26);
  transform: rotate(24deg);
}

.cf-sector-grid article:hover::before {
  transform: scaleX(1);
}

.cf-sector-grid article:hover {
  background:
    radial-gradient(circle at 90% 0%, rgba(255,90,31,0.18), transparent 34%),
    rgba(255,255,255,0.035);
}

.cf-sector-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--cf-orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cf-sector-grid h3 {
  margin: 0;
  max-width: 8ch;
  color: #fff;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 0.96;
}

.cf-sector-grid p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.75;
}

.cf-sector-grid ul {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.cf-sector-grid li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.cf-sector-grid li:last-child {
  border-bottom: 0;
}

.cf-section {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: clamp(86px, 11vw, 150px) 0;
}

.cf-section-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.cf-section h2,
.cf-wall-copy h2,
.cf-line-panel h2,
.cf-capacity h2,
.cf-rfq h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

.cf-proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(255,90,31,0.26) 22% 22.3%, transparent 22.3% 100%),
    var(--cf-line);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.cf-proof-grid article {
  position: relative;
  min-height: 338px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 90% 0%, rgba(255,90,31,0.16), transparent 30%),
    #111115;
  background-size: auto, 44px 44px, 44px 44px, auto, auto;
  transition: transform 320ms cubic-bezier(.16,1,.3,1), background 320ms ease, border-color 320ms ease;
  overflow: hidden;
}

.cf-proof-grid article::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--cf-orange), transparent);
  opacity: 0.58;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(.16,1,.3,1), opacity 520ms ease;
}

.cf-proof-grid article::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 58px;
  height: 58px;
  border-top: 1px solid rgba(255,90,31,0.44);
  border-right: 1px solid rgba(255,90,31,0.44);
  opacity: 0.7;
}

.cf-proof-grid article:hover {
  transform: translateY(-8px);
  background:
    radial-gradient(circle at 84% 0%, rgba(255,90,31,0.28), transparent 34%),
    #15151a;
}

.cf-proof-grid article:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.cf-proof-grid span {
  margin-bottom: 68px;
  color: var(--cf-orange);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.82;
  font-weight: 950;
  opacity: 0.9;
}

.cf-proof-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1;
}

.cf-proof-grid p,
.cf-wall-copy p,
.cf-line-panel p,
.cf-rfq p {
  margin: 0;
  color: var(--cf-muted);
  font-size: 16px;
  line-height: 1.65;
}

.cf-product-wall {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: 42px;
  align-items: start;
}

.cf-wall-copy {
  position: sticky;
  top: 120px;
}

.cf-wall-copy p {
  margin-top: 22px;
  max-width: 440px;
}

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

.cf-product-tile {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  text-decoration: none;
  background: #101014;
  isolation: isolate;
  transition: transform 360ms cubic-bezier(.16,1,.3,1), border-color 360ms ease, box-shadow 360ms ease;
}

.cf-product-tile::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  height: 2px;
  background: var(--cf-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(.16,1,.3,1);
}

.cf-product-tile-big {
  grid-row: span 2;
  min-height: 596px;
}

.cf-product-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.78;
  filter: saturate(0.92) contrast(1.08) brightness(0.86);
  transition: transform 600ms cubic-bezier(.16,1,.3,1), opacity 600ms cubic-bezier(.16,1,.3,1);
}

.cf-product-tile-big img {
  object-position: 80% center;
}

.cf-product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.22), transparent 42%),
    radial-gradient(circle at 72% 18%, rgba(255,90,31,0.16), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.54) 48%, rgba(0,0,0,0.94) 100%);
  transition: opacity 420ms ease;
}

.cf-product-tile b,
.cf-product-tile span {
  position: relative;
  z-index: 1;
}

.cf-product-tile b {
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  text-shadow: 0 14px 36px rgba(0,0,0,0.52);
}

.cf-product-tile span {
  margin-top: 10px;
  max-width: 32ch;
  color: rgba(255,255,255,0.78);
  font-weight: 900;
  line-height: 1.45;
}

.cf-product-tile:hover img {
  transform: scale(1.06);
  opacity: 0.92;
}

.cf-product-tile:hover::before {
  transform: scaleX(1);
}

.cf-product-tile:hover {
  border-color: rgba(255,90,31,0.54);
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.34);
}

.cf-product-tile-text {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 0%, rgba(255,90,31,0.28), transparent 34%),
    #17171c;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.cf-product-tile-text::after {
  background:
    linear-gradient(135deg, transparent, rgba(255,90,31,0.16)),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.42));
}

.cf-line {
  width: min(100% - 64px, 1280px);
  display: grid;
  grid-template-columns: minmax(460px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.cf-line-image {
  position: relative;
  min-height: 460px;
  max-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: #101014;
}

.cf-line-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.28), transparent 44%, rgba(0,0,0,0.36)),
    linear-gradient(180deg, transparent 68%, rgba(0,0,0,0.42));
  pointer-events: none;
}

.cf-line-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, var(--cf-line-y, 0), 0) scale(1.05);
  will-change: transform;
}

.cf-line-image .cf-line-process-img {
  object-position: 50% 54%;
}

.cf-line-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.5vw, 64px);
  background: #f2f2ee;
  color: #08080a;
  border: 1px solid rgba(8,8,10,0.12);
}

.cf-line-panel h2,
.cf-capacity h2 {
  color: #08080a;
}

.cf-line-panel h2 {
  max-width: 760px;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1;
}

.cf-line-panel p {
  margin-top: 22px;
  max-width: 720px;
  color: #4f5158;
}

.cf-line-panel ul {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(8,8,10,0.14);
}

.cf-line-panel li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(8,8,10,0.14);
  color: #08080a;
  font-weight: 900;
  transition: padding-left 260ms cubic-bezier(.16,1,.3,1), color 260ms ease;
}

.cf-line-panel li strong {
  color: var(--cf-orange);
}

.cf-line-panel li:hover {
  padding-left: 10px;
  color: #c23a13;
}

.cf-capacity {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: end;
  background: #eeeeea;
  color: #08080a;
  overflow: hidden;
}

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

.cf-capacity::before {
  content: "PERSOLY / CAPACITY";
  position: absolute;
  right: max(32px, calc((100vw - 1280px) / 2));
  top: 34px;
  color: rgba(8,8,10,0.16);
  font-size: clamp(46px, 8vw, 132px);
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
}

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

.cf-capacity-grid div {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: grid;
  align-content: end;
  padding: 22px;
  border: 1px solid rgba(8,8,10,0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.84), rgba(255,255,255,0.58)),
    #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 260ms cubic-bezier(.16,1,.3,1), box-shadow 260ms ease, border-color 260ms ease;
}

.cf-capacity-grid div::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--cf-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.16,1,.3,1);
}

.cf-capacity-grid div::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-top: 1px solid rgba(8,8,10,0.18);
  border-right: 1px solid rgba(8,8,10,0.18);
}

.cf-capacity-grid div:hover {
  transform: translateY(-6px);
  border-color: rgba(255,90,31,0.42);
  box-shadow: 0 24px 54px rgba(8,8,10,0.14);
}

.cf-capacity-grid div:hover::before {
  transform: scaleX(1);
}

.cf-capacity-grid strong {
  color: #08080a;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
}

.cf-capacity-grid span {
  margin-top: 8px;
  color: #555860;
  font-weight: 950;
}

.cf-rfq {
  position: relative;
  overflow: hidden;
  width: min(100% - 64px, 1280px);
  margin: 0 auto 76px;
  padding: clamp(58px, 9vw, 110px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.07) 1px, transparent 1px),
    radial-gradient(circle at 82% 10%, rgba(255,255,255,0.2), transparent 28%),
    linear-gradient(135deg, #ff5a1f, #92280f 48%, #121214);
  background-size: 56px 56px, 56px 56px, auto, auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.cf-rfq::before {
  content: "RFQ";
  position: absolute;
  left: 34px;
  bottom: -0.18em;
  color: rgba(255,255,255,0.09);
  font-size: clamp(120px, 20vw, 270px);
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

.cf-rfq::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}

.cf-rfq .cf-kicker,
.cf-rfq h2 {
  position: relative;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.cf-rfq p {
  position: relative;
  max-width: 680px;
  margin: 22px auto 30px;
  color: rgba(255,255,255,0.78);
  z-index: 1;
}

.cf-rfq .cf-btn {
  z-index: 1;
  min-width: 230px;
  background: #050506;
  border-color: rgba(255,255,255,0.28);
}

.cf-footer {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 34px 0 46px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--cf-line);
}

.cf-footer p {
  margin: 0;
  color: rgba(255,255,255,0.52);
}

.cf-footer div {
  display: flex;
  gap: 18px;
}

@media (max-width: 980px) {
  .cf-nav nav {
    display: none;
  }
  .cf-hero-inner,
  .cf-section,
  .cf-application-strip,
  .cf-rfq,
  .cf-footer,
  .cf-hero-stats {
    width: min(100% - 32px, 1280px);
  }
  .cf-proof-grid,
  .cf-product-wall,
  .cf-line,
  .cf-capacity {
    grid-template-columns: 1fr;
  }
  .cf-wall-copy {
    position: static;
  }
  .cf-blackband {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cf-application-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cf-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cf-sector-grid article {
    min-height: 430px;
  }
  .cf-sector-grid article:nth-child(2) {
    border-right: 0;
  }
  .cf-sector-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255,255,255,0.13);
  }
  .cf-application-strip div:nth-child(2) {
    border-right: 0;
  }
  .cf-application-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .cf-capacity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cf-line-image {
    min-height: 460px;
  }
  .cf-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .cf-nav {
    top: 12px;
    width: min(100% - 24px, 1280px);
    height: 60px;
  }
  .cf-hero {
    min-height: auto;
    padding-bottom: 26px;
  }
  .cf-hero::before {
    top: 118px;
    bottom: 210px;
  }
  .cf-hero-inner {
    min-height: 610px;
    justify-content: flex-start;
    padding: 118px 0 62px;
  }
  .cf-hero h1 {
    max-width: 350px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.94;
  }
  .cf-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }
  .cf-hero-actions {
    margin-top: 24px;
    gap: 10px;
  }
  .cf-hero-actions .cf-btn-ghost {
    display: none;
  }
  .cf-hero-actions,
  .cf-footer div {
    display: grid;
  }
  .cf-btn {
    width: 100%;
  }
  .cf-hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 0 auto;
    grid-template-columns: 1fr;
    background: rgba(0,0,0,0.68);
  }
  .cf-hero-stats div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }
  .cf-blackband {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cf-section,
  .cf-application-strip,
  .cf-rfq {
    width: min(100% - 24px, 1280px);
  }
  .cf-section,
  .cf-rfq {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .cf-application-strip {
    margin-top: 18px;
    grid-template-columns: 1fr;
  }
  .cf-sector-grid {
    grid-template-columns: 1fr;
  }
  .cf-sector-grid article,
  .cf-sector-grid article:nth-child(2) {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.13);
  }
  .cf-sector-grid article:last-child {
    border-bottom: 0;
  }
  .cf-sector-grid h3 {
    max-width: 100%;
    font-size: 34px;
  }
  .cf-application-strip div,
  .cf-application-strip div:nth-child(2) {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .cf-application-strip div:last-child {
    border-bottom: 0;
  }
  .cf-proof-grid article {
    min-height: 238px;
    padding: 24px;
  }
  .cf-proof-grid article::before {
    left: 24px;
    right: 24px;
    top: 24px;
  }
  .cf-proof-grid article::after {
    right: 22px;
    top: 22px;
  }
  .cf-proof-grid span {
    margin-bottom: 42px;
    font-size: 42px;
  }
  .cf-proof-grid h3 {
    font-size: 28px;
  }
  .cf-wall-grid,
  .cf-capacity-grid {
    grid-template-columns: 1fr;
  }
  .cf-capacity::before {
    top: 30px;
    right: 12px;
    color: rgba(8,8,10,0.09);
    font-size: 46px;
  }
  .cf-capacity-grid div {
    min-height: 150px;
  }
  .cf-product-tile,
  .cf-product-tile-big {
    min-height: 260px;
    grid-row: auto;
  }
  .cf-line-image {
    min-height: 320px;
  }
  .cf-line-panel {
    padding: 32px 24px;
  }
  .cf-rfq {
    padding-left: 24px;
    padding-right: 24px;
  }
  .cf-rfq::before {
    left: 12px;
    font-size: 94px;
  }
  .cf-rfq::after {
    inset: 10px;
  }
}

/* Cinematic motion layer */
.cf-motion-ready .cf-nav {
  animation: cfNavDrop 760ms cubic-bezier(.16,1,.3,1) both;
}

.cf-motion-ready .cf-hero-img {
  animation: cfHeroImage 1800ms cubic-bezier(.16,1,.3,1) both;
}

.cf-motion-ready .cf-hero::before {
  transform: scaleY(0);
  animation: cfRailBuild 980ms cubic-bezier(.16,1,.3,1) 360ms both;
}

.cf-motion-ready .cf-hero::after {
  animation: cfHeroSweep 1600ms cubic-bezier(.16,1,.3,1) 420ms both;
}

.cf-motion-ready .cf-hero .cf-kicker,
.cf-motion-ready .cf-hero h1,
.cf-motion-ready .cf-lead,
.cf-motion-ready .cf-hero-actions {
  opacity: 0.82;
  transform: translateY(18px);
  animation: cfHeroText 820ms cubic-bezier(.16,1,.3,1) both;
}

.cf-motion-ready .cf-hero .cf-kicker { animation-delay: 160ms; }
.cf-motion-ready .cf-hero h1 { animation-delay: 260ms; }
.cf-motion-ready .cf-lead { animation-delay: 410ms; }
.cf-motion-ready .cf-hero-actions { animation-delay: 540ms; }

.cf-motion-ready .cf-hero-stats {
  opacity: 0.82;
  transform: translateX(-50%) translateY(22px);
  animation: cfStatsIn 780ms cubic-bezier(.16,1,.3,1) 700ms both;
}

.cf-motion-ready [data-cf-reveal] {
  opacity: 0.92;
  transform: translateY(24px);
  filter: saturate(0.9);
  transition:
    opacity 820ms cubic-bezier(.16,1,.3,1),
    transform 820ms cubic-bezier(.16,1,.3,1),
    filter 820ms cubic-bezier(.16,1,.3,1);
}

.cf-motion-ready [data-cf-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: saturate(1);
}

.cf-motion-ready .cf-blackband::before {
  transition: transform 980ms cubic-bezier(.16,1,.3,1);
}

.cf-motion-ready .cf-blackband.is-visible::before {
  transform: translateX(100%);
}

.cf-motion-ready .cf-blackband span {
  transition:
    opacity 620ms cubic-bezier(.16,1,.3,1),
    transform 620ms cubic-bezier(.16,1,.3,1),
    color 240ms ease,
    background 240ms ease;
  transition-delay: calc(var(--cf-i, 0) * 55ms);
}

.cf-motion-ready .cf-blackband:not(.is-visible) span {
  opacity: 0.42;
  transform: translateY(14px);
}

.cf-motion-ready .cf-proof-grid article,
.cf-motion-ready .cf-wall-grid .cf-product-tile,
.cf-motion-ready .cf-capacity-grid div {
  transition-delay: calc(var(--cf-i, 0) * 80ms);
}

.cf-motion-ready .cf-manufacturing:not(.is-visible) .cf-proof-grid article,
.cf-motion-ready .cf-product-wall:not(.is-visible) .cf-wall-grid .cf-product-tile,
.cf-motion-ready .cf-capacity:not(.is-visible) .cf-capacity-grid div {
  opacity: 0.55;
  transform: translateY(28px);
}

.cf-motion-ready .cf-product-wall:not(.is-visible) .cf-product-tile-big {
  transform: translateY(34px) scale(0.985);
}

.cf-motion-ready .cf-line:not(.is-visible) .cf-line-image img {
  transform: translate3d(0, 18px, 0) scale(1.08);
}

.cf-motion-ready .cf-line:not(.is-visible) .cf-line-panel li {
  opacity: 0.42;
  transform: translateX(18px);
}

.cf-motion-ready .cf-line-panel li {
  transition:
    opacity 620ms cubic-bezier(.16,1,.3,1),
    transform 620ms cubic-bezier(.16,1,.3,1),
    padding-left 260ms cubic-bezier(.16,1,.3,1),
    color 260ms ease;
  transition-delay: calc(var(--cf-i, 0) * 70ms);
}

.cf-line-panel li:nth-child(1) { --cf-i: 1; }
.cf-line-panel li:nth-child(2) { --cf-i: 2; }
.cf-line-panel li:nth-child(3) { --cf-i: 3; }
.cf-line-panel li:nth-child(4) { --cf-i: 4; }

.cf-motion-ready .cf-rfq.is-visible {
  animation: cfRfqIgnite 920ms cubic-bezier(.16,1,.3,1) both;
}

.cf-blackband span:nth-child(1),
.cf-proof-grid article:nth-child(1),
.cf-wall-grid .cf-product-tile:nth-child(1),
.cf-capacity-grid div:nth-child(1) { --cf-i: 1; }
.cf-blackband span:nth-child(2),
.cf-proof-grid article:nth-child(2),
.cf-wall-grid .cf-product-tile:nth-child(2),
.cf-capacity-grid div:nth-child(2) { --cf-i: 2; }
.cf-blackband span:nth-child(3),
.cf-proof-grid article:nth-child(3),
.cf-wall-grid .cf-product-tile:nth-child(3),
.cf-capacity-grid div:nth-child(3) { --cf-i: 3; }
.cf-blackband span:nth-child(4),
.cf-wall-grid .cf-product-tile:nth-child(4),
.cf-capacity-grid div:nth-child(4) { --cf-i: 4; }
.cf-blackband span:nth-child(5) { --cf-i: 5; }
.cf-blackband span:nth-child(6) { --cf-i: 6; }

@keyframes cfNavDrop {
  from { opacity: 0; transform: translateX(-50%) translateY(-18px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes cfHeroImage {
  from {
    opacity: 0.72;
    transform: translate3d(0, var(--cf-hero-y, 0), 0) scale(1.11);
    filter: contrast(0.94) saturate(0.82) blur(5px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, var(--cf-hero-y, 0), 0) scale(1.04);
    filter: contrast(1.06) saturate(0.98) blur(0);
  }
}

@keyframes cfHeroText {
  from {
    opacity: 0.82;
    transform: translateY(18px);
    clip-path: inset(0 0 8% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes cfRailBuild {
  from { opacity: 0; transform: scaleY(0); }
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes cfHeroSweep {
  0% {
    opacity: 0;
    transform: translateX(-18%);
  }
  38% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateX(34%);
  }
}

@keyframes cfStatsIn {
  from {
    opacity: 0.82;
    transform: translateX(-50%) translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes cfRfqIgnite {
  from {
    background-position: 0 0, -80px 0;
    box-shadow: 0 0 0 rgba(255,90,31,0);
  }
  to {
    background-position: 0 0, 0 0;
    box-shadow: 0 30px 90px rgba(255,90,31,0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cf-motion-ready .cf-nav,
  .cf-motion-ready .cf-hero-img,
  .cf-motion-ready .cf-hero::before,
  .cf-motion-ready .cf-hero::after,
  .cf-motion-ready .cf-hero .cf-kicker,
  .cf-motion-ready .cf-hero h1,
  .cf-motion-ready .cf-lead,
  .cf-motion-ready .cf-hero-actions,
  .cf-motion-ready .cf-hero-stats,
  .cf-motion-ready [data-cf-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .cf-motion-ready .cf-blackband:not(.is-visible) span,
  .cf-motion-ready .cf-manufacturing:not(.is-visible) .cf-proof-grid article,
  .cf-motion-ready .cf-product-wall:not(.is-visible) .cf-wall-grid .cf-product-tile,
  .cf-motion-ready .cf-capacity:not(.is-visible) .cf-capacity-grid div,
  .cf-motion-ready .cf-line:not(.is-visible) .cf-line-panel li {
    opacity: 1 !important;
    transform: none !important;
  }
  .cf-motion-ready .cf-hero-stats {
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 620px) {
  .cf-motion-ready .cf-hero-stats {
    transform: translateY(18px);
    animation: cfMobileStatsIn 720ms cubic-bezier(.16,1,.3,1) 620ms both;
  }

  @keyframes cfMobileStatsIn {
    from {
      opacity: 0.82;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 620px) and (prefers-reduced-motion: reduce) {
  .cf-motion-ready .cf-hero-stats {
    transform: none !important;
  }
}

/* ============ Product center cinema catalog ============ */
.products-cinema {
  --pc-bg: #050506;
  --pc-ink: #f7f7f3;
  --pc-paper: #eeeeea;
  --pc-muted: rgba(247,247,243,0.68);
  --pc-line: rgba(255,255,255,0.14);
  --pc-orange: #ff5a1f;
  margin: 0;
  background: var(--pc-bg);
  color: var(--pc-ink);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

.products-cinema main {
  background: var(--pc-bg);
}

.products-cinema .cf-footer {
  width: 100%;
  margin-bottom: 0;
  padding-left: max(32px, calc((100vw - 1280px) / 2));
  padding-right: max(32px, calc((100vw - 1280px) / 2));
  padding-bottom: 64px;
  background: var(--pc-bg);
}

.pc-hero {
  position: relative;
  min-height: 92dvh;
  overflow: hidden;
  isolation: isolate;
}

.pc-hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(0.9);
  transform: scale(1.05);
}

.pc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.8) 38%, rgba(0,0,0,0.38) 70%, rgba(0,0,0,0.64) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18), var(--pc-bg) 100%);
}

.pc-hero::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2));
  top: 130px;
  bottom: 150px;
  z-index: -1;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--pc-orange), rgba(255,90,31,0.16), transparent);
  box-shadow: 0 0 34px rgba(255,90,31,0.34);
}

.pc-hero-inner {
  width: min(100% - 64px, 1280px);
  min-height: 92dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 132px 0 180px;
}

.pc-kicker {
  margin: 0 0 18px;
  color: var(--pc-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pc-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
}

.pc-hero p:not(.pc-kicker) {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.6;
}

.pc-search {
  width: min(100%, 720px);
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(0,0,0,0.62);
}

.pc-search input,
.pc-search button,
.pc-toolbar select,
.pc-card-actions button {
  border-radius: 0;
  font: inherit;
}

.pc-search input {
  min-width: 0;
  min-height: 60px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: #fff;
  outline: 0;
}

.pc-search input::placeholder {
  color: rgba(255,255,255,0.54);
}

.pc-search button {
  border: 0;
  background: var(--pc-orange);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.pc-hero-stats {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(100% - 64px, 1280px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(16px);
}

.pc-hero-stats div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.14);
}

.pc-hero-stats div:last-child {
  border-right: 0;
}

.pc-hero-stats strong {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 70px);
  line-height: 0.9;
}

.pc-hero-stats span {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pc-cats {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.pc-cat {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #111115;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.pc-cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 560ms cubic-bezier(.16,1,.3,1), opacity 560ms ease;
}

.pc-cat::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  height: 3px;
  background: var(--pc-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.16,1,.3,1);
}

.pc-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.84));
}

.pc-cat span,
.pc-cat b {
  position: relative;
  z-index: 1;
}

.pc-cat span {
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 950;
  line-height: 1;
}

.pc-cat b {
  margin-top: 9px;
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  text-transform: uppercase;
}

.pc-cat.text-cat {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 90, 31, 0.22), transparent 28%),
    linear-gradient(145deg, #191919 0%, #070707 66%, #201914 100%);
}

.pc-cat.text-cat::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.48));
  opacity: 0.8;
}

.pc-cat-code {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  color: rgba(255,255,255,0.9);
  font-size: clamp(42px, 4.8vw, 76px);
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.pc-cat.text-cat b {
  color: rgba(255,255,255,0.6);
}

.pc-cat:hover,
.pc-cat.is-active {
  border-color: rgba(255,90,31,0.66);
}

.pc-cat:hover img,
.pc-cat.is-active img {
  transform: scale(1.06);
  opacity: 0.82;
}

.pc-cat:hover::before,
.pc-cat.is-active::before {
  transform: scaleX(1);
}

.pc-shell {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
  padding: 42px 0 100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.pc-aside {
  position: relative;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(170px, 0.45fr) minmax(0, 1.8fr);
  gap: 14px;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.14);
  background: #101014;
}

.pc-aside h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}

.pc-aside-card {
  min-height: 96px;
  display: grid;
  align-content: end;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.pc-aside-card strong {
  color: var(--pc-orange);
  max-width: 100%;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.pc-aside-card span,
.pc-mini span {
  color: rgba(255,255,255,0.62);
  font-weight: 900;
  text-transform: uppercase;
}

.pc-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
  border-top: 0;
}

.pc-mini span {
  min-height: 96px;
  padding: 14px;
  display: flex;
  align-items: end;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  line-height: 1.25;
}

.pc-list-area {
  min-width: 0;
}

.pc-toolbar {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #101014;
}

.pc-toolbar strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.pc-toolbar span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.58);
}

.pc-toolbar select {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: #050506;
  color: #fff;
}

.pc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.pc-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(255,255,255,0.14);
  background: #101014;
  color: #fff;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.16,1,.3,1), border-color 300ms ease, box-shadow 300ms ease;
}

.pc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,90,31,0.54);
  box-shadow: 0 26px 64px rgba(0,0,0,0.32);
}

.pc-card-no-photo {
  grid-template-rows: 1fr;
  background:
    linear-gradient(135deg, rgba(255,90,31,0.1), transparent 38%),
    #101014;
}

.pc-card-img {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,1) 0 58%, rgba(244,244,242,1) 100%);
}

.pc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  transition: transform 520ms cubic-bezier(.16,1,.3,1);
}

.pc-card-img img.pc-product-photo {
  box-sizing: border-box;
  padding: clamp(16px, 1.8vw, 24px);
  object-fit: contain;
  object-position: center;
  background: transparent;
  opacity: 1;
}

.pc-card-img img.pc-category-photo {
  object-fit: cover;
  background: #050506;
}

.pc-card:hover .pc-card-img img {
  transform: scale(1.06);
}

.pc-card:hover .pc-card-img img.pc-product-photo {
  transform: scale(1.015);
}

.persoly-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  padding: clamp(16px, 2.4vw, 30px);
  background:
    linear-gradient(135deg, rgba(255,90,31,0.08), transparent 34%),
    linear-gradient(90deg, rgba(8,8,10,0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8,8,10,0.05) 1px, transparent 1px),
    #fff;
  background-size: auto, 38px 38px, 38px 38px, auto;
  color: #08080a;
}

.persoly-placeholder::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(8,8,10,0.1);
  pointer-events: none;
}

.ph-mark {
  position: relative;
  z-index: 1;
  color: #d11212;
  font-size: clamp(18px, 2.1vw, 32px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.ph-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(78%, 360px);
  height: min(72%, 360px);
  min-height: 140px;
  display: grid;
  place-items: center;
}

.ph-filter-core {
  position: absolute;
  width: 42%;
  min-width: 76px;
  max-width: 160px;
  height: 78%;
  border: 2px solid rgba(8,8,10,0.24);
  border-radius: 999px / 12%;
  background:
    repeating-linear-gradient(90deg, rgba(8,8,10,0.12) 0 2px, transparent 2px 8px),
    linear-gradient(90deg, rgba(255,255,255,0.1), rgba(8,8,10,0.08), rgba(255,255,255,0.18));
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,0.46),
    0 22px 44px rgba(8,8,10,0.12);
}

.ph-filter-core::before,
.ph-filter-core::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  height: 13%;
  border-radius: 50%;
  background: linear-gradient(180deg, #f9f9f7, #b8bab8);
  border: 1px solid rgba(8,8,10,0.22);
}

.ph-filter-core::before {
  top: -5%;
}

.ph-filter-core::after {
  bottom: -5%;
}

.ph-filter-lines {
  position: absolute;
  right: 4%;
  width: 34%;
  height: 54%;
  border: 1px solid rgba(8,8,10,0.16);
  background:
    repeating-linear-gradient(180deg, rgba(8,8,10,0.26) 0 2px, transparent 2px 9px),
    linear-gradient(135deg, rgba(255,90,31,0.14), transparent);
  transform: skewX(-9deg);
  opacity: 0.76;
}

.ph-filter-cap {
  position: absolute;
  left: 5%;
  bottom: 13%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 9px solid rgba(8,8,10,0.18);
  background:
    radial-gradient(circle at center, #fff 0 28%, rgba(8,8,10,0.2) 29% 36%, #fff 37% 100%);
  box-shadow: 0 18px 34px rgba(8,8,10,0.12);
}

.ph-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  border-top: 2px solid rgba(255,90,31,0.86);
  padding-top: 12px;
}

.ph-meta span {
  color: #ff5a1f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.ph-meta strong {
  color: #08080a;
  font-size: clamp(22px, 2.8vw, 42px);
  line-height: 0.94;
  text-align: right;
}

.ph-card {
  aspect-ratio: 4 / 3;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255,90,31,0.055), transparent 38%),
    #fff;
}

.ph-card .ph-mark {
  font-size: 18px;
}

.ph-card .ph-visual {
  display: none;
}

.ph-card .ph-filter-lines {
  display: none;
}

.ph-card .ph-meta {
  align-self: end;
  border-top-width: 1px;
}

.ph-card .ph-meta span {
  font-size: 10px;
}

.ph-card .ph-meta strong {
  font-size: clamp(20px, 2vw, 28px);
}

.ph-xref {
  min-height: 220px;
  padding: 18px;
}

.ph-xref .ph-mark {
  font-size: 18px;
}

.ph-xref .ph-filter-lines {
  display: none;
}

.ph-xref .ph-meta {
  display: block;
}

.ph-xref .ph-meta strong {
  display: block;
  margin-top: 6px;
  text-align: left;
  font-size: 22px;
}

.ph-detail {
  min-height: 100%;
}

.ph-detail .ph-mark {
  font-size: clamp(36px, 5vw, 74px);
}

.ph-detail .ph-meta strong {
  font-size: clamp(46px, 6vw, 88px);
}

.ph-related {
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: 18px;
}

.ph-related .ph-mark {
  font-size: 20px;
}

.ph-related .ph-filter-lines,
.ph-related .ph-meta {
  display: none;
}

.pc-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.pc-card-no-photo .pc-card-body {
  min-height: 100%;
  grid-template-rows: auto auto auto auto 1fr auto;
  align-content: start;
}

.pc-card-note {
  min-height: 96px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #17171b;
  color: #fff;
  text-decoration: none;
}

.pc-card-note span {
  color: var(--pc-orange);
  font-size: 11px;
  font-weight: 950;
}

.pc-card-note strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.05;
}

.pc-card-note em {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-style: normal;
}

.pc-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.pc-card-top span {
  color: var(--pc-orange);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.pc-card-top b,
.pc-card-top a {
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  text-align: right;
  text-decoration: none;
}

.pc-card-spec {
  min-height: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pc-card-spec span,
.pc-refs em,
.pc-makers span {
  display: inline-flex;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.25;
}

.pc-card-spec span {
  padding: 7px 8px;
}

.pc-refs,
.pc-makers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 30px;
}

.pc-refs em {
  padding: 6px 7px;
  font-style: normal;
  background: rgba(255,255,255,0.04);
}

.pc-makers span {
  padding: 5px 7px;
  border-color: rgba(255,90,31,0.22);
  color: rgba(255,255,255,0.58);
}

.pc-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
  align-self: end;
}

.pc-card-actions a,
.pc-card-actions button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  background: transparent;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.pc-card-actions a {
  border-color: var(--pc-orange);
  background: var(--pc-orange);
}

.pc-card-actions .pc-action-secondary {
  border-color: rgba(255,255,255,0.16);
  background: transparent;
}

.pc-pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.pc-pagination button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #101014;
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.pc-pagination button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.pc-pagination span {
  color: rgba(255,255,255,0.68);
  font-weight: 900;
}

.pc-loading,
.pc-empty {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #101014;
  color: rgba(255,255,255,0.72);
  text-align: center;
}

.pc-empty strong {
  color: #fff;
  font-size: 28px;
}

.pc-empty span {
  color: rgba(255,255,255,0.62);
}

.pc-rfq {
  width: min(100% - 64px, 1280px);
  margin: 0 auto 74px;
  padding: clamp(62px, 9vw, 110px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(135deg, #ff5a1f, #92280f 52%, #121214);
  background-size: 56px 56px, 56px 56px, auto;
  text-align: center;
}

.pc-rfq h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
}

.pc-rfq p:not(.pc-kicker) {
  max-width: 700px;
  margin: 22px auto 30px;
  color: rgba(255,255,255,0.76);
  font-size: 17px;
  line-height: 1.65;
}

.pc-motion-ready .pc-hero > img {
  animation: pcHeroImage 1600ms cubic-bezier(.16,1,.3,1) both;
}

.pc-motion-ready .pc-hero-inner .pc-kicker,
.pc-motion-ready .pc-hero h1,
.pc-motion-ready .pc-hero p:not(.pc-kicker),
.pc-motion-ready .pc-search {
  opacity: 0.84;
  transform: translateY(20px);
  animation: pcTextIn 780ms cubic-bezier(.16,1,.3,1) both;
}

.pc-motion-ready .pc-hero-inner .pc-kicker { animation-delay: 120ms; }
.pc-motion-ready .pc-hero h1 { animation-delay: 220ms; }
.pc-motion-ready .pc-hero p:not(.pc-kicker) { animation-delay: 340ms; }
.pc-motion-ready .pc-search { animation-delay: 460ms; }

.pc-motion-ready .pc-hero-stats {
  opacity: 0.84;
  transform: translateX(-50%) translateY(22px);
  animation: pcStatsIn 760ms cubic-bezier(.16,1,.3,1) 620ms both;
}

.pc-motion-ready [data-pc-reveal] {
  opacity: 0.9;
  transform: translateY(24px);
  transition: opacity 760ms cubic-bezier(.16,1,.3,1), transform 760ms cubic-bezier(.16,1,.3,1);
}

.pc-motion-ready [data-pc-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pcHeroImage {
  from { transform: scale(1.1); filter: contrast(0.96) saturate(0.82) blur(4px); }
  to { transform: scale(1.05); filter: contrast(1.08) saturate(0.9) blur(0); }
}

@keyframes spHeroImage {
  from { transform: scale(1.045); filter: contrast(0.96) saturate(0.82) blur(4px); }
  to { transform: scale(1); filter: contrast(1.08) saturate(0.9) blur(0); }
}

@keyframes pcTextIn {
  from { opacity: 0.84; transform: translateY(20px); clip-path: inset(0 0 8% 0); }
  to { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }
}

@keyframes pcStatsIn {
  from { opacity: 0.84; transform: translateX(-50%) translateY(22px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 1100px) {
  .pc-cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pc-shell,
  .pc-aside {
    grid-template-columns: 1fr;
  }
  .pc-mini {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .pc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .pc-hero-inner,
  .pc-cats,
  .pc-shell,
  .pc-rfq,
  .pc-hero-stats,
  .products-cinema .cf-footer {
    width: min(100% - 24px, 1280px);
  }
  .pc-hero {
    min-height: auto;
    padding-bottom: 24px;
  }
  .pc-hero-inner {
    min-height: auto;
    padding: 118px 0 36px;
  }
  .pc-hero h1 {
    font-size: clamp(40px, 12.5vw, 58px);
  }
  .pc-search {
    grid-template-columns: 1fr;
  }
  .pc-search button {
    min-height: 52px;
  }
  .pc-hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
  }
  .pc-hero-stats div {
    min-height: 88px;
  }
  .pc-motion-ready .pc-hero-stats {
    transform: translateY(18px);
    animation: pcMobileStatsIn 720ms cubic-bezier(.16,1,.3,1) 620ms both;
  }
  .pc-cats {
    padding: 48px 0;
    grid-template-columns: 1fr;
  }
  .pc-cat {
    min-height: 190px;
  }
  .pc-shell {
    padding: 28px 0 62px;
  }
  .pc-aside {
    padding: 14px;
  }
  .pc-aside-card,
  .pc-mini span {
    min-height: 72px;
  }
  .pc-mini {
    grid-template-columns: 1fr 1fr;
  }
  .pc-toolbar,
  .pc-card-actions,
  .pc-pagination {
    display: grid;
  }
  .pc-grid {
    grid-template-columns: 1fr;
  }
  .pc-rfq {
    padding: 58px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-motion-ready .pc-hero > img,
  .pc-motion-ready .pc-hero-inner .pc-kicker,
  .pc-motion-ready .pc-hero h1,
  .pc-motion-ready .pc-hero p:not(.pc-kicker),
  .pc-motion-ready .pc-search,
  .pc-motion-ready .pc-hero-stats,
  .pc-motion-ready [data-pc-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }
}

/* ============ Shared cinematic subpages ============ */
html {
  background: #050506;
}

.site-cinema {
  --sp-bg: #050506;
  --sp-ink: #f7f7f3;
  --sp-muted: rgba(247,247,243,0.68);
  --sp-line: rgba(255,255,255,0.14);
  --sp-orange: #ff5a1f;
  margin: 0;
  min-height: 100vh;
  background: var(--sp-bg);
  color: var(--sp-ink);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

.site-cinema main {
  background: var(--sp-bg);
}

.site-cinema .cf-footer {
  width: 100%;
  margin-bottom: 0;
  padding-left: max(32px, calc((100vw - 1280px) / 2));
  padding-right: max(32px, calc((100vw - 1280px) / 2));
  padding-bottom: 64px;
  background: var(--sp-bg);
}

.sp-hero {
  position: relative;
  min-height: 78dvh;
  overflow: hidden;
  isolation: isolate;
}

.sp-hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(0.9);
  transform: scale(1.05);
}

.sp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.8) 42%, rgba(0,0,0,0.36) 72%, rgba(0,0,0,0.64) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.16), var(--sp-bg) 100%);
}

.sp-hero::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2));
  top: 130px;
  bottom: 84px;
  z-index: -1;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--sp-orange), rgba(255,90,31,0.16), transparent);
  box-shadow: 0 0 34px rgba(255,90,31,0.34);
}

.sp-hero-inner {
  width: min(100% - 64px, 1280px);
  min-height: 78dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 132px 0 92px;
}

.sp-kicker {
  margin: 0 0 18px;
  color: var(--sp-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sp-hero h1,
.contact-copy h2,
.about-timeline h2,
.sp-rfq h2 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 7vw, 112px);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: 0;
}

.sp-hero p:not(.sp-kicker),
.sp-rfq p,
.contact-copy p,
.about-grid p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--sp-muted);
  font-size: 17px;
  line-height: 1.65;
}

.sp-search {
  width: min(100%, 740px);
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(0,0,0,0.62);
}

.sp-search input,
.sp-search button {
  min-height: 60px;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.sp-search input {
  min-width: 0;
  padding: 0 20px;
  background: transparent;
  color: #fff;
  outline: 0;
}

.sp-search button,
.contact-form button {
  background: var(--sp-orange);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.sp-band,
.contact-info {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--sp-line);
  background: rgba(255,255,255,0.03);
}

.sp-band div,
.contact-info div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid var(--sp-line);
}

.sp-band div:last-child,
.contact-info div:last-child {
  border-right: 0;
}

.sp-band strong,
.contact-info strong,
.contact-info a {
  color: #fff;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.95;
  font-weight: 950;
  text-decoration: none;
}

.sp-band span,
.contact-info span {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.xref-shell,
.contact-shell,
.about-grid,
.about-timeline {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.xref-shell,
.contact-shell,
.about-timeline {
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  gap: 38px;
  align-items: start;
}

.sp-side,
.contact-copy {
  position: sticky;
  top: 96px;
  padding: 30px;
  border: 1px solid var(--sp-line);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    #101014;
  background-size: 42px 42px, 42px 42px, auto;
}

.sp-side h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 0.95;
}

.sp-count,
.contact-cards div {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.sp-count strong,
.contact-cards strong {
  color: var(--sp-orange);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
}

.sp-count span,
.contact-cards span {
  color: rgba(255,255,255,0.62);
  font-weight: 900;
  text-transform: uppercase;
}

.sp-tags,
.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sp-tags button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #050506;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.sp-toolbar {
  min-height: 78px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--sp-line);
  background: #101014;
}

.sp-toolbar strong {
  color: #fff;
  font-size: 24px;
}

.sp-toolbar span {
  margin-top: 5px;
  color: rgba(255,255,255,0.58);
}

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

.xref-card,
.sp-empty {
  border: 1px solid var(--sp-line);
  background: #101014;
}

.xref-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
}

.xref-card-img {
  display: block;
  min-height: 100%;
  background: #050506;
  overflow: hidden;
}

.xref-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.xref-card > div {
  padding: 18px;
}

.xref-card span {
  color: var(--sp-orange);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.xref-card h3 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.xref-card h3 a {
  color: inherit;
  text-decoration: none;
}

.xref-card p {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.62);
  line-height: 1.45;
}

.xref-card em {
  display: inline-flex;
  margin: 0 6px 6px 0;
  padding: 6px 7px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  font-style: normal;
}

.xref-card a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 14px;
  background: var(--sp-orange);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}

.sp-empty {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  color: rgba(255,255,255,0.62);
}

.sp-empty strong {
  color: #fff;
  font-size: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--sp-line);
  background: #eeeeea;
  color: #08080a;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #08080a;
  font-size: 13px;
  font-weight: 950;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8,8,10,0.18);
  background: #fff;
  color: #08080a;
  font: inherit;
  outline: 0;
}

.contact-form input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-wide,
.contact-form button,
.contact-form p {
  grid-column: 1 / -1;
}

.contact-form button {
  min-height: 54px;
  border: 0;
  font: inherit;
}

.contact-form p {
  margin: 0;
  color: #555860;
  line-height: 1.55;
}

.contact-info {
  margin-bottom: 78px;
}

.contact-info a,
.contact-info strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info a[href^="mailto"] {
  font-size: clamp(18px, 1.7vw, 24px);
}

.contact-info a[href^="tel"],
.contact-info strong {
  font-size: clamp(24px, 2.8vw, 42px);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--sp-line);
  border: 1px solid var(--sp-line);
}

.about-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    #101014;
  background-size: 44px 44px, 44px 44px, auto;
}

.about-grid span {
  color: var(--sp-orange);
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 950;
  line-height: 0.9;
}

.about-grid h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.about-timeline ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--sp-line);
}

.about-timeline li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sp-line);
}

.about-timeline strong {
  color: var(--sp-orange);
}

.about-timeline span {
  color: rgba(255,255,255,0.76);
  font-weight: 900;
}

.sp-rfq {
  width: min(100% - 64px, 1280px);
  margin: 0 auto 76px;
  padding: clamp(62px, 9vw, 110px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(135deg, #ff5a1f, #92280f 52%, #121214);
  background-size: 56px 56px, 56px 56px, auto;
  text-align: center;
}

.sp-rfq h2,
.sp-rfq p {
  margin-left: auto;
  margin-right: auto;
}

.sp-rfq p {
  margin-bottom: 30px;
}

.sp-motion-ready .sp-hero > img {
  animation: spHeroImage 1600ms cubic-bezier(.16,1,.3,1) both;
}

.sp-motion-ready .sp-hero .sp-kicker,
.sp-motion-ready .sp-hero h1,
.sp-motion-ready .sp-hero p,
.sp-motion-ready .sp-search {
  opacity: 0.84;
  transform: translateY(20px);
  animation: pcTextIn 780ms cubic-bezier(.16,1,.3,1) both;
}

.sp-motion-ready .sp-hero .sp-kicker { animation-delay: 120ms; }
.sp-motion-ready .sp-hero h1 { animation-delay: 220ms; }
.sp-motion-ready .sp-hero p { animation-delay: 340ms; }
.sp-motion-ready .sp-search { animation-delay: 460ms; }

[data-sp-reveal] {
  opacity: 0.9;
  transform: translateY(24px);
  transition: opacity 760ms cubic-bezier(.16,1,.3,1), transform 760ms cubic-bezier(.16,1,.3,1);
}

[data-sp-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .xref-shell,
  .contact-shell,
  .about-timeline {
    grid-template-columns: 1fr;
  }
  .sp-side,
  .contact-copy {
    position: static;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-info,
  .sp-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .sp-hero-inner,
  .sp-band,
  .xref-shell,
  .contact-shell,
  .about-grid,
  .about-timeline,
  .sp-rfq,
  .contact-info,
  .site-cinema .cf-footer {
    width: min(100% - 24px, 1280px);
  }
  .sp-hero {
    min-height: auto;
  }
  .sp-hero-inner {
    min-height: auto;
    padding: 118px 0 62px;
  }
  .sp-hero h1,
  .contact-copy h2,
  .about-timeline h2,
  .sp-rfq h2 {
    font-size: clamp(40px, 12.5vw, 58px);
  }
  .sp-search,
  .contact-form,
  .xref-card {
    grid-template-columns: 1fr;
  }
  .sp-search button {
    min-height: 52px;
  }
  .sp-band,
  .contact-info {
    grid-template-columns: 1fr;
  }
  .sp-band div,
  .contact-info div {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--sp-line);
  }
  .xref-grid {
    grid-template-columns: 1fr;
  }
  .xref-card img {
    min-height: 230px;
  }
  .contact-info a,
  .contact-info strong {
    font-size: 24px !important;
  }
  .sp-rfq {
    padding: 58px 24px;
  }
}

@keyframes pcMobileStatsIn {
  from { opacity: 0.84; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Product detail page ============ */
body.site-cinema,
body.products-cinema {
  background: #050506;
}

.product-detail-page main {
  background:
    radial-gradient(circle at 72% 18%, rgba(255,90,31,0.16), transparent 28%),
    linear-gradient(180deg, #050506 0%, #0b0b0e 46%, #050506 100%);
}

.pd-shell {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 132px 0 82px;
}

.pd-loading,
.pd-missing {
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(36px, 7vw, 84px);
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    #101014;
  background-size: 42px 42px, 42px 42px, auto;
  color: rgba(255,255,255,0.72);
}

.pd-missing h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.94;
}

.pd-missing p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
  line-height: 1.6;
}

.pd-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(320px, 0.45fr);
  gap: 0;
  min-height: 680px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #101014;
  overflow: hidden;
}

.pd-media {
  position: relative;
  min-height: 620px;
  background: #050506;
  overflow: hidden;
}

.pd-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.54));
  pointer-events: none;
}

.pd-media:has(.persoly-placeholder)::after {
  display: none;
}

.pd-media .persoly-placeholder {
  height: 100%;
}

.pd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.96);
  transform: scale(1.02);
}

.xref-card img[src*="new_product_images_site"],
.pd-media img[src*="new_product_images_site"],
.pd-related-grid img[src*="new_product_images_site"] {
  box-sizing: border-box;
  padding: 12px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.pd-media img[src*="new_product_images_site"] {
  transform: none;
}

.pd-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
  border-left: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    #101014;
  background-size: 44px 44px, 44px 44px, auto;
}

.pd-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 8vw, 128px);
  line-height: 0.88;
  letter-spacing: 0;
}

.pd-copy p:not(.sp-kicker) {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
  line-height: 1.65;
}

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

.pd-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
  gap: 14px;
  margin-top: 14px;
}

.pd-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #101014;
}

.pd-panel:nth-child(3) {
  grid-column: 1 / -1;
}

.pd-specs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.pd-specs .sp-kicker {
  margin-bottom: 8px;
}

.pd-specs div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.pd-specs span {
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pd-specs strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.pd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pd-chips span {
  display: inline-flex;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  line-height: 1.25;
}

.pd-chips-muted span {
  border-color: rgba(255,90,31,0.22);
  color: rgba(255,255,255,0.6);
}

.pd-related {
  margin-top: 14px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #101014;
}

.pd-related-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}

.pd-related h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
}

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

.pd-related-grid a {
  display: grid;
  border: 1px solid rgba(255,255,255,0.14);
  background: #050506;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

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

.pd-related-grid span,
.pd-related-grid strong {
  margin-left: 16px;
  margin-right: 16px;
}

.pd-related-grid span {
  margin-top: 16px;
  color: #ff5a1f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.pd-related-grid strong {
  margin-top: 7px;
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 980px) {
  .pd-hero,
  .pd-grid {
    grid-template-columns: 1fr;
  }
  .pd-copy {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .pd-panel:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .pd-shell {
    width: min(100% - 24px, 1280px);
    padding: 108px 0 58px;
  }
  .pd-hero {
    min-height: 0;
  }
  .pd-media {
    min-height: 340px;
  }
  .pd-copy {
    padding: 28px 22px 34px;
  }
  .pd-copy h1 {
    font-size: clamp(46px, 16vw, 76px);
  }
  .pd-actions {
    display: grid;
  }
  .pd-specs div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .pd-panel,
  .pd-related {
    padding: 22px;
  }
  .pd-related-head {
    display: block;
  }
  .pd-related-grid {
    grid-template-columns: 1fr;
  }
}

/* Banana hero composition: keep the PERSOLY product mark visible on desktop. */
@media (min-width: 981px) {
  .neo-home .neo-hero-panel {
    --neo-panel-y: 118px;
    justify-self: end;
    width: min(100%, 380px);
    background: rgba(5,5,5,0.62);
    transform: translateY(var(--neo-panel-y));
  }

  .neo-home.motion-ready .neo-hero-panel {
    transform: translateY(calc(var(--neo-panel-y) + 24px));
  }

  .neo-home.motion-ready .neo-hero-panel.is-visible {
    transform: translateY(var(--neo-panel-y));
  }
}

.neo-home.motion-ready .neo-hero h1 {
  clip-path: none;
}

.neo-home .neo-hero-panel {
  display: none;
}

/* Shared product-closeup hero direction for inner brand pages. */
.cinema-factory .cf-hero-img,
.about-page .sp-hero > img,
.contact-page .sp-hero > img {
  object-position: 58% center;
  filter: contrast(1.08) saturate(0.96) brightness(0.9);
}

.cinema-factory .cf-hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.84) 32%, rgba(0,0,0,0.46) 58%, rgba(0,0,0,0.26) 78%, rgba(0,0,0,0.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.06) 45%, #050506 100%);
}

.about-page .sp-hero::before,
.contact-page .sp-hero::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.84) 38%, rgba(0,0,0,0.44) 64%, rgba(0,0,0,0.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12), var(--sp-bg) 100%);
}

.cinema-factory .cf-hero h1,
.about-page .sp-hero h1,
.contact-page .sp-hero h1 {
  max-width: 760px;
  text-wrap: balance;
}

@media (min-width: 981px) {
  .cinema-factory .cf-hero h1 {
    font-size: clamp(58px, 8.2vw, 118px);
  }

  .about-page .sp-hero h1,
  .contact-page .sp-hero h1 {
    font-size: clamp(56px, 7.2vw, 108px);
  }
}

/* Global market switcher */
.global-language {
  position: relative;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.global-language-trigger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  background: rgba(8, 9, 12, 0.78);
  color: #fff;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.global-language-trigger:hover,
.global-language.is-open .global-language-trigger {
  border-color: rgba(255, 91, 35, 0.68);
  background: rgba(14, 15, 18, 0.94);
}

.market-mark,
.market-code {
  display: inline-flex;
  width: 48px;
  height: 26px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.market-flag {
  width: 20px;
  height: 14px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.28);
  object-fit: cover;
}

.market-mark span,
.market-code span {
  letter-spacing: 0;
}

.market-copy {
  display: grid;
  line-height: 1.05;
  text-align: left;
}

.market-copy b {
  font-size: 12px;
  font-weight: 950;
}

.market-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
}

.market-caret {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.78;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.global-language.is-open .market-caret {
  margin-top: 2px;
  transform: rotate(225deg);
}

.global-language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(320px, calc(100vw - 24px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 8, 10, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.global-language.is-open .global-language-menu,
.global-language:hover .global-language-menu,
.global-language:focus-within .global-language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.market-option {
  display: grid;
  min-height: 54px;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px;
  color: #fff;
  text-decoration: none;
}

.market-option:hover,
.market-option.is-active {
  background: rgba(240, 90, 40, 0.16);
}

.market-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.market-option b {
  display: block;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.market-option small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 650;
}

.tbr-right .global-language {
  margin-left: 4px;
}

.tbr-right .global-language-trigger {
  min-height: 30px;
  gap: 8px;
  padding: 0 9px 0 8px;
}

.tbr-right .market-mark {
  width: 44px;
  height: 22px;
  font-size: 11px;
}

.tbr-right .market-flag {
  width: 18px;
  height: 12px;
}

.tbr-right .market-copy b {
  font-size: 11px;
}

.tbr-right .market-copy small {
  font-size: 10px;
}

.tbr-right .global-language-menu {
  top: calc(100% + 6px);
}

.cf-nav > .global-language {
  margin-left: auto;
}

.cf-nav > .global-language + .cf-nav-cta {
  margin-left: 10px;
}

.home-language-mobile {
  display: none;
}

.home-language-mobile .market-copy {
  display: none;
}

@media (max-width: 980px) {
  .cf-nav {
    gap: 10px;
  }

  .cf-nav > .global-language {
    order: 4;
    margin-left: 0;
  }

  .neo-home .home-language-mobile {
    display: inline-flex;
    margin-left: auto;
  }

  .neo-home .home-language-mobile .global-language-trigger {
    min-height: 38px;
    padding: 0 10px;
  }

  .neo-home .home-language-mobile .global-language-menu {
    right: auto;
    left: 50%;
    transform: translate(-50%, -4px);
  }

  .neo-home .home-language-mobile.is-open .global-language-menu,
  .neo-home .home-language-mobile:hover .global-language-menu,
  .neo-home .home-language-mobile:focus-within .global-language-menu {
    transform: translate(-50%, 0);
  }
}

@media (max-width: 760px) {
  .global-language-trigger {
    min-height: 38px;
    padding: 0 10px;
  }

  .market-copy {
    display: none;
  }

  .global-language-menu {
    right: 0;
  }

  .tbr-inner {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-language-trigger,
  .market-caret,
  .global-language-menu {
    transition: none;
  }
}

/* RTL market pages */
html,
body.redesign,
body.neo-home,
body.products-cinema,
body.cinema-factory,
body.site-cinema {
  background: #050506;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .tbr-left,
html[dir="rtl"] .market-copy,
html[dir="rtl"] .market-option,
html[dir="rtl"] .neo-hero-copy,
html[dir="rtl"] .neo-section-head,
html[dir="rtl"] .neo-quote-copy,
html[dir="rtl"] .cf-hero-inner,
html[dir="rtl"] .cf-section-head,
html[dir="rtl"] .sp-hero-inner,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .pd-copy {
  text-align: right;
}

html[dir="rtl"] .cf-nav > .global-language {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .cf-nav > .global-language + .cf-nav-cta {
  margin-right: 10px;
  margin-left: 0;
}

html[dir="rtl"] .global-language-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .market-option {
  direction: rtl;
}

html[dir="rtl"] .neo-search,
html[dir="rtl"] .pc-search,
html[dir="rtl"] .sp-search,
html[dir="rtl"] .contact-form,
html[dir="rtl"] .neo-form {
  direction: rtl;
}

html[dir="rtl"] .neo-search input,
html[dir="rtl"] .pc-search input,
html[dir="rtl"] .sp-search input,
html[dir="rtl"] .contact-form input,
html[dir="rtl"] .contact-form textarea,
html[dir="rtl"] .neo-form input,
html[dir="rtl"] .neo-form textarea {
  text-align: right;
}

html[lang="ar"] .neo-hero h1,
html[lang="ru"] .neo-hero h1,
html[lang="es"] .neo-hero h1,
html[lang="id"] .neo-hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: 0.98;
}

html[lang="ar"] .pc-hero h1,
html[lang="ru"] .pc-hero h1,
html[lang="es"] .pc-hero h1,
html[lang="id"] .pc-hero h1,
html[lang="ar"] .sp-hero h1,
html[lang="ru"] .sp-hero h1,
html[lang="es"] .sp-hero h1,
html[lang="id"] .sp-hero h1,
html[lang="ar"] .cf-hero h1,
html[lang="ru"] .cf-hero h1,
html[lang="es"] .cf-hero h1,
html[lang="id"] .cf-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 0.98;
}

html[dir="rtl"] .neo-hero-copy,
html[dir="rtl"] .pc-hero-inner,
html[dir="rtl"] .cf-hero-inner,
html[dir="rtl"] .sp-hero-inner {
  margin-right: 0;
  margin-left: auto;
  padding-right: clamp(24px, 3vw, 48px);
}

@media (max-width: 980px) {
  html[dir="rtl"] .cf-nav > .global-language {
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  html[dir="rtl"] .global-language-menu {
    right: 0;
    left: auto;
  }

  html[dir="rtl"] .neo-home .home-language-mobile .global-language-menu {
    right: auto;
    left: 50%;
  }

  html[lang="ar"] .neo-hero h1,
  html[lang="ru"] .neo-hero h1,
  html[lang="es"] .neo-hero h1,
  html[lang="id"] .neo-hero h1,
  html[lang="ar"] .pc-hero h1,
  html[lang="ru"] .pc-hero h1,
  html[lang="es"] .pc-hero h1,
  html[lang="id"] .pc-hero h1,
  html[lang="ar"] .sp-hero h1,
  html[lang="ru"] .sp-hero h1,
  html[lang="es"] .sp-hero h1,
  html[lang="id"] .sp-hero h1,
  html[lang="ar"] .cf-hero h1,
  html[lang="ru"] .cf-hero h1,
  html[lang="es"] .cf-hero h1,
  html[lang="id"] .cf-hero h1 {
    font-size: clamp(36px, 11vw, 56px);
    line-height: 1.02;
  }
}

html,
body.redesign,
body.neo-home,
body.products-cinema,
body.cinema-factory,
body.site-cinema {
  background: #050506 !important;
}

/* Arabic pages keep the same structural layout as CN/EN; only text direction changes. */
html[dir="rtl"] .cf-nav,
html[dir="rtl"] .sp-hero-inner,
html[dir="rtl"] .cf-hero-inner,
html[dir="rtl"] .pc-hero-inner,
html[dir="rtl"] .contact-shell,
html[dir="rtl"] .xref-shell,
html[dir="rtl"] .about-grid,
html[dir="rtl"] .about-timeline,
html[dir="rtl"] .pc-shell,
html[dir="rtl"] .pc-cats,
html[dir="rtl"] .pc-rfq {
  direction: ltr;
}

html[dir="rtl"] .cf-nav > .global-language {
  margin-left: auto;
  margin-right: 0;
}

html[dir="rtl"] .cf-nav > .global-language + .cf-nav-cta {
  margin-left: 10px;
  margin-right: 0;
}

html[dir="rtl"] .sp-hero-inner,
html[dir="rtl"] .cf-hero-inner,
html[dir="rtl"] .pc-hero-inner {
  margin: 0 auto;
  padding-right: 0;
}

html[dir="rtl"] .sp-hero h1,
html[dir="rtl"] .sp-hero p,
html[dir="rtl"] .sp-kicker,
html[dir="rtl"] .cf-hero h1,
html[dir="rtl"] .cf-hero p,
html[dir="rtl"] .pc-hero h1,
html[dir="rtl"] .pc-hero p,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .contact-form,
html[dir="rtl"] .contact-info,
html[dir="rtl"] .sp-side,
html[dir="rtl"] .xref-results,
html[dir="rtl"] .pc-aside,
html[dir="rtl"] .pd-copy {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .pc-list-area,
html[dir="rtl"] .pc-grid {
  direction: ltr;
}

html[dir="rtl"] .pc-toolbar > div,
html[dir="rtl"] .pc-card-body,
html[dir="rtl"] .pc-card-note,
html[dir="rtl"] .pc-card-spec,
html[dir="rtl"] .pc-refs,
html[dir="rtl"] .pc-makers {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .sp-hero::after {
  left: max(24px, calc((100vw - 1280px) / 2));
  right: auto;
}

html[dir="rtl"] .global-language-menu {
  right: 0;
  left: auto;
}

html[lang="ar"] .contact-page .sp-hero,
html[lang="ar"] .contact-page .sp-hero-inner {
  min-height: 78dvh;
}

html[lang="ar"] .contact-page .sp-hero > img {
  object-position: 58% center;
}
