:root {
  --hh-green: #16834a;
  --hh-green-deep: #0b3d2a;
  --hh-green-soft: #e8f5ee;
  --hh-ink: #111814;
  --hh-muted: #647067;
  --hh-line: #dce5df;
  --hh-soft-line: rgba(17, 24, 20, 0.1);
  --hh-white: #ffffff;
  --hh-paper: #f5f8f6;
  --hh-paper-strong: #eef4f0;
  --hh-shadow: 0 26px 70px rgba(22, 36, 28, 0.14);
  --hh-radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--hh-ink);
  background: var(--hh-paper);
  font-family:
    "Microsoft YaHei",
    Arial,
    "Helvetica Neue",
    Helvetica,
    sans-serif;
}

body.hh-nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.hh-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--hh-paper);
}

.hh-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 20vw;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #050806;
}

.hh-sidebar-bg,
.hh-sidebar-bg::after {
  position: absolute;
  inset: 0;
}

.hh-sidebar-bg {
  background:
    radial-gradient(circle at 8% 92%, rgba(22, 131, 74, 0.46), transparent 34%),
    linear-gradient(180deg, #050806 0%, #07110c 58%, #020403 100%);
  filter: none;
  transform: none;
}

.hh-sidebar-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
}

.hh-sidebar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 36px);
}

.hh-mobile-bar {
  display: none;
}

.hh-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.hh-brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hh-brand strong,
.hh-brand small {
  display: block;
}

.hh-brand strong {
  max-width: 220px;
  color: #7ee0aa;
  font-size: clamp(30px, 2.95vw, 48px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.94;
}

.hh-brand small {
  max-width: 210px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hh-sidebar-kicker {
  max-width: 220px;
  margin: clamp(38px, 7vh, 82px) 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.65;
  text-transform: uppercase;
}

.hh-nav {
  display: grid;
  gap: 3px;
}

.hh-nav-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 56px;
  color: rgba(255, 255, 255, 0.62);
  transition: color 180ms ease;
}

.hh-nav-link strong {
  position: relative;
  padding-left: 0;
  font-size: clamp(21px, 1.48vw, 25px);
  font-weight: 900;
  letter-spacing: 0;
}

.hh-nav-link:hover,
.hh-nav-link.is-active {
  color: #fff;
}

.hh-sidebar-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hh-sidebar-foot p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hh-sidebar-foot a {
  --hh-button-angle: 0deg;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(rgba(5, 12, 8, 0.82), rgba(5, 12, 8, 0.82)) padding-box,
    conic-gradient(from var(--hh-button-angle), rgba(126, 224, 170, 0), rgba(126, 224, 170, 0.9), rgba(255, 255, 255, 0.72), rgba(126, 224, 170, 0)) border-box;
  padding: 0 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  animation: hhButtonBorder 8s linear infinite;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.hh-sidebar-foot a:hover {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.1);
}

.hh-main {
  width: 80vw;
  margin-left: 20vw;
  overflow-x: hidden;
  background: var(--hh-paper);
}

.hh-panel {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  scroll-snap-align: start;
  color: var(--hh-ink);
}

.hh-panel-bg,
.hh-panel-shade,
.hh-product-overlay,
.hh-technical-lines {
  position: absolute;
  inset: 0;
}

.hh-panel-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100vh;
  min-height: 100vh;
  padding: clamp(46px, 4.6vw, 68px);
}

.hh-eyebrow {
  margin: 0 0 16px;
  color: var(--hh-green);
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1100px;
  margin-bottom: 24px;
  color: var(--hh-ink);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 span {
  color: var(--hh-green);
}

h2 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--hh-ink);
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

h3 {
  color: var(--hh-ink);
  line-height: 1.16;
}

p {
  color: var(--hh-muted);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.7;
}

.hh-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: #26332c;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.72;
}

.hh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hh-button {
  --hh-button-angle: 0deg;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 224, 170, 0.42);
  border-radius: 12px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hh-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--hh-button-angle), transparent 0deg, transparent 72deg, rgba(126, 224, 170, 0.96) 116deg, rgba(255, 255, 255, 0.9) 142deg, rgba(22, 131, 74, 0.86) 170deg, transparent 230deg, transparent 360deg);
  animation: hhButtonBorder 7s linear infinite;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.hh-button:hover {
  transform: translateY(-2px);
}

