:root {
  --color-white: #ffffff;
  --color-porcelain: #f7f8f6;
  --color-line: #e3e6e4;
  --color-ink: #14191d;
  --color-muted: #6d767d;
  --color-soft: #eef2f0;
  --color-copper: #ad7a44;
  --color-teal: #2f6f73;
  --shadow-soft: 0 24px 70px rgba(22, 28, 32, 0.08);
  --header-height: 76px;
  --section-y: clamp(44px, 4.8vw, 64px);
  --section-gap: 24px;
  --grid-gap: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  max-width: 100%;
  overflow-x: hidden;
  background: var(--color-white);
  color: var(--color-ink);
  font-family:
    Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

			.index-icon {
				position: fixed;
				right: 20px;
				top: 50%;
				transform: translateY(-50%);
				z-index: 1002;
				display: flex;
				flex-direction: column;
				gap: 16px;
			}

			.contact-icon1 {
				width: 40px;
				height: 40px;
				border-radius: 50%;
				background: white;
				border: 1px solid #e0e0e0;
				box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
				display: flex;
				align-items: center;
				justify-content: center;
				cursor: pointer;
				transition: transform 0.2s;
			}

			.contact-icon1:hover {
				transform: scale(1.1);
			}

 
			.contact-icon1 img {
				width: 24px;
				height: 24px;
				display: block;
				object-fit: contain;
			}






 
			.bubble {
				position: fixed;
				top: 50%;
				left: 50%;
				transform: translate(-20%, -30%);
				width: 280px;
 
				padding: 20px;
				background: white;
				border-radius: 12px;
				box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
				z-index: 1001;
				display: none;
				opacity: 0;
				transition: opacity 0.3s ease;
			}

			.bubble.show {
				display: block;
				opacity: 1;
			}

 
			.bubble::before {
				display: none !important;
			}

	 
			.static-info {
				font-size: 14px;
				line-height: 1.5;
				color: #333;
			}

			.bubble-form label {
				display: block;
				font-size: 13px;
				margin-top: 12px;
				color: #444;
			}

			.bubble-form input,
			.bubble-form textarea {
				width: 100%;
				padding: 8px 10px;
				margin-top: 4px;
				border: 1px solid #ccc;
				border-radius: 6px;
				font-size: 13px;
				box-sizing: border-box;
			}

			.bubble-form textarea {
				height: 70px;
				resize: vertical;
			}

			.bubble-form button {
				margin-top: 16px;
				width: 100%;
				padding: 8px;
				background-color: #25d366;
				color: white;
				border: none;
				border-radius: 6px;
				cursor: pointer;
				font-size: 14px;
				font-weight: bold;
			}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(227, 230, 228, 0.8);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(20, 25, 29, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.site-header .brand {
  gap: 0;
  min-width: 78px;
}

.footer-brand .brand {
  gap: 0;
  min-width: 78px;
}

.site-header .brand-copy {
  display: none;
}

.footer-brand .brand-copy {
  display: none;
}

.brand-mark {
  flex: 0 0 78px;
  width: 78px;
  height: 52px;
  background: url("assets/logo.png") center / contain no-repeat;
}

.brand-logo {
  display: block;
  width: 78px;
  max-width: 78px;
  height: 52px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--color-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: #384147;
  font-size: 14px;
}

.site-nav > a,
.nav-item > a {
  position: relative;
  padding: 26px 0;
}

.site-nav > a::after,
.nav-item > a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--color-copper);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.product-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 30;
  width: min(680px, 86vw);
  padding: 12px;
  border: 1px solid rgba(227, 230, 228, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 80px rgba(20, 25, 29, 0.12);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(18px);
}

.nav-item:hover .product-dropdown,
.nav-item:focus-within .product-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.product-dropdown a {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  min-height: 70px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.product-dropdown a:hover,
.product-dropdown a:focus-visible {
  border-color: rgba(173, 122, 68, 0.22);
  background: rgba(247, 248, 246, 0.86);
  transform: translateY(-1px);
}

.product-dropdown a::after {
  display: none;
}

.product-dropdown span {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(173, 122, 68, 0.24);
  border-radius: 50%;
  color: var(--color-copper);
  font-size: 12px;
  font-weight: 700;
}

.product-dropdown strong {
  color: var(--color-ink);
  font-size: 14px;
  line-height: 1.2;
}

.product-dropdown small {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.3;
}

.product-category-dropdown {
  width: min(720px, 86vw);
}

.nav-cta,
.lang-btn,
.button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-cta,
.lang-btn {
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 14px;
  background: var(--color-white);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.lang-btn:hover,
.lang-btn:focus-visible {
  border-color: rgba(173, 122, 68, 0.42);
  box-shadow: 0 10px 30px rgba(173, 122, 68, 0.12);
  transform: translateY(-1px);
}

.nav-cta svg,
.lang-btn svg,
.button svg,
.menu-button svg,
.hero-slider-arrow svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}

.lang-wrapper {
  position: relative;
  z-index: 30;
}

.lang-btn {
  font-family: inherit;
}

.lang-btn-caret {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.lang-wrapper.is-open .lang-btn-caret {
  transform: rotate(180deg);
}

.lang-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 4px;
  width: min(360px, 86vw);
  max-height: 360px;
  margin: 0;
  padding: 10px;
  overflow-y: auto;
  list-style: none;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(17, 30, 34, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.lang-wrapper.is-open .lang-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--color-ink);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.lang-option:hover,
.lang-option:focus-visible {
  color: var(--color-copper);
  background: rgba(173, 122, 68, 0.1);
}

.lang-flag {
  flex: 0 0 auto;
  width: 28px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(17, 30, 34, 0.08);
}

.lang-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  background: var(--color-white);
  cursor: pointer;
}

.menu-button::before {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 -6px 0 currentColor,
    0 6px 0 currentColor;
  content: "";
}

.menu-button svg {
  display: none;
}

.menu-button i[data-lucide="menu"] {
  display: none;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 -6px 0 currentColor,
    0 6px 0 currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-porcelain);
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-shell {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: calc(100% - 48px);
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 clamp(20px, 4vw, 36px);
  pointer-events: none;
}

.hero-content {
  width: auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: var(--color-white);
  pointer-events: auto;
}

.hero-content h1 {
  color: var(--color-white);
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.03;
  font-weight: 650;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  display: block;
}

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

.hero-slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.hero-slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(24, 32, 36, 0.16);
  border-radius: 50%;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  border-color: rgba(177, 104, 47, 0.42);
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-1px);
}

