:root {
  --primary-forest: #174D2B;
  --deep-canopy: #0F2F1F;
  --moss-green: #6F9E4F;
  --fresh-leaf: #B7D88A;
  --warm-stone: #E8E1D3;
  --clean-ivory: #FAF8F1;
  --charcoal: #1D241F;
  --white: #FFFFFF;
  --line: rgba(23, 77, 43, 0.16);
  --soft-line: rgba(232, 225, 211, 0.7);
  --shadow: 0 24px 70px rgba(15, 47, 31, 0.14);
  --container-max: 1180px;
  --page-width: min(var(--container-max), calc(100% - 40px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--clean-ivory);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(183, 216, 138, 0.8);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page-width);
  min-height: var(--header-height);
  margin: 0 auto;
  gap: 24px;
}

.brand img {
  width: 210px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(29, 36, 31, 0.76);
  font-size: 0.94rem;
  font-weight: 760;
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--primary-forest);
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  transition: color 0.18s ease;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu[open] summary,
.nav-menu summary:hover {
  color: var(--primary-forest);
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  z-index: 30;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--clean-ivory);
  box-shadow: var(--shadow);
}

.nav-menu-panel a {
  padding: 11px 12px;
  border-radius: 6px;
}

.nav-menu-panel a:hover {
  background: rgba(232, 225, 211, 0.46);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--charcoal);
}

.hero,
.section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 44px;
  width: var(--page-width);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: 64px 0 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-forest);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  color: var(--deep-canopy);
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--deep-canopy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--deep-canopy);
  font-size: 1.16rem;
  line-height: 1.28;
  letter-spacing: 0;
}

p {
  color: rgba(29, 36, 31, 0.72);
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 820;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--primary-forest);
  box-shadow: 0 16px 30px rgba(23, 77, 43, 0.22);
}

.button.primary:hover {
  background: var(--deep-canopy);
}

.button.secondary {
  color: var(--deep-canopy);
  background: var(--warm-stone);
  border-color: rgba(140, 109, 66, 0.2);
}

.button.text-link {
  min-height: auto;
  padding: 0 2px;
  color: var(--primary-forest);
  background: transparent;
  border: 0;
}

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

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-metrics dt {
  color: var(--deep-canopy);
  font-size: 1rem;
  font-weight: 860;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(29, 36, 31, 0.66);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep-canopy);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 46%, rgba(15, 47, 31, 0.74));
}

.hero-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  padding: 20px;
  color: var(--clean-ivory);
  border: 1px solid rgba(250, 248, 241, 0.24);
  border-radius: 8px;
  background: rgba(15, 47, 31, 0.76);
  backdrop-filter: blur(10px);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--fresh-leaf);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  max-width: 520px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep-canopy);
  box-shadow: var(--shadow);
}

.trust-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 14px;
  color: var(--clean-ivory);
  text-align: center;
  border-right: 1px solid rgba(250, 248, 241, 0.14);
  font-weight: 820;
}

.trust-bar div:last-child {
  border-right: 0;
}

.section {
  width: var(--page-width);
  margin: 0 auto;
  padding: 96px 0;
}

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

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: end;
}

.section-heading.center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.category-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 47, 31, 0.08);
}

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

.category-card div {
  padding: 24px;
}

.category-card p {
  margin-bottom: 16px;
}

.category-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(29, 36, 31, 0.72);
  list-style: none;
}

.category-card li {
  position: relative;
  padding-left: 18px;
}

.category-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--moss-green);
  border-radius: 50%;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-forest);
  font-weight: 820;
}

.category-card span,
.application-grid span,
.project-card span,
.process-grid span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary-forest);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.applications-section,
.projects-section {
  width: 100%;
  padding-right: max(20px, calc((100% - var(--container-max)) / 2));
  padding-left: max(20px, calc((100% - var(--container-max)) / 2));
  background: var(--deep-canopy);
}

.applications-section h2,
.applications-section p,
.projects-section h2,
.projects-section p {
  color: var(--clean-ivory);
}

.applications-section .eyebrow,
.projects-section .eyebrow {
  color: var(--fresh-leaf);
}

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

.application-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(250, 248, 241, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(250, 248, 241, 0.1), rgba(111, 158, 79, 0.08)),
    var(--deep-canopy);
}

.application-grid h3 {
  color: var(--clean-ivory);
}

.application-grid p {
  margin-bottom: 0;
  color: rgba(250, 248, 241, 0.72);
}

.why-section,
.oem-section,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 42px;
}

.why-media {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.why-media img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
}

