:root {
  --green-950: #002b18;
  --green-900: #003c20;
  --green-800: #00502a;
  --green-700: #006f39;
  --green-600: #0b8a46;
  --green-500: #20a65c;
  --lime: #8bdc22;
  --orange: #ff8617;
  --orange-dark: #e96d00;
  --text: #1b1f1e;
  --muted: #5f6965;
  --line: #dfe6e1;
  --soft: #f6f8f6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 42, 24, 0.16);
  --radius: 8px;
  --font: "Inter", Arial, Helvetica, sans-serif;
  --heading-font: "Poppins", "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  background: var(--white);
}

h1,
h2,
h3,
.hero-stats dt,
.coming-kicker,
.products-page-head p,
.tech-metrics span {
  font-family: var(--heading-font);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - 92px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 67px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 22px);
  color: #0c1210;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 67px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav svg {
  width: 13px;
  height: 13px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 67px;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 238px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 42, 24, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-trigger::after,
.nav-dropdown:focus-within .nav-trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-submenu a {
  min-height: 34px;
  padding: 0 10px;
  color: #1e2823;
  font-size: 13px;
  border-radius: 6px;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover,
.nav-submenu a:focus {
  color: var(--green-800);
  background: #edf8ef;
}

.quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 166px;
  min-height: 43px;
  padding: 0 18px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(0, 89, 47, 0.2);
}

.quote-link svg {
  width: 19px;
  height: 19px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--green-800);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: clamp(405px, 46.875vw, 900px);
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 54, 26, 0.98) 0%, rgba(0, 74, 33, 0.9) 45%, rgba(0, 68, 33, 0.42) 72%, rgba(0, 42, 24, 0.28) 100%);
  content: "";
}

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

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(730px, 75%);
  padding: 43px 0 12px;
}

.hero h1 {
  margin: 0 0 12px;
  max-width: 640px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--lime);
}

.hero p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45;
  font-weight: 700;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 26px;
  margin-top: 25px;
  max-width: 690px;
}

.hero-badge {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
  min-width: 118px;
}

.hero-badge svg {
  grid-row: 1 / span 2;
  width: 31px;
  height: 31px;
  color: var(--lime);
}

.hero-badge strong {
  font-size: 18px;
  line-height: 1;
}

.hero-badge span {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 29px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn svg {
  width: 21px;
  height: 21px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff9a27);
  box-shadow: 0 12px 24px rgba(255, 120, 20, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.btn-outline {
  color: var(--white);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(760px, 100%);
  margin: 31px 0 0;
  padding: 14px 0;
  background: rgba(0, 64, 30, 0.88);
  border: 1px solid rgba(149, 221, 66, 0.24);
  border-radius: var(--radius);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.05);
}

.hero-stats div {
  min-width: 0;
  padding: 0 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  color: var(--lime);
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 36px 0;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 900;
}

.section-heading h2 span,
.section-heading h2:first-letter {
  color: var(--green-700);
}

.section-heading > span,
.why-title i {
  display: block;
  width: 53px;
  height: 3px;
  margin-top: 13px;
  background: var(--orange);
}

.row-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.center {
  text-align: center;
}

.center > span {
  margin-inline: auto;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 180px;
  min-height: 45px;
  padding: 0 21px;
  color: #222;
  font-size: 14px;
  font-weight: 900;
  background: var(--white);
  border: 1px solid #929c96;
  border-radius: 999px;
}

.pill-link svg,
.product-card a svg {
  width: 21px;
  height: 21px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.product-section {
  background: var(--white);
  box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.04);
}

.product-shell {
  position: relative;
  padding-inline: 1px;
}

.product-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 40px) / 6);
  min-width: 0;
  min-height: 236px;
  padding: 13px 13px 44px;
  background: var(--white);
  border: 1px solid #d7ded9;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
}

.product-image {
  display: grid;
  place-items: center;
  height: 150px;
  margin-bottom: 14px;
  padding: 4px;
  overflow: visible;
}