.hh-button-primary {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.34), transparent 36%),
    linear-gradient(135deg, rgba(22, 131, 74, 0.78), rgba(10, 77, 48, 0.62));
  color: #fff;
  box-shadow: 0 16px 42px rgba(22, 131, 74, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
}

.hh-button-primary:hover {
  background: linear-gradient(135deg, rgba(11, 61, 42, 0.84), rgba(22, 131, 74, 0.68));
}

.hh-button-ghost {
  border-color: rgba(17, 24, 20, 0.24);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
  color: var(--hh-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 16px 42px rgba(23, 36, 29, 0.08);
  backdrop-filter: blur(18px) saturate(145%);
}

.hh-button-ghost:hover {
  border-color: var(--hh-green);
  color: var(--hh-green-deep);
}

.hh-home {
  background: #f2f6f3;
}

.hh-home .hh-panel-bg {
  object-position: center;
}

.hh-panel-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.66) 38%, rgba(255, 255, 255, 0.18) 72%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(245, 248, 246, 0.02), rgba(245, 248, 246, 0.38));
}

.hh-technical-lines {
  opacity: 0.45;
  background:
    linear-gradient(90deg, rgba(22, 131, 74, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 131, 74, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.hh-home-inner {
  align-content: center;
  gap: 54px;
}

.hh-home-copy {
  max-width: 1100px;
}

.hh-stat-stack {
  display: grid;
  max-width: 980px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hh-stat-stack article {
  --hh-angle: 0deg;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 154px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.62), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.2));
  box-shadow: 0 24px 62px rgba(23, 36, 29, 0.12);
  backdrop-filter: blur(18px) saturate(145%);
}

.hh-stat-stack article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.hh-stat-stack article::before {
  display: none;
  content: none;
}

.hh-stat-stack article::after {
  display: none;
  content: none;
}

.hh-stat-stack strong {
  display: block;
  margin-bottom: 12px;
  color: var(--hh-green-deep);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.hh-stat-stack span {
  color: #39443d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hh-hot-products {
  color: #fff;
  background: #12241b;
}

.hh-hot-products .hh-panel-bg {
  object-position: center;
}

.hh-product-overlay {
  background:
    linear-gradient(90deg, rgba(5, 19, 13, 0.68), rgba(5, 19, 13, 0.26) 46%, rgba(5, 19, 13, 0.34)),
    linear-gradient(180deg, rgba(5, 19, 13, 0.04), rgba(5, 19, 13, 0.54));
}

.hh-light-heading {
  align-self: start;
  max-width: 780px;
}

.hh-light-heading h2,
.hh-light-heading .hh-eyebrow,
.hh-hot-products h2,
.hh-hot-products h3 {
  color: #fff;
}

.hh-light-heading .hh-eyebrow {
  color: #a8e3c0;
}

.hh-product-stage {
  position: relative;
  display: grid;
  align-self: end;
  height: min(500px, 58vh);
  min-height: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.hh-product-zone {
  position: relative;
  display: block;
  min-width: 0;
  border-right: 0;
  padding: clamp(26px, 3vw, 40px);
  overflow: visible;
  outline: none;
  cursor: pointer;
}

.hh-product-zone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(26vw, 320px);
  height: min(26vw, 320px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 227, 192, 0.18), rgba(22, 131, 74, 0.05) 42%, transparent 68%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
  pointer-events: none;
}

.hh-product-zone:hover::before,
.hh-product-zone.is-active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hh-zone-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  color: #bcefd1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hh-hotspot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--hh-green);
  box-shadow: 0 0 0 0 rgba(126, 224, 170, 0.62);
  transform: translate(-50%, -50%);
  animation: hhHotspotPulse 2.8s ease-out infinite;
}

.hh-hotspot::before,
.hh-hotspot::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: inherit;
  animation: hhHotspotRing 2.8s ease-out infinite;
}

.hh-hotspot::after {
  inset: -24px;
  border-color: rgba(126, 224, 170, 0.34);
  animation-delay: 0.45s;
}

.hh-product-zone:nth-child(1) .hh-hotspot {
  left: 44%;
  top: 44%;
}

.hh-product-zone:nth-child(2) .hh-hotspot {
  left: 48%;
  top: 38%;
}