.hero-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
}

.hero-slider-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 32, 36, 0.28);
  cursor: pointer;
  transition:
    background 180ms ease,
    opacity 180ms ease;
}

.hero-slider-dots button:hover,
.hero-slider-dots button:focus-visible {
  background: rgba(24, 32, 36, 0.48);
}

.hero-slider-dots button.is-active {
  background: var(--color-copper);
}

.hero-content h1,
.hero-visual-image img {
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.hero.is-banner-changing .hero-content h1 {
  opacity: 0;
  transform: translateY(6px);
}

.hero.is-banner-changing .hero-visual-image img {
  opacity: 0;
  transform: scale(1.04);
}

.hero-visual {
  position: relative;
  z-index: 0;
  pointer-events: none;
}

.hero-visual::before,
.hero-visual::after {
  display: none;
}

.hero-visual-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--color-porcelain);
  box-shadow: none;
  transform: none;
}

.hero-visual-image img {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 650;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--color-white);
  background: #182024;
  box-shadow: 0 18px 36px rgba(20, 25, 29, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #0f1518;
  box-shadow: 0 24px 48px rgba(20, 25, 29, 0.24);
}

.button-secondary {
  color: #1f282e;
  border-color: rgba(20, 25, 29, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(173, 122, 68, 0.4);
  background: var(--color-white);
  box-shadow: 0 20px 42px rgba(20, 25, 29, 0.08);
}

.section {
  width: calc(100% - 48px);
  max-width: 1380px;
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(280px, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-bottom: var(--section-gap);
}

.section-heading h2,
.company-content h2,
.custom-content h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 620;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 16px;
}

.product-section {
  padding-top: var(--section-y);
}

.product-category-filter {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -4px 0 24px;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 246, 0.84)),
    var(--color-white);
  box-shadow: 0 16px 48px rgba(20, 25, 29, 0.04);
}

.category-filter-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.category-filter-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: min(320px, 100%);
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(20, 25, 29, 0.14);
  border-radius: 999px;
  color: var(--color-ink);
  background: var(--color-white);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.category-filter-trigger:hover,
.category-filter-trigger:focus-visible,
.category-filter-trigger[aria-expanded="true"] {
  border-color: rgba(173, 122, 68, 0.42);
  box-shadow: 0 16px 34px rgba(20, 25, 29, 0.08);
}

.category-filter-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.category-filter-trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--color-copper);
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.category-filter-trigger span {
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: left;
}

.category-filter-summary {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.category-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: min(960px, 100%);
  max-height: min(70vh, 580px);
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(227, 230, 228, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(20, 25, 29, 0.14);
  backdrop-filter: blur(18px);
}

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

.category-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.category-group {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(227, 230, 228, 0.92);
  border-radius: 8px;
  background: rgba(247, 248, 246, 0.62);
}

.category-group h3 {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 14px;
  line-height: 1.25;
}

.category-option {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #4d575f;
  background: transparent;
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.category-option + .category-option {
  margin-top: 4px;
}

.category-option:hover,
.category-option:focus-visible,
.category-option.is-active {
  border-color: rgba(173, 122, 68, 0.28);
  color: var(--color-ink);
  background: var(--color-white);
}

.category-option.is-active {
  box-shadow: inset 3px 0 0 var(--color-copper);
}

.category-option-all {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 40px;
  padding: 8px 14px;
  border-color: rgba(20, 25, 29, 0.12);
  border-radius: 999px;
  font-weight: 650;
}

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

.product-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 16px 54px rgba(20, 25, 29, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(173, 122, 68, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: clamp(14px, 2vw, 22px);
  background: var(--color-white);
}

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

.product-list-grid .product-card-body {
  padding: 18px 20px 22px;
}

.product-list-grid .product-card-body span,
.product-list-grid .product-card-body p {
  display: none;
}

.product-list-grid .product-card h3 {
  margin: 0;
}

.product-card-body span {
  color: var(--color-copper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 8px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.product-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.product-filter-empty {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 14px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px dashed rgba(173, 122, 68, 0.42);
  border-radius: 8px;
  background: rgba(247, 248, 246, 0.74);
}

.product-filter-empty[hidden] {
  display: none;
}

.product-filter-empty h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.16;
}

.product-filter-empty p {
  max-width: 720px;
  margin: 0;
  color: var(--color-muted);
}

.product-list-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.product-list-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  max-height: calc(100vh - var(--header-height) - 44px);
  overflow-y: auto;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 246, 0.84)),
    var(--color-white);
  box-shadow: 0 18px 54px rgba(20, 25, 29, 0.05);
  scrollbar-width: thin;
}

.product-list-sidebar-head {
  margin-bottom: 16px;
}

.product-list-sidebar-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

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

.product-list-group {
  display: grid;
  gap: 8px;
  scroll-margin-top: calc(var(--header-height) + 18px);
  min-width: 0;
  border: 1px solid rgba(227, 230, 228, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.product-list-group-toggle {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 12px;
  border: 0;
  color: var(--color-ink);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: left;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.product-list-group-toggle:hover,
.product-list-group-toggle:focus-visible,
.product-list-group-toggle[aria-expanded="true"] {
  background: rgba(247, 248, 246, 0.88);
}

.product-list-group-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(173, 122, 68, 0.24);
  border-radius: 50%;
  color: var(--color-copper);
  font-size: 12px;
  font-weight: 700;
}

.product-list-group-toggle strong {
  min-width: 0;
  font-size: 14px;
  line-height: 1.25;
}

.product-list-group-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--color-copper);
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.product-list-group-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.product-list-subcategories {
  display: grid;
  gap: 4px;
  padding: 0 10px 12px 46px;
}

.product-list-subcategories[hidden] {
  display: none;
}

.product-list-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #4d575f;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: left;
  line-height: 1.35;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.product-list-option:hover,
.product-list-option:focus-visible,
.product-list-option.is-active {
  border-color: rgba(173, 122, 68, 0.28);
  color: var(--color-ink);
  background: var(--color-white);
}

.product-list-option.is-active {
  box-shadow: inset 3px 0 0 var(--color-copper);
}

.product-list-reset {
  justify-self: end;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(20, 25, 29, 0.12);
  border-radius: 999px;
  color: var(--color-ink);
  background: var(--color-white);
  cursor: pointer;
  font-weight: 650;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-list-reset:hover,
.product-list-reset:focus-visible,
.product-list-reset.is-active {
  border-color: rgba(173, 122, 68, 0.4);
  box-shadow: 0 14px 32px rgba(20, 25, 29, 0.08);
}

.product-list-option-all {
  min-height: 42px;
  border-color: rgba(20, 25, 29, 0.12);
  font-weight: 650;
}

.product-list-main {
  display: grid;
  gap: 16px; 
  overflow-y: auto;
  min-width: 0;
  overscroll-behavior: auto;
  scrollbar-width: none;
}

.product-list-main::-webkit-scrollbar {
  display: none;
}

.product-list-toolbar {
  position: sticky;
  top: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 240, 0.76)),
    var(--color-white);
}

.product-list-toolbar h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
}

