:root {
  --font-display: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", "Trebuchet MS", sans-serif;
  --green-950: #163f33;
  --green-900: #1f6348;
  --green-850: #23795a;
  --green-700: #2f9a66;
  --lime: #45b166;
  --lime-soft: #a7dbb0;
  --gold: #f1bd45;
  --gold-soft: #f7dfa0;
  --blue: #247ab8;
  --blue-soft: #dfeef7;
  --paper: #f5faf8;
  --surface: #ffffff;
  --surface-soft: #edf5f3;
  --text: #1f4035;
  --text-soft: #5e7168;
  --line: rgba(22, 63, 51, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-lg: 0 26px 60px rgba(22, 63, 51, 0.16);
  --shadow-md: 0 18px 40px rgba(22, 63, 51, 0.12);
  --shadow-sm: 0 10px 22px rgba(22, 63, 51, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--green-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__bar,
.section-width,
.section-shell,
.catalog-hero,
.detail-hero,
.site-footer__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header__bar {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  min-height: 94px;
  padding: 10px 0;
}

.site-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.site-header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  width: clamp(300px, 24vw, 390px);
  max-width: 390px;
  flex: 0 0 auto;
}

.site-brand__badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.site-brand__logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 20px rgba(5, 24, 18, 0.16));
}

.site-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--lime), #c5e784);
  color: var(--green-950);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-brand__text {
  display: none;
}

.site-header__navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.6vw, 22px);
  flex: 1;
  min-width: 0;
}

.site-nav,
.site-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(6px, .8vw, 10px);
  flex-wrap: nowrap;
  min-width: 0;
}

.site-nav {
  flex: 1 1 auto;
  justify-content: center;
}

.site-header__actions {
  flex: 0 0 auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 clamp(10px, .9vw, 14px);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-display);
  font-size: clamp(.88rem, .9vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-header__phone {
  display: inline-flex;
  flex-direction: column;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  white-space: nowrap;
}

.site-header__phone span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.76);
}

.site-header__phone strong {
  margin-top: 4px;
  font-size: 0.92rem;
}

.site-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.76);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-header__search:hover {
  transform: translateY(-1px);
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
}

.site-header__search-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.site-header__search-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -7px;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: center;
}

.site-nav__button,
.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  border: 0;
  font: inherit;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.015em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-nav__button {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  white-space: nowrap;
}

.site-nav__button:hover,
.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--gold), #ffd46e);
  color: var(--green-950);
  box-shadow: 0 14px 28px rgba(241, 189, 69, 0.28);
}

.button--ghost {
  color: var(--green-900);
  background: transparent;
  border: 1px solid rgba(31, 99, 72, 0.18);
}

.button--ghost-light,
.industrial-hero .button--ghost,
.site-footer .button--ghost,
.cta-stage .button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.button--inline {
  min-height: 44px;
  padding: 0 16px;
  background: var(--blue-soft);
  border: 1px solid rgba(36, 122, 184, 0.26);
  color: var(--green-900);
}

.text-link {
  min-height: auto;
  padding: 0;
  color: var(--blue);
  box-shadow: none;
}

.text-link--light {
  color: var(--gold-soft);
}

.site-main {
  padding: 0 0 84px;
}

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

.eyebrow,
.site-footer__eyebrow,
.product-card__eyebrow {
  display: inline-block;
  margin: 0;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.industrial-hero {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
}

.industrial-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 63, 51, 0.92) 0%, rgba(22, 63, 51, 0.78) 38%, rgba(22, 63, 51, 0.28) 76%, rgba(22, 63, 51, 0.14) 100%),
    linear-gradient(135deg, rgba(36, 122, 184, 0.22), rgba(241, 189, 69, 0.16), rgba(31, 99, 72, 0.08));
  background-size: cover;
  background-position: 42% center;
}

.industrial-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(31, 99, 72, 0), rgba(31, 99, 72, 0.42));
  pointer-events: none;
}

.industrial-hero__grid {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  min-height: clamp(520px, 56vh, 620px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
  gap: 24px;
  align-items: center;
  padding: 48px 0 56px;
}

.industrial-hero__copy {
  grid-column: 2;
  justify-self: end;
  max-width: 540px;
  margin-left: 0;
  padding: 30px 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(8, 27, 22, 0.3), rgba(8, 27, 22, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 52px rgba(7, 25, 18, 0.22);
  backdrop-filter: blur(8px);
  color: #fff;
}

.industrial-hero__eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.industrial-hero__copy h1,
.statement-slab__line,
.section-head h2,
.catalog-hero h1,
.detail-hero__copy h1,
.site-footer__cta h2,
.site-footer__inquiry-copy h2,
.consult-strip__copy h2,
.cta-stage__content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.industrial-hero__copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  text-wrap: balance;
}

.industrial-hero__copy p {
  max-width: 480px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.62;
  letter-spacing: 0.005em;
}

.industrial-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.industrial-hero__aside {
  grid-column: 2;
  justify-self: end;
  width: min(100%, 380px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.catalog-stage,
.detail-stage {
  padding-top: 44px;
}

.catalog-stage {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 28px;
  display: grid;
  gap: 18px;
}

.catalog-stage__hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(22, 63, 51, 0.92) 0%, rgba(22, 63, 51, 0.78) 36%, rgba(22, 63, 51, 0.18) 74%, rgba(22, 63, 51, 0.08) 100%),
    linear-gradient(135deg, rgba(36, 122, 184, 0.2), rgba(241, 189, 69, 0.14), rgba(31, 99, 72, 0.08));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.catalog-stage__hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 690px;
  margin: 24px;
  padding: 30px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(8, 27, 22, 0.52), rgba(8, 27, 22, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
}

.catalog-stage__hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.catalog-stage__hero-copy p:not(.industrial-hero__eyebrow) {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.58;
}

.catalog-stage__hero-copy .industrial-hero__actions {
  margin-top: 0;
}

.catalog-stage__hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-stage__hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-stage__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.52fr);
  gap: 16px;
  padding: 20px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.detail-stage {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto 34px;
}

.detail-stage__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.86fr);
  gap: 26px;
  align-items: stretch;
  padding: 30px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(22, 63, 51, 0.98) 0%, rgba(22, 63, 51, 0.92) 42%, rgba(36, 122, 184, 0.48) 76%, rgba(241, 189, 69, 0.3) 100%);
  box-shadow: var(--shadow-lg);
}

