:root {
  --geshem-green: #009040;
  --geshem-green-dark: #007838;
  --geshem-green-soft: #e5f4eb;
  --industrial-gray: #808080;
  --silver-gray: #a8a8a8;
  --titanium-black: #090b0d;
  --graphite: #15191d;
  --cool-silver: #d7dee3;
  --industrial-blue: #4e8fb8;
  --signal-amber: #d8a34a;
  --deep-black: #050505;
  --ink: #151817;
  --muted: #656b68;
  --page-white: #f7f8f8;
  --surface: #ffffff;
  --line-gray: #e5e7e7;
  --shadow: 0 24px 70px rgba(10, 18, 15, 0.09);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f7f8f8 0%, #f2f4f3 34%, #f7f8f8 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 78px;
  margin: 0;
  border-bottom: 1px solid rgba(215, 222, 227, 0.12);
  padding: 0 max(32px, calc((100vw - var(--max-width)) / 2));
  background: rgba(5, 7, 8, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 152px;
  max-height: 54px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.15) contrast(1.04);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  color: rgba(246, 249, 250, 0.84);
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--signal-amber);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button-primary {
  background: var(--geshem-green);
  color: #fff;
}

.button-primary:hover {
  background: var(--geshem-green-dark);
  transform: translateY(-1px);
}

.language-select {
  position: relative;
  justify-self: end;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(215, 222, 227, 0.18);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 249, 250, 0.92);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-trigger::before {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url("assets/images/globe-map-icon.svg") center / contain no-repeat;
  content: "";
}

.language-trigger::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.language-trigger span {
  line-height: 1;
}

.language-trigger:hover {
  border-color: rgba(216, 163, 74, 0.48);
  color: #fff;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: none;
  min-width: 190px;
  border: 1px solid rgba(215, 222, 227, 0.14);
  border-radius: 8px;
  padding: 8px;
  background: rgba(12, 15, 17, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.language-menu.is-open {
  display: grid;
}

.language-menu a {
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(246, 249, 250, 0.86);
  font-size: 14px;
  font-weight: 750;
}

.language-menu a:hover {
  background: rgba(216, 163, 74, 0.14);
  color: #fff;
}

.button-secondary {
  border-color: #cfd5d2;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--geshem-green);
  color: var(--geshem-green-dark);
}

.button-ai {
  border-color: #d6dcd9;
  background: #fff;
  color: var(--deep-black);
  box-shadow: inset 0 0 0 1px rgba(0, 144, 64, 0);
  cursor: pointer;
}

.button-ai::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--geshem-green);
  content: "";
}

.button-ai:hover {
  border-color: var(--geshem-green);
  color: var(--geshem-green-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 26px;
  width: min(100% - 40px, var(--max-width));
  min-height: 58vh;
  margin: 0 auto;
  padding: 38px 0 18px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--geshem-green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--deep-black);
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--deep-black);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--deep-black);
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.feature-copy p,
.about-content p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 350px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 104px 0;
}

.product-section {
  width: 100%;
}

.product-top-section {
  margin: 0 auto;
  padding: 0 0 104px;
}

.immersive-product-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  width: 100vw;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  padding: 84px max(32px, calc((100vw - 1280px) / 2)) 72px;
  background:
    radial-gradient(circle at 72% 34%, rgba(78, 143, 184, 0.32), transparent 28%),
    radial-gradient(circle at 86% 68%, rgba(216, 163, 74, 0.18), transparent 24%),
    linear-gradient(135deg, #050607 0%, #11161a 42%, #20252a 100%);
  color: #fff;
  cursor: pointer;
  isolation: isolate;
}

.immersive-product-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 22% 64%, rgba(255, 255, 255, 0.045)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 88px);
  content: "";
  opacity: 0.38;
}

.immersive-product-hero::after {
  position: absolute;
  inset: -22% -32%;
  z-index: -1;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, transparent 66%);
  content: "";
  transform: translateX(-44%) rotate(8deg);
  animation: heroLightSweep 8s ease-in-out infinite;
}

.immersive-product-bg span {
  position: absolute;
  border: 1px solid rgba(215, 222, 227, 0.14);
  border-radius: 999px;
  pointer-events: none;
}

.immersive-product-bg span:nth-child(1) {
  right: 9%;
  bottom: 10%;
  width: 560px;
  height: 560px;
  animation: heroOrbit 14s linear infinite;
}

