.product-redesign {
  --ink: #17201d;
  --muted: #66716c;
  --line: #d9dfdb;
  --soft: #f4f6f3;
  --panel: #ffffff;
  --green: #245f43;
  --green-2: #17452f;
  --green-3: #0d2d20;
  --lime: #c9e36b;
  --amber: #c78a31;
  --dark: #101814;
  --shadow: 0 22px 60px rgba(17, 35, 27, 0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1240px;
}

.product-redesign, .product-redesign * {
  box-sizing: border-box;
}

.product-redesign {
  scroll-behavior: smooth;
}

.product-redesign {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

.product-redesign a {
  color: inherit;
  text-decoration: none;
}

.product-redesign button,
.product-redesign input,
.product-redesign textarea,
.product-redesign select {
  font: inherit;
}

.product-redesign button,
.product-redesign a {
  -webkit-tap-highlight-color: transparent;
}

.product-redesign .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-redesign .wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.product-redesign .preview-bar {
  background: var(--lime);
  color: #172116;
  font-size: 13px;
  font-weight: 700;
}

.product-redesign .preview-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-redesign .preview-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-redesign .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 223, 219, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.product-redesign .nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.product-redesign .brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.product-redesign .brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-redesign .brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.product-redesign .brand > span strong {
  color: var(--green-3);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.product-redesign .brand > span small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-redesign .main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  color: #37443e;
  font-size: 14px;
  font-weight: 700;
}

.product-redesign .main-nav a {
  position: relative;
  padding: 26px 0;
}

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

.product-redesign .main-nav a:hover::after {
  transform: scaleX(1);
}

.product-redesign .menu-toggle {
  display: none;
}

.product-redesign .button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

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

.product-redesign .button--small {
  min-height: 42px;
  padding-inline: 18px;
}

.product-redesign .button--dark {
  background: var(--dark);
  color: #fff;
}

.product-redesign .button--primary {
  background: var(--lime);
  color: #172116;
  box-shadow: 0 12px 28px rgba(201, 227, 107, 0.2);
}

.product-redesign .button--primary:hover {
  background: #d7ee85;
  box-shadow: 0 15px 32px rgba(201, 227, 107, 0.28);
}

.product-redesign .button--outline {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.product-redesign .button--full {
  width: 100%;
}

.product-redesign .hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 58px;
  background:
    radial-gradient(circle at 76% 12%, rgba(93, 145, 113, 0.26), transparent 31%),
    linear-gradient(135deg, #102019, #122d21 52%, #0c1813);
  color: #fff;
}

.product-redesign .hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.02),
    0 0 0 140px rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.product-redesign .breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 5px 0 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.product-redesign .breadcrumbs a:hover {
  color: #fff;
}

.product-redesign .breadcrumbs strong {
  color: rgba(255, 255, 255, 0.86);
}

.product-redesign .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  gap: 46px;
  align-items: start;
}

.product-redesign .gallery,
.product-redesign .hero-copy {
  min-width: 0;
}

.product-redesign .gallery-main {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 240, 0.96)),
    #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.product-redesign .gallery-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 74, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 74, 51, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.product-redesign .gallery-main img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 425px;
  object-fit: contain;
  transition: opacity 0.18s ease, transform 0.35s ease;
}

.product-redesign .gallery-main.is-switching img {
  opacity: 0;
  transform: scale(0.98);
}

.product-redesign .gallery-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green-2);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-redesign .gallery-zoom {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green-2);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(20, 43, 32, 0.12);
}

.product-redesign .gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.product-redesign .thumb {
  overflow: hidden;
  position: relative;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-align: left;
}

.product-redesign .thumb img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  background: #fff;
}

.product-redesign .thumb span {
  display: block;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 700;
}

.product-redesign .thumb.is-active {
  border-color: var(--lime);
  color: #fff;
  box-shadow: 0 0 0 1px var(--lime);
}

.product-redesign .eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-redesign .hero .eyebrow {
  margin-bottom: 8px;
  color: var(--lime);
}

.product-redesign .eyebrow--light {
  color: var(--lime);
}

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

.product-redesign h1,
.product-redesign h2,
.product-redesign h3 {
  line-height: 1.12;
  letter-spacing: -0.032em;
}

.product-redesign h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 67px);
  font-weight: 820;
}

