:root {
      --bg:      #ffffff;
      --surface: #f7f7f8;
      --fg:      #1a1a1a;
      --muted:   #6b6b6b;
      --border:  #e5e5e5;
      --accent:  #1890ff;

      --accent-soft: color-mix(in oklch, var(--accent) 10%, transparent);
      --fg-soft:     color-mix(in oklch, var(--fg) 4%, transparent);
      --surface-alt: #f0f0f2;
      --surface-elevated: #ffffff;

      --font-display: 'Open Sans', system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
      --font-body:    'Open Sans', system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
      --font-mono:    ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, monospace;

      --fs-h1: clamp(36px, 5vw, 56px);
      --fs-h2: clamp(28px, 3.5vw, 42px);
      --fs-h3: 20px;
      --fs-lead: 18px;
      --fs-body: 16px;
      --fs-meta: 13px;

      --gap-xs: 8px;
      --gap-sm: 12px;
      --gap-md: 24px;
      --gap-lg: 40px;
      --gap-xl: 72px;
      --gap-2xl: 128px;
      --container: 1280px;
      --gutter: 48px;

      --radius: 8px;
      --radius-lg: 16px;
      --radius-xl: 24px;
    }

body {
      margin: 0;
      background: var(--bg);
      color: var(--fg);
      font-family: var(--font-body);
      font-size: var(--fs-body);
      line-height: 1.6;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

.section {
      padding-block: clamp(72px, 10vw, var(--gap-2xl));
    }

.section-alt {
      background: var(--surface-alt);
    }

.section + .section { border-top: 1px solid var(--border); }

.section-header {
      margin-bottom: var(--gap-lg);
    }

.section-header h2 {
      margin-bottom: var(--gap-sm);
    }

.section-header .lead {
      margin-bottom: 0;
    }

/* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

.reveal-item {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

.reveal-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

h1, .h1 {
      font-family: var(--font-display);
      font-size: var(--fs-h1);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

h2, .h2 {
      font-family: var(--font-display);
      font-size: var(--fs-h2);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.015em;
    }

h3, .h3 {
      font-family: var(--font-display);
      font-size: var(--fs-h3);
      font-weight: 600;
      line-height: 1.35;
      letter-spacing: -0.005em;
    }

.lead {
      font-size: var(--fs-lead);
      line-height: 1.65;
      color: var(--muted);
      max-width: 56ch;
    }

.eyebrow {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 var(--gap-md);
    }

.meta {
      font-family: var(--font-mono);
      font-size: var(--fs-meta);
      color: var(--muted);
    }

/* ---- Topnav ---- */
    .topnav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: 64px;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, backdrop-filter 0.4s;
    }

.topnav nav a {
      font-size: 16px;
      font-weight: 500;
      color: rgba(255,255,255,0.55);
      transition: color 0.25s;
      position: relative;
      letter-spacing: 0.01em;
    }

.topnav nav a.active {
      color: #ffffff;
    }

.topnav.scrolled nav a.active {
      color: #1a1a1a;
    }

.topnav nav a.active::after {
      transform: scaleX(1);
    }

.topnav .nav-cta {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      padding: 10px 28px;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: var(--radius);
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      letter-spacing: 0.02em;
    }

.topnav .nav-cta:active {
      transform: scale(0.96);
      transition-duration: 0.1s;
    }

/* ---- Page Hero ---- */
    .page-hero {
      position: relative;
      padding-top: 160px;
      padding-bottom: 80px;
      background: #000000;
      color: #ffffff;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(24,144,255,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

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

.page-hero h1 {
      font-size: var(--fs-h1);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: #ffffff;
      margin-bottom: var(--gap-sm);
    }

.page-hero .lead {
      font-size: var(--fs-lead);
      color: rgba(255,255,255,0.7);
      max-width: 640px;
      margin-top: var(--gap-md);
      line-height: 1.7;
    }

.page-hero .eyebrow {
      color: var(--accent);
    }

/* ---- Category Tabs ---- */
    .cat-tabs {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--border);
      margin-bottom: var(--gap-xl);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
      font-size: 16px;
      font-weight: 500;
      color: var(--muted);
      padding: 16px 28px;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color 0.25s, border-color 0.25s;
      white-space: nowrap;
      cursor: pointer;
      background: none;
      border-top: 0;
      border-left: 0;
      border-right: 0;
    }

.cat-tab:hover {
      color: var(--fg);
    }

.cat-tab.active {
      color: var(--fg);
      border-bottom-color: var(--accent);
    }

