/*
Theme Name: hengcolor
Theme URI: http://localhost:8123/
Author: Codex
Description: A polished commercial lighting WordPress theme inspired by premium LED manufacturer websites, with WooCommerce and inquiry form styling.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: zhaoming-lighting
*/

:root {
  --zm-bg: #f5f6f7;
  --zm-panel: #ffffff;
  --zm-ink: #1f3142;
  --zm-muted: #667789;
  --zm-soft: #dfe4e9;
  --zm-dark: #151719;
  --zm-dark-2: #24282d;
  --zm-red: #f0181e;
  --zm-red-dark: #c90f14;
  --zm-line: rgba(255,255,255,.18);
  --zm-container: min(1180px, calc(100vw - 48px));
  --zm-shadow: 0 18px 50px rgba(19, 27, 35, .12);
  --zm-radius: 8px;
  --zm-font: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--zm-ink);
  background: var(--zm-bg);
  font-family: var(--zm-font);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

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

.container {
  width: var(--zm-container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 76px;
  color: #fff;
  border-bottom: 1px solid var(--zm-line);
  background: rgba(16, 17, 19, .36);
  backdrop-filter: blur(10px);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header,
body.zml-front-page-editor-content .site-header {
  color: var(--zm-ink);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 28px rgba(22, 27, 31, .08);
  border-bottom-color: rgba(0,0,0,.06);
}

.site-header-inner {
  width: var(--zm-container);
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 152px;
  font-weight: 800;
  color: currentColor;
}

.site-brand-mark {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background: transparent;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1;
}

.site-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-brand-text {
  display: grid;
  line-height: 1.05;
}

.site-brand-title {
  font-size: 18px;
}

.site-brand-sub {
  font-size: 10px;
  font-weight: 600;
  color: currentColor;
  opacity: .72;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  font-size: 14px;
  font-weight: 700;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-navigation .current-menu-item > a::after,
.main-navigation a:hover::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 214px;
}

.header-search {
  width: 136px;
}

.header-search input[type="search"] {
  width: 100%;
  height: 28px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  padding: 0 14px;
  color: currentColor;
  background: rgba(255,255,255,.15);
  outline: 0;
}

.site-header.is-scrolled .header-search input[type="search"],
body:not(.home) .header-search input[type="search"],
body.zml-front-page-editor-content .header-search input[type="search"] {
  border-color: #c9d0d8;
  background: #f4f6f8;
}

.header-search input::placeholder {
  color: currentColor;
  opacity: .72;
}

.lang-switch {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
  color: currentColor;
}

.lang-switch a {
  color: inherit;
}

.lang-switch a.is-active {
  color: var(--zm-red);
}

.js-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .58s ease,
    transform .58s cubic-bezier(.2, .72, .22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-enabled .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js-enabled .lazy-media {
  opacity: 0;
  transition: opacity .32s ease;
}

.js-enabled .lazy-media.is-loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal-on-scroll,
  .js-enabled .lazy-media {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  color: currentColor;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #151719;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.08) 36%, rgba(0,0,0,.38)),
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.38) 46%, rgba(0,0,0,.1));
}

.hero-media img,
.hero-media video,
.page-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--zm-container);
  margin: 0 auto;
  padding: 164px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--zm-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.86);
  font-size: 19px;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn,
.button,
.zc-btn,
.zc-open-inquiry-modal,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--zm-red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover,
.button:hover,
.zc-btn:hover,
.zc-open-inquiry-modal:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-1px);
  background: var(--zm-red-dark);
  color: #fff;
}

.btn.btn-ghost {
  border-color: rgba(255,255,255,.56);
  background: transparent;
}

.btn.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
}

.hero-series {
  position: relative;
  width: var(--zm-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-series-band {
  position: relative;
  z-index: 3;
  padding: 28px 0 0;
  background: #fff;
}

.hero-series-card {
  min-height: 190px;
  display: grid;
  align-content: end;
  padding: 24px;
  overflow: hidden;
  color: var(--zm-ink);
  background: linear-gradient(135deg, #fff, #eef2f5);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--zm-radius);
  position: relative;
  box-shadow: var(--zm-shadow);
}

.hero-series-card img {
  position: absolute;
  inset: 16px 12px 16px 42%;
  width: calc(58% - 12px);
  height: calc(100% - 32px);
  object-fit: contain;
  opacity: .96;
  transition: transform .4s ease;
}

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

.hero-series-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.84) 48%, rgba(255,255,255,0) 82%);
}

.hero-series-card > *:not(img) {
  position: relative;
  z-index: 1;
}

.hero-series-card h2 {
  margin: 0 0 4px;
  font-size: 20px;
  max-width: 58%;
}

.hero-series-card p {
  margin: 0;
  max-width: 56%;
  color: var(--zm-muted);
  font-size: 13px;
}

.section {
  padding: 108px 0;
}

.section.after-hero {
  padding-top: 82px;
}

.section.compact {
  padding: 72px 0;
}

.section.white {
  background: #fff;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header.align-left {
  margin-left: 0;
  text-align: left;
}

.section-kicker {
  color: var(--zm-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  margin: 8px 0 12px;
  color: var(--zm-ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.section-copy {
  color: var(--zm-muted);
}

.product-mosaic {
  display: grid;
  grid-template-columns: 1.04fr 1fr 1.04fr;
  gap: 8px;
  min-height: 620px;
}

.mosaic-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 50% 36%, #fff 0, #eef2f5 44%, #d7dde3 100%);
}

.mosaic-tile:nth-child(2) {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  background: transparent;
}

.mosaic-tile.tall {
  min-height: 620px;
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  filter: saturate(.96);
}

.mosaic-caption {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 2;
}

.mosaic-tile::after,
.mini-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.7));
}

.mosaic-caption h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.mosaic-caption p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.mini-tile {
  position: relative;
  overflow: hidden;
}