.product-list-toolbar p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  text-align: right;
}

.product-list-main .product-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-list-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
}

.product-list-pagination[hidden] {
  display: none;
}

.product-list-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(20, 25, 29, 0.12);
  border-radius: 50%;
  color: var(--color-ink);
  background: var(--color-white);
  cursor: pointer;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.product-list-page:hover,
.product-list-page:focus-visible,
.product-list-page.is-active {
  border-color: rgba(173, 122, 68, 0.42);
  color: var(--color-copper);
  box-shadow: 0 14px 32px rgba(20, 25, 29, 0.08);
  transform: translateY(-1px);
}

.product-list-page.is-active {
  color: var(--color-white);
  background: var(--color-copper);
}

.product-list-empty {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px dashed rgba(173, 122, 68, 0.42);
  border-radius: 8px;
  background: rgba(247, 248, 246, 0.74);
}

.product-list-empty[hidden] {
  display: none;
}

.product-list-empty h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.16;
}

.product-list-empty p {
  max-width: 720px;
  margin: 0;
  color: var(--color-muted);
}

.home-product-showcase {
  display: grid;
  gap: var(--grid-gap);
}

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

.home-product-item {
  display: grid;
  grid-template-rows: auto 1fr;
}

.home-product-grid .product-card:hover {
  border-color: var(--color-line);
  box-shadow: 0 16px 54px rgba(20, 25, 29, 0.04);
  transform: none;
}

.home-product-carousel {
  display: grid;
  gap: var(--grid-gap);
}

.home-product-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-product-viewport::-webkit-scrollbar {
  display: none;
}

.home-product-track {
  display: flex;
  grid-template-columns: none;
  gap: var(--grid-gap);
}

.home-product-slide {
  flex: 0 0 calc((100% - (var(--grid-gap) * 3)) / 4);
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  scroll-snap-align: start;
}

.home-product-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  justify-self: end;
}

.home-product-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-ink);
  background: var(--color-white);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.home-product-arrow:hover,
.home-product-arrow:focus-visible {
  border-color: rgba(173, 122, 68, 0.42);
  color: var(--color-copper);
  transform: translateY(-1px);
}

.home-product-arrow:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.home-product-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.home-product-counter {
  min-width: 66px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 246, 0.84)),
    var(--color-white);
  box-shadow: 0 20px 60px rgba(20, 25, 29, 0.05);
  overflow: hidden;
}

.capability-strip div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--color-line);
}

.capability-strip div:last-child {
  border-right: 0;
}

.capability-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-copper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.capability-strip strong {
  color: #182024;
  font-size: 18px;
  line-height: 1.35;
}

.product-module {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(420px, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 246, 0.82)),
    var(--color-white);
  box-shadow: 0 22px 70px rgba(20, 25, 29, 0.05);
}

.module-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.module-copy p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
}

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

.module-grid div {
  display: grid;
  gap: 8px;
  min-height: 152px;
  padding: 22px;
  border: 1px solid rgba(227, 230, 228, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.module-grid svg {
  width: 22px;
  height: 22px;
  color: var(--color-teal);
  stroke-width: 1.7;
}

.module-grid span {
  color: var(--color-copper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.module-grid strong {
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.35;
}

.company-section {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  min-height: clamp(520px, 72vh, 760px);
  padding: 0;
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
}

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

.company-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 25, 29, 0.72), rgba(20, 25, 29, 0.44) 45%, rgba(20, 25, 29, 0.7)),
    linear-gradient(180deg, rgba(20, 25, 29, 0.2), rgba(20, 25, 29, 0.58));
  content: "";
}

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

.company-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(860px, calc(100% - 48px));
  max-width: 860px;
  padding: clamp(68px, 9vw, 112px) 0;
  text-align: center;
}

.company-content .eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.company-content h2 {
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: clamp(36px, 5.2vw, 66px);
  text-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
}

.company-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.company-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 24px;
}

.company-points div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  backdrop-filter: blur(10px);
}

.company-points svg {
  width: 22px;
  height: 22px;
  color: var(--color-copper);
  stroke-width: 1.7;
}

.applications-section {
  padding-bottom: var(--section-y);
}

.section-heading-wide {
  grid-template-columns: minmax(220px, 0.44fr) minmax(280px, 1fr);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.application-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 8px;
  background: #dfe4e3;
  color: var(--color-white);
  isolation: isolate;
}

.application-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 25, 29, 0.02), rgba(20, 25, 29, 0.7)),
    linear-gradient(90deg, rgba(20, 25, 29, 0.34), transparent);
  content: "";
}

.application-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.application-card:hover img {
  transform: scale(1.045);
}