.product-redesign .hero h1 {
  max-width: 610px;
  margin-bottom: 14px;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.02;
}

.product-redesign h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 50px);
}

.product-redesign h3 {
  font-size: 22px;
}

.product-redesign .hero-lead {
  max-width: 660px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.product-redesign .hero-benefits {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.product-redesign .hero-benefits li {
  position: relative;
  padding-left: 24px;
}

.product-redesign .hero-benefits li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: #18301e;
  font-size: 10px;
  font-weight: 900;
}

.product-redesign .hero-benefits strong {
  color: #fff;
}

.product-redesign .reference-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.product-redesign .reference-row > div {
  padding: 9px 11px;
  border-left: 2px solid var(--lime);
  background: rgba(255, 255, 255, 0.055);
}

.product-redesign .reference-row span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-redesign .reference-row strong {
  font-size: 12px;
}

.product-redesign .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.product-redesign .hero-actions .button {
  min-height: 44px;
  padding-inline: 18px;
}

.product-redesign .text-action {
  margin: 9px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.product-redesign .text-action span {
  color: var(--lime);
  font-size: 16px;
}

.product-redesign .response-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.product-redesign .status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(201, 227, 107, 0.1);
}

.product-redesign .quick-specs {
  position: relative;
  z-index: 5;
  margin-top: -27px;
}

.product-redesign .quick-specs__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-redesign .quick-specs__grid > div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 17px;
  border-right: 1px solid var(--line);
}

.product-redesign .quick-specs__grid > div:last-child {
  border-right: 0;
}

.product-redesign .quick-specs span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-redesign .quick-specs strong {
  font-size: 14px;
}

.product-redesign .section {
  padding: 100px 0;
}

.product-redesign .section--soft {
  background: var(--soft);
}

.product-redesign .section--dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 100%, rgba(82, 126, 98, 0.22), transparent 27%),
    var(--dark);
  color: #fff;
}

.product-redesign .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.product-redesign .section-heading--narrow {
  grid-template-columns: 1fr minmax(280px, 0.6fr);
}

.product-redesign .section-heading h2 {
  margin-bottom: 0;
}

.product-redesign .section-heading > p,
.product-redesign .section-heading > div + p {
  margin: 0;
  color: var(--muted);
}

.product-redesign .section--dark .section-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.product-redesign .option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-redesign .option-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-redesign .option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-redesign .option-image {
  position: relative;
  overflow: hidden;
  background: #edf1ee;
}

.product-redesign .option-image img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-redesign .option-card:hover .option-image img {
  transform: scale(1.035);
}

.product-redesign .option-image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--lime);
  color: #172116;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-redesign .option-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.product-redesign .option-code {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-redesign .option-body h3 {
  margin-bottom: 10px;
}

.product-redesign .option-body > p:not(.option-code) {
  color: var(--muted);
  font-size: 14px;
}

.product-redesign .option-body ul {
  display: grid;
  gap: 7px;
  margin: 4px 0 22px;
  padding-left: 18px;
  color: #44504a;
  font-size: 13px;
}

.product-redesign .option-body a {
  margin-top: auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.product-redesign .option-body a::after {
  content: " →";
}

.product-redesign .spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(330px, 0.52fr);
  gap: 25px;
  align-items: start;
}