.mini-tile img {
  height: 100%;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.company-copy p {
  color: var(--zm-muted);
}

.red-rule {
  width: 64px;
  height: 4px;
  margin: 18px 0 26px;
  background: var(--zm-red);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--zm-radius);
  min-height: 360px;
  background: var(--zm-dark);
  box-shadow: var(--zm-shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.media-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  border: 0;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.28);
  font-size: 0;
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
  margin-left: 5px;
}

.stats-grid,
.advantages-grid,
.news-grid,
.download-grid {
  display: grid;
  gap: 26px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.stat {
  padding: 24px;
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: var(--zm-radius);
}

.stat strong {
  display: block;
  color: var(--zm-red);
  font-size: 30px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--zm-muted);
  font-size: 13px;
}

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

.advantage-card,
.news-card,
.download-card,
.timeline-card {
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: var(--zm-radius);
  overflow: hidden;
}

.news-card,
.download-card,
.timeline-card,
.woocommerce ul.products li.product {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-card:hover,
.download-card:hover,
.timeline-card:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  border-color: #dfe4e9;
  box-shadow: 0 18px 42px rgba(26, 37, 48, .1);
}

.advantage-card {
  padding: 28px;
}

.advantage-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.advantage-symbol,
.advantage-number {
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.advantage-symbol {
  width: 52px;
  height: 52px;
  color: var(--zm-red);
  background: #fff2f2;
  border: 1px solid rgba(240,24,30,.18);
}

.advantage-symbol svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage-number {
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--zm-red);
  font-weight: 900;
  font-size: 14px;
}

.advantage-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.advantage-card p {
  margin: 0;
  color: var(--zm-muted);
  font-size: 14px;
}

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

.news-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.news-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.news-card-body {
  display: block;
  padding: 24px;
}

.news-card h3,
.news-card-title {
  display: block;
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
}

.news-card p,
.news-card-copy {
  display: block;
  margin: 0 0 18px;
  color: var(--zm-muted);
  font-size: 14px;
}

.text-link {
  color: var(--zm-red);
  font-weight: 900;
}

.inquiry-band {
  background: #fff;
}

.inquiry-wrap {
  max-width: 1050px;
  margin: 0 auto;
}

.zc-inquiry-form,
.inquiry-fallback {
  display: grid;
  gap: 16px;
}

.zc-inquiry-form .zc-form-grid,
.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.zc-inquiry-form input,
.zc-inquiry-form textarea,
.zc-inquiry-form select,
.inquiry-fallback input,
.inquiry-fallback textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dfe4e9;
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--zm-ink);
  background: #fff;
  outline: 0;
}

.zc-inquiry-form textarea,
.inquiry-fallback textarea {
  min-height: 150px;
  grid-column: 1 / -1;
  resize: vertical;
}

.zc-inquiry-form button,
.zc-inquiry-form input[type="submit"],
.inquiry-fallback button {
  justify-self: center;
  min-width: 230px;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  background: var(--zm-red);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--zm-dark);
}

.page-hero img {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: var(--zm-container);
  margin: 0 auto;
  padding: 142px 0 70px;
  text-shadow: 0 3px 20px rgba(0,0,0,.36);
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
}

.page-hero .red-rule {
  background: #fff;
}

.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid #e7ebef;
}

.breadcrumb-bar .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb-bar span {
  color: var(--zm-red);
}

.product-breadcrumb-bar {
  padding-top: 76px;
}

.product-breadcrumb-bar .container {
  min-height: 64px;
  flex-wrap: wrap;
}

.product-breadcrumb-bar .current-product {
  max-width: 520px;
  color: var(--zm-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-panel {
  background: #fff;
  padding: 74px 0;
}

.centered-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.centered-copy p {
  color: var(--zm-muted);
}

.about-overview-panel {
  background:
    linear-gradient(180deg, #fff 0%, #fff 68%, #f6f5f5 68%, #f6f5f5 100%);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.about-overview-copy .section-title {
  margin-bottom: 22px;
  text-align: left;
}

.about-overview-copy p {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--zm-muted);
}

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

.about-proof-card {
  min-height: 220px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(155deg, #1d2024 0%, #30343a 100%);
  border-radius: var(--zm-radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
}

.about-proof-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--zm-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.about-proof-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
}

.about-proof-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.65;
}

.about-products-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid #ebeef1;
  border-radius: var(--zm-radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .06);
}

.about-products-row > span {
  color: var(--zm-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.pill {
  border: 1px solid #dfe4e9;
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--zm-muted);
  background: #fff;
  font-weight: 800;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.application-section {
  background: #f0f2f4;
}

.application-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 18px;
}

.application-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--zm-radius);
  background: var(--zm-dark);
  box-shadow: 0 18px 46px rgba(26, 37, 48, .1);
}

.application-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.66));
}

.application-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.timeline-card {
  min-height: 110px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 20px 42px rgba(28,35,42,.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.contact-list strong {
  color: var(--zm-ink);
}

.contact-list span,
.contact-list a {
  color: var(--zm-muted);
}

.download-tabs {
  display: flex;
  gap: 24px;
  margin: 34px 0;
}

.download-tab {
  border: 0;
  padding: 0 0 8px;
  color: var(--zm-muted);
  background: transparent;
  font-size: 22px;
  font-weight: 800;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

.download-tab.is-active {
  color: var(--zm-red);
  border-bottom-color: var(--zm-red);
}

.download-panel[hidden] {
  display: none;
}

.download-section {
  margin-top: 42px;
}

.download-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eceff2;
}

.download-section h2 {
  margin: 0;
  font-size: 30px;
}

.download-section-head p {
  max-width: 460px;
  margin: 0;
  color: var(--zm-muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  padding: 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  border-color: #e7ebef;
}

.download-card strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--zm-ink);
  line-height: 1.28;
}

.download-card small {
  display: block;
  color: var(--zm-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.download-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #bed0ff;
  border-radius: 50%;
  color: #3d6ee8;
  font-weight: 900;
}

.download-focus {
  padding: 72px 0 42px;
  background: #fff;
}

.download-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 26px;
  align-items: stretch;
}

.download-feature-card {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  min-height: 430px;
  overflow: hidden;
  background: #151719;
  color: #fff;
}

.download-feature-media {
  position: relative;
  min-height: 360px;
  background: #111;
}

.download-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.26)),
    linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.28));
}