.product-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card h3 {
  display: flex;
  align-items: flex-end;
  min-height: 38px;
  margin: 0 0 7px;
  color: #191d1c;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.product-card p {
  min-height: 38px;
  margin: 0;
  color: #2d3531;
  font-size: 13px;
  line-height: 1.45;
}

.product-card a {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: var(--green-500);
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.slider-prev {
  left: -20px;
}

.slider-next {
  right: -20px;
}

.products-page {
  padding: 52px 0 58px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.products-page-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.products-page-head p {
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 13px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: #edf8ef;
  border: 1px solid #d7eadc;
  border-radius: 999px;
}

.products-page-head h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 900;
}

.all-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.all-products-grid .product-card {
  flex: none;
  min-height: 252px;
}

.product-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background:
    linear-gradient(90deg, rgba(0, 55, 30, 0.96), rgba(0, 84, 45, 0.86)),
    var(--green-900);
}

.product-detail-hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border: 64px solid rgba(139, 220, 34, 0.08);
  border-radius: 50%;
  content: "";
}

.product-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.product-detail-copy {
  color: var(--white);
}

.product-eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 13px;
  color: var(--lime);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.product-detail-copy h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 1.02;
  font-weight: 900;
}

.product-detail-copy p {
  max-width: 680px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.58;
}

.product-detail-copy .product-lead {
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.38;
  font-weight: 800;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-outline-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.product-badges svg {
  width: 16px;
  height: 16px;
  color: var(--lime);
}

.product-hero-visual {
  isolation: isolate;
  position: relative;
  min-height: 620px;
  padding: 44px 34px 56px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 38px 90px rgba(0, 17, 8, 0.3);
}

.product-hero-visual::before {
  position: absolute;
  inset: 28px;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 247, 0.9)),
    #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 24px 54px rgba(0, 28, 14, 0.18);
  content: "";
}

.product-hero-visual::after {
  position: absolute;
  right: 13%;
  bottom: 58px;
  left: 13%;
  z-index: 1;
  height: 30px;
  background: rgba(0, 23, 12, 0.22);
  border-radius: 50%;
  filter: blur(18px);
  content: "";
}

.product-hero-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 760px);
  max-width: none;
  height: 520px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius);
  transform: none;
  transform-origin: center;
  box-shadow: 0 24px 54px rgba(0, 28, 14, 0.16);
}

.floating-spec {
  position: absolute;
  z-index: 4;
  min-height: 44px;
  padding: 9px 13px;
  color: var(--green-900);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 138, 70, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 24, 12, 0.13);
  animation: floatSoft 4.5s ease-in-out infinite;
}

.card-one {
  top: 44px;
  left: 44px;
}

.card-two {
  right: 44px;
  bottom: 158px;
  animation-delay: 0.4s;
}

.card-three {
  bottom: 54px;
  left: 56px;
  animation-delay: 0.8s;
}

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

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

.product-detail-section {
  padding: 78px 0;
  background: var(--white);
}

.subtle-section {
  background: #f6faf7;
}

.product-overview-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: center;
}

.product-overview-image {
  isolation: isolate;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  padding: 40px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #f3f8f5),
    #ffffff;
  border: 1px solid #dfe8e2;
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(0, 42, 24, 0.14);
}

.product-overview-image::before {
  position: absolute;
  inset: 24px;
  z-index: 0;
  background: #ffffff;
  border: 1px solid rgba(11, 138, 70, 0.08);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
  content: "";
}

.product-overview-image img {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-width: none;
  max-height: 470px;
  object-fit: contain;
  border-radius: var(--radius);
  transform: none;
  box-shadow: 0 20px 44px rgba(0, 28, 14, 0.14);
}

.product-overview-copy > p {
  max-width: 720px;
  margin: 0 0 24px;
  color: #35413b;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 600;
}