.product-redesign .spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-redesign .spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.product-redesign .spec-table th,
.product-redesign .spec-table td {
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.product-redesign .spec-table th {
  background: var(--green-2);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-redesign .spec-table tr:last-child td {
  border-bottom: 0;
}

.product-redesign .spec-table td:first-child {
  width: 21%;
  color: var(--green-2);
  font-weight: 850;
}

.product-redesign .spec-table td:nth-child(2) {
  width: 33%;
}

.product-redesign .spec-table td:last-child {
  color: var(--muted);
}

.product-redesign .spec-aside {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.product-redesign .spec-aside > img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.product-redesign .spec-aside > div {
  padding: 26px;
}

.product-redesign .spec-aside h3 {
  margin-bottom: 12px;
}

.product-redesign .spec-aside p {
  color: var(--muted);
  font-size: 14px;
}

.product-redesign .spec-aside dl {
  margin: 21px 0 0;
}

.product-redesign .spec-aside dl div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.product-redesign .spec-aside dt {
  color: var(--muted);
}

.product-redesign .spec-aside dd {
  margin: 0;
  font-weight: 800;
}

.product-redesign .component-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
}

.product-redesign .component-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.product-redesign .component-visual img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
}

.product-redesign .visual-callout {
  position: absolute;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(11, 25, 18, 0.88);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.product-redesign .visual-callout span {
  color: var(--lime);
  font-weight: 900;
}

.product-redesign .visual-callout--one {
  top: 28%;
  left: 6%;
}

.product-redesign .visual-callout--two {
  top: 15%;
  right: 5%;
}

.product-redesign .visual-callout--three {
  right: 8%;
  bottom: 16%;
}

.product-redesign .component-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-redesign .component-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.product-redesign .component-grid article > span {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: #142118;
  font-size: 11px;
  font-weight: 900;
}

.product-redesign .component-grid h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.product-redesign .component-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

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

.product-redesign .coating-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-redesign .coating-grid img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
}

.product-redesign .coating-grid article > div {
  position: relative;
  padding: 25px 25px 26px 70px;
}

.product-redesign .coating-grid article span {
  position: absolute;
  top: 25px;
  left: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.product-redesign .coating-grid h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.product-redesign .coating-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-redesign .quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 65px;
  align-items: center;
}

.product-redesign .quality-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-redesign .quality-photo img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.product-redesign .photo-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border-radius: 11px;
  background: rgba(11, 25, 18, 0.88);
  color: #fff;
  backdrop-filter: blur(12px);
}

.product-redesign .photo-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.product-redesign .quality-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.product-redesign .process-list {
  display: grid;
  gap: 0;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.product-redesign .process-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.product-redesign .process-list li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-2);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.product-redesign .process-list strong {
  display: block;
  margin-bottom: 3px;
}

.product-redesign .process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.product-redesign .application-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: var(--radius);
  background: #193025;
  color: #fff;
}

.product-redesign .application-card--wide {
  grid-column: span 2;
}

.product-redesign .application-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-redesign .application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 33%, rgba(5, 15, 9, 0.9));
}

.product-redesign .application-card > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px;
}

.product-redesign .application-card span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-redesign .application-card h3 {
  margin: 6px 0 6px;
}

.product-redesign .application-card p {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

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

.product-redesign .shipping-section {
  background: #fff;
}

.product-redesign .shipping-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);
  gap: 65px;
  align-items: center;
}

.product-redesign .shipping-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.product-redesign .shipping-points {
  display: grid;
  gap: 12px;
  margin-top: 29px;
}

.product-redesign .shipping-points > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 13px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.product-redesign .shipping-points span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.product-redesign .shipping-points p {
  margin: 0;
  font-size: 14px;
}

.product-redesign .shipping-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.product-redesign .shipping-photo img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.product-redesign .shipping-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 40px rgba(16, 32, 23, 0.15);
}

.product-redesign .shipping-label span {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-redesign .quote-checklist {
  padding-top: 50px;
}

.product-redesign .checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-redesign .checklist-grid > div {
  min-height: 190px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-redesign .checklist-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.product-redesign .checklist-grid strong {
  display: block;
  margin-bottom: 8px;
}

.product-redesign .checklist-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-redesign .faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.product-redesign .faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.product-redesign .faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 21px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
}

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

.product-redesign .faq-list summary span {
  color: var(--green);
  font-size: 19px;
  transition: transform 0.2s ease;
}

.product-redesign .faq-list details[open] summary span {
  transform: rotate(45deg);
}

.product-redesign .faq-list details p {
  margin: 0;
  padding: 0 21px 21px;
  color: var(--muted);
  font-size: 14px;
}

.product-redesign .rfq-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(92, 145, 112, 0.22), transparent 30%),
    var(--green-3);
  color: #fff;
}

.product-redesign .rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: 80px;
  align-items: start;
}

.product-redesign .rfq-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.product-redesign .rfq-contact {
  display: grid;
  gap: 9px;
  margin: 31px 0;
}