/* ---- Category Panel ---- */
    .cat-panel {
      display: none;
    }

.cat-panel.active {
      display: block;
    }

/* ---- Product Grid ---- */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gap-md);
    }

.product-card {
      background: var(--surface-elevated);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }

.product-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0,0,0,0.15);
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

.product-card-img {
      aspect-ratio: 4/3;
      background: var(--surface);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 24px;
    }

.product-card-img img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

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

.product-card-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }

.product-card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      line-height: 1.3;
    }

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

/* ---- Sub-section header within category ---- */
    .cat-sub-header {
      margin-bottom: var(--gap-md);
      margin-top: var(--gap-lg);
    }

.cat-sub-header:first-child {
      margin-top: 0;
    }

.cat-sub-header h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 6px;
    }

.cat-sub-header p {
      font-size: 14px;
      color: var(--muted);
    }

/* ---- Software Platform Cards ---- */
    .platform-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gap-md);
    }

.platform-card {
      background: var(--surface-elevated);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }

.platform-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0,0,0,0.15);
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

.platform-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius);
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      flex-shrink: 0;
    }

.platform-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--fg);
      fill: none;
      stroke-width: 1.6;
    }

.platform-card h3 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 10px;
      line-height: 1.3;
    }

.platform-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      flex: 1;
    }

.platform-card .platform-tag {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.06em;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

/* ---- Special Products Section ---- */
    .special-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gap-md);
    }

.special-card {
      background: var(--surface-elevated);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }

.special-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0,0,0,0.15);
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

.special-card-img {
      aspect-ratio: 16/10;
      background: var(--surface);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 20px;
    }

.special-card-img img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

.special-card:hover .special-card-img img {
      transform: scale(1.05);
    }

.special-card-body {
      padding: 20px 24px 24px;
    }

.special-card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

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

/* ---- CTA Section ---- */
    .cta-section {
      text-align: center;
      padding-block: var(--gap-xl);
    }

.cta-section h2 {
      margin-bottom: var(--gap-sm);
    }

.cta-section .lead {
      margin: 0 auto var(--gap-lg);
    }

.btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      border-radius: var(--radius);
      border: 1px solid transparent;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

.btn:active {
      transform: scale(0.97);
      transition-duration: 0.1s;
    }

.btn-primary {
      background: var(--fg);
      color: var(--bg);
      border-color: var(--fg);
    }

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

.btn-primary:active {
      background: rgba(0,0,0,0.85);
    }

.btn-secondary {
      background: transparent;
      color: var(--fg);
      border-color: rgba(0,0,0,0.15);
    }

.btn-secondary:hover {
      border-color: rgba(0,0,0,0.4);
      background: rgba(0,0,0,0.04);
    }

.btn-secondary:active {
      background: rgba(0,0,0,0.06);
      border-color: rgba(0,0,0,0.3);
    }

.cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

/* ---- Footer ---- */
    .pagefoot {
      padding-block: var(--gap-xl);
      border-top: 1px solid var(--border);
      color: var(--muted);
      font-size: 14px;
      background: var(--surface);
    }

.footer-inner {
      display: grid;
      grid-template-columns: 1.5fr auto auto auto;
      gap: var(--gap-xl);
      align-items: start;
    }

.footer-brand {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 10px;
    }

.footer-col h4 {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.45);
      margin-bottom: 16px;
    }

.footer-bottom {
      margin-top: var(--gap-xl);
      padding-top: var(--gap-lg);
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: rgba(0,0,0,0.4);
    }

.footer-desc {
      max-width: 32ch;
      font-size: 13px;
      color: var(--muted);
    }

/* ---- Focus visible ---- */
    :focus { outline: none; }

:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 4px;
    }

.btn:focus-visible { outline-offset: 4px; }

.topnav nav a:focus-visible { outline-offset: 6px; }

/* ---- Nav dropdowns ---- */
    .nav-dropdown {
      position: relative;
    }

.nav-dropdown > a {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

.nav-dropdown > a::before {
      content: '';
      display: none;
    }

.nav-dropdown .dropdown-arrow {
      width: 8px;
      height: 8px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform 0.25s;
      flex-shrink: 0;
      opacity: 0.6;
    }

.dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      min-width: 180px;
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 8px 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s, background 0.3s, border-color 0.3s;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      z-index: 120;
    }