.application-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.application-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.application-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.18;
}

.application-card p {
  max-width: 280px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  padding: var(--section-y) max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(115deg, rgba(247, 248, 246, 0.98), rgba(255, 255, 255, 0.9)),
    var(--color-porcelain);
  border-top: 1px solid var(--color-line);
}

.contact-form-section {
  grid-template-columns: minmax(0, 960px);
  justify-content: center;
}

.custom-content {
  max-width: 650px;
}

.custom-content h2 {
  margin-bottom: 18px;
}

.custom-content > p {
  margin-bottom: 28px;
  color: #4d575f;
  font-size: 17px;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-bottom: 28px;
}

.contact-support-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(20, 25, 29, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(20, 25, 29, 0.04);
}

.contact-support-card svg {
  width: 22px;
  height: 22px;
  margin-bottom: 14px;
  color: var(--color-teal);
  stroke-width: 1.7;
}

.contact-support-card span {
  display: block;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
}

.contact-support-card p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(20, 25, 29, 0.12);
}

.process-list div {
  display: grid;
  grid-template-columns: 52px 150px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(20, 25, 29, 0.12);
}

.process-list span {
  color: var(--color-copper);
  font-weight: 700;
}

.process-list strong {
  font-size: 18px;
  line-height: 1.35;
}

.process-list p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.custom-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(20, 25, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.contact-form-section .contact-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.home-contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.contact-form-section .form-heading,
.contact-form-section .form-field-wide,
.contact-form-section .contact-captcha-row,
.contact-form-section .form-button,
.contact-form-section .form-note,
.home-contact-form .form-heading,
.home-contact-form .form-field-wide,
.home-contact-form .contact-captcha-row,
.home-contact-form .form-button,
.home-contact-form .form-note {
  grid-column: 1 / -1;
}

.form-heading {
  margin-bottom: 6px;
}

.form-heading h3 {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.18;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.custom-form label {
  display: grid;
  gap: 7px;
}

.custom-form .form-hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.custom-form label span {
  color: #354047;
  font-size: 13px;
  font-weight: 650;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  color: var(--color-ink);
  background: var(--color-white);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.custom-form input,
.custom-form select {
  height: 48px;
  padding: 0 14px;
}

.custom-form textarea {
  min-height: 118px;
  padding: 12px 14px;
  line-height: 1.5;
  resize: vertical;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
  border-color: rgba(47, 111, 115, 0.42);
  box-shadow: 0 0 0 4px rgba(47, 111, 115, 0.1);
}

.contact-captcha-row {
  display: grid;
  gap: 8px;
}

.contact-captcha-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px 44px;
  gap: 8px;
  align-items: center;
}

.contact-captcha-image {
  width: 86px;
  height: 34px;
  border: 1px solid rgba(20, 25, 29, 0.12);
  border-radius: 6px;
  background: #f8efda;
}

.contact-captcha-refresh {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  color: var(--color-ink);
  background: var(--color-white);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.contact-captcha-refresh:hover,
.contact-captcha-refresh:focus-visible {
  border-color: rgba(47, 111, 115, 0.32);
  color: var(--color-teal);
  box-shadow: 0 10px 24px rgba(20, 25, 29, 0.08);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--color-teal);
  font-size: 13px;
}

.form-note.is-error {
  color: #b42318;
}

.site-nav .is-active {
  color: var(--color-copper);
}

.inner-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-white);
  background: #11181c;
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 14, 17, 0.82), rgba(10, 14, 17, 0.42)),
    linear-gradient(180deg, rgba(10, 14, 17, 0.2), rgba(10, 14, 17, 0.45));
  content: "";
}

.inner-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inner-hero-shell {
  width: calc(100% - 48px);
  max-width: 1180px;
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: clamp(58px, 7vw, 92px) 0 clamp(48px, 6vw, 72px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--color-white);
}

.inner-hero h1 {
  color: var(--color-white);
}

.inner-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.lead-text {
  color: #4d575f;
  font-size: 17px;
}

.content-band {
  background:
    linear-gradient(180deg, #ffffff, #f8faf8),
    var(--color-white);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.split-media {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-porcelain);
  box-shadow: var(--shadow-soft);
}

.split-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.stat-grid,
.feature-grid,
.solution-grid,
.news-grid,
.contact-grid {
  display: grid;
  gap: var(--grid-gap);
}

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

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

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

.stat-card,
.feature-card,
.solution-card,
.news-card,
.contact-card,
.spec-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 16px 54px rgba(20, 25, 29, 0.04);
}

.stat-card {
  min-height: 136px;
  padding: 24px;
}

.stat-card span,
.feature-card span,
.solution-card span,
.news-card span,
.contact-card span,
.spec-card span {
  color: var(--color-copper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  color: var(--color-ink);
  font-size: 28px;
  line-height: 1.15;
}

.stat-card p,
.feature-card p,
.solution-card p,
.news-card p,
.contact-card p,
.spec-card p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 15px;
}

.feature-card,
.solution-card,
.news-card,
.contact-card,
.spec-card {
  padding: 24px;
}

.feature-card svg,
.solution-card svg,
.contact-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 18px;
  color: var(--color-teal);
  stroke-width: 1.7;
}

.feature-card h3,
.solution-card h3,
.news-card h3,
.contact-card h3,
.spec-card h3 {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.22;
}

.solution-card {
  overflow: hidden;
  padding: 0;
}

.solution-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.solution-card div {
  padding: 22px;
}

.product-detail-page {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  max-width: 1380px;
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(44px, 6vw, 76px);
  align-items: start;
  isolation: isolate;
}