.overview-highlights,
.technology-cards,
.why-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.overview-highlights article,
.technology-cards article,
.why-product-grid article {
  background: var(--white);
  border: 1px solid #dfe8e2;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0, 42, 24, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.overview-highlights article:hover,
.technology-cards article:hover,
.why-product-grid article:hover {
  border-color: rgba(11, 138, 70, 0.36);
  box-shadow: 0 18px 38px rgba(0, 42, 24, 0.11);
  transform: translateY(-3px);
}

.overview-highlights article {
  padding: 18px;
}

.overview-highlights svg,
.technology-cards svg,
.why-product-grid svg {
  width: 44px;
  height: 44px;
  padding: 9px;
  color: var(--green-700);
  background: #edf8ef;
  border-radius: var(--radius);
}

.overview-highlights h3,
.technology-cards h3,
.why-product-grid h3 {
  margin: 12px 0 0;
  color: #132019;
  font-size: 16px;
  line-height: 1.22;
}

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

.technology-cards article {
  padding: 24px;
  min-height: 220px;
}

.technology-cards p {
  margin: 10px 0 0;
  color: #4d5953;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid #dfe8e2;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 42, 24, 0.08);
}

.spec-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background: var(--white);
}

.spec-table th,
.spec-table td {
  padding: 17px 16px;
  text-align: left;
  border-bottom: 1px solid #e4ece7;
}

.spec-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: var(--green-800);
}

.spec-table tbody tr:nth-child(even) {
  background: #f7fbf8;
}

.spec-table td {
  color: #2d3732;
  font-size: 14px;
  font-weight: 650;
}

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

.why-product-grid article {
  min-height: 150px;
  padding: 20px;
}

.sorting-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sorting-process li {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 18px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius);
}

.sorting-process li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 22px;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.sorting-process span {
  display: block;
  margin-bottom: 9px;
  color: var(--lime);
  font-size: 13px;
}

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

.application-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dfe8e2;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0, 42, 24, 0.08);
}

.application-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.application-grid h3 {
  margin: 0;
  padding: 14px;
  color: #132019;
  font-size: 16px;
}

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

.product-gallery figure {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  background: var(--white);
  border: 1px solid #dfe8e2;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 42, 24, 0.09);
}

.product-gallery figure:first-child {
  grid-column: span 2;
}

.product-gallery button {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 260px;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(180deg, #ffffff, #f4f8f5);
  border: 0;
}

.product-gallery figure:first-child button {
  min-height: 360px;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.product-gallery button:hover img {
  transform: scale(1.025);
}

.product-gallery figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
  border-top: 1px solid #e5eee8;
}

.product-gallery figcaption strong {
  color: #132019;
  font-family: var(--heading-font);
  font-size: 16px;
}

.product-gallery figcaption span {
  color: #59655f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 42px;
}

.faq-list {
  display: grid;
  gap: 14px;
  counter-reset: faq;
}

.faq-list details {
  counter-increment: faq;
  position: relative;
  background: var(--white);
  border: 1px solid #dfe8e2;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 42, 24, 0.07);
}

.faq-list details[open] {
  border-color: rgba(11, 138, 70, 0.3);
  box-shadow: 0 18px 42px rgba(0, 42, 24, 0.1);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  min-height: 68px;
  padding: 20px 56px 20px 72px;
  color: #132019;
  font-family: var(--heading-font);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green-700);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 900;
  background: #eef8ef;
  border: 1px solid #cfe5d6;
  border-radius: 50%;
  content: counter(faq, decimal-leading-zero);
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--green-700);
  font-size: 24px;
  line-height: 1;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 56px 22px 72px;
  color: #4d5953;
  line-height: 1.6;
  font-weight: 600;
}

.product-final-cta {
  padding: 58px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 61, 34, 0.98), rgba(0, 111, 57, 0.9)),
    var(--green-900);
}