.product-redesign .rfq-contact a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.product-redesign .rfq-contact span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-redesign .rfq-copy ul {
  display: grid;
  gap: 9px;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.product-redesign .rfq-form {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.product-redesign .form-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.product-redesign .form-heading span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-redesign .form-heading strong {
  font-size: 16px;
}

.product-redesign .form-step {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--green) !important;
}

.product-redesign .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.product-redesign .rfq-form label {
  display: block;
  margin-bottom: 15px;
  color: #3e4a44;
  font-size: 12px;
  font-weight: 800;
}

.product-redesign .rfq-form input,
.product-redesign .rfq-form textarea,
.product-redesign .rfq-form select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1px solid #ccd4cf;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  transition: border 0.18s ease, box-shadow 0.18s ease;
}

.product-redesign .rfq-form input:focus,
.product-redesign .rfq-form textarea:focus,
.product-redesign .rfq-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(36, 95, 67, 0.1);
}

.product-redesign .rfq-form textarea {
  resize: vertical;
}

.product-redesign .file-field {
  padding: 14px;
  border: 1px dashed #aebbb4;
  border-radius: 8px;
  background: var(--soft);
}

.product-redesign .file-field input {
  padding: 8px 0 0;
  border: 0;
  background: transparent;
}

.product-redesign .file-field small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 500;
}

.product-redesign .form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.product-redesign .related-section {
  padding-block: 70px;
}

.product-redesign .related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-redesign .related-grid a {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, color 0.2s ease;
}

.product-redesign .related-grid span {
  color: var(--muted);
  font-size: 11px;
}

.product-redesign .related-grid strong {
  margin-top: 4px;
}

.product-redesign .related-grid i {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--green);
  font-style: normal;
  font-size: 22px;
}

.product-redesign .related-grid a:hover {
  background: var(--green-2);
  color: #fff;
}

.product-redesign .related-grid a:hover span,
.product-redesign .related-grid a:hover i {
  color: var(--lime);
}

.product-redesign .review-notes {
  padding: 22px 0;
  background: var(--lime);
  color: #172116;
}

.product-redesign .review-notes .wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.product-redesign .review-notes strong {
  white-space: nowrap;
}

.product-redesign .review-notes span {
  font-size: 12px;
  font-weight: 650;
  text-align: right;
}

.product-redesign .footer {
  padding: 55px 0 22px;
  background: #0d1511;
  color: rgba(255, 255, 255, 0.64);
}

.product-redesign .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.9fr;
  gap: 70px;
}

.product-redesign .footer img {
  width: 160px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.product-redesign .footer p {
  max-width: 360px;
  font-size: 13px;
}

.product-redesign .footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 13px;
}

.product-redesign .footer-grid strong {
  margin-bottom: 5px;
  color: #fff;
}

.product-redesign .footer a:hover {
  color: var(--lime);
}

.product-redesign .footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.product-redesign .floating-quote {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--lime);
  color: #172116;
  box-shadow: 0 15px 38px rgba(17, 42, 27, 0.24);
  font-size: 10px;
}

.product-redesign .floating-quote strong {
  font-size: 13px;
}