.download-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-feature-badge,
.download-resource-mark {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  min-height: 34px;
  padding: 0 12px;
  color: #fff;
  background: var(--zm-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.download-feature-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
}

.download-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 54px);
}

.download-feature-copy .section-title {
  color: #fff;
}

.download-feature-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 15px;
  line-height: 1.9;
}

.download-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.download-meta-list span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
  font-weight: 800;
}

.download-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.download-primary-action,
.download-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
}

.download-primary-action {
  color: #fff;
  background: var(--zm-red);
}

.download-primary-action:hover {
  background: var(--zm-red-dark);
}

.download-secondary-action {
  color: currentColor;
  border: 1px solid currentColor;
}

.download-support-panel {
  padding: 34px;
  color: var(--zm-ink);
  background:
    linear-gradient(180deg, #f6f7f8 0%, #fff 100%);
  border: 1px solid #e6eaee;
}

.download-support-panel h2 {
  margin: 10px 0 16px;
  font-size: 26px;
  line-height: 1.18;
}

.download-support-panel p {
  margin: 0;
  color: var(--zm-muted);
  font-size: 14px;
  line-height: 1.85;
}

.download-support-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.download-support-panel li {
  padding: 13px 0;
  border-top: 1px solid #e3e8ed;
  color: #384451;
  font-size: 13px;
  font-weight: 800;
}

.download-library-section {
  padding: 42px 0 78px;
  background: #f6f5f5;
}

.download-resource-group + .download-resource-group {
  margin-top: 38px;
}

.download-resource-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.download-resource-head h3 {
  margin: 0;
  font-size: 22px;
}

.download-resource-head span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  color: #fff;
  background: var(--zm-dark);
  font-size: 12px;
  font-weight: 900;
}

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

.download-resource-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 22px;
  color: var(--zm-ink);
  background: #fff;
  border: 1px solid #e7ebef;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.download-resource-card:hover {
  border-color: #d8dee5;
  box-shadow: 0 18px 38px rgba(28,35,42,.08);
  transform: translateY(-2px);
}

.download-resource-copy {
  display: grid;
  gap: 5px;
}

.download-resource-copy small {
  color: var(--zm-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.download-resource-copy strong {
  color: var(--zm-ink);
  line-height: 1.25;
}

.download-resource-copy span {
  color: var(--zm-muted);
  font-size: 13px;
}

.download-resource-action {
  color: var(--zm-red);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.download-contact-strip {
  padding: 54px 0;
  background: #fff;
}

.download-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid #e4e8ec;
  border-bottom: 1px solid #e4e8ec;
}

.download-contact-inner h2 {
  margin: 8px 0 0;
  color: var(--zm-ink);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.16;
}

.site-footer {
  color: rgba(255,255,255,.82);
  background: var(--zm-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 44px;
  padding: 56px 0;
}

.footer-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 999;
  display: grid;
  gap: 10px;
}

.floating-actions a,
.floating-actions button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--zm-red);
  box-shadow: 0 12px 30px rgba(240,24,30,.24);
  font-weight: 900;
  cursor: pointer;
}

.floating-actions svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-actions a:first-child svg {
  width: 25px;
  height: 25px;
}

.post-type-archive-product .floating-actions {
  display: none;
}

.woocommerce-page-shell {
  background: var(--zm-bg);
}