.hh-product-zone:nth-child(3) .hh-hotspot {
  left: 56%;
  top: 42%;
}

.hh-product-zone > h3 {
  position: absolute;
  left: clamp(26px, 3vw, 42px);
  bottom: clamp(136px, 15vh, 172px);
  z-index: 2;
  max-width: 280px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.5);
}

.hh-product-detail {
  --hh-angle: 0deg;
  position: absolute;
  isolation: isolate;
  left: 50%;
  top: 45%;
  z-index: 5;
  display: grid;
  gap: 12px;
  width: min(330px, 28vw);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 22px));
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.68), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.24));
  padding: 14px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px) saturate(145%);
}

.hh-product-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--hh-angle), transparent 0deg, transparent 72deg, rgba(22, 131, 74, 0.86) 116deg, rgba(255, 255, 255, 0.82) 146deg, rgba(126, 224, 170, 0.9) 180deg, transparent 238deg, transparent 360deg);
  animation: hhBorderFlow 9s linear infinite;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.hh-product-zone:hover .hh-product-detail,
.hh-product-zone.is-active .hh-product-detail {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.hh-product-detail img {
  width: min(260px, 100%);
  height: 118px;
  object-fit: contain;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.16));
}

.hh-product-detail p {
  margin-bottom: 0;
  color: #526058;
  font-size: 14px;
  line-height: 1.55;
}

.hh-product-detail .hh-price {
  color: var(--hh-green-deep);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.hh-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hh-tag-list span {
  border: 1px solid rgba(22, 131, 74, 0.18);
  padding: 7px 10px;
  color: var(--hh-green-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hh-global-reach,
.hh-certificates,
.hh-about {
  background:
    linear-gradient(180deg, #fff, #f5f8f6);
}

.hh-global-layout,
.hh-cert-layout,
.hh-about-layout,
.hh-contact-layout {
  align-content: center;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.18fr);
  gap: clamp(42px, 5vw, 84px);
}

.hh-global-layout {
  position: relative;
  align-content: stretch;
  grid-template-columns: 1fr;
  gap: 0;
  isolation: isolate;
}

.hh-global-reach .hh-section-copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.hh-global-reach .hh-section-copy::before {
  display: none;
}

.hh-global-reach .hh-section-copy p {
  max-width: 580px;
  text-shadow: 0 1px 0 #fff, 0 12px 30px rgba(255, 255, 255, 0.92);
}

.hh-global-reach #global-title {
  max-width: 940px;
  white-space: nowrap;
  text-shadow: 0 1px 0 #fff, 0 16px 40px rgba(255, 255, 255, 0.95);
}

.hh-section-copy {
  align-self: start;
  max-width: 640px;
}

.hh-section-copy p {
  max-width: 610px;
}

.hh-about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hh-about-points span {
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 15px;
  color: #28332c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(23, 36, 29, 0.08);
  backdrop-filter: blur(14px);
}

.hh-map-card {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 70% 52%, rgba(22, 131, 74, 0.1), transparent 34%),
    radial-gradient(circle at 82% 42%, rgba(22, 131, 74, 0.05), transparent 24%),
    transparent;
  box-shadow: none;
  opacity: 0.96;
}

.hh-map-card::before {
  display: none;
}

.hh-map-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  transform: none;
}

.hh-map-grid path {
  fill: none;
  stroke: rgba(11, 61, 42, 0.07);
  stroke-width: 1;
}

.hh-map-glow {
  fill: url("#hhMapGlow");
}

.hh-dot-map-image {
  opacity: 0.98;
  filter: drop-shadow(0 18px 30px rgba(22, 131, 74, 0.08));
}

.hh-routes path {
  fill: none;
  stroke: url("#hhRouteGradient");
  stroke-dasharray: 8 14;
  stroke-linecap: round;
  stroke-width: 2.8;
  filter: drop-shadow(0 0 8px rgba(22, 131, 74, 0.28));
  animation: hhRouteMove 5.8s linear infinite;
}

.hh-origin circle:first-child {
  fill: rgba(22, 131, 74, 0.12);
}

.hh-origin circle:last-child {
  fill: var(--hh-green);
  stroke: #fff;
  stroke-width: 3;
}

