﻿:root {
      --bg: #F3F7FB;
      --primary: #0B1F3A;
      --panel: #FFFFFF;
      --text: rgba(8,25,44,0.78);
      --strong: #08192C;
      --muted: rgba(8,25,44,0.62);
      --line: rgba(11,31,58,0.14);
      --accent: #F28C28;
      --footer-bg: #040A12;
      --container: 1200px;
      --gutter: 24px;
      --ease: cubic-bezier(.22,.61,.36,1);
    }
* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
html {
      scroll-behavior: smooth;
      background: var(--bg);
    }
body {
      min-width: 320px;
      overflow-x: hidden;
      color: var(--text);
      background:
        radial-gradient(circle at 78% 0%, rgba(167,191,214,0.5), transparent 32%),
        linear-gradient(180deg, #F7FAFD 0%, #EEF3F8 48%, #F3F7FB 100%);
      font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
      letter-spacing: 0;
    }
body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 20;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(11,31,58,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11,31,58,0.045) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.48), transparent 68%);
    }
body.is-en {
      font-family: "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
      letter-spacing: 0;
    }
body.is-en .hero h1 {
      max-width: 11.5em;
      font-size: clamp(44px, 4.4vw, 64px);
      line-height: 1.08;
      white-space: normal;
      letter-spacing: -0.025em;
    }
body.is-en .hero p {
      max-width: 620px;
      font-size: 18px;
      line-height: 1.75;
    }
body.is-en .section-title {
      max-width: 11em;
      font-size: clamp(38px, 4vw, 58px);
      line-height: 1.12;
      letter-spacing: -0.035em;
    }
body.is-en .section-copy {
      font-size: 17px;
      line-height: 1.75;
    }
body.is-en .scene-title {
      font-size: 24px;
      line-height: 1.18;
      letter-spacing: -0.015em;
    }
body.is-en .product-title,
body.is-en .product-tile-title,
body.is-en .news-title,
body.is-en .news-list-title,
body.is-en .article-title,
body.is-en .inner-title {
      letter-spacing: -0.025em;
      line-height: 1.16;
    }
body.is-en .news-title {
      font-size: 26px;
    }
body.is-en .inner-title {
      font-size: clamp(42px, 6vw, 66px);
    }
img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
a {
      color: inherit;
      text-decoration: none;
    }
.container {
      width: min(var(--container), calc(100% - 48px));
      margin: 0 auto;
    }
.grid-12 {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: var(--gutter);
    }
.section {
      position: relative;
      padding: 128px 0;
    }
.eyebrow {
      margin-bottom: 24px;
      color: var(--accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
.section-title {
      color: var(--strong);
      font-size: clamp(44px, 4.8vw, 72px);
      line-height: 1.12;
      font-weight: 300;
      letter-spacing: -0.055em;
      text-wrap: balance;
    }
.section-copy {
      max-width: 460px;
      margin-top: 30px;
      color: var(--muted);
      font-size: 19px;
      line-height: 2;
      font-weight: 300;
      text-wrap: pretty;
    }
.btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 28px;
      border: 1px solid rgba(242,140,40,0.68);
      background: var(--accent);
      color: #07101C;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
    }
.btn:hover {
      transform: translateY(-3px);
      background: #FF9B35;
      box-shadow: 0 18px 42px rgba(242,140,40,0.18);
    }
.btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
    }
.reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }
.reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
.site-header {
      --nav-bg: transparent;
      --nav-border: transparent;
      --nav-text: rgba(255,255,255,0.76);
      --nav-strong: #FFFFFF;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 30;
      border-bottom: 0;
      background: var(--nav-bg);
      backdrop-filter: blur(18px);
      transition: background .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
    }
.site-header.nav-on-dark {
      --nav-bg: transparent;
      --nav-border: transparent;
      --nav-text: rgba(255,255,255,0.78);
      --nav-strong: #FFFFFF;
    }
.site-header.nav-on-light {
      --nav-bg: transparent;
      --nav-border: transparent;
      --nav-text: rgba(8,25,44,0.72);
      --nav-strong: #08192C;
    }
.site-header.is-scrolled.nav-on-dark {
      --nav-bg: transparent;
      --nav-border: transparent;
      box-shadow: none;
    }
.site-header.is-scrolled.nav-on-light {
      --nav-bg: transparent;
      box-shadow: none;
    }
.nav {
      height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
.logo {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 204px;
      height: 45px;
      color: var(--nav-strong);
      position: relative;
    }
.logo-img {
      position: absolute;
      width: 204px;
      height: auto;
      max-height: 45px;
      object-fit: contain;
      object-position: left center;
      transition: opacity .35s var(--ease);
    }
.logo-img--dark {
      opacity: 0;
    }
.logo-img--light {
      opacity: 1;
    }
.site-header.nav-on-light .logo-img--dark {
      opacity: 1;
    }
.site-header.nav-on-light .logo-img--light {
      opacity: 0;
    }
.site-header.nav-on-dark .logo-img--dark {
      opacity: 0;
    }
.site-header.nav-on-dark .logo-img--light {
      opacity: 1;
    }
.nav-links {
      display: flex;
      align-items: center;
      gap: 42px;
      color: var(--nav-text);
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.06em;
    }
.nav-links a {
      position: relative;
      padding: 10px 0;
      transition: color .3s var(--ease), transform .3s var(--ease);
    }
.nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 3px;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .32s var(--ease);
    }
.nav-links a:hover {
      color: var(--nav-strong);
      transform: translateY(-2px);
    }
.nav-links a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }
.nav-links a:focus-visible {
      color: var(--nav-strong);
      outline: none;
    }
.nav-links a:focus-visible::after {
      transform: scaleX(1);
      transform-origin: left;
    }
.language-switch {
      display: inline-flex;
      align-items: center;
      gap: 0;
      min-height: 36px;
      padding: 3px;
      border: 1px solid color-mix(in srgb, var(--nav-text) 34%, transparent);
      border-radius: 999px;
      background: color-mix(in srgb, var(--nav-strong) 6%, transparent);
      color: var(--nav-text);
      font-size: 13px;
      line-height: 1;
      font-weight: 500;
      letter-spacing: 0;
      box-shadow: inset 0 1px 0 color-mix(in srgb, var(--nav-strong) 10%, transparent);
    }
.language-switch a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 54px;
      height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      color: inherit;
      font-weight: 500;
    }
.language-switch a::after {
      content: none;
    }
.language-switch a:hover,
.language-switch a:focus-visible {
      background: color-mix(in srgb, var(--nav-strong) 10%, transparent);
      color: var(--nav-strong);
      transform: none;
    }
.language-switch i {
      width: 1px;
      height: 16px;
      margin: 0 2px;
      background: color-mix(in srgb, var(--nav-text) 44%, transparent);
    }
    .menu-toggle {
      display: none;
      flex: 0 0 44px;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,0.24);
      border-radius: 999px;
      background: rgba(5,13,24,0.34);
      color: #FFFFFF;
      cursor: pointer;
      place-items: center;
      position: relative;
      z-index: 34;
      margin-left: auto;
      backdrop-filter: blur(12px);
      transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
    }

    .menu-toggle span {
      position: absolute;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform .3s var(--ease), opacity .3s var(--ease);
    }

    .menu-toggle span:nth-child(1) {
      transform: translateY(-6px);
    }

    .menu-toggle span:nth-child(3) {
      transform: translateY(6px);
    }

    .menu-toggle.is-open span:nth-child(1) {
      transform: rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
      transform: rotate(-45deg);
    }

    .menu-toggle:hover,
    .menu-toggle:focus-visible {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.44);
      outline: none;
      transform: translateY(-1px);
    }
.hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 92px 0 128px;
      position: relative;
      overflow: hidden;
      background: #071321;
    }
.hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse at 72% 46%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 24%, transparent 54%),
        radial-gradient(ellipse at 50% 50%, transparent 0%, transparent 52%, rgba(0,0,0,0.46) 100%),
        linear-gradient(90deg, rgba(3,9,17,0.9) 0%, rgba(5,13,24,0.76) 34%, rgba(8,24,43,0.3) 66%, rgba(8,24,43,0.08) 100%),
        linear-gradient(180deg, rgba(5,13,24,0.56) 0%, transparent 34%, rgba(5,13,24,0.58) 100%);
      pointer-events: none;
    }
.hero::before {
      content: none;
    }
.hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0;
      transform: scale(1.06);
      background-size: cover;
      background-position: center;
      filter: saturate(1.04) contrast(1.08) brightness(.9);
      transition: opacity 1.7s var(--ease), transform 8.4s linear, filter 1.7s var(--ease);
      will-change: opacity, transform, filter;
    }
.hero-bg::before,
    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
.hero-bg::before {
      background:
        linear-gradient(100deg, rgba(5,13,24,0.32) 0%, rgba(5,13,24,0.08) 48%, rgba(255,255,255,0.08) 100%);
    }
.hero-bg::after {
      background:
        linear-gradient(115deg, transparent 0%, transparent 48%, rgba(242,140,40,0.18) 49%, rgba(255,255,255,0.22) 50%, transparent 51%, transparent 100%),
        linear-gradient(115deg, transparent 0%, transparent 61%, rgba(255,255,255,0.1) 62%, transparent 63%, transparent 100%);
      opacity: .7;
      mix-blend-mode: screen;
    }
.hero-bg.is-active {
      opacity: 1;
      transform: scale(1.015);
    }

.hero:not(.is-ready) .hero-bg:first-of-type {
      opacity: 1;
      transform: scale(1.015);
    }

.hero-light {
      position: absolute;
      inset: -18% -26%;
      z-index: 1;
      pointer-events: none;
      opacity: .78;
      mix-blend-mode: screen;
      background:
        radial-gradient(circle at 22% 46%, rgba(255,255,255,0.28), rgba(242,140,40,0.14) 13%, transparent 30%),
        linear-gradient(112deg, transparent 0%, transparent 42%, rgba(255,255,255,0.0) 45%, rgba(255,255,255,0.34) 50%, rgba(242,140,40,0.16) 53%, transparent 60%, transparent 100%);
      filter: blur(1px);
      transform: translateX(-18%) rotate(.001deg);
      animation: heroLightSweep 8.5s var(--ease) infinite;
    }

    @keyframes heroLightSweep {
      0% { opacity: .35; transform: translateX(-34%) translateY(4%) rotate(.001deg); }
      42% { opacity: .82; }
      70% { opacity: .42; transform: translateX(28%) translateY(-3%) rotate(.001deg); }
      100% { opacity: .35; transform: translateX(42%) translateY(-3%) rotate(.001deg); }
    }

.hero-particles {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

.hero-particles span {
      position: absolute;
      display: block;
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: rgba(255,255,255,0.72);
      box-shadow:
        0 0 12px rgba(255,255,255,0.38),
        0 0 22px rgba(242,140,40,0.22);
      opacity: 0;
      animation: heroParticleFloat 11s linear infinite;
    }

.hero-particles span:nth-child(1) { left: 12%; top: 72%; animation-delay: 0s; animation-duration: 12s; }
.hero-particles span:nth-child(2) { left: 21%; top: 48%; animation-delay: 1.8s; animation-duration: 10s; }
.hero-particles span:nth-child(3) { left: 34%; top: 82%; animation-delay: 3.1s; animation-duration: 13s; }
.hero-particles span:nth-child(4) { left: 45%; top: 58%; animation-delay: .8s; animation-duration: 11s; }
.hero-particles span:nth-child(5) { left: 58%; top: 76%; animation-delay: 2.4s; animation-duration: 12.5s; }
.hero-particles span:nth-child(6) { left: 71%; top: 50%; animation-delay: 4s; animation-duration: 10.5s; }
.hero-particles span:nth-child(7) { left: 82%; top: 68%; animation-delay: 1.2s; animation-duration: 13.5s; }
.hero-particles span:nth-child(8) { left: 90%; top: 42%; animation-delay: 3.8s; animation-duration: 11.8s; }
.hero-particles span:nth-child(9) { left: 16%; top: 34%; animation-delay: 5.1s; animation-duration: 12.8s; }
.hero-particles span:nth-child(10) { left: 50%; top: 36%; animation-delay: 2.9s; animation-duration: 10.8s; }
.hero-particles span:nth-child(11) { left: 64%; top: 88%; animation-delay: 4.7s; animation-duration: 12.2s; }
.hero-particles span:nth-child(12) { left: 78%; top: 28%; animation-delay: 6s; animation-duration: 11.2s; }

    @keyframes heroParticleFloat {
      0% { opacity: 0; transform: translate3d(0, 26px, 0) scale(.65); }
      12% { opacity: .62; }
      52% { opacity: .82; }
      100% { opacity: 0; transform: translate3d(46px, -118px, 0) scale(1.1); }
    }

.hero-bg.is-active {
      animation: heroBgDrift 7s linear both;
    }

    @keyframes heroBgDrift {
      from { transform: scale(1.055); }
      to { transform: scale(1.015); }
    }

    .hero-progress {
      position: absolute;
      left: 50%;
      bottom: 112px;
      z-index: 4;
      width: min(1200px, calc(100% - 48px));
      height: 1px;
      transform: translateX(-50%);
      background: rgba(255,255,255,0.22);
      overflow: hidden;
    }
.hero-progress span {
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      transform: translateX(-100%);
      animation: heroProgress 7s linear infinite;
    }

    @keyframes heroProgress {
to { transform: translateX(100%); }
 }

    #energyCanvas {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: .72;
    }
.hero .container {
      position: relative;
      z-index: 2;
    }
.hero-content {
      grid-column: span 7;
      position: relative;
      z-index: 1;
      padding: 26px 0 34px 34px;
      transform: translateY(-26px);
    }
.hero-content > * {
      position: relative;
      z-index: 1;
    }
.hero-content::before {
      content: "";
      position: absolute;
      left: 0;
      top: 24px;
      bottom: 28px;
      width: 2px;
      background: linear-gradient(180deg, var(--accent), rgba(255,255,255,0.28), transparent);
    }
.hero-space {
      grid-column: span 5;
    }
.hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 22px;
      color: rgba(255,255,255,0.9);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 9px 14px 9px 0;
      border-bottom: 1px solid rgba(255,255,255,0.14);
    }
.hero-kicker::before {
      content: "";
      width: 44px;
      height: 1px;
      background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0.42));
    }