.detail-stage__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 10px 18px 10px;
  color: #fff;
}

.detail-stage__copy .product-card__sku,
.detail-stage__copy .industrial-hero__eyebrow {
  color: #fff;
}

.detail-stage__copy .product-card__sku {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.detail-stage__copy h1 {
  margin: 14px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.detail-stage__copy .detail-hero__lead {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.72;
}

.detail-stage__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.industrial-stat {
  padding: 18px;
  border-radius: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

.industrial-stat span,
.industrial-stat small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.industrial-stat strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 2.1rem;
  line-height: 1;
}

.industrial-stat--compact span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industrial-stat--compact strong {
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.08;
}

.industrial-stat--compact small {
  line-height: 1.42;
}

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

.industrial-stat--split strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.statement-slab {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.66fr);
  gap: 38px;
  align-items: start;
  padding: 52px 0 30px;
}

.statement-slab__headline {
  line-height: 0.88;
}

.statement-slab__line {
  display: block;
  font-size: clamp(3.3rem, 7vw, 6.7rem);
}

.statement-slab__line--dark {
  color: var(--green-900);
}

.statement-slab__line--green {
  color: var(--gold);
}

.statement-slab__copy {
  display: grid;
  gap: 24px;
  padding-top: 10px;
}

.statement-slab__copy p {
  margin: 0;
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  line-height: 1.56;
  color: var(--text);
}

.showcase-band {
  position: relative;
  overflow: hidden;
  padding: 12px 0 78px;
  background:
    radial-gradient(circle at 8% 14%, rgba(241, 189, 69, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(245, 250, 248, 0) 0%, rgba(237, 245, 243, 0.72) 100%);
}

.showcase-band__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.showcase-band__head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 0.98;
  color: var(--green-950);
}

.showcase-band__carousel {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.showcase-band__viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.showcase-band__viewport::-webkit-scrollbar {
  display: none;
}

.showcase-band__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, calc((100% - 48px) / 3));
  gap: 24px;
  padding: 4px 2px 14px;
}

.showcase-band__slide {
  min-width: 0;
  scroll-snap-align: start;
}

.showcase-card {
  position: relative;
  display: block;
  min-height: 330px;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
  background: var(--green-950);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 27, 22, 0.05), rgba(8, 27, 22, 0.52)),
    linear-gradient(115deg, rgba(8, 27, 22, 0.18), transparent 58%);
  pointer-events: none;
}

.showcase-card__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(22, 63, 51, 0.14), rgba(22, 63, 51, 0.56)),
    linear-gradient(135deg, rgba(36, 122, 184, 0.22), rgba(31, 99, 72, 0.08));
  background-size: cover;
  background-position: center;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 0.28s ease;
}

.showcase-card:hover .showcase-card__media {
  transform: scale(1.055);
}

.showcase-card__label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  padding: 18px 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(8, 27, 22, 0.78), rgba(8, 27, 22, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  color: #fff;
}

.showcase-card__label strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.04;
  text-transform: uppercase;
}

.showcase-card__label span {
  display: inline-block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.showcase-band__controls {
  margin-top: 18px;
}

.company-photo-wall {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 72px;
}

.company-photo-wall__head {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 189, 69, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(22, 63, 51, 0.98), rgba(31, 99, 72, 0.92));
  box-shadow: var(--shadow-md);
  color: #fff;
}

.company-photo-wall__head::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 28px solid rgba(255, 255, 255, 0.08);
}

.company-photo-wall__head .eyebrow {
  color: var(--gold-soft);
}

.company-photo-wall__head h2 {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  max-width: 520px;
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.company-photo-wall__head p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.company-photo-wall__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.company-photo-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  background: var(--green-900);
  box-shadow: var(--shadow-md);
}

.company-photo-card--1 {
  grid-column: span 3;
}

.company-photo-card--2 {
  grid-column: span 3;
}

.company-photo-card--3 {
  grid-column: span 6;
  min-height: 310px;
}

.company-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.company-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 27, 22, 0.04) 0%, rgba(8, 27, 22, 0.7) 100%),
    linear-gradient(90deg, rgba(22, 63, 51, 0.32), transparent 58%);
  pointer-events: none;
}

.company-photo-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.03);
}

.company-photo-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(8, 27, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  color: #fff;
}

.company-photo-card figcaption span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-photo-card figcaption strong {
  font-size: 1.12rem;
  line-height: 1.24;
}

.trust-proof {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
  display: grid;
  gap: 16px;
}

.trust-proof__trustbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.trust-proof__trustbar span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbfa 0%, #edf5f2 100%);
  border: 1px solid rgba(22, 63, 51, 0.1);
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
}

.trust-proof__trustbar i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(31, 99, 72, 0.12);
  font-style: normal;
}

.trust-proof__banner {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 189, 69, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(22, 63, 51, 0.98), rgba(31, 99, 72, 0.92));
  box-shadow: var(--shadow-md);
  color: #fff;
}

.trust-proof__banner-copy {
  display: grid;
  gap: 8px;
}