.product-detail-page::before {
  position: absolute;
  inset: 0 50%;
  z-index: -2;
  margin-inline: -50vw;
  background:
    linear-gradient(180deg, #ffffff, #f8faf8),
    var(--color-white);
  content: "";
}

.product-detail-sticky-region {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.detail-layout {
  grid-column: 2;
  display: grid;
  grid-template-columns: max-content minmax(250px, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.product-detail-nav {
  position: relative;
  z-index: 3;
  align-self: start;
  width: 100%;
  max-height: calc(100vh - var(--header-height) - 36px);
  overflow-x: hidden;
  overflow-y: auto;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 54px rgba(20, 25, 29, 0.04);
}

.product-detail-nav.is-fixed {
  position: fixed;
  top: calc(var(--header-height) + 18px);
  left: var(--product-detail-nav-left, 24px);
  width: var(--product-detail-nav-width, 140px);
}

.product-detail-nav.is-stopped {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: var(--product-detail-nav-width, 140px);
}

.product-detail-nav a {
  display: grid;
  align-items: center;
  min-height: 52px;
  padding: 10px;
  border-radius: 8px;
  color: #536273;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.28;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-detail-nav a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-detail-nav a:hover,
.product-detail-nav a:focus-visible {
  color: var(--color-ink);
  background: var(--color-porcelain);
  transform: translateY(-1px);
}

.product-detail-nav a.is-active,
.product-detail-nav a[aria-current="true"],
.product-detail-nav a.is-active:hover,
.product-detail-nav a.is-active:focus-visible,
.product-detail-nav a[aria-current="true"]:hover,
.product-detail-nav a[aria-current="true"]:focus-visible {
  color: var(--color-copper);
  background: rgba(173, 122, 68, 0.1);
  box-shadow: inset 3px 0 0 var(--color-copper);
}

.product-detail-copy {
  display: grid;
  align-self: start;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-overview-panel {
  display: grid;
  align-self: start;
  gap: 14px;
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 54px rgba(20, 25, 29, 0.04);
}

.product-overview-panel .breadcrumb {
  display: none;
  height: 0;
  margin: 0;
  overflow: hidden;
  visibility: hidden;
}

.product-overview-panel > h1 {
  min-height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #182531;
  background: transparent;
  box-shadow: none;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.24;
  font-weight: 720;
}

.product-inquiry-button {
  width: auto;
  min-width: 220px;
  min-height: 46px;
  margin: 0;
  justify-self: start;
  padding-inline: 22px;
  border-radius: 8px;
}

.product-story-inquiry-button {
  grid-column: 1;
  justify-self: start;
  width: auto;
}

.detail-summary {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-summary article {
  min-width: 0;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.detail-summary h2 {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.22;
}

.detail-summary p {
  margin: 0;
  color: #6b7684;
  font-size: 16px;
  line-height: 1.54;
  overflow: visible;
  overflow-wrap: anywhere;
}

.technical-section h2,
.product-story h2,
.product-note-card h2,
.product-applications h2 {
  margin-bottom: 14px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
}

.detail-image {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  width: fit-content;
  padding: 0;
  border-radius: 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.product-thumbs {
  order: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 72px));
  gap: 9px;
  width: 100%;
  align-content: start;
  justify-content: start;
}

.product-thumb {
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: var(--color-white);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-thumb:hover,
.product-thumb:focus-visible,
.product-thumb.is-active {
  border-color: var(--color-copper);
  box-shadow: 0 10px 26px rgba(173, 122, 68, 0.16);
}

.product-thumb:hover,
.product-thumb:focus-visible {
  transform: translateY(-1px);
}

.product-thumb img,
.product-main-image img,
.product-story-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-main-image {
  order: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  width: clamp(330px, 28vw, 420px);
  max-width: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--color-line);
  background: var(--color-porcelain);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: contain;
}

.technical-table-wrap {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
}

.technical-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.technical-table th,
.technical-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-line);
  vertical-align: top;
  text-align: left;
  font-size: 13px;
}

.technical-table tr:last-child th,
.technical-table tr:last-child td {
  border-bottom: 0;
}

.technical-table th {
  width: 34%;
  color: var(--color-ink);
  background: rgba(247, 248, 246, 0.72);
  font-weight: 650;
}

.technical-table td {
  color: #4d575f;
}

.technical-section {
  display: grid;
  grid-column: 2;
  gap: 14px;
  order: 3;
  padding: 16px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.technical-section > h2 {
  margin: 0;
  color: #182531;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.18;
}

.technical-table-wrap > h2 {
  margin-bottom: 0;
  color: #182531;
  font-size: 16px;
}

.product-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.product-note-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
}

.product-note-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-note-card div {
  padding: clamp(20px, 3vw, 28px);
}

.product-note-card h2 {
  margin-bottom: 10px;
}

.product-note-card p {
  margin-bottom: 0;
  color: #4d575f;
}

.product-story {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 14px;
  order: 2;
  align-items: stretch;
  margin-top: clamp(8px, 1.5vw, 18px);
  padding: clamp(24px, 2.6vw, 34px) 12px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.product-story::before {
  position: absolute;
  top: 0;
  right: 12px;
  left: 12px;
  border-top: 2px dashed rgba(173, 122, 68, 0.72);
  content: "";
}

.product-story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  min-width: 0;
  width: 100%;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-story-text-panel {
  display: grid;
  width: 100%;
  gap: 14px;
  padding: 17px;
  border-radius: 8px;
  border: 1px solid var(--color-line);
  background: #ffffff;
  box-shadow: 0 16px 54px rgba(20, 25, 29, 0.04);
}

.product-story-text-panel::before {
  display: none;
  height: 0;
  content: "";
}

.product-story-intro,
.product-story-text {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-story-text {
  background: transparent;
}

.product-story-intro h2,
.product-story-text h2 {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.22;
}

.product-story-intro .product-story-title-large {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.24;
  font-weight: 720;
}

.product-story p {
  margin-bottom: 0;
  color: #6b7684;
  font-size: 16px;
  line-height: 1.54;
  overflow: visible;
  overflow-wrap: anywhere;
}

.product-story-intro > h2 {
  margin: 0;
  color: #182531;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.24;
  font-weight: 720;
}

.product-story .detail-summary article {
  color: #6b7684;
  font-size: 16px;
  line-height: 1.54;
}

.product-story .detail-summary h2 {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.22;
}

.product-story-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  width: fit-content;
  justify-self: end;
  align-self: start;
  padding: 0;
  border-radius: 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-story-main-image {
  order: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  width: clamp(330px, 28vw, 420px);
  max-width: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--color-line);
  background: var(--color-porcelain);
}

.product-story-main-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.product-story-thumbs {
  order: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 72px));
  width: 100%;
  gap: 9px;
  align-content: start;
  justify-content: start;
}

.product-applications {
  display: grid;
  grid-column: 2;
  order: 4;
  gap: var(--section-gap);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.product-applications h2 {
  margin: 0;
  color: #182531;
  font-size: clamp(24px, 2.4vw, 32px);
}

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

.product-application-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--color-white);
  background: #dfe4e3;
  isolation: isolate;
}

.product-application-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 25, 29, 0.02), rgba(20, 25, 29, 0.72)),
    linear-gradient(90deg, rgba(20, 25, 29, 0.34), transparent);
  content: "";
}