.hh-origin-dot {
  fill: var(--hh-green);
  stroke: #fff;
  stroke-width: 3;
  animation: none;
  filter: drop-shadow(0 0 10px rgba(22, 131, 74, 0.36));
}

.hh-origin text,
.hh-market-node text {
  fill: var(--hh-green-deep);
  font-size: 13px;
  font-weight: 900;
}

.hh-origin text + text {
  fill: var(--hh-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hh-market-node {
  animation: none;
}

.hh-market-node circle {
  fill: #fff;
  stroke: var(--hh-green);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(22, 131, 74, 0.34));
}

.hh-cert-layout {
  align-content: start;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  padding-right: 0;
}

.hh-cert-layout .hh-section-copy {
  display: grid;
  width: 100%;
  max-width: 1120px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}

.hh-cert-layout .hh-section-copy .hh-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.hh-cert-layout .hh-section-copy h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(38px, 3.4vw, 54px);
}

.hh-cert-layout .hh-section-copy p {
  max-width: 430px;
  min-width: 0;
  margin-bottom: 0;
  justify-self: start;
  font-size: 16px;
}

.hh-certificate-area {
  --hh-cert-offset: clamp(58px, 8vw, 128px);
  position: relative;
  align-self: start;
  min-width: 0;
  width: calc(100% - var(--hh-cert-offset) + 6vw);
  max-width: calc(100% - var(--hh-cert-offset) + 6vw);
  margin-left: var(--hh-cert-offset);
  margin-right: -6vw;
}

.hh-certificate-track {
  display: grid;
  grid-auto-columns: minmax(330px, 27vw);
  grid-auto-flow: column;
  gap: 26px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  min-width: 0;
  padding: 8px 10vw 18px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-inline: contain;
}

.hh-certificate-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.hh-certificate-track::-webkit-scrollbar {
  display: none;
}

.hh-certificate-card {
  position: relative;
  display: block;
  min-height: min(390px, 42vh);
  overflow: hidden;
  border: 1px solid var(--hh-line);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 16px 46px rgba(23, 36, 29, 0.08);
}

.hh-certificate-card img {
  width: 100%;
  height: 100%;
  min-height: calc(min(390px, 42vh) - 32px);
  object-fit: contain;
  border: 1px solid #edf2ee;
  border-radius: 10px;
  background: #f9fbfa;
  padding: 12px;
}

.hh-certificate-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(23, 36, 29, 0.14);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(16px);
}

.hh-certificate-card:hover .hh-certificate-caption {
  opacity: 1;
  transform: translateY(0);
}

.hh-certificate-card h3 {
  margin-bottom: 0;
  font-size: 21px;
  font-weight: 900;
}

.hh-certificate-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.hh-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--hh-green);
  box-shadow: 0 18px 46px rgba(23, 36, 29, 0.16);
  color: #fff;
  font-size: 0;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.hh-certificate-area:hover .hh-carousel-button {
  opacity: 1;
}

.hh-carousel-button:hover {
  background: var(--hh-green-deep);
  color: #fff;
}

.hh-carousel-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.hh-cert-prev::before {
  transform: translate(-38%, -50%) rotate(225deg);
}

.hh-cert-next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.hh-cert-prev {
  left: -18px;
}

.hh-cert-next {
  right: 7vw;
}

.hh-projects {
  background: #111814;
  color: #fff;
}

.hh-project-slider,
.hh-project-slide {
  position: relative;
  min-height: 100vh;
}

.hh-project-slide {
  display: none;
  overflow: hidden;
}

.hh-project-slide.is-active {
  display: block;
}

.hh-project-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-project-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 8, 0.34), rgba(6, 12, 8, 0.035) 62%, rgba(6, 12, 8, 0.055)),
    linear-gradient(0deg, rgba(6, 12, 8, 0.2), transparent 50%);
}

.hh-project-info {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(960px, 72%);
  min-height: 100vh;
  align-content: end;
  padding: clamp(54px, 5vw, 76px);
  padding-bottom: clamp(120px, 14vw, 170px);
}

.hh-project-counter {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hh-project-info h2,
.hh-project-info .hh-eyebrow {
  color: #fff;
}

.hh-project-info h2 {
  max-width: 940px;
}

.hh-project-info .hh-eyebrow {
  color: #a8e3c0;
}

.hh-project-info p {
  color: rgba(255, 255, 255, 0.82);
}

.hh-project-info dl {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 10px 0 22px;
}

.hh-project-info dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 14px;
}