.product-redesign .image-dialog {
  width: min(1000px, calc(100% - 30px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.product-redesign .image-dialog::backdrop {
  background: rgba(5, 12, 8, 0.78);
  backdrop-filter: blur(4px);
}

.product-redesign .image-dialog img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.product-redesign .image-dialog button {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 30, 20, 0.88);
  color: #fff;
  cursor: pointer;
  font-size: 25px;
}

@media (max-width: 1050px) {
  .product-redesign .main-nav {
    gap: 16px;
    font-size: 12px;
  }

  .product-redesign .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .product-redesign .gallery-main {
    min-height: 420px;
  }

  .product-redesign .quick-specs__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-redesign .quick-specs__grid > div:nth-child(3) {
    border-right: 0;
  }

  .product-redesign .quick-specs__grid > div:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .product-redesign .option-grid,
.product-redesign .coating-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-redesign .option-card:last-child,
.product-redesign .coating-grid article:last-child {
    grid-column: span 2;
  }

  .product-redesign .spec-layout,
.product-redesign .component-layout,
.product-redesign .quality-layout,
.product-redesign .shipping-layout {
    grid-template-columns: 1fr;
  }

  .product-redesign .spec-aside {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .product-redesign .quality-photo img {
    min-height: 450px;
  }

  .product-redesign .rfq-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 35px;
  }
}

@media (max-width: 820px) {
  .product-redesign .preview-bar__inner {
    justify-content: center;
  }

  .product-redesign .preview-bar a {
    display: none;
  }

  .product-redesign .nav {
    grid-template-columns: auto 1fr auto;
    min-height: 66px;
    gap: 12px;
  }

  .product-redesign .brand img {
    width: 43px;
    height: 44px;
  }

  .product-redesign .brand > span small {
    display: none;
  }

  .product-redesign .brand > span strong {
    font-size: 14px;
  }

  .product-redesign .menu-toggle {
    grid-column: 3;
    display: grid;
    width: 40px;
    height: 40px;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
  }

  .product-redesign .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--green-2);
  }

  .product-redesign .main-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 9px 20px 16px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .product-redesign .main-nav.is-open {
    display: flex;
  }

  .product-redesign .main-nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .product-redesign .nav-quote {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .product-redesign .hero {
    padding-bottom: 58px;
  }

  .product-redesign .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-redesign .hero-copy {
    grid-row: 1;
    width: 100%;
  }

  .product-redesign .gallery {
    grid-row: 2;
    width: 100%;
  }

  .product-redesign .gallery-main {
    min-height: 390px;
  }

  .product-redesign .section,
.product-redesign .rfq-section {
    padding: 75px 0;
  }

  .product-redesign .section-heading,
.product-redesign .section-heading--narrow {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-redesign .component-visual {
    min-height: 430px;
  }

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

  .product-redesign .application-card--wide {
    grid-column: span 2;
  }

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

  .product-redesign .rfq-layout {
    grid-template-columns: 1fr;
  }

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

  .product-redesign .review-notes .wrap {
    display: block;
  }

  .product-redesign .review-notes span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .product-redesign .wrap {
    width: min(100% - 24px, var(--max));
  }

  .product-redesign .preview-bar {
    text-align: center;
  }

  .product-redesign h1 {
    font-size: 39px;
  }

  .product-redesign h2 {
    font-size: 31px;
  }

  .product-redesign .breadcrumbs {
    font-size: 11px;
  }

  .product-redesign .gallery-main {
    min-height: 300px;
    padding: 20px;
  }

  .product-redesign .gallery-thumbs {
    grid-template-columns: repeat(5, 86px);
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .product-redesign .reference-row {
    grid-template-columns: 1fr;
  }

  .product-redesign .reference-row strong {
    overflow-wrap: anywhere;
  }

  .product-redesign .hero-actions .button {
    width: 100%;
  }

  .product-redesign .quick-specs {
    margin-top: -18px;
  }

  .product-redesign .quick-specs__grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-redesign .quick-specs__grid > div {
    min-height: 82px;
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line);
  }

  .product-redesign .quick-specs__grid > div:nth-child(even) {
    border-right: 0 !important;
  }

  .product-redesign .quick-specs__grid > div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .product-redesign .option-grid,
.product-redesign .coating-grid,
.product-redesign .application-grid,
.product-redesign .checklist-grid,
.product-redesign .faq-list,
.product-redesign .related-grid {
    grid-template-columns: 1fr;
  }

  .product-redesign .option-card:last-child,
.product-redesign .coating-grid article:last-child,
.product-redesign .application-card--wide {
    grid-column: auto;
  }

  .product-redesign .spec-aside {
    display: block;
  }

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

  .product-redesign .component-visual {
    min-height: 330px;
  }

  .product-redesign .visual-callout {
    display: none;
  }

  .product-redesign .quality-photo img,
.product-redesign .shipping-photo img {
    min-height: 320px;
  }

  .product-redesign .photo-caption {
    display: block;
  }

  .product-redesign .photo-caption span {
    display: block;
    margin-top: 3px;
  }

  .product-redesign .form-grid,
.product-redesign .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-redesign .rfq-form {
    padding: 20px;
  }

  .product-redesign .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-redesign .footer-grid {
    gap: 28px;
  }

  .product-redesign .floating-quote {
    right: 10px;
    bottom: 10px;
  }
}

/* Isolate the redesigned product body from legacy global pseudo-elements. */
.product-redesign .hero::before,
.product-redesign .eyebrow::before {
  content: none;
}

.product-redesign .hero::after {
  background: none;
  z-index: 0;
}