.product-application-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--color-porcelain);
  transition: transform 280ms ease;
}

.product-application-card:hover > img {
  transform: scale(1.045);
}

.product-application-card > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.product-application-card h3 {
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: 24px;
  line-height: 1.18;
}

.product-application-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.52;
}

.inquiry-modal[hidden] {
  display: none;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
}

.inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 17, 0.56);
  backdrop-filter: blur(6px);
}

.inquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.inquiry-form {
  background: var(--color-white);
}

.inquiry-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
}

.inquiry-close svg {
  width: 18px;
  height: 18px;
}

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

.page-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(30px, 4vw, 44px);
  border-radius: 8px;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(20, 25, 29, 0.96), rgba(47, 111, 115, 0.82)),
    #182024;
}

.page-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.page-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.empty-news {
  padding: clamp(32px, 5vw, 56px);
  border: 1px dashed rgba(173, 122, 68, 0.42);
  border-radius: 8px;
  background: rgba(247, 248, 246, 0.74);
  text-align: center;
}

.empty-news p {
  max-width: 620px;
  margin: 10px auto 0;
  color: var(--color-muted);
}

.process-grid,
.support-grid,
.application-list {
  display: grid;
  gap: 16px;
}

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

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

.process-card,
.support-card,
.application-item {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 246, 0.74)),
    var(--color-white);
  box-shadow: 0 16px 54px rgba(20, 25, 29, 0.04);
}

.process-card span,
.support-card span,
.application-item span {
  color: var(--color-copper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.process-card h3,
.support-card h3,
.application-item h3 {
  margin: 10px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.process-card p,
.support-card p,
.application-item p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.detail-extra {
  display: grid;
  gap: var(--section-gap);
}

.detail-copy {
  display: grid;
  gap: var(--grid-gap);
  color: #4d575f;
  font-size: 16px;
}

.detail-copy p {
  margin-bottom: 0;
}

.news-card-media {
  overflow: hidden;
  padding: 0;
  color: inherit;
}

.news-card-media:hover,
.news-card-media:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(20, 25, 29, 0.08);
}

.news-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.news-pagebar {
  display: flex;
  justify-content: center;
  margin-top: var(--section-gap);
}

.news-pagebar a,
.news-pagebar span {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  color: var(--color-ink);
  background: var(--color-white);
  font-size: 13px;
  font-weight: 700;
}

.news-pagebar .current,
.news-pagebar span.current {
  color: var(--color-white);
  border-color: var(--color-ink);
  background: var(--color-ink);
}

.news-detail-page {
  background: var(--color-white);
}

.news-detail-hero {
  position: relative;
  display: grid;
  min-height: clamp(420px, 54vw, 620px);
  align-items: end;
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
}

.news-detail-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 25, 29, 0.78), rgba(20, 25, 29, 0.36) 56%, rgba(20, 25, 29, 0.2)),
    linear-gradient(0deg, rgba(20, 25, 29, 0.56), rgba(20, 25, 29, 0.08));
  content: "";
}

.news-detail-hero-content {
  width: calc(100% - 48px);
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(120px, 14vw, 180px) 0 clamp(54px, 7vw, 92px);
}

.news-detail-hero .breadcrumb {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.news-detail-hero .breadcrumb a:hover,
.news-detail-hero .breadcrumb a:focus-visible {
  color: var(--color-white);
}

.news-detail-hero .eyebrow {
  color: #f0c391;
}

.news-detail-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
}

.news-detail-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.35vw, 19px);
}

.news-detail-shell {
  display: grid;
  width: calc(100% - 48px);
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(54px, 6vw, 86px) 0;
}

.news-article {
  min-width: 0;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-article-meta span,
.news-article-meta time {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(247, 248, 246, 0.74);
}

.news-lead {
  margin-bottom: 30px;
  color: #354350;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
  font-weight: 650;
}

.news-article-body {
  color: #3f4d59;
  font-size: 17px;
  line-height: 1.78;
}

.news-article-body > *:first-child {
  margin-top: 0;
}

.news-article-body p,
.news-article-body ul,
.news-article-body ol,
.news-article-body table,
.news-article-body blockquote {
  margin: 0 0 22px;
}

.news-article-body h2,
.news-article-body h3,
.news-article-body h4 {
  margin: 34px 0 14px;
  color: var(--color-ink);
  line-height: 1.18;
}

.news-article-body h2 {
  font-size: clamp(26px, 2.6vw, 38px);
}

.news-article-body h3 {
  font-size: clamp(22px, 2vw, 30px);
}

.news-article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 28px auto;
  border-radius: 8px;
  object-fit: contain;
}

.news-article-body table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  font-size: 15px;
}

.news-article-body th,
.news-article-body td {
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

.news-article-body blockquote {
  padding: 18px 22px;
  border-left: 3px solid var(--color-copper);
  background: rgba(247, 248, 246, 0.74);
  color: #455360;
}

.news-article-empty {
  padding: 24px;
  border: 1px dashed rgba(173, 122, 68, 0.42);
  border-radius: 8px;
  background: rgba(247, 248, 246, 0.74);
  color: var(--color-muted);
}

.news-detail-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 16px 54px rgba(20, 25, 29, 0.04);
}

.news-detail-aside h2 {
  margin: 0;
  font-size: 20px;
}