.woocommerce-page-shell--single-product {
  background:
    linear-gradient(180deg, #fff 0, #fff 160px, var(--zm-bg) 160px);
}

.woocommerce-main {
  width: var(--zm-container);
  margin: 0 auto;
  padding: 60px 0 90px;
}

.single-product .woocommerce-main {
  padding-top: 42px;
}

.woocommerce ul.products {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce-page ul.products[class*=columns-] li.product {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 10px minmax(0, 1fr) 20px;
  align-content: start;
  width: auto !important;
  margin: 0;
  padding: 0;
  float: none !important;
  clear: none !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e9ed;
  border-radius: var(--zm-radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .045);
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 270px;
  margin: 0;
  padding: 28px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 40%, #fff 0, #fff 34%, #eef2f5 100%);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 64px;
  display: flex;
  align-items: flex-start;
  padding: 18px 18px 6px;
  color: var(--zm-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.woocommerce ul.products li.product .price {
  grid-column: 1 / -1;
  display: block;
  padding: 0 18px 12px;
  color: var(--zm-red);
  font-weight: 800;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .zc-open-inquiry-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 42px;
  min-width: 0;
  min-height: 42px;
  margin: 0 0 22px;
  padding: 0 10px;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.woocommerce ul.products li.product .button {
  grid-column: 2;
  box-shadow: 0 8px 18px rgba(240,24,30,.14);
}

.woocommerce ul.products li.product .zc-open-inquiry-modal {
  grid-column: 4;
  border-color: #cfd7df;
  background: #fff;
  color: var(--zm-ink);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .02);
}

.woocommerce ul.products li.product .zc-open-inquiry-modal:hover {
  border-color: var(--zm-red);
  background: var(--zm-red);
  color: #fff;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 58px;
  padding: 36px;
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: var(--zm-radius);
  box-shadow: 0 18px 50px rgba(19, 27, 35, .06);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto;
  float: none;
}

.woocommerce div.product div.images {
  grid-column: 1;
}

.woocommerce div.product div.summary {
  grid-column: 2;
  align-self: start;
  padding-top: 8px;
}

.woocommerce div.product .product_title {
  margin-bottom: 18px;
  color: var(--zm-ink);
  font-size: 46px;
  line-height: 1.12;
}

.woocommerce div.product p.price:empty {
  display: none;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  margin: 0 0 22px;
}

.woocommerce div.product .woocommerce-product-details__short-description p {
  margin: 0;
  color: var(--zm-muted);
  font-size: 17px;
  font-weight: 700;
}

.woocommerce div.product div.images img {
  padding: 34px;
  object-fit: contain;
  background: radial-gradient(circle at 50% 42%, #fff 0, #fff 45%, #f1f4f6 100%);
  border-radius: var(--zm-radius);
}

.woocommerce-product-gallery .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 0;
  max-height: 400px;
  overflow-y: auto;
}

.woocommerce-product-gallery .flex-control-thumbs li img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #f8fafb;
  border: 1px solid #e5eaf0;
  border-radius: 10px;
  cursor: pointer;
  opacity: .65;
  transition: opacity .2s ease, border-color .2s ease;
}

.woocommerce-product-gallery .flex-control-thumbs li img:hover {
  opacity: 1;
}

.woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
  border-color: var(--zm-red);
}

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

.single-product-spec {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid #e5eaf0;
  border-radius: var(--zm-radius);
  background: #f8fafb;
}

.single-product-spec__label,
.single-product-meta__label {
  color: var(--zm-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.single-product-spec strong {
  color: var(--zm-ink);
  font-size: 16px;
  line-height: 1.25;
}

.single-product-cta {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 18px;
  border: 1px solid #ffd7d9;
  border-radius: var(--zm-radius);
  background: #fff7f7;
}

.single-product-cta .zc-open-inquiry-modal {
  width: 100%;
  min-height: 48px;
}

.single-product-cta p {
  margin: 0;
  color: #7b3d40;
  font-size: 14px;
  line-height: 1.55;
}

.single-product-meta-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #edf0f3;
}

.single-product-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.single-product-meta__value {
  color: var(--zm-ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
  grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 6px;
  padding-top: 32px;
  border-top: 1px solid #edf0f3;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  border-bottom: 1px solid #dfe5eb;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  border: 1px solid #dfe5eb;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #f8fafb;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 10px 18px;
  color: var(--zm-ink);
  font-weight: 900;
}

.woocommerce div.product .woocommerce-Tabs-panel h2 {
  margin-top: 0;
  font-size: 28px;
}

.woocommerce div.product .related.products {
  margin-top: 18px;
  padding-top: 34px;
  border-top: 1px solid #edf0f3;
}

.woocommerce div.product .related.products > h2 {
  margin: 0 0 22px;
  color: var(--zm-ink);
  font-size: 30px;
  line-height: 1.2;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
  padding: 10px 12px;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--zm-red);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--zm-red);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin: 0 0 26px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 38px;
  border: 1px solid #cdd5de;
  border-radius: 4px;
  padding: 0 10px;
  background: #fff;
}

.site-main.default-page {
  padding: 140px 0 90px;
  background: #fff;
}

.page-editor-section {
  background: #fff;
}

.home-editor-section {
  padding: 150px 0 90px;
  background: #fff;
}

.page-editor-content {
  max-width: 980px;
}

.page-editor-content > *:first-child,
.entry-content > *:first-child {
  margin-top: 0;
}

.page-editor-content > *:last-child,
.entry-content > *:last-child {
  margin-bottom: 0;
}

.page-editor-content h1,
.page-editor-content h2,
.page-editor-content h3,
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  margin: 34px 0 14px;
  color: var(--zm-ink);
  line-height: 1.16;
}

.page-editor-content p,
.page-editor-content li,
.entry-content p,
.entry-content li {
  color: var(--zm-muted);
}

.page-editor-content a,
.entry-content a {
  color: var(--zm-red);
  font-weight: 800;
}

.page-editor-content figure,
.entry-content figure {
  margin: 32px 0;
}

.page-editor-content img,
.entry-content img {
  border-radius: var(--zm-radius);
}

.page-editor-content .wp-block-button__link,
.entry-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 4px;
  padding: 10px 18px;
  color: #fff;
  background: var(--zm-red);
  font-weight: 900;
}