.product-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.product-final-inner h2 {
  max-width: 680px;
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.product-final-inner p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(0, 20, 10, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-frame {
  display: grid;
  gap: 12px;
  max-width: min(100%, 1080px);
  margin: 0;
}

.lightbox img {
  max-width: min(100%, 980px);
  max-height: 82vh;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
}

.lightbox-frame figcaption {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 38px;
  padding: 0 16px;
  color: var(--white);
  background: var(--green-700);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.why-band {
  padding: 34px 0;
  background:
    linear-gradient(90deg, rgba(0, 52, 24, 0.98), rgba(0, 96, 48, 0.88)),
    var(--green-900);
}

.why-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 38px;
  align-items: center;
}

.why-title h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.12;
}

.why-title span {
  display: block;
  color: var(--lime);
}

.why-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 142px;
  padding: 21px 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-panel article {
  padding: 0 24px;
  border-right: 1px solid #dce3df;
}

.why-panel article:last-child {
  border-right: 0;
}

.why-panel svg {
  width: 37px;
  height: 37px;
  color: var(--green-600);
}

.why-panel svg.accent {
  color: #0b8a46;
}

.why-panel h3 {
  margin: 8px 0 12px;
  font-size: 16px;
  line-height: 1.12;
  font-weight: 900;
}

.why-panel p {
  margin: 0;
  color: #2d3531;
  font-size: 13px;
  line-height: 1.45;
}

.flow-section {
  padding: 42px 0 48px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: auto 72px auto;
  gap: 0 34px;
  margin: 0;
  padding: 27px;
  list-style: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 244, 0.96));
  border: 1px solid #d9e7de;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 73, 36, 0.12);
}

.process-flow::before {
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(11, 138, 70, 0.16);
  border-radius: var(--radius);
  content: "";
  pointer-events: none;
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: 48px auto;
  gap: 10px 13px;
  align-items: start;
  min-height: 152px;
  padding: 22px 14px 16px;
  color: #17201b;
  background: var(--white);
  border: 1px solid #d9e5de;
  border-top: 4px solid var(--green-600);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(0, 52, 26, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.flow-step:hover {
  border-color: rgba(11, 138, 70, 0.5);
  box-shadow: 0 18px 36px rgba(0, 72, 35, 0.16);
  transform: translateY(-3px);
}

.flow-step-1 {
  grid-column: 1;
  grid-row: 1;
}

.flow-step-2 {
  grid-column: 2;
  grid-row: 1;
}

.flow-step-3 {
  grid-column: 3;
  grid-row: 1;
}

.flow-step-4 {
  grid-column: 4;
  grid-row: 1;
}

.flow-step-5 {
  grid-column: 5;
  grid-row: 1;
}

.flow-step-6 {
  grid-column: 5;
  grid-row: 3;
}

.flow-step-7 {
  grid-column: 4;
  grid-row: 3;
}

.flow-step-8 {
  grid-column: 3;
  grid-row: 3;
}

.flow-step-1::after,
.flow-step-2::after,
.flow-step-3::after,
.flow-step-4::after,
.flow-step-6::after,
.flow-step-7::after,
.flow-step-5::after {
  position: absolute;
  content: "";
}

.flow-step-1::after,
.flow-step-2::after,
.flow-step-3::after,
.flow-step-4::after {
  top: calc(50% - 1px);
  left: 100%;
  width: 34px;
  height: 3px;
  background: var(--green-600);
}

.flow-step-1::before,
.flow-step-2::before,
.flow-step-3::before,
.flow-step-4::before {
  position: absolute;
  top: calc(50% - 6px);
  left: calc(100% + 26px);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--green-600);
  content: "";
}

.flow-step-5::after {
  top: 100%;
  left: calc(50% - 1px);
  width: 3px;
  height: 72px;
  background: var(--green-600);
}

.flow-step-5::before {
  position: absolute;
  top: calc(100% + 61px);
  left: calc(50% - 6px);
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 9px solid var(--green-600);
  content: "";
}

.flow-step-6::after,
.flow-step-7::after {
  top: calc(50% - 1px);
  right: 100%;
  width: 34px;
  height: 3px;
  background: var(--green-600);
}

.flow-step-6::before,
.flow-step-7::before {
  position: absolute;
  top: calc(50% - 6px);
  right: calc(100% + 26px);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 9px solid var(--green-600);
  border-bottom: 6px solid transparent;
  content: "";
}

.flow-count {
  position: absolute;
  top: -13px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 26px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(255, 134, 23, 0.24);
}

.flow-icon {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  border-radius: var(--radius);
  box-shadow: 0 4px 10px rgba(11, 138, 70, 0.14);
}

.flow-icon svg {
  width: 27px;
  height: 27px;
}

.flow-step > div {
  grid-column: 1 / -1;
  grid-row: 2;
  min-width: 0;
}

.flow-step h3 {
  margin: 0 0 5px;
  color: var(--green-800);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.18;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.flow-step p {
  margin: 0;
  color: #4e5b55;
  font-size: 12px;
  line-height: 1.38;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.technology {
  padding: 46px 0 50px;
  background:
    linear-gradient(180deg, #fbfcfb 0%, #ffffff 100%);
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: stretch;
}

.tech-intro {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 80, 42, 0.98), rgba(0, 43, 24, 0.98));
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 52, 26, 0.18);
}

.tech-intro::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(139, 220, 34, 0.16);
  border-radius: 50%;
  content: "";
}