.immersive-product-bg span:nth-child(2) {
  right: -120px;
  top: 10%;
  width: 360px;
  height: 360px;
  border-color: rgba(78, 143, 184, 0.2);
}

.immersive-product-bg span:nth-child(3) {
  left: 48%;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border-color: rgba(216, 163, 74, 0.16);
}

.immersive-product-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
  animation: heroCopyIn 760ms ease both;
}

.immersive-product-copy .eyebrow {
  color: #9bd8ff;
}

.immersive-product-copy h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.98;
}

.immersive-product-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(235, 241, 245, 0.78);
  font-size: 19px;
}

.immersive-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.immersive-product-meta span {
  min-height: 34px;
  border: 1px solid rgba(215, 222, 227, 0.22);
  border-radius: 999px;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 249, 250, 0.84);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.immersive-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.immersive-product-hero .button-primary {
  background: var(--signal-amber);
  color: #111;
}

.immersive-product-hero .button-primary:hover {
  background: #efbd64;
}

.immersive-product-hero .button-secondary,
.immersive-product-hero .button-ai {
  border-color: rgba(215, 222, 227, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
}

.immersive-product-hero .button-ai::before {
  background: #9bd8ff;
}

.immersive-product-media {
  position: relative;
  z-index: 2;
  min-height: 560px;
  animation: heroProductFloat 7s ease-in-out infinite;
}

.immersive-product-media::before {
  position: absolute;
  right: 10%;
  bottom: 6%;
  left: 10%;
  height: 26%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.58), transparent 68%);
  content: "";
  filter: blur(16px);
  transform: perspective(620px) rotateX(62deg);
}

.immersive-product-media img {
  position: absolute;
  right: -2%;
  bottom: 4%;
  width: min(790px, 100%);
  max-height: 86%;
  object-fit: contain;
  filter:
    drop-shadow(0 38px 48px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 24px rgba(78, 143, 184, 0.22));
  transform-origin: 55% 58%;
  animation: heroProductZoom 12s ease-in-out infinite;
}

.product-showcase {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: #090b0d;
}