.hero h1 {
      position: relative;
      max-width: none;
      color: #FFFFFF;
      font-size: clamp(48px, 5.1vw, 76px);
      line-height: 1.04;
      font-weight: 500;
      letter-spacing: 0.01em;
      white-space: nowrap;
      text-shadow: 0 18px 54px rgba(0,0,0,0.36);
    }
.hero h1::after {
      content: "";
      display: block;
      width: min(260px, 42vw);
      height: 3px;
      margin-top: 26px;
      background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0.5), transparent);
    }
.hero p {
      max-width: 560px;
      margin-top: 24px;
      color: rgba(255,255,255,0.88);
      font-size: clamp(18px, 1.25vw, 20px);
      line-height: 1.85;
      font-weight: 400;
      letter-spacing: 0.01em;
      text-wrap: pretty;
    }
.hero-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-top: 32px;
    }
.hero-actions .btn {
      min-width: 150px;
      min-height: 54px;
      border-radius: 999px;
      padding: 0 30px;
      letter-spacing: 0.02em;
      text-transform: none;
      box-shadow: 0 20px 44px rgba(242,140,40,0.16);
    }
.hero-actions .btn-ghost {
      border-color: rgba(255,255,255,0.22);
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.9);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
      backdrop-filter: blur(12px);
    }
.hero-actions .btn-ghost:hover {
      background: rgba(255,255,255,0.16);
      color: #FFFFFF;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 18px 42px rgba(0,0,0,0.16);
    }
.hero-meta {
      margin-top: 34px;
    }
.hero-meta-inner {
      display: flex;
      align-items: flex-start;
      gap: clamp(32px, 4.2vw, 58px);
      color: rgba(255,255,255,0.92);
    }
.hero-meta-inner span {
      display: grid;
      gap: 10px;
      min-width: 82px;
      padding: 0;
      border: 0;
      text-shadow: 0 10px 30px rgba(0,0,0,0.52);
    }
.hero-meta-inner strong {
      display: block;
      color: #FFFFFF;
      font-size: clamp(30px, 2.8vw, 40px);
      line-height: 0.95;
      font-weight: 300;
      letter-spacing: -0.03em;
    }
.hero-meta-inner em {
      display: block;
      color: rgba(255,255,255,0.82);
      font-size: 13px;
      line-height: 1.2;
      font-style: normal;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
.material {
      background: #F3F7FB;
      padding-bottom: 64px;
    }
.material-copy {
      grid-column: span 4;
      align-self: start;
      padding-top: 2px;
    }
.material-visual {
      grid-column: 5 / span 8;
      height: 500px;
      position: relative;
      overflow: hidden;
      background: #DCE6EF;
    }
.material-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(180deg, transparent 36%, rgba(5,13,24,0.5) 100%),
        linear-gradient(90deg, rgba(5,13,24,0.22), transparent 45%);
      pointer-events: none;
    }
.material-visual img {
      filter: saturate(1.02) contrast(1.02) brightness(1.04);
    }
.material-carousel {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: #DCE6EF;
    }
.material-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.04);
      transition: opacity .72s var(--ease), transform 1.2s var(--ease);
    }
.material-slide.is-active {
      opacity: 1;
      transform: scale(1);
    }
.material-slide img {
      width: 100%;
      height: 100%;
    }
.material-spec {
      position: absolute;
      left: 32px;
      right: auto;
      bottom: 30px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 22px;
      max-width: calc(100% - 170px);
      padding: 0;
      background: transparent;
      color: rgba(255,255,255,0.9);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
.material-spec span {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      text-shadow: 0 10px 28px rgba(0,0,0,0.42);
      transition: opacity .32s var(--ease), transform .32s var(--ease);
    }
.material-spec.is-changing span {
      opacity: 0;
      transform: translateY(8px);
    }
.material-controls {
      position: absolute;
      inset: 0;
      z-index: 4;
      pointer-events: none;
    }
.material-control {
      position: absolute;
      bottom: 28px;
      width: 36px;
      height: 36px;
      border: 0;
      background: transparent;
      color: rgba(255,255,255,0.9);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      pointer-events: auto;
      transform: none;
      transition: color .3s var(--ease), transform .3s var(--ease);
    }
.material-control[data-material-prev] {
      right: 76px;
    }
.material-control[data-material-next] {
      right: 32px;
    }
.material-control:hover,
    .material-control:focus-visible {
      color: var(--accent);
      outline: none;
      transform: translateY(-2px);
    }
.material-dots {
      position: absolute;
      left: 32px;
      right: 32px;
      bottom: 18px;
      z-index: 5;
      display: flex;
      gap: 6px;
      align-items: center;
      padding: 0;
    }
.material-dot {
      flex: 1;
      width: auto;
      height: 2px;
      border: 0;
      border-radius: 0;
      background: rgba(255,255,255,0.28);
      cursor: pointer;
      transition: background .3s var(--ease);
    }
.material-dot.is-active {
      background: var(--accent);
    }
.material-counter {
      position: absolute;
      left: 32px;
      top: 28px;
      z-index: 4;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0;
      background: transparent;
      color: rgba(255,255,255,0.72);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-shadow: 0 10px 28px rgba(0,0,0,0.32);
    }
.material-counter strong {
      color: #FFFFFF;
      font-size: 14px;
    }
.scenes {
      background: linear-gradient(180deg, #F3F7FB, #EAF1F7);
      padding-top: 72px;
    }
.section-head {
      grid-column: span 12;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 48px;
      margin-bottom: 34px;
    }
.section-head .section-copy {
      max-width: 430px;
      margin-top: 0;
    }
.scene-track {
      grid-column: span 12;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: var(--gutter);
    }
.scene-card {
      min-height: 440px;
      height: 440px;
      overflow: hidden;
      position: relative;
      background: var(--primary);
      transition: transform .42s var(--ease), box-shadow .42s var(--ease);
    }
.scene-card:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 28px 70px rgba(0,0,0,0.28);
    }
.scene-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(5,13,24,0.1) 18%, rgba(5,13,24,0.88) 100%);
    }
.scene-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s var(--ease), filter .6s var(--ease);
      filter: saturate(.86) contrast(1.08);
    }
.scene-card:hover img {
      transform: scale(1.06);
      filter: saturate(1) contrast(1.14);
    }
.scene-title {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 30px;
      z-index: 2;
      color: #FFFFFF;
      font-size: 28px;
      line-height: 1.15;
      font-weight: 300;
      letter-spacing: -0.03em;
    }
.scene-label {
      display: block;
      margin-bottom: 12px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
.products {
      background: #FFFFFF;
    }
.product-card {
      grid-column: span 4;
      position: relative;
      transition: transform .35s var(--ease);
    }
.product-card:hover {
      transform: translateY(-5px);
    }
.product-image {
      height: 360px;
      overflow: hidden;
      background: #F4F7FA;
      margin-bottom: 26px;
    }
.product-image img {
      object-fit: contain;
      padding: 18px;
      filter: contrast(1.05);
      transition: transform .45s var(--ease);
    }
.product-card:hover .product-image img {
      transform: scale(1.045);
    }
.product-name {
      color: var(--strong);
      font-size: 24px;
      line-height: 1.2;
      font-weight: 300;
      letter-spacing: -0.025em;
      margin-bottom: 12px;
    }
.product-desc {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.9;
      font-weight: 300;
      margin-bottom: 22px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
.product-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: rgba(8,25,44,0.82);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color .3s var(--ease);
    }
.product-link::after {
      content: "";
      width: 34px;
      height: 1px;
      background: var(--accent);
      transition: width .3s var(--ease);
    }
.product-link:hover {
      color: var(--accent);
    }
.product-link:hover::after {
      width: 48px;
    }

    .data {
background:
        linear-gradient(rgba(5,13,24,0.58), rgba(5,13,24,0.68)),
        url("../images/homebg1.jpg");
background-size: cover;
      background-position: center;
      text-align: center;
    }

    .data .section-title {
      color: #FFFFFF;
    }
.data-head {
      grid-column: 3 / span 8;
      margin-bottom: 66px;
    }
.data-row {
      grid-column: span 12;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: var(--gutter);
    }
.data-item {
      padding: 20px 24px 0;
      border-top: 1px solid rgba(255,255,255,0.16);
    }
.data-number {
      display: inline-flex;
      align-items: flex-start;
      justify-content: center;
      gap: 8px;
      color: #FFFFFF;
      font-size: clamp(52px, 5.2vw, 74px);
      line-height: 1;
      font-weight: 200;
      letter-spacing: -0.035em;
      font-variant-numeric: tabular-nums;
    }
.data-number .data-unit {
      margin-top: 0.12em;
      color: rgba(255,255,255,0.82);
      font-size: 0.34em;
      line-height: 1;
      font-weight: 400;
      letter-spacing: 0;
    }
.data-label {
      margin-top: 18px;
      color: rgba(255,255,255,0.68);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
    }
.insights {
      background: #F3F7FB;
    }
.insight-item {
      grid-column: span 4;
      padding-top: 28px;
      border-top: 1px solid var(--line);
      transition: transform .35s var(--ease), border-color .35s var(--ease);
    }
.insight-item:hover {
      transform: translateY(-5px);
      border-color: rgba(242,140,40,0.64);
    }
.insight-icon {
      display: none;
    }
.insight-date {
      color: var(--accent);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
.insight-title {
      min-height: 68px;
      color: var(--strong);
      font-size: 26px;
      line-height: 1.3;
      font-weight: 300;
      letter-spacing: -0.025em;
      margin-bottom: 16px;
      text-wrap: pretty;
    }
.insight-desc {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
      font-weight: 300;
      text-wrap: pretty;
    }
.news {
      background: #FFFFFF;
    }
.news-card {
      grid-column: span 4;
      transition: transform .35s var(--ease);
    }
.news-card:hover {
      transform: translateY(-6px);
    }
.news-image {
      height: 320px;
      margin-bottom: 28px;
      overflow: hidden;
      background: #EAF1F7;
    }
.news-image img {
      transition: transform .55s var(--ease), filter .55s var(--ease);
    }
.news-card:hover .news-image img {
      transform: scale(1.045);
      filter: saturate(1.04) contrast(1.04);
    }
.news-meta {
      color: rgba(8,25,44,0.46);
      font-size: 13px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
    }
.news-title {
      margin-top: 24px;
      color: var(--strong);
      font-size: 30px;
      line-height: 1.3;
      font-weight: 300;
      letter-spacing: -0.04em;
      text-wrap: balance;
    }
.news-desc {
      margin-top: 16px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      font-weight: 300;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      text-wrap: pretty;
    }
.news-link {
      margin-top: 24px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--accent);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: none;
      transition: color .3s var(--ease);
    }
.news-link::after {
      content: "";
      width: 26px;
      height: 1px;
      background: var(--accent);
      transition: width .3s var(--ease);
    }
.news-link:hover {
      color: var(--accent);
    }
.news-link:hover::after {
      width: 42px;
    }

    .cta {
padding: 150px 0;
      position: relative;
      background:
        linear-gradient(90deg, rgba(5,13,24,0.78), rgba(11,31,58,0.48), rgba(5,13,24,0.78)),
        url("../images/homebg2.jpg");
background-size: cover;
      background-position: center;
      text-align: center;
      margin-bottom: -1px;
    }

    .cta::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -2px;
      height: 4px;
      background: var(--footer-bg);
      pointer-events: none;
    }

    .cta-inner {
      grid-column: 2 / span 10;
    }
.cta h2 {
      max-width: 880px;
      margin: 0 auto 22px;
      color: #FFFFFF;
      font-size: clamp(40px, 4.4vw, 64px);
      line-height: 1.18;
      font-weight: 300;
      letter-spacing: -0.035em;
      text-wrap: balance;
    }
.cta-copy {
      max-width: 620px;
      margin: 0 auto 38px;
      color: rgba(255,255,255,0.72);
      font-size: 18px;
      line-height: 1.9;
      font-weight: 300;
      text-wrap: pretty;
    }
.footer {
      position: relative;
      padding: 72px 0 46px;
      margin-top: 0;
      background: var(--footer-bg);
      color: rgba(255,255,255,0.48);
      border-top: 0;
    }
.footer::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -28px;
      height: 28px;
      background: var(--footer-bg);
      pointer-events: none;
    }
.footer-col {
      grid-column: span 3;
    }
.footer-col--brand {
      grid-column: span 5;
    }
.footer-col--links {
      grid-column: span 3;
    }
.footer-col--contact {
      grid-column: span 4;
    }