.news-detail-aside p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.news-detail-actions {
  display: grid;
  gap: 10px;
}

.news-detail-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 750;
}

.news-back-link {
  color: var(--color-white);
  background: var(--color-ink);
}

.news-contact-link {
  color: var(--color-ink);
  border: 1px solid var(--color-line);
  background: var(--color-porcelain);
}

.home-news-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--section-gap);
}

.article-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 248, 246, 0.84), rgba(255, 255, 255, 0.98)),
    var(--color-white);
  box-shadow: var(--shadow-soft);
}

.article-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.article-feature h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
}

.article-feature p {
  color: var(--color-muted);
}

.certificates-section {
  overflow: hidden;
}

.certificate-carousel {
  display: grid;
  gap: var(--grid-gap);
}

.certificate-viewport {
  overflow: hidden;
  width: 100%;
}

.certificate-track {
  display: flex;
  gap: var(--grid-gap);
}

.certificate-card {
  flex: 0 0 calc((100% - (var(--grid-gap) * 2)) / 3);
  min-width: 0;
}

.certificate-document {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(173, 122, 68, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 246, 0.9)),
    var(--color-white);
  box-shadow: 0 18px 54px rgba(20, 25, 29, 0.06);
}

.certificate-document::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(173, 122, 68, 0.22);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.certificate-document::after {
  position: absolute;
  right: -52px;
  bottom: -58px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(47, 111, 115, 0.16);
  border-radius: 50%;
  background: rgba(47, 111, 115, 0.05);
  content: "";
}

.certificate-document svg {
  width: 34px;
  height: 34px;
  margin: 28px 0 22px;
  color: var(--color-teal);
  stroke-width: 1.5;
}

.certificate-label {
  color: var(--color-copper);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.certificate-document h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.18;
}

.certificate-document p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.certificate-seal {
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(173, 122, 68, 0.42);
  border-radius: 50%;
  color: var(--color-copper);
  font-size: 16px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
}

.certificate-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  justify-self: end;
}

.certificate-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-ink);
  background: var(--color-white);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.certificate-arrow:hover,
.certificate-arrow:focus-visible {
  border-color: rgba(173, 122, 68, 0.42);
  color: var(--color-copper);
  transform: translateY(-1px);
}