.hh-project-info dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hh-project-info dd {
  margin: 6px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.hh-project-controls {
  position: absolute;
  right: clamp(36px, 5vw, 76px);
  top: clamp(36px, 4.5vw, 70px);
  bottom: auto;
  z-index: 4;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hh-project-slider:hover .hh-project-controls,
.hh-project-slider:focus-within .hh-project-controls {
  opacity: 1;
  transform: translateY(0);
}

.hh-project-controls button {
  position: relative;
  width: 54px;
  min-width: 54px;
  height: 54px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0;
  font-weight: 900;
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.hh-project-controls button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hh-project-prev::before {
  transform: translate(-35%, -50%) rotate(225deg);
}

.hh-project-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.hh-project-controls button:hover {
  background: #fff;
  color: var(--hh-ink);
}

.hh-about {
  color: #fff;
  background: #0f1913;
}

.hh-about-bg,
.hh-about-bg img,
.hh-about-shade {
  position: absolute;
  inset: 0;
}

.hh-about-bg {
  overflow: hidden;
}

.hh-about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 320ms ease;
}

.hh-about-bg img.is-active {
  opacity: 1;
}

.hh-about-shade {
  background:
    linear-gradient(90deg, rgba(5, 13, 9, 0.76), rgba(5, 13, 9, 0.26) 55%, rgba(5, 13, 9, 0.06)),
    linear-gradient(180deg, rgba(5, 13, 9, 0.2), rgba(5, 13, 9, 0.72));
}

.hh-about-layout {
  align-content: end;
  grid-template-columns: 1fr;
}

.hh-about-copy {
  max-width: 980px;
  padding-bottom: clamp(48px, 6vw, 92px);
}

.hh-about-copy h2,
.hh-about-copy .hh-eyebrow {
  color: #fff;
}

.hh-about-copy .hh-eyebrow {
  color: #a8e3c0;
}

.hh-about-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.hh-about-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hh-about-switch {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.hh-about-switch.is-active,
.hh-about-switch:hover {
  border-color: rgba(126, 224, 170, 0.7);
  background: rgba(22, 131, 74, 0.72);
  color: #fff;
}

.hh-contact {
  background:
    linear-gradient(135deg, #f7faf8, #e9f3ee);
}

.hh-contact-layout {
  grid-template-areas:
    "copy form"
    "partners form";
  grid-template-columns: minmax(410px, 0.82fr) minmax(520px, 1.08fr);
  grid-template-rows: auto minmax(132px, 176px);
  align-content: center;
  gap: clamp(24px, 3vw, 44px) clamp(44px, 5vw, 78px);
  padding-top: clamp(34px, 4.2vw, 54px);
  padding-bottom: clamp(34px, 4.2vw, 54px);
}

.hh-contact-copy {
  grid-area: copy;
}

.hh-contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.6vw, 52px);
}

.hh-contact-copy > p {
  max-width: 640px;
  margin-bottom: 0;
  font-size: clamp(15px, 1.05vw, 17px);
}

.hh-contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 34px;
  max-width: 720px;
}

.hh-contact-info article {
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 20, 0.14);
  background: transparent;
  padding: 0 0 10px;
  backdrop-filter: none;
}

.hh-contact-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--hh-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hh-contact-info strong,
.hh-contact-info a {
  display: block;
  color: var(--hh-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hh-contact-info a {
  color: var(--hh-green-deep);
}

.hh-form {
  --hh-angle: 0deg;
  position: relative;
  isolation: isolate;
  grid-area: form;
  align-self: center;
  display: grid;
  gap: 8px;
  overflow: hidden;
  min-height: min(620px, 72vh);
  border: 2px solid rgba(22, 131, 74, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.7), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.28));
  padding: clamp(24px, 2.45vw, 34px);
  box-shadow: 0 30px 84px rgba(21, 45, 33, 0.14);
  backdrop-filter: blur(20px) saturate(150%);
}

.hh-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(from var(--hh-angle), transparent 0deg, transparent 62deg, rgba(22, 131, 74, 0.95) 112deg, rgba(255, 255, 255, 0.92) 146deg, rgba(126, 224, 170, 0.96) 186deg, transparent 250deg, transparent 360deg);
  animation: hhBorderFlow 8s linear infinite;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.hh-form > * {
  position: relative;
  z-index: 2;
}