.trust-proof__banner .eyebrow {
  margin: 0;
  color: var(--gold-soft);
}

.trust-proof__banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.trust-proof__banner p:not(.eyebrow) {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.56;
}

.trust-proof__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-proof__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-proof__cards {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 18px;
}

.trust-proof-card-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.trust-proof-card-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.trust-proof-card-panel__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.trust-proof-card-panel__copy .eyebrow {
  margin: 0;
}

.trust-proof-card-panel__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.trust-proof-card-panel__pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid rgba(22, 63, 51, 0.12);
  color: var(--green-900);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-proof__social-frame {
  position: relative;
  overflow: hidden;
  min-height: 332px;
  border-radius: 18px;
  border: 1px solid rgba(22, 63, 51, 0.14);
  background: #f7faf9;
}

.trust-proof__social-frame iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 332px;
  border: 0;
  background: transparent;
}

.trust-proof__social-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(
      -45deg,
      rgba(36, 122, 184, 0.06),
      rgba(36, 122, 184, 0.06) 12px,
      rgba(22, 63, 51, 0.03) 12px,
      rgba(22, 63, 51, 0.03) 24px
    );
  color: var(--text);
  transition: opacity 0.28s ease;
}

.trust-proof__social-placeholder strong {
  max-width: 360px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.34;
}

.trust-proof__social-placeholder span {
  max-width: 360px;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.44;
}

.trust-proof__social-frame.is-ready .trust-proof__social-placeholder {
  opacity: 0;
  pointer-events: none;
}

.trust-proof__social-frame.is-fallback {
  border-style: dashed;
}

.trust-proof__panel-button {
  justify-self: start;
  min-height: 46px;
  padding: 0 18px;
}

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

.trust-proof-card {
  margin: 0;
}

.trust-proof-card__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  background: #e7efeb;
  cursor: pointer;
}

.trust-proof-card__placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 8%,
      rgba(255, 255, 255, 0.52) 18%,
      rgba(255, 255, 255, 0) 33%
    ),
    linear-gradient(135deg, rgba(22, 63, 51, 0.07), rgba(36, 122, 184, 0.12));
  background-size: 220% 100%, 100% 100%;
  animation: trustProofShimmer 1.6s linear infinite;
  transition: opacity 0.25s ease;
}

.trust-proof-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.28s ease;
}

.trust-proof-card.is-loaded .trust-proof-card__placeholder,
.trust-proof-card.is-error .trust-proof-card__placeholder {
  opacity: 0;
}

.trust-proof-card:hover img,
.trust-proof-card:focus-within img {
  transform: scale(1.06);
}

.trust-proof-card figcaption {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.38;
  font-weight: 600;
}

.trust-proof__gallery-empty {
  display: grid;
  gap: 12px;
}

.trust-proof__gallery-empty img,
.trust-proof__empty-mark {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
}

.trust-proof__empty-mark {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(241, 189, 69, 0.25), transparent 36%),
    linear-gradient(135deg, var(--green-950), var(--green-900));
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trust-proof__gallery-empty-copy {
  display: grid;
  gap: 6px;
}

.trust-proof__gallery-empty-copy strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--green-900);
}

.trust-proof__gallery-empty-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.52;
}

.trust-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-proof-stat {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.trust-proof-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
  color: var(--green-900);
}

.trust-proof-stat span {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.trust-proof__cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 189, 69, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(22, 63, 51, 0.98), rgba(31, 99, 72, 0.92));
  box-shadow: var(--shadow-md);
  color: #fff;
}

.trust-proof__cta-copy {
  display: grid;
  gap: 4px;
  max-width: 700px;
}

.trust-proof__cta-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.4rem);
  line-height: 1.1;
}

.trust-proof__cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.trust-proof-lightbox[hidden] {
  display: none;
}

.trust-proof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.trust-proof-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 24, 17, 0.78);
  cursor: pointer;
}

.trust-proof-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(980px, calc(100% - 34px));
  max-height: calc(100vh - 34px);
  margin: 17px auto;
  padding: 54px 24px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.34);
}

.trust-proof-lightbox__dialog img {
  width: 100%;
  max-height: calc(100vh - 188px);
  border-radius: 16px;
  object-fit: contain;
  background: #f2f5f4;
}

.trust-proof-lightbox__caption {
  margin: 0;
  color: var(--text-soft);
  text-align: center;
}

.trust-proof-lightbox__close,
.trust-proof-lightbox__nav {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 63, 51, 0.86);
  color: #fff;
  cursor: pointer;
}

.trust-proof-lightbox__close {
  top: 10px;
  right: 10px;
  font-size: 1.9rem;
  line-height: 1;
}

.trust-proof-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}

.trust-proof-lightbox__nav--prev {
  left: 10px;
}

.trust-proof-lightbox__nav--next {
  right: 10px;
}

body.proof-lightbox-open {
  overflow: hidden;
}

.consult-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.78fr);
  margin-bottom: 72px;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(241, 189, 69, 0.96), rgba(69, 177, 102, 0.92));
  box-shadow: var(--shadow-lg);
}

.consult-strip__copy {
  position: relative;
  padding: 56px 52px;
  background: #fff;
}

.consult-strip__copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: -140px;
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, rgba(241, 189, 69, 0.96), rgba(69, 177, 102, 0.92));
  transform: skewX(-22deg);
}

.consult-strip__copy > * {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.consult-strip__copy h2 {
  margin-top: 10px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  color: var(--green-900);
}

.consult-strip__copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.62;
}

.consult-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.consult-strip__visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(22, 63, 51, 0.08), rgba(22, 63, 51, 0.34)),
    linear-gradient(135deg, rgba(36, 122, 184, 0.12), rgba(241, 189, 69, 0.18));
  background-size: cover;
  background-position: center;
}