.product-banner {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(215, 222, 227, 0.16);
  border-radius: 0;
  padding: 76px max(32px, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(circle at 78% 48%, rgba(78, 143, 184, 0.2), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(216, 163, 74, 0.12), transparent 24%),
    linear-gradient(135deg, #f9fbfb 0%, #e8edef 48%, #d5dde0 100%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-banner[data-banner-href] {
  cursor: pointer;
}

.product-banner[data-banner-href]:focus-visible {
  border-color: var(--geshem-green);
  box-shadow:
    0 0 0 4px rgba(0, 144, 64, 0.14),
    0 18px 52px rgba(10, 18, 15, 0.08);
  outline: none;
}

.product-banner-large {
  min-height: 620px;
}

.product-banner-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  align-self: start;
}

.product-banner-copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--geshem-green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-banner p,
.solution-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-banner h3 {
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.04;
}

.product-banner:hover {
  background:
    radial-gradient(circle at 78% 48%, rgba(78, 143, 184, 0.28), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(216, 163, 74, 0.16), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #eef3f4 48%, #dce4e7 100%);
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.mini-ai-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 22px;
  border: 1px solid rgba(0, 144, 64, 0.24);
  border-radius: 999px;
  padding: 0 13px;
  background: var(--geshem-green-soft);
  color: var(--geshem-green-dark);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mini-ai-button::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 7px;
  background: var(--geshem-green);
  content: "";
}

.mini-ai-button:hover {
  background: var(--geshem-green);
  color: #fff;
  transform: translateY(-1px);
}

.mini-ai-button:hover::before {
  background: #fff;
}

.product-banner-actions {
  position: absolute;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 56px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.banner-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(21, 24, 23, 0.13);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep-black);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.banner-action:hover {
  border-color: rgba(0, 144, 64, 0.38);
  color: var(--geshem-green-dark);
  transform: translateY(-1px);
}

.banner-action-primary {
  border-color: var(--industrial-blue);
  background: var(--graphite);
  color: #fff;
}

.banner-action-primary:hover {
  background: var(--industrial-blue);
  color: #fff;
}

.product-image-wrap {
  position: absolute;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 96px;
  z-index: 1;
  width: min(48vw, 640px);
  height: 62%;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.product-banner-large .product-image-wrap {
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 104px;
  width: min(52vw, 720px);
  height: 66%;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-banner:hover .product-image-wrap {
  filter: drop-shadow(0 16px 24px rgba(5, 5, 5, 0.14));
  transform: translateY(-5px) scale(1.018);
}

@keyframes heroLightSweep {
  0%,
  48% {
    transform: translateX(-48%) rotate(8deg);
    opacity: 0;
  }
  58% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(42%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes heroProductFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes heroProductZoom {
  0%,
  100% {
    transform: scale(1) translateX(0);
  }
  50% {
    transform: scale(1.045) translateX(-10px);
  }
}

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

@keyframes heroOrbit {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .immersive-product-hero::after,
  .immersive-product-copy,
  .immersive-product-media,
  .immersive-product-media img,
  .immersive-product-bg span:nth-child(1) {
    animation: none;
  }
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 40px;
  width: 100%;
  padding: 96px max(20px, calc((100vw - var(--max-width)) / 2));
  background: #111513;
  color: #fff;
}

.feature-band h2,
.feature-band .eyebrow {
  color: #fff;
}

.feature-band .eyebrow {
  color: #8ee0ad;
}

.feature-copy p {
  color: #c9d2ce;
}

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

.spec-list div,
.about-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.spec-list strong,
.about-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1.1;
}

.spec-list span,
.about-metrics span {
  color: #c9d2ce;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-gray);
  border-left: 1px solid var(--line-gray);
}

.solution-list article {
  min-height: 184px;
  border-right: 1px solid var(--line-gray);
  border-bottom: 1px solid var(--line-gray);
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
}

.solution-list .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.articles-section {
  border-top: 1px solid var(--line-gray);
}

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

.article-preview-grid article,
.article-list article,
.resource-grid article {
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.article-preview-grid span,
.article-list span,
.resource-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--geshem-green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-preview-grid p,
.article-list p,
.resource-grid p {
  color: var(--muted);
}

.article-preview-grid a:hover,
.article-list a:hover {
  color: var(--geshem-green-dark);
}

.section-link {
  display: inline-flex;
  margin-top: 24px;
}

.case-strip,
.about-section,
.contact-section,
.site-footer {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.case-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 76px 0;
  border-top: 1px solid var(--line-gray);
  border-bottom: 1px solid var(--line-gray);
}

.case-strip h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.text-link {
  color: var(--geshem-green-dark);
  font-weight: 800;
  white-space: nowrap;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  padding: 104px 0;
}

.about-metrics {
  display: grid;
  gap: 12px;
}

.about-metrics div {
  border-color: var(--line-gray);
  background: #fff;
}

.about-metrics strong {
  color: var(--deep-black);
}

.about-metrics span {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  padding: 96px 0 110px;
}

.contact-hero {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 94px 0 58px;
}

.contact-hero div {
  max-width: 820px;
}

.contact-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6.6vw, 78px);
}

.contact-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 18px;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.contact-info-panel,
.map-placeholder {
  min-height: 460px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  background: #fff;
}

.contact-info-panel {
  padding: 30px;
}

.contact-info-panel p {
  color: var(--muted);
}

.contact-info-panel dl {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
}

.contact-info-panel dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.contact-info-panel dd {
  margin: 0;
  color: var(--deep-black);
  font-weight: 750;
}

.map-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.76)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(0, 144, 64, 0.08) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(5, 5, 5, 0.06) 38px 39px),
    #eef2f0;
}

.map-placeholder::before,
.map-placeholder::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.map-placeholder::before {
  width: 330px;
  height: 330px;
  border: 1px solid rgba(0, 144, 64, 0.18);
}

.map-placeholder::after {
  width: 18px;
  height: 18px;
  background: var(--geshem-green);
  box-shadow: 0 0 0 10px rgba(0, 144, 64, 0.12);
}

.map-placeholder div {
  position: relative;
  z-index: 1;
  max-width: 410px;
  text-align: center;
}

.map-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--geshem-green);
  color: #fff;
  font-weight: 800;
}

.map-placeholder p {
  color: var(--muted);
}

.contact-page-form {
  padding-top: 84px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(10, 18, 15, 0.07);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #3e4642;
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9dedc;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfcfc;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--geshem-green);
  box-shadow: 0 0 0 4px rgba(0, 144, 64, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--geshem-green-dark);
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line-gray);
  color: var(--muted);
}