.hh-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hh-form label {
  display: grid;
  gap: 8px;
  color: #2b352f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hh-form input,
.hh-form select,
.hh-form textarea {
  width: 100%;
  border: 1px solid #d8e3dc;
  border-radius: 8px;
  background: #f9fbfa;
  padding: 8px 11px;
  color: var(--hh-ink);
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.hh-form select {
  font-size: 12px;
}

.hh-form textarea {
  min-height: 76px;
  resize: vertical;
}

.hh-form input:focus,
.hh-form select:focus,
.hh-form textarea:focus {
  border-color: var(--hh-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 131, 74, 0.1);
}

.hh-honeypot {
  position: absolute;
  left: -9999px;
}

.hh-form-status {
  min-height: 22px;
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.hh-form-status.is-success {
  color: var(--hh-green);
}

.hh-form-status.is-error {
  color: #9f2a20;
}

.hh-submit {
  width: 100%;
}

.hh-partner-marquee {
  position: relative;
  grid-area: partners;
  align-self: end;
  z-index: 2;
  width: min(620px, 100%);
  max-width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.hh-partner-row {
  overflow: hidden;
}

.hh-partner-row + .hh-partner-row {
  border-top: 0;
  margin-top: 12px;
}

.hh-partner-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 0;
}

.hh-partner-marquee:hover .hh-partner-track {
  animation-play-state: paused;
}

.hh-partner-track-forward {
  animation: hhMarquee 88s linear infinite;
}

.hh-partner-track-reverse {
  animation: hhMarqueeReverse 96s linear infinite;
}

.hh-partner-track img {
  width: 96px;
  height: 74px;
  border: 1px solid rgba(224, 233, 227, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  object-fit: contain;
  padding: 14px;
  box-shadow: 0 16px 36px rgba(21, 45, 33, 0.06);
}

.hh-floating-cta {
  position: fixed;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  z-index: 40;
  display: grid;
  gap: 12px;
}

.hh-float-button {
  --hh-button-angle: 0deg;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(22, 131, 74, 0.94), rgba(8, 61, 39, 0.92)) padding-box,
    conic-gradient(from var(--hh-button-angle), rgba(126, 224, 170, 0), rgba(126, 224, 170, 0.95), rgba(255, 255, 255, 0.86), rgba(126, 224, 170, 0)) border-box;
  color: #fff;
  box-shadow: 0 18px 42px rgba(6, 35, 22, 0.22);
  animation: hhButtonBorder 8s linear infinite;
  backdrop-filter: blur(12px);
}

.hh-float-button span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hh-float-whatsapp span {
  font-size: 15px;
}

@property --hh-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --hh-button-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes hhBorderFlow {
  to {
    --hh-angle: 360deg;
  }
}

@keyframes hhButtonBorder {
  to {
    --hh-button-angle: 360deg;
  }
}

@keyframes hhMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes hhMarqueeReverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes hhRouteMove {
  to {
    stroke-dashoffset: -176;
  }
}

@keyframes hhHotspotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(126, 224, 170, 0.6);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(126, 224, 170, 0);
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes hhHotspotRing {
  0% {
    opacity: 0.8;
    transform: scale(0.55);
  }

  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@keyframes hhAboutFade {
  0%,
  42%,
  100% {
    opacity: 0;
  }

  8%,
  50% {
    opacity: 1;
  }
}

@keyframes hhNodeRise {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

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

@media (max-width: 1180px) {
  .hh-sidebar {
    width: 24vw;
  }

  .hh-main {
    width: 76vw;
    margin-left: 24vw;
  }

  .hh-global-layout,
  .hh-cert-layout,
  .hh-about-layout,
  .hh-contact-layout {
    grid-template-columns: 1fr;
  }

  .hh-contact-layout {
    grid-template-areas:
      "copy"
      "form"
      "partners";
    grid-template-rows: auto auto auto;
  }

  .hh-cert-layout .hh-section-copy {
    grid-template-columns: 1fr;
  }

  .hh-cert-layout .hh-section-copy p {
    justify-self: start;
  }

  .hh-about-media {
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-snap-type: none;
  }

  .hh-sidebar {
    width: 100%;
    height: 76px;
    overflow: visible;
    background: rgba(7, 26, 18, 0.96);
  }

  .hh-sidebar-bg,
  .hh-brand-desktop,
  .hh-sidebar-kicker,
  .hh-sidebar-foot {
    display: none;
  }

  .hh-sidebar-inner {
    display: block;
    height: auto;
    padding: 0;
  }

  .hh-mobile-bar {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 16px;
  }

  .hh-brand small {
    display: block;
    margin-top: 4px;
    font-size: 9px;
  }

  .hh-brand strong {
    font-size: 26px;
  }

  .hh-brand-mark {
    width: 42px;
    height: 42px;
  }

  .hh-menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
  }

  .hh-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .hh-sidebar-cover {
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 16px 18px;
    background: rgba(7, 26, 18, 0.98);
  }

  body.hh-nav-open .hh-sidebar-cover {
    display: block;
  }

  .hh-nav-link {
    min-height: 50px;
  }

  .hh-nav-link strong {
    padding-left: 0;
  }

  .hh-main {
    width: 100%;
    margin-left: 0;
    padding-top: 76px;
  }

  .hh-panel,
  .hh-panel-inner {
    height: auto;
    min-height: auto;
  }

  .hh-home,
  .hh-hot-products,
  .hh-projects {
    min-height: calc(100vh - 76px);
  }

  .hh-panel-inner {
    padding: 58px 20px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 54px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hh-global-reach #global-title {
    white-space: normal;
  }

  .hh-home-inner {
    gap: 34px;
  }

  .hh-stat-stack,
  .hh-product-stage,
  .hh-project-info dl,
  .hh-contact-info,
  .hh-form-row {
    grid-template-columns: 1fr;
  }

  .hh-stat-stack article {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 24, 20, 0.1);
  }

  .hh-stat-stack article:last-child {
    border-bottom: 0;
  }

  .hh-product-stage {
    height: auto;
    gap: 16px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hh-product-zone {
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(7, 26, 18, 0.68);
  }

  .hh-product-zone::before {
    opacity: 1;
  }

  .hh-product-zone > h3 {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: 28px 0 22px;
  }

  .hh-hotspot {
    left: auto !important;
    right: 26px;
    top: 42px !important;
    transform: none;
  }

  .hh-product-detail {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hh-product-zone:hover .hh-product-detail,
  .hh-product-zone.is-active .hh-product-detail {
    transform: none;
  }

  .hh-map-card,
  .hh-map-svg {
    position: relative;
    inset: auto;
    min-height: 420px;
    transform: none;
  }

  .hh-certificate-area {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hh-certificate-track {
    grid-auto-columns: minmax(250px, 82vw);
    padding-right: 34px;
  }

  .hh-certificate-caption {
    opacity: 1;
    transform: none;
  }

  .hh-carousel-button {
    opacity: 1;
  }

  .hh-cert-next {
    right: 0;
  }

  .hh-cert-prev {
    left: 0;
  }

  .hh-project-info {
    width: 100%;
    min-height: calc(100vh - 76px);
    align-content: end;
    padding: 58px 20px 96px;
  }

  .hh-project-controls {
    right: 20px;
    top: 96px;
    bottom: auto;
    opacity: 1;
    transform: none;
  }

  .hh-about-layout {
    gap: 34px;
  }

  .hh-about-media {
    min-height: 420px;
  }

  .hh-contact-layout {
    padding-bottom: 58px;
  }

  .hh-partner-marquee {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 22px;
  }

  .hh-floating-cta {
    right: 14px;
    bottom: 14px;
    gap: 9px;
  }

  .hh-float-button {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 520px) {
  .hh-panel-inner {
    padding: 50px 14px;
  }

  .hh-actions,
  .hh-button {
    width: 100%;
  }

  .hh-stat-stack strong {
    font-size: 42px;
  }

  .hh-certificate-card {
    min-height: 440px;
  }

  .hh-certificate-card img {
    height: 320px;
  }

  .hh-about-media {
    min-height: 360px;
  }

  .hh-about-image-main {
    width: 82%;
    height: 70%;
  }

  .hh-about-image-small {
    width: 58%;
    height: 40%;
  }

  .hh-partner-track img {
    width: 78px;
    height: 78px;
  }
}