.topnav.scrolled .dropdown-menu {
      background: rgba(255,255,255,0.98);
      border-color: var(--border);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

.nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

.nav-dropdown:hover .dropdown-arrow {
      transform: rotate(-135deg) translateY(-2px);
    }

.dropdown-menu a {
      display: block;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.7);
      white-space: nowrap;
      transition: background 0.15s, color 0.15s;
    }

.dropdown-menu a:hover {
      background: rgba(255,255,255,0.08);
      color: #ffffff;
    }

.topnav.scrolled .dropdown-menu a:hover {
      background: var(--surface);
      color: var(--fg);
    }

.dropdown-menu a::after {
      display: none !important;
    }

/* ---- Mobile Nav ---- */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      padding: 8px;
      border-radius: var(--radius);
      cursor: pointer;
      z-index: 110;
    }

.nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: #ffffff;
      border-radius: 1px;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
      transform-origin: center;
    }

.topnav.scrolled .nav-toggle span {
      background: var(--fg);
    }

.mobile-nav {
      display: none;
    }

/* ---- Responsive ---- */
    @media (max-width: 1024px) {
      :root { --gutter: 32px; }
    }

@media (max-width: 920px) {
      .nav-toggle { display: flex; }
      .topnav nav { display: none; }
      .topnav > .container > .nav-cta { display: none; }
      .nav-toggle.active span {
        background: #ffffff !important;
      }
      .mobile-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid var(--border);
        padding: 16px var(--gutter) 24px;
        gap: 8px;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .mobile-nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
      .mobile-nav nav {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .mobile-nav nav a {
        font-size: 16px;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.75);
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        transition: color 0.2s;
      }
      .mobile-nav nav a:last-child { border-bottom: none; }
      .mobile-nav nav a:hover { color: #1a1a1a; }
      .mobile-nav nav a.active { color: #1a1a1a; }
      .mobile-nav .nav-cta {
        margin-top: 12px;
        text-align: center;
        font-size: 15px;
        font-weight: 600;
        color: #1a1a1a;
        padding: 12px 28px;
        border: 1px solid rgba(0, 0, 0, 0.25);
        border-radius: var(--radius);
        transition: all 0.25s;
      }
      .mobile-nav .nav-cta:hover {
        background: #1a1a1a;
        color: #ffffff;
        border-color: #1a1a1a;
      }

      .product-grid { grid-template-columns: repeat(2, 1fr); }
      .platform-grid { grid-template-columns: repeat(2, 1fr); }
      .special-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--gap-lg); }
      .footer-bottom { flex-direction: column; gap: var(--gap-sm); text-align: center; }
      :root { --gutter: 24px; }

      .dropdown-menu {
        position: static;
        transform: none;
        min-width: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        pointer-events: auto;
        transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .nav-dropdown.open .dropdown-menu,
        .nav-dropdown:hover .dropdown-menu,
        .nav-dropdown:focus-within .dropdown-menu {
        max-height: 600px;
        overflow-y: auto;
        transform: none;
      }
      .dropdown-menu a {
        padding: 10px 0;
        font-size: 14px;
        border-bottom: 1px solid var(--border);
      }
      .dropdown-menu a:last-child {
        border-bottom: none;
      }
    }

@media (max-width: 640px) {
      .product-grid { grid-template-columns: 1fr; }
      .platform-grid { grid-template-columns: 1fr; }
      .special-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .page-hero { padding-top: 120px; padding-bottom: 56px; }
      .cta-buttons { flex-direction: column; align-items: center; }
      .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
    }

@media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
      .product-card, .platform-card, .special-card {
        transition: none !important;
      }
      .product-card-img img, .special-card-img img {
        transition: none !important;
      }
    }

    /* ===== CATEGORY GRID（二级产品导航） ===== */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .cat-card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--surface-elevated);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      color: inherit;
      text-decoration: none;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    }
    .cat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
      border-color: rgba(24, 144, 255, 0.35);
    }
    .cat-card-media {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: var(--surface);
    }
    .cat-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .cat-card:hover .cat-card-media img {
      transform: scale(1.07);
    }
    .cat-card-body {
      padding: 20px 22px 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .cat-card-body h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      transition: color 0.3s ease;
    }
    .cat-card:hover .cat-card-body h3 {
      color: var(--accent);
    }
    .cat-card-body p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .cat-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
    }
    .cat-more i {
      font-style: normal;
      transition: transform 0.3s ease;
    }
    .cat-card:hover .cat-more i {
      transform: translateX(4px);
    }

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

    /* ============================================================
       Product Center (?cat=6 style) — p6- 区块
       顶部产品分类标签栏 + 产品三列卡片 + wp-pagenavi 风格分页
       ============================================================ */
    .p6-section {
      padding: 0 0 clamp(56px, 8vw, 96px);
    }

    /* ---- 产品导航标签栏（浅色底 + 胶囊标签 + 青色高亮） ---- */
    .p6-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 6px;
      background: #f5f7fa;
      border: 1px solid #e8edf3;
      border-radius: 14px;
      padding: 10px 12px;
      margin-bottom: 40px;
      box-shadow: 0 2px 12px rgba(30, 60, 110, 0.06);
    }

    .p6-tab {
      display: inline-block;
      color: #43536b;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.02em;
      line-height: 1;
      padding: 10px 18px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: color 0.25s, background-color 0.25s, border-color 0.25s, transform 0.25s;
    }

    .p6-tab:hover {
      color: #2c86a3;
      background-color: rgba(54, 155, 185, 0.1);
      transform: translateY(-1px);
    }

    .p6-tab.is-active {
      color: #fff;
      background: linear-gradient(135deg, #369bb9 0%, #2c86a3 100%);
      border-color: transparent;
      box-shadow: 0 4px 12px rgba(54, 155, 185, 0.3);
    }

    .p6-tab:focus-visible {
      outline: 2px solid #369bb9;
      outline-offset: 2px;
    }

    .p6-tab-divider {
      width: 1px;
      height: 18px;
      margin: 0 6px;
      background: #d9e2ec;
    }

    /* ---- 产品三列网格（原型 col-lg-4 / col-md-6） ---- */
    .p6-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px 30px;
    }

    /* ---- 产品卡（原型 .product-item） ---- */
    .p6-item {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s;
    }

    .p6-item:hover {
      transform: translateY(-5px);
    }

    .p6-img {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 180px;
      padding: 12px 12px 0;
      background-color: #fff;
      overflow: hidden;
    }

    .p6-img img {
      display: block;
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .p6-img:hover img {
      transform: scale(1.04);
    }

    .p6-detail {
      padding: 14px 18px 18px;
    }

    .p6-model {
      font-size: 17px;
      font-weight: bold;
      line-height: 1.45;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 2.9em;
    }

    .p6-model a {
      color: #1a1a1a;
      text-decoration: none;
      transition: color 0.25s;
    }

    .p6-model a:hover {
      color: #369bb9;
    }

    .p6-btn {
      text-align: center;
      margin-top: 10px;
    }

    .p6-btn-primary {
      display: inline-block;
      background-color: #369bb9;
      color: #fff;
      border: 2px solid #369bb9;
      border-radius: 4px;
      font-size: 13px;
      line-height: 1.5;
      padding: 4px 16px;
      text-decoration: none;
      transition: background-color 0.25s, border-color 0.25s;
    }

    .p6-btn-primary:hover {
      background-color: #298eac;
      border-color: #298eac;
      color: #fff;
    }

    /* ---- 分页（原型 .st-pagination + wp-pagenavi） ---- */
    .p6-pagination-wrap {
      margin-top: 40px;
      text-align: center;
    }

    .p6-pagination {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 4px;
    }

    .p6-pages {
      font-size: 14px;
      letter-spacing: 1px;
      color: #26282c;
      margin-right: 10px;
    }

    .p6-page {
      display: inline-block;
      min-width: 42px;
      padding: 8px 14px;
      line-height: 1.5;
      color: #26282c;
      text-decoration: none;
      letter-spacing: 1px;
      font-size: 14px;
      border: 2px solid #e7e9ed;
      background-color: #e7e9ed;
      text-align: center;
      transition: color 0.2s, background-color 0.2s, border-color 0.2s;
    }

    .p6-page:hover {
      color: #fff;
      background-color: #0a4976;
      border-color: #0a4976;
    }

    .p6-page.is-current {
      color: #fff;
      background-color: #0a4976;
      border-color: #0a4976;
      cursor: default;
    }

    /* ---- 响应式 ---- */
    @media (max-width: 991px) {
      .p6-grid { grid-template-columns: repeat(2, 1fr); }
      .p6-tab { font-size: 14px; padding: 9px 14px; }
    }

    @media (max-width: 640px) {
      .p6-grid { grid-template-columns: 1fr; }
      .p6-tabs { gap: 6px; padding: 10px 12px; }
      .p6-tab { font-size: 13px; padding: 8px 12px; }
      .p6-tab-divider { display: none; }
    }