.footer-company {
  grid-column: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 860px;
  text-align: left;
}

.site-footer img {
  width: 75px;
  max-height: 32px;
  object-fit: contain;
  margin: 0;
}

.footer-text {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.site-footer p {
  margin: 0 0 6px;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

.site-footer a {
  color: inherit;
}

.footer-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--geshem-green-dark);
}

.placeholder-page {
  width: min(100% - 40px, 980px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 96px 0;
}

.placeholder-page h1 {
  margin-top: 34px;
}

.placeholder-page p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.product-category-page {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 34px 0 100px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--geshem-green-dark);
}

.category-hero {
  padding: 70px 0 42px;
}

.category-hero h1 {
  max-width: 880px;
}

.category-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.series-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line-gray);
  padding-bottom: 18px;
}

.series-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line-gray);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.series-nav a:hover,
.series-nav a.is-active {
  border-color: var(--geshem-green);
  background: var(--geshem-green);
  color: #fff;
}

.filter-panel,
.sample-product,
.category-placeholder {
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  margin-bottom: 18px;
}

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

.filter-panel > h2,
.filter-panel > .filter-grid {
  display: none;
}

.dynamic-filter-panel {
  display: grid;
  gap: 14px;
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.dynamic-filter-panel > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-options a,
.filter-clear {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line-gray);
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  color: var(--deep-black);
  font-size: 13px;
  font-weight: 800;
}

.filter-options a.is-active,
.filter-options a:hover,
.filter-clear:hover {
  border-color: var(--geshem-green);
  background: rgba(0, 144, 64, 0.08);
  color: var(--geshem-green-dark);
}

.filter-grid div {
  border-radius: 8px;
  padding: 18px;
  background: var(--page-white);
}

.filter-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep-black);
}

.filter-grid span,
.sample-product p,
.category-placeholder p {
  color: var(--muted);
}

.sample-product article {
  border-left: 4px solid var(--geshem-green);
  padding-left: 18px;
}

.category-products {
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}

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

.category-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.category-section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

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

.category-product-card {
  display: grid;
  grid-template-rows: 260px 1fr auto;
  min-height: 540px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  overflow: hidden;
  background: var(--page-white);
}

.category-product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
  background: #fff;
}

.category-product-media img,
.category-product-card > img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  mix-blend-mode: multiply;
}

.category-product-card > div {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: var(--page-white);
}

.category-product-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--geshem-green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-product-card h3 {
  font-size: 22px;
}

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

.category-product-meta {
  margin-top: 10px;
  font-size: 13px;
}

.category-empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line-gray);
  border-radius: 8px;
  padding: 26px;
  color: var(--muted);
  text-align: center;
}

.category-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  padding-top: 0 !important;
}

.category-card-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line-gray);
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.category-card-actions a:hover {
  border-color: var(--geshem-green);
  color: var(--geshem-green-dark);
}

.resource-page,
.article-page {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 34px 0 100px;
}

.resource-hero {
  max-width: 900px;
  padding: 70px 0 44px;
}

.resource-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

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

.resource-grid article {
  min-height: 260px;
}

.resource-grid h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.download-panel {
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

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

.download-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.54fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 18px;
  background: var(--page-white);
}

.download-list strong {
  color: var(--deep-black);
}

.download-list span {
  color: var(--muted);
}

.download-list a {
  justify-self: end;
  color: var(--geshem-green-dark);
  font-weight: 800;
  white-space: nowrap;
}

.video-entry-section {
  padding-top: 88px;
}

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

.video-entry-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.video-entry-card span {
  color: var(--geshem-green-dark);
  font-size: 13px;
  font-weight: 900;
}

.video-entry-card strong {
  color: var(--deep-black);
  font-size: 22px;
  line-height: 1.2;
}

.video-entry-card em {
  align-self: end;
  color: var(--muted);
  font-style: normal;
}