.page-editor-content .wp-block-columns,
.entry-content .wp-block-columns {
  gap: clamp(22px, 4vw, 48px);
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1100px) {
  .main-navigation ul {
    gap: 20px;
  }

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

  .hero-series,
  .news-grid,
  .download-grid,
  .post-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header,
  .site-header-inner {
    height: 66px;
  }

  .mobile-toggle {
    display: block;
  }

  .main-navigation {
    position: fixed;
    left: 0;
    right: 0;
    top: 66px;
    display: none;
    padding: 18px 24px 24px;
    background: #fff;
    color: var(--zm-ink);
    box-shadow: 0 22px 44px rgba(0,0,0,.12);
  }

  .main-navigation.is-open {
    display: block;
  }

  .main-navigation ul {
    display: grid;
    gap: 0;
  }

  .main-navigation a {
    min-height: 48px;
  }

  .header-search {
    display: none;
  }

  .header-tools {
    min-width: auto;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 126px;
  }

  .hero-series,
  .product-mosaic,
  .company-grid,
  .contact-grid,
  .footer-top,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary,
  .woocommerce div.product .woocommerce-tabs,
  .woocommerce div.product .related.products,
  .woocommerce div.product .upsells.products {
    grid-column: 1;
  }

  .woocommerce div.product {
    gap: 30px;
  }

  .woocommerce div.product .product_title {
    font-size: 36px;
  }

  .woocommerce-product-gallery .flex-control-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-mosaic,
  .mosaic-tile.tall {
    min-height: auto;
  }

  .mosaic-tile,
  .mini-tile {
    min-height: 260px;
  }

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

  .section {
    padding: 76px 0;
  }

  .section.after-hero {
    padding-top: 76px;
  }

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

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

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

  .download-focus-grid {
    grid-template-columns: 1fr;
  }

  .download-feature-card {
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 620px) {
  :root {
    --zm-container: min(100vw - 28px, 1180px);
  }

  .site-brand-sub,
  .lang-switch {
    display: none;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-series-card {
    min-height: 168px;
  }

  .hero-series-card h2,
  .hero-series-card p {
    max-width: 62%;
  }

  .hero-series,
  .advantages-grid,
  .news-grid,
  .download-grid,
  .post-list,
  .woocommerce ul.products,
  .zc-inquiry-form .zc-form-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce-page ul.products[class*=columns-] li.product,
  .woocommerce ul.products li.product {
    width: 100% !important;
  }

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

  .page-hero {
    min-height: 330px;
  }

  .product-breadcrumb-bar {
    padding-top: 66px;
  }

  .product-breadcrumb-bar .container {
    min-height: 58px;
  }

  .product-breadcrumb-bar .current-product {
    display: none;
  }

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

  .content-panel {
    padding: 56px 0;
  }

  .about-overview-panel {
    background: #fff;
  }

  .about-overview-copy .section-title {
    font-size: 30px;
  }

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

  .about-proof-card {
    min-height: auto;
    padding: 22px;
  }

  .about-proof-card span {
    margin-bottom: 20px;
  }

  .about-products-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .about-products-row .pill-list {
    justify-content: flex-start;
    margin-top: 0;
  }

  .download-section-head {
    display: block;
  }

  .download-section h2 {
    font-size: 24px;
  }

  .download-section-head p {
    margin-top: 8px;
  }

  .download-card {
    min-height: 106px;
  }

  .download-focus {
    padding: 48px 0 28px;
  }

  .download-feature-card,
  .download-resource-grid {
    grid-template-columns: 1fr;
  }

  .download-feature-copy,
  .download-support-panel {
    padding: 24px;
  }

  .download-feature-media {
    min-height: 230px;
  }

  .download-resource-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .download-resource-mark {
    width: max-content;
  }

  .download-resource-action {
    white-space: normal;
  }

  .download-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .woocommerce ul.products li.product a img {
    height: 190px;
    padding: 18px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 42px;
    padding: 16px 16px 6px;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product .zc-open-inquiry-modal {
    height: 40px;
    min-height: 40px;
    margin-bottom: 18px;
    padding: 0 10px;
    font-size: 12px;
  }

  .single-product .woocommerce-main {
    padding: 22px 0 72px;
  }

  .woocommerce div.product {
    padding: 24px;
  }

  .woocommerce div.product div.summary {
    padding-top: 0;
  }

  .woocommerce div.product .product_title {
    font-size: 30px;
  }

  .single-product-specs {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .single-product-spec {
    min-height: 66px;
  }

  .single-product-cta {
    padding: 16px;
  }

  .single-product-meta-list {
    padding-right: 58px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    overflow-x: auto;
  }

  .floating-actions {
    display: none;
  }

  body.single-product .floating-actions {
    display: none;
  }
}

/* Yikoo-inspired visual refresh: product-led, quieter, and more spacious. */
:root {
  --zm-bg: #f6f5f5;
  --zm-panel: #ffffff;
  --zm-ink: #233445;
  --zm-muted: #686f77;
  --zm-soft: #e7e7e7;
  --zm-dark: #1a1a1a;
  --zm-dark-2: #2d2c2c;
  --zm-red: #e81113;
  --zm-red-dark: #be0709;
  --zm-container: min(1200px, calc(100vw - 64px));
  --zm-shadow: 0 14px 34px rgba(0, 0, 0, .08);
  --zm-radius: 4px;
  --zm-font: "Microsoft YaHei", Inter, Arial, Helvetica, sans-serif;
}

body {
  background: var(--zm-bg);
}

.site-header,
.site-header.is-scrolled,
body:not(.home) .site-header {
  height: 77px;
  color: #fff;
  background: rgba(26, 26, 26, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 8px rgba(0, 0, 0, .2);
  backdrop-filter: blur(8px);
}

.site-header-inner {
  height: 77px;
  max-width: 1240px;
}

.site-brand {
  min-width: 160px;
  gap: 8px;
}

.site-brand-mark {
  width: 28px;
  border-radius: 4px;
  background: transparent;
}

.site-brand-title {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
}

.site-brand-sub {
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 600;
}

.main-navigation ul {
  gap: 56px;
}

.main-navigation a {
  min-height: 77px;
  color: currentColor;
  font-size: 13px;
  font-weight: 700;
}

.main-navigation a::after {
  height: 2px;
  background: #fff;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #fff;
}

.header-tools {
  min-width: 216px;
  gap: 18px;
}

.header-search input[type="search"],
.site-header.is-scrolled .header-search input[type="search"],
body:not(.home) .header-search input[type="search"],
body.zml-front-page-editor-content .header-search input[type="search"] {
  height: 26px;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  font-size: 12px;
}

.lang-switch {
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
}

.lang-switch span:last-child {
  color: var(--zm-red);
}

.home-page {
  background: var(--zm-bg);
}

.hero-product-led {
  min-height: 0;
  height: clamp(560px, 75vw, 830px);
  align-items: stretch;
  color: #fff;
  background: #222;
}

.hero-product-led .hero-media::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, .22)),
    linear-gradient(90deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .12));
}

.hero-product-led .hero-media img,
.hero-product-led .hero-media video {
  object-position: center bottom;
}

.hero-caption {
  position: absolute;
  left: 50%;
  bottom: 54px;
  z-index: 2;
  width: min(760px, calc(100vw - 56px));
  transform: translateX(-50%);
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .34);
  display: none;
}

.hero-caption p {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.hero-caption span {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 600;
}

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

.hero-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .56);
}

.hero-dots span.is-active {
  background: #fff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 68px;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, .28);
  transform: translateY(-50%);
}

.hero-arrow::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 14px;
  border: solid rgba(255, 255, 255, .8);
  border-width: 2px 2px 0 0;
}

.hero-arrow-left {
  left: 0;
}

.hero-arrow-left::before {
  transform: translate(-36%, -50%) rotate(-135deg);
}

.hero-arrow-right {
  right: 0;
}

.hero-arrow-right::before {
  transform: translate(-64%, -50%) rotate(45deg);
}

.home-series-showcase {
  background: #fff;
  padding: 14px 0 0;
}

.series-feature-card {
  position: relative;
  width: min(930px, calc(100vw - 64px));
  min-height: 410px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  overflow: hidden;
  color: #fff;
  background: #8f9ba8;
}