.certificate-arrow:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.certificate-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.certificate-counter {
  min-width: 66px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  color: #43515a;
  background:
    linear-gradient(180deg, #ffffff, #f8faf8),
    var(--color-white);
}

.footer-main,
.footer-bar {
  width: calc(100% - 48px);
  max-width: 1180px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(28px, 5vw, 58px);
  padding: 44px 0 32px;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.footer-qr {
  width: min(100%, 360px);
  margin-top: 14px;
  padding: 8px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
}

.footer-qr img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav h3 {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-nav a {
  color: var(--color-muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--color-copper);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  border-top: 1px solid var(--color-line);
  font-size: 13px;
}

.footer-bar p {
  margin: 0;
}

.footer-bar-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-bar-links a {
  color: var(--color-muted);
}

.footer-bar-links a:hover,
.footer-bar-links a:focus-visible {
  color: var(--color-ink);
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 0 18px;
  }

  .hero-shell,
  .section {
    width: calc(100% - 36px);
    max-width: 760px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
  }

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

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

  .site-nav a::after,
  .nav-item > a::after {
    display: none;
  }

  .nav-item {
    display: grid;
    align-items: stretch;
  }

  .nav-item > a {
    padding: 14px 12px;
  }

  .product-dropdown {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 0 8px;
    padding: 8px;
    border-radius: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(247, 248, 246, 0.88);
  }

  .product-dropdown a {
    min-height: 58px;
    padding: 10px;
  }

  .nav-cta,
  .lang-wrapper {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-shell {
    padding: 0 0 28px;
  }

  .hero-visual {
    width: 100%;
    opacity: 1;
  }

  .hero-visual-image {
    width: 100%;
    transform: none;
  }

  .hero-visual-image img {
    min-height: 380px;
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

  .section-heading,
  .section-heading-wide,
  .company-section,
  .custom-section,
  .product-module,
  .split-section,
  .detail-layout,
  .product-story,
  .page-cta {
    grid-template-columns: 1fr;
  }

  .product-detail-page {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-detail-sticky-region {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .detail-layout,
  .technical-section,
  .product-story,
  .product-story-copy,
  .product-story-gallery,
  .product-applications {
    grid-column: auto;
  }

  .product-detail-nav {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 10px;
  }

  .product-detail-nav.is-fixed,
  .product-detail-nav.is-stopped {
    position: static;
    inset: auto;
    width: auto;
  }

  .product-detail-nav a {
    min-height: 42px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    padding: 8px 6px;
    text-align: center;
  }

  .product-detail-nav a:hover,
  .product-detail-nav a:focus-visible {
    transform: translateY(-1px);
  }

  .product-story-gallery {
    grid-template-columns: minmax(0, 1fr);
    width: fit-content;
    justify-self: start;
  }

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

  .product-grid,
  .application-grid,
  .feature-grid,
  .solution-grid,
  .news-grid,
  .contact-grid,
  .product-note-grid,
  .process-grid,
  .support-grid,
  .application-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-list-layout,
  .product-list-toolbar {
    grid-template-columns: 1fr;
  }

  .product-list-sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }

  .product-list-main {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }

  .product-list-toolbar {
    position: static;
  }

  .product-list-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .product-list-option-all {
    grid-column: 1 / -1;
  }

  .product-list-toolbar p:last-child {
    text-align: left;
  }

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

  .product-list-reset {
    justify-self: start;
  }

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

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

  .news-detail-shell {
    width: calc(100% - 36px);
    max-width: 760px;
    grid-template-columns: 1fr;
  }

  .news-detail-aside {
    position: static;
  }

  .news-detail-hero-content {
    width: calc(100% - 36px);
    max-width: 760px;
  }

  .certificate-card {
    flex-basis: calc((100% - var(--grid-gap)) / 2);
  }

  .home-product-slide {
    flex-basis: calc((100% - var(--grid-gap)) / 2);
  }

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

  .inner-hero-shell {
    width: calc(100% - 36px);
    max-width: 760px;
  }

  .detail-image {
    position: relative;
    top: auto;
    grid-template-columns: 72px minmax(0, 1fr);
  }

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

  .capability-strip div:nth-child(2) {
    border-right: 0;
  }

  .capability-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-line);
  }

  .company-media img {
    min-height: 100%;
  }

  .company-content {
    width: min(760px, calc(100% - 36px));
  }

  .company-points {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .company-points div {
    min-height: auto;
  }

  .process-list div {
    grid-template-columns: 48px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }

  .footer-main {
    width: calc(100% - 36px);
    max-width: 760px;
    grid-template-columns: 1fr;
  }

  .footer-bar {
    width: calc(100% - 36px);
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand-mark {
    flex-basis: 64px;
    width: 64px;
    height: 42px;
  }

  .site-header .brand {
    min-width: 64px;
  }

  .footer-brand .brand {
    min-width: 64px;
  }

  .hero-shell,
  .section {
    width: calc(100% - 28px);
    max-width: 520px;
  }

  .news-detail-hero {
    min-height: 460px;
  }

  .news-detail-hero-content,
  .news-detail-shell {
    width: calc(100% - 28px);
    max-width: 520px;
  }

  .news-detail-hero-content {
    padding: 110px 0 44px;
  }

  .news-detail-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .news-article-body {
    font-size: 16px;
    line-height: 1.72;
  }

  .brand-copy small {
    display: none;
  }

  .hero-shell {
    padding: 0 0 20px;
  }

  .hero-visual {
    width: 100%;
    opacity: 1;
  }

  .hero-visual-image img {
    min-height: 340px;
  }

  h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.12;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .product-inquiry-button {
    width: 100%;
  }

  .product-detail-page {
    width: calc(100% - 28px);
    max-width: 520px;
    padding-top: 28px;
  }

  .detail-layout,
  .product-story,
  .technical-section,
  .product-applications {
    padding: 10px;
  }

  .product-detail-copy {
    padding: 0;
  }

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

  .product-overview-panel,
  .product-story-text-panel {
    padding: 15px;
  }

  .product-overview-panel > h1 {
    min-height: auto;
    padding: 0;
    font-size: 17px;
  }

  .detail-summary article {
    min-height: auto;
    padding: 0;
  }

  .product-story-intro,
  .product-story-text {
    padding: 0;
  }

  .product-story-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    justify-self: stretch;
    padding: 0;
  }

  .product-story-main-image {
    order: 1;
    width: 100%;
  }

  .product-main-image {
    min-height: 270px;
  }

  .product-story-main-image img {
    min-height: 0;
  }

  .product-story-thumbs {
    order: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .section {
    padding: 44px 0;
  }

  .company-section {
    width: 100%;
    max-width: none;
    min-height: 640px;
    padding: 0;
  }

  .company-content {
    width: calc(100% - 28px);
    padding: 56px 0;
  }

  .company-content h2 {
    font-size: 34px;
  }

  .company-content p {
    font-size: 15px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .product-category-filter {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .category-filter-head,
  .category-filter-trigger {
    width: 100%;
  }

  .category-dropdown-panel {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: 12px;
    padding: 12px;
  }

  .category-menu-grid {
    grid-template-columns: 1fr;
  }

  .category-option-all {
    width: 100%;
  }

  .product-list-sidebar {
    padding: 14px;
  }

  .product-list-nav,
  .product-list-main .product-list-grid {
    grid-template-columns: 1fr;
  }

  .product-list-toolbar {
    padding: 18px;
  }

  .product-list-reset {
    width: 100%;
  }

  .product-grid,
  .application-grid,
  .capability-strip,
  .footer-nav,
  .module-grid,
  .feature-grid,
  .solution-grid,
  .news-grid,
  .contact-grid,
  .stat-grid,
  .product-note-grid,
  .spec-grid,
  .process-grid,
  .support-grid,
  .application-list,
  .article-feature {
    grid-template-columns: 1fr;
  }

  .inner-hero-shell {
    width: calc(100% - 28px);
    max-width: 520px;
    min-height: 340px;
  }

  .inner-hero p:not(.eyebrow) {
    max-width: 340px;
    font-size: 16px;
  }

  .inner-hero h1 {
    max-width: 330px;
  }

  .home-product-slide {
    flex-basis: 100%;
  }

  .home-product-controls {
    justify-self: stretch;
    justify-content: space-between;
  }

  .detail-image {
    grid-template-columns: 1fr;
    padding: 0;
  }

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

  .detail-image {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .product-main-image {
    order: 1;
    width: 100%;
  }

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

  .product-application-card {
    min-height: 280px;
  }

  .technical-table th,
  .technical-table td {
    display: block;
    width: 100%;
  }

  .technical-table th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .technical-table td {
    padding-top: 6px;
  }

  .inquiry-modal {
    align-items: end;
    padding: 14px;
  }

  .inquiry-dialog {
    max-height: calc(100vh - 28px);
  }

  .certificate-card {
    flex-basis: 100%;
  }

  .certificate-document {
    min-height: 320px;
    padding: 26px;
  }

  .certificate-controls {
    justify-self: stretch;
    justify-content: space-between;
  }

  .contact-card h3,
  .contact-card p {
    max-width: 100%;
  }

  .page-cta .button {
    width: 100%;
  }

  .capability-strip div,
  .capability-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .capability-strip div:last-child {
    border-bottom: 0;
  }

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

  .application-card {
    min-height: 280px;
  }

  .custom-section {
    padding: 44px 14px;
  }

  .custom-form {
    padding: 20px;
  }

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

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

  .process-list div {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

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

  .footer-main,
  .footer-bar {
    width: calc(100% - 28px);
    max-width: 520px;
  }

  .footer-main {
    padding: 42px 0 30px;
  }

  .footer-bar {
    display: grid;
    align-items: start;
    padding: 18px 0;
  }

  .footer-bar-links {
    justify-content: flex-start;
  }
}