.consult-strip__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(241, 189, 69, 0.12), rgba(31, 99, 72, 0.12));
}

.consult-strip__visual-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px;
  text-align: center;
  color: #fff;
}

.consult-strip__visual-fallback span {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.consult-strip__visual-fallback strong {
  max-width: 280px;
  font-size: 1.25rem;
  line-height: 1.4;
}

.section-shell {
  margin: 0 auto 72px;
}

.section-shell--dark {
  padding: 54px;
  border-radius: 38px;
  background: var(--green-900);
  box-shadow: var(--shadow-lg);
}

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

.section-head h2,
.catalog-hero h1,
.detail-hero__copy h1,
.site-footer__cta h2,
.site-footer__inquiry-copy h2,
.cta-stage__content h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.section-head--light h2,
.section-head--light .eyebrow {
  color: #fff;
}

.category-grid,
.product-grid,
.detail-hero__facts {
  display: grid;
  gap: 20px;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.category-card {
  display: block;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.product-card:hover,
.category-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card strong {
  display: block;
  font-size: 1.16rem;
}

.category-card span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
}

.category-card--dark {
  background: rgba(36, 122, 184, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.category-card--dark span {
  color: rgba(255, 255, 255, 0.72);
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.product-grid--catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(22, 63, 51, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card__media,
.detail-hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(36, 122, 184, 0.14), rgba(241, 189, 69, 0.12), rgba(31, 99, 72, 0.04));
}

.product-card__media {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.product-slider {
  isolation: isolate;
}

.product-slider__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: pan-y;
}

.product-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.product-slider__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.product-card__media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-card__media-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 28, 15, 0.18) 0%, rgba(8, 28, 15, 0.76) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 30px rgba(5, 20, 11, 0.2);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.product-card__media-eyebrow {
  margin: 0;
  color: rgba(234, 248, 224, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card__media-title {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.22;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.product-slider.has-multiple .product-card__media-overlay {
  padding-right: 78px;
}

.product-slider--clean .product-slider__dots {
  left: 16px;
  bottom: 16px;
}

.product-slider__nav {
  position: absolute;
  top: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-950);
  box-shadow: 0 14px 24px rgba(6, 23, 14, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.product-slider__nav:hover,
.product-slider__nav:focus-visible {
  background: #fff;
  transform: translateY(-1px);
}

.product-slider__nav:focus-visible,
.product-slider__dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 2px;
}

.product-slider__nav--prev {
  right: 66px;
}

.product-slider__nav--next {
  right: 18px;
}

.product-slider__nav span {
  font-size: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.product-slider__dots {
  position: absolute;
  left: 18px;
  bottom: 94px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.product-slider__dot.is-active {
  width: 28px;
  background: var(--gold);
}

.product-card__media img,
.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__media span,
.detail-hero__media span {
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(34, 52, 37, 0.42);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
  padding: 18px 18px 20px;
}

.product-card__head,
.product-card__badges {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.product-card__badges {
  flex-wrap: wrap;
}

.product-card__badge,
.product-card__availability {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.product-card__badge {
  max-width: 100%;
  overflow: hidden;
  color: var(--green-950);
  background: rgba(31, 99, 72, 0.08);
  border: 1px solid rgba(31, 99, 72, 0.12);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card__availability {
  color: var(--green-900);
  background: rgba(58, 176, 92, 0.12);
  border: 1px solid rgba(58, 176, 92, 0.18);
}

.product-card__availability.is-inquiry {
  color: #775315;
  background: rgba(245, 206, 98, 0.18);
  border-color: rgba(245, 206, 98, 0.28);
}

.product-card__sku {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid rgba(36, 122, 184, 0.2);
  color: var(--green-900);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.product-card__body h3 {
  margin: 0;
  min-height: 2.6em;
  font-size: 1.08rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__body p,
.catalog-hero > div > p,
.detail-hero__lead,
.cta-stage__content p,
.site-footer__cta p,
.site-footer__inquiry-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 2px;
}

.product-card__price {
  color: var(--green-950);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.1;
}

.product-card__price.is-inquiry {
  color: var(--green-900);
  font-size: 0.98rem;
  font-weight: 700;
}

.product-card__unit {
  color: var(--text-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

.product-card__meta strong,
.detail-hero__facts strong {
  font-size: 1.14rem;
}

.product-card__meta span,
.detail-hero__facts span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.product-card__actions {
  margin-top: 0;
}

.product-card__actions .button {
  width: 100%;
  min-height: 46px;
  justify-content: center;
}

.section-shell__actions {
  display: flex;
  margin-top: 22px;
}

.section-shell__actions--center {
  justify-content: center;
}

.product-card--compact .product-card__media-link {
  z-index: 2;
}

.product-card--compact .product-slider__nav,
.product-card--compact .product-slider__dots {
  z-index: 5;
}

.product-carousel {
  position: relative;
}

.product-carousel__viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.product-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.product-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 48px) / 3));
  gap: 24px;
  padding: 2px 2px 8px;
}

.product-carousel__slide {
  min-width: 0;
  scroll-snap-align: start;
}

.product-carousel__slide .product-card {
  height: 100%;
}

.product-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.product-carousel__button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-950);
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.product-carousel__button:hover,
.product-carousel__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--gold);
}

.product-carousel__button span {
  font-size: 1.7rem;
  line-height: 1;
}

.product-carousel__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.product-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 99, 72, 0.2);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.product-carousel__dot.is-active {
  width: 28px;
  background: var(--green-900);
}

.product-carousel__button:focus-visible,
.product-carousel__dot:focus-visible {
  outline: 2px solid rgba(31, 99, 72, 0.46);
  outline-offset: 3px;
}

.empty-panel {
  padding: 36px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.empty-panel h3 {
  margin: 0 0 14px;
  font-size: 1.8rem;
}

.catalog-hero {
  margin-top: 40px;
  margin-bottom: 24px;
  display: grid;
  gap: 24px;
  padding: 42px;
  border-radius: 36px;
  background: #fff;
  border-top: 8px solid var(--lime);
  box-shadow: var(--shadow-lg);
}

.catalog-filter {
  display: grid;
  grid-template-columns: 1.45fr minmax(220px, 0.78fr) auto;
  gap: 12px;
  align-items: end;
}

.catalog-filter__intro {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
}

.catalog-filter__intro .eyebrow {
  margin: 0;
}

.catalog-filter__intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 2vw, 1.6rem);
  line-height: 1.12;
  color: var(--green-900);
}

.catalog-filter__intro p:last-child {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.52;
}

.catalog-filter label,
.site-inquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.catalog-filter label span {
  color: var(--green-900);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-filter input,
.catalog-filter select,
.site-inquiry-form input,
.site-inquiry-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(31, 99, 72, 0.14);
  background: linear-gradient(180deg, #fff 0%, #f7fbf9 100%);
  color: var(--text);
  font: inherit;
}

.catalog-filter input:focus,
.catalog-filter select:focus,
.site-inquiry-form input:focus,
.site-inquiry-form textarea:focus {
  outline: none;
  border-color: rgba(36, 122, 184, 0.62);
  box-shadow: 0 0 0 4px rgba(36, 122, 184, 0.14);
}

.catalog-filter__actions,
.site-inquiry-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.catalog-filter__actions .button {
  min-height: 50px;
}

.catalog-hero__summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
  border: 1px solid rgba(22, 63, 51, 0.1);
}

.catalog-hero__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--green-900);
  color: var(--lime-soft);
  font-size: 1.8rem;
  font-weight: 900;
}

.catalog-hero__summary strong {
  display: block;
  color: var(--green-900);
  font-size: 1.04rem;
}

.catalog-hero__summary p {
  margin: 6px 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.catalog-stage__summary {
  display: grid;
  gap: 12px;
}

.catalog-stage__summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-stage__summary-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid rgba(22, 63, 51, 0.12);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-shell--tight {
  margin-bottom: 24px;
}

.category-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(22, 63, 51, 0.08);
  font-weight: 800;
}

.category-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--green-900);
  font-size: 0.78rem;
}

.category-chip.is-active {
  background: linear-gradient(135deg, var(--gold), #ffd46e);
  border-color: var(--gold);
  color: var(--green-950);
}

.category-chip.is-active span {
  background: rgba(255, 255, 255, 0.5);
}

.catalog-results__note {
  margin: 10px 0 0;
  max-width: 640px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.56;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 34px;
}

.detail-hero__media {
  min-height: 540px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
}

.detail-hero__copy {
  padding: 42px;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.detail-hero__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.detail-hero__copy h1 {
  margin-top: 12px;
}

.detail-hero__lead {
  margin-top: 18px;
  font-size: 1.1rem;
}

.detail-hero__facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.detail-hero__facts--guide {
  align-items: stretch;
}

.detail-hero__facts div,
.detail-hero__note {
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--surface-soft);
}

.detail-guide-card {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 24px 26px;
  border: 1px solid rgba(22, 63, 51, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 189, 69, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #edf5f3 100%);
  box-shadow: var(--shadow-sm);
}

.detail-guide-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--green-700));
}