.why-copy {
  padding: 12px 0;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.benefit-list article,
.process-grid article,
.faq-list details,
.quote-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.benefit-list article,
.process-grid article {
  padding: 22px;
}

.benefit-list p,
.process-grid p {
  margin-bottom: 0;
}

.capability-section {
  background: var(--white);
}

.capability-section .section-heading {
  max-width: 820px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}

.capability-card {
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  overflow: hidden;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--clean-ivory);
  box-shadow: 0 18px 48px rgba(15, 47, 31, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.capability-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex: 0 0 auto;
}

.capability-card__media img {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease;
}

.capability-card div:not(.capability-card__media) {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.capability-card__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  margin-bottom: 14px;
  color: var(--deep-canopy);
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(15, 47, 31, 0.13);
}

.capability-card:hover .capability-card__media img {
  transform: scale(1.02);
}

.capability-card h3 {
  margin-bottom: 10px;
  color: var(--deep-canopy);
}

.capability-card p {
  margin-bottom: 0;
  color: rgba(29, 36, 31, 0.72);
  font-size: 0.94rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.project-card.tall {
  grid-row: span 2;
  grid-column: span 2;
}

.project-card.wide {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(15, 47, 31, 0.82));
}

.project-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.project-card h3 {
  margin-bottom: 6px;
  color: var(--clean-ivory);
}

.project-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(250, 248, 241, 0.72);
  font-size: 0.94rem;
}

.oem-section {
  width: 100%;
  padding-right: max(20px, calc((100% - var(--container-max)) / 2));
  padding-left: max(20px, calc((100% - var(--container-max)) / 2));
  background: var(--warm-stone);
}

.oem-copy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

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

.faq-section {
  max-width: 920px;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--deep-canopy);
  font-weight: 820;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.quote-section {
  align-items: stretch;
  padding-bottom: 110px;
}

.quote-copy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.quote-note {
  padding: 20px;
  color: rgba(29, 36, 31, 0.74);
}

.quote-note strong {
  color: var(--deep-canopy);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--deep-canopy);
  font-weight: 760;
}

.quote-form .full,
.form-submit,
.form-message {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--charcoal);
  background: var(--clean-ivory);
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--primary-forest);
  box-shadow: 0 0 0 4px rgba(183, 216, 138, 0.34);
}

.quote-form textarea {
  resize: vertical;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--primary-forest);
  font-weight: 820;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px max(20px, calc((100% - var(--container-max)) / 2));
  color: rgba(250, 248, 241, 0.78);
  background: var(--deep-canopy);
}

.site-footer img {
  width: 210px;
  height: auto;
  padding: 8px;
  border-radius: 8px;
  background: var(--clean-ivory);
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(250, 248, 241, 0.78);
}

.site-footer > p {
  margin: 0;
  text-align: right;
}

.product-page .site-header {
  background: rgba(250, 248, 241, 0.96);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 44px;
  width: var(--page-width);
  margin: 0 auto;
  padding: 64px 0 84px;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(29, 36, 31, 0.62);
  font-size: 0.9rem;
  font-weight: 720;
}

.breadcrumb a {
  color: var(--primary-forest);
}

.product-hero h1 {
  max-width: 12ch;
}

.product-hero-copy > p {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.product-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep-canopy);
  box-shadow: var(--shadow);
}

.product-hero-media img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 42px;
  align-items: start;
}

.overview-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 47, 31, 0.08);
}

.overview-card p:last-child {
  margin-bottom: 0;
}

.feature-grid,
.scenario-grid,
.gallery-strip {
  display: grid;
  gap: 18px;
}

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

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

.lead-flow article {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep-canopy);
  box-shadow: var(--shadow);
}

.lead-flow article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 2;
  width: 26px;
  height: 26px;
  content: "";
  background: var(--warm-stone);
  clip-path: polygon(25% 15%, 100% 50%, 25% 85%, 36% 50%);
  transform: translateY(-50%);
}

.lead-flow span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--fresh-leaf);
  font-size: 0.8rem;
  font-weight: 860;
}

.lead-flow h2 {
  margin-bottom: 12px;
  color: var(--clean-ivory);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.lead-flow p {
  margin-bottom: 0;
  color: rgba(250, 248, 241, 0.76);
}

.feature-tile,
.scenario-tile {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.feature-tile span,
.scenario-tile span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary-forest);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.spec-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 47, 31, 0.08);
}

.spec-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row dt,
.spec-row dd {
  margin: 0;
  padding: 17px 20px;
}

.spec-row dt {
  color: var(--deep-canopy);
  background: rgba(232, 225, 211, 0.38);
  font-weight: 820;
}

.spec-row dd {
  color: rgba(29, 36, 31, 0.74);
}

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

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

.gallery-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}

.gallery-strip figcaption {
  padding: 16px 18px 18px;
  color: rgba(29, 36, 31, 0.72);
  font-weight: 720;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: var(--deep-canopy);
  box-shadow: var(--shadow);
}

.page-cta h2,
.page-cta p {
  color: var(--clean-ivory);
}

.page-cta p {
  margin-bottom: 0;
  opacity: 0.78;
}

.product-center-hero h1 {
  max-width: 13ch;
}

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

.collection-card,
.product-card,
.mini-collection-card,
.loading-card,
.empty-products-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 47, 31, 0.08);
}

.collection-card {
  display: grid;
  overflow: hidden;
}

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

.collection-card-body,
.product-card-body,
.mini-collection-card,
.loading-card,
.empty-products-note {
  padding: 22px;
}

.collection-card-body h3,
.product-card h3,
.mini-collection-card h3 {
  margin-bottom: 8px;
}