.series-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.series-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 24, 32, .44), rgba(18, 24, 32, .08) 48%, rgba(18, 24, 32, .18));
}

.series-feature-copy {
  position: absolute;
  top: 66px;
  left: 50%;
  z-index: 1;
  width: min(560px, calc(100% - 72px));
  transform: translateX(-50%);
  text-align: center;
}

.series-feature-copy h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.series-feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
}

.series-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  transform: translateY(-50%);
}

.series-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: solid rgba(255, 255, 255, .9);
  border-width: 1px 1px 0 0;
}

.series-nav-left {
  left: 34px;
}

.series-nav-left::before {
  transform: translate(-34%, -50%) rotate(-135deg);
}

.series-nav-right {
  right: 34px;
}

.series-nav-right::before {
  transform: translate(-66%, -50%) rotate(45deg);
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 2.04fr 1fr;
  gap: 8px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.showcase-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.showcase-tile {
  position: relative;
  min-height: 330px;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #d8d9da;
}

.showcase-tile-tall {
  min-height: 668px;
  background: #e5e9ed;
}

.showcase-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .45s ease;
}

.showcase-tile-tall img {
  object-fit: cover;
  object-position: 50% center;
  padding: 0;
}

.showcase-tile-tall:last-child img {
  object-position: 55% center;
}

.showcase-tile:hover img {
  transform: scale(1.035);
}

.showcase-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04) 34%, rgba(0, 0, 0, .58));
}

.showcase-tile.dark::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .12) 22%, rgba(0, 0, 0, .7));
}

.showcase-tile > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  z-index: 1;
}

.showcase-tile h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.showcase-tile p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.55;
}

.main-navigation li {
  position: relative;
}

.product-menu-item > a {
  gap: 7px;
}

.main-navigation .products-menu-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 77px;
  gap: 7px;
  border: 0;
  padding: 0;
  color: currentColor;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.main-navigation .products-menu-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-navigation .current-menu-item > .products-menu-button::after,
.main-navigation .products-menu-button:hover::after,
.main-navigation .products-menu-button:focus-visible::after {
  transform: scaleX(1);
}

.main-navigation .products-menu-button:focus-visible {
  outline: 0;
}

.product-menu-item > a::before,
.product-menu-item > .products-menu-button::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -3px;
  order: 2;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  opacity: .72;
}

.products-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 25;
  width: min(520px, calc(100vw - 72px));
  padding: 22px;
  color: #fff;
  background: rgba(24, 25, 27, .98);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .26);
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.product-menu-item:hover > .products-dropdown,
.product-menu-item:focus-within > .products-dropdown,
.product-menu-item.is-open > .products-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.products-dropdown__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.products-dropdown__intro span {
  color: var(--zm-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.products-dropdown__intro strong {
  max-width: 270px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}

.products-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.main-navigation .products-dropdown a {
  min-height: 0;
  color: #fff;
}

.main-navigation .products-dropdown a::after {
  display: none;
}

.products-dropdown__grid a {
  position: relative;
  display: block;
  align-items: center;
  min-height: 70px;
  padding: 15px 16px 14px 20px;
  background: rgba(255, 255, 255, .055);
  transition: background .18s ease, transform .18s ease;
}

.products-dropdown__grid a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--zm-red);
  opacity: .64;
}

.products-dropdown__grid a:hover {
  background: rgba(255, 255, 255, .11);
  transform: translateY(-1px);
}

.products-dropdown__grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.25;
}

.products-dropdown__grid small {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  line-height: 1.35;
}

.products-dropdown__all {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.products-dropdown__all::before {
  content: "";
  width: 26px;
  height: 1px;
  margin-right: 10px;
  background: var(--zm-red);
}

.hero-product-led {
  isolation: isolate;
}

.hero-product-led .hero-media::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, .02) 38%, rgba(0, 0, 0, .28)),
    linear-gradient(90deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .08));
}

.hero-product-led .hero-arrow,
.hero-product-led .hero-dots {
  display: none;
}

.hero-product-led .hero-caption {
  top: 28%;
  bottom: auto;
  left: max(34px, calc((100vw - 1180px) / 2));
  display: block;
  width: min(560px, calc(100vw - 68px));
  transform: none;
  text-align: left;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .38);
}

.hero-product-led .hero-caption p {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .98;
  text-transform: uppercase;
}

.hero-product-led .hero-caption span {
  display: block;
  max-width: 430px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.7;
}

.home-category-section {
  padding: 72px 0 86px;
  background: #fff;
}

.category-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--zm-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.category-section-head h1 {
  margin: 0;
  color: var(--zm-ink);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.08;
}

.category-section-head p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #66717c;
  font-size: 14px;
  line-height: 1.75;
}

.category-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 42px;
  padding: 0 24px;
  color: #fff;
  background: var(--zm-red);
  border: 1px solid var(--zm-red);
  font-size: 13px;
  font-weight: 800;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.category-view-all:hover {
  background: var(--zm-red-dark);
  border-color: var(--zm-red-dark);
  transform: translateY(-1px);
}

.category-card-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(252px, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 252px;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #222;
}

.category-card-feature {
  grid-row: span 2;
  min-height: 518px;
}

.category-card img,
.category-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .5s ease;
}

.category-card:hover img,
.category-card:hover video {
  transform: scale(1.035);
}

.category-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, .68)),
    linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .04));
}

.category-card-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.category-card-copy > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.category-card-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.08;
}

.category-card-copy p {
  max-width: 420px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.65;
}