.tech-intro .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.tech-intro .section-heading h2 {
  color: var(--white);
}

.tech-intro .section-heading h2 span,
.tech-intro .section-heading h2:first-letter {
  color: var(--lime);
}

.tech-intro > p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.tech-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.tech-metrics span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

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

.tech-grid article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 108px;
  padding: 20px;
  background: var(--white);
  border: 1px solid #dfe8e2;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 42, 24, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tech-grid article:hover {
  border-color: rgba(11, 138, 70, 0.38);
  box-shadow: 0 16px 32px rgba(0, 52, 26, 0.12);
  transform: translateY(-2px);
}

.tech-grid svg {
  width: 42px;
  height: 42px;
  padding: 8px;
  color: var(--green-700);
  background: #edf8ef;
  border-radius: var(--radius);
}

.tech-grid h3 {
  margin: 0 0 6px;
  color: #132019;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.tech-grid p {
  margin: 0;
  color: #2f3733;
  font-size: 14px;
  line-height: 1.45;
}

.quote-section {
  background: linear-gradient(90deg, var(--white) 0 48%, var(--green-800) 48% 100%);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(420px, 1.05fr);
  gap: 45px;
  align-items: stretch;
}

.industries {
  padding: 28px 0 28px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.industry-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.08);
}

.industry-grid img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.industry-grid h3 {
  min-height: 31px;
  margin: 0;
  padding: 8px 7px;
  color: #171d1a;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
}

.quote-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 26px;
  min-height: 343px;
  padding: 30px 0 24px;
  color: var(--white);
}