.video-entry-card:hover {
  border-color: var(--geshem-green);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.video-library-section {
  margin-bottom: 18px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

.video-placeholder-card {
  display: grid;
  grid-template-rows: 210px auto auto;
  gap: 12px;
  min-height: 350px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 14px;
  background: var(--page-white);
}

.video-placeholder-thumb,
.video-placeholder-card video {
  width: 100%;
  height: 210px;
  border: 0;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(0, 144, 64, 0.18), rgba(17, 21, 19, 0.88)),
    var(--deep-black);
}

.video-placeholder-thumb {
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
}

.video-placeholder-thumb::before {
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.video-placeholder-thumb::after {
  content: "";
  position: absolute;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--geshem-green-dark);
  transform: translateX(3px);
}

.video-placeholder-thumb span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.video-placeholder-card h3 {
  margin: 0;
  font-size: 20px;
}

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

.video-placeholder-card.is-waiting p::after {
  content: "，请先上传视频并填写 data-video-src。";
  color: var(--geshem-green-dark);
  font-weight: 800;
}

.category-video-reference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 144, 64, 0.2);
  border-radius: 8px;
  padding: 28px;
  background: var(--geshem-green-soft);
}

.category-video-reference h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.category-video-reference p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.article-list {
  grid-template-columns: 1fr;
}

.article-list article {
  padding: 28px;
}

.article-list h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.article-page article {
  max-width: 860px;
  margin: 54px auto 0;
}

.article-page h1 {
  font-size: clamp(38px, 5.6vw, 68px);
}

.article-page h2 {
  margin-top: 42px;
  font-size: clamp(26px, 3vw, 36px);
}

.article-page p {
  color: var(--muted);
  font-size: 18px;
}

.article-page .article-lede {
  color: #333b38;
  font-size: 20px;
}

.article-page .button {
  margin-top: 28px;
}

.product-detail-page {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 34px 0 100px;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 40px;
  align-items: center;
  padding: 62px 0 46px;
}

.product-detail-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

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

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(231, 236, 233, 0.9) 58%, rgba(214, 222, 218, 0.8)),
    #eef1ef;
}

.product-detail-media img {
  width: min(100%, 520px);
  max-height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

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

.product-gallery-slot {
  display: grid;
  grid-template-rows: 150px auto;
  min-height: 196px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  overflow: hidden;
  background: var(--page-white);
}

.product-gallery-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: #fff;
  mix-blend-mode: multiply;
}

.product-gallery-slot figcaption {
  border-top: 1px solid var(--line-gray);
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.product-gallery-slot.is-empty {
  display: none;
}

.product-gallery-slot.is-empty span,
.product-gallery-slot.is-empty em {
  display: block;
}

.product-gallery-slot.is-empty span {
  color: var(--deep-black);
  font-weight: 900;
}

.product-gallery-slot.is-empty em {
  font-style: normal;
  font-size: 13px;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.detail-highlights div {
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.detail-highlights strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-black);
  font-size: 24px;
  line-height: 1.12;
}

.detail-highlights span {
  color: var(--muted);
}

.detail-section {
  margin-top: 18px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

.detail-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 34px;
}

.detail-two-column h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 44px);
}

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

.detail-list article {
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 20px;
  background: var(--page-white);
}

.detail-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.spec-table {
  display: grid;
  border-top: 1px solid var(--line-gray);
  border-left: 1px solid var(--line-gray);
}

.spec-groups {
  display: grid;
  gap: 22px;
}

.spec-group {
  display: grid;
  gap: 10px;
}

.spec-group h3 {
  margin: 0;
  color: var(--geshem-green-dark);
  font-size: 18px;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  min-height: 54px;
}

.spec-table-paired div {
  grid-template-columns: minmax(118px, 0.18fr) minmax(0, 0.32fr) minmax(118px, 0.18fr) minmax(0, 0.32fr);
}

.spec-table strong,
.spec-table span {
  border-right: 1px solid var(--line-gray);
  border-bottom: 1px solid var(--line-gray);
  padding: 14px 16px;
}

.spec-table strong {
  background: var(--page-white);
  color: var(--deep-black);
}

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

.spec-empty {
  background: #fff !important;
}

.detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  border-radius: 8px;
  padding: 34px;
  background: #111513;
  color: #fff;
}

.detail-cta h2,
.detail-cta .eyebrow {
  color: #fff;
}

.detail-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.detail-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: #c9d2ce;
}

.ai-advisor {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ai-advisor.is-open {
  display: flex;
}

.ai-advisor-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.42);
  backdrop-filter: blur(10px);
}

.ai-advisor-dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(5, 5, 5, 0.25);
}

.ai-advisor-dialog h2 {
  margin-bottom: 12px;
}

.ai-advisor-dialog > p {
  color: var(--muted);
}

.ai-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-gray);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

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

.ai-form label {
  display: grid;
  gap: 8px;
  color: #3e4642;
  font-size: 14px;
  font-weight: 750;
}