.category-card-copy strong {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.category-card-copy strong::after {
  content: "";
  width: 24px;
  height: 1px;
  margin-left: 10px;
  background: var(--zm-red);
}

.category-section-foot {
  display: none;
  margin-top: 26px;
}

.section {
  padding: 92px 0;
}

.home-product-video {
  background: #fff;
}

.product-video-head {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}

.product-video-head .red-rule {
  margin: 22px auto 30px;
}

.product-video-head p {
  margin: 0;
  color: #66717c;
  font-size: 14px;
  line-height: 1.75;
}

.product-video-cta {
  margin-top: 26px;
}

.product-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.product-video-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plain-section-title {
  margin: 0;
  color: var(--zm-ink);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.18;
}

.company-section {
  background: #fff;
}

.company-grid {
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  gap: 86px;
}

.company-copy p {
  max-width: 620px;
  margin: 0 0 18px;
  color: #4b545e;
  font-size: 14px;
  line-height: 2;
}

.red-rule {
  width: 52px;
  height: 4px;
  margin: 24px 0 32px;
  background: var(--zm-red);
}

.text-link-arrow::after {
  content: ">";
  margin-left: 8px;
  color: var(--zm-red);
}

.company-video-frame {
  min-height: 330px;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  box-shadow: none;
}

.company-video-frame img {
  height: 100%;
  min-height: 0;
}

.play-badge {
  width: 86px;
  height: 86px;
  border-color: rgba(255, 255, 255, .9);
  background: rgba(0, 0, 0, .18);
}

.home-capability-strip {
  background: #f6f5f5;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

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

.home-capability-grid a {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px 28px;
  border-right: 1px solid #e3e3e3;
}

.home-capability-grid a:first-child {
  border-left: 1px solid #e3e3e3;
}

.home-capability-grid strong {
  color: var(--zm-red);
  font-size: 20px;
  line-height: 1;
}

.home-capability-grid span {
  color: #30363d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.news-section {
  background: #f6f5f5;
}

.section-header {
  margin-bottom: 54px;
}

.section-copy {
  max-width: 740px;
  margin: 18px auto 0;
  color: #6b737c;
  font-size: 14px;
  line-height: 1.8;
}

.news-grid {
  gap: 34px;
}

.news-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
}

.news-card img {
  aspect-ratio: 1.46;
}

.news-card-body {
  padding: 24px 24px 28px;
}

.news-card h3,
.news-card-title {
  color: #242b33;
  font-size: 17px;
}

.news-card p,
.news-card-copy {
  color: #656d76;
  font-size: 13px;
  line-height: 1.65;
}

.inquiry-band {
  background: #fff;
}

.inquiry-wrap {
  max-width: 1180px;
}

.inquiry-band .section-header {
  max-width: 680px;
  margin-bottom: 38px;
}

.zc-inquiry-form,
.inquiry-fallback {
  max-width: 1120px;
  margin: 0 auto;
}

.zc-inquiry-form input,
.zc-inquiry-form textarea,
.zc-inquiry-form select,
.inquiry-fallback input,
.inquiry-fallback textarea {
  min-height: 43px;
  border-color: #e6e6e6;
  border-radius: 0;
  color: #333;
  font-size: 13px;
}

.zc-inquiry-form textarea,
.inquiry-fallback textarea {
  min-height: 132px;
}

.zc-inquiry-form button,
.zc-inquiry-form input[type="submit"],
.inquiry-fallback button {
  min-width: 260px;
  min-height: 42px;
  border-radius: 999px;
  background: var(--zm-red);
  font-size: 13px;
}

.site-footer {
  background: #1a1a1a;
}

.footer-top {
  padding: 52px 0;
}

.footer-title {
  font-size: 14px;
}

.footer-list {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.8;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .62);
}

.floating-actions a,
.floating-actions button {
  border-radius: 6px;
  background: var(--zm-red);
}