.detail-guide-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(31, 99, 72, 0.08);
  color: var(--green-900);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-guide-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 800;
  line-height: 1.55;
}

.detail-hero__note {
  margin-top: 20px;
}

.detail-hero__note--client {
  border: 1px solid rgba(31, 99, 72, 0.08);
  background:
    linear-gradient(135deg, rgba(22, 63, 51, 0.06), rgba(241, 189, 69, 0.1)),
    #fff;
}

.detail-hero__note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.cta-stage {
  margin-bottom: 0;
}

.cta-stage__content {
  min-height: 250px;
  padding: 52px 56px;
  border-radius: 38px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 63, 51, 0.96) 0%, rgba(22, 63, 51, 0.88) 36%, rgba(36, 122, 184, 0.42) 76%, rgba(241, 189, 69, 0.26) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow-lg);
}

.cta-stage--photo .cta-stage__content {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 63, 51, 0.96) 0%, rgba(22, 63, 51, 0.88) 42%, rgba(22, 63, 51, 0.34) 100%),
    var(--cta-photo),
    linear-gradient(135deg, rgba(36, 122, 184, 0.3), rgba(241, 189, 69, 0.18));
  background-size: cover;
  background-position: center;
}

.cta-stage--photo .cta-stage__content::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 30px solid rgba(255, 255, 255, 0.08);
}

.cta-stage--photo .cta-stage__content > * {
  position: relative;
  z-index: 1;
}