.ai-form select,
.ai-form textarea {
  width: 100%;
  border: 1px solid #d9dedc;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfcfc;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.ai-form select:focus,
.ai-form textarea:focus {
  border-color: var(--geshem-green);
  box-shadow: 0 0 0 4px rgba(0, 144, 64, 0.12);
}

.ai-result {
  display: none;
  margin-top: 18px;
  border: 1px solid rgba(0, 144, 64, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: var(--geshem-green-soft);
}

.ai-result.is-visible {
  display: block;
}

.ai-result strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep-black);
}

.ai-result p {
  margin-bottom: 12px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .site-nav {
    position: fixed;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line-gray);
    border-radius: 8px;
    padding: 12px;
    background: rgba(9, 11, 13, 0.98);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .language-select {
    display: none;
  }

  .hero,
  .immersive-product-hero,
  .feature-band,
  .about-section,
  .contact-section,
  .contact-page-grid,
  .product-detail-hero,
  .detail-two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .immersive-product-hero {
    min-height: auto;
    padding: 64px 28px 52px;
  }

  .immersive-product-copy {
    max-width: 760px;
  }

  .immersive-product-media {
    min-height: 420px;
    margin-top: 16px;
  }

  .immersive-product-media img {
    right: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
  }

  .hero-media {
    min-height: 340px;
  }

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

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

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

  .article-preview-grid,
  .resource-grid,
  .video-entry-grid,
  .video-placeholder-grid {
    grid-template-columns: 1fr;
  }

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

  .download-list a {
    justify-self: start;
  }

  .product-banner,
  .product-banner-large {
    min-height: auto;
    padding: 52px 28px 34px;
  }

  .product-banner-copy {
    max-width: 680px;
  }

  .product-image-wrap,
  .product-banner-large .product-image-wrap {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 320px;
    margin-top: 28px;
    margin-bottom: 84px;
  }

  .product-banner-actions {
    right: 28px;
    bottom: 28px;
    left: 28px;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section,
  .case-strip,
  .about-section,
  .contact-section,
  .contact-hero,
  .contact-page-grid,
  .product-detail-page,
  .resource-page,
  .article-page,
  .site-footer {
    width: min(100% - 28px, var(--max-width));
  }

  .brand img {
    width: 148px;
  }

  .language-trigger {
    width: 44px;
    padding: 0;
  }

  .language-trigger span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .language-trigger::before {
    margin-right: 0;
  }

  .language-trigger::after {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .immersive-product-copy h1 {
    font-size: 44px;
  }

  .immersive-product-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .immersive-product-actions {
    align-items: stretch;
  }

  .immersive-product-actions .button {
    flex: 1 1 100%;
  }

  .immersive-product-media {
    min-height: 300px;
  }

  .dynamic-filter-panel > div {
    grid-template-columns: 1fr;
  }

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

  .hero-lede,
  .section-heading p,
  .feature-copy p,
  .about-content p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-media {
    min-height: 260px;
  }

  .section,
  .about-section,
  .contact-section {
    padding: 74px 0;
  }

  .feature-band {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .solution-list,
  .spec-list,
  .detail-highlights,
  .article-preview-grid,
  .resource-grid,
  .video-entry-grid,
  .video-placeholder-grid,
  .contact-form,
  .ai-form {
    grid-template-columns: 1fr;
  }

  .category-video-reference {
    display: grid;
  }

  .product-detail-hero {
    padding-top: 46px;
  }

  .product-detail-media {
    min-height: 300px;
    padding: 24px;
  }

  .detail-section,
  .detail-cta {
    padding: 22px;
  }

  .detail-cta {
    display: grid;
  }

  .spec-table div {
    grid-template-columns: 1fr;
  }

  .product-banner,
  .product-banner-large {
    padding: 42px 20px 28px;
  }

  .product-banner h3 {
    font-size: 38px;
  }

  .product-image-wrap,
  .product-banner-large .product-image-wrap {
    right: auto;
    bottom: auto;
    width: 100%;
    height: 230px;
    margin-bottom: 124px;
  }

  .product-banner-actions {
    right: 20px;
    bottom: 24px;
    left: 20px;
    justify-content: flex-start;
  }

  .case-strip,
  .site-footer {
    display: grid;
    align-items: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-company,
  .footer-links {
    grid-column: 1;
  }

  .footer-company {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