@media (max-width: 1100px) {
  .main-navigation ul {
    gap: 28px;
  }

  .products-dropdown {
    width: min(680px, calc(100vw - 48px));
  }

  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(300px, auto);
  }

  .category-card-feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }

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

  .showcase-stack {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .showcase-tile-tall {
    min-height: 420px;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .download-focus-grid {
    grid-template-columns: 1fr;
  }

  .download-feature-card {
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled,
  body:not(.home) .site-header,
  .site-header-inner {
    height: 66px;
  }

  .site-header-inner {
    width: min(100vw - 32px, 1200px);
  }

  .mobile-toggle {
    border-radius: 0;
    background: rgba(255, 255, 255, .08);
  }

  .main-navigation {
    top: 66px;
    background: #1a1a1a;
    color: #fff;
  }

  .product-menu-item > a::before {
    margin-left: auto;
  }

  .product-menu-item > .products-menu-button::before {
    margin-left: auto;
  }

  .main-navigation .products-menu-button {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    color: #fff;
    font-size: 13px;
  }

  .products-dropdown {
    position: static;
    display: none;
    width: 100%;
    margin: 0 0 14px;
    padding: 14px;
    border-color: rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .055);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .main-navigation.is-open .product-menu-item.is-open > .products-dropdown,
  .main-navigation.is-open .product-menu-item:focus-within > .products-dropdown {
    display: block;
  }

  .products-dropdown__intro {
    align-items: flex-start;
  }

  .products-dropdown__intro strong {
    text-align: left;
  }

  .download-feature-card,
  .download-resource-grid {
    grid-template-columns: 1fr;
  }

  .download-feature-media {
    min-height: 280px;
  }

  .download-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .main-navigation a {
    min-height: 48px;
  }

  .hero-product-led {
    height: 640px;
  }

  .hero-product-led .hero-caption {
    top: 116px;
    left: 28px;
    width: min(440px, calc(100vw - 56px));
  }

  .hero-product-led .hero-caption p {
    font-size: clamp(32px, 8vw, 48px);
  }

  .category-section-head {
    display: block;
    margin-bottom: 26px;
  }

  .category-view-all-desktop {
    display: none;
  }

  .category-card-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .category-card,
  .category-card-feature {
    grid-column: auto;
    min-height: 340px;
  }

  .category-section-foot {
    display: block;
  }

  .series-feature-card {
    width: calc(100vw - 28px);
    min-height: 320px;
  }

  .series-feature-card img {
    min-height: 320px;
  }

  .product-showcase-grid,
  .showcase-stack,
  .home-capability-grid {
    grid-template-columns: 1fr;
  }

  .showcase-stack {
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-tile,
  .showcase-tile-tall {
    min-height: 340px;
  }

  .home-capability-grid a,
  .home-capability-grid a:first-child {
    min-height: 92px;
    border-left: 1px solid #e3e3e3;
  }
}

@media (max-width: 620px) {
  :root {
    --zm-container: min(100vw - 30px, 1180px);
  }

  .site-brand {
    min-width: auto;
  }

  .site-brand-mark {
    width: 28px;
  }

  .hero-product-led {
    height: 560px;
  }

  .hero-product-led .hero-caption {
    top: 104px;
    left: 20px;
    width: calc(100vw - 40px);
  }

  .hero-product-led .hero-caption p {
    max-width: 330px;
    margin-bottom: 14px;
    font-size: clamp(30px, 10vw, 40px);
  }

  .hero-product-led .hero-caption span {
    max-width: 310px;
    font-size: 12px;
    line-height: 1.65;
  }

  .hero-product-led .hero-media img {
    object-position: 61% bottom;
  }

  .hero-product-led .hero-media video {
    object-position: 58% center;
    transform: translateY(-3%) scale(1.16);
  }

  .hero-caption {
    bottom: 46px;
  }

  .hero-caption p {
    font-size: 23px;
  }

  .hero-caption span {
    display: block;
    font-size: 12px;
  }

  .hero-arrow {
    width: 34px;
    height: 54px;
  }

  .home-series-showcase {
    padding-top: 8px;
  }

  .home-category-section {
    padding: 52px 0 62px;
  }

  .category-section-head h1 {
    font-size: 30px;
  }

  .category-section-head p {
    font-size: 13px;
  }

  .category-card,
  .category-card-feature {
    min-height: 300px;
  }

  .category-card-copy {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .category-card-copy h2 {
    font-size: 23px;
  }

  .category-card-copy p {
    font-size: 12px;
  }

  .products-dropdown__grid {
    grid-template-columns: 1fr;
  }

  .products-dropdown__intro {
    display: block;
  }

  .products-dropdown__intro strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
  }

  .series-feature-copy {
    top: 34px;
  }

  .series-feature-copy h1 {
    font-size: 21px;
  }

  .series-feature-copy p {
    display: none;
  }

  .series-nav-left {
    left: 18px;
  }

  .series-nav-right {
    right: 18px;
  }

  .showcase-tile,
  .showcase-tile-tall {
    min-height: 300px;
  }

  .showcase-tile > div {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .showcase-tile h2 {
    font-size: 19px;
  }

  .section {
    padding: 64px 0;
  }

  .plain-section-title {
    font-size: 28px;
  }

  .company-copy p {
    font-size: 13px;
    line-height: 1.9;
  }

  .company-video-frame,
  .company-video-frame img {
    min-height: 0;
  }

  .home-capability-grid a {
    padding: 20px;
  }

  .news-grid {
    gap: 22px;
  }

  .zc-inquiry-form .zc-form-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  body.home .floating-actions {
    display: none;
  }
}

/* Mobile and desktop navigation polish */
@media (min-width: 861px) and (max-width: 1180px) {
  .site-header-inner {
    width: min(100vw - 48px, 1240px);
    gap: 18px;
  }

  .main-navigation ul {
    gap: 30px;
  }

  .header-tools {
    min-width: 188px;
  }

  .header-search {
    width: 124px;
  }

  .main-navigation .products-menu-button {
    white-space: nowrap;
  }
}

@media (max-width: 860px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header,
  .site-header.is-scrolled,
  body:not(.home) .site-header,
  .site-header-inner {
    height: 66px;
  }

  .site-header {
    background: rgba(24, 24, 24, .98);
  }

  .site-header-inner {
    width: min(100vw - 28px, 1200px);
    justify-content: flex-start;
    gap: 14px;
  }

  .site-brand {
    min-width: 0;
    max-width: calc(100% - 58px);
    flex: 0 1 auto;
  }

  .site-brand-mark {
    width: 30px;
    flex: 0 0 30px;
  }

  .site-brand-title {
    font-size: 15px;
  }

  .site-brand-sub {
    font-size: 8px;
  }

  .header-tools {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
  }

  .mobile-toggle span {
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    inset: 66px 0 auto;
    display: block;
    max-height: calc(100svh - 66px);
    padding: 0;
    overflow-y: auto;
    color: #fff;
    background: rgba(22, 22, 22, .985);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 26px 46px rgba(0, 0, 0, .28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  body.admin-bar .main-navigation {
    top: 112px;
    max-height: calc(100svh - 112px);
  }

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

  .main-navigation ul {
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 12px 16px 18px;
    display: grid;
    gap: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  .main-navigation li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .main-navigation li:last-child {
    border-bottom: 0;
  }

  .main-navigation a,
  .main-navigation .products-menu-button {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
  }

  .main-navigation a::after,
  .main-navigation .products-menu-button::after {
    display: none;
  }

  .product-menu-item > a::before,
  .product-menu-item > .products-menu-button::before {
    margin-left: auto;
    transition: transform .18s ease, margin .18s ease;
  }

  .product-menu-item.is-open > a::before,
  .product-menu-item.is-open > .products-menu-button::before {
    margin-top: 3px;
    transform: rotate(225deg);
  }

  .products-dropdown {
    position: static;
    display: none;
    width: 100%;
    max-width: none;
    margin: 0 0 14px;
    padding: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .main-navigation.is-open .product-menu-item:focus-within > .products-dropdown {
    display: none;
  }

  .main-navigation.is-open .product-menu-item.is-open > .products-dropdown {
    display: block;
    transform: none;
  }

  .products-dropdown__intro {
    display: grid;
    gap: 5px;
    align-items: start;
    margin-bottom: 12px;
  }

  .products-dropdown__intro strong {
    max-width: none;
    font-size: 16px;
    text-align: left;
  }

  .products-dropdown__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .products-dropdown__grid a {
    min-height: 56px;
    padding: 12px 14px 12px 18px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .065);
  }

  .products-dropdown__grid strong {
    margin-bottom: 3px;
  }

  .products-dropdown__all {
    width: 100%;
    min-height: 46px;
    margin-top: 8px;
  }
}