.quote-form-wrap h2 {
  margin: 0;
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.quote-form-wrap > p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

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

.field {
  position: relative;
  display: block;
}

.field span,
.newsletter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

.field input,
.field select,
.field textarea,
.newsletter input {
  width: 100%;
  min-height: 38px;
  padding: 0 40px 0 14px;
  color: #1f2723;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  outline: none;
}

.field select {
  appearance: auto;
}

.field textarea {
  min-height: 86px;
  padding-top: 12px;
  resize: vertical;
}

.field svg {
  position: absolute;
  top: 10px;
  right: 13px;
  width: 17px;
  height: 17px;
  color: #6f7c76;
}

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

.quote-form .btn {
  width: fit-content;
  min-width: 176px;
  min-height: 45px;
  margin-top: 5px;
  border-radius: 7px;
}

.form-status,
.newsletter-status {
  align-self: center;
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.contact-panel {
  align-self: center;
  padding: 25px 18px 18px;
  background: rgba(0, 50, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.contact-panel h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
}

.contact-panel p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.45;
}

.contact-panel a,
.contact-panel address {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
  margin: 0 0 14px;
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.contact-panel svg {
  width: 31px;
  height: 31px;
  padding: 6px;
  color: var(--orange);
  background: rgba(255, 134, 23, 0.1);
  border-radius: 50%;
}

.contact-panel .whatsapp-btn {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 43px;
  margin: 15px 0 0;
  color: var(--white);
  background: #75b82a;
  border-radius: 6px;
}

.contact-panel .whatsapp-btn svg {
  width: 22px;
  height: 22px;
  padding: 0;
  color: var(--white);
  background: none;
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 48, 27, 0.98), rgba(0, 78, 44, 0.96)),
    var(--green-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1.25fr 1fr;
  gap: 42px;
  padding: 25px 0 21px;
}

.footer-brand,
.footer-links,
.newsletter {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter {
  padding-right: 0;
  border-right: 0;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-brand p,
.newsletter p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 11px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  background: var(--green-600);
  border-radius: 50%;
}

.socials a:nth-child(2) {
  background: #e32822;
}

.socials a:nth-child(3) {
  background: #126bc4;
}

.socials a:nth-child(4) {
  background: #c84f9d;
}

.footer-links h2,
.newsletter h2 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.2;
}

.footer-links div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 21px;
}

.footer-links a {
  position: relative;
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.footer-links a::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  content: "";
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 48px;
  height: 42px;
  overflow: hidden;
  background: var(--white);
  border-radius: 6px;
}

.newsletter input {
  height: 42px;
  padding: 0 12px;
  border: 0;
}

.newsletter button {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border: 0;
}

.newsletter button svg {
  width: 21px;
  height: 21px;
}

.newsletter-status {
  margin-top: 8px;
}

.footer-bottom {
  background: #00713a;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 36px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.footer-bottom span {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.45);
}

.coming-page {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 103px);
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(0, 52, 24, 0.96), rgba(0, 94, 48, 0.86)),
    var(--green-900);
}

.coming-inner {
  max-width: 760px;
  color: var(--white);
}

.coming-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 13px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.coming-inner h1 {
  margin: 0 0 16px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 900;
}