.cta-stage__content p {
  margin-top: 18px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.cta-stage__content .button {
  margin-top: 26px;
}

.site-footer {
  margin-top: 76px;
  padding: 70px 0 78px;
  background: var(--green-900);
  color: #fff;
}

.site-footer__inner {
  width: min(1200px, calc(100% - 48px));
}

.site-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(36, 122, 184, 0.18), rgba(241, 189, 69, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.site-footer__cta .site-footer__eyebrow,
.site-footer__inquiry-copy .site-footer__eyebrow {
  color: var(--gold-soft);
}

.site-footer__cta h2,
.site-footer__inquiry-copy h2 {
  margin-top: 10px;
  color: #fff;
}

.site-footer__cta p {
  margin-top: 12px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

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

.site-footer__cta-actions .button {
  min-width: 172px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.78fr 0.88fr 1fr;
  gap: 24px;
  padding: 32px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__column h3,
.site-footer__column h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer__column p,
.site-footer__legal,
.site-footer__links a,
.site-footer__contactlist strong,
.site-footer__contactlist span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.58;
}

.site-footer__brandmark {
  width: min(400px, 100%);
  margin-bottom: 12px;
}

.site-footer__brandlogo {
  width: 100%;
  height: auto;
  background: none;
  padding: 0;
}

.site-footer__brandfallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: var(--lime);
  color: var(--green-950);
  font-weight: 900;
}

.site-footer__legal {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.86rem;
}

.site-footer__links,
.site-footer__contactlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer__admin-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.site-footer__admin-link:hover,
.site-footer__admin-link:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__links a:hover {
  color: var(--lime-soft);
}

.site-footer__contactlink {
  color: #fff;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer__contactlink:hover,
.site-footer__contactlink:focus-visible {
  color: var(--gold-soft);
}

.site-footer__contactlist li {
  display: grid;
  gap: 4px;
}

.site-footer__contactlist span {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.56);
}

.talk-widget {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 120;
  font-family: var(--font-body);
}

.talk-widget__button {
  display: grid;
  place-items: center;
  gap: 8px;
  width: 118px;
  min-height: 96px;
  padding: 16px 14px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(22, 63, 51, 0.92), rgba(31, 99, 72, 0.82));
  box-shadow: 0 18px 40px rgba(7, 31, 22, 0.28);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.talk-widget__button:hover,
.talk-widget__button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(7, 31, 22, 0.34);
}

.talk-widget__button strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.talk-widget__icon,
.talk-widget__option-icon--chat {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 18px;
}

.talk-widget__icon::before,
.talk-widget__option-icon--chat::before {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -9px;
  width: 12px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-bottom-left-radius: 8px;
}

.talk-widget__icon::after,
.talk-widget__option-icon--chat::after {
  content: "";
  position: absolute;
  right: -9px;
  top: -8px;
  width: 30px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 16px;
  background: transparent;
}

.talk-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(270px, 1.08fr);
  width: min(560px, calc(100vw - 34px));
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 31, 22, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.98);
  transform-origin: right bottom;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.talk-widget.is-open .talk-widget__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.talk-widget__close {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.talk-widget__call {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 245px;
  padding: 58px 34px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 189, 69, 0.18), transparent 32%),
    linear-gradient(135deg, #052a12, #063716);
}

.talk-widget__call span {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 900;
  line-height: 1.08;
}