.footer-brand {
      color: #FFFFFF;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
.footer-title {
      color: rgba(255,255,255,0.76);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
.footer p,
    .footer a {
      display: block;
      max-width: 270px;
      color: rgba(255,255,255,0.46);
      font-size: 14px;
      line-height: 1.9;
      transition: color .3s var(--ease);
    }
.footer a:hover {
      color: rgba(255,255,255,0.82);
    }
.footer-bottom {
      margin-top: 58px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      justify-content: space-between;
      gap: 24px;
      color: rgba(255,255,255,0.34);
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
.footer-support {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      text-transform: none;
      letter-spacing: 0.02em;
    }
.footer-support img {
      width: 64px;
      height: 26px;
      object-fit: contain;
      opacity: 0.92;
    }

    @media (max-width: 1024px) {
:root { --gutter: 20px; }
.section { padding: 96px 0; }
.material { padding-bottom: 52px; }
.scenes { padding-top: 56px; }
.menu-toggle {
        display: grid;
        position: fixed;
        top: 14px;
        left: min(calc(100vw - 60px), 330px);
        right: auto;
      }
      .nav-links {
        position: fixed;
        top: 78px;
        left: 20px;
        right: auto;
        width: min(calc(100vw - 40px), 350px);
        display: grid;
        gap: 2px;
        padding: 14px;
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 22px;
        background: rgba(5,13,24,0.9);
        box-shadow: 0 24px 70px rgba(0,0,0,0.24);
        color: rgba(255,255,255,0.88);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        backdrop-filter: blur(18px);
        transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s var(--ease);
      }
      .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }
      .nav-links a {
        padding: 13px 12px;
        border-radius: 14px;
        font-size: 15px;
        letter-spacing: 0;
      }
      .nav-links a::after {
        content: none;
      }
      .nav-links a:hover,
      .nav-links a:focus-visible {
        background: rgba(255,255,255,0.08);
        color: #FFFFFF;
        transform: none;
      }
      .language-switch {
        margin-top: 6px;
        justify-content: center;
        min-height: 40px;
        padding: 4px;
        border-color: rgba(255,255,255,0.16);
        background: rgba(255,255,255,0.075);
        color: rgba(255,255,255,0.82);
      }
      .language-switch a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 54px;
        height: 30px;
        border-radius: 999px;
      }
      .language-switch a:hover,
      .language-switch a:focus-visible {
        background: rgba(255,255,255,0.12);
      }
      .language-switch i {
        background: rgba(255,255,255,0.18);
      }
.hero-content,
      .hero-space,
      .material-copy,
      .material-visual,
      .section-head,
      .data-head,
      .data-row,
      .cta-inner {
        grid-column: span 12;
      }
.hero { min-height: 860px; }
.material-visual { height: 460px; }
.material-spec {
        max-width: calc(100% - 160px);
      }
.section-head { display: block; }
.section-head .section-copy { margin-top: 24px; }
.scene-card,
      .product-card,
      .insight-item,
      .news-card { grid-column: span 6; }
.data-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-col { grid-column: span 6; }
    }

    @media (max-width: 720px) {
.container { width: min(var(--container), calc(100% - 32px)); }
.hero { min-height: 100vh; padding-top: 104px; }
.hero-content {
        padding-left: 22px;
        transform: translateY(-12px);
      }
.hero-kicker {
        font-size: 11px;
        letter-spacing: 0.08em;
      }
.hero h1 {
        font-size: clamp(42px, 12vw, 62px);
        white-space: normal;
      }
.hero-meta-inner {
        flex-wrap: wrap;
        gap: 24px 34px;
      }
.hero-meta-inner strong {
        font-size: 30px;
      }
.hero-actions { align-items: stretch; flex-direction: column; }
.btn { width: 100%; }
.material-visual { height: 340px; }
.material-counter {
        left: 22px;
        top: 22px;
      }
.material-spec {
        left: 22px;
        right: 22px;
        bottom: 50px;
        max-width: none;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
      }
.material-spec span {
        min-height: 0;
      }
.material-control {
        top: auto;
        bottom: 76px;
        width: 38px;
        height: 38px;
        transform: none;
      }
.material-control[data-material-prev] {
        left: auto;
        right: 66px;
      }
.material-control[data-material-next] {
        right: 22px;
      }
.material-control:hover,
      .material-control:focus-visible {
        transform: translateY(-2px);
      }
.material-dots {
        right: 22px;
        bottom: 22px;
        padding: 9px 10px;
      }
.scene-card,
      .product-image { height: 360px; }
.insight-title {
        min-height: 0;
      }
.cta h2 {
        font-size: clamp(34px, 10vw, 48px);
      }
.cta h2 br {
        display: none;
      }
.cta-copy {
        font-size: 16px;
      }
.scene-card,
      .product-card,
      .insight-item,
      .news-card,
      .footer-col { grid-column: span 12; }
.data-row { grid-template-columns: 1fr; }
.footer-bottom { flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
*,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
    }

    /* Inner page shared styles */

    .inner-hero {
min-height: 420px;
      display: flex;
      align-items: end;
      padding: 148px 0 82px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(5,13,24,0.84), rgba(11,31,58,0.58), rgba(5,13,24,0.76)),
        url("../images/bg1.png");
background-size: cover;
      background-position: center;
    }

    .inner-hero .container {
      position: relative;
      z-index: 1;
    }
.breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 26px;
      color: rgba(255,255,255,0.62);
      font-size: 13px;
      letter-spacing: 0.04em;
    }
.breadcrumb a {
      color: rgba(255,255,255,0.72);
      transition: color .3s var(--ease);
    }
.breadcrumb a:hover {
      color: var(--accent);
    }
.inner-title {
      max-width: 820px;
      color: #FFFFFF;
      font-size: clamp(46px, 5.4vw, 78px);
      line-height: 1.1;
      font-weight: 300;
      letter-spacing: -0.045em;
      text-wrap: balance;
    }
.inner-copy {
      max-width: 620px;
      margin-top: 24px;
      color: rgba(255,255,255,0.72);
      font-size: 18px;
      line-height: 1.9;
      font-weight: 300;
      text-wrap: pretty;
    }
.inner-section {
      padding: 110px 0;
      background: #F3F7FB;
    }
.list-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 34px 28px;
    }
.list-card {
      display: block;
      background: #FFFFFF;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    }
.list-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(11,31,58,0.1);
    }
.list-image {
      height: 280px;
      overflow: hidden;
      background: #EAF1F7;
    }
.list-image img {
      transition: transform .55s var(--ease), filter .55s var(--ease);
    }
.list-card:hover .list-image img {
      transform: scale(1.045);
      filter: saturate(1.04) contrast(1.04);
    }
.list-body {
      padding: 26px 24px 30px;
    }