.coming-inner > p:not(.coming-kicker) {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.coming-inner .btn {
  width: fit-content;
  min-width: 170px;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 48px, 980px);
  }

  .header-inner {
    gap: 16px;
  }

  .brand img {
    width: 190px;
  }

  .main-nav {
    gap: 14px;
    font-size: 12px;
  }

  .quote-link {
    min-width: 145px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-content {
    width: min(680px, 78%);
  }

  .hero-badges {
    gap: 16px;
  }

  .product-track {
    padding-bottom: 8px;
  }

  .product-card {
    flex-basis: calc((100% - 32px) / 5);
  }

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

  .why-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
  }

  .why-title span {
    display: inline;
  }

  .why-panel {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    overflow-x: auto;
  }

  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 16px;
    padding: 22px;
  }

  .flow-step,
  .flow-step-1,
  .flow-step-2,
  .flow-step-3,
  .flow-step-4,
  .flow-step-5,
  .flow-step-6,
  .flow-step-7,
  .flow-step-8 {
    grid-column: auto;
    grid-row: auto;
  }

  .flow-step::before,
  .flow-step::after {
    display: none;
  }

  .tech-layout {
    grid-template-columns: 1fr;
  }

  .tech-intro {
    min-height: auto;
  }

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

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

  .quote-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .quote-card {
    margin-inline: -24px;
    padding-inline: 24px;
    background: linear-gradient(135deg, var(--green-700), var(--green-900));
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  [id] {
    scroll-margin-top: 76px;
  }

  .container {
    width: min(100% - 32px, 620px);
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 64px;
  }

  .brand img {
    width: 175px;
  }

  .nav-toggle {
    display: flex;
  }

  .quote-link {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.14);
    transform: translateY(-130%);
    transition: transform 0.22s ease;
  }

  .nav-open .main-nav {
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 42px;
    border-bottom: 1px solid #edf1ee;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
    min-height: auto;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 3px 0 9px 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(0, 54, 26, 0.9), rgba(0, 54, 26, 0.98));
  }

  .hero-content {
    width: 100%;
    padding: 30px 0 24px;
  }

  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .coming-inner .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats div {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-stats div:nth-child(2n) {
    border-right: 0;
  }

  .hero-stats div:nth-child(n + 3) {
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .row-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .pill-link {
    min-width: 0;
  }

  .slider-prev {
    left: -12px;
  }

  .slider-next {
    right: -12px;
  }

  .product-card {
    flex-basis: calc((100% - 8px) / 2);
  }

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

  .why-title {
    display: block;
  }

  .why-title span {
    display: block;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .flow-step {
    grid-template-columns: 44px 1fr;
    min-height: auto;
    padding: 16px 14px;
  }

  .flow-icon {
    width: 44px;
    height: 44px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid article {
    padding: 18px;
  }

  .tech-metrics {
    grid-template-columns: 1fr;
  }

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

  .quote-card {
    grid-template-columns: 1fr;
  }

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

  .quote-form .btn {
    width: 100%;
  }

  .contact-panel {
    align-self: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand,
  .footer-links,
  .newsletter {
    padding-right: 0;
    border-right: 0;
  }

  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 155px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-badges,
  .hero-stats,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .hero-stats div:nth-child(2n) {
    border-right: 0;
  }

  .hero-stats div:nth-child(n + 2) {
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .product-track {
    padding-inline: 0;
  }

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

  .all-products-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
    padding-inline: 14px;
  }

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

@media (max-width: 1100px) {
  .product-detail-hero-grid,
  .product-overview-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .product-hero-visual {
    min-height: 560px;
  }

  .product-hero-visual img {
    width: min(100%, 680px);
    height: 460px;
    transform: none;
  }

  .product-overview-image {
    min-height: 500px;
  }

  .product-overview-image img {
    width: min(100%, 620px);
    max-height: 430px;
  }

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

  .product-gallery figure:first-child {
    grid-column: span 2;
  }

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

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

  .sorting-process li:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .product-detail-hero,
  .product-detail-section {
    padding: 48px 0;
  }

  .product-detail-actions,
  .product-final-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .product-detail-actions .btn {
    width: 100%;
  }

  .product-hero-visual {
    min-height: 430px;
    padding: 22px;
  }

  .product-hero-visual::before {
    inset: 16px;
  }

  .product-hero-visual::after {
    right: 18%;
    bottom: 96px;
    left: 18%;
    height: 22px;
  }

  .product-hero-visual img {
    width: 100%;
    height: 310px;
    transform: none;
  }

  .floating-spec {
    position: static;
    display: inline-grid;
    margin: 8px 8px 0 0;
    animation: none;
  }

  .product-overview-image {
    min-height: 420px;
    padding: 28px;
  }

  .product-overview-image::before {
    inset: 16px;
  }

  .product-overview-image img {
    width: 100%;
    max-height: 340px;
    transform: none;
  }

  .overview-highlights,
  .technology-cards,
  .why-product-grid,
  .application-grid,
  .sorting-process {
    grid-template-columns: 1fr;
  }

  .sorting-process li::after {
    display: none;
  }

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

  .product-gallery figure:first-child {
    grid-column: auto;
  }

  .product-gallery button,
  .product-gallery figure:first-child button {
    min-height: 240px;
  }

  .product-gallery img {
    padding: 14px;
  }

  .faq-list summary {
    padding: 18px 46px 18px 62px;
  }

  .faq-list summary::before {
    left: 16px;
  }

  .faq-list summary::after {
    right: 18px;
  }

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