.talk-widget__call a,
.talk-widget__call strong {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.talk-widget__options {
  display: grid;
  align-content: stretch;
}

.talk-widget__option {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 31px 28px;
  color: var(--text);
  background: #fff;
  border-bottom: 1px solid rgba(22, 63, 51, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.talk-widget__option:last-child {
  border-bottom: 0;
}

.talk-widget__option:hover,
.talk-widget__option:focus-visible {
  color: var(--green-900);
  background: #f6faf8;
}

.talk-widget__option strong {
  display: block;
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.2;
}

.talk-widget__option small {
  display: block;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.32;
}

.talk-widget__option-icon {
  color: var(--green-900);
}

.talk-widget__option-icon--mail {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 30px;
  border: 3px solid currentColor;
}

.talk-widget__option-icon--mail::before,
.talk-widget__option-icon--mail::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 24px;
  height: 3px;
  background: currentColor;
  transform-origin: center;
}

.talk-widget__option-icon--mail::before {
  left: -1px;
  transform: rotate(34deg);
}

.talk-widget__option-icon--mail::after {
  right: -1px;
  transform: rotate(-34deg);
}

.site-footer__inquiry {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 28px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__inquiry-copy p:not(.site-footer__eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.56;
}

.site-footer__formwrap {
  display: grid;
  gap: 14px;
}

.site-alert {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
}

.site-alert--success {
  color: #f8efd2;
  background: rgba(36, 122, 184, 0.16);
  border-color: rgba(36, 122, 184, 0.28);
}

.site-alert--error {
  color: #ffd6d6;
  background: rgba(190, 62, 62, 0.16);
  border-color: rgba(190, 62, 62, 0.28);
}

.site-inquiry-form {
  display: grid;
  gap: 14px;
}

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

.site-inquiry-form label span {
  color: rgba(255, 255, 255, 0.92);
}

.site-inquiry-form textarea {
  resize: vertical;
  min-height: 150px;
}

.site-inquiry-form__actions {
  justify-content: space-between;
}

.site-inquiry-form__actions span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.hero-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.site-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-page-loader__track,
.site-page-loader__bar,
.site-page-loader__glow {
  position: absolute;
  inset: 0;
}

.site-page-loader__track {
  background: rgba(22, 63, 51, 0.18);
}

.site-page-loader__bar {
  width: 34%;
  background: linear-gradient(90deg, rgba(69, 177, 102, 0) 0%, var(--gold) 24%, var(--lime) 72%, rgba(36, 122, 184, 0.9) 100%);
  transform: translateX(-120%);
}

.site-page-loader__glow {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0;
}

body.site-is-loading .site-page-loader {
  opacity: 1;
  visibility: visible;
}

body.site-is-loading .site-page-loader__bar {
  animation: siteLoaderRun 1.2s cubic-bezier(0.37, 0, 0.2, 1) infinite;
}

body.site-is-loading .site-page-loader__glow {
  animation: siteLoaderGlow 1.2s ease infinite;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.985);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal--fade {
  transform: none;
}

.reveal-on-scroll.reveal--left {
  transform: translate3d(-38px, 18px, 0) scale(0.985);
}

.reveal-on-scroll.reveal--right {
  transform: translate3d(38px, 18px, 0) scale(0.985);
}

.reveal-on-scroll.reveal--zoom {
  transform: translate3d(0, 24px, 0) scale(0.94);
}

.reveal-on-scroll.reveal--hero {
  transform: translate3d(0, 28px, 0) scale(0.978);
}

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

.site-motion-enhanced .site-nav a {
  position: relative;
  overflow: hidden;
}

.site-motion-enhanced .site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(255, 255, 255, 0.14));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

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

.site-motion-enhanced .motion-surface {
  backface-visibility: hidden;
  transform: translate3d(var(--motion-x, 0), calc(var(--motion-y, 0) - var(--surface-lift, 0)), 0)
    rotateX(var(--motion-rx, 0))
    rotateY(var(--motion-ry, 0));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease;
}

.site-motion-enhanced .motion-surface.motion-surface--card:hover {
  --surface-lift: 6px;
}

.site-motion-enhanced .motion-surface.motion-surface--button:hover {
  --surface-lift: 3px;
}

.site-motion-enhanced .button,
.site-motion-enhanced .site-nav__button,
.site-motion-enhanced .site-header__phone,
.site-motion-enhanced .site-header__search {
  overflow: hidden;
}

.site-motion-enhanced .showcase-card__media,
.site-motion-enhanced .product-slider__track,
.site-motion-enhanced .product-card__media img,
.site-motion-enhanced .detail-hero__media img {
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.site-motion-enhanced .product-card:hover .product-card__media img,
.site-motion-enhanced .detail-stage__visual:hover .detail-hero__media img {
  transform: scale(1.045);
}

.site-motion-enhanced .site-footer__links a,
.site-motion-enhanced .text-link {
  transition: color 0.24s ease, transform 0.24s ease;
}

.site-motion-enhanced .site-footer__links a:hover,
.site-motion-enhanced .text-link:hover {
  transform: translateX(4px);
}

@keyframes trustProofShimmer {
  0% {
    background-position: 200% 0, 0 0;
  }
  100% {
    background-position: -20% 0, 0 0;
  }
}

@keyframes siteLoaderRun {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(360%);
  }
}

@keyframes siteLoaderGlow {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-page-loader {
    display: none;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.reveal--left,
  .reveal-on-scroll.reveal--right,
  .reveal-on-scroll.reveal--zoom,
  .reveal-on-scroll.reveal--hero,
  .site-motion-enhanced .motion-surface,
  .site-motion-enhanced .showcase-card__media,
  .company-photo-card img,
  .site-motion-enhanced .product-slider__track,
  .site-motion-enhanced .product-card__media img,
  .site-motion-enhanced .detail-hero__media img,
  .trust-proof-card img,
  .trust-proof-card__placeholder,
  .site-motion-enhanced .site-footer__links a,
  .site-motion-enhanced .text-link,
  .site-motion-enhanced .site-nav a::after {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1200px) {
  .site-header__bar,
  .section-width,
  .section-shell,
  .catalog-hero,
  .detail-hero,
  .site-footer__inner {
    width: min(1320px, calc(100% - 34px));
  }

  .catalog-stage,
  .detail-stage {
    width: min(1320px, calc(100% - 34px));
  }

  .site-header__bar {
    position: relative;
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-brand {
    width: min(390px, calc(100% - 70px));
    max-width: min(390px, calc(100% - 70px));
  }

  .site-header__menu-toggle {
    display: inline-flex;
  }

  .site-header__navwrap {
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    right: 0;
    z-index: 80;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(31, 99, 72, 0.98);
    box-shadow: var(--shadow-lg);
  }

  body.site-nav-open .site-header__navwrap {
    display: flex;
  }

  body.site-nav-open .site-header__menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.site-nav-open .site-header__menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.site-nav-open .site-header__menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav,
  .site-header__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .industrial-hero__grid,
  .statement-slab,
  .company-photo-wall,
  .consult-strip,
  .detail-hero,
  .detail-stage__hero,
  .site-footer__inquiry,
  .site-footer__cta {
    grid-template-columns: 1fr;
  }

  .industrial-hero__aside {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industrial-hero__copy {
    grid-column: auto;
    margin-left: 0;
  }

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

  .catalog-stage__panel {
    grid-template-columns: 1fr;
  }

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

  .trust-proof {
    width: min(1180px, calc(100% - 34px));
  }

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

  .trust-proof__cards {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  }

  .company-photo-card--1,
  .company-photo-card--2,
  .company-photo-card--3 {
    grid-column: auto;
  }
}

@media (max-width: 920px) {
  .product-grid,
  .category-grid,
  .site-inquiry-form__grid,
  .detail-hero__facts,
  .industrial-hero__aside,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .catalog-stage__hero {
    min-height: 380px;
  }

  .detail-stage__hero {
    padding: 24px;
  }

  .catalog-filter {
    grid-template-columns: 1fr;
  }

  .trust-proof__cards {
    grid-template-columns: 1fr;
  }

  .trust-proof__social-frame,
  .trust-proof__social-frame iframe {
    min-height: 330px;
  }

  .consult-strip__copy::after {
    display: none;
  }

  .consult-strip__copy {
    padding-right: 40px;
  }

  .showcase-band__track {
    grid-auto-columns: minmax(280px, calc((100% - 20px) / 2));
    gap: 20px;
  }

  .showcase-card {
    clip-path: none;
    border-radius: 30px;
  }

  .statement-slab__copy {
    padding-top: 0;
  }

  .product-card__media {
    min-height: 230px;
  }

  .product-carousel__track {
    grid-auto-columns: minmax(270px, calc((100% - 20px) / 2));
    gap: 20px;
  }

  .product-card__media-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 13px 14px;
  }

  .product-slider.has-multiple .product-card__media-overlay {
    padding-right: 14px;
    padding-bottom: 38px;
  }

  .product-slider__nav {
    top: 14px;
    width: 38px;
    height: 38px;
  }

  .product-slider__nav--prev {
    right: 58px;
  }

  .product-slider__nav--next {
    right: 14px;
  }

  .product-slider__dots {
    left: 14px;
    right: 14px;
    bottom: 20px;
    justify-content: flex-start;
  }

  .company-photo-wall__grid {
    grid-template-columns: 1fr;
  }

  .company-photo-card {
    min-height: 290px;
  }

  .company-photo-card--3 {
    min-height: 290px;
  }
}

@media (max-width: 680px) {
  .site-header__bar,
  .section-width,
  .section-shell,
  .catalog-hero,
  .detail-hero,
  .site-footer__inner {
    width: calc(100% - 26px);
  }

  .catalog-stage,
  .detail-stage {
    width: calc(100% - 26px);
  }

  .site-header__bar {
    gap: 18px;
  }

  .site-brand__logo {
    width: 100%;
    height: auto;
  }

  .site-nav,
  .site-header__actions,
  .industrial-hero__actions,
  .trust-proof__badges,
  .consult-strip__actions,
  .catalog-filter__actions,
  .hero-band__actions,
  .site-footer__cta-actions,
  .site-inquiry-form__actions {
    width: 100%;
  }

  .site-nav a,
  .site-header__phone,
  .site-nav__button,
  .button,
  .button--inline,
  .site-header__search {
    width: 100%;
  }

  .site-header__actions {
    justify-content: stretch;
  }

  .site-header__navwrap {
    top: calc(100% - 10px);
    padding: 18px;
  }

  .industrial-hero__grid {
    width: calc(100% - 26px);
    min-height: auto;
    padding: 42px 0 54px;
  }

  .industrial-hero__copy h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .catalog-stage__hero-copy,
  .detail-stage__copy {
    padding: 24px;
  }

  .catalog-stage__hero-copy {
    margin: 18px;
  }

  .catalog-stage__hero-copy h1,
  .detail-stage__copy h1 {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .statement-slab,
  .catalog-hero,
  .detail-hero__copy,
  .company-photo-wall__head,
  .trust-proof__banner,
  .consult-strip__copy,
  .cta-stage__content,
  .site-footer__cta,
  .site-footer__inquiry,
  .section-shell--dark {
    padding: 26px;
  }

  .catalog-hero__summary,
  .section-head,
  .product-card__head,
  .product-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-carousel__track {
    grid-auto-columns: minmax(250px, 86vw);
    gap: 16px;
  }

  .showcase-band {
    padding: 6px 0 70px;
  }

  .trust-proof {
    width: calc(100% - 26px);
    margin-bottom: 62px;
  }

  .trust-proof__trustbar {
    grid-template-columns: 1fr;
  }

  .trust-proof-card-panel,
  .trust-proof__cta-bar {
    padding: 18px;
  }

  .trust-proof__social-frame,
  .trust-proof__social-frame iframe {
    min-height: 300px;
  }

  .trust-proof__stats {
    grid-template-columns: 1fr;
  }

  .trust-proof__cta-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-proof__panel-button,
  .trust-proof__cta-bar .button {
    width: 100%;
  }

  .showcase-band__head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .showcase-band__carousel {
    width: calc(100% - 26px);
  }

  .showcase-band__track {
    grid-auto-columns: minmax(260px, 86vw);
    gap: 16px;
  }

  .showcase-card {
    min-height: 285px;
  }

  .showcase-card__label {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 15px 16px;
    border-radius: 20px;
  }

  .product-carousel__controls {
    justify-content: space-between;
    gap: 10px;
  }

  .product-carousel__dots {
    flex: 1;
  }

  .product-card__body {
    padding: 18px;
  }

  .product-card__price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .catalog-stage__hero,
  .detail-stage__hero {
    border-radius: 28px;
  }

  .product-card__media-title {
    font-size: 0.96rem;
  }

  .site-footer {
    padding-top: 64px;
  }

  .talk-widget {
    right: 13px;
    bottom: 13px;
  }

  .talk-widget__button {
    width: 104px;
    min-height: 82px;
    padding: 12px;
    border-radius: 18px;
  }

  .talk-widget__panel {
    position: fixed;
    right: 13px;
    left: 13px;
    bottom: 108px;
    width: auto;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 132px);
    overflow-y: auto;
  }

  .talk-widget__call {
    min-height: 172px;
    padding: 58px 28px 28px;
  }

  .talk-widget__option {
    padding: 24px 22px;
  }

  .company-photo-wall {
    margin-bottom: 62px;
  }

  .company-photo-card {
    min-height: 240px;
    border-radius: 24px;
  }

  .company-photo-card figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .trust-proof-lightbox__dialog {
    width: calc(100% - 20px);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    padding: 48px 14px 14px;
  }

  .trust-proof-lightbox__dialog img {
    max-height: calc(100vh - 164px);
  }

  .trust-proof-lightbox__close,
  .trust-proof-lightbox__nav {
    width: 36px;
    height: 36px;
  }

  .trust-proof-lightbox__nav {
    font-size: 1.5rem;
  }
}

@media (max-width: 560px) {
  .trust-proof__gallery-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .product-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1080px) {
  .catalog-stage__panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .product-grid--featured {
    grid-template-columns: 1fr;
  }

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

  .product-card__body h3 {
    min-height: 0;
  }
}

@media (max-width: 920px) {
  .product-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-stage__hero-badges,
  .catalog-stage__summary-tags {
    gap: 8px;
  }
}

@media (max-width: 680px) {
  .catalog-stage__hero {
    min-height: auto;
  }

  .catalog-stage__hero-copy {
    gap: 16px;
  }

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