.list-meta {
      margin-bottom: 18px;
      color: var(--accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
.list-title {
      color: var(--strong);
      font-size: 25px;
      line-height: 1.32;
      font-weight: 300;
      letter-spacing: -0.025em;
      text-wrap: balance;
    }
.list-desc {
      margin-top: 16px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
      font-weight: 300;
      text-wrap: pretty;
    }
.product-list-head {
      display: grid;
      grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
      gap: 48px;
      align-items: end;
      margin-bottom: 54px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(11,31,58,0.12);
    }

    .product-list-kicker {
      color: var(--accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .product-list-head h2 {
      margin-top: 18px;
      color: var(--strong);
      font-size: clamp(38px, 5vw, 72px);
      line-height: 1.06;
      font-weight: 300;
      letter-spacing: -0.055em;
      text-wrap: balance;
    }

    .product-list-head p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.9;
      font-weight: 300;
      text-wrap: pretty;
    }

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

    .product-tile {
      display: grid;
      grid-template-rows: auto 1fr;
      min-height: 100%;
      background: rgba(255,255,255,0.58);
      border: 1px solid rgba(11,31,58,0.08);
      transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
    }

    .product-tile:hover {
      transform: translateY(-8px);
      background: #FFFFFF;
      border-color: rgba(242,140,40,0.45);
      box-shadow: 0 30px 78px rgba(11,31,58,0.12);
    }

    .product-tile-media {
      position: relative;
      aspect-ratio: 3 / 4;
      height: auto;
      overflow: hidden;
      background: #EAF1F7;
    }

    .product-tile-media::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 42%;
      background: linear-gradient(180deg, transparent, rgba(5,14,24,0.5));
      opacity: .78;
      pointer-events: none;
    }

    .product-tile-media img {
      transition: transform .65s var(--ease), filter .65s var(--ease);
    }

    .product-tile:hover .product-tile-media img {
      transform: scale(1.035);
      filter: saturate(1.05) contrast(1.04);
    }

    .product-tile-label {
      position: absolute;
      left: 24px;
      bottom: 22px;
      z-index: 1;
      color: rgba(255,255,255,0.9);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .product-tile-body {
      padding: 30px 30px 34px;
      display: grid;
      gap: 22px;
    }

    .product-tile-title {
      color: var(--strong);
      font-size: clamp(28px, 3vw, 40px);
      line-height: 1.15;
      font-weight: 300;
      letter-spacing: -0.045em;
      text-wrap: balance;
    }

    .product-tile-desc {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
      font-weight: 300;
      text-wrap: pretty;
    }

    .product-tile-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(11,31,58,0.11);
      color: rgba(8,25,44,0.64);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .product-tile-foot span {
      max-width: 75%;
      line-height: 1.7;
      font-weight: 400;
      letter-spacing: 0;
      text-transform: none;
    }

    .product-tile-arrow {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(11,31,58,0.14);
      color: var(--strong);
      font-size: 20px;
      transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
    }

    .product-tile:hover .product-tile-arrow {
      transform: translateX(4px);
      border-color: var(--accent);
      background: var(--accent);
      color: #071523;
    }

    .pagebar {
      margin-top: 58px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
      text-align: center;
    }
.pagebar a,
    .pagebar span {
      min-width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 15px;
      border: 1px solid rgba(11,31,58,0.13);
      background: rgba(255,255,255,0.72);
      color: rgba(8,25,44,0.72);
      font-size: 13px;
      font-weight: 500;
      transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
    }
.pagebar a:hover,
    .pagebar .active,
    .pagebar .current {
      transform: translateY(-2px);
      border-color: var(--accent);
      background: var(--accent);
      color: #071523;
    }
.article-wrap {
      max-width: 920px;
      margin: 0 auto;
      padding: 86px 78px;
      background: #FFFFFF;
    }
.article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 22px;
      margin-bottom: 30px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
.article-title {
      color: var(--strong);
      font-size: clamp(38px, 4vw, 58px);
      line-height: 1.18;
      font-weight: 300;
      letter-spacing: -0.04em;
      text-wrap: balance;
    }
.article-cover {
      height: 480px;
      margin: 44px 0;
      overflow: hidden;
      background: #EAF1F7;
    }
.article-content {
      color: rgba(8,25,44,0.78);
      font-size: 17px;
      line-height: 2;
      font-weight: 300;
    }
.article-content p,
    .article-content ul,
    .article-content ol,
    .article-content table,
    .article-content img {
      margin-bottom: 24px;
    }
.article-content img {
      margin-bottom: 24px;
    }
.page-nav {
      margin-top: 48px;
      padding-top: 26px;
      border-top: 1px solid var(--line);
      display: grid;
      gap: 14px;
      color: var(--muted);
      font-size: 14px;
    }
.page-nav a:hover {
      color: var(--accent);
    }
.single-layout {
      display: grid;
      grid-template-columns: 4fr 8fr;
      gap: 58px;
      align-items: start;
    }
.single-aside {
      position: sticky;
      top: 120px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
    }
.single-aside h2 {
      color: var(--strong);
      font-size: 32px;
      line-height: 1.2;
      font-weight: 300;
      letter-spacing: -0.035em;
    }
.single-aside p {
      margin-top: 18px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.9;
      font-weight: 300;
    }
.single-content {
      padding: 54px 58px;
      background: #FFFFFF;
      color: rgba(8,25,44,0.78);
      font-size: 17px;
      line-height: 2;
      font-weight: 300;
    }
.search-box {
      max-width: 720px;
      margin: 0 auto 54px;
      display: flex;
      background: #FFFFFF;
      border: 1px solid rgba(11,31,58,0.12);
    }
.search-box input {
      flex: 1;
      min-height: 58px;
      border: 0;
      padding: 0 22px;
      color: var(--strong);
      background: transparent;
      font: inherit;
      outline: none;
    }
.search-box button {
      min-width: 128px;
      border: 0;
      background: var(--accent);
      color: #07101C;
      font-weight: 800;
      cursor: pointer;
    }
/* Product detail styles */

    .product-detail {
      display: grid;
      gap: 70px;
    }
.product-hero-card {
      display: grid;
      grid-template-columns: minmax(0, 6.5fr) minmax(360px, 5.5fr);
      gap: 0;
      background: #FFFFFF;
      box-shadow: 0 28px 80px rgba(11,31,58,0.08);
    }
.product-media {
      min-height: 620px;
      overflow: hidden;
      background: #EAF1F7;
    }
.product-media img {
      transition: transform .65s var(--ease), filter .65s var(--ease);
    }
.product-hero-card:hover .product-media img {
      transform: scale(1.035);
      filter: saturate(1.04) contrast(1.03);
    }
.product-panel {
      padding: 64px 58px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
.product-kicker {
      margin-bottom: 22px;
      color: var(--accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
.product-title {
      color: var(--strong);
      font-size: clamp(42px, 4.8vw, 68px);
      line-height: 1.08;
      font-weight: 300;
      letter-spacing: -0.052em;
      text-wrap: balance;
    }
.product-summary {
      margin-top: 24px;
      color: rgba(8,25,44,0.68);
      font-size: 17px;
      line-height: 1.9;
      font-weight: 300;
      text-wrap: pretty;
    }
.product-specs {
      margin-top: 38px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border-top: 1px solid rgba(11,31,58,0.12);
      border-left: 1px solid rgba(11,31,58,0.12);
    }
.product-spec strong {
      display: block;
      color: var(--strong);
      font-size: 26px;
      line-height: 1;
      font-weight: 300;
      letter-spacing: -0.035em;
    }
.product-spec span {
      display: block;
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
      font-weight: 500;
    }
.product-actions {
      margin-top: 34px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }
.product-action.primary {
      border-color: var(--accent);
      background: var(--accent);
      color: #071523;
    }
.product-action:hover {
      transform: translateY(-2px);
      border-color: var(--accent);
      background: var(--accent);
      color: #071523;
    }
.product-content-grid {
      display: grid;
      grid-template-columns: minmax(0, 8fr) minmax(280px, 3fr);
      gap: 58px;
      align-items: start;
    }
.product-body {
      padding: 76px 78px;
      background: #FFFFFF;
      color: rgba(8,25,44,0.8);
      font-size: 17px;
      line-height: 2.05;
      font-weight: 300;
    }
.product-body h2,
    .product-body h3 {
      margin: 8px 0 22px;
      color: var(--strong);
      font-weight: 300;
      letter-spacing: -0.035em;
    }
.product-body p,
    .product-body ul,
    .product-body ol,
    .product-body table,
    .product-body img {
      margin-bottom: 24px;
    }
.product-body img {
      margin-bottom: 24px;
    }
.product-side {
      position: sticky;
      top: 128px;
      display: grid;
      gap: 24px;
    }
.product-side-card {
      padding: 30px;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(11,31,58,0.08);
    }
.product-side-title {
      color: var(--accent);
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
.product-side-card p {
      margin-top: 18px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
      font-weight: 300;
    }
.product-service-list {
      margin-top: 22px;
      display: grid;
      gap: 14px;
      color: var(--strong);
      font-size: 15px;
      line-height: 1.55;
      font-weight: 300;
    }
.product-service-list span {
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(11,31,58,0.1);
    }
.product-service-list span:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }
.product-nav {
      display: grid;
      gap: 14px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }
.product-nav a:hover {
      color: var(--accent);
    }
/* News detail styles */

    .news-detail {
      display: grid;
      grid-template-columns: minmax(0, 8fr) minmax(280px, 3fr);
      gap: 56px;
      align-items: start;
    }
.news-article {
      min-width: 0;
    }
.news-article-head {
      padding: 0 0 42px;
      border-bottom: 1px solid rgba(11,31,58,0.12);
    }
.news-label {
      margin-bottom: 20px;
      color: var(--accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
.news-summary {
      max-width: 760px;
      margin-top: 24px;
      color: rgba(8,25,44,0.66);
      font-size: 18px;
      line-height: 1.9;
      font-weight: 300;
      text-wrap: pretty;
    }
.news-cover {
      height: min(58vw, 560px);
      margin: 44px 0 0;
      overflow: hidden;
      background: #EAF1F7;
    }
.news-body {
      margin-top: 54px;
      padding: 0 7vw 0 0;
      color: rgba(8,25,44,0.8);
      font-size: 18px;
      line-height: 2.08;
      font-weight: 300;
    }
.news-body p,
    .news-body ul,
    .news-body ol,
    .news-body table,
    .news-body img {
      margin-bottom: 26px;
    }
.news-body img {
      margin-bottom: 26px;
    }
.news-side {
      position: sticky;
      top: 128px;
      display: grid;
      gap: 30px;
      padding-left: 34px;
      border-left: 1px solid rgba(11,31,58,0.12);
    }
.news-side::before {
      display: none;
    }
.news-info,
    .news-related,
    .news-next {
      padding: 0;
      background: transparent;
      border: 0;
    }
.news-info dl {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }
.news-info div {
      display: grid;
      gap: 8px;
      padding: 0 0 18px;
      border-bottom: 1px solid rgba(11,31,58,0.12);
    }
.news-info div:last-child {
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(11,31,58,0.12);
    }
.news-info dt,
    .news-related-title,
    .news-next-title {
      color: var(--accent);
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
.news-info dd {
      color: var(--strong);
      font-size: 17px;
      line-height: 1.45;
      font-weight: 300;
    }
.news-related {
      padding-top: 4px;
    }
.news-related-list {
      margin-top: 22px;
      display: grid;
      gap: 16px;
    }
.news-related-list a {
      position: relative;
      display: block;
      padding: 0 0 16px 18px;
      border-bottom: 1px solid rgba(11,31,58,0.1);
      color: rgba(8,25,44,0.8);
      font-size: 16px;
      line-height: 1.65;
      font-weight: 300;
      transition: color .3s var(--ease), padding-left .3s var(--ease);
    }
.news-related-list a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }
.news-related-list a:hover {
      color: var(--accent);
      padding-left: 24px;
    }
.news-next {
      display: grid;
      gap: 14px;
      padding-top: 8px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }
.news-next div:not(.news-next-title) {
      padding: 16px 0 0;
      border-top: 1px solid rgba(11,31,58,0.12);
    }
.news-next a:hover {
      color: var(--accent);
    }
    @media (max-width: 1024px) {
.single-layout,
      .news-detail,
      .product-hero-card,
      .product-content-grid { grid-template-columns: 1fr; }
.single-aside,
      .news-side,
      .product-side { position: static; }
.news-side { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-media { min-height: 460px; }
.news-body { padding-right: 0; }
.message-shell { grid-template-columns: 1fr; }
.message-panel,
      .message-records { padding: 38px 30px; }
    }

    @media (max-width: 720px) {
.inner-hero { min-height: 340px; padding: 126px 0 64px; }
.inner-title { font-size: clamp(38px, 12vw, 56px); }
.inner-section { padding: 72px 0; }
.list-grid,
      .news-side,
      .product-side { grid-template-columns: 1fr; }
.article-wrap,
      .single-content,
      .product-body { padding: 42px 26px; }
.article-cover,
      .news-cover { height: 300px; }
.product-panel { padding: 42px 26px; }
.product-media { min-height: 320px; }
.product-specs { grid-template-columns: 1fr; }
.product-content-grid { gap: 34px; }
.product-body,
      .news-body { font-size: 16px; line-height: 1.95; }
.product-side-card,
      .news-info,
      .news-related,
      .news-next { padding: 24px; }
.search-box { display: block; }
.search-box button { width: 100%; min-height: 52px; }
.checkcode-row { grid-template-columns: 1fr; }
.checkcode-row img { width: 100%; }
.message-submit { width: 100%; }
    }
    /* Shared mobile overrides */
    @media (max-width: 720px) {
      .hero {
        min-height: 100svh;
        min-height: 100vh;
        align-items: flex-start;
        padding: 86px 0 24px;
      }
      .hero-content {
        min-width: 0;
        width: 100%;
        max-width: calc(100vw - 48px);
        margin-top: clamp(34px, 7svh, 68px);
        padding: 0 0 0 18px;
        transform: none;
      }
      .hero h1 {
        max-width: 8em;
        font-size: clamp(32px, 9.2vw, 40px);
        line-height: 1.14;
        letter-spacing: 0;
        white-space: normal;
        overflow-wrap: anywhere;
      }
      .hero p {
        max-width: min(100%, 23em);
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.65;
        letter-spacing: 0;
      }
      .hero-meta { margin-top: 20px; }
      .hero-meta-inner {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4px;
      }
      .hero-meta-inner span { min-width: 0; gap: 3px; }
      .hero-meta-inner strong {
        font-size: clamp(16px, 5vw, 22px);
        line-height: 1;
        letter-spacing: 0;
        white-space: nowrap;
      }
      .hero-meta-inner em {
        font-size: 9px;
        line-height: 1.3;
        font-weight: 600;
        letter-spacing: 0;
        white-space: nowrap;
      }
      .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        margin-top: clamp(132px, 18svh, 172px);
      }
      .hero-actions .btn {
        min-height: 46px;
        border-radius: 23px;
        padding: 0 20px;
        font-size: 14px;
        letter-spacing: 0.02em;
      }
      .hero-progress { display: none; }
      .data-head { margin-bottom: 34px; }
      .data-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
        margin: 0 auto;
      }
      .data-item {
        display: grid;
        align-items: start;
        justify-content: center;
        gap: 6px;
        min-width: 0;
        padding: 12px 0 0;
      }
      .data-number { font-size: clamp(22px, 6.2vw, 30px); letter-spacing: 0; }
      .data-number .data-unit { font-size: 0.34em; }
      .data-label {
        margin-top: 0;
        font-size: 10px;
        line-height: 1.25;
        letter-spacing: 0;
        white-space: nowrap;
      }
      .insights {
        padding-top: 66px;
        padding-bottom: 72px;
      }
      .insights .section-head { margin-bottom: 24px; }
      .insights .section-copy { display: none; }
      .insight-item {
        display: grid;
        grid-column: span 4;
        justify-items: center;
        align-content: start;
        gap: 8px;
        min-height: 142px;
        padding: 16px 6px 14px;
        border-top: 0;
        border-radius: 12px;
        background: rgba(255,255,255,0.64);
        text-align: center;
      }
      .insight-icon {
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: rgba(242,140,40,0.14);
        color: var(--accent);
      }
      .insight-icon svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        stroke-width: 1.8;
        fill: none;
      }
      .insight-date {
        margin-bottom: 0;
        font-size: 9px;
        line-height: 1.15;
        letter-spacing: 0.06em;
      }
      .insight-title {
        min-height: 0;
        margin-bottom: 0;
        font-size: 14px;
        line-height: 1.28;
        font-weight: 500;
        letter-spacing: 0;
      }
      .insight-desc {
        font-size: 11px;
        line-height: 1.45;
        font-weight: 400;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .footer .grid-12 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-col { grid-column: span 1; }
      .footer-col:first-child { grid-column: span 2; }
      .footer-col:nth-child(2) { order: 2; }
      .footer-col:nth-child(4) { order: 3; }
      .footer-col:nth-child(3) { order: 4; grid-column: span 2; }
      .footer p,
      .footer a { max-width: none; }
    }

    @media (max-width: 390px) {
      .hero { padding-top: 84px; padding-bottom: 24px; }
      .hero-content {
        margin-top: clamp(30px, 6svh, 52px);
        max-width: calc(100vw - 36px);
        padding-left: 14px;
      }
      .hero-actions { margin-top: clamp(104px, 15svh, 130px); }
      .hero-actions .btn { min-height: 44px; }
      .data-row { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; }
      .data-item { gap: 5px; padding-top: 10px; }
      .data-number { font-size: clamp(19px, 5.5vw, 24px); }
      .data-label { font-size: 9px; }
      .insight-item { min-height: 132px; padding-inline: 4px; }
      .insight-title { font-size: 12px; }
      .insight-desc { font-size: 10px; }
      .footer-title { font-size: 11px; letter-spacing: 0.08em; }
      .footer p,
      .footer a { font-size: 12px; line-height: 1.65; }
    }

    /* Final common component fixes: product carousel, lists and detail pages. */
    .product-carousel {
      grid-column: 1 / -1;
      position: relative;
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr) 52px;
      gap: 22px;
      align-items: center;
    }

    .product-viewport {
      overflow: hidden;
      min-width: 0;
    }

    .product-track {
      display: flex;
      gap: 24px;
      will-change: transform;
      transition: transform .55s var(--ease);
    }

    .product-track .product-card {
      flex: 0 0 calc((100% - 48px) / 3);
      min-width: 0;
      display: block;
    }

    .product-arrow {
      width: 52px;
      height: 52px;
      border: 1px solid rgba(11,31,58,0.14);
      border-radius: 50%;
      background: rgba(255,255,255,0.72);
      color: var(--strong);
      cursor: pointer;
      transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
    }

    .product-arrow::before {
      content: "";
      display: block;
      width: 11px;
      height: 11px;
      margin: auto;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
    }

    .product-arrow[data-product-prev]::before {
      transform: rotate(-135deg);
    }

    .product-arrow[data-product-next]::before {
      transform: rotate(45deg);
    }

    .product-arrow:hover {
      transform: translateY(-2px);
      border-color: var(--accent);
      background: var(--accent);
    }

    .product-arrow.is-disabled {
      opacity: .35;
      pointer-events: none;
    }

    .product-card .product-image {
      display: block;
      width: 100%;
      height: 360px;
      border: 1px solid rgba(11,31,58,0.08);
    }

    .product-card .product-name,
    .product-card .product-link {
      display: inline-flex;
    }

    .news-list-layout {
      display: grid;
      grid-template-columns: minmax(0, 8fr) minmax(280px, 3fr);
      gap: 58px;
      align-items: start;
    }

    .news-list-main {
      min-width: 0;
    }

    .news-list {
      display: grid;
      gap: 24px;
    }

    .news-list-item {
      display: grid;
      grid-template-columns: 260px minmax(0, 1fr);
      gap: 30px;
      align-items: stretch;
      min-height: 180px;
      padding: 22px;
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(11,31,58,0.08);
      box-shadow: 0 20px 56px rgba(11,31,58,0.06);
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    }

    .news-list-item:hover {
      transform: translateY(-4px);
      border-color: rgba(242,140,40,0.42);
      box-shadow: 0 28px 70px rgba(11,31,58,0.1);
    }

    .news-list-image {
      overflow: hidden;
      background: #EAF1F7;
    }

    .news-list-image img {
      transition: transform .55s var(--ease);
    }

    .news-list-item:hover .news-list-image img {
      transform: scale(1.04);
    }

    .news-list-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .news-list-meta {
      margin-bottom: 16px;
      color: var(--accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .news-list-title {
      color: var(--strong);
      font-size: clamp(26px, 2.4vw, 36px);
      line-height: 1.18;
      font-weight: 300;
      letter-spacing: -0.035em;
    }

    .news-list-desc {
      margin-top: 16px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
      font-weight: 300;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-category-side {
      position: sticky;
      top: 126px;
      padding: 34px;
      background: rgba(255,255,255,0.8);
      border: 1px solid rgba(11,31,58,0.08);
    }

    .news-category-kicker {
      margin-bottom: 16px;
      color: var(--accent);
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .news-category-title {
      color: var(--strong);
      font-size: 30px;
      line-height: 1.15;
      font-weight: 300;
      letter-spacing: -0.035em;
    }

    .news-category-list {
      margin-top: 28px;
      display: grid;
      gap: 12px;
    }

    .news-category-list a {
      padding: 14px 0;
      border-bottom: 1px solid rgba(11,31,58,0.1);
      color: rgba(8,25,44,0.74);
      font-size: 15px;
      transition: color .3s var(--ease), padding-left .3s var(--ease);
    }

    .news-category-list a:hover {
      padding-left: 8px;
      color: var(--accent);
    }

    .news-current-sort {
      margin-top: 30px;
      padding-top: 22px;
      border-top: 1px solid rgba(11,31,58,0.12);
      color: var(--muted);
      font-size: 13px;
      line-height: 1.8;
    }

    .news-current-sort strong {
      display: block;
      color: var(--strong);
      font-size: 18px;
      font-weight: 400;
    }

    .message-shell {
      display: grid;
      grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
      gap: 34px;
      align-items: start;
    }

    .message-panel,
    .message-records {
      padding: 54px;
      background: rgba(255,255,255,0.86);
      border: 1px solid rgba(11,31,58,0.08);
      box-shadow: 0 24px 70px rgba(11,31,58,0.07);
    }

    .message-kicker {
      margin-bottom: 18px;
      color: var(--accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .message-panel h2,
    .message-records h2 {
      color: var(--strong);
      font-size: clamp(32px, 3.2vw, 46px);
      line-height: 1.16;
      font-weight: 300;
      letter-spacing: -0.04em;
    }

    .message-panel > p,
    .message-records > p {
      margin-top: 18px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.9;
      font-weight: 300;
    }

    .message-form {
      margin-top: 34px;
      display: grid;
      gap: 20px;
    }

    .message-field {
      display: grid;
      gap: 10px;
    }

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

    .message-field input,
    .message-field textarea {
      width: 100%;
      border: 1px solid rgba(11,31,58,0.13);
      background: rgba(255,255,255,0.78);
      color: var(--strong);
      font: inherit;
      outline: none;
      transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
    }

    .message-field input {
      min-height: 52px;
      padding: 0 16px;
    }

    .message-field textarea {
      min-height: 150px;
      padding: 16px;
      resize: vertical;
    }

    .message-field input:focus,
    .message-field textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(242,140,40,0.12);
    }

    .checkcode-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 150px;
      gap: 12px;
      align-items: center;
    }

    .checkcode-row img {
      height: 52px;
      border: 1px solid rgba(11,31,58,0.13);
      background: #fff;
      object-fit: contain;
      cursor: pointer;
    }

    .message-submit {
      min-height: 54px;
      border: 0;
      background: var(--accent);
      color: #071523;
      font-weight: 800;
      cursor: pointer;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
    }

    .message-submit:hover {
      transform: translateY(-2px);
      background: #FF9B35;
      box-shadow: 0 18px 42px rgba(242,140,40,0.18);
    }

    .message-list {
      margin-top: 30px;
      display: grid;
      gap: 18px;
    }

    .message-item {
      padding: 20px;
      background: rgba(244,247,250,0.8);
      border: 1px solid rgba(11,31,58,0.08);
    }

    .message-name {
      color: var(--strong);
      font-size: 16px;
      font-weight: 700;
    }

    .message-item p {
      margin-top: 10px;
      color: var(--text);
      font-size: 14px;
      line-height: 1.75;
    }

    .message-reply {
      margin-top: 14px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
    }

    .product-spec {
      padding: 24px;
      border-right: 1px solid rgba(11,31,58,0.12);
      border-bottom: 1px solid rgba(11,31,58,0.12);
    }

    .product-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border: 1px solid rgba(11,31,58,0.14);
      color: var(--strong);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .04em;
      transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
    }

    @media (max-width: 1024px) {
      .product-track .product-card {
        flex-basis: calc((100% - 24px) / 2);
      }

      .news-list-layout,
      .message-shell {
        grid-template-columns: 1fr;
      }

      .news-category-side {
        position: static;
      }
    }

    @media (max-width: 720px) {
      .product-carousel {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .product-arrow {
        display: none;
      }

      .product-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
      }

      .product-track .product-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
      }

      .product-card .product-image {
        height: 300px;
      }

      .news-list-item {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 18px;
      }

      .news-list-image {
        height: 210px;
      }

      .news-list-title {
        font-size: 26px;
      }

      .news-category-side,
      .message-panel,
      .message-records {
        padding: 26px;
      }

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

      .checkcode-row img {
        width: 100%;
      }

      .product-action {
        width: 100%;
      }
    }

    /* News pages refresh: editorial index and article reading layout. */
    .news-list-layout {
      grid-template-columns: minmax(0, 8.6fr) minmax(260px, 3.4fr);
      gap: 72px;
      align-items: start;
    }

    .news-list {
      gap: 0;
      border-top: 1px solid rgba(11,31,58,0.12);
    }

    .news-list-item {
      position: relative;
      grid-template-columns: 150px minmax(0, 1fr) 220px;
      gap: 34px;
      min-height: 190px;
      padding: 34px 0;
      border: 0;
      border-bottom: 1px solid rgba(11,31,58,0.12);
      background: transparent;
      box-shadow: none;
    }

    .news-list-item::after {
      content: "";
      position: absolute;
      left: 150px;
      right: 0;
      bottom: -1px;
      height: 1px;
      background: linear-gradient(90deg, var(--accent), transparent 36%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .38s var(--ease);
    }

    .news-list-item:hover {
      transform: none;
      border-color: rgba(11,31,58,0.12);
      box-shadow: none;
    }

    .news-list-item:hover::after {
      transform: scaleX(1);
    }

    .news-list-meta {
      grid-column: 1;
      grid-row: 1;
      align-self: start;
      margin: 4px 0 0;
      color: var(--accent);
      font-size: 13px;
      line-height: 1;
      letter-spacing: .14em;
      writing-mode: vertical-rl;
      text-orientation: mixed;
    }

    .news-list-body {
      grid-column: 2;
      grid-row: 1;
      justify-content: start;
      padding-top: 0;
    }

    .news-list-title {
      max-width: 680px;
      font-size: clamp(30px, 3vw, 46px);
      line-height: 1.12;
      font-weight: 300;
      letter-spacing: -0.052em;
      transition: color .3s var(--ease);
    }

    .news-list-item:hover .news-list-title {
      color: var(--accent);
    }

    .news-list-desc {
      max-width: 620px;
      margin-top: 20px;
      font-size: 16px;
      line-height: 1.95;
      -webkit-line-clamp: 2;
    }

    .news-list-image {
      grid-column: 3;
      grid-row: 1;
      width: 220px;
      height: 150px;
      align-self: center;
      border-radius: 0;
      background: #EAF1F7;
      clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    }

    .news-list-image img {
      filter: saturate(.9) contrast(1.04);
    }

    .news-category-side {
      padding: 0 0 0 28px;
      border: 0;
      border-left: 1px solid rgba(11,31,58,0.14);
      background: transparent;
      box-shadow: none;
    }

    .news-category-title {
      font-size: 34px;
    }

    .news-category-list a {
      position: relative;
      padding: 16px 0 16px 20px;
      border-bottom: 1px solid rgba(11,31,58,0.1);
    }

    .news-category-list a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(242,140,40,0.42);
      transform: translateY(-50%);
      transition: background .3s var(--ease), transform .3s var(--ease);
    }

    .news-category-list a:hover::before {
      background: var(--accent);
      transform: translateY(-50%) scale(1.45);
    }

    .news-current-sort {
      background: rgba(255,255,255,0.58);
      padding: 20px;
      border: 1px solid rgba(11,31,58,0.08);
    }

    .news-detail {
      grid-template-columns: minmax(0, 8.2fr) minmax(260px, 3.2fr);
      gap: 72px;
    }

    .news-article {
      padding: 0;
    }

    .news-article-head {
      position: relative;
      padding: 0 0 46px 44px;
      border-bottom: 0;
      border-left: 2px solid var(--accent);
    }

    .news-label {
      margin-bottom: 22px;
      color: var(--accent);
      font-size: 12px;
      letter-spacing: .18em;
    }

    .news-title {
      max-width: 820px;
      font-size: clamp(42px, 4.8vw, 68px);
      line-height: 1.08;
      font-weight: 300;
      letter-spacing: -0.06em;
      color: var(--strong);
      text-wrap: balance;
    }

    .news-summary {
      max-width: 760px;
      margin-top: 28px;
      color: rgba(8,25,44,0.66);
      font-size: 20px;
      line-height: 1.9;
    }

    .news-cover {
      height: min(52vw, 620px);
      margin: 56px 0 0;
      clip-path: polygon(0 0, 100% 0, 100% 88%, 84% 100%, 0 100%);
      background: #EAF1F7;
    }

    .news-body {
      max-width: 820px;
      margin: 58px auto 0;
      padding: 0;
      color: rgba(8,25,44,0.78);
      font-size: 18px;
      line-height: 2.12;
    }

    .news-body p:first-child {
      font-size: 20px;
      line-height: 2;
      color: rgba(8,25,44,0.86);
    }

    .news-side {
      top: 118px;
      display: grid;
      grid-template-columns: 1fr !important;
      gap: 22px;
      padding-left: 0;
      border-left: 0;
    }

    .news-info,
    .news-related,
    .news-next {
      padding: 26px;
      background: rgba(255,255,255,0.62);
      border: 1px solid rgba(11,31,58,0.08);
    }

    .news-info dl {
      gap: 0;
    }

    .news-info div {
      padding: 16px 0;
    }

    .news-info div:first-child {
      padding-top: 0;
    }

    .news-info dd {
      font-size: 16px;
    }

    .news-related-list a {
      padding-left: 0;
    }

    .news-related-list a::before {
      display: none;
    }

    .news-related-list a:hover {
      padding-left: 8px;
    }

    @media (max-width: 1024px) {
      .news-list-item {
        grid-template-columns: 120px minmax(0, 1fr);
      }

      .news-list-image {
        display: none;
      }

      .news-detail,
      .news-list-layout {
        grid-template-columns: 1fr;
        gap: 46px;
      }

      .news-category-side,
      .news-side {
        position: static;
        padding-left: 0;
        border-left: 0;
      }
    }

    @media (max-width: 720px) {
      .news-list {
        border-top: 0;
      }

      .news-list-item {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 26px 0;
      }

      .news-list-meta {
        writing-mode: horizontal-tb;
      }

      .news-list-body {
        grid-column: 1;
      }

      .news-list-title {
        font-size: clamp(28px, 8vw, 38px);
      }

      .news-list-desc {
        font-size: 14px;
      }

      .news-category-side,
      .news-info,
      .news-related,
      .news-next {
        padding: 22px;
      }

      .news-article-head {
        padding-left: 22px;
        padding-bottom: 34px;
      }

      .news-title {
        font-size: clamp(36px, 11vw, 52px);
      }

      .news-summary {
        font-size: 16px;
      }

      .news-cover {
        height: 300px;
        margin-top: 36px;
        clip-path: none;
      }

      .news-body {
        margin-top: 38px;
        font-size: 16px;
        line-height: 2;
      }
    }

    /* News list alternate style: magazine cards with image-led rhythm. */
    .news-list-layout {
      grid-template-columns: minmax(0, 8.4fr) minmax(270px, 3.2fr);
      gap: 64px;
    }

    .news-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 30px;
      border-top: 0;
    }

    .news-list-item {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 270px auto;
      gap: 0;
      min-height: 0;
      padding: 0;
      overflow: hidden;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(11,31,58,0.08);
      box-shadow: 0 18px 56px rgba(11,31,58,0.07);
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    }

    .news-list-item::after {
      content: none;
    }

    .news-list-item:nth-child(3n + 1) {
      grid-column: span 2;
      grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr);
      grid-template-rows: auto;
      min-height: 360px;
    }

    .news-list-item:hover {
      transform: translateY(-6px);
      border-color: rgba(242,140,40,0.38);
      box-shadow: 0 28px 80px rgba(11,31,58,0.11);
    }

    .news-list-image {
      display: block;
      grid-column: 1;
      grid-row: 1;
      width: 100%;
      height: 100%;
      clip-path: none;
      background: #EAF1F7;
    }

    .news-list-item:nth-child(3n + 1) .news-list-image {
      min-height: 360px;
    }

    .news-list-image img {
      filter: saturate(.92) contrast(1.04);
      transition: transform .65s var(--ease), filter .65s var(--ease);
    }

    .news-list-item:hover .news-list-image img {
      transform: scale(1.045);
      filter: saturate(1.04) contrast(1.06);
    }

    .news-list-body {
      grid-column: 1;
      grid-row: 2;
      display: grid;
      align-content: start;
      padding: 28px;
      background: #FFFFFF;
    }

    .news-list-item:nth-child(3n + 1) .news-list-body {
      grid-column: 2;
      grid-row: 1;
      padding: 42px 40px;
      align-content: center;
    }

    .news-list-meta {
      grid-column: auto;
      grid-row: auto;
      writing-mode: horizontal-tb;
      margin: 0 0 18px;
      color: var(--accent);
      font-size: 12px;
      line-height: 1;
      letter-spacing: .16em;
    }

    .news-list-title {
      max-width: none;
      font-size: clamp(25px, 2.15vw, 32px);
      line-height: 1.18;
      letter-spacing: -0.04em;
    }

    .news-list-item:nth-child(3n + 1) .news-list-title {
      font-size: clamp(32px, 3vw, 46px);
      line-height: 1.12;
    }

    .news-list-desc {
      margin-top: 18px;
      font-size: 15px;
      line-height: 1.85;
    }

    .news-category-side {
      padding: 30px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(11,31,58,0.08);
      box-shadow: 0 18px 54px rgba(11,31,58,0.06);
    }

    .news-category-list {
      gap: 0;
    }

    .news-current-sort {
      margin-top: 28px;
    }

    @media (max-width: 1024px) {
      .news-list {
        grid-template-columns: 1fr;
      }

      .news-list-item,
      .news-list-item:nth-child(3n + 1) {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 260px auto;
        min-height: 0;
      }

      .news-list-item:nth-child(3n + 1) .news-list-image {
        min-height: 0;
      }

      .news-list-item:nth-child(3n + 1) .news-list-body {
        grid-column: 1;
        grid-row: 2;
        padding: 30px;
      }
    }

    @media (max-width: 720px) {
      .news-list {
        gap: 22px;
      }

      .news-list-item,
      .news-list-item:nth-child(3n + 1) {
        grid-template-rows: 210px auto;
      }

      .news-list-body,
      .news-list-item:nth-child(3n + 1) .news-list-body {
        padding: 22px;
      }

      .news-list-title,
      .news-list-item:nth-child(3n + 1) .news-list-title {
        font-size: clamp(25px, 7.4vw, 34px);
      }
    }

    /* Product detail final layout: two columns on desktop, single column on mobile. */
    .product-detail {
      display: grid;
      gap: 58px;
    }

    .product-hero-card {
      display: grid !important;
      grid-template-columns: minmax(420px, 6fr) minmax(360px, 5fr) !important;
      align-items: stretch;
      background: #FFFFFF;
    }

    .product-media {
      min-height: 560px;
      background: #F4F7FA;
    }

    .product-media img {
      object-fit: contain;
      padding: 34px;
    }

    .product-panel {
      padding: 58px 54px;
    }

    .product-title {
      font-size: clamp(40px, 4vw, 58px);
      line-height: 1.12;
    }

    .product-content-grid {
      display: grid !important;
      grid-template-columns: minmax(0, 7.6fr) minmax(300px, 3.4fr) !important;
      gap: 48px;
      align-items: start;
    }

    .product-body {
      min-width: 0;
      padding: 58px 60px;
    }

    .product-side {
      position: sticky;
      top: 118px;
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 22px;
    }

    @media (max-width: 1024px) {
      .product-hero-card,
      .product-content-grid {
        grid-template-columns: 1fr !important;
      }

      .product-side {
        position: static;
      }
    }

    @media (max-width: 720px) {
      .product-media {
        min-height: 320px;
      }

      .product-media img {
        padding: 22px;
      }

      .product-panel,
      .product-body {
        padding: 32px 24px;
      }
    }

    /* Contact page refresh: business contact panel plus inquiry form. */
    .message-shell {
      grid-template-columns: minmax(320px, 4.6fr) minmax(0, 6.4fr) !important;
      gap: 34px;
      align-items: stretch;
    }

    .message-contact,
    .message-panel,
    .message-records {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(11,31,58,0.08);
      box-shadow: 0 24px 70px rgba(11,31,58,0.07);
    }

    .message-contact {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 620px;
      padding: 58px 48px;
      background:
        linear-gradient(145deg, rgba(5,13,24,0.94), rgba(11,31,58,0.78)),
        url("../images/bg2.jpg");
      background-size: cover;
      background-position: center;
      color: rgba(255,255,255,0.74);
    }

    .message-contact::after {
      content: "";
      position: absolute;
      inset: auto -18% -22% 34%;
      height: 260px;
      background: radial-gradient(circle, rgba(242,140,40,0.24), transparent 62%);
      pointer-events: none;
    }

    .message-contact .message-kicker,
    .message-contact-item span,
    .message-contact-note span {
      color: var(--accent);
    }

    .message-contact h2 {
      max-width: 10em;
      margin-top: 22px;
      color: #FFFFFF;
      font-size: clamp(38px, 4vw, 60px);
      line-height: 1.08;
      font-weight: 300;
      letter-spacing: -0.052em;
    }

    .message-contact > p {
      max-width: 30em;
      margin-top: 24px;
      font-size: 16px;
      line-height: 1.95;
      color: rgba(255,255,255,0.66);
      font-weight: 300;
    }

    .message-contact-list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 0;
      margin-top: 54px;
      border-top: 1px solid rgba(255,255,255,0.14);
    }

    .message-contact-item {
      display: grid;
      gap: 10px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.14);
    }

    .message-contact-item span,
    .message-contact-note span {
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .message-contact-item strong,
    .message-contact-item a {
      color: #FFFFFF;
      font-size: 16px;
      line-height: 1.6;
      font-weight: 400;
      word-break: break-word;
    }

    .message-contact-note {
      position: relative;
      z-index: 1;
      margin-top: 44px;
      padding: 24px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(14px);
    }

    .message-contact-note p {
      margin-top: 14px;
      color: rgba(255,255,255,0.72);
      font-size: 14px;
      line-height: 1.8;
    }

    .message-panel {
      padding: 58px;
      background: #FFFFFF;
    }

    .message-panel h2 {
      font-size: clamp(36px, 3.8vw, 58px);
      line-height: 1.1;
    }

    .message-form {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .message-field:nth-child(3),
    .message-field:nth-child(4),
    .message-submit {
      grid-column: 1 / -1;
    }

    .message-field input,
    .message-field textarea {
      background: #F6F9FC;
      border-color: rgba(11,31,58,0.1);
    }

    .message-field textarea {
      min-height: 180px;
    }

    .message-records {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(260px, 3fr) minmax(0, 8fr);
      gap: 34px;
      padding: 42px;
      background: rgba(255,255,255,0.72);
    }

    .message-records > .message-kicker,
    .message-records > h2,
    .message-records > p,
    .message-records > .pagebar {
      grid-column: 1;
    }

    .message-records .message-list {
      grid-column: 2;
      grid-row: 1 / span 4;
      margin-top: 0;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .message-item {
      background: #FFFFFF;
    }

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

      .message-contact {
        min-height: auto;
      }

      .message-records {
        grid-template-columns: 1fr;
      }

      .message-records .message-list,
      .message-records > .message-kicker,
      .message-records > h2,
      .message-records > p,
      .message-records > .pagebar {
        grid-column: 1;
      }
    }

    @media (max-width: 720px) {
      .message-contact,
      .message-panel,
      .message-records {
        padding: 26px;
      }

      .message-contact h2 {
        font-size: clamp(34px, 10vw, 48px);
      }

      .message-form,
      .message-records .message-list {
        grid-template-columns: 1fr;
      }
    }

    /* Contact page polish pass. */
    .message-contact {
      min-height: 580px;
      background:
        linear-gradient(145deg, rgba(5,13,24,0.92), rgba(8,25,44,0.72)),
        url("../images/bg1.jpg");
      background-size: cover;
      background-position: center;
    }

    .message-contact h2 {
      max-width: 8.8em;
    }

    .message-contact-list {
      margin-top: 46px;
    }

    .message-contact-note {
      margin-top: 34px;
      border-color: rgba(242,140,40,0.28);
    }

    .message-panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 580px;
    }

    .message-panel h2 {
      max-width: 8em;
    }

    .message-form-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .message-form-tags span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 14px;
      border: 1px solid rgba(242,140,40,0.22);
      background: rgba(242,140,40,0.08);
      color: rgba(8,25,44,0.78);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .04em;
    }

    .message-form {
      margin-top: 28px;
    }

    .message-field label {
      color: rgba(8,25,44,0.86);
    }

    .message-submit {
      justify-self: start;
      min-width: 220px;
      padding: 0 32px;
    }

    @media (max-width: 1024px) {
      .message-contact,
      .message-panel {
        min-height: auto;
      }
    }

    @media (max-width: 720px) {
      .message-form-tags {
        gap: 8px;
      }

      .message-form-tags span {
        min-height: 30px;
        padding: 0 10px;
        font-size: 11px;
      }

      .message-submit {
        width: 100%;
      }
    }

    /* About page refresh. */
    .about-layout {
      display: grid;
      grid-template-columns: minmax(320px, 4.5fr) minmax(0, 7.5fr);
      gap: 34px;
      align-items: start;
    }

    .about-intro {
      position: sticky;
      top: 118px;
      min-height: 620px;
      padding: 54px 44px;
      background:
        linear-gradient(145deg, rgba(5,13,24,0.94), rgba(11,31,58,0.72)),
        url("../images/036cabcc7ba8bcb71642f7a29f9c47ee.jpg");
      background-size: cover;
      background-position: center;
      color: rgba(255,255,255,0.72);
      border: 1px solid rgba(11,31,58,0.08);
      box-shadow: 0 24px 70px rgba(11,31,58,0.08);
    }

    .about-intro h2 {
      max-width: 8em;
      margin-top: 22px;
      color: #FFFFFF;
      font-size: clamp(38px, 4vw, 60px);
      line-height: 1.08;
      font-weight: 300;
      letter-spacing: -0.052em;
    }

    .about-intro > p {
      margin-top: 24px;
      color: rgba(255,255,255,0.68);
      font-size: 16px;
      line-height: 1.95;
      font-weight: 300;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      margin-top: 52px;
      background: rgba(255,255,255,0.16);
      border: 1px solid rgba(255,255,255,0.16);
    }

    .about-stats div {
      padding: 22px 18px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
    }

    .about-stats strong {
      display: block;
      color: #FFFFFF;
      font-size: 28px;
      line-height: 1;
      font-weight: 300;
      letter-spacing: -0.035em;
    }

    .about-stats span {
      display: block;
      margin-top: 10px;
      color: rgba(255,255,255,0.66);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 600;
    }

    .about-content {
      padding: 58px 64px;
      background: rgba(255,255,255,0.86);
      border: 1px solid rgba(11,31,58,0.08);
      box-shadow: 0 24px 70px rgba(11,31,58,0.07);
    }

    .about-content-head h2 {
      max-width: 760px;
      color: var(--strong);
      font-size: clamp(36px, 3.8vw, 58px);
      line-height: 1.12;
      font-weight: 300;
      letter-spacing: -0.052em;
    }

    .about-richtext {
      margin-top: 34px;
      color: rgba(8,25,44,0.78);
      font-size: 17px;
      line-height: 2.05;
      font-weight: 300;
    }

    .about-richtext p,
    .about-richtext ul,
    .about-richtext ol,
    .about-richtext table,
    .about-richtext img {
      margin-bottom: 24px;
    }

    .about-capabilities {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .about-capability {
      padding: 34px;
      background: #FFFFFF;
      border: 1px solid rgba(11,31,58,0.08);
      box-shadow: 0 18px 54px rgba(11,31,58,0.06);
    }

    .about-capability span {
      display: block;
      color: var(--accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .16em;
    }

    .about-capability h3 {
      margin-top: 22px;
      color: var(--strong);
      font-size: 30px;
      line-height: 1.18;
      font-weight: 300;
      letter-spacing: -0.04em;
    }

    .about-capability p {
      margin-top: 16px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
      font-weight: 300;
    }

    @media (max-width: 1024px) {
      .about-layout {
        grid-template-columns: 1fr;
      }

      .about-intro {
        position: static;
        min-height: auto;
      }
    }

    @media (max-width: 720px) {
      .about-intro,
      .about-content,
      .about-capability {
        padding: 26px;
      }

      .about-stats,
      .about-capabilities {
        grid-template-columns: 1fr;
      }
    }

    /* Home news block typography polish. */
    @media (min-width: 1025px) {
      .news .section-head {
        margin-bottom: 48px;
      }

      .news-card {
        display: flex;
        min-width: 0;
        flex-direction: column;
      }

      .news-image {
        height: 260px;
        margin-bottom: 24px;
      }

      .news-meta {
        color: rgba(8,25,44,0.5);
        font-size: 12px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
      }

      .news-title {
        min-height: 72px;
        margin-top: 18px;
        color: var(--strong);
        font-size: clamp(26px, 2.15vw, 34px);
        line-height: 1.18;
        font-weight: 300;
        letter-spacing: -0.045em;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-wrap: auto;
      }

      .news-desc {
        min-height: 50px;
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.75;
        -webkit-line-clamp: 2;
      }

      .news-link {
        margin-top: 22px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .03em;
      }
    }

    @media (min-width: 1025px) and (max-width: 1280px) {
      .news-title {
        font-size: 28px;
        min-height: 66px;
      }
    }

    /* Standalone contact.html layout. */
    .contact-hero {
      background-position: center;
    }

    .contact-section {
      background:
        radial-gradient(circle at 78% 8%, rgba(242,140,40,0.08), transparent 28%),
        linear-gradient(180deg, #F5F9FC 0%, #EDF3F8 100%);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(320px, 4.2fr) minmax(0, 7.8fr);
      gap: 34px;
      align-items: stretch;
    }

    .contact-info-panel,
    .contact-content-panel,
    .contact-form-panel {
      border: 1px solid rgba(11,31,58,0.08);
      box-shadow: 0 24px 70px rgba(11,31,58,0.07);
    }

    .contact-info-panel {
      min-height: 560px;
      padding: 54px 44px;
      background:
        linear-gradient(145deg, rgba(5,13,24,0.93), rgba(11,31,58,0.76)),
        url("../images/bg1.jpg");
      background-size: cover;
      background-position: center;
      color: rgba(255,255,255,0.72);
    }

    .contact-info-panel h2 {
      max-width: 9em;
      margin-top: 22px;
      color: #FFFFFF;
      font-size: clamp(36px, 3.8vw, 56px);
      line-height: 1.08;
      font-weight: 300;
      letter-spacing: -0.052em;
    }

    .contact-info-panel > p {
      margin-top: 24px;
      color: rgba(255,255,255,0.66);
      font-size: 16px;
      line-height: 1.95;
      font-weight: 300;
    }

    .contact-info-list {
      margin-top: 52px;
      display: grid;
      border-top: 1px solid rgba(255,255,255,0.14);
    }

    .contact-info-item {
      display: grid;
      gap: 10px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.14);
    }

    .contact-info-item span {
      color: var(--accent);
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .contact-info-item strong,
    .contact-info-item a {
      color: #FFFFFF;
      font-size: 16px;
      line-height: 1.6;
      font-weight: 400;
      word-break: break-word;
    }

    .contact-content-panel {
      padding: 54px 58px;
      background: rgba(255,255,255,0.84);
    }

    .contact-richtext {
      color: rgba(8,25,44,0.78);
      font-size: 17px;
      line-height: 2;
      font-weight: 300;
    }

    .contact-richtext p,
    .contact-richtext ul,
    .contact-richtext ol,
    .contact-richtext table,
    .contact-richtext img {
      margin-bottom: 24px;
    }

    .contact-service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      margin-top: 34px;
      background: rgba(11,31,58,0.1);
      border: 1px solid rgba(11,31,58,0.1);
    }

    .contact-service-grid div {
      padding: 24px;
      background: #FFFFFF;
    }

    .contact-service-grid strong {
      display: block;
      color: var(--strong);
      font-size: 24px;
      line-height: 1;
      font-weight: 300;
      letter-spacing: -0.035em;
    }

    .contact-service-grid span {
      display: block;
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
      font-weight: 500;
    }

    .contact-form-panel {
      grid-column: 1 / -1;
      padding: 48px 54px;
      background: #FFFFFF;
    }

    .contact-form-panel h2 {
      color: var(--strong);
      font-size: clamp(34px, 3.2vw, 50px);
      line-height: 1.12;
      font-weight: 300;
      letter-spacing: -0.045em;
    }

    .contact-form-panel > p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
      font-weight: 300;
    }

    @media (max-width: 1024px) {
      .contact-layout {
        grid-template-columns: 1fr;
      }

      .contact-info-panel {
        min-height: auto;
      }
    }

    @media (max-width: 720px) {
      .contact-info-panel,
      .contact-content-panel,
      .contact-form-panel {
        padding: 26px;
      }

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

    /* Final mobile audit fixes for all templates. */
    @media (max-width: 720px) {
      .container {
        width: min(var(--container), calc(100% - 32px));
      }

      .inner-hero {
        min-height: 350px;
        padding: 116px 0 56px;
        overflow: hidden;
      }

      .inner-title {
        max-width: 100%;
        font-size: clamp(34px, 10.5vw, 48px);
        line-height: 1.12;
        letter-spacing: -0.035em;
        overflow-wrap: anywhere;
      }

      .inner-copy,
      .breadcrumb {
        max-width: 100%;
        overflow-wrap: anywhere;
      }

      .hero-content {
        box-sizing: border-box;
      }

      .hero-actions {
        width: 100%;
        max-width: calc(100vw - 68px) !important;
      }

      .news-list-layout,
      .contact-layout,
      .message-shell,
      .about-layout,
      .product-hero-card,
      .product-content-grid,
      .single-layout,
      .news-detail {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
      }

      .news-list {
        grid-template-columns: 1fr !important;
      }

      .news-list-item,
      .news-list-item:nth-child(3n + 1) {
        grid-column: auto !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        width: 100% !important;
        min-height: 0 !important;
      }

      .news-list-image,
      .news-list-item:nth-child(3n + 1) .news-list-image {
        display: block !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 100% !important;
        height: 210px !important;
        min-height: 0 !important;
      }

      .news-list-body,
      .news-list-item:nth-child(3n + 1) .news-list-body {
        grid-column: 1 !important;
        grid-row: 2 !important;
        padding: 22px !important;
      }

      .news-category-side,
      .news-side,
      .product-side,
      .single-aside,
      .about-intro {
        position: static !important;
      }

      .message-contact h2,
      .contact-info-panel h2,
      .about-intro h2,
      .about-content-head h2,
      .contact-form-panel h2,
      .message-panel h2,
      .news-title,
      .product-title {
        max-width: 100%;
        overflow-wrap: anywhere;
      }

      .message-contact h2,
      .contact-info-panel h2,
      .about-intro h2 {
        font-size: clamp(32px, 9.4vw, 44px);
      }

      .message-panel,
      .message-contact,
      .message-records,
      .contact-info-panel,
      .contact-content-panel,
      .contact-form-panel,
      .about-intro,
      .about-content,
      .about-capability,
      .product-panel,
      .product-body,
      .single-content {
        padding: 24px !important;
      }

      .message-form,
      .message-records .message-list,
      .contact-service-grid,
      .about-stats,
      .about-capabilities {
        grid-template-columns: 1fr !important;
      }

      .product-media,
      .product-card .product-image {
        min-height: 0;
      }

      .product-media {
        height: 320px;
      }
    }

    /* Final common mobile layout fixes: keep shared template pages consistent. */
    @media (max-width: 720px) {
      body { overflow-x: hidden; }

      body.is-en .hero h1 {
        max-width: 9.6em !important;
        font-size: clamp(28px, 7.4vw, 34px) !important;
        line-height: 1.12 !important;
        white-space: normal !important;
      }

      body.is-en .hero p {
        max-width: 24em !important;
        font-size: 13px !important;
        line-height: 1.6 !important;
      }

      body.is-en .section-title {
        max-width: 10.5em !important;
        font-size: clamp(30px, 8.4vw, 38px) !important;
        line-height: 1.12 !important;
        letter-spacing: -0.025em !important;
      }

      body.is-en .section-copy {
        font-size: 14px !important;
        line-height: 1.65 !important;
      }

      body.is-en .inner-title {
        font-size: clamp(32px, 8.5vw, 40px) !important;
        line-height: 1.1 !important;
      }

      body.is-en .scene-title {
        font-size: 21px !important;
        line-height: 1.18 !important;
      }

      body.is-en .news .news-title,
      body.is-en .news-list-title,
      body.is-en .product-tile-title {
        font-size: clamp(20px, 5.4vw, 25px) !important;
        line-height: 1.22 !important;
      }

      body.is-en .btn {
        font-size: 13px !important;
        letter-spacing: 0 !important;
      }

      .site-header {
        height: 72px;
        padding: 0;
      }

      .site-header .nav {
        height: 72px;
        align-items: center;
      }

      .logo {
        width: min(176px, 46vw);
        height: 42px;
      }

      .menu-toggle {
        display: inline-grid !important;
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        border-radius: 50%;
      }

      .nav-links {
        position: absolute;
        inset: calc(100% + 10px) 16px auto 16px;
        display: grid;
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 18px;
        background: rgba(9,16,23,0.94);
        box-shadow: 0 20px 52px rgba(0,0,0,0.26);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
      }

      .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }

      .nav-links a {
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 15px;
        color: #fff;
      }

      .language-switch {
        margin-top: 4px;
        justify-content: center;
        min-height: 40px;
        padding: 4px;
        border-color: rgba(255,255,255,0.16);
        background: rgba(255,255,255,0.075);
        color: rgba(255,255,255,0.84);
      }

      .language-switch a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 54px;
        height: 30px;
        padding: 0;
        color: inherit;
      }

      .hero {
        min-height: 100svh !important;
        padding: 84px 0 22px !important;
      }

      .hero-content {
        width: 100% !important;
        max-width: calc(100vw - 48px) !important;
        margin-top: clamp(38px, 7svh, 68px) !important;
        padding-left: 18px !important;
      }

      .hero h1 {
        max-width: 8em !important;
        font-size: clamp(32px, 9.1vw, 40px) !important;
        line-height: 1.14 !important;
        letter-spacing: 0 !important;
      }

      .hero p {
        max-width: 23em !important;
        font-size: 14px !important;
        line-height: 1.64 !important;
      }

      .hero-meta-inner {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 6px !important;
      }

      .hero-meta-inner span {
        min-width: 0 !important;
      }

      .hero-meta-inner strong,
      .hero-meta-inner em {
        white-space: nowrap !important;
        letter-spacing: 0 !important;
      }

      .hero-meta-inner strong {
        font-size: clamp(18px, 5.2vw, 24px) !important;
      }

      .hero-meta-inner em {
        font-size: 9px !important;
      }

      .hero-actions {
        margin-top: clamp(148px, 20svh, 196px) !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
      }

      .hero-actions .btn {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        min-height: 48px !important;
        border-radius: 999px !important;
        font-size: 14px !important;
      }

      .data .grid-12,
      .insights .grid-12,
      .footer .grid-12 {
        display: grid !important;
      }

      .data-row {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 4px !important;
        width: 100% !important;
      }

      .data-item {
        min-width: 0 !important;
        padding: 10px 0 0 !important;
        text-align: center !important;
      }

      .data-number {
        font-size: clamp(20px, 6vw, 28px) !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
      }

      .data-label {
        font-size: 9px !important;
        line-height: 1.25 !important;
        white-space: nowrap !important;
        letter-spacing: 0 !important;
      }

      .insights {
        padding: 54px 0 58px !important;
      }

      .insights .container {
        width: min(var(--container), calc(100% - 28px)) !important;
      }

      .insights .section-head {
        grid-column: 1 / -1 !important;
        margin-bottom: 18px !important;
      }

      .insights .section-title {
        max-width: 12em !important;
        font-size: clamp(24px, 7.2vw, 32px) !important;
        line-height: 1.18 !important;
        letter-spacing: 0 !important;
      }

      .insights .section-copy {
        display: none !important;
      }

      .insight-item {
        grid-column: span 4 !important;
        display: grid !important;
        justify-items: center !important;
        align-content: start !important;
        gap: 7px !important;
        min-height: 128px !important;
        padding: 14px 5px 12px !important;
        border: 1px solid rgba(12,26,38,0.08) !important;
        border-radius: 14px !important;
        background: rgba(255,255,255,0.76) !important;
        box-shadow: 0 12px 30px rgba(12,26,38,0.06) !important;
        text-align: center !important;
      }

      .insight-icon {
        display: grid !important;
        place-items: center !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        background: rgba(242,140,40,0.14) !important;
        color: var(--accent) !important;
      }

      .insight-icon svg {
        width: 18px !important;
        height: 18px !important;
      }

      .insight-date {
        display: none !important;
      }

      .insight-title {
        min-height: 0 !important;
        margin: 0 !important;
        font-size: 14px !important;
        line-height: 1.25 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
      }

      .insight-desc {
        font-size: 11px !important;
        line-height: 1.45 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
      }

      body.is-en .insights {
        padding: 48px 0 54px !important;
      }

      body.is-en .insights .container {
        width: min(var(--container), calc(100% - 22px)) !important;
      }

      body.is-en .insights .section-head {
        margin-bottom: 20px !important;
      }

      body.is-en .insights .section-title {
        max-width: 12.5em !important;
        font-size: clamp(25px, 6.8vw, 31px) !important;
        line-height: 1.16 !important;
        letter-spacing: -0.035em !important;
      }

      body.is-en .insight-item {
        gap: 6px !important;
        min-height: 142px !important;
        padding: 13px 5px 12px !important;
        border-radius: 12px !important;
      }

      body.is-en .insight-icon {
        width: 34px !important;
        height: 34px !important;
      }

      body.is-en .insight-title {
        max-width: 100% !important;
        font-size: clamp(10px, 2.55vw, 11px) !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        letter-spacing: -0.02em !important;
        white-space: normal !important;
        text-wrap: balance !important;
      }

      body.is-en .insight-desc {
        font-size: clamp(9px, 2.4vw, 10px) !important;
        line-height: 1.36 !important;
        -webkit-line-clamp: 3 !important;
        overflow-wrap: anywhere !important;
      }

      .footer .grid-12 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 26px 18px !important;
      }

      .footer-col {
        grid-column: span 1 !important;
      }

      .footer-col:first-child {
        grid-column: 1 / -1 !important;
      }

      .footer-col:nth-child(2) { order: 2 !important; }
      .footer-col:nth-child(4) { order: 3 !important; }
      .footer-col:nth-child(3) {
        order: 4 !important;
        grid-column: 1 / -1 !important;
      }

      .footer-title {
        margin-bottom: 12px !important;
        font-size: 12px !important;
        letter-spacing: 0.1em !important;
      }

      .footer a,
      .footer p {
        max-width: none !important;
        font-size: 12px !important;
        line-height: 1.65 !important;
      }
    }

    @media (max-width: 390px) {
      .site-header,
      .site-header .nav { height: 68px; }
      .logo { width: min(160px, 44vw); }
      .menu-toggle {
        flex-basis: 42px;
        width: 42px !important;
        height: 42px !important;
      }
      .hero-content {
        max-width: calc(100vw - 36px) !important;
        margin-top: clamp(34px, 6svh, 52px) !important;
        padding-left: 14px !important;
      }
      .hero-actions {
        margin-top: clamp(130px, 17svh, 166px) !important;
      }
      .data-number { font-size: clamp(18px, 5.5vw, 23px) !important; }
      .data-label { font-size: 8px !important; }
      .insights .container { width: min(var(--container), calc(100% - 24px)) !important; }
      .insight-item {
        min-height: 116px !important;
        padding: 12px 4px 10px !important;
      }
      .insight-icon {
        width: 32px !important;
        height: 32px !important;
      }
      .insight-title { font-size: 12px !important; }
      .insight-desc { font-size: 10px !important; }
    }

    @media (max-width: 720px) {
      .inner-title,
      .inner-copy,
      .breadcrumb,
      .message-contact h2,
      .contact-info-panel h2,
      .about-intro h2,
      .about-content-head h2,
      .contact-form-panel h2,
      .message-panel h2,
      .news-title,
      .product-title {
        max-width: 100% !important;
        overflow-wrap: anywhere !important;
        word-break: break-word;
      }

      .inner-copy {
        width: 100% !important;
        font-size: 15px !important;
        line-height: 1.72 !important;
      }

      .breadcrumb {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        font-size: 13px !important;
      }

      .news-list-layout,
      .contact-layout,
      .message-shell,
      .about-layout,
      .product-hero-card,
      .product-content-grid,
      .single-layout,
      .news-detail {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
      }

      .news-list,
      .message-form,
      .message-records .message-list,
      .contact-service-grid,
      .about-stats,
      .about-capabilities {
        grid-template-columns: 1fr !important;
      }

      .news-list-item,
      .news-list-item:nth-child(3n + 1) {
        grid-column: auto !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        width: 100% !important;
      }

      .news-list-image,
      .news-list-item:nth-child(3n + 1) .news-list-image {
        display: block !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 100% !important;
        height: 210px !important;
      }

      .news-list-body,
      .news-list-item:nth-child(3n + 1) .news-list-body {
        grid-column: 1 !important;
        grid-row: 2 !important;
      }

      .hero-actions {
        max-width: calc(100vw - 68px) !important;
      }
    }

    @media (max-width: 720px) {
      /* Product list mobile */
      .product-list-head {
        display: block !important;
        margin-bottom: 28px !important;
        padding-bottom: 24px !important;
      }

      .product-list-head h2 {
        margin-top: 12px !important;
        font-size: clamp(28px, 8vw, 38px) !important;
        line-height: 1.16 !important;
        letter-spacing: -0.035em !important;
      }

      .product-list-head p {
        margin-top: 16px !important;
        font-size: 14px !important;
        line-height: 1.75 !important;
      }

      .product-matrix {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
      }

      .product-tile {
        display: grid !important;
        grid-template-rows: auto auto !important;
        width: 100% !important;
        min-height: 0 !important;
      }

      .product-tile-media {
        aspect-ratio: 4 / 3 !important;
        height: auto !important;
      }

      .product-tile-media img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        padding: 18px !important;
        background: #F5F8FB;
      }

      .product-tile-label {
        left: 18px !important;
        bottom: 16px !important;
        font-size: 10px !important;
      }

      .product-tile-body {
        padding: 22px !important;
        gap: 14px !important;
      }

      .product-tile-title {
        font-size: clamp(24px, 7vw, 32px) !important;
        line-height: 1.18 !important;
      }

      .product-tile-desc,
      .product-tile-foot span {
        font-size: 13px !important;
        line-height: 1.65 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
      }

      .product-tile-foot {
        gap: 12px !important;
        padding-top: 16px !important;
      }

      .product-tile-arrow {
        flex: 0 0 36px !important;
        width: 36px !important;
        height: 36px !important;
      }

      /* News list mobile */
      .news-list-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }

      .news-list-main,
      .news-list {
        width: 100% !important;
        min-width: 0 !important;
      }

      .news-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        border-top: 0 !important;
      }

      .news-list-item,
      .news-list-item:nth-child(3n + 1) {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        grid-column: auto !important;
        width: 100% !important;
        min-height: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: #FFFFFF !important;
        border: 1px solid rgba(11,31,58,0.08) !important;
        box-shadow: 0 16px 46px rgba(11,31,58,0.07) !important;
      }

      .news-list-image,
      .news-list-item:nth-child(3n + 1) .news-list-image {
        display: block !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 100% !important;
        height: 210px !important;
        min-height: 0 !important;
        clip-path: none !important;
      }

      .news-list-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
      }

      .news-list-body,
      .news-list-item:nth-child(3n + 1) .news-list-body {
        display: grid !important;
        grid-column: 1 !important;
        grid-row: 2 !important;
        padding: 22px !important;
        background: #FFFFFF !important;
      }

      .news-list-meta {
        margin: 0 0 12px !important;
        writing-mode: horizontal-tb !important;
        font-size: 11px !important;
      }

      .news-list-title,
      .news-list-item:nth-child(3n + 1) .news-list-title {
        font-size: clamp(24px, 7vw, 32px) !important;
        line-height: 1.18 !important;
        min-height: 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
      }

      .news-list-desc {
        margin-top: 12px !important;
        font-size: 13px !important;
        line-height: 1.65 !important;
        -webkit-line-clamp: 2 !important;
      }

      .news-category-side {
        position: static !important;
        padding: 22px !important;
        background: rgba(255,255,255,0.78) !important;
        border: 1px solid rgba(11,31,58,0.08) !important;
        box-shadow: none !important;
      }

      .news-category-title {
        font-size: 28px !important;
      }

      /* Final mobile overflow guard for inner product/news listing pages */
      html,
      body {
        max-width: 100% !important;
        overflow-x: hidden !important;
      }

      .site-header,
      main,
      .inner-hero,
      .inner-section,
      .container,
      .product-list-head,
      .product-matrix,
      .product-tile,
      .product-tile-body,
      .news-list-layout,
      .news-list-main,
      .news-list,
      .news-list-item,
      .news-list-body {
        max-width: 100% !important;
        min-width: 0 !important;
      }

      .inner-hero {
        min-height: 300px !important;
        padding: 106px 0 34px !important;
      }

      .inner-hero + .inner-section {
        padding-top: 34px !important;
      }

      .inner-title {
        font-size: clamp(34px, 10vw, 42px) !important;
        line-height: 1.08 !important;
      }

      .inner-copy {
        font-size: 14px !important;
        line-height: 1.72 !important;
      }

      .inner-title,
      .inner-copy,
      .product-list-head h2,
      .product-list-head p,
      .product-tile-title,
      .product-tile-desc,
      .product-tile-foot span,
      .news-list-title,
      .news-list-desc {
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
      }

      .product-list-head h2 {
        font-size: clamp(26px, 7.2vw, 34px) !important;
        letter-spacing: -0.025em !important;
      }

      .product-list-head p {
        max-width: 31em !important;
      }

      .news-list-title,
      .news-list-item:nth-child(3n + 1) .news-list-title {
        font-size: clamp(21px, 5.8vw, 26px) !important;
        line-height: 1.24 !important;
      }

      .product-tile-body > *,
      .news-list-body > * {
        min-width: 0 !important;
      }

      .pagebar {
        max-width: 100% !important;
        overflow-x: auto !important;
      }

      /* Mobile manufacturing capacity: readable 2-column stats */
      .data {
        padding: 64px 0 70px !important;
      }

      .data-head {
        margin-bottom: 30px !important;
      }

      .data-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        align-items: stretch !important;
      }

      .data-item {
        display: grid !important;
        align-content: center !important;
        min-height: 92px !important;
        padding: 16px 12px !important;
        text-align: center !important;
        border-top: 1px solid rgba(255,255,255,0.22) !important;
        background: rgba(255,255,255,0.055) !important;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.055) !important;
      }

      .data-number {
        justify-self: center !important;
        font-size: clamp(32px, 10vw, 42px) !important;
        line-height: 1 !important;
        letter-spacing: -0.025em !important;
        white-space: nowrap !important;
      }

      .data-number .data-unit {
        font-size: 0.34em !important;
      }

      .data-label {
        margin-top: 9px !important;
        color: rgba(255,255,255,0.82) !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
        font-weight: 600 !important;
        white-space: normal !important;
        letter-spacing: 0 !important;
      }

      /* Homepage news cards on mobile */
      .news .news-card {
        gap: 12px !important;
      }

      .news .news-image {
        height: 190px !important;
        margin-bottom: 18px !important;
      }

      .news .news-meta {
        font-size: 11px !important;
        letter-spacing: 0.08em !important;
      }

      .news .news-title {
        margin-top: 12px !important;
        font-size: clamp(22px, 6vw, 27px) !important;
        line-height: 1.25 !important;
        font-weight: 400 !important;
        letter-spacing: -0.02em !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
      }

      .news .news-desc {
        margin-top: 10px !important;
        font-size: 13px !important;
        line-height: 1.65 !important;
        -webkit-line-clamp: 2 !important;
      }

      .news .news-link {
        margin-top: 14px !important;
        font-size: 13px !important;
      }

      /* Homepage application scenes: horizontal swipe on mobile */
      .scenes {
        overflow: hidden !important;
      }

      .scenes .container {
        width: 100% !important;
      }

      .scenes .section-head {
        width: min(var(--container), calc(100% - 32px)) !important;
        margin-inline: auto !important;
      }

      .scene-track {
        display: flex !important;
        grid-column: 1 / -1 !important;
        gap: 14px !important;
        width: 100% !important;
        margin-top: 4px !important;
        padding: 0 16px 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-left: 16px !important;
        -webkit-overflow-scrolling: touch !important;
      }

      .scene-track::-webkit-scrollbar {
        display: none !important;
      }

      .scene-card {
        flex: 0 0 min(82vw, 330px) !important;
        height: 390px !important;
        min-height: 390px !important;
        scroll-snap-align: start !important;
      }

      .scene-title {
        left: 22px !important;
        right: 22px !important;
        bottom: 24px !important;
        font-size: 24px !important;
        line-height: 1.18 !important;
      }

      .scene-label {
        margin-bottom: 10px !important;
        font-size: 11px !important;
      }

      /* Footer after removing product links */
      .footer {
        padding: 52px 0 34px !important;
      }

      .footer .grid-12 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 26px 18px !important;
      }

      .footer .footer-col.footer-col--brand {
        grid-column: 1 / -1 !important;
        order: 1 !important;
      }

      .footer .footer-col.footer-col--links {
        grid-column: span 1 !important;
        order: 2 !important;
      }

      .footer .footer-col.footer-col--contact {
        grid-column: span 1 !important;
        order: 3 !important;
      }

      .footer .footer-col.footer-col--contact p,
      .footer .footer-col.footer-col--contact a {
        word-break: break-word !important;
      }

      .footer-bottom {
        margin-top: 34px !important;
        gap: 10px !important;
        align-items: flex-start !important;
      }
    }

    /* News index isolated layout: one row per article, thumbnail on the left */
    .news-index-layout {
      display: grid;
      grid-template-columns: minmax(0, 8.6fr) minmax(260px, 2.8fr);
      gap: 50px;
      align-items: start;
    }

    .news-index-main {
      min-width: 0;
    }

    .news-index-list {
      display: grid;
      gap: 18px;
    }

    .news-index-item {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 30px;
      align-items: stretch;
      min-height: 188px;
      padding: 18px;
      overflow: hidden;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(11,31,58,0.09);
      box-shadow: 0 16px 44px rgba(11,31,58,0.06);
      transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
    }

    .news-index-item:hover {
      transform: translateY(-2px);
      border-color: rgba(242,140,40,0.34);
      box-shadow: 0 22px 56px rgba(11,31,58,0.09);
    }

    .news-index-thumb {
      width: 100%;
      min-height: 152px;
      overflow: hidden;
      background: #E9F0F6;
    }

    .news-index-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s var(--ease), filter .5s var(--ease);
    }

    .news-index-item:hover .news-index-thumb img {
      transform: scale(1.035);
      filter: saturate(1.04) contrast(1.04);
    }

    .news-index-body {
      display: grid;
      align-content: center;
      min-width: 0;
      padding: 10px 12px 10px 0;
    }

    .news-index-date {
      margin-bottom: 14px;
      color: var(--accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .12em;
    }

    .news-index-title {
      color: var(--strong);
      font-size: clamp(24px, 2vw, 30px);
      line-height: 1.25;
      font-weight: 400;
      letter-spacing: -0.02em;
    }

    .news-index-desc {
      margin-top: 12px;
      color: rgba(60,79,99,0.86);
      font-size: 14px;
      line-height: 1.76;
      font-weight: 300;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    @media (max-width: 1024px) {
      .news-index-layout {
        grid-template-columns: 1fr;
        gap: 26px;
      }
    }

    @media (max-width: 720px) {
      .news-index-layout {
        gap: 22px;
      }

      .news-index-list {
        gap: 14px;
      }

      .news-index-item {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 14px;
        min-height: 128px;
        padding: 12px;
      }

      .news-index-thumb {
        min-height: 104px;
      }

      .news-index-body {
        padding: 2px 0;
      }

      .news-index-date {
        margin-bottom: 8px;
        font-size: 10px;
        letter-spacing: .08em;
      }

      .news-index-title {
        font-size: clamp(17px, 4.8vw, 20px);
        line-height: 1.28;
        font-weight: 500;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .news-index-desc {
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.5;
        -webkit-line-clamp: 2;
      }
    }

    /* News detail overflow guard */
    .news-detail {
      width: 100%;
      min-width: 0;
      overflow: hidden;
    }

    .news-article,
    .news-article-head,
    .news-cover,
    .news-body,
    .news-side {
      min-width: 0 !important;
      max-width: 100% !important;
    }

    .news-body {
      overflow: hidden;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .news-body p,
    .news-body div,
    .news-body span,
    .news-body li,
    .news-body td,
    .news-body th {
      max-width: 100%;
      overflow-wrap: anywhere;
      word-break: break-word;
      white-space: normal;
    }

    .news-body img,
    .news-body video,
    .news-body iframe {
      max-width: 100% !important;
      height: auto !important;
    }

    .news-body table {
      display: block;
      width: 100% !important;
      max-width: 100% !important;
      overflow-x: auto;
      white-space: normal;
    }

    @media (min-width: 1025px) {
      .news-detail {
        grid-template-columns: minmax(0, 820px) minmax(260px, 320px) !important;
        justify-content: center;
      }
    }

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

      .news-side {
        position: static !important;
      }
    }

    @media (max-width: 720px) {
      .news-article-head {
        padding-left: 24px !important;
      }

      .news-body {
        margin-top: 34px !important;
        font-size: 15px !important;
        line-height: 1.9 !important;
      }

      .news-body p:first-child {
        font-size: 16px !important;
        line-height: 1.9 !important;
      }
    }

    /* PbootCMS rich text hard reset for news detail content */
    .news-body,
    .news-body * {
      box-sizing: border-box !important;
      max-width: 100% !important;
      white-space: normal !important;
      overflow-wrap: anywhere !important;
      word-break: break-all !important;
    }

    .news-body [style*="width"],
    .news-body [width] {
      width: auto !important;
    }

    .news-body p,
    .news-body div,
    .news-body section,
    .news-body article,
    .news-body blockquote {
      width: 100% !important;
    }

    .news-body table,
    .news-body tbody,
    .news-body thead,
    .news-body tfoot,
    .news-body tr {
      width: 100% !important;
      max-width: 100% !important;
    }

    .news-body pre,
    .news-body code {
      white-space: pre-wrap !important;
      overflow-wrap: anywhere !important;
    }

    /* About page rich text overflow guard */
    .about-layout,
    .about-content,
    .about-content-head,
    .about-richtext {
      min-width: 0 !important;
      max-width: 100% !important;
      overflow: hidden;
    }

    .about-layout {
      overflow: visible !important;
    }

    .about-content-head h2 {
      max-width: 100% !important;
      overflow-wrap: anywhere !important;
      word-break: break-word !important;
    }

    .about-richtext,
    .about-richtext * {
      box-sizing: border-box !important;
      max-width: 100% !important;
      white-space: normal !important;
      overflow-wrap: anywhere !important;
      word-break: break-word !important;
    }

    .about-richtext [style*="width"],
    .about-richtext [width] {
      width: auto !important;
    }

    .about-richtext p,
    .about-richtext div,
    .about-richtext section,
    .about-richtext article,
    .about-richtext blockquote {
      width: 100% !important;
    }

    .about-richtext img,
    .about-richtext video,
    .about-richtext iframe {
      max-width: 100% !important;
      height: auto !important;
    }

    .about-richtext table {
      display: block;
      width: 100% !important;
      max-width: 100% !important;
      overflow-x: auto;
    }

    /* Homepage news cards: prevent English titles from overlapping excerpts */
    .news .news-card {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .news .news-card > div:not(.news-image) {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .news .news-title {
      min-height: 2.58em;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-wrap: auto;
      word-break: normal;
      overflow-wrap: anywhere;
    }

    .news .news-desc {
      margin-top: 14px;
      min-height: 3.5em;
      -webkit-line-clamp: 2;
    }

    body.is-en .news .news-title {
      font-size: clamp(23px, 1.95vw, 28px) !important;
      line-height: 1.28 !important;
      min-height: 2.56em !important;
      letter-spacing: -0.018em !important;
    }

    body.is-en .news .news-desc {
      font-size: 14px !important;
      line-height: 1.7 !important;
    }

    @media (max-width: 720px) {
      .news .news-title {
        min-height: 0 !important;
      }

      body.is-en .news .news-title {
        font-size: clamp(19px, 5vw, 22px) !important;
        line-height: 1.3 !important;
      }

      .news .news-desc {
        min-height: 0 !important;
      }
    }

    /* Product detail image magnifier */
    .product-media {
      position: relative;
      cursor: zoom-in;
      isolation: isolate;
    }

    .product-media.has-zoom img {
      transform: none !important;
      filter: none !important;
    }

    .product-zoom-lens {
      position: absolute;
      z-index: 3;
      width: 172px;
      height: 172px;
      border: 2px solid rgba(255,255,255,0.92);
      border-radius: 50%;
      background-repeat: no-repeat;
      box-shadow: 0 18px 48px rgba(7,17,28,0.22), inset 0 0 0 1px rgba(11,31,58,0.12);
      pointer-events: none;
      opacity: 0;
      transform: translate(-50%, -50%) scale(.92);
      transition: opacity .18s var(--ease), transform .18s var(--ease);
    }

    .product-media.is-zooming .product-zoom-lens {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    @media (max-width: 1024px), (hover: none) {
      .product-media {
        cursor: default;
      }

      .product-zoom-lens {
        display: none;
      }
    }

    /* Message page without public records */
    .message-shell {
      grid-template-columns: minmax(320px, 4.5fr) minmax(0, 7.5fr) !important;
      align-items: stretch;
    }

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

    /* Mobile English reading comfort */
    @media (max-width: 720px) {
      body.is-en .inner-section > .container,
      body.is-en .news-detail,
      body.is-en .about-layout,
      body.is-en .product-detail,
      body.is-en .single-layout {
        width: calc(100% - 40px) !important;
        max-width: 390px !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      body.is-en .news-body,
      body.is-en .news-body *,
      body.is-en .about-richtext,
      body.is-en .about-richtext *,
      body.is-en .product-body,
      body.is-en .product-body *,
      body.is-en .article-content,
      body.is-en .article-content * {
        word-break: normal !important;
        overflow-wrap: break-word !important;
      }

      body.is-en .news-body,
      body.is-en .about-richtext,
      body.is-en .product-body,
      body.is-en .article-content {
        font-size: 14px !important;
        line-height: 1.82 !important;
        letter-spacing: 0 !important;
      }

      body.is-en .news-body p,
      body.is-en .about-richtext p,
      body.is-en .product-body p,
      body.is-en .article-content p {
        margin-bottom: 20px !important;
      }
    }

    /* Mobile Chinese news detail reading comfort */
    @media (max-width: 720px) {
      body:not(.is-en) .inner-section > .news-detail {
        width: calc(100% - 40px) !important;
        max-width: 390px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      body:not(.is-en) .news-article,
      body:not(.is-en) .news-body {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      body:not(.is-en) .news-body {
        margin-top: 28px !important;
        font-size: 15px !important;
        line-height: 1.9 !important;
        letter-spacing: 0 !important;
        color: rgba(8,25,44,0.76) !important;
      }

      body:not(.is-en) .news-body p,
      body:not(.is-en) .news-body div,
      body:not(.is-en) .news-body span,
      body:not(.is-en) .news-body li {
        font-size: 15px !important;
        line-height: 1.9 !important;
        letter-spacing: 0 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
      }

      body:not(.is-en) .news-body p {
        margin-bottom: 22px !important;
      }
    }