.collection-meta,
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.collection-meta span,
.product-meta span,
.collection-stat {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--primary-forest);
  border: 1px solid rgba(23, 77, 43, 0.18);
  border-radius: 999px;
  background: rgba(183, 216, 138, 0.18);
  font-size: 0.78rem;
  font-weight: 820;
}

.collection-card-body p,
.product-card p,
.mini-collection-card p,
.loading-card p,
.empty-products-note p {
  margin-bottom: 0;
}

.collection-applications,
.product-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: rgba(29, 36, 31, 0.72);
  list-style: none;
}

.collection-applications li,
.product-list li {
  position: relative;
  padding-left: 18px;
}

.collection-applications li::before,
.product-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--moss-green);
  border-radius: 50%;
}

.collection-section-list {
  display: grid;
  gap: 62px;
}

.collection-group {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.collection-group-header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.6fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}

.collection-group-header p {
  margin-bottom: 0;
}

.collection-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mini-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.mini-collection-card {
  min-height: 100%;
}

.mini-collection-card .eyebrow {
  margin-bottom: 8px;
}

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

.product-card {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.product-card-image {
  background: var(--deep-canopy);
}

.product-card-image img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
}

.product-card-body {
  display: grid;
  gap: 16px;
}

.product-card-header {
  display: grid;
  gap: 8px;
}

.product-card-header h3 {
  margin-bottom: 0;
}

.product-card-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-card-actions .button {
  min-height: 42px;
  padding: 0 16px;
}

.data-note {
  margin-top: 18px;
  color: rgba(29, 36, 31, 0.64);
  font-size: 0.92rem;
}

.empty-products-note {
  max-width: 760px;
}

.product-applications-section .application-grid article {
  min-height: 180px;
}

.product-detail-shell {
  width: var(--page-width);
  margin: 0 auto;
  padding: 46px 0 72px;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: 42px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery-main {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

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

.product-gallery-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.product-gallery-thumbs button.active {
  border-color: var(--primary-forest);
}

.product-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.product-detail-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 47, 31, 0.08);
}

.product-detail-summary h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.product-detail-summary .hero-actions {
  margin-bottom: 0;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.detail-info-card {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 47, 31, 0.08);
}

.detail-info-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-forest);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.detail-info-card strong {
  display: block;
  color: var(--deep-canopy);
  font-size: 1.03rem;
  line-height: 1.42;
}

.detail-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--deep-canopy);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 820;
  box-shadow: 0 10px 24px rgba(15, 47, 31, 0.06);
}

@media (max-width: 1040px) {
  .hero,
  .product-hero,
  .product-detail-hero,
  .product-overview,
  .why-section,
  .oem-section,
  .quote-section,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual {
    min-height: 470px;
    order: -1;
  }

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

  h1 {
    max-width: 12ch;
    font-size: clamp(3.1rem, 11vw, 5.6rem);
  }

  .why-media,
  .oem-copy,
  .quote-copy {
    position: static;
  }

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

  .feature-grid,
  .scenario-grid,
  .gallery-strip,
  .collection-summary-grid,
  .product-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-group-header {
    grid-template-columns: 1fr;
  }

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

  .product-detail-summary {
    position: static;
  }

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

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

  .capability-card,
  .capability-card:nth-child(4),
  .capability-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --page-width: min(var(--container-max), calc(100% - 28px));
  }

  .brand img {
    width: 176px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--clean-ivory);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

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

  .nav-menu {
    padding: 0;
  }

  .nav-menu summary {
    padding: 14px 12px;
  }

  .nav-menu-panel {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-menu-panel a {
    padding: 10px 12px;
  }

  .hero-metrics,
  .trust-bar,
  .category-grid,
  .application-grid,
  .process-grid,
  .quote-form,
  .feature-grid,
  .lead-flow,
  .scenario-grid,
  .gallery-strip,
  .page-cta,
  .collection-summary-grid,
  .capability-grid,
  .mini-collection-grid,
  .product-card-grid,
  .detail-info-grid {
    grid-template-columns: 1fr;
  }

  .lead-flow article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

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

  .spec-row dt,
  .spec-row dd {
    padding: 14px 16px;
  }

  .trust-bar div {
    border-right: 0;
    border-bottom: 1px solid rgba(250, 248, 241, 0.14);
  }

  .trust-bar div:last-child {
    border-bottom: 0;
  }

  .hero-actions .button,
  .form-submit {
    width: 100%;
  }

  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .project-card.tall,
  .project-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .quote-form {
    padding: 20px;
  }

  .product-hero {
    padding-top: 44px;
  }

  .site-footer {
    display: block;
  }

  .site-footer > p {
    margin-top: 22px;
    text-align: left;
  }
}

@media (max-width: 440px) {
  .hero {
    padding-bottom: 56px;
  }

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

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 72px 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .button:hover {
    transform: none;
  }

  .project-card:hover img {
    transform: none;
  }

  .capability-card:hover,
  .capability-card:hover .capability-card__media img {
    transform: none;
  }
}
