.landing-page {
  background: #fbfcfd;
}

/* Product comparison and compact mobile catalog */
.catalog-card__actions .button--compare {
  grid-column: 1 / -1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  width: auto;
  min-width: 0;
  min-height: 44px;
  padding: 8px 0 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  font-weight: 800;
}

.catalog-card__actions .button--compare::after {
  content: "";
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 2px solid #778590;
  border-radius: 4px;
  background: #fff;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1;
}

.catalog-card__actions .button--compare:hover,
.catalog-card__actions .button--compare:focus-visible {
  background: transparent;
  color: #055d66;
  box-shadow: none;
}

.catalog-card__actions .button--compare:hover::after,
.catalog-card__actions .button--compare:focus-visible::after {
  border-color: #087f8c;
}

.catalog-card__actions .button--compare.is-selected {
  background: transparent;
  color: #055d66;
  box-shadow: none;
}

.catalog-card__actions .button--compare.is-selected::after {
  content: "\2713";
  border-color: #087f8c;
  background: #087f8c;
}

.catalog-card__actions .button--compare:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.catalog-card.is-compare-selected {
  border-color: rgba(8, 127, 140, 0.62);
  box-shadow: 0 0 0 2px rgba(8, 127, 140, 0.1), 0 12px 30px rgba(16, 24, 32, 0.09);
}

@media (min-width: 721px) {
  .catalog-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

.product-compare-tray {
  position: fixed;
  z-index: 1150;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(920px, calc(100% - 36px));
  margin: auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #15202b;
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.product-compare-tray[hidden] { display: none; }
.product-compare-tray > div:first-child { min-width: 0; }
.product-compare-tray strong,
.product-compare-tray span { display: block; }
.product-compare-tray span { margin-top: 2px; overflow: hidden; color: rgba(255,255,255,.72); font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.product-compare-tray__actions { display: flex; flex: 0 0 auto; gap: 8px; }
.product-compare-tray__actions > button:not(.button) { border: 0; background: transparent; color: #fff; font: inherit; cursor: pointer; }

.product-compare-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 18px;
}
.has-product-compare-modal { overflow: hidden; }
.product-compare-modal__backdrop { position: absolute; inset: 0; background: rgba(6, 12, 18, .7); }
.product-compare-modal__panel { position: relative; z-index: 1; display: flex; flex-direction: column; width: min(1100px, 100%); max-height: calc(100svh - 36px); overflow: hidden; background: #fff; box-shadow: 0 28px 80px rgba(0,0,0,.32); }
.product-compare-modal header { position: relative; z-index: 2; display: flex; flex: 0 0 auto; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); background: #fff; }
.product-compare-modal h2 { margin: 0; font-size: 1.3rem; }
.product-compare-modal header button { border: 1px solid var(--line); background: #fff; color: var(--brand-red); font: inherit; font-weight: 800; cursor: pointer; }
.product-compare-modal header .product-compare-modal__close { width: 38px; height: 38px; padding: 0; font-size: 1.4rem; }
.product-compare-table-scroll { min-height: 0; overflow: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; touch-action: pan-x pan-y; }
.product-compare-table { display: grid; grid-template-columns: 190px repeat(var(--compare-count), minmax(180px, 1fr)); min-width: 680px; }
.product-compare-table > * { min-width: 0; padding: 12px 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-compare-table > div:not(.product-compare-table__label) { display: grid; place-items: center; text-align: center; }
.product-compare-table article { display: grid; align-content: start; justify-items: center; gap: 7px; text-align: center; }
.product-compare-table__image-link { display: block; width: 100%; }
.product-compare-table article img { width: 100%; height: 100px; object-fit: contain; transition: transform 180ms ease; }
.product-compare-table__image-link:hover img,
.product-compare-table__image-link:focus-visible img { transform: scale(1.035); }
.product-compare-table article a { color: var(--brand-red); font-weight: 800; }
.product-compare-table article .product-compare-table__select { width: 100%; min-height: 38px; margin-top: 3px; border-color: var(--red); background: var(--red); color: #fff; text-decoration: none; }
.product-compare-table__label { background: #f5f7f8; color: var(--muted); font-size: .8rem; font-weight: 800; overflow-wrap: normal; word-break: normal; white-space: nowrap; }
.product-compare-table > .product-compare-table__label { padding-right: 10px; padding-left: 10px; }
.product-compare-table > div.product-compare-table__cell--alt { background: rgba(15, 23, 42, 0.028); }
.product-compare-table > .product-compare-table__label.product-compare-table__cell--alt { background: #edf2f5; }
.product-compare-table__model-value {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 5px;
  max-width: 100%;
}
.product-compare-table__model-value > span {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .product-compare-tray { right: 8px; bottom: 8px; left: 8px; display: grid; width: auto; gap: 8px; }
  .product-compare-tray__actions { display: grid; grid-template-columns: auto 1fr; }
  .product-compare-modal { padding: 8px; }
  .product-compare-modal__panel { max-height: calc(100svh - 16px); }
  .product-compare-modal header { padding: 10px 12px; }
  .product-compare-modal h2 { font-size: 1.15rem; }
  .product-compare-table {
    grid-template-columns: 190px repeat(var(--compare-count), minmax(180px, 1fr));
    min-width: 620px;
  }

  .product-compare-table__label {
    position: sticky;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    box-shadow: 10px 0 16px -16px rgba(16, 24, 32, 0.75);
  }

  .product-compare-table > .product-compare-table__label:first-child {
    top: 0;
    z-index: 6;
  }

  .product-compare-table > article {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
    box-shadow: 0 10px 18px -18px rgba(16, 24, 32, 0.7);
  }

  .product-compare-table__model-value {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
}

.lp-hero {
  position: relative;
  padding: clamp(54px, 8vw, 92px) 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(16, 24, 32, 0.95), rgba(16, 24, 32, 0.78) 54%, rgba(8, 127, 140, 0.5)),
    radial-gradient(circle at 78% 36%, rgba(8, 127, 140, 0.28), transparent 34%),
    linear-gradient(135deg, #101820 0%, #0d2538 54%, #071017 100%);
  background-color: #071017;
}

.lp-hero > .container {
  position: relative;
  z-index: 2;
}

.lp-hero--product-slideshow {
  overflow: hidden;
  background: #071017;
}

.lp-hero--product-video {
  overflow: hidden;
  background: #071017;
}

.lp-hero--product-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(0, 1, 3, 1) 0%, rgba(0, 1, 3, 0.97) 36%, rgba(3, 7, 12, 0.24) 62%, rgba(5, 10, 16, 0) 100%),
    linear-gradient(180deg, rgba(0, 2, 5, 0.22) 0%, rgba(5, 10, 16, 0.035) 46%, rgba(5, 10, 16, 0.055) 100%);
}

.lp-hero--product-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(16, 24, 32, 0.88), rgba(16, 24, 32, 0.58) 43%, rgba(16, 24, 32, 0.18) 74%, rgba(16, 24, 32, 0.08)),
    linear-gradient(0deg, rgba(16, 24, 32, 0.08), rgba(16, 24, 32, 0.08));
}

.product-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #071017;
}

.gas-category-slideshow .product-hero-slides,
.gas-category-slideshow {
  background-image: none;
  background-color: #071017;
}

.portable-hero-redesign .product-hero-slides,
.portable-hero-redesign {
  background-image: none;
  background-color: #071017;
}

.lp-hero--editorial-slideshow .product-hero-slides,
.lp-hero--editorial-slideshow {
  background-image: none;
  background-color: #071017;
}

.product-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.05) contrast(1.02);
}

.product-hero-slide {
  position: absolute;
  inset: 0;
  background-color: transparent;
  background-image: var(--slide-image);
  background-position: right center;
  background-size: auto 135%;
  background-repeat: no-repeat;
  filter: brightness(1.22) saturate(1.08) contrast(1.02);
  opacity: 0;
  animation: productHeroSlide 36s infinite;
}

.lp-hero--product-slideshow:not(.gas-category-slideshow) .product-hero-slide {
  background-size: auto 120%;
}

.lp-hero--product-slideshow:not(.gas-category-slideshow) .product-hero-slide--diesel-main-first {
  background-size: auto 110%;
}

.lp-hero--product-slideshow .lp-hero__grid {
  grid-template-columns: minmax(0, 780px);
}

.lp-hero--product-slideshow .lp-hero__copy {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.lp-hero--product-video .lp-hero__copy {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.product-hero-slide:nth-child(2) { animation-delay: 6s; }
.product-hero-slide:nth-child(3) { animation-delay: 12s; }
.product-hero-slide:nth-child(4) { animation-delay: 18s; }
.product-hero-slide:nth-child(5) { animation-delay: 24s; }
.product-hero-slide:nth-child(6) { animation-delay: 30s; }

.lp-hero--products-page-cycle .product-hero-slide {
  background-size: auto 155%;
  animation-name: productHeroSlideFast;
  animation-duration: 36s;
}

.lp-hero--product-slideshow.lp-hero--editorial-slideshow .product-hero-slide {
  background-size: auto 138%;
}

.lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide:nth-child(3),
.lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide:nth-child(5),
.lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide:nth-child(6) {
  background-size: auto 132% !important;
}

.lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide.product-hero-slide--company-compact {
  background-size: auto 132% !important;
}

.lp-hero--products-page-cycle .product-hero-slide:nth-child(2) { animation-delay: 4s; }
.lp-hero--products-page-cycle .product-hero-slide:nth-child(3) { animation-delay: 8s; }
.lp-hero--products-page-cycle .product-hero-slide:nth-child(4) { animation-delay: 12s; }
.lp-hero--products-page-cycle .product-hero-slide:nth-child(5) { animation-delay: 16s; }
.lp-hero--products-page-cycle .product-hero-slide:nth-child(6) { animation-delay: 20s; }
.lp-hero--products-page-cycle .product-hero-slide:nth-child(7) { animation-delay: 24s; }
.lp-hero--products-page-cycle .product-hero-slide:nth-child(8) { animation-delay: 28s; }
.lp-hero--products-page-cycle .product-hero-slide:nth-child(9) { animation-delay: 32s; }

@keyframes productHeroSlide {
  0%, 16.7% {
    opacity: 1;
  }
  20.5%, 100% {
    opacity: 0;
  }
}

@keyframes productHeroSlideFast {
  0%, 11.2% {
    opacity: 1;
  }
  13.8%, 100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero-slide {
    animation: none;
  }

  .product-hero-slide:first-child {
    opacity: 1;
  }
}

.lp-hero--industrial-photo {
  background:
    linear-gradient(90deg, rgba(7, 14, 22, 0.94) 0%, rgba(7, 14, 22, 0.82) 34%, rgba(7, 14, 22, 0.48) 62%, rgba(7, 14, 22, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 14, 22, 0.18), rgba(7, 14, 22, 0.46)),
    url("../img/hero-company-emergency-power.png?v=4") center center / auto 100% no-repeat;
  background-color: #071017;
}

.lp-hero--diesel {
  overflow: hidden;
  background: #071017;
}

.lp-hero--diesel::before,
.lp-hero--diesel::after {
  content: "";
  position: absolute;
  inset: 0;
}

.lp-hero--diesel::before {
  z-index: 0;
  background: url("../img/hero-diesel-new.png") right center / auto 105% no-repeat;
  filter: brightness(1.22) saturate(1.08) contrast(1.02);
}

.lp-hero--diesel::after {
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(16, 24, 32, 0.86), rgba(16, 24, 32, 0.56) 42%, rgba(16, 24, 32, 0.16) 72%, rgba(16, 24, 32, 0.08)),
    linear-gradient(0deg, rgba(16, 24, 32, 0.08), rgba(16, 24, 32, 0.08));
}

.lp-hero--category {
  min-height: 680px;
  display: grid;
  align-items: center;
}

.lp-hero--gas {
  overflow: hidden;
  background: #07120e;
}

.lp-hero--gas::before,
.lp-hero--gas::after {
  content: "";
  position: absolute;
  inset: 0;
}

.lp-hero--gas::before {
  z-index: 0;
  background: url("../img/hero-gas-generators-clean.png") right center / auto 100% no-repeat;
}

.lp-hero--gas::after {
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(5, 12, 12, 0.82), rgba(5, 12, 12, 0.56) 38%, rgba(5, 12, 12, 0.16) 68%, rgba(5, 12, 12, 0.04)),
    linear-gradient(0deg, rgba(5, 12, 12, 0.06), rgba(5, 12, 12, 0.06));
}

.lp-hero--gas .lp-hero__grid {
  grid-template-columns: minmax(0, 680px);
}

.lp-hero--gas .lp-hero__copy {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.54);
}

.lp-hero--diesel .lp-hero__grid {
  grid-template-columns: minmax(0, 700px);
}

.lp-hero--diesel .lp-hero__copy {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.diesel-hero-redesign {
  min-height: auto;
  padding: clamp(54px, 8vw, 92px) 0;
  background: #05070a;
}

.lp-hero--product-slideshow.diesel-hero-redesign {
  background: #071017 url("../img/product-hero-slides/product-slide-1-diesel-unified-20260731-v3.webp") center center / cover no-repeat;
}

.lp-hero--product-slideshow.gas-category-slideshow {
  background: #071017 url("../img/gas-hero-slides/gas-slide-1-20260729.jpg") center center / cover no-repeat;
}

.lp-hero--product-slideshow.portable-hero-redesign {
  background: #071017 url("../img/portable-hero-slides/portable-slide-1-20260729.jpg") center center / cover no-repeat;
}

.lp-hero--product-slideshow.diesel-hero-redesign::before {
  display: none;
}

.diesel-hero-redesign::before {
  background: url("../img/hero-diesel-new.png") right center / auto 130% no-repeat;
  filter: brightness(0.82) saturate(0.92) contrast(1.08);
}

.diesel-hero-redesign::after {
  background:
    linear-gradient(100deg, rgba(0, 1, 3, 1) 0%, rgba(0, 1, 3, 0.97) 36%, rgba(3, 7, 12, 0.24) 62%, rgba(5, 10, 16, 0) 100%),
    linear-gradient(180deg, rgba(0, 2, 5, 0.22) 0%, rgba(5, 10, 16, 0.035) 46%, rgba(5, 10, 16, 0.055) 100%);
}

.diesel-hero-redesign .lp-hero__grid {
  grid-template-columns: minmax(0, 780px);
}

.diesel-hero-redesign .lp-hero__copy {
  max-width: 780px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.diesel-hero-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.diesel-hero-kicker span {
  color: #ff1b1b;
  font-weight: 900;
}

.diesel-hero-kicker .diesel-hero-kicker__secondary {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.diesel-hero-kicker .diesel-hero-kicker__divider {
  display: inline-block;
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.diesel-hero-redesign .lp-hero__copy h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.25rem, 4.8vw, 4.75rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.diesel-hero-title-line {
  display: block;
  white-space: nowrap;
}

.diesel-hero-lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.55;
}

.diesel-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 780px;
  margin: clamp(26px, 4vw, 38px) 0 clamp(24px, 3vw, 34px);
}

.diesel-hero-metrics article {
  min-width: 0;
  padding: 0 18px 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.diesel-hero-metrics article:first-child {
  padding-left: 0;
  border-left: 0;
}

.diesel-hero-metrics strong,
.diesel-hero-metrics span:not(.diesel-hero-metric__icon) {
  display: block;
}

.diesel-hero-metrics strong {
  margin-top: 15px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 900;
}

.diesel-hero-metrics span:not(.diesel-hero-metric__icon) {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.35;
}

.diesel-hero-metric__icon {
  display: block;
  width: 40px;
  height: 40px;
  background: #ff1717;
  -webkit-mask: var(--hero-icon) center / contain no-repeat;
  mask: var(--hero-icon) center / contain no-repeat;
}

.diesel-hero-metric__icon--bolt {
  --hero-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 2 8 27h14l-3 19 21-27H26z'/%3E%3C/svg%3E");
}

.diesel-hero-metric__icon--engine {
  --hero-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10h14V5h8v5h6v8h7l7 8v12h-9v-7h-5v7H18l-7-7H4V19h10zm4 8v14h20V18z'/%3E%3C/svg%3E");
}

.diesel-hero-metric__icon--shield {
  --hero-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 2 44 10v17c0 13-8 22-20 27C12 49 4 40 4 27V10zm10 18-4-4-9 10-4-4-4 4 8 8z'/%3E%3C/svg%3E");
}

.diesel-hero-metric__icon--gear {
  --hero-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 2h6l2 7 5 2 7-3 4 5-4 6 2 5 7 3v6l-7 2-2 5 4 7-5 4-6-4-5 2-3 7h-6l-2-7-5-2-7 4-4-5 4-7-2-5-7-2v-6l7-3 2-5-4-6 5-5 6 3 5-2zm3 17a9 9 0 1 0 0 18 9 9 0 0 0 0-18z'/%3E%3C/svg%3E");
}

.diesel-hero-metric__icon--fuel {
  --hero-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 4h24l8 8v40H8zm6 6v14h14V10zm20 5v11l4 3v13c0 2 1 3 3 3s3-1 3-3V24l-6-6v-3zM15 39h11v5H15z'/%3E%3C/svg%3E");
}

.diesel-hero-metric__icon--case {
  --hero-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 56 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 8h16l3 7h9c3 0 5 2 5 5v20c0 3-2 5-5 5H8c-3 0-5-2-5-5V20c0-3 2-5 5-5h9zm5 6-1 1h8l-1-1zM8 24v16h40V24h-7v5h-5v-5H20v5h-5v-5z'/%3E%3C/svg%3E");
}

.diesel-hero-actions {
  gap: 18px;
}

.diesel-hero-actions .button {
  min-height: 54px;
  min-width: min(100%, 260px);
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
}

.diesel-hero-actions .button::after {
  content: "→";
  margin-left: 18px;
  font-size: 1.45em;
  line-height: 1;
}

.diesel-hero-actions .button--light {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.lp-hero--portable {
  overflow: hidden;
  background: #100c05;
}

.lp-hero--portable::before,
.lp-hero--portable::after {
  content: "";
  position: absolute;
  inset: 0;
}

.lp-hero--portable::before {
  z-index: 0;
  background: url("../img/Hintergrund Tragbare Generatoren Produkteseite ohne Beschriftung.PNG") right center / auto 100% no-repeat;
}

.lp-hero--portable::after {
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(9, 7, 4, 0.88), rgba(11, 8, 5, 0.62) 40%, rgba(11, 8, 5, 0.18) 72%, rgba(11, 8, 5, 0.06)),
    linear-gradient(0deg, rgba(9, 7, 4, 0.08), rgba(9, 7, 4, 0.08));
}

.lp-hero--portable .lp-hero__grid {
  grid-template-columns: minmax(0, 680px);
}

.lp-hero--portable .lp-hero__copy {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.54);
}

.portable-inquiry {
  padding: clamp(26px, 4vw, 46px) 0;
  background: #fff;
}

.portable-inquiry__inner,
.gas-inquiry__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.portable-inquiry .quote-panel,
.gas-inquiry .quote-panel {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lp-hero__mobile-image {
  display: none;
}

.diesel-inquiry,
.gas-inquiry,
.portable-inquiry,
.quick-recommendation {
  padding: clamp(28px, 4vw, 48px) 0;
  background: #fff;
}

.diesel-inquiry__inner,
.gas-inquiry__inner,
.portable-inquiry__inner,
.quick-recommendation__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.diesel-inquiry__inner h2,
.gas-inquiry__inner h2,
.portable-inquiry__inner h2,
.quick-recommendation__inner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.diesel-inquiry__inner p:not(.eyebrow),
.gas-inquiry__inner p:not(.eyebrow),
.portable-inquiry__inner p:not(.eyebrow),
.quick-recommendation__inner p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.diesel-inquiry__form,
.gas-inquiry__form,
.portable-inquiry__form,
.quick-recommendation__form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fafb;
  box-shadow: var(--shadow-soft);
}

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

.product-family-inquiry__form {
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 3fr);
}

.product-family-inquiry__form > .product-family-inquiry__fields {
  grid-column: 2;
}

.product-family-inquiry__form > label:last-of-type {
  grid-column: 1;
}

.product-family-inquiry__form > .button {
  grid-column: 2;
  justify-self: start;
  min-width: 210px;
}

.product-family-inquiry__form .form-fallback-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-family-inquiry__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.product-family-inquiry__fields[hidden] {
  display: none;
}

.product-family-inquiry__fields[data-product-family-fields="gas"] {
  grid-template-columns: minmax(180px, 1.35fr) repeat(3, minmax(118px, 0.9fr));
}

.product-family-inquiry__form label {
  min-width: 0;
  white-space: nowrap;
  font-size: 0.86rem;
}

.gas-inquiry__form {
  grid-template-columns: minmax(150px, 1fr) minmax(120px, 0.72fr) minmax(120px, 0.78fr) minmax(145px, 0.9fr) minmax(170px, 1.05fr) auto;
}

.diesel-inquiry__form label,
.gas-inquiry__form label,
.portable-inquiry__form label {
  min-width: 0;
  white-space: nowrap;
  font-size: 0.86rem;
}

.portable-inquiry__form {
  grid-template-columns: repeat(4, minmax(140px, 1fr)) auto;
}

.diesel-inquiry__form .button,
.gas-inquiry__form .button,
.portable-inquiry__form .button,
.quick-recommendation__form .button {
  min-height: 50px;
  white-space: nowrap;
}

.project-inquiry .eyebrow {
  margin-bottom: 8px;
}

.project-inquiry__intro {
  max-width: 850px;
}

.project-inquiry__intro h2 {
  margin-bottom: 8px;
}

.gas-hero-redesign .diesel-hero-kicker span,
.portable-hero-redesign .diesel-hero-kicker span {
  color: #ff2525;
}

.gas-hero-redesign .diesel-hero-kicker .diesel-hero-kicker__secondary {
  color: rgba(255, 255, 255, 0.92);
}

.gas-hero-metrics {
  max-width: 760px;
}

.gas-hero-metric-nowrap {
  white-space: normal;
}

.gas-hero-metrics strong,
.gas-hero-metrics span:not(.diesel-hero-metric__icon) {
  overflow-wrap: break-word;
}

.gas-category-slideshow .product-hero-slide {
  background-position: right center;
  background-size: auto 115%;
  filter: brightness(1.22) saturate(1.08) contrast(1.02);
  animation-name: gasHeroSlide;
  animation-duration: 25s;
}

.gas-category-slideshow .product-hero-slide:nth-child(2) { animation-delay: 5s; }
.gas-category-slideshow .product-hero-slide:nth-child(3) { animation-delay: 10s; }
.gas-category-slideshow .product-hero-slide:nth-child(4) { animation-delay: 15s; }
.gas-category-slideshow .product-hero-slide:nth-child(5) { animation-delay: 20s; }

@keyframes gasHeroSlide {
  0%, 20% {
    opacity: 1;
  }
  24%, 100% {
    opacity: 0;
  }
}

.gas-range-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.gas-range-groups--matrix {
  grid-template-columns: minmax(0, 1fr);
  gap: 44px;
}

.gas-range-group {
  padding: 18px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 24, 32, 0.07);
}

.gas-range-group--matrix {
  padding: 20px;
  background: linear-gradient(180deg, rgba(248, 250, 251, 0.96), rgba(255, 255, 255, 0.98));
}

.gas-range-group__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.gas-range-group__header > span:not(.gas-range-group__fuel-icon) {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gas-range-group__fuel-icon {
  position: absolute;
  left: 50%;
  top: calc(50% - 7px);
  transform: translate(-50%, -50%);
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.07);
}

.gas-range-group__fuel-icon--natural-gas {
  color: #007c89;
}

.gas-range-group__fuel-icon--lpg {
  color: #d8761b;
}

.gas-range-group__fuel-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.gas-range-group__header strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.gas-range-board {
  display: grid;
  gap: 12px;
}

.gas-range-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
}

.gas-range-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

.gas-range-brand img {
  width: 110px;
  height: 48px;
  object-fit: contain;
}

.gas-range-fuel {
  display: none;
}

.gas-range-track {
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(21, 125, 58, 0.1), rgba(21, 125, 58, 0.22));
  overflow: hidden;
}

.gas-range-bar {
  display: block;
  width: var(--width, 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #15803d, #35d66d);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.gas-range-value {
  color: var(--ink);
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.gas-range-matrix-shell {
  box-shadow: 0 14px 32px rgba(16, 24, 32, 0.06);
}

.gas-range-matrix-block {
  display: grid;
  gap: 10px;
}

.gas-range-matrix-title {
  display: grid;
  grid-template-columns: 148px repeat(23, minmax(0, 1fr));
  align-items: center;
  column-gap: 0;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.gas-range-matrix-title .gas-range-group__fuel-icon {
  position: static;
  transform: none;
  width: 34px;
  height: 34px;
}

.gas-range-matrix-title .gas-range-fuel-logo {
  display: inline-grid;
  grid-column: 1;
  align-items: center;
  justify-items: center;
  gap: 7px;
  width: 148px;
  max-width: none;
}

.gas-range-matrix-title .gas-range-fuel-logo .catalog-fuel-indicator__icon {
  width: 58px;
  height: 62px;
}

.gas-range-matrix-title .gas-range-fuel-logo .catalog-fuel-indicator__icon svg {
  width: 54px;
  height: 54px;
}

.gas-range-matrix-title .gas-range-fuel-logo .catalog-fuel-indicator__text strong {
  font-size: 1.02rem;
  line-height: 1.05;
}

.gas-range-matrix-title span:not(.gas-range-group__fuel-icon) {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gas-range-matrix-title > strong {
  grid-column: 24;
  justify-self: end;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
  white-space: nowrap;
}

.gas-range-matrix {
  width: 100%;
}

.gas-range-matrix .range-matrix-axis,
.gas-range-matrix .range-matrix-row {
  grid-template-columns: 148px repeat(23, minmax(0, 1fr));
}

.gas-range-matrix .range-matrix-row {
  min-height: 54px;
}

.gas-range-matrix .range-matrix-track {
  grid-column: 2 / span 23;
  grid-template-columns: repeat(23, minmax(0, 1fr));
  padding: 8px 0;
}

.gas-range-matrix .range-matrix-bar {
  height: 34px;
  min-width: 30px;
  justify-content: flex-end;
  padding: 0 7px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
}

.gas-range-matrix .range-matrix-bar b {
  font-size: 0.78rem;
  white-space: nowrap;
}

.gas-range-matrix .range-matrix-brand img {
  width: 92px;
  height: 44px;
}

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

.gas-library-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.gas-library-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 38, 28, 0.32);
}

.gas-library-card__media {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f7fafb;
}

.gas-library-card__media img {
  width: 145px;
  height: 66px;
  object-fit: contain;
}

.gas-library-card strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.gas-library-card span {
  color: var(--muted);
  line-height: 1.5;
}

.lp-hero__grid,
.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.lp-hero__grid--single {
  grid-template-columns: minmax(0, 820px);
}

.lp-hero__copy h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.8vw, 4.75rem);
  line-height: 1;
  font-weight: 900;
}

.lp-hero__copy h1 [data-product-title-model] {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}

.lp-hero__copy h1 [data-product-title-suffix] {
  display: block;
  margin-top: 8px;
  font-size: 0.58em;
  line-height: 1;
  white-space: nowrap;
}

.lp-hero__copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.55;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #d7e0e6;
  font-size: 0.9rem;
}

.crumbs a,
.crumbs span,
.crumbs strong {
  display: inline-flex;
  align-items: center;
}

.crumbs [data-product-breadcrumb],
.crumbs strong:last-child {
  white-space: nowrap;
}

@media (min-width: 900px) {
  .product-hero .crumbs,
  .lp-hero .crumbs {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .product-hero .crumbs a,
  .product-hero .crumbs span,
  .product-hero .crumbs strong,
  .lp-hero .crumbs a,
  .lp-hero .crumbs span,
  .lp-hero .crumbs strong {
    white-space: nowrap;
  }
}

.crumbs a::after,
.crumbs span::after {
  content: "/";
  margin-left: 8px;
  color: #ffb3ad;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #fff;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.24);
}

.quote-panel,
.lead-form {
  border: 1px solid rgba(215, 224, 230, 0.86);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: clamp(22px, 3vw, 32px);
}

.quote-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
}

.quote-panel p {
  color: var(--muted);
}

.partner-logo {
  width: 112px;
  height: auto;
  margin-bottom: 20px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-2);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.92rem !important;
}

.form-note a {
  color: var(--red-dark);
  font-weight: 900;
}

.lp-proof {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.lp-proof__grid div {
  padding: 22px 18px;
  border-left: 1px solid var(--line);
}

.lp-proof__grid div:last-child {
  border-right: 1px solid var(--line);
}

.lp-proof__grid strong {
  display: block;
  color: var(--red);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.1;
}

.lp-proof__grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.category-grid {
  display: grid;
  gap: 22px;
}

.category-card {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 44px rgba(16, 24, 32, 0.07);
}

.category-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: var(--radius);
  background: #071017;
}

.category-card img.category-card__image--wide {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 981px) {
  .category-card img[src*="category-diesel-generators"] {
    object-fit: cover;
  }

  /* Produkte > Unterkategorien: Bilder vergroessern, ohne die Textspalte zu veraendern. */
  .category-grid .category-card > img.category-card__image--wide {
    transform: scale(1.1);
    transform-origin: center;
  }
}

.category-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
}

.category-card p {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--muted);
}

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

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

.brand-grid span {
  min-height: 76px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.055);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.brand-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
}

.filter-logic-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 168px;
  padding: 24px 24px 22px;
  overflow: hidden;
  border: 1px solid rgba(205, 216, 224, 0.95);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f7fafb 100%);
  box-shadow: 0 16px 42px rgba(16, 24, 32, 0.08);
}

.filter-logic-grid article::before {
  content: "";
  width: 38px;
  height: 3px;
  margin-bottom: 4px;
  border-radius: 999px;
  background: var(--red);
}

.filter-logic-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 127, 140, 0.16);
  border-radius: 50%;
  background: rgba(8, 127, 140, 0.055);
  pointer-events: none;
}

.filter-logic-grid strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.25;
}

.filter-logic-grid span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

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

@media (max-width: 640px) {
  .filter-logic-grid {
    grid-template-columns: 1fr;
  }

  .filter-logic-grid article {
    min-height: auto;
    padding: 20px 20px 22px;
  }

  .filter-logic-grid article::after {
    display: none;
  }
}

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

.application-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.06);
}

.application-grid span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.application-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

@media (max-width: 640px) {
  .application-grid {
    grid-template-columns: 1fr;
  }
}

.mini-specs {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.mini-specs div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mini-specs dt {
  color: var(--muted);
  font-weight: 800;
}

.mini-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.company-profile-band {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}

.company-profile-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2fr);
  gap: clamp(16px, 2.6vw, 28px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(215, 224, 230, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(16, 24, 32, 0.12);
}

.company-profile-card h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.company-profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.company-profile-facts div {
  min-height: 96px;
  padding: 14px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f7fafb);
  overflow: hidden;
}

.company-profile-facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: normal;
}

.company-profile-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.catalog-panel {
  display: grid;
  gap: 20px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 52px rgba(16, 24, 32, 0.08);
}

.section-heading--with-fuel-indicator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.section-heading--with-fuel-indicator > .eyebrow,
.section-heading--with-fuel-indicator > h2,
.section-heading--with-fuel-indicator > p:not(.eyebrow) {
  grid-column: 1;
}

.catalog-fuel-indicators {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.catalog-fuel-indicators--dual {
  grid-template-columns: repeat(2, auto);
}

.catalog-fuel-indicators--dual .catalog-fuel-indicator {
  width: auto;
  min-width: 0;
  max-width: none;
}

.catalog-fuel-indicator {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 178px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #007c89;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.catalog-fuel-indicators:not(.catalog-fuel-indicators--dual) .catalog-fuel-indicator {
  min-width: 0;
}

.catalog-fuel-indicator--lpg {
  color: #d36f18;
  background: transparent;
}

.catalog-fuel-indicator__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 6px 10px rgba(16, 24, 32, 0.13));
}

.catalog-fuel-indicator--lpg .catalog-fuel-indicator__icon {
  background: transparent;
}

.catalog-fuel-indicator__icon svg {
  width: 40px;
  height: 40px;
}

.catalog-fuel-icon__flame {
  fill: currentColor;
}

.catalog-fuel-indicator__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.catalog-fuel-indicator__text small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-fuel-indicator__text strong {
  color: currentColor;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.1;
  text-transform: uppercase;
}

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

.catalog-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fafb;
}

.catalog-stats strong {
  display: block;
  color: var(--red);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1;
}

.catalog-stats span {
  color: var(--muted);
  font-weight: 800;
}

.catalog-controls {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(180px, 0.8fr));
  gap: 14px;
  margin: 8px 0 6px;
  padding: 18px;
  border: 1px solid rgba(210, 48, 39, 0.18);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(210, 48, 39, 0.08), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.1);
  overflow: hidden;
}

.catalog-controls::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--red), #f7b3aa);
}

.catalog-controls--portable {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 0.75fr));
}

.catalog-controls--gas-main {
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 0.8fr));
}

.catalog-controls label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(16, 24, 32, 0.07);
  border-radius: 12px;
  color: var(--ink-2);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.catalog-controls input,
.catalog-controls select {
  width: 100%;
  border: 1px solid rgba(16, 24, 32, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.05);
}

.catalog-controls input:focus,
.catalog-controls select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(210, 48, 39, 0.14), 0 10px 22px rgba(16, 24, 32, 0.08);
}

.catalog-brand-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 24, 32, 0.08);
}

.catalog-brand-filter-label {
  margin-top: 16px;
  color: var(--red-dark);
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-brand-filter--logos {
  display: grid;
  grid-template-columns: minmax(106px, 1.05fr) repeat(11, minmax(86px, 1fr));
  align-items: stretch;
  gap: 8px;
}

.diesel-brand-scrollbar {
  position: relative;
  height: 7px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.1);
  cursor: grab;
  touch-action: none;
}

.diesel-brand-scrollbar[hidden] {
  display: none;
}

.diesel-brand-scrollbar__thumb {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--diesel-brand-scrollbar-thumb-width, 50%);
  border-radius: inherit;
  background: rgba(92, 108, 120, 0.58);
  box-shadow: 0 0 0 1px rgba(16, 24, 32, 0.05);
  transform: translateX(var(--diesel-brand-scrollbar-thumb-x, 0px));
}

.diesel-brand-scrollbar.is-dragging {
  cursor: grabbing;
}

.catalog-count {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.catalog-back-to-start {
  position: fixed;
  right: 16px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(16, 24, 32, 0.18);
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.18);
  font: inherit;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.catalog-back-to-start.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.catalog-back-to-start span {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-size: 1.05rem;
  line-height: 1;
}

.catalog-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: #fff;
}

.catalog-table th,
.catalog-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.catalog-table th {
  color: var(--ink);
  background: #f4f7f8;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.catalog-table td {
  color: var(--ink-2);
}

.catalog-table td span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.table-download {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.table-download--secondary {
  background: var(--red);
}

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

.catalog-load-more-trigger {
  height: 1px;
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(130px, 180px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.07);
}

.catalog-card__image {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #fff;
}

.catalog-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.portable-ip54-badge {
  position: absolute;
  z-index: 4;
  display: block;
  line-height: 0;
  filter: drop-shadow(0 5px 10px rgba(16, 24, 32, 0.16));
}

.portable-ip54-badge img,
.catalog-card--portable .catalog-card__image .portable-ip54-badge img,
[data-portable-product-page] .product-hero__image--portable .portable-ip54-badge img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  padding: 0;
  aspect-ratio: auto;
  object-fit: contain;
  transform: none;
}

.portable-ip54-badge--card {
  right: 10px;
  bottom: 10px;
}

.catalog-card--portable .catalog-card__image .portable-ip54-badge--card img {
  width: 48px !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: auto !important;
}

[data-portable-product-page] .product-hero__image--portable {
  position: relative;
}

.portable-ip54-badge--hero {
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(8px, 1.6vw, 18px);
}

[data-portable-product-page] .product-hero__image--portable .portable-ip54-badge--hero img {
  width: clamp(62px, 6vw, 82px);
}

@media (max-width: 600px) {
  .portable-ip54-badge--hero {
    right: 8px;
    bottom: 6px;
  }

  [data-portable-product-page] .product-hero__image--portable .portable-ip54-badge--hero img {
    width: 56px;
  }
}

.catalog-card__power-badge,
.catalog-card__brand-logo,
.catalog-card__stage-badge,
.catalog-card__portable-stage-badge,
.catalog-card__inverter-badge,
.catalog-card__phase-badge {
  position: absolute;
  z-index: 2;
}

.catalog-card__power-badge {
  top: 10px;
  left: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  padding: 8px 11px 8px 10px;
  border: 1px solid rgba(255, 232, 82, 0.88);
  border-radius: 7px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.20) 18%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.18) 53%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(135deg, #d69d00, #ffc400 36%, #ffe048 58%, #f4b800 78%, #b67d00);
  color: #101820;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), inset 0 -1px 0 rgba(92, 63, 0, 0.34), 0 0 0 1px rgba(120, 82, 0, 0.10), 0 12px 26px rgba(82, 56, 0, 0.18), 0 0 18px rgba(255, 207, 18, 0.24);
}

.catalog-card__power-badge b {
  font-size: 0.82rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.catalog-card__power-badge small {
  color: rgba(16, 24, 32, 0.76);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.catalog-card__stage-badge {
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 88px;
  padding: 7px 9px 7px 8px;
  overflow: visible;
  border-radius: 999px;
  line-height: 1;
  box-shadow:
    0 12px 24px rgba(16, 24, 32, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.catalog-card__stage-badge--v {
  border: 1px solid rgba(54, 145, 54, 0.34);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(245, 251, 245, 0.9)),
    linear-gradient(135deg, rgba(112, 198, 78, 0.18), rgba(13, 89, 44, 0.08));
  color: #0d5b30;
}

.catalog-card__stage-badge--iiia {
  border: 1px solid rgba(19, 128, 151, 0.32);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(241, 250, 252, 0.9)),
    linear-gradient(135deg, rgba(52, 183, 203, 0.18), rgba(18, 93, 128, 0.08));
  color: #10536b;
}

.catalog-card__stage-leaf {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 17px;
  border-radius: 100% 0 100% 0;
  transform: rotate(-14deg);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.catalog-card__stage-badge--v .catalog-card__stage-leaf {
  background: linear-gradient(135deg, #85d75a 0%, #2b9b44 55%, #0c5b32 100%);
}

.catalog-card__stage-badge--iiia .catalog-card__stage-leaf {
  background: linear-gradient(135deg, #7bd4e2 0%, #1d90ab 55%, #12506e 100%);
}

.catalog-card__stage-leaf::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 3px;
  top: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transform: rotate(-22deg);
}

.catalog-card__stage-text {
  display: grid;
  gap: 1px;
  text-align: left;
}

.catalog-card__stage-text b,
.catalog-card__stage-text strong {
  display: block;
  white-space: nowrap;
}

.catalog-card__stage-text b {
  font-size: 0.52rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.catalog-card__stage-badge--v .catalog-card__stage-text b {
  color: #101820;
}

.catalog-card__stage-badge--iiia .catalog-card__stage-text b {
  color: #101820;
}

.catalog-card__stage-text strong {
  font-size: 0.7rem;
  font-weight: 950;
}

.catalog-card__stage-badge--v .catalog-card__stage-text strong {
  color: #101820;
}

.catalog-card__stage-badge--iiia .catalog-card__stage-text strong {
  color: #101820;
}

@media (min-width: 901px) {
  .catalog-card__stage-badge {
    gap: 6px;
    min-width: 70px;
    padding: 6px 8px 6px 7px;
  }

  .catalog-card__stage-leaf {
    width: 18px;
    height: 14px;
  }

  .catalog-card__stage-leaf::after {
    left: 3px;
    right: 3px;
    top: 6px;
    height: 2px;
  }

  .catalog-card__stage-text b {
    font-size: 0.43rem;
  }

  .catalog-card__stage-text strong {
    font-size: 0.58rem;
  }

  .catalog-card__portable-stage-badge {
    gap: 6px;
    min-width: 70px;
    padding: 6px 8px 6px 7px;
  }

  .catalog-card__portable-stage-leaf {
    width: 18px;
    height: 14px;
  }

  .catalog-card__portable-stage-leaf::after {
    left: 3px;
    right: 3px;
    top: 6px;
    height: 2px;
  }

  .catalog-card__portable-stage-text b {
    font-size: 0.43rem;
  }

  .catalog-card__portable-stage-text strong {
    font-size: 0.58rem;
  }
}

.catalog-card__brand-logo {
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 96px;
  height: 46px;
  min-width: 0;
  max-width: none;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-card__brand-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: var(--catalog-brand-logo-width, 84px);
  max-height: var(--catalog-brand-logo-height, 38px);
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: none;
}

.catalog-card__brand-logo img[alt*="Volvo" i],
.catalog-card__brand-logo img[alt*="Perkins" i],
.catalog-card__brand-logo img[alt*="Baudouin" i],
.catalog-card__brand-logo img[alt*="Hyundai" i] {
  --catalog-brand-logo-width: 94px;
  --catalog-brand-logo-height: 42px;
}

.catalog-card__brand-logo img[alt*="DEUTZ" i] {
  --catalog-brand-logo-width: 76px;
  --catalog-brand-logo-height: 46px;
}

.catalog-card__brand-logo img[alt*="Mitsubishi" i] {
  --catalog-brand-logo-width: 58px;
  --catalog-brand-logo-height: 45px;
}

.catalog-card__brand-logo img[alt*="Scania" i] {
  --catalog-brand-logo-width: 48px;
  --catalog-brand-logo-height: 30px;
}

.catalog-card__brand-logo img[alt*="Cummins" i],
.catalog-card__brand-logo img[alt*="PSI" i] {
  --catalog-brand-logo-width: 40px;
  --catalog-brand-logo-height: 30px;
}

.catalog-card__brand-logo img[alt*="Yanmar" i] {
  --catalog-brand-logo-width: 42px;
  --catalog-brand-logo-height: 30px;
}

.catalog-card__body {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.catalog-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.catalog-card__head span {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-card__head h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.3vw, 1.25rem);
  line-height: 1.15;
}

.catalog-card__head h3 a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  line-height: 1.05;
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.14);
}

.catalog-card__head h3 a:hover {
  background: var(--red-dark);
  color: #fff;
}

.catalog-card--diesel .catalog-card__head {
  align-items: flex-start;
  grid-template-columns: minmax(0, 1fr) auto;
}

.catalog-card--diesel .catalog-card__head h3 a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  line-height: 1.05;
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.14);
}

.catalog-card--diesel .catalog-card__head h3 a:hover {
  color: #fff;
  background: var(--red-dark);
}

.catalog-card__variant {
  flex: 0 0 auto;
  justify-self: end;
  margin: 0;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-card__head strong {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(225, 38, 28, 0.1);
  color: var(--red-dark);
  font-size: 0.82rem;
}

.catalog-card__head-logo {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: 70px;
  max-width: 96px;
  height: 34px;
  margin: 0;
  padding: 6px 8px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.07);
}

.catalog-card__head-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-card__fuel-tile {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  align-items: center;
  align-content: center;
  gap: 3px;
  width: 64px;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #007c89;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.catalog-card__fuel-tile--lpg {
  color: #d8761b;
  background: transparent;
}

.catalog-card__head .catalog-card__fuel-tile--natural-gas {
  color: #007c89;
}

.catalog-card__head .catalog-card__fuel-tile--natural-gas .catalog-card__fuel-icon {
  color: #007c89;
}

.catalog-card__head .catalog-card__fuel-tile--lpg {
  color: #d8761b;
}

.catalog-card__head .catalog-card__fuel-tile--lpg .catalog-card__fuel-icon {
  color: #d8761b;
}

.catalog-card__fuel-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 5px 9px rgba(16, 24, 32, 0.13));
}

.catalog-card__fuel-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.catalog-card__fuel-tile strong {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-size: 0.58rem;
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.catalog-card__head .catalog-card__fuel-tile strong {
  display: flex;
  width: 100%;
  text-align: center;
}

.catalog-card__fuel-tile strong span {
  display: block;
  width: 100%;
  text-align: center;
}

.catalog-card__fuel-tile--lpg strong,
.catalog-card__fuel-tile--lpg strong span {
  color: #d8761b;
}

.catalog-card__fuel-tile--lpg strong {
  font-size: 0.68rem;
  line-height: 1;
}

.catalog-card__fuel-tile--image {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 58px;
  min-height: 48px;
  padding: 0;
}

.catalog-card__fuel-tile--image .catalog-card__fuel-icon {
  width: 28px;
  height: 28px;
}

.catalog-card__fuel-tile--image .catalog-card__fuel-icon svg {
  width: 21px;
  height: 21px;
}

.catalog-card__fuel-tile--image strong {
  min-height: 1.2rem;
  font-size: 0.45rem;
}

.catalog-card__fuel-tile--image.catalog-card__fuel-tile--lpg strong {
  font-size: 0.52rem;
}

@media (min-width: 901px) {
  .catalog-card--gas .catalog-card__image .catalog-card__fuel-tile--image {
    display: none;
  }

  .catalog-card--gas .catalog-card__head .catalog-card__fuel-tile {
    width: 64px;
    min-height: 48px;
    padding: 0;
    gap: 3px;
  }

  .catalog-card--gas .catalog-card__head .catalog-card__fuel-icon {
    width: 35px;
    height: 37px;
  }

  .catalog-card--gas .catalog-card__head .catalog-card__fuel-icon svg {
    width: 29px;
    height: 29px;
  }

  .catalog-card--gas .catalog-card__head .catalog-card__fuel-tile strong {
    min-height: 1.48rem;
    font-size: 0.54rem;
  }

  .catalog-card--gas .catalog-card__head .catalog-card__fuel-tile--lpg strong {
    font-size: 0.68rem;
  }
}

@media (max-width: 900px) {
  .catalog-card--gas .catalog-card__head > .catalog-card__fuel-tile {
    display: none;
  }
}

.catalog-card__diesel-tile {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 3px;
  width: 62px;
  height: auto;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #101820;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.catalog-card__head .catalog-card__diesel-tile {
  color: #101820;
}

.catalog-card__head .catalog-card__diesel-tile,
.catalog-card__head .catalog-card__diesel-icon,
.catalog-card__head .catalog-card__diesel-icon svg {
  color: #101820;
}

.catalog-card__head .catalog-card__fuel-icon,
.catalog-card__head .catalog-card__diesel-icon,
.catalog-card__head .catalog-card__portable-icon {
  display: inline-grid;
  place-items: center;
  margin-bottom: 0;
}

.catalog-card__diesel-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 5px 9px rgba(16, 24, 32, 0.13));
  overflow: hidden;
}

.catalog-card__diesel-icon svg {
  display: block;
  width: 30px;
  height: 30px;
}

.catalog-card__diesel-icon .solid {
  fill: currentColor;
}

.catalog-card__diesel-icon .cutout {
  fill: #fff;
}

.catalog-card__diesel-icon .line {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-card__diesel-icon .panel-text {
  fill: currentColor;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.catalog-card__diesel-tile strong {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.catalog-card__portable-tile {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 2px;
  width: 66px;
  height: auto;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #101820;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.catalog-card__head .catalog-card__portable-tile {
  color: #101820;
}

.catalog-card__head .catalog-card__portable-tile,
.catalog-card__head .catalog-card__portable-icon {
  color: #101820;
}

.catalog-card__portable-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 5px 9px rgba(16, 24, 32, 0.13));
  overflow: hidden;
}

.catalog-card__portable-icon img {
  display: block;
  width: 52px;
  height: 40px;
  object-fit: contain;
  transform: translateY(-2px);
}

.catalog-card__portable-tile strong {
  display: block;
  width: 100%;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.catalog-card--diesel {
  grid-template-columns: minmax(200px, 0.86fr) minmax(0, 1.08fr);
}

.catalog-card--gas {
  grid-template-columns: minmax(200px, 0.86fr) minmax(0, 1.08fr);
}

.catalog-card--gas .catalog-card__image {
  min-height: 250px;
  padding: 15px;
  background:
    radial-gradient(circle at 50% 65%, rgba(16, 24, 32, 0.07), transparent 54%),
    linear-gradient(180deg, #fff, #f8fafb);
}

.catalog-card--gas .catalog-card__image > img {
  width: min(100%, 330px);
  max-height: 228px;
}

.catalog-card--diesel .catalog-card__image {
  min-height: 250px;
  padding: 16px;
  background:
    radial-gradient(circle at 50% 65%, rgba(16, 24, 32, 0.08), transparent 54%),
    linear-gradient(180deg, #fff, #f7f9fa);
}

.catalog-card--diesel .catalog-card__image > img {
  width: min(100%, 330px);
  max-height: 228px;
  image-rendering: auto;
}

.catalog-card--diesel.catalog-card--t55-image .catalog-card__image > img {
  width: min(88%, 315px);
  max-height: 212px;
}

.catalog-card__image > img[src*="productbild-4."] {
  width: min(112%, 370px);
  max-width: none;
  max-height: 245px;
}

.catalog-card--diesel .catalog-card__image > img[src*="productbild-6-v2."] {
  width: min(112%, 370px);
  max-width: none;
  max-height: 245px;
}

.catalog-card--diesel .catalog-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gas-card-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

.gas-card-facts div {
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(215, 224, 230, 0.86);
  border-radius: 8px;
  background: #f7f9fa;
}

.gas-card-facts dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gas-card-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.catalog-card--diesel .button--inquiry {
  background: var(--red);
}

.catalog-card--diesel .button--inquiry:hover {
  background: var(--red-dark);
}

.catalog-card--diesel .button--technical {
  background: var(--ink);
}

.catalog-card--diesel .button--technical:hover {
  background: var(--red-dark);
}

.catalog-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px 10px;
  margin: 0;
}

.catalog-specs div {
  min-width: 0;
  padding: 5px 0;
  border-top: 1px solid rgba(215, 224, 230, 0.8);
}

.catalog-specs dt {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
}

.catalog-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.catalog-card--gas .catalog-specs,
.catalog-card--diesel .catalog-specs,
.catalog-card--portable .catalog-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

.catalog-card--gas .catalog-specs div,
.catalog-card--diesel .catalog-specs div,
.catalog-card--portable .catalog-specs div {
  padding: 8px 0;
}

.catalog-card--gas .catalog-specs dt,
.catalog-card--diesel .catalog-specs dt,
.catalog-card--portable .catalog-specs dt {
  margin-bottom: 5px;
  font-size: clamp(0.58rem, 0.64vw, 0.66rem);
  white-space: nowrap;
}

.catalog-card--gas .catalog-specs dd,
.catalog-card--diesel .catalog-specs dd,
.catalog-card--portable .catalog-specs dd {
  font-size: clamp(0.88rem, 0.98vw, 1rem);
  font-weight: 800;
  line-height: 1.18;
}

.catalog-card--gas .catalog-specs dd.catalog-specs__model-value,
.catalog-card--diesel .catalog-specs dd.catalog-specs__model-value {
  display: grid;
  gap: 2px;
  font-size: clamp(0.9rem, 0.98vw, 1rem);
  line-height: 1.1;
  min-width: 0;
  justify-items: end;
  text-align: right;
}

.catalog-card--gas .catalog-specs__model-brand,
.catalog-card--gas .catalog-specs__model-type,
.catalog-card--diesel .catalog-specs__model-brand,
.catalog-card--diesel .catalog-specs__model-type {
  min-width: 0;
  display: block;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.catalog-card--gas .catalog-specs__model-brand,
.catalog-card--diesel .catalog-specs__model-brand {
  color: var(--ink);
  font-size: 0.96em;
  font-weight: 800;
}

.catalog-card--gas .catalog-specs__model-type,
.catalog-card--diesel .catalog-specs__model-type {
  color: var(--ink);
  font-weight: 900;
}

.catalog-card--diesel .catalog-specs dd.catalog-specs__model-value {
  font-size: clamp(0.88rem, 0.94vw, 0.98rem);
}

.catalog-card--gas .catalog-specs__power,
.catalog-card--diesel .catalog-specs__power,
.catalog-card--gas .catalog-specs__model,
.catalog-card--diesel .catalog-specs__model {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(168px, 0.56fr) minmax(0, 1fr);
  align-items: start;
  column-gap: 12px;
}

.catalog-card--gas .catalog-specs__model,
.catalog-card--diesel .catalog-specs__model {
  grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
}

.catalog-card--gas .catalog-specs__power dt,
.catalog-card--diesel .catalog-specs__power dt,
.catalog-card--gas .catalog-specs__model dt,
.catalog-card--diesel .catalog-specs__model dt {
  margin: 0;
  padding-top: 1px;
  font-size: clamp(0.62rem, 0.66vw, 0.7rem);
  white-space: nowrap;
}

.catalog-card--gas .catalog-specs__power dd,
.catalog-card--diesel .catalog-specs__power dd {
  text-align: right;
  white-space: nowrap;
}

.catalog-card--portable .catalog-specs__portable-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(168px, 0.56fr) minmax(0, 1fr);
  align-items: start;
  column-gap: 12px;
}

.catalog-card--portable .catalog-specs__portable-row dt {
  margin: 0;
  padding-top: 1px;
  font-size: clamp(0.62rem, 0.66vw, 0.7rem);
  white-space: nowrap;
}

.catalog-card--portable .catalog-specs__portable-row dd {
  text-align: right;
  white-space: nowrap;
}

.catalog-card--gas .catalog-specs dd.catalog-specs__model-value,
.catalog-card--diesel .catalog-specs dd.catalog-specs__model-value {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  gap: 2px;
  min-width: 0;
  justify-items: end;
  text-align: right;
}

.catalog-card--gas .catalog-specs__model-brand,
.catalog-card--diesel .catalog-specs__model-brand {
  font-size: 0.96em;
}

.catalog-card--gas .catalog-specs__model-type,
.catalog-card--diesel .catalog-specs__model-type {
  word-break: normal;
}

.catalog-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}

.catalog-card__actions .button {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.88rem;
}

.catalog-card--portable .catalog-card__image {
  min-height: 250px;
  padding: 70px 16px 52px;
  background:
    radial-gradient(circle at 50% 65%, rgba(16, 24, 32, 0.07), transparent 54%),
    linear-gradient(180deg, #fff, #f8fafb);
}

.catalog-card--portable .catalog-card__image > img {
  width: min(100%, 330px);
  max-height: 228px;
}

.catalog-card.catalog-card--portable .catalog-card__power-badge {
  display: flex;
  top: 12px;
  left: 12px;
  gap: 8px;
  padding: 8px 11px 8px 10px;
}

.catalog-card.catalog-card--portable .catalog-card__power-badge b {
  font-size: 0.82rem;
}

.catalog-card.catalog-card--portable .catalog-card__power-badge small {
  font-size: 0.58rem;
}

.catalog-card__phase-badge {
  left: 12px;
  bottom: 10px;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(130, 142, 154, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 250, 0.96) 34%, rgba(218, 225, 232, 0.94) 68%, rgba(255, 255, 255, 0.98) 100%);
  color: #101820;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    0 12px 22px rgba(16, 24, 32, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(114, 126, 138, 0.16);
}

.catalog-card__phase-badge b {
  color: #101820;
  font-weight: 950;
  white-space: nowrap;
}

.catalog-card__inverter-badge {
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(115, 196, 255, 0.82);
  border-radius: 999px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.05) 38%),
    linear-gradient(135deg, #073c92, #1268d8 48%, #3aa7ff);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 20, 56, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 10px 22px rgba(7, 60, 146, 0.26);
}

.catalog-card__portable-stage-badge {
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 88px;
  padding: 7px 9px 7px 8px;
  border: 1px solid rgba(54, 145, 54, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(245, 251, 245, 0.9)),
    linear-gradient(135deg, rgba(112, 198, 78, 0.18), rgba(13, 89, 44, 0.08));
  color: #0d5b30;
  line-height: 1;
  box-shadow:
    0 12px 24px rgba(16, 24, 32, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.catalog-card__portable-stage-leaf {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 17px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #85d75a 0%, #2b9b44 55%, #0c5b32 100%);
  transform: rotate(-14deg);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.catalog-card__portable-stage-leaf::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 3px;
  top: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transform: rotate(-22deg);
}

.catalog-card__portable-stage-text {
  display: grid;
  gap: 1px;
  text-align: left;
}

.catalog-card__portable-stage-text b,
.catalog-card__portable-stage-text strong {
  display: block;
  white-space: nowrap;
}

.catalog-card__portable-stage-text b {
  color: #101820;
  font-size: 0.52rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.catalog-card__portable-stage-text strong {
  color: #101820;
  font-size: 0.7rem;
  font-weight: 950;
}

.catalog-card--portable .catalog-card__head > strong {
  display: none;
}

.catalog-card--portable .catalog-card__head > .catalog-card__portable-tile {
  display: grid;
}

.catalog-card--portable .catalog-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-card--portable .button--technical {
  background: var(--ink);
  color: #fff;
}

.catalog-card--portable .button--technical:hover {
  background: var(--red-dark);
}

.catalog-card--portable .button--inquiry {
  background: var(--red);
  color: #fff;
}

.catalog-card--portable .button--inquiry:hover {
  background: var(--red-dark);
}

.catalog-card__actions .button--technical,
.catalog-card--portable .button--technical {
  border-color: #707a84;
  background: linear-gradient(180deg, #66707a, #4a545e);
  color: #fff;
  box-shadow: 0 8px 16px rgba(47, 56, 64, 0.18);
}

.catalog-card__actions .button--technical:hover,
.catalog-card--portable .button--technical:hover {
  border-color: #66707a;
  background: linear-gradient(180deg, #59636d, #404a54);
}

.product-hero__image--portable {
  background: transparent;
}

.catalog-card--portable .catalog-card__image img,
.product-hero__image--portable img {
  object-fit: contain;
}

.catalog-card--portable .catalog-card__image img {
  width: min(100%, 210px);
  max-height: 156px;
  transform: translateY(-2px);
}

.product-hero__image--portable img {
  padding: clamp(10px, 2.2vw, 28px);
  transform: scale(1.08);
}

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

.range-diagram-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.07);
}

.range-diagram-card:hover {
  border-color: rgba(225, 38, 28, 0.35);
  transform: translateY(-2px);
}

.range-diagram-card__head {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.range-diagram-card__head img {
  width: 112px;
  height: 54px;
  object-fit: contain;
  padding: 8px;
  border: 1px solid rgba(215, 224, 230, 0.8);
  border-radius: 8px;
  background: #fff;
}

.range-diagram-card__head strong {
  display: block;
  font-size: 1.05rem;
}

.range-diagram-card__head span,
.range-diagram-card p span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.range-diagram {
  display: grid;
  gap: 6px;
}

.range-diagram__axis {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
}

.range-diagram__track {
  position: relative;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 24, 32, 0.08), rgba(16, 24, 32, 0.14));
}

.range-diagram__track span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--start);
  width: max(var(--width), 18px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff6b5e);
  box-shadow: 0 0 0 1px rgba(225, 38, 28, 0.2);
}

.range-diagram-card p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
}

.range-diagram-card p b {
  color: var(--red-dark);
  font-size: 1.05rem;
}

.range-comparison-table {
  display: grid;
  gap: 8px;
}

.range-comparison-head,
.range-comparison-row {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(120px, 0.55fr) minmax(260px, 1.35fr) minmax(120px, 0.55fr);
  align-items: center;
  gap: 14px;
}

.range-comparison-head {
  padding: 0 16px 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.range-comparison-row {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.05);
}

.range-comparison-row:hover {
  border-color: rgba(225, 38, 28, 0.35);
  transform: translateY(-1px);
}

.range-comparison-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.range-comparison-brand img {
  width: 46px;
  height: 34px;
  object-fit: contain;
  padding: 5px;
  border: 1px solid rgba(215, 224, 230, 0.8);
  border-radius: 6px;
  background: #fff;
  flex: 0 0 auto;
}

.range-comparison-brand strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
}

.range-comparison-brand span span,
.range-comparison-action {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.range-comparison-range {
  color: var(--red-dark);
  font-weight: 900;
  white-space: nowrap;
}

.range-comparison-row .range-diagram {
  margin: 0;
}

.range-comparison-action {
  justify-self: end;
  color: var(--red-dark);
  white-space: nowrap;
}

.range-matrix-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.07);
}

.range-matrix-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.range-matrix-scroll::-webkit-scrollbar {
  display: none;
}

.range-matrix-scrollbar {
  position: relative;
  height: 7px;
  margin: 8px 12px 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.08);
  cursor: grab;
  touch-action: none;
}

.range-matrix-scrollbar[hidden] {
  display: none;
}

.range-matrix-scrollbar__thumb {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--range-scrollbar-thumb-width, 50%);
  border-radius: inherit;
  background: rgba(225, 38, 28, 0.45);
  box-shadow: 0 0 0 1px rgba(225, 38, 28, 0.05);
  transform: translateX(var(--range-scrollbar-thumb-x, 0px));
}

.range-matrix-scrollbar.is-dragging {
  cursor: grabbing;
}

.range-matrix {
  width: 100%;
}

.range-matrix-axis,
.range-matrix-row {
  display: grid;
  grid-template-columns: 124px repeat(24, minmax(0, 1fr));
  align-items: stretch;
}

.range-matrix-axis {
  color: #6f8392;
  font-size: 0.68rem;
  font-weight: 800;
  background: #fbfcfb;
}

.range-matrix-axis span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(189, 200, 190, 0.72);
  border-bottom: 1px solid rgba(189, 200, 190, 0.72);
}

.range-matrix-axis--bottom span {
  border-top: 1px solid rgba(189, 200, 190, 0.72);
  border-bottom: 0;
}

.range-matrix-axis__title {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #fbfcfb;
  color: var(--ink);
  border-right-color: var(--line);
}

.range-matrix-axis__last {
  border-right: 0;
}

.range-matrix-row {
  min-height: 54px;
  color: inherit;
}

.range-matrix-row:hover .range-matrix-bar {
  filter: brightness(1.04);
}

.range-matrix-brand {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.range-matrix-brand {
  position: sticky;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
}

.range-matrix-brand img {
  width: 78px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

.range-matrix-brand img[alt*="DEUTZ" i],
.range-matrix-brand img[alt*="Mitsubishi" i] {
  width: 100px;
  height: 48px;
}

.range-matrix-brand img[alt*="DEUTZ" i] {
  transform: scale(1.34);
}

.range-matrix-brand img[alt*="Hyundai" i] {
  width: 112px;
  height: 50px;
}

.range-matrix-brand img[alt*="Perkins" i],
.range-matrix-brand img[alt*="Scania" i],
.range-matrix-brand img[alt*="Baudouin" i],
.range-matrix-brand img[alt*="FPT" i],
.range-matrix-brand img[alt*="Rehlko" i],
.range-matrix-brand img[alt*="Volvo" i],
.range-matrix-brand img[alt*="Cummins" i],
.range-matrix-brand img[alt*="Yanmar" i] {
  width: 112px;
  height: 50px;
}

.range-matrix-brand img[alt*="Perkins" i],
.range-matrix-brand img[alt*="Baudouin" i] {
  width: 104px;
  height: 46px;
}

.range-matrix-brand strong {
  display: block;
  color: var(--ink);
  font-size: 0.84rem;
}

.range-matrix-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.range-matrix-track {
  grid-column: 2 / span 24;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent calc((100% / 24) - 1px), rgba(189, 200, 190, 0.72) calc((100% / 24) - 1px), rgba(189, 200, 190, 0.72) calc(100% / 24)),
    #fff;
}

.range-matrix-bar {
  min-width: 30px;
  min-height: 0;
  height: 34px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 7px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.range-matrix-bar b {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

@media (min-width: 1180px) {
  .catalog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-card:not(.catalog-card--diesel) {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .catalog-card.catalog-card--portable {
    grid-template-columns: minmax(200px, 0.86fr) minmax(0, 1.08fr);
  }

  .catalog-card:not(.catalog-card--diesel) .catalog-card__image {
    padding: 8px;
    align-content: start;
  }

  .catalog-card.catalog-card--portable .catalog-card__image {
    min-height: 250px;
    align-content: center;
    padding: 70px 16px 52px;
  }

  .catalog-card:not(.catalog-card--diesel) .catalog-card__image img {
    aspect-ratio: 1 / 1;
  }

  .catalog-card.catalog-card--portable .catalog-card__image img {
    width: min(100%, 212px);
    max-height: 170px;
    aspect-ratio: 4 / 3;
  }

  .catalog-card__body {
    padding: 14px;
  }

  .catalog-card__head {
    margin-bottom: 8px;
  }

  .catalog-card__head h3 {
    font-size: 1.08rem;
  }

  .catalog-card__head strong {
    width: fit-content;
    padding: 5px 8px;
  }

  .catalog-card__head .catalog-card__diesel-tile strong {
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: currentColor;
  }

  .catalog-card__head .catalog-card__portable-tile strong {
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: currentColor;
  }

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

  .catalog-specs div {
    padding: 4px 0;
  }

  .catalog-specs dt {
    font-size: 0.48rem;
    line-height: 1.2;
  }

  .catalog-specs dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .catalog-card__actions .button {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.74rem;
  }

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

.model-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-pill {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter-pill.is-active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.catalog-brand-filter .filter-pill:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  filter: grayscale(1);
  transform: none;
}

.filter-pill--logo {
  min-width: 0;
  min-height: 54px;
  padding: 5px 6px;
  border-radius: 8px;
  overflow: hidden;
}

.filter-pill--logo img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  filter: saturate(0.94);
  transform-origin: center;
}

.filter-pill--logo img[alt*="DEUTZ" i] {
  transform: scale(1.36);
}

.filter-pill--logo img[alt*="Hyundai" i] {
  transform: scale(1.16);
}

.filter-pill--logo img[alt*="Baudouin" i] {
  transform: scale(1.02);
}

.filter-pill--logo img[alt*="Perkins" i] {
  transform: scale(1.08);
}

.filter-pill--logo img[alt*="FPT" i] {
  transform: scale(1.22);
}

.filter-pill--logo img[alt*="Rehlko" i] {
  transform: scale(1.18);
}

.filter-pill--logo img[alt*="PSI" i] {
  transform: scale(1.12);
}

.filter-pill--logo img[alt*="Scania" i] {
  transform: scale(1.1);
}

.filter-pill--logo img[alt*="Mitsubishi" i] {
  transform: scale(1.22);
}

.section-heading--catalog-intro {
  max-width: none;
}

.section-heading--brand-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, 176px);
  align-items: center;
  gap: 20px;
  max-width: min(100%, 1080px);
  margin-inline: auto;
}

.section-heading--brand-overview .section-heading__copy {
  min-width: 0;
}

.section-heading--brand-overview h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.12rem);
  line-height: 1.08;
}

.brand-overview-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 12px;
  width: min(176px, 100%);
  max-width: 176px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-overview-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: var(--brand-overview-logo-width, 160px);
  max-height: var(--brand-overview-logo-height, 64px);
  object-fit: contain;
  object-position: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.brand-overview-logo[alt*="Volvo" i],
.brand-overview-logo[alt*="Perkins" i],
.brand-overview-logo[alt*="Baudouin" i],
.brand-overview-logo[alt*="Hyundai" i] {
  --brand-overview-logo-width: 168px;
  --brand-overview-logo-height: 64px;
}

.brand-overview-logo[alt*="Cummins" i] {
  --brand-overview-logo-width: 86px;
  --brand-overview-logo-height: 58px;
}

.brand-overview-logo[alt*="DEUTZ" i] {
  --brand-overview-logo-width: 111px;
  --brand-overview-logo-height: 87px;
}

.brand-overview-logo[alt*="Scania" i] {
  --brand-overview-logo-width: 118px;
  --brand-overview-logo-height: 58px;
}

.brand-overview-logo[alt*="Mitsubishi" i] {
  --brand-overview-logo-width: 108px;
  --brand-overview-logo-height: 87px;
}

.brand-overview-logo[alt*="PSI" i] {
  --brand-overview-logo-width: 88px;
  --brand-overview-logo-height: 58px;
}

.brand-overview-logo[alt*="Yanmar" i] {
  --brand-overview-logo-width: 104px;
  --brand-overview-logo-height: 58px;
}

.brand-overview-fuel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #007c89;
  font-weight: 900;
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
}

.brand-overview-fuel--lpg {
  background: transparent;
  color: #d8761b;
}

.brand-overview-fuel__icon {
  display: inline-block;
  width: 17px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 12px 3px;
  transform: rotate(45deg);
}

.catalog-fuel-overview {
  display: block;
  margin: -4px 0 24px;
}

.catalog-fuel-overview .catalog-fuel-indicators {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  align-self: auto;
  justify-items: center;
}

.catalog-fuel-overview .catalog-fuel-indicators--dual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.catalog-fuel-overview .catalog-fuel-indicators--dual .catalog-fuel-indicator:first-child {
  grid-column: 1;
  justify-self: center;
}

.catalog-fuel-overview .catalog-fuel-indicators--dual .catalog-fuel-indicator:last-child {
  grid-column: 3;
  justify-self: center;
}

.catalog-fuel-overview .catalog-fuel-indicator {
  max-width: none;
  gap: 8px;
}

.catalog-fuel-overview .catalog-fuel-indicator__icon {
  width: 100px;
  height: 104px;
}

.catalog-fuel-overview .catalog-fuel-indicator__icon svg {
  width: 94px;
  height: 94px;
}

.catalog-fuel-overview .catalog-fuel-indicator__text strong {
  font-size: clamp(1.28rem, 1.65vw, 1.52rem);
  line-height: 1.05;
}

.catalog-fuel-overview .catalog-card__fuel-tile--overview {
  position: static;
  width: 104px;
  min-height: 96px;
  padding: 10px 10px 12px;
}

.catalog-fuel-overview .catalog-card__fuel-tile--overview .catalog-card__fuel-icon {
  width: 42px;
  height: 42px;
}

.catalog-fuel-overview .catalog-card__fuel-tile--overview .catalog-card__fuel-icon svg {
  width: 30px;
  height: 30px;
}

.catalog-fuel-overview .catalog-card__fuel-tile--overview strong {
  min-height: 1.55rem;
  font-size: 0.68rem;
  line-height: 1.05;
}

.catalog-fuel-overview .catalog-card__fuel-tile--overview.catalog-card__fuel-tile--lpg strong {
  font-size: 0.72rem;
}

.catalog-fuel-overview .brand-overview-fuel {
  min-width: 0;
  min-height: 0;
  justify-content: center;
  flex-direction: row;
  gap: 7px;
  padding: 0;
  text-align: center;
  font-size: 0.88rem;
}

.catalog-fuel-overview .brand-overview-fuel__icon {
  width: 20px;
  height: 25px;
}


@media (min-width: 960px) {
  .section-heading--catalog-intro h2,
  .section-heading--catalog-intro p,
  .section-heading--brand-overview h2 {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .section-heading--brand-overview {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    max-width: none;
    margin-inline: 0;
  }

  .brand-overview-logos {
    align-self: flex-end;
    justify-content: flex-end;
    justify-self: stretch;
    width: fit-content;
    max-width: 100%;
    overflow: visible;
  }

  .brand-overview-logo {
    width: auto;
    height: auto;
    max-width: 172px;
    max-height: 64px;
  }

  .catalog-fuel-overview {
    justify-content: flex-start;
    margin: 0 0 14px;
  }

  .catalog-fuel-overview .catalog-card__fuel-tile--overview {
    width: 92px;
    min-height: 82px;
  }

  .catalog-fuel-overview .catalog-card__fuel-tile--overview .catalog-card__fuel-icon {
    width: 34px;
    height: 34px;
  }

  .catalog-fuel-overview .catalog-card__fuel-tile--overview .catalog-card__fuel-icon svg {
    width: 24px;
    height: 24px;
  }

  .catalog-fuel-overview .catalog-card__fuel-tile--overview strong {
    font-size: 0.58rem;
  }

  .catalog-fuel-overview .catalog-card__fuel-tile--overview.catalog-card__fuel-tile--lpg strong {
    font-size: 0.64rem;
  }
}

.filter-pill--logo.is-active {
  background: #fff;
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}

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

.model-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(16, 24, 32, 0.06);
}

.model-card.is-hidden {
  display: none;
}

.model-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f1f5f7;
}

.model-card span,
.case-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.model-card h3 {
  margin-bottom: 12px;
}

.model-card dl,
.product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}

.model-card dt,
.product-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.model-card dd,
.product-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.text-link {
  color: var(--red-dark);
  font-weight: 900;
}

.fit-grid,
.offer-grid,
.product-data-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

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

.fit-list article,
.trust-cards article,
.assurance-box {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 138px;
  padding: 24px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(130, 142, 154, 0.26);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.96));
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.08);
}

.trust-cards article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(172, 26, 26, 0.18));
}

.trust-cards article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(172, 26, 26, 0.12);
  border-radius: 50%;
  background: rgba(172, 26, 26, 0.04);
}

.trust-cards strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.22;
}

.trust-cards span {
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.fit-list span,
.trust-cards span,
.assurance-box span {
  color: var(--muted);
}

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

.product-usp-band {
  padding: clamp(24px, 3vw, 38px) 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,250,252,0.9)),
    radial-gradient(circle at 18% 0%, rgba(211,47,38,0.08), transparent 34%);
}

.product-usp-band__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.product-usp-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 124px;
  padding: 18px 12px 16px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  text-align: center;
}

.product-usp-card strong {
  color: var(--ink);
  font-size: clamp(0.84rem, 0.92vw, 0.98rem);
  line-height: 1.25;
  white-space: nowrap;
}

.product-usp-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  background: var(--red);
  -webkit-mask: var(--product-usp-icon) center / 36px 36px no-repeat;
  mask: var(--product-usp-icon) center / 36px 36px no-repeat;
}

.product-usp-icon--engine {
  --product-usp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10h14V5h8v5h6v8h7l7 8v12h-9v-7h-5v7H18l-7-7H4V19h10zm4 8v14h20V18z'/%3E%3C/svg%3E");
}

.product-usp-icon--monitor {
  --product-usp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 56 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10h42v8H7v-8Zm4 15a7 7 0 1 1 14 0v2h6v-2a7 7 0 1 1 14 0v2h6v7h-6v4h-8v-4H19v4h-8v-4H5v-7h6v-2Zm8 2v-2a2 2 0 1 0-4 0v2h4Zm22 0v-2a2 2 0 1 0-4 0v2h4Z'/%3E%3C/svg%3E");
}

.product-usp-icon--badge-check {
  --product-usp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 3 8 27h13l-4 18 23-28H26L27 3Z'/%3E%3C/svg%3E");
}

.product-usp-icon--digital-control {
  --product-usp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 56 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8h44v28H32v4h8v4H16v-4h8v-4H6V8Zm6 6v16h32V14H12Zm4 4h8v4h-8v-4Zm12 0h12v4H28v-4Zm-12 7h16v4H16v-4Zm20 0h4v4h-4v-4Z'/%3E%3C/svg%3E");
}

.product-usp-icon--european-manufacturing {
  --product-usp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath transform='translate(32 5)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(45.5 8.6)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(55.4 18.5)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(59 32)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(55.4 45.5)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(45.5 55.4)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(32 59)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(18.5 55.4)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(8.6 45.5)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(5 32)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(8.6 18.5)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(18.5 8.6)' d='M0-5 1.4-1.5 5-1.5 2.2.6 3.3 4.2 0 2-3.3 4.2-2.2.6-5-1.5-1.4-1.5Z'/%3E%3Cpath transform='translate(28 31) scale(.82) translate(-32 -33)' d='M18 24h15v5h-9v3h8v5h-8v3h9v5H18V24Zm19 0h5v12c0 3 1.3 4.4 4 4.4s4-1.4 4-4.4V24h5v12c0 6-3.6 9.5-9 9.5S37 42 37 36V24Z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: 40px 40px;
  mask-size: 40px 40px;
}

.product-usp-icon--shield {
  --product-usp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 2 44 10v17c0 13-8 22-20 27C12 49 4 40 4 27V10zm10 18-4-4-9 10-4-4-4 4 8 8z'/%3E%3C/svg%3E");
}

.product-usp-icon--wrench {
  --product-usp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 4a13 13 0 0 0-12.2 17.6L4.6 35.8a5.3 5.3 0 0 0 7.6 7.6l14.2-14.2A13 13 0 0 0 44 16.9l-8.2 8.2-7-7L37 9.9A13 13 0 0 0 31 4ZM8.4 39.6a1.6 1.6 0 1 1 2.3-2.3 1.6 1.6 0 0 1-2.3 2.3Z'/%3E%3C/svg%3E");
}

.product-usp-icon--starter-electric {
  --product-usp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 5v18h-6V5h6Zm-16.4 7.5 4.3 4.3a13 13 0 1 0 18.2 0l4.3-4.3a19 19 0 1 1-26.8 0ZM24 27a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E");
}

.product-usp-icon--starter-recoil {
  --product-usp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 56 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 5a14 14 0 1 0 0 28 14 14 0 0 0 0-28Zm0 6a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm14 4h11v6H32v-6Zm10-6c5 0 9 3 12 8l-5 4c-2-4-4-5-7-5v-7Zm8 12h6v9h-6v-9Z'/%3E%3C/svg%3E");
}

.product-usp-icon--starter-combi {
  -webkit-mask-size: 42px 30px;
  mask-size: 42px 30px;
  --product-usp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 66 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 3v10h-5V3h5ZM5.5 8l3.3 3.3a9 9 0 1 0 7.4 0L19.5 8a14 14 0 1 1-14 0ZM13 22a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm32-13a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 5a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm8 7h6v6h-6v-6Zm2-8c4 0 7 2 10 6l-4 3c-2-3-4-4-6-4v-5Z'/%3E%3C/svg%3E");
}

.lp-final-cta {
  padding: clamp(54px, 7vw, 88px) 0;
  color: #fff;
  background: var(--ink);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta-grid p {
  max-width: 720px;
  color: #d7e0e6;
}

.product-hero {
  background:
    linear-gradient(115deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.84) 52%, rgba(177, 121, 19, 0.42)),
    radial-gradient(circle at 74% 40%, rgba(177, 121, 19, 0.28), transparent 34%),
    linear-gradient(135deg, #101820 0%, #0d2538 54%, #071017 100%);
  background-color: #071017;
}

.product-hero--clean {
  background:
    linear-gradient(115deg, rgba(16, 24, 32, 0.97), rgba(16, 24, 32, 0.86) 58%, rgba(8, 127, 140, 0.36)),
    radial-gradient(circle at 74% 40%, rgba(8, 127, 140, 0.26), transparent 34%),
    linear-gradient(135deg, #101820 0%, #0d2538 54%, #071017 100%);
  background-color: #071017;
}

.product-hero--diesel-bg-test {
  background:
    linear-gradient(115deg, rgba(5, 10, 17, 0.74), rgba(7, 14, 24, 0.48) 44%, rgba(8, 18, 31, 0.08) 74%, rgba(8, 18, 31, 0.02)),
    linear-gradient(0deg, rgba(5, 10, 17, 0.02), rgba(5, 10, 17, 0.02)),
    url("../img/product-subpage-hero-bg-optimized.webp") center center / cover no-repeat;
  background-color: #071017;
}

.product-hero--portable-bg {
  background:
    linear-gradient(115deg, rgba(5, 10, 17, 0.74), rgba(7, 14, 24, 0.48) 44%, rgba(8, 18, 31, 0.08) 74%, rgba(8, 18, 31, 0.02)),
    linear-gradient(0deg, rgba(5, 10, 17, 0.02), rgba(5, 10, 17, 0.02)),
    url("../img/product-subpage-hero-bg-optimized.webp") center center / cover no-repeat;
  background-color: #071017;
}

[data-portable-product-page] [data-product-image-shell] {
  background: transparent !important;
}

[data-diesel-product-page] [data-product-hero-copy],
[data-gas-product-page] [data-product-hero-copy],
[data-portable-product-page] .product-hero__grid > .lp-hero__copy {
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
}

[data-diesel-product-page].is-product-ready [data-product-hero-copy],
[data-gas-product-page].is-product-ready [data-product-hero-copy],
[data-portable-product-page].is-product-ready .product-hero__grid > .lp-hero__copy {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

/*
 * Current friendly diesel-product pages carry a server-rendered hero that is
 * verified against their embedded product data. Show that copy immediately;
 * JavaScript still initializes downloads and all content below the hero.
 */
[data-diesel-product-page][data-static-hero-ready] [data-product-hero-copy] {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
}

[data-gas-product-page][data-static-hero-ready] [data-product-hero-copy],
[data-portable-product-page][data-static-hero-ready] .product-hero__grid > .lp-hero__copy {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
}

/* Prevent stale template content from appearing before dynamic page data is ready. */
[data-diesel-product-page]:not(.is-product-ready) > :not(.product-hero),
[data-gas-product-page]:not(.is-product-ready) > :not(.product-hero),
[data-portable-product-page]:not(.is-product-ready) > :not(.product-hero),
[data-diesel-catalog]:not(.is-catalog-ready),
[data-gas-catalog]:not(.is-catalog-ready),
[data-portable-catalog]:not(.is-catalog-ready) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

[data-diesel-product-page].is-product-ready > :not(.product-hero),
[data-gas-product-page].is-product-ready > :not(.product-hero),
[data-portable-product-page].is-product-ready > :not(.product-hero),
[data-diesel-catalog].is-catalog-ready,
[data-gas-catalog].is-catalog-ready,
[data-portable-catalog].is-catalog-ready {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*
 * Canonical product pages ship their complete first-screen shell in the HTML.
 * Keep the sticky model summary and the five USP cards visible immediately;
 * slower below-the-fold hydration remains protected by the loading state.
 */
[data-diesel-product-page][data-static-shell-ready]:not(.is-product-ready) > .product-sticky-cta,
[data-gas-product-page][data-static-shell-ready]:not(.is-product-ready) > .product-sticky-cta,
[data-portable-product-page][data-static-shell-ready]:not(.is-product-ready) > .product-sticky-cta,
[data-diesel-product-page][data-static-shell-ready]:not(.is-product-ready) > [data-product-usps],
[data-gas-product-page][data-static-shell-ready]:not(.is-product-ready) > [data-product-usps],
[data-portable-product-page][data-static-shell-ready]:not(.is-product-ready) > [data-product-usps] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

[data-diesel-product-page] .lp-hero__copy h1 {
  font-size: clamp(2.25rem, 4.8vw, 4.75rem);
}

[data-diesel-product-page] .product-hero__grid {
  grid-template-columns: minmax(520px, 840px) minmax(480px, 560px);
  column-gap: clamp(26px, 3.8vw, 64px);
}

[data-diesel-product-page] .product-hero__image--photo img {
  width: min(132%, 920px);
  max-width: none;
  transform: translateX(-8%);
  transform-origin: center;
}

@media (min-width: 900px) {
  [data-diesel-product-page] .product-hero--image-baudouin-22-s-st-v2 .product-hero__image--photo img,
  [data-gas-product-page] .product-hero--image-baudouin-22-s-st-v2 .product-hero__image--photo img,
  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-22-s-st-v2."],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-22-s-st-v2."] {
    width: min(111%, 770px);
    transform: translateX(6.1%);
  }

  [data-diesel-product-page] .product-hero--image-baudouin-145-s-st-v3 .product-hero__image--photo img,
  [data-gas-product-page] .product-hero--image-baudouin-145-s-st-v3 .product-hero__image--photo img,
  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-145-s-st-v3."],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-145-s-st-v3."] {
    width: min(122%, 851px);
    transform: translateX(-4.9%);
  }

  [data-diesel-product-page] .product-hero--image-productbild-11 .product-hero__image--photo img,
  [data-gas-product-page] .product-hero--image-productbild-11 .product-hero__image--photo img {
    width: min(122%, 850px);
    transform: translateX(-5.4%);
  }

  [data-diesel-product-page] .product-hero--image-productbild-5 .product-hero__image--photo img,
  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-1120-o-st-v4."] {
    width: min(150%, 1045px);
    transform: translateX(-24%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="t55-s-st-v1."] {
    width: min(112%, 780px);
    transform: translateX(2.4%);
  }

  [data-diesel-product-page] .product-hero--image-productbild-12 .product-hero__image--photo img,
  [data-gas-product-page] .product-hero--image-productbild-12 .product-hero__image--photo img {
    width: min(123%, 856px);
    transform: translateX(-8.8%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-4."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-4."] {
    width: min(138%, 962px);
    transform: translateX(-2%);
  }
}

[data-portable-product-page] .lp-hero__copy h1 {
  font-size: clamp(2.25rem, 4.8vw, 4.75rem);
}

[data-portable-product-page] .lp-hero__copy {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.50);
}

[data-portable-product-page] .product-hero__grid {
  grid-template-columns: minmax(520px, 840px) minmax(480px, 560px);
  column-gap: clamp(26px, 3.8vw, 64px);
}

[data-portable-product-page] .product-hero__image--photo img {
  width: min(132%, 920px);
  max-width: none;
  transform: translateX(-8%);
  transform-origin: center;
}

[data-portable-product-page] .product-facts dt,
[data-portable-product-page] .product-facts dd {
  white-space: nowrap;
}

[data-portable-product-page] .product-facts dt {
  font-size: clamp(0.62rem, 0.86vw, 0.74rem);
  letter-spacing: 0.02em;
}

[data-diesel-product-page] .product-hero .hero__actions,
[data-gas-product-page] .product-hero .hero__actions,
[data-portable-product-page] .product-hero .hero__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  max-width: min(100%, 560px);
}

[data-diesel-product-page] .product-hero .hero__actions .button,
[data-gas-product-page] .product-hero .hero__actions .button,
[data-portable-product-page] .product-hero .hero__actions .button {
  width: auto;
  min-width: 0;
  padding-right: 10px;
  padding-left: 10px;
  flex: 1 1 0;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  [data-diesel-product-page] .product-hero .hero__actions,
  [data-gas-product-page] .product-hero .hero__actions,
  [data-portable-product-page] .product-hero .hero__actions {
    flex-wrap: wrap;
    max-width: 100%;
  }

  [data-diesel-product-page] .product-hero .hero__actions .button,
  [data-gas-product-page] .product-hero .hero__actions .button,
  [data-portable-product-page] .product-hero .hero__actions .button {
    width: 100%;
    flex-basis: 100%;
  }
}

.product-hero__grid {
  grid-template-columns: minmax(360px, 720px) minmax(0, 1fr);
  align-items: center;
}

.product-hero__image {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.product-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.product-hero__image--photo {
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

.product-hero--standard-image .product-hero__image--photo {
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(206, 216, 222, 0.92);
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 48px rgba(0, 0, 0, 0.24);
}

.product-hero__image--photo img {
  aspect-ratio: 900 / 617;
  border-radius: 8px;
  object-fit: contain;
  image-rendering: auto;
}

.product-image-note {
  max-width: 520px;
  margin: 10px auto 0;
  color: rgba(226, 232, 240, 0.76);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.product-hero--standard-image .product-image-note {
  color: rgba(74, 85, 104, 0.82);
}

.product-image-note--light {
  max-width: 560px;
  color: var(--muted);
}

.product-hero__image--photo img[src^="data:image/gif"] {
  opacity: 0;
}

.product-hero--cutout-test .product-hero__image--photo img {
  border-radius: 0;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.34));
}

.product-hero--image-glow .product-hero__image--photo img {
  border-radius: 0;
  filter:
    drop-shadow(0 0 12px rgba(178, 213, 229, 0.22))
    drop-shadow(0 26px 32px rgba(0, 0, 0, 0.36));
}

/* Product image 12 already includes its own transparent, softly grounded
   illumination. Keep only the calibrated depth shadow and avoid a light halo. */
.product-hero--image-glow
  .product-hero__image--photo
  img[src*="productbild-12"] {
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.36));
}

.product-facts {
  width: min(100%, 860px);
  max-width: none;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.product-facts div {
  min-width: 0;
  min-height: 112px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(7, 14, 24, 0.58);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.product-facts dt {
  color: #edf5f8;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: none;
  overflow-wrap: anywhere;
}

.product-facts dd {
  margin: 0;
  color: #fff;
  font-size: clamp(1.18rem, 1.75vw, 1.48rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
  overflow-wrap: anywhere;
}

.product-facts div:nth-child(-n + 2) dd {
  font-size: clamp(1.18rem, 1.5vw, 1.38rem);
  white-space: nowrap;
  overflow-wrap: normal;
}

.product-facts div:nth-child(-n + 2) {
  padding-inline: 16px;
}

[data-gas-product-page] .product-hero__grid {
  grid-template-columns: minmax(520px, 840px) minmax(480px, 560px);
  column-gap: clamp(26px, 3.8vw, 64px);
}

[data-gas-product-page] .product-hero__image--photo img {
  width: min(132%, 920px);
  max-width: none;
  transform: translateX(-8%);
  transform-origin: center;
}

[data-gas-product-page] .product-facts {
  width: min(100%, 860px);
  grid-template-columns: repeat(4, minmax(150px, 1fr));
}

[data-gas-product-page] .product-facts dt {
  white-space: nowrap;
  overflow-wrap: normal;
}

@media (max-width: 1100px) {
  [data-diesel-product-page] .product-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-portable-product-page] .product-hero__grid,
  [data-gas-product-page] .product-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-diesel-product-page] .product-hero__image--photo img,
  [data-portable-product-page] .product-hero__image--photo img,
  [data-gas-product-page] .product-hero__image--photo img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-4."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-4."] {
    width: 163%;
    max-width: none;
    transform: translateX(-20%);
  }

  [data-gas-product-page] .product-hero__image--photo img[src*="gas-silent-productbild-13."] {
    width: 118%;
    max-width: none;
    transform: translateX(-8%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-145-o-st."] {
    width: 138%;
    max-width: none;
    transform: translateX(-16%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-2."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-2."] {
    width: 136%;
    max-width: none;
    transform: translateX(0%) scale(1.04);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-9."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-9."] {
    width: 133%;
    max-width: none;
    transform: translateX(-11%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-10."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-10."] {
    width: 134%;
    max-width: none;
    transform: translateX(-12%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-2000-o-st."] {
    width: 138%;
    max-width: none;
    transform: translateX(-14%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-1120-o-st-v4."] {
    width: 138%;
    max-width: none;
    transform: translateX(-14%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-12"],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-12"] {
    width: 133%;
    max-width: none;
    transform: translateX(-14.3%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-11."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-11."] {
    width: 134%;
    max-width: none;
    transform: translateX(-13%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="t55-s-st-v1."] {
    width: 95%;
    max-width: 100%;
    transform: none;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-22-s-st-v2."],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-22-s-st-v2."] {
    width: 111%;
    max-width: none;
    transform: translateX(6.2%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-110-s-st."],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-110-s-st."] {
    width: 118%;
    max-width: none;
    transform: translateX(-8%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-66-s-st."] {
    width: 185%;
    max-width: none;
    transform: translateX(-23%) scale(1.12);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-145-s-st."] {
    width: 156%;
    max-width: none;
    transform: translateX(-18%) scale(1.08);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-198-o-st."] {
    width: 205%;
    max-width: none;
    transform: translateX(-27%) scale(1.12);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-145-s-st-v3."],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-145-s-st-v3."] {
    width: 122%;
    max-width: none;
    transform: translateX(-6.7%);
  }

  [data-gas-product-page] .product-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-sticky-cta {
  position: sticky;
  top: 110px;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.product-sticky-cta__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-sticky-cta span {
  font-weight: 900;
}

.product-sticky-cta__model {
  color: var(--red);
}

.product-sticky-cta__power,
.product-sticky-cta__separator {
  color: var(--ink);
}

.product-sticky-cta__summary {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  min-width: 0;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.linked-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.linked-feature--reverse {
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
}

.linked-feature__image {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(16, 24, 32, 0.06);
}

.linked-feature__image img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.company-mission-feature {
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
}

.company-mission-feature__image {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.company-mission-feature__image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.spec-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

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

.section-heading--with-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 475px);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.section-heading__product {
  justify-self: end;
  width: min(475px, 100%);
  margin: 0;
  padding: 10px;
}

.section-heading__product img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

[data-portable-product-page] .section-heading--with-product {
  max-width: none;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 560px);
  gap: clamp(34px, 5.5vw, 92px);
}

[data-portable-product-page] .section-heading--with-product > div {
  max-width: 820px;
}

[data-portable-product-page] .section-heading__product {
  justify-self: end;
  width: min(520px, 43vw);
  padding: 0;
  transform: translateX(clamp(18px, 4vw, 62px));
}

[data-portable-product-page] .section-heading__product img {
  max-height: 390px;
}

.spec-panel,
.feature-check-grid article,
.options-grid article,
.standards-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.spec-panel {
  display: grid;
  gap: 16px;
}

.spec-panel h3 {
  margin-bottom: 0;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

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

.spec-table span {
  color: var(--muted);
}

.enhanced-specs {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
}

.enhanced-specs__facts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.enhanced-specs__facts--portable {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.portable-features-block {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(130, 142, 154, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.96));
  box-shadow: 0 14px 32px rgba(16, 24, 32, 0.08);
}

.portable-features-block h3 {
  margin: 0;
  color: var(--red);
}

.portable-features-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portable-features-list li {
  position: relative;
  min-height: 58px;
  padding: 14px 18px 14px 56px;
  border: 1px solid rgba(130, 142, 154, 0.24);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(16, 24, 32, 0.06);
  color: var(--ink);
  font-weight: 760;
  line-height: 1.35;
}

.portable-features-list li::before {
  content: "✓";
  position: absolute;
  display: inline-grid;
  place-items: center;
  left: 18px;
  top: 13px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(16, 128, 78, 0.1);
  box-shadow: 0 0 0 3px rgba(16, 128, 78, 0.08);
  color: #10804e;
  font-size: 12px;
  font-weight: 950;
}

.technical-panel--card-list .technical-list li {
  display: block;
  min-height: 54px;
  padding: 13px 14px 13px 38px;
  border: 1px solid rgba(130, 142, 154, 0.28);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(16, 24, 32, 0.06);
  color: var(--ink);
  font-weight: 760;
  line-height: 1.35;
}

.technical-list__socket-title,
.technical-list__socket-line {
  display: block;
}

.technical-list__socket-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.technical-list__socket-line {
  padding: 6px 0;
  border-top: 1px solid rgba(130, 142, 154, 0.18);
  color: var(--ink-2);
  font-weight: 800;
  line-height: 1.32;
}

.technical-list__socket-title + .technical-list__socket-line {
  border-top: 0;
}

.enhanced-specs__facts article {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(130, 142, 154, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 250, 0.96) 34%, rgba(218, 225, 232, 0.94) 64%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow:
    0 16px 34px rgba(16, 24, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(114, 126, 138, 0.16);
}

.enhanced-specs__facts article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 48%;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.enhanced-specs__facts article .spec-icon,
.enhanced-specs__facts article small,
.enhanced-specs__facts article strong {
  position: relative;
  z-index: 1;
}

.enhanced-specs__facts article .spec-icon {
  box-shadow:
    0 10px 20px rgba(16, 24, 32, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.44);
}

.enhanced-specs__facts small {
  display: inline-grid;
  align-self: start;
  gap: 1px;
  max-width: 100%;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.enhanced-specs__facts small span {
  white-space: nowrap;
}

.enhanced-specs__facts strong {
  display: grid;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.2;
}

.enhanced-specs__facts strong span {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

[data-gas-product-page] .enhanced-specs__facts strong span {
  white-space: nowrap;
  overflow-wrap: normal;
}

.enhanced-specs__fact--power strong {
  font-size: clamp(0.9rem, 1.05vw, 1.06rem);
}

.enhanced-specs__fact--power strong span {
  white-space: nowrap;
  overflow-wrap: normal;
}

.enhanced-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.technical-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.technical-panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

[data-diesel-product-page] .section-heading .eyebrow,
[data-gas-product-page] .section-heading .eyebrow,
[data-portable-product-page] .section-heading .eyebrow,
[data-diesel-product-page] .product-offer-copy > .eyebrow,
[data-gas-product-page] .product-offer-copy > .eyebrow,
[data-portable-product-page] .product-offer-copy > .eyebrow,
[data-diesel-product-page] .controller-intro__copy > .eyebrow,
[data-gas-product-page] .controller-intro__copy > .eyebrow,
[data-portable-product-page] .controller-intro__copy > .eyebrow,
[data-diesel-product-page] .standards-lead > .eyebrow,
[data-gas-product-page] .standards-lead > .eyebrow,
[data-portable-product-page] .standards-lead > .eyebrow {
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

[data-diesel-product-page] .section-heading .eyebrow,
[data-gas-product-page] .section-heading .eyebrow,
[data-portable-product-page] .section-heading .eyebrow,
[data-diesel-product-page] .technical-panel h3,
[data-gas-product-page] .technical-panel h3,
[data-portable-product-page] .technical-panel h3 {
  color: var(--red);
}

.technical-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technical-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.45;
}

.technical-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(172, 26, 26, 0.12);
}

.portable-features-list li::before {
  content: "✓";
  position: absolute;
  display: inline-grid;
  place-items: center;
  left: 18px;
  top: 13px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(16, 128, 78, 0.1);
  box-shadow: 0 0 0 3px rgba(16, 128, 78, 0.08);
  color: #10804e;
  font-size: 12px;
  font-weight: 950;
}

.technical-panel--card-list .technical-list li::before {
  left: 16px;
}

.technical-panel--card-list .technical-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

[data-portable-product-page] .technical-panel--control-wide {
  grid-column: 1 / -1;
}

[data-portable-product-page] .technical-panel--control-wide .technical-list {
  display: block;
  columns: 3 240px;
  column-gap: 12px;
  gap: 12px;
}

[data-portable-product-page] .technical-panel--control-wide .technical-list li {
  break-inside: avoid;
  min-height: auto;
  margin: 0 0 12px;
  padding: 14px 16px 14px 34px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

[data-portable-product-page] .technical-panel--control-wide .technical-list li::before {
  left: 16px;
}

.spec-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #101820;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.spec-icon--image {
  background: #101820;
  padding: 4px;
}

.spec-icon--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1) contrast(1.8);
  mix-blend-mode: screen;
}

.spec-icon--product-symbol {
  width: 48px;
  height: 48px;
  padding: 0;
  overflow: hidden;
}

.spec-icon--product-symbol img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) brightness(0) invert(0.88) contrast(1.45);
  opacity: 0.92;
  transform: scale(1.7);
  transform-origin: center;
}

.spec-icon--product-symbol img[src*="housing-open-new."] {
  transform: scale(1.2);
}

.spec-icon--svg svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.technical-panel--wide {
  grid-column: 1 / -1;
}

[data-portable-product-page] .technical-panel--portable-engine {
  grid-column: auto;
}

[data-portable-product-page] .enhanced-specs__grid > .technical-panel {
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-self: stretch;
}

[data-portable-product-page] .enhanced-specs__grid > .technical-panel h3 {
  align-self: start;
}

[data-portable-product-page] .enhanced-specs__grid > .technical-panel .spec-table {
  align-self: stretch;
}

[data-portable-product-page] .enhanced-specs__grid > .technical-panel:not(.technical-panel--portable-engine):not(.technical-panel--control-wide) .spec-table {
  display: grid;
  grid-auto-rows: minmax(44px, 1fr);
  height: 100%;
}

[data-portable-product-page] .technical-panel--portable-engine .spec-table {
  grid-template-columns: minmax(0, 1fr);
  overflow-x: visible;
}

.technical-panel--wide .spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(430px, 1fr));
  gap: 0 18px;
  overflow-x: auto;
}

.technical-panel .spec-table div {
  grid-template-columns: minmax(0, 1fr) minmax(118px, max-content);
  align-items: start;
  min-width: 0;
  column-gap: 16px;
}

.technical-panel .spec-table {
  border-radius: 8px;
}

:is([data-diesel-product-page], [data-gas-product-page], [data-portable-product-page])
  .technical-panel .spec-table > div:not(.spec-table__section):nth-child(even) {
  background: rgba(15, 23, 42, 0.028);
}

/*
 * Desktop/laptop engine data uses two grid columns. Treat each pair of
 * adjacent cells as one visible row so both halves receive the same stripe.
 * At 980px and below the table becomes one column and keeps the rule above.
 */
@media (min-width: 981px) {
  :is([data-diesel-product-page], [data-gas-product-page], [data-portable-product-page])
    .technical-panel--wide .spec-table > div:not(.spec-table__section):nth-child(n) {
    background: transparent;
  }

  :is([data-diesel-product-page], [data-gas-product-page], [data-portable-product-page])
    .technical-panel--wide .spec-table > div:not(.spec-table__section):nth-child(4n + 3),
  :is([data-diesel-product-page], [data-gas-product-page], [data-portable-product-page])
    .technical-panel--wide .spec-table > div:not(.spec-table__section):nth-child(4n + 4) {
    background: rgba(15, 23, 42, 0.028);
  }
}

.technical-panel .spec-table span {
  white-space: normal;
  min-width: 0;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.technical-panel .spec-table strong {
  min-width: 0;
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.technical-panel .spec-table .spec-table__section {
  display: block;
  padding: 16px 18px 8px;
  border-bottom: 0;
}

.technical-panel .spec-table .spec-table__section span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.technical-panel--generator .spec-table div {
  grid-template-columns: minmax(136px, 0.36fr) minmax(0, 1fr);
  align-items: start;
}

.technical-panel--generator .spec-table span {
  overflow-wrap: normal;
  word-break: normal;
}

.technical-panel--generator .spec-table strong {
  max-width: 100%;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.technical-footnote {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.technical-footnote--placeholder {
  visibility: hidden;
}

.technical-panel--wide .spec-table div {
  grid-template-columns: minmax(285px, 1fr) minmax(76px, auto);
}

.technical-panel--columns .spec-table-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

.technical-panel--columns .spec-table {
  display: grid;
}

.technical-panel--columns .spec-table div {
  grid-template-columns: minmax(292px, 1fr) minmax(0, auto);
}

.enhanced-specs__note {
  display: grid;
  gap: 8px;
  margin: -4px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.enhanced-specs__note p {
  margin: 0;
}

.enhanced-specs__note strong {
  color: var(--ink);
}

.product-data-grid--intro {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.controller-intro {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.controller-intro__copy {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.controller-intro__copy h2 {
  margin-bottom: 0;
}

.controller-copy {
  color: var(--muted);
  line-height: 1.65;
}

.controller-copy p {
  margin: 0;
  font-size: clamp(1rem, 1vw, 1.08rem);
}

.controller-intro__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.controller-intro__features li {
  padding: 13px 14px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.05);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.controller-intro__media {
  width: 100%;
  display: grid;
  justify-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.controller-intro__media img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 28px rgba(16, 24, 32, 0.16));
}

.controller-breaker {
  width: fit-content;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 6px 14px;
  align-items: center;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(172, 26, 26, 0.18);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: #fff5f4;
}

.controller-breaker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(172, 26, 26, 0.12);
}

.controller-breaker span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.controller-breaker strong {
  grid-column: 2;
  color: var(--ink);
  font-size: 1.05rem;
}

.controller-showcase {
  display: grid;
  gap: 22px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.controller-standard {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(172, 26, 26, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(172, 26, 26, 0.08), transparent 42%),
    #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.08);
}

.controller-standard__media {
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: #f6f8f9;
}

.controller-standard__media img {
  width: min(100%, 520px);
  max-height: 320px;
  object-fit: contain;
}

.controller-standard__body {
  display: grid;
  gap: 12px;
}

.controller-standard__body h3,
.controller-options-head h3 {
  margin: 0;
}

.controller-badge {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.controller-standard__body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.controller-standard__body li {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.05);
  color: var(--ink);
  font-weight: 800;
}

.controller-options-head {
  display: grid;
  gap: 4px;
}

.controller-compare-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.controller-option-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(168px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.controller-option-thumb {
  display: grid;
  grid-template-rows: 116px minmax(70px, auto);
  gap: 4px;
  align-items: start;
  justify-items: center;
  min-height: 222px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.05);
  text-align: center;
}

.controller-option-thumb img {
  width: 148px;
  height: 110px;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: none;
  transform-origin: center;
}

.controller-option-thumb img.controller-option-thumb__image--amf25,
.controller-option-thumb img.controller-option-thumb__image--ig4200,
.controller-option-thumb img.controller-option-thumb__image--ig1000,
.controller-option-thumb img.controller-option-thumb__image--dse7320,
.controller-option-thumb img.controller-option-thumb__image--dse8610,
.controller-option-thumb img.controller-option-thumb__image--dse8620 {
  width: 142px;
  height: 106px;
  transform: none;
}

.controller-option-thumb img.controller-option-thumb__image--dse7320 {
  transform: scale(1.1);
}

.controller-option-thumb strong {
  display: block;
  margin-top: -2px;
  color: var(--ink);
  font-size: 0.94rem;
}

.controller-option-thumb strong .controller-name-stack,
.controller-matrix th .controller-name-stack {
  display: block;
  color: inherit;
  font-size: inherit;
  line-height: 1.15;
}

.controller-option-thumb strong .controller-name-stack span,
.controller-matrix th .controller-name-stack span {
  display: block;
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.controller-option-thumb span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.controller-matrix-shell {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.05);
}

.controller-persistent-scrollbar {
  display: none;
}

.controller-matrix {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
}

.controller-matrix th,
.controller-matrix td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.controller-matrix th:first-child {
  width: 250px;
  text-align: left;
}

.controller-matrix thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #101820;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.controller-matrix tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.controller-matrix tr:last-child th,
.controller-matrix tr:last-child td {
  border-bottom: 0;
}

.controller-matrix th:last-child,
.controller-matrix td:last-child {
  border-right: 0;
}

.controller-matrix td span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 28px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.controller-matrix td.is-yes span {
  background: rgba(16, 128, 78, 0.1);
  color: #10804e;
}

.controller-matrix td.is-optional span {
  background: rgba(16, 24, 32, 0.08);
  color: var(--muted);
}

.controller-matrix td.is-no span {
  background: rgba(172, 26, 26, 0.1);
  color: var(--red-dark);
  font-size: 0.9rem;
}

.lead-form--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-offer-section {
  padding-bottom: clamp(24px, 4vw, 42px);
}

.product-offer-section .offer-grid {
  align-items: center;
}

.product-offer-copy {
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.product-offer-copy h2 {
  margin: 0;
}

.product-offer-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
}

.product-offer-points {
  display: grid;
  gap: 12px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.product-offer-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-weight: 720;
  line-height: 1.55;
}

.product-offer-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.16em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(225, 38, 28, 0.08);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
}

.product-offer-form {
  border-color: rgba(215, 224, 230, 0.95);
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(16, 24, 32, 0.12);
}

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

.product-inquiry-summary {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(231, 36, 30, 0.16);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(225, 38, 28, 0.035), #fff);
}

.product-inquiry-summary strong {
  color: var(--red);
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-inquiry-summary span {
  color: var(--ink);
  font-weight: 900;
}

.product-inquiry-summary small {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.assurance-box {
  margin-top: 22px;
  background: #fff5f4;
  border-left: 4px solid var(--red);
}

.product-download-section {
  padding-top: clamp(24px, 4vw, 42px);
}

.product-download-section .section-heading {
  margin-bottom: 22px;
}

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

.download-list a {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-2);
  font-weight: 900;
}

.download-list a:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.download-list a.download-list__cta {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(214, 55, 43, 0.18);
}

.download-list a.download-list__cta:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  color: #fff;
}

.feature-check-grid,
.options-grid,
.standards-list {
  display: grid;
  gap: 14px;
}

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

.standards-list {
  grid-template-columns: 1fr;
}

.standards-section {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.standards-overview {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
}

.equipment-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.equipment-overview .section-heading {
  margin: 0;
  text-align: left;
}

.equipment-product-media {
  display: grid;
  place-items: center;
  min-height: 240px;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.equipment-product-media img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: none;
}

.equipment-product-media img[src^="data:image/gif"] {
  opacity: 0;
}

.standards-lead {
  max-width: 760px;
}

.standards-lead h2 {
  margin-bottom: 1.1rem;
}

.standards-lead p:not(.eyebrow) {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.65;
}

.standards-lead p:last-child {
  margin-bottom: 0;
}

.standards-lead__highlight {
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: rgba(211, 47, 38, 0.07);
  color: var(--ink);
  font-weight: 800;
}

.feature-check-grid article,
.options-grid article,
.standards-list article {
  display: grid;
  gap: 8px;
}

.feature-check-grid strong,
.options-grid strong,
.standards-list strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.feature-check-grid span,
.options-grid span,
.standards-list span {
  color: var(--muted);
}

.feature-check-grid--dense {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.feature-check-grid--dense article {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-check-grid--dense article > span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(16, 128, 78, 0.1);
  color: #10804e;
  font-weight: 950;
}

.feature-check-grid--dense strong {
  font-size: 0.92rem;
  line-height: 1.45;
}

.standards-copy {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.05);
}

.standards-copy span {
  max-width: 100%;
  color: var(--ink-2);
  line-height: 1.7;
}

.standards-list--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.standards-list--compact .standards-copy {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
}

.standards-list--compact .standards-copy--wide {
  grid-column: 1 / -1;
}

.standards-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(33, 48, 61, 0.96));
}

.standards-badge {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.standards-badge__mark {
  width: 66px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 10px;
  background: #fff;
  color: #101820;
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.standards-badge__mark--eu {
  border-color: rgba(255, 255, 255, 0.9);
  background: var(--red);
  color: #fff;
  font-size: 1.22rem;
}

.standards-badge__mark--logo {
  width: 150px;
  height: 126px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.standards-badge__mark--logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.3));
}

.standards-badge__mark--ce-logo img {
  transform: scale(1.08);
}

.standards-badge__mark--europe-logo img {
  transform: scale(1.03);
}

.standards-badge div {
  display: grid;
  gap: 4px;
}

.standards-badge strong {
  color: #fff;
}

.standards-badge span {
  color: rgba(255, 255, 255, 0.82);
}

.standards-trust-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 3vw, 42px);
  padding: 0;
}

.standards-trust-logo {
  display: grid;
  justify-items: center;
  text-align: center;
}

.standards-trust-logo__image {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(16, 24, 32, 0.16));
}

.standards-trust-logo__image--ce {
  width: clamp(120px, 12vw, 170px);
  height: clamp(120px, 12vw, 170px);
}

.standards-trust-logo__image--europe {
  width: clamp(152px, 15vw, 215px);
  height: clamp(152px, 15vw, 215px);
}

.standards-list--compact .standards-copy span {
  font-size: 0.93rem;
  line-height: 1.58;
}

.reference-overview .section-heading,
.reference-gallery-section .section-heading {
  max-width: 820px;
}

.reference-brand-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(220, 42, 32, 0.18);
  border-radius: 10px;
  background: rgba(220, 42, 32, 0.055);
  color: var(--ink);
}

.reference-brand-note__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 1px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 4 9 23h11l-2 21 21-26H27l-2-14Z'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 4 9 23h11l-2 21 21-26H27l-2-14Z'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
}

.reference-brand-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.reference-stats {
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  background: #f8fafc;
}

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

.reference-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 24, 32, 0.11);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 24, 32, 0.07);
}

.reference-stat__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: block;
  background: var(--red);
  -webkit-mask: var(--reference-stat-icon) center / 34px 34px no-repeat;
  mask: var(--reference-stat-icon) center / 34px 34px no-repeat;
}

.reference-stat__icon--globe {
  --reference-stat-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 4a20 20 0 1 0 0 40 20 20 0 0 0 0-40Zm13.8 17h-7.1a34 34 0 0 0-2.3-10.2A15.1 15.1 0 0 1 37.8 21ZM24 8.5c1.4 2 2.7 5.8 3.1 12.5h-6.2c.4-6.7 1.7-10.5 3.1-12.5ZM8.5 27h7.1a34 34 0 0 0 2.3 10.2A15.1 15.1 0 0 1 8.5 27Zm7.1-6H8.5a15.1 15.1 0 0 1 9.4-10.2A34 34 0 0 0 15.6 21ZM24 39.5c-1.4-2-2.7-5.8-3.1-12.5h6.2c-.4 6.7-1.7 10.5-3.1 12.5Zm4.4-2.3A34 34 0 0 0 30.7 27h7.1a15.1 15.1 0 0 1-9.4 10.2Z'/%3E%3C/svg%3E");
}

.reference-stat__icon--power {
  --reference-stat-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 6a20 20 0 0 1 20 20c0 5.2-2 10-5.2 13.5H9.2A20 20 0 0 1 24 6Zm0 6a14 14 0 0 0-12.8 19.7h25.6A14 14 0 0 0 24 12Zm1.7 4.5v11.2l7.6 4.4-2.6 4.5-10.7-6.2V16.5h5.7Z'/%3E%3C/svg%3E");
}

.reference-stat__icon--configuration {
  --reference-stat-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 12 24 4l18 8v24l-18 8-18-8V12Zm18 3.5 9.8-4.3L24 6.9l-9.8 4.3L24 15.5Zm-13 1.1v16.2l10.5 4.7V21.3L11 16.6Zm16 20.9 10-4.5V16.6l-10 4.5v16.4Zm8.5-22.8-10 4.5 3 1.3 10-4.5-3-1.3Z'/%3E%3C/svg%3E");
}

.reference-stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  line-height: 1.05;
}

.reference-stat div span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

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

.reference-project-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  min-height: 100%;
  padding: 22px 22px 20px;
  border: 1px solid rgba(16, 24, 32, 0.11);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.06);
}

.reference-project-card > span {
  display: inline-flex;
  align-self: flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.reference-project-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.16vw, 1.22rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.reference-project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.46;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.reference-project-card dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: auto 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 24, 32, 0.08);
}

.reference-project-card dl div {
  display: grid;
  grid-template-columns: minmax(82px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  min-width: 0;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 24, 32, 0.065);
  border-radius: 0;
  background: transparent;
}

.reference-project-card dl div:first-child {
  border-color: rgba(225, 38, 28, 0.16);
  background: transparent;
}

.reference-project-card dl div:last-child {
  border-bottom: 0;
}

.reference-project-card dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.reference-project-card dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.8rem, 0.8vw, 0.92rem);
  font-weight: 900;
  line-height: 1.22;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.reference-project-card dl div:first-child dd {
  color: #c8241b;
}

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

.reference-gallery figure {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.08);
}

.reference-gallery__media {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #edf1f4;
}

.reference-gallery img,
.reference-gallery__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 10px;
  background: #edf1f4;
}

.reference-gallery img.reference-gallery__image--zoomed-card {
  object-fit: cover;
  padding: 0;
  transform: scale(1.12);
  transform-origin: center center;
}

.reference-gallery img.reference-gallery__image--landscape-card {
  object-fit: cover;
  padding: 0;
}

.reference-gallery__media img {
  cursor: zoom-in;
}

.reference-gallery__media.is-portrait-fill img {
  object-fit: cover;
  padding: 0;
}

/* Keep every project start image flush with the caption width on all displays.
   Subsequent gallery images retain the complete contain presentation. */
.reference-gallery__media.is-mobile-start-image img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 0;
  transform: none;
}

.reference-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--red);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.reference-gallery__arrow:hover,
.reference-gallery__arrow:focus-visible {
  color: #fff;
  background: rgba(225, 38, 28, 0.88);
  transform: translateY(-50%) scale(1.04);
}

.reference-gallery__arrow--prev {
  left: 10px;
}

.reference-gallery__arrow--next {
  right: 10px;
}

.reference-gallery__arrow[hidden] {
  display: none;
}

.reference-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 12, 18, 0.86);
  touch-action: none;
}

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

.reference-lightbox__image {
  display: block;
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  background: #edf1f4;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  touch-action: none;
  will-change: transform;
}

.reference-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.reference-lightbox__close:hover,
.reference-lightbox__close:focus-visible {
  background: var(--red);
}

.reference-lightbox__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--red);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.reference-lightbox__arrow:hover,
.reference-lightbox__arrow:focus-visible {
  color: #fff;
  background: rgba(225, 38, 28, 0.88);
}

.reference-lightbox__arrow--prev {
  left: 18px;
}

.reference-lightbox__arrow--next {
  right: 18px;
}

.reference-lightbox__arrow[hidden] {
  display: none;
}

.reference-gallery figcaption {
  display: grid;
  gap: 7px;
  padding: 15px 16px 17px;
}

.reference-gallery figcaption strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.2;
}

.reference-gallery figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.reference-gallery figcaption .reference-gallery__power {
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.28;
}

.reference-gallery figcaption .reference-gallery__components {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.42;
}

.reference-gallery figcaption .reference-gallery__components b {
  color: var(--ink-2);
  font-weight: 900;
}

.service-capabilities {
  background: #fff;
}

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

.service-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 18px 38px rgba(16, 24, 32, 0.08);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(216, 54, 43, 0.24);
  border-radius: 12px;
  background: rgba(216, 54, 43, 0.08);
  color: var(--red);
}

.service-card__symbol {
  width: 29px;
  height: 29px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--service-card-icon) center / contain no-repeat;
  mask: var(--service-card-icon) center / contain no-repeat;
}

.service-card__symbol--power {
  --service-card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 3 9 27h13l-3 18 20-26H26l1-16Z'/%3E%3C/svg%3E");
}

.service-card__symbol--spec {
  --service-card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 5h22v8h5v30H8V13h5V5Zm4 8h14V9H17v4Zm-5 26h24V17H12v22Zm7-16h14v4H19v-4Zm0 8h10v4H19v-4Zm-5-8 2.2-2.2 2.2 2.2-2.2 2.2L14 23Zm0 8 2.2-2.2 2.2 2.2-2.2 2.2L14 31Z'/%3E%3C/svg%3E");
}

.service-card__symbol--transport {
  --service-card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 56 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h30v22h3V14h9l6 8v6h2v6h-6a6 6 0 0 1-12 0H22a6 6 0 0 1-12 0H4V6Zm6 22h24V12H10v16Zm31-9v9h7v-4l-4-5h-3ZM16 37a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm26 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.service-card__symbol--commissioning {
  --service-card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 4h6v20h-6V4Zm-7.6 7.4 4.3 4.3A13 13 0 1 0 30.3 15.7l4.3-4.3a19 19 0 1 1-21.2 0Z'/%3E%3C/svg%3E");
}

.service-card__symbol--quality {
  --service-card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 2 44 10v17c0 13-8 22-20 27C12 49 4 40 4 27V10l20-8Zm10 18-4-4-9 10-4-4-4 4 8 8 13-14Z'/%3E%3C/svg%3E");
}

.service-card__symbol--documentation {
  --service-card-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 4h18l8 8v13a10 10 0 1 1-6 16H11V4Zm18 4v7h7l-7-7ZM17 20h14v4H17v-4Zm0 8h10v4H17v-4Zm20 11a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm-2-8h4v4h3v4h-7v-8Z'/%3E%3C/svg%3E");
}

.service-card__line-icon {
  width: 31px;
  height: 31px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-project-check {
  background: linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}

.service-check-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
}

.service-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-check-list span {
  position: relative;
  min-height: 68px;
  padding: 16px 16px 16px 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 14px 30px rgba(16, 24, 32, 0.06);
}

.service-check-list span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(216, 54, 43, 0.1);
}

.options-grid--visual {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.options-grid--visual article {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: visible;
}

.option-image {
  width: 100%;
  height: 172px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 7px;
  background: transparent;
  overflow: hidden;
  box-sizing: border-box;
}

.option-image--ats {
  height: 172px;
  padding: 14px;
}

.option-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  display: block;
}

.option-image img[src*="mains-generator-switch-full."],
.option-image img[src*="ethernet-webserver."],
.option-image img[src*="rs232-rs485-comap-new."],
.option-image img[src*="4g-gps-modem."] {
  width: 78%;
  height: 78%;
  max-width: 78%;
  max-height: 78%;
}

.option-image img[src*="mains-generator-switch-full."] {
  width: 96%;
  height: 96%;
  max-width: 96%;
  max-height: 96%;
  object-position: center;
  transform: scale(1.22);
}

.option-image img[src*="special-colours."] {
  width: 96%;
  height: 96%;
  max-width: 96%;
  max-height: 96%;
  object-position: center;
  transform: translateY(-8%);
}

.option-image img[src*="gas-leakage-sensor."] {
  transform: translateY(-12%);
}

.option-image img[src*="anti-sand-filter."] {
  transform: translateX(-14%);
}

.option-copy {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  position: relative;
  z-index: 1;
  padding: 0 2px 2px;
  background: #fff;
}

.option-copy strong {
  font-size: 0.94rem;
  line-height: 1.24;
  text-align: center;
}

.option-copy span {
  font-size: 0.86rem;
  line-height: 1.44;
  text-align: center;
}

.option-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(172, 26, 26, 0.9), rgba(172, 26, 26, 0.72)),
    var(--red);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.product-metrics .range-card strong {
  color: var(--teal);
}

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

@media (max-width: 680px) {
  [data-diesel-product-page] .section-heading .eyebrow,
  [data-gas-product-page] .section-heading .eyebrow,
  [data-portable-product-page] .section-heading .eyebrow,
  [data-diesel-product-page] .product-offer-copy > .eyebrow,
  [data-gas-product-page] .product-offer-copy > .eyebrow,
  [data-portable-product-page] .product-offer-copy > .eyebrow,
  [data-diesel-product-page] .controller-intro__copy > .eyebrow,
  [data-gas-product-page] .controller-intro__copy > .eyebrow,
  [data-portable-product-page] .controller-intro__copy > .eyebrow,
  [data-diesel-product-page] .standards-lead > .eyebrow,
  [data-gas-product-page] .standards-lead > .eyebrow,
  [data-portable-product-page] .standards-lead > .eyebrow {
    font-size: 0.8rem;
  }
}

@media (max-width: 980px) {
  .lp-hero__grid,
  .product-hero__grid,
  .fit-grid,
  .offer-grid,
  .product-data-grid,
  .final-cta-grid,
  .spec-panels,
  .feature-check-grid,
  .options-grid,
  .category-card,
  .brand-grid,
  .brand-grid--compact,
  .catalog-card-grid,
  .range-diagram-grid,
  .catalog-card,
  .diesel-inquiry__inner,
  .diesel-inquiry__form,
  .gas-inquiry__form,
  .portable-inquiry__form,
  .quick-recommendation__inner,
  .quick-recommendation__form,
  .product-family-inquiry__form,
  .product-family-inquiry__fields,
  .product-family-inquiry__fields[data-product-family-fields="gas"],
  .company-profile-card,
  .company-profile-facts,
  .service-card-grid,
  .service-check-grid,
  .gas-range-groups {
    grid-template-columns: 1fr;
  }

  .product-family-inquiry__form > .product-family-inquiry__fields,
  .product-family-inquiry__form > label:last-of-type,
  .product-family-inquiry__form > .button {
    grid-column: 1;
  }

  .product-family-inquiry__form > .button {
    width: 100%;
    min-width: 0;
  }

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

  .gas-range-value {
    text-align: left;
  }

  .gas-library-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--with-product {
    grid-template-columns: 1fr;
  }

  .section-heading__product {
    justify-self: start;
    width: min(265px, 78vw);
    transform: none;
  }

  [data-portable-product-page] .section-heading--with-product {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  [data-portable-product-page] .section-heading__product {
    justify-self: start;
    width: min(360px, 88vw);
    transform: none;
  }

  [data-portable-product-page] .section-heading__product img {
    max-height: 300px;
  }

  .technical-panel--card-list .technical-list {
    grid-template-columns: 1fr;
  }

  [data-portable-product-page] .technical-panel--control-wide .technical-list {
    columns: 2 220px;
  }

  .equipment-overview {
    grid-template-columns: 1fr;
  }

  .standards-overview {
    grid-template-columns: 1fr;
  }

  .standards-trust-logos {
    justify-content: flex-start;
  }

  .equipment-product-media {
    min-height: 210px;
  }

  .equipment-product-media img {
    max-height: 260px;
  }

  .equipment-product-media img[src*="productbild-4."] {
    width: 118%;
    max-height: 315px;
  }

  .range-comparison-head {
    display: none;
  }

  .range-comparison-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .range-comparison-row .range-diagram {
    width: 100%;
  }

  .range-comparison-range,
  .range-comparison-action {
    justify-self: start;
    white-space: normal;
  }

  .catalog-brand-filter--logos {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 5px;
    padding-bottom: 4px;
  }

  [data-diesel-catalog] .catalog-brand-filter--logos {
    scrollbar-width: none;
  }

  [data-diesel-catalog] .catalog-brand-filter--logos::-webkit-scrollbar {
    display: none;
  }

  .catalog-brand-filter--logos .filter-pill {
    flex: 0 0 auto;
  }

  .catalog-brand-filter--logos .filter-pill:not(.filter-pill--logo) {
    min-height: 46px;
    padding: 4px 12px;
    font-size: 0.9rem;
  }

  .catalog-brand-filter--logos .filter-pill--logo {
    width: 88px;
    min-height: 50px;
    padding: 4px 5px;
  }

  .catalog-brand-filter--logos .filter-pill--logo img {
    height: 34px;
  }

  [data-gas-catalog] .catalog-brand-filter--logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    gap: 4px;
    padding-bottom: 0;
  }

  [data-gas-catalog] .catalog-brand-filter--logos .filter-pill {
    width: 100%;
    min-width: 0;
  }

  [data-gas-catalog] .catalog-brand-filter--logos .filter-pill--logo {
    width: 100%;
    min-height: 46px;
    padding: 4px;
  }

  [data-gas-catalog] .catalog-brand-filter--logos .filter-pill:not(.filter-pill--logo) {
    min-height: 46px;
    padding: 4px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  [data-gas-catalog] .catalog-brand-filter--logos .filter-pill--logo img {
    max-width: 100%;
    height: 30px;
  }

  [data-gas-catalog] .catalog-brand-filter--logos .filter-pill--logo img[alt*="Hyundai" i] {
    transform: none;
  }

  .range-matrix-shell {
    border-radius: 8px;
  }

  .range-matrix {
    min-width: 1040px;
  }

  .range-matrix-axis,
  .range-matrix-row {
    grid-template-columns: 106px repeat(24, minmax(32px, 1fr));
  }

  .range-matrix-track {
    grid-template-columns: repeat(24, minmax(32px, 1fr));
  }

  .gas-range-matrix .range-matrix-axis,
  .gas-range-matrix .range-matrix-row {
    grid-template-columns: 132px repeat(23, minmax(32px, 1fr));
  }

  .gas-range-matrix .range-matrix-track {
    grid-template-columns: repeat(23, minmax(32px, 1fr));
  }

  .range-matrix-brand img {
    width: 68px;
  }

  .range-matrix-brand img[alt*="DEUTZ" i],
  .range-matrix-brand img[alt*="Hyundai" i] {
    width: 96px;
    height: 42px;
  }

  .range-matrix-brand img[alt*="Perkins" i],
  .range-matrix-brand img[alt*="Scania" i],
  .range-matrix-brand img[alt*="Baudouin" i],
  .range-matrix-brand img[alt*="FPT" i],
  .range-matrix-brand img[alt*="Rehlko" i],
  .range-matrix-brand img[alt*="Volvo" i],
  .range-matrix-brand img[alt*="Cummins" i],
  .range-matrix-brand img[alt*="Yanmar" i] {
    width: 96px;
    height: 42px;
  }

  .range-matrix-brand img[alt*="Perkins" i],
  .range-matrix-brand img[alt*="Baudouin" i] {
    width: 90px;
    height: 40px;
  }

  .range-matrix-brand img[alt*="DEUTZ" i] {
    transform: scale(1.38);
  }

  .catalog-card__image {
    min-height: 220px;
  }

  .catalog-card--portable .catalog-card__image {
    min-height: 235px;
    padding: 72px 16px 54px;
  }

  .product-hero__image {
    order: 2;
  }

  .category-card {
    gap: 18px;
  }

  .category-card img,
  .category-card img.category-card__image--wide {
    aspect-ratio: 16 / 9;
  }

  .product-sticky-cta {
    top: 66px;
  }

  .trust-cards,
  .portable-features-list,
  .product-usp-band__grid,
  .download-list,
  .catalog-stats,
  .catalog-controls,
  .lp-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .enhanced-specs__grid {
    grid-template-columns: 1fr;
  }

  .technical-panel--wide .spec-table,
  .technical-panel--columns .spec-table-columns,
  .options-grid--visual,
  .feature-check-grid--dense {
    grid-template-columns: 1fr;
  }

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

  .technical-panel .spec-table span {
    white-space: normal;
  }

  .technical-panel--wide .spec-table {
    overflow-x: visible;
  }

  [data-portable-product-page] .technical-panel--control-wide .technical-list {
    columns: 1;
  }

  .controller-intro {
    grid-template-columns: 1fr;
  }

  .controller-intro__media {
    width: min(100%, 380px);
  }

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

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

  .controller-option-rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(154px, 172px);
    gap: 10px;
  }

  .controller-option-thumb {
    grid-template-columns: 1fr;
    grid-template-rows: 108px minmax(70px, auto);
    gap: 4px;
    justify-items: center;
    text-align: center;
  }

  .controller-option-thumb img {
    width: 132px;
    height: 98px;
  }

  .controller-option-thumb img.controller-option-thumb__image--amf25,
  .controller-option-thumb img.controller-option-thumb__image--ig4200,
  .controller-option-thumb img.controller-option-thumb__image--ig1000,
  .controller-option-thumb img.controller-option-thumb__image--dse7320,
  .controller-option-thumb img.controller-option-thumb__image--dse8610,
  .controller-option-thumb img.controller-option-thumb__image--dse8620 {
    width: 126px;
    height: 94px;
    transform: none;
  }

  .controller-option-thumb img.controller-option-thumb__image--dse7320 {
    transform: scale(1.1);
  }

  .option-image {
    height: 184px;
    padding: 22px;
  }

  .option-image img {
    width: 88%;
    height: 88%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .option-image img[src*="mains-generator-switch-full."],
  .option-image img[src*="ethernet-webserver."],
  .option-image img[src*="rs232-rs485-comap-new."],
  .option-image img[src*="4g-gps-modem."] {
    width: 70%;
    height: 70%;
    max-width: 70%;
    max-height: 70%;
  }

  .option-image img[src*="mains-generator-switch-full."] {
    width: 86%;
    height: 86%;
    max-width: 86%;
    max-height: 86%;
    transform: translateY(-28%);
  }

  .option-image img[src*="socket-kit."] {
    transform: translateY(-12%);
  }

  .option-image img[src*="anti-sand-filter."] {
    transform: translate(-14%, -14%);
  }

  .option-image img[src*="special-colours."] {
    width: 94%;
    height: 94%;
    max-width: 94%;
    max-height: 94%;
    transform: translateY(-18%);
  }

  .option-image img[src*="slow-trailer."] {
    transform: translateY(-16%);
  }

  .option-image img[src*="road-chassis."] {
    width: 96%;
    height: 96%;
    max-width: 96%;
    max-height: 96%;
  }
}

@media (max-width: 1180px) {
  .reference-stats__grid,
  .reference-project-grid,
  .reference-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .lp-hero {
    padding: 42px 0 56px;
  }

  .lp-hero--products-page-cycle .lp-hero__copy {
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .lp-hero--products-page-cycle .lp-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(1.7rem, 7.2vw, 2.08rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .company-profile-band {
    margin-top: 0;
  }

  .company-profile-card {
    border-radius: 0;
  }

  .company-profile-facts dt {
    white-space: normal;
  }

  .standards-trust-logos {
    gap: 18px;
    justify-content: center;
    padding: 0;
  }

  .standards-list--compact {
    grid-template-columns: 1fr;
  }

  .product-usp-band {
    padding: 22px 0;
  }

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

  .product-usp-card {
    min-height: 104px;
  }

  .reference-project-grid,
  .reference-stats__grid,
  .reference-gallery,
  .service-check-list {
    grid-template-columns: 1fr;
  }

  .reference-project-card {
    padding: 18px;
  }

  .reference-project-card dl {
    grid-template-columns: 1fr;
  }

  .reference-gallery__media {
    background: #edf1f4;
  }

  .reference-gallery img,
  .reference-gallery__media img,
  .reference-gallery img.reference-gallery__image--zoomed-card,
  .reference-gallery img.reference-gallery__image--landscape-card,
  .reference-gallery__media.is-portrait-fill img {
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center center;
    padding: 8px;
    transform: none;
    background: #edf1f4;
  }

  .reference-gallery__media.is-mobile-start-image img {
    object-fit: cover;
    padding: 0;
    transform: none;
  }

  .reference-gallery__media.is-mobile-start-image.is-mobile-450-start-fit img {
    object-position: center 47%;
  }

  .reference-gallery__media.is-mobile-start-image.is-mobile-700-start-fit img {
    object-position: center 43%;
  }

  .reference-lightbox {
    padding: 72px 18px 26px;
    align-items: center;
  }

  .reference-lightbox__image {
    max-height: calc(100vh - 128px);
    transform-origin: center center;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .reference-lightbox.is-zoomed .reference-lightbox__arrow {
    opacity: 0;
    pointer-events: none;
  }

  .reference-lightbox__close {
    top: 14px;
    right: 14px;
    z-index: 5;
  }

  .controller-intro__features {
    grid-template-columns: 1fr;
  }

  .standards-trust-logo__image--ce {
    width: 124px;
    height: 124px;
  }

  .standards-trust-logo__image--europe {
    width: 148px;
    height: 148px;
  }

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

  .technical-panel,
  .enhanced-specs__facts article {
    padding: 16px;
  }

  .equipment-product-media {
    min-height: 190px;
    padding: 0;
  }

  .equipment-product-media img {
    max-height: 220px;
  }

  .equipment-product-media img[src*="productbild-4."] {
    width: 122%;
    max-height: 280px;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .enhanced-specs__facts strong span {
    white-space: normal;
  }

  .enhanced-specs__fact--power strong span {
    white-space: nowrap;
  }

  .technical-panel .spec-table div {
    grid-template-columns: 1fr;
  }

  .technical-panel .spec-table strong {
    text-align: left;
  }

  .option-image {
    height: 190px;
    padding: 24px;
  }

  .option-image img {
    width: 86%;
    height: 86%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .option-image img[src*="mains-generator-switch-full."],
  .option-image img[src*="ethernet-webserver."],
  .option-image img[src*="rs232-rs485-comap-new."],
  .option-image img[src*="4g-gps-modem."] {
    width: 68%;
    height: 68%;
    max-width: 68%;
    max-height: 68%;
  }

  .option-image img[src*="mains-generator-switch-full."] {
    width: 84%;
    height: 84%;
    max-width: 84%;
    max-height: 84%;
    transform: translateY(-30%);
  }

  .option-image img[src*="socket-kit."] {
    transform: translateY(-14%);
  }

  .option-image img[src*="anti-sand-filter."] {
    transform: translate(-14%, -16%);
  }

  .option-image img[src*="special-colours."] {
    width: 92%;
    height: 92%;
    max-width: 92%;
    max-height: 92%;
    transform: translateY(-20%);
  }

  .option-image img[src*="slow-trailer."] {
    transform: translateY(-18%);
  }

  .option-image img[src*="road-chassis."] {
    width: 98%;
    height: 98%;
    max-width: 98%;
    max-height: 98%;
  }

  .lp-hero--product-slideshow {
    min-height: 640px;
    padding-top: 370px;
    background: #071017;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign,
  .lp-hero--product-slideshow.gas-category-slideshow,
  .lp-hero--product-slideshow.portable-hero-redesign {
    background: #071017;
  }

  .lp-hero--product-slideshow .product-hero-slides {
    inset: 0 0 auto;
    height: 350px;
    background: transparent;
  }

  .lp-hero--product-slideshow::after {
    background:
      linear-gradient(180deg, rgba(8, 22, 36, 0.02) 0%, rgba(8, 22, 36, 0.22) 48%, rgba(5, 12, 20, 0.86) 100%);
  }

  .lp-hero--product-slideshow .product-hero-slide,
  .lp-hero--product-slideshow:not(.gas-category-slideshow) .product-hero-slide,
  .gas-category-slideshow .product-hero-slide {
    background-size: auto 128% !important;
    background-position: right center !important;
  }

  .gas-category-slideshow .product-hero-slide:nth-child(1) {
    background-position: 92% center !important;
  }

  .gas-category-slideshow .product-hero-slide:nth-child(2) {
    background-position: 90% center !important;
  }

  .gas-category-slideshow .product-hero-slide:nth-child(3) {
    background-image: url("../img/gas-hero-slides/mobile/gas-slide-3-mobile-white-refresh-20260729.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .gas-category-slideshow .product-hero-slide:nth-child(5) {
    background-image: url("../img/gas-hero-slides/mobile/gas-slide-5-mobile-white-refresh-20260729.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide {
    background-size: cover !important;
    background-position: center center !important;
  }

  .lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide:nth-child(1) {
    background-image: url("../img/product-hero-slides/mobile/product-slide-1-mobile-diesel-unified-20260731-v5.webp") !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide:nth-child(2) {
    background-image: url("../img/product-hero-slides/mobile/product-slide-2-mobile-diesel-unified-20260731-v4.webp") !important;
  }

  .lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide:nth-child(3) {
    background-image: url("../img/product-hero-slides/mobile/product-slide-3-mobile-diesel-unified-20260731-v2.webp") !important;
  }

  .lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide:nth-child(4) {
    background-image: url("../img/product-hero-slides/mobile/product-slide-4-mobile-diesel-unified-20260731-v4.webp") !important;
  }

  .lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide:nth-child(5) {
    background-image: url("../img/product-hero-slides/mobile/product-slide-5-mobile-diesel-unified-20260731-v3.webp") !important;
  }

  .lp-hero--product-slideshow:not(.gas-category-slideshow):not(.portable-hero-redesign) .product-hero-slide:nth-child(6) {
    background-image: url("../img/product-hero-slides/mobile/product-slide-6-mobile-diesel-unified-20260731-v4.webp") !important;
  }

  .lp-hero--products-page-cycle .product-hero-slide:nth-child(7) {
    background-size: cover !important;
    background-position: center center !important;
    background-image: url("../img/product-hero-slides/mobile/product-slide-7-mobile-20260729.jpg") !important;
  }

  .lp-hero--products-page-cycle .product-hero-slide:nth-child(8) {
    background-size: cover !important;
    background-position: center center !important;
    background-image: url("../img/product-hero-slides/mobile/product-slide-8-mobile-20260729.jpg") !important;
  }

  .lp-hero--products-page-cycle .product-hero-slide:nth-child(9) {
    background-size: cover !important;
    background-position: center center !important;
    background-image: url("../img/product-hero-slides/mobile/product-slide-9-mobile-20260729.jpg") !important;
  }

  .lp-hero--gas.lp-hero--category,
  .lp-hero--portable.lp-hero--category {
    min-height: 640px;
    align-items: end;
    padding-top: 250px;
  }

  .lp-hero--gas::before,
  .lp-hero--portable::before {
    background-size: auto 128% !important;
    background-position: right center !important;
  }

  .lp-hero--diesel.lp-hero--category {
    min-height: 0;
    align-items: end;
    padding-top: 0;
    background: #071017;
  }

  .lp-hero--diesel.diesel-hero-redesign {
    padding-bottom: 40px;
    background: #05070a;
  }

  .lp-hero--diesel::before {
    display: none;
  }

  .lp-hero--diesel::after {
    background:
      linear-gradient(180deg, rgba(16, 24, 32, 0.00) 0%, rgba(16, 24, 32, 0.38) 34%, rgba(16, 24, 32, 0.96) 100%),
      linear-gradient(90deg, rgba(16, 24, 32, 0.28), rgba(16, 24, 32, 0.06) 58%, rgba(16, 24, 32, 0.22));
  }

  .lp-hero__mobile-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    padding-top: 18px;
    background: #071017;
  }

  .lp-hero__mobile-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .lp-hero__copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.02;
    font-weight: 900;
  }

  .lp-hero--editorial-slideshow .lp-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.8vw, 1.95rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .lp-hero--products-page-cycle .lp-hero__copy h1 {
    max-width: min(100%, 340px);
    font-size: clamp(1.48rem, 6.4vw, 1.78rem);
    line-height: 1.16;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .diesel-hero-redesign .lp-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(1.86rem, 9.2vw, 2.45rem);
    line-height: 1.02;
  }

  .gas-category-slideshow .lp-hero__copy h1 {
    font-size: clamp(1.74rem, 8.1vw, 2.08rem);
    line-height: 1.04;
  }

  .portable-hero-redesign .lp-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(1.86rem, 8.3vw, 2.12rem);
    line-height: 1.05;
  }

  .diesel-hero-kicker {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 0.78rem;
    line-height: 1.7;
    letter-spacing: 0.12em;
    white-space: normal;
    overflow-wrap: anywhere;
  }


  .gas-hero-redesign .diesel-hero-kicker > span:first-child,
  .gas-hero-redesign .diesel-hero-kicker > span:nth-child(3) {
    display: block;
    text-transform: uppercase;
  }

  .gas-hero-redesign .diesel-hero-kicker .diesel-hero-kicker__divider {
    display: none;
  }

  .diesel-hero-title-line {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: normal;
    hyphens: manual;
  }

  .portable-hero-redesign .diesel-hero-title-line {
    white-space: nowrap;
  }

  .diesel-hero-redesign .lp-hero__copy,
  .diesel-hero-redesign .lp-hero__grid {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .diesel-hero-lead {
    font-size: 1.02rem;
  }

  .diesel-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
    margin: 24px 0 26px;
  }

  .diesel-hero-metrics article {
    padding: 0 16px;
  }

  .diesel-hero-metrics article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .diesel-hero-metrics article:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.26);
  }

  html[lang="en"] .gas-hero-metrics article:nth-child(4) strong {
    font-size: 0.96rem;
    white-space: nowrap;
  }

  .diesel-hero-metric__icon {
    width: 34px;
    height: 34px;
  }

  .diesel-hero-actions {
    gap: 12px;
  }

  .diesel-hero-actions .button {
    width: 100%;
    min-height: 54px;
    min-width: 0;
  }

  .lp-hero__copy h1 [data-product-title-suffix] {
    font-size: 0.52em;
  }

  .lp-hero__copy p {
    font-size: 1rem;
  }

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

  .product-hero--diesel-bg-test {
    background:
      linear-gradient(180deg, rgba(5, 10, 17, 0.62), rgba(7, 14, 24, 0.44)),
      url("../img/product-subpage-hero-bg-optimized.webp") 50% 58% / cover no-repeat;
    background-color: #071017;
  }

  .product-hero--portable-bg {
    background:
      linear-gradient(180deg, rgba(5, 10, 17, 0.62), rgba(7, 14, 24, 0.44)),
      url("../img/product-subpage-hero-bg-optimized.webp") 50% 58% / cover no-repeat;
    background-color: #071017;
  }

  .product-hero__grid {
    gap: 28px;
  }

  .product-hero__image--photo {
    padding: 16px;
    border-radius: 12px;
  }

  .product-hero__image--photo img {
    max-height: 340px;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="t55-s-st-v1."] {
    width: 116% !important;
    max-width: none !important;
    max-height: 410px;
    transform: translateX(-3%) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-145-o-st."] {
    width: 138% !important;
    max-width: none !important;
    transform: translateX(-16%) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-2000-o-st."] {
    width: 138% !important;
    max-width: none !important;
    transform: translateX(-14%) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-1120-o-st-v4."] {
    width: 138% !important;
    max-width: none !important;
    transform: translateX(-14%) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-12"],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-12"] {
    width: 127% !important;
    max-width: none !important;
    transform: translateX(-10%) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-11"],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-11"] {
    width: 134% !important;
    max-width: none !important;
    transform: translateX(-13%) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-9"],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-9"] {
    width: 133% !important;
    max-width: none !important;
    transform: translateX(-11%) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-10"],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-10"] {
    width: 134% !important;
    max-width: none !important;
    transform: translateX(-12%) !important;
  }

  [data-gas-product-page] .product-hero__image--photo img[src*="gas-silent-productbild-13."] {
    width: 134% !important;
    max-width: none !important;
    transform: translateX(-12%) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-22-s-st-v2."],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-22-s-st-v2."] {
    width: 131% !important;
    max-width: none !important;
    transform: translateX(-10%) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo:has(img[src*="productbild-2."]),
  [data-gas-product-page] .product-hero__image--photo:has(img[src*="productbild-2."]) {
    min-height: 315px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-2."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-2."] {
    width: 136% !important;
    max-width: none !important;
    max-height: none !important;
    transform: translateX(0%) scale(1.04) !important;
    transform-origin: center center;
  }

  [data-gas-product-page] .product-hero__image--photo:has(img[src*="gas-open-productbild-14."]) {
    min-height: 315px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  [data-gas-product-page] .product-hero__image--photo img[src*="gas-open-productbild-14."] {
    width: 136% !important;
    max-width: none !important;
    max-height: none !important;
    transform: translateX(0%) scale(1.04) !important;
    transform-origin: center center;
  }

  [data-diesel-product-page] .product-hero__image--photo:has(img[src*="productbild-5"]) {
    min-height: 335px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-5"] {
    width: 130% !important;
    max-width: none !important;
    max-height: none !important;
    transform: translateX(-2%) scale(1.01) !important;
    transform-origin: center center;
  }




  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-66-s-st."] {
    width: 230% !important;
    max-width: none !important;
    max-height: none !important;
    transform: translateX(-28%) scale(1.18) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo:has(img[src*="perkins-198-o-st."]) {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-198-o-st."] {
    width: 310% !important;
    max-width: none !important;
    max-height: none !important;
    transform: translateX(-34%) translateY(-8px) scale(1.2) !important;
    transform-origin: center center;
  }

  [data-portable-product-page] .product-hero__image--photo img {
    max-height: 448px;
    transform: scale(1.33);
  }

  [data-portable-product-page] .product-hero__image--photo {
    overflow: hidden;
  }

  .controller-standard {
    padding: 18px;
  }

  .controller-standard__media {
    min-height: 200px;
  }

  .controller-standard__media img {
    max-height: 230px;
  }

  .model-grid,
  .trust-cards,
  .portable-features-list,
  .download-list,
  .catalog-stats,
  .catalog-controls,
  .lp-proof__grid,
  .lead-form--wide,
  .product-facts {
    grid-template-columns: 1fr;
  }

  [data-diesel-product-page] .product-facts,
  [data-portable-product-page] .product-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .range-diagram-card__head,
  .range-diagram-card p {
    display: grid;
  }

  .range-comparison-brand {
    align-items: flex-start;
  }

  .range-comparison-brand img {
    width: 42px;
    height: 32px;
  }

  .range-comparison-action {
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .range-matrix {
    min-width: 920px;
  }

  .range-matrix-axis,
  .range-matrix-row {
    grid-template-columns: 94px repeat(24, minmax(29px, 1fr));
  }

  .range-matrix-track {
    grid-template-columns: repeat(24, minmax(29px, 1fr));
  }

  .gas-range-matrix .range-matrix-axis,
  .gas-range-matrix .range-matrix-row {
    grid-template-columns: 116px repeat(23, minmax(29px, 1fr));
  }

  .gas-range-matrix .range-matrix-track {
    grid-template-columns: repeat(23, minmax(29px, 1fr));
  }

  .gas-range-group--matrix .gas-range-group__header {
    justify-content: flex-start;
    gap: 8px;
  }

  .gas-range-group--matrix .gas-range-group__fuel-icon {
    position: static;
    transform: none;
    order: 2;
    width: 30px;
    height: 30px;
  }

  .gas-range-group--matrix .gas-range-group__header > span:not(.gas-range-group__fuel-icon) {
    order: 1;
  }

  .gas-range-group--matrix .gas-range-group__header strong {
    order: 3;
    margin-left: auto;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .gas-range-group--matrix .gas-range-group__fuel-icon svg {
    width: 19px;
    height: 19px;
  }

  .range-matrix-axis {
    font-size: 0.68rem;
  }

  .range-matrix-brand {
    padding: 7px;
  }

  .range-matrix-brand img {
    width: 62px;
    height: 30px;
  }

  .range-matrix-brand img[alt*="DEUTZ" i],
  .range-matrix-brand img[alt*="Hyundai" i] {
    width: 90px;
    height: 40px;
  }

  .range-matrix-brand img[alt*="Perkins" i],
  .range-matrix-brand img[alt*="Scania" i],
  .range-matrix-brand img[alt*="Baudouin" i],
  .range-matrix-brand img[alt*="FPT" i],
  .range-matrix-brand img[alt*="Rehlko" i],
  .range-matrix-brand img[alt*="Volvo" i],
  .range-matrix-brand img[alt*="Cummins" i],
  .range-matrix-brand img[alt*="Yanmar" i] {
    width: 90px;
    height: 40px;
  }

  .range-matrix-brand img[alt*="Perkins" i],
  .range-matrix-brand img[alt*="Baudouin" i] {
    width: 84px;
    height: 38px;
  }

  .range-matrix-brand img[alt*="DEUTZ" i] {
    transform: scale(1.42);
  }

  .range-matrix-brand strong {
    font-size: 0.76rem;
  }

  .range-matrix-brand small {
    font-size: 0.62rem;
  }

  .range-matrix-bar b {
    font-size: 0.74rem;
  }

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

  .category-card {
    padding: 16px;
    gap: 16px;
  }

  .category-card img,
  .category-card img.category-card__image--wide {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center center;
  }

  .category-card img[src*="category-diesel-generators"] {
    height: clamp(205px, 52vw, 230px);
    object-fit: cover;
  }

  .category-card span {
    margin-bottom: 8px;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .category-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.52rem, 7vw, 1.78rem);
    line-height: 1.08;
  }

  .category-card p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .category-card .button {
    width: 100%;
  }

  .product-facts {
    gap: 10px;
    margin-top: 24px;
  }

  .product-facts div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 18px 16px;
    text-align: center;
  }

  .product-facts dt,
  .product-facts dd {
    width: 100%;
    text-align: center;
  }

  .product-facts dd,
  .product-facts div:nth-child(-n + 2) dd {
    font-size: clamp(1.18rem, 6vw, 1.58rem);
  }

  .product-facts div:nth-child(-n + 2) dd {
    white-space: nowrap;
  }

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

  .section-heading--with-fuel-indicator {
    grid-template-columns: 1fr;
  }

  .catalog-fuel-indicators {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: none;
    justify-items: stretch;
  }

  .catalog-fuel-indicators--dual {
    grid-template-columns: auto auto;
    justify-content: space-between;
    max-width: none;
  }

  .catalog-fuel-indicators--dual .catalog-fuel-indicator {
    width: 128px;
  }

  .catalog-fuel-indicators:not(.catalog-fuel-indicators--dual) .catalog-fuel-indicator {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .catalog-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 8px;
  }

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

  .product-sticky-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: center;
    max-width: none;
    margin: 0 auto;
    padding: 14px 0;
    text-align: center;
  }

  .product-sticky-cta {
    position: static;
  }

  .product-sticky-cta__inner > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    gap: 4px;
    line-height: 1.35;
    text-align: center;
  }

  .product-sticky-cta__model,
  .product-sticky-cta__power {
    display: block;
    max-width: 100%;
    text-align: center;
  }

  .product-sticky-cta__model {
    line-height: 1.16;
  }

  .product-sticky-cta__power {
    white-space: nowrap;
    font-size: clamp(0.86rem, 3.45vw, 1rem);
    line-height: 1.2;
  }

  .product-sticky-cta__separator {
    display: none;
  }

  [data-portable-product-page] .product-sticky-cta__summary {
    display: grid;
    justify-items: center;
    gap: 5px;
    width: 100%;
    min-width: 0;
  }

  [data-portable-product-page] .product-sticky-cta__model,
  [data-portable-product-page] .product-sticky-cta__power {
    display: block;
    width: 100%;
    text-align: center;
  }

  [data-portable-product-page] .product-sticky-cta__model {
    font-size: clamp(1.12rem, 5.4vw, 1.65rem);
    line-height: 1.08;
  }

  [data-portable-product-page] .product-sticky-cta__power {
    white-space: nowrap;
    font-size: clamp(0.72rem, 3.25vw, 0.96rem);
    line-height: 1.15;
  }

  .catalog-card {
    gap: 0;
  }

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

  .catalog-card__image {
    min-height: 190px;
    padding: 14px;
  }

  .catalog-card--portable .catalog-card__image {
    min-height: 250px;
    padding: 72px 12px 50px;
  }

  .catalog-card--portable .catalog-card__image img {
    width: min(150%, 361px);
    max-width: none;
    max-height: 261px;
    transform: translateY(-7px);
  }

  .catalog-card--diesel .catalog-card__image {
    min-height: 290px;
    padding: 74px 14px 62px;
  }

  .catalog-card--diesel .catalog-card__image > img {
    width: min(100%, 330px);
    max-height: 158px;
    transform: translateY(-12px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-6-v2."] {
    width: min(125%, 410px);
    max-width: none;
    max-height: 215px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-4."],
  .catalog-card--gas .catalog-card__image > img[src*="productbild-4."] {
    width: min(177%, 552px);
    max-width: none;
    max-height: 281px;
  }

  .catalog-card--gas .catalog-card__image > img[src*="gas-silent-productbild-13."] {
    width: min(124%, 400px);
    max-width: none;
    max-height: 230px;
    transform: translateY(-8px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="baudouin-22-s-st-v2."] {
    width: min(132%, 431px);
    max-width: none;
    max-height: 214px;
    transform: translateY(-8px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="baudouin-145-o-st."] {
    width: min(144%, 460px);
    max-width: none;
    max-height: 232px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-9."],
  .catalog-card--gas .catalog-card__image > img[src*="productbild-9."] {
    width: min(124%, 405px);
    max-width: none;
    max-height: 220px;
    transform: translateY(-8px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="perkins-2000-o-st."] {
    width: min(156%, 510px);
    max-width: none;
    max-height: 268px;
    transform: translateY(-14px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="perkins-1120-o-st-v4."] {
    width: min(133%, 434px);
    max-width: none;
    max-height: 228px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-12"],
  .catalog-card--gas .catalog-card__image > img[src*="productbild-12"] {
    width: min(126%, 412px);
    max-width: none;
    max-height: 219px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-11."],
  .catalog-card--gas .catalog-card__image > img[src*="productbild-11."] {
    width: min(126%, 412px);
    max-width: none;
    max-height: 219px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-10."],
  .catalog-card--gas .catalog-card__image > img[src*="productbild-10."] {
    width: min(118%, 390px);
    max-width: none;
    max-height: 214px;
    transform: translateY(-8px);
  }

  .catalog-card--diesel .catalog-card__image:has(> img[src*="productbild-2."]) {
    min-height: 292px;
    padding-top: 62px;
    padding-bottom: 56px;
    overflow: hidden;
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-2."] {
    width: min(122%, 400px);
    max-width: none;
    max-height: 226px;
    transform: translateY(-8px) scale(1.02);
    transform-origin: center center;
  }

  .catalog-card--gas .catalog-card__image:has(> img[src*="gas-open-productbild-14."]) {
    min-height: 292px;
    padding-top: 62px;
    padding-bottom: 56px;
    overflow: hidden;
  }

  .catalog-card--gas .catalog-card__image > img[src*="gas-open-productbild-14."] {
    width: min(122%, 400px);
    max-width: none;
    max-height: 226px;
    transform: translateY(-8px) scale(1.02);
    transform-origin: center center;
  }

  .catalog-card--diesel .catalog-card__image:has(> img[src*="productbild-5."]) {
    min-height: 292px;
    padding-top: 62px;
    padding-bottom: 56px;
    overflow: hidden;
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-5."] {
    width: min(122%, 400px);
    max-width: none;
    max-height: 226px;
    transform: translateY(-8px) scale(1.02);
    transform-origin: center center;
  }

  .catalog-card--diesel .catalog-card__image > img[src*="baudouin-110-s-st."] {
    width: min(120%, 395px);
    max-width: none;
    max-height: 220px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="perkins-145-s-st."] {
    width: min(172%, 560px);
    max-width: none;
    max-height: 282px;
    transform: translateY(-18px) scale(1.08);
  }

  .catalog-card--diesel .catalog-card__image:has(> img[src*="perkins-198-o-st."]) {
    min-height: 340px;
    padding-top: 50px;
    padding-bottom: 42px;
    overflow: visible;
  }

  .catalog-card--diesel .catalog-card__image > img[src*="perkins-198-o-st."] {
    width: min(260%, 820px);
    max-width: none;
    max-height: 390px;
    transform: translateY(-34px) translateX(-2%) scale(1.18);
    transform-origin: center center;
  }

  .catalog-card--diesel .catalog-card__image > img[src*="baudouin-145-s-st-v3."] {
    width: min(113%, 371px);
    max-width: none;
    max-height: 197px;
    transform: translateY(-6px);
  }

  .catalog-card--diesel.catalog-card--t55-image .catalog-card__image > img {
    width: min(116%, 400px);
    max-height: 204px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__power-badge {
    top: 12px;
    left: 14px;
  }

  .catalog-card--diesel .catalog-card__stage-badge {
    top: 10px;
    right: 14px;
    min-width: 78px;
    gap: 6px;
    padding: 6px 8px 6px 7px;
  }

  .catalog-card__stage-leaf {
    width: 19px;
    height: 15px;
  }

  .catalog-card__stage-text b {
    font-size: 0.48rem;
  }

  .catalog-card__stage-text strong {
    font-size: 0.64rem;
  }

  .catalog-card__portable-stage-badge {
    top: 12px;
    right: 14px;
    min-width: 78px;
    gap: 6px;
    padding: 6px 8px 6px 7px;
  }

  .catalog-back-to-start {
    right: 12px;
    bottom: 78px;
    width: 34px;
    height: 34px;
  }

  .catalog-card__portable-stage-leaf {
    width: 19px;
    height: 15px;
  }

  .catalog-card__portable-stage-text b {
    font-size: 0.48rem;
  }

  .catalog-card__portable-stage-text strong {
    font-size: 0.64rem;
  }

.catalog-card--diesel .catalog-card__brand-logo {
  right: 14px;
  bottom: 14px;
  width: 96px;
  height: 46px;
    min-width: 0;
    max-width: none;
    min-height: 0;
    max-height: none;
  }

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

  .catalog-card--diesel .catalog-card__actions {
    grid-template-columns: 1fr;
  }

  .catalog-card--portable .catalog-card__actions {
    grid-template-columns: 1fr;
  }

  .catalog-card__actions .button {
    width: 100%;
  }

  .catalog-card__actions .button--compare {
    justify-self: end;
    width: auto;
    min-height: 44px;
  }

  .catalog-card__fuel-tile,
  .catalog-card__diesel-tile,
  .catalog-card__portable-tile {
    width: 68px;
    height: 74px;
    padding: 6px 5px;
    gap: 2px;
    justify-items: center;
    align-items: center;
  }

  .catalog-card__fuel-icon,
  .catalog-card__diesel-icon {
    width: 30px;
    height: 31px;
    justify-self: center;
  }

  .catalog-card__fuel-icon svg {
    width: 22px;
    height: 22px;
    transform: none;
  }

  .catalog-card__fuel-tile--image {
    width: 55px;
    height: 54px;
    min-height: 54px;
    padding: 4px;
    gap: 1px;
  }

  .catalog-card__fuel-tile--image .catalog-card__fuel-icon {
    width: 25px;
    height: 25px;
  }

  .catalog-card__fuel-tile--image .catalog-card__fuel-icon svg {
    width: 18px;
    height: 18px;
  }

  .catalog-card__fuel-tile--image strong {
    min-height: 1rem;
    font-size: 0.4rem;
  }

  .catalog-card__fuel-tile--image.catalog-card__fuel-tile--lpg strong {
    font-size: 0.48rem;
  }

  .catalog-card__diesel-icon svg {
    width: 26px;
    height: 26px;
    transform: none;
  }

  .catalog-card__portable-icon {
    width: 40px;
    height: 34px;
  }

  .catalog-card__portable-icon img {
    width: 43px;
    height: 34px;
  }

  .catalog-card__fuel-tile strong,
  .catalog-card__portable-tile strong {
    font-size: 0.5rem;
  }

  .catalog-card__diesel-tile strong {
    font-size: 0.54rem;
  }

  .catalog-card--portable .catalog-card__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .catalog-card--portable .catalog-card__head > div {
    min-width: 0;
  }

  .catalog-card__head h3,
  .catalog-card__head h3 a {
    max-width: 100%;
  }

  .catalog-card__head .catalog-card__fuel-tile,
  .catalog-card__head .catalog-card__diesel-tile,
  .catalog-card__head .catalog-card__portable-tile {
    justify-self: end;
  }

  .catalog-card--gas .catalog-card__image .catalog-card__fuel-tile--image {
    display: none;
  }

  .catalog-card--gas .catalog-card__head > .catalog-card__fuel-tile {
    display: grid;
    width: 68px;
    height: 74px;
    padding: 6px 5px;
    gap: 2px;
  }

  .catalog-card--gas .catalog-card__head .catalog-card__fuel-icon svg {
    width: 30px;
    height: 30px;
  }

  .catalog-card--gas .catalog-card__head .catalog-card__fuel-tile strong,
  .catalog-card--gas .catalog-card__head .catalog-card__fuel-tile--lpg strong {
    font-size: 0.54rem;
    line-height: 1.05;
  }

  .sticky-actions,
  .linked-feature,
  .linked-feature--reverse {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sticky-actions {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    justify-items: center;
    margin: 0 auto;
  }

  .sticky-actions .text-link,
  .sticky-actions .button {
    justify-self: center;
    text-align: center;
  }

  .sticky-actions .button {
    width: min(100%, 430px);
  }
}

@media (min-width: 901px) {
  .catalog-card--portable .catalog-card__portable-stage-badge {
    top: 10px !important;
    right: 10px !important;
    min-width: 70px !important;
    gap: 6px !important;
    padding: 6px 8px 6px 7px !important;
  }

  .catalog-card--portable .catalog-card__portable-stage-leaf {
    width: 18px !important;
    height: 14px !important;
  }

  .catalog-card--portable .catalog-card__portable-stage-leaf::after {
    left: 3px !important;
    right: 3px !important;
    top: 6px !important;
    height: 2px !important;
  }

  .catalog-card--portable .catalog-card__portable-stage-text b {
    font-size: 0.43rem !important;
  }

  .catalog-card--portable .catalog-card__portable-stage-text strong {
    font-size: 0.58rem !important;
  }
}

/* 20260715 catalog interaction polish */
.catalog-panel {
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.catalog-panel:focus-within {
  border-color: rgba(8, 127, 140, 0.28);
  box-shadow: 0 20px 52px rgba(16, 24, 32, 0.1);
}

.catalog-card,
.product-card,
.product-family-card,
.service-capability,
.quick-recommendation {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.catalog-card:hover,
.catalog-card:focus-within,
.product-card:hover,
.product-card:focus-within,
.product-family-card:hover,
.product-family-card:focus-within,
.service-capability:hover,
.service-capability:focus-within {
  transform: translateY(-3px);
  border-color: rgba(225, 38, 28, 0.26);
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.11);
}

.catalog-card-grid.is-refreshing {
  opacity: 0.78;
  transform: translateY(2px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.catalog-count {
  transition: color 0.18s ease, transform 0.18s ease;
}

.catalog-count.is-updating {
  color: var(--red);
  transform: translateY(-1px);
}

.filter-pill,
.segment {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.filter-pill:hover,
.filter-pill:focus-visible,
.segment:hover,
.segment:focus-visible {
  transform: translateY(-1px);
}

.reference-case-summary {
  display: grid;
  gap: 9px;
  margin: 14px 0 18px;
}

.reference-case-summary > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
}

.reference-case-summary dt {
  color: var(--brand-red);
  font-size: .73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reference-case-summary dd {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .catalog-panel,
  .catalog-card,
  .product-card,
  .product-family-card,
  .service-capability,
  .quick-recommendation,
  .catalog-card-grid.is-refreshing,
  .catalog-count,
  .filter-pill,
  .segment {
    transform: none !important;
    transition: none !important;
  }
}

/* 20260723 responsive audit: bridge the tablet / compact-laptop range. */
@media (min-width: 981px) and (max-width: 1190px) {
  .catalog-panel > * {
    min-width: 0;
  }

  [data-diesel-catalog] .catalog-brand-filter--logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  [data-diesel-catalog] .catalog-brand-filter--logos::-webkit-scrollbar {
    display: none;
  }

  [data-diesel-catalog] .catalog-brand-filter--logos .filter-pill {
    flex: 0 0 auto;
  }

  [data-gas-catalog] .catalog-brand-filter--logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  [data-gas-catalog] .catalog-brand-filter--logos .filter-pill {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 981px) and (max-width: 1014px) {
  .section-heading--catalog-intro p:not(.eyebrow) {
    white-space: normal;
  }

  .site-header .nav-shell {
    gap: 16px;
  }

  .site-header .brand {
    min-width: 200px;
  }

  .site-header .main-nav {
    gap: 14px;
  }

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

@media (min-width: 981px) and (max-width: 1279px) {
  [data-portable-product-page] .section-heading__product {
    transform: none;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  [data-diesel-product-page] .product-hero,
  [data-gas-product-page] .product-hero,
  [data-portable-product-page] .product-hero {
    overflow-x: clip;
  }
}

/* Productbild 12 uses a fully transparent, edge-clean asset. Keep the complete
   generator silhouette visible on every display class without a clipping mask. */
[data-diesel-product-page]
  .product-hero--image-productbild-12
  .product-hero__image--photo img,
[data-gas-product-page]
  .product-hero--image-productbild-12
  .product-hero__image--photo img {
  border-radius: 0;
  clip-path: none !important;
}

/* Preserve the full start-image composition on the five selected reference cards.
   The fixed 4:3 media frame, flush caption width and all subsequent slides stay unchanged. */
.reference-gallery__start--balanced-fit .reference-gallery__media.is-mobile-start-image {
  isolation: isolate;
  background: #edf1f4;
}

.reference-gallery__start--balanced-fit .reference-gallery__media.is-mobile-start-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: 0;
  background: var(--reference-start-image) center center / cover no-repeat;
  filter: blur(12px) saturate(0.82);
  opacity: 0.36;
  transform: scale(1.05);
}

.reference-gallery__start--balanced-fit .reference-gallery__media.is-mobile-start-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  transform: none;
  background: transparent;
}

/* Keep the portable hero visually continuous from copy to product image. */
.lp-hero--product-slideshow.portable-hero-redesign,
.portable-hero-redesign .product-hero-slides,
.portable-hero-redesign .product-hero-slide {
  background-color: #000103;
}

.lp-hero--product-slideshow.portable-hero-redesign::after {
  background:
    linear-gradient(100deg, #000103 0%, rgba(0, 1, 3, 0.99) 34%, rgba(2, 6, 11, 0.62) 52%, rgba(4, 9, 15, 0.16) 70%, rgba(5, 10, 16, 0) 100%),
    linear-gradient(180deg, rgba(0, 2, 5, 0.22) 0%, rgba(5, 10, 16, 0.035) 46%, rgba(5, 10, 16, 0.055) 100%);
}

@media (max-width: 700px) {
  .lp-hero--product-slideshow.portable-hero-redesign::after {
    background:
      linear-gradient(180deg, rgba(8, 22, 36, 0.02) 0%, rgba(8, 22, 36, 0.22) 48%, rgba(5, 12, 20, 0.86) 100%);
  }
}

/* German and English product detail heroes keep the same desktop frame. */
@media (min-width: 1101px) {
  .lp-hero--product-slideshow {
    display: flex;
    align-items: center;
    min-height: 646px;
    box-sizing: border-box;
  }

  [data-diesel-product-page] .product-hero__grid,
  [data-gas-product-page] .product-hero__grid,
  [data-portable-product-page] .product-hero__grid {
    min-height: 525px;
  }

  [data-diesel-product-page] .lp-hero__copy h1,
  [data-gas-product-page] .lp-hero__copy h1,
  [data-portable-product-page] .lp-hero__copy h1 {
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 4.8vw, 4.75rem);
    line-height: 1;
    letter-spacing: 0;
  }
}

@media (min-width: 1500px) {
  .lp-hero--product-slideshow {
    min-height: 751px;
  }
}

/* 20260716 sitewide hero system: one frame and type scale for editorial, product and contact pages. */
@media (min-width: 1101px) {
  .lp-hero--product-slideshow,
  .product-hero,
  .contact-section--advice {
    height: 690px;
    min-height: 690px;
    max-height: 690px;
    padding-top: 24px;
    padding-bottom: 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  .lp-hero--product-slideshow .lp-hero__copy h1,
  [data-diesel-product-page] .product-hero .lp-hero__copy h1,
  [data-gas-product-page] .product-hero .lp-hero__copy h1,
  [data-portable-product-page] .product-hero .lp-hero__copy h1,
  .contact-section--advice .contact-title {
    max-width: 780px;
    margin-bottom: 16px;
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 900;
  }

  .lp-hero--products-page-cycle .crumbs,
  .lp-hero--product-slideshow.diesel-hero-redesign .crumbs,
  .lp-hero--product-slideshow.gas-category-slideshow .crumbs,
  .lp-hero--product-slideshow.portable-hero-redesign .crumbs,
  .product-hero .crumbs {
    margin-bottom: 14px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-kicker,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-kicker,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-kicker {
    margin-bottom: 12px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-lead,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-lead,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-lead {
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-metrics,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-metrics,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-metrics {
    margin-top: 20px;
    margin-bottom: 22px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-metric__icon,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-metric__icon,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-metric__icon {
    width: 34px;
    height: 34px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-metrics strong,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-metrics strong,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-metrics strong {
    margin-top: 10px;
    font-size: 1rem;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-metrics span:not(.diesel-hero-metric__icon),
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-metrics span:not(.diesel-hero-metric__icon),
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-metrics span:not(.diesel-hero-metric__icon) {
    margin-top: 3px;
    font-size: 0.87rem;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-actions .button,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-actions .button,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-actions .button {
    min-height: 50px;
  }

  [data-diesel-product-page] .product-hero__grid,
  [data-gas-product-page] .product-hero__grid,
  [data-portable-product-page] .product-hero__grid {
    min-height: 525px;
  }

  [data-diesel-product-page] .product-hero__image--photo,
  [data-gas-product-page] .product-hero__image--photo,
  [data-portable-product-page] .product-hero__image--photo {
    display: flex;
    width: 100%;
    height: 420px;
    align-items: center;
    justify-content: center;
  }

  [data-diesel-product-page] .product-hero__image--photo img,
  [data-gas-product-page] .product-hero__image--photo img,
  [data-portable-product-page] .product-hero__image--photo img {
    height: 420px;
    max-height: 420px;
    object-fit: contain;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .lp-hero--product-slideshow .lp-hero__copy h1,
  .product-hero .lp-hero__copy h1,
  .contact-section--advice .contact-title {
    font-size: 48px;
    line-height: 1.03;
    letter-spacing: 0;
  }
}

/* Keep the visible generator edge at the Perkins 198 O reference distance. */
@media (min-width: 1101px) {
  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-2."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-2."] {
    transform: translateX(-8%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-4."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-4."] {
    transform: translateX(-0.8%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-5."] {
    transform: translateX(-14.5%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-6-v2."] {
    transform: translateX(-4.3%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-9."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-9."] {
    transform: translateX(-11.6%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-10."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-10."] {
    transform: translateX(-9.5%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-11."],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-11."] {
    transform: translateX(-13.8%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-12"],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-12"] {
    transform: translateX(-16.4%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-145-o-st."] {
    transform: translateX(-11.1%);
  }

  [data-gas-product-page] .product-hero__image--photo img[src*="gas-open-productbild-14."] {
    transform: translateX(-8.1%);
  }

  [data-gas-product-page] .product-hero__image--photo img[src*="gas-silent-productbild-13."] {
    transform: translateX(-7.7%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-22-s-st-v2."],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-22-s-st-v2."] {
    transform: translateX(-11%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="baudouin-145-s-st-v3."],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-145-s-st-v3."] {
    transform: translateX(-12.9%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="t55-s-st-v1."] {
    transform: translateX(-10%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-1120-o-st-v4."] {
    transform: translateX(-12.9%);
  }
}

@media (min-width: 1101px) and (max-width: 1300px) {
  .product-hero .product-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-hero .product-facts > div {
    min-width: 0;
  }

  .product-hero .lp-hero__copy h1 [data-product-title-suffix] {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 700px) {
  .lp-hero--product-slideshow .lp-hero__copy h1,
  .product-hero .lp-hero__copy h1,
  .contact-section--advice .contact-title {
    font-size: 36px;
    line-height: 1.04;
    letter-spacing: 0;
  }
}

/* Keep desktop hero copy dark while releasing the generator image before it begins. */
@media (min-width: 721px) {
  .lp-hero--product-slideshow::after,
  .lp-hero--product-slideshow.diesel-hero-redesign::after,
  .lp-hero--product-slideshow.gas-category-slideshow::after,
  .lp-hero--product-slideshow.portable-hero-redesign::after,
  .product-hero::after,
  .contact-section--advice::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(100deg, #000103 0%, rgba(0, 1, 3, 0.995) 40%, rgba(0, 1, 3, 0.88) 50%, rgba(0, 1, 3, 0.58) 57%, rgba(0, 1, 3, 0.32) 64%, rgba(0, 1, 3, 0.14) 70%, rgba(0, 1, 3, 0) 80%),
      linear-gradient(180deg, rgba(0, 2, 5, 0.22) 0%, rgba(5, 10, 16, 0.035) 46%, rgba(5, 10, 16, 0.055) 100%);
  }

  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(6)::after,
  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(8)::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(100deg, rgba(0, 1, 3, 0.42) 0%, rgba(0, 1, 3, 0.42) 34%, rgba(0, 1, 3, 0.18) 48%, rgba(0, 1, 3, 0) 62%);
  }

  .lp-hero--products-page-cycle .product-hero-slide {
    background-size: auto 138% !important;
    background-position: right center !important;
  }

  .lp-hero--products-page-cycle .product-hero-slide:nth-child(7),
  .lp-hero--products-page-cycle .product-hero-slide:nth-child(8),
  .lp-hero--products-page-cycle .product-hero-slide:nth-child(9) {
    background-size: auto 120% !important;
  }

  /* Slide 6 is composed with its own text-safe zone; preserve the approved framing. */
  #main .lp-hero--product-slideshow .product-hero-slide[style*="product-slide-6"] {
    background-size: cover !important;
    background-position: right center !important;
  }

  #main .diesel-hero-redesign:not(.brand-hero-slideshow),
  #main .diesel-hero-redesign:not(.brand-hero-slideshow) .product-hero-slides {
    background-image: none !important;
    background-color: #000103;
  }
}

/* Wide desktops have enough room to keep every generator equally close to the copy. */
@media (min-width: 1600px) {
  #main .diesel-hero-redesign:has(.product-hero-slide--diesel-main-first) .product-hero-slide {
    background-size: auto 138% !important;
    background-position: right center !important;
  }

  #main .diesel-hero-redesign:has(.product-hero-slide--diesel-main-first) .product-hero-slide:nth-child(3),
  #main .diesel-hero-redesign:has(.product-hero-slide--diesel-main-first) .product-hero-slide:nth-child(5) {
    background-size: auto 132% !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(7),
  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(8),
  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(9),
  #main .portable-hero-redesign .product-hero-slide,
  #main .gas-category-slideshow .product-hero-slide {
    background-size: auto 138% !important;
    background-position: right center !important;
  }

  #main .gas-category-slideshow .product-hero-slide:nth-child(2),
  #main .gas-category-slideshow .product-hero-slide:nth-child(4) {
    background-size: auto 125% !important;
    background-position: right 58% !important;
  }

  #main .gas-category-slideshow .product-hero-slide:nth-child(3) {
    background-size: auto 125% !important;
    background-position: right 68% !important;
  }

  /* Give the GE 7000 BBM-L more floor without changing its horizontal anchor. */
  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(8),
  #main .portable-hero-redesign .product-hero-slide:nth-child(5) {
    background-size: auto 125% !important;
    background-position: right 58% !important;
  }
}

/* Final laptop composition guard for extra-wide generator photos. */
@media (min-width: 1101px) and (max-width: 1599px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow .product-hero-slide.product-hero-slide {
    background-size: auto 120% !important;
    background-position-x: calc(100% + 96px) !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow .product-hero-slide.product-hero-slide[style*="product-slide-1-"] {
    background-position-x: calc(100% + 112px) !important;
  }

  .lp-hero--products-page-cycle .hero-action-label + .hero__actions {
    width: 100%;
    padding: 8px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .lp-hero--products-page-cycle .hero__actions .button {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

/*
 * Final laptop composition guard.
 * Some extra-wide generator photos (especially product-slide-1) reach much
 * farther left than the other slides. Keep their visible machinery beyond
 * the copy edge without changing the approved scale of the generator.
 */
@media (min-width: 1101px) and (max-width: 1599px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow .product-hero-slide.product-hero-slide {
    background-size: auto 120% !important;
    background-position-x: calc(100% + 96px) !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow .product-hero-slide.product-hero-slide[style*="product-slide-1-"] {
    background-position-x: calc(100% + 112px) !important;
  }

  .lp-hero--products-page-cycle .hero-action-label + .hero__actions {
    width: 100%;
    padding: 8px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .lp-hero--products-page-cycle .hero__actions .button {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

/*
 * Final laptop composition guard.
 * Some extra-wide generator photos (especially product-slide-1) reach much
 * farther left than the other slides. Keep their visible machinery beyond
 * the copy edge without changing the approved scale of the generator.
 */
@media (min-width: 1101px) and (max-width: 1599px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow .product-hero-slide.product-hero-slide {
    background-size: auto 120% !important;
    background-position-x: calc(100% + 96px) !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow .product-hero-slide.product-hero-slide[style*="product-slide-1-"] {
    background-position-x: calc(100% + 112px) !important;
  }

  .lp-hero--products-page-cycle .hero-action-label + .hero__actions {
    width: 100%;
    padding: 8px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .lp-hero--products-page-cycle .hero__actions .button {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

/*
 * Keep every rotating generator clear of the copy on 13- and 15-inch
 * laptops. Moving the existing composition preserves its approved scale.
 */
@media (min-width: 1101px) and (max-width: 1599px) {
  #main .lp-hero--product-slideshow .product-hero-slide {
    background-position-x: calc(100% + 48px) !important;
  }

  .lp-hero--products-page-cycle .hero-action-label + .hero__actions {
    width: 100%;
    padding: 8px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .lp-hero--products-page-cycle .hero__actions .button {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

/* Match diesel manufacturer slides to the Products and Company hero scale. */
@media (min-width: 721px) {
  #main .diesel-hero-redesign.brand-hero-slideshow .product-hero-slide {
    background-size: auto 138% !important;
    background-position: right center !important;
  }

  #main .diesel-hero-redesign.brand-hero-slideshow .product-hero-slide:nth-child(3),
  #main .diesel-hero-redesign.brand-hero-slideshow .product-hero-slide:nth-child(5) {
    background-size: auto 132% !important;
  }
}

/* Preserve the approved Slide 6 framing after all wide-screen rules. */
@media (min-width: 701px) {
  #main .lp-hero--product-slideshow .product-hero-slide[style*="product-slide-6"] {
    background-size: cover !important;
    background-position: right center !important;
  }
}

.contact-section--advice .contact-grid {
  position: relative;
  z-index: 2;
}

/* Contact uses an already dark source image: avoid stacking the base and shared hero overlays on desktop. */
@media (min-width: 1101px) {
  .contact-section--advice {
    background-image: url("../img/contact-technician-dse7320-small-emergency-scene.webp");
    background-size: auto 110%;
    background-position: right center;
    background-repeat: no-repeat;
  }

  .contact-section--advice::after {
    background:
      linear-gradient(90deg, #000103 0%, rgba(0, 1, 3, 0.96) 34%, rgba(0, 1, 3, 0.74) 46%, rgba(0, 1, 3, 0.36) 56%, rgba(0, 1, 3, 0.1) 64%, rgba(0, 1, 3, 0) 74%);
  }
}

/* Match portable product cutouts to the diesel/gas desktop image-to-copy distance. */
@media (min-width: 1101px) {
  [data-portable-product-page] .product-hero__image--photo {
    overflow: visible;
  }

  [data-portable-product-page] .product-hero__image--photo img {
    transform: scale(1.18);
    transform-origin: center center;
  }
}

/* Keep differently cropped option assets visually balanced after WebP conversion. */
.option-image img[src*="ethernet-webserver."],
.option-image img[src*="rs232-rs485-comap-new."],
.option-image img[src*="4g-gps-modem."] {
  width: auto;
  height: auto;
  max-width: 65%;
  max-height: 65%;
  object-position: center;
  transform: none;
}

.option-image img[src*="mains-generator-switch-full."] {
  width: auto;
  height: 300px;
  max-width: none;
  max-height: none;
  object-position: center;
  transform: none;
}

.option-image img[src*="anti-sand-filter."] {
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 82%;
  object-position: center;
  transform: none;
}

.option-image img[src*="special-colours."] {
  width: auto;
  height: 160px;
  max-width: none;
  max-height: none;
  object-position: center;
  transform: translateY(-8px);
}

.option-image img[src*="road-chassis."] {
  width: auto;
  height: auto;
  max-width: 84%;
  max-height: 84%;
  object-position: center;
  transform: none;
}

.option-image img[src*="slow-trailer"] {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  object-position: center;
  transform: none;
}

@media (min-width: 721px) {
  .option-image--ats {
    position: relative;
  }

  .option-image--ats img[src*="mains-generator-switch-full."] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 720px) {
  .option-image img[src*="ethernet-webserver."],
  .option-image img[src*="rs232-rs485-comap-new."],
  .option-image img[src*="4g-gps-modem."] {
    max-width: 74%;
    max-height: 74%;
  }

  .option-image img[src*="mains-generator-switch-full."] {
    height: 300px;
    max-width: none;
    max-height: none;
    transform: translateY(-80px);
  }

  .option-image img[src*="anti-sand-filter."] {
    max-width: 74%;
    max-height: 74%;
  }

  .option-image img[src*="special-colours."] {
    width: auto;
    height: 225px;
    max-width: none;
    max-height: none;
    transform: translateY(-22px);
  }

  .option-image img[src*="road-chassis."] {
    max-width: 88%;
    max-height: 88%;
  }

  .option-image img[src*="slow-trailer"] {
    max-width: 75.6%;
    max-height: 75.6%;
  }
}

/* Restore the larger Rehlko 6 S product framing after optimized WebP sources. */
@media (max-width: 1100px) {
  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-6-v2."] {
    width: 130%;
    max-width: none;
    transform: translateX(-12%);
  }
}

/* Optically center each Products-page generator on mobile without reducing its size. */
@media (max-width: 700px) {
  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(1),
  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(7) {
    background-position: right center !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(1) {
    background-size: 103% auto !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(2) {
    background-size: 111% auto !important;
    background-position: right center !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(3) {
    background-size: 107% auto !important;
    background-position: right center !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(4),
  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(6) {
    background-size: 108% auto !important;
    background-position: right center !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(5) {
    background-size: 120% auto !important;
    background-position: 71% center !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(7) {
    background-size: 104% auto !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(8) {
    background-size: 104% auto !important;
    background-position: right 90% !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(9) {
    background-size: 114% auto !important;
    background-position: right 90% !important;
  }
}

/* Reuse the approved Products-page mobile framing for both MOSA portable slides. */
@media (max-width: 700px) {
  #main .portable-hero-redesign .product-hero-slide:nth-child(5) {
    background-image: url("../img/portable-hero-slides/mobile/portable-slide-5-mobile-20260729.jpg") !important;
    background-size: 104% auto !important;
    background-position: right 90% !important;
  }

  #main .portable-hero-redesign .product-hero-slide:nth-child(6) {
    background-image: url("../img/portable-hero-slides/mobile/portable-slide-6-mobile-20260729.jpg") !important;
    background-size: 114% auto !important;
    background-position: right 90% !important;
  }
}

/* Keep the portable phase overview titles on two intentional lines. */
.lp-hero--product-slideshow .lp-hero__copy h1.portable-phase-hero-title {
  font-size: clamp(2.15rem, 3.65vw, 3.4rem);
}

.portable-phase-hero-title > span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .portable-hero-redesign .lp-hero__copy h1.portable-phase-hero-title {
    font-size: clamp(1.3rem, 6.75vw, 1.85rem);
    line-height: 1.05;
  }
}

/*
 * Prevent iOS Safari from retaining horizontal page overflow after pinch-zoom
 * on product pages that use the enlarged productbild-4 hero cutout.
 * The established image scale and position remain unchanged.
 */
@media (max-width: 700px) {
  [data-diesel-product-page] .controller-option-rail,
  [data-gas-product-page] .controller-option-rail,
  [data-diesel-product-page] .controller-matrix-shell,
  [data-gas-product-page] .controller-matrix-shell {
    scrollbar-width: none;
  }

  [data-diesel-product-page] .controller-option-rail::-webkit-scrollbar,
  [data-gas-product-page] .controller-option-rail::-webkit-scrollbar,
  [data-diesel-product-page] .controller-matrix-shell::-webkit-scrollbar,
  [data-gas-product-page] .controller-matrix-shell::-webkit-scrollbar {
    display: none;
  }

  [data-diesel-product-page] .controller-persistent-scrollbar,
  [data-gas-product-page] .controller-persistent-scrollbar {
    position: relative;
    display: block;
    height: 7px;
    margin: 8px 2px 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(16, 24, 32, 0.1);
    cursor: grab;
    touch-action: none;
  }

  [data-diesel-product-page] .controller-persistent-scrollbar[hidden],
  [data-gas-product-page] .controller-persistent-scrollbar[hidden] {
    display: none;
  }

  [data-diesel-product-page] .controller-persistent-scrollbar__thumb,
  [data-gas-product-page] .controller-persistent-scrollbar__thumb {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--controller-scrollbar-thumb-width, 50%);
    border-radius: inherit;
    background: rgba(92, 108, 120, 0.58);
    box-shadow: 0 0 0 1px rgba(16, 24, 32, 0.05);
    transform: translateX(var(--controller-scrollbar-thumb-x, 0px));
  }

  [data-diesel-product-page] .controller-persistent-scrollbar.is-dragging,
  [data-gas-product-page] .controller-persistent-scrollbar.is-dragging {
    cursor: grabbing;
  }

  .product-hero--image-productbild-4 {
    overflow: hidden;
  }
}

/*
 * Conversion CTA test:
 * - make the existing desktop header inquiry action moderately more prominent;
 * - add decision-point CTAs without changing the established page grids;
 * - show the floating action only when no existing inquiry action is visible.
 */
@media (min-width: 981px) {
  .main-nav .nav-cta {
    min-height: 42px;
    margin-left: 5px;
    padding: 11px 20px !important;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(213, 43, 30, 0.2);
  }

  .main-nav .nav-cta:hover,
  .main-nav .nav-cta:focus-visible {
    box-shadow: 0 13px 27px rgba(213, 43, 30, 0.27);
  }
}

.decision-inquiry-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 44px);
  margin-top: clamp(24px, 4vw, 42px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(213, 43, 30, 0.2);
  border-radius: 12px;
  background: linear-gradient(120deg, #fff 0%, #fff 72%, rgba(213, 43, 30, 0.06) 100%);
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.08);
}

.decision-inquiry-cta > div {
  min-width: 0;
}

.decision-inquiry-cta span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-inquiry-cta strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
  line-height: 1.25;
}

.decision-inquiry-cta p {
  max-width: 720px;
  margin: 7px 0 0;
  color: var(--muted);
}

.decision-inquiry-cta .button {
  flex: 0 0 auto;
  margin: 0;
  white-space: nowrap;
}

.contextual-inquiry-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 36px rgba(16, 24, 32, 0.24), 0 8px 24px rgba(213, 43, 30, 0.25);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.contextual-inquiry-cta b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.05rem;
}

.contextual-inquiry-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contextual-inquiry-cta:hover,
.contextual-inquiry-cta:focus-visible {
  background: var(--red-dark);
  color: #fff;
}

@media (max-width: 700px) {
  .decision-inquiry-cta {
    display: grid;
    gap: 18px;
    padding: 20px;
  }

  .decision-inquiry-cta .button {
    width: 100%;
    text-align: center;
  }

  .contextual-inquiry-cta {
    right: auto;
    left: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    min-height: 46px;
    max-width: calc(100vw - 24px);
    padding: 9px 10px 9px 16px;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contextual-inquiry-cta {
    transition: none;
  }
}

/*
 * Responsive sitewide hero frame.
 * Every non-home hero resolves to the same height within a desktop display
 * class. Compact laptop rules also keep copy and imagery in separate columns,
 * preventing calibrated product cutouts from entering the text area.
 */
@media (min-width: 1101px) {
  :root {
    --ggg-subhero-height: 650px;
    --ggg-subhero-title: 56px;
    --ggg-subhero-media-height: 380px;
    --ggg-subhero-gap: 44px;
  }

  .lp-hero--product-slideshow,
  .product-hero,
  .contact-section--advice {
    height: var(--ggg-subhero-height);
    min-height: var(--ggg-subhero-height);
    max-height: var(--ggg-subhero-height);
    padding-top: 22px;
    padding-bottom: 22px;
    overflow: hidden;
  }

  .lp-hero--product-slideshow .lp-hero__copy h1,
  [data-diesel-product-page] .product-hero .lp-hero__copy h1,
  [data-gas-product-page] .product-hero .lp-hero__copy h1,
  [data-portable-product-page] .product-hero .lp-hero__copy h1,
  .contact-section--advice .contact-title {
    font-size: var(--ggg-subhero-title);
  }

  .lp-hero__grid,
  .product-hero__grid {
    width: min(calc(100% - 40px), var(--max));
    min-width: 0;
    gap: var(--ggg-subhero-gap);
  }

  .lp-hero__copy,
  .product-hero__image,
  .product-hero__image--photo {
    min-width: 0;
  }

  [data-diesel-product-page] .product-hero__grid,
  [data-gas-product-page] .product-hero__grid,
  [data-portable-product-page] .product-hero__grid {
    grid-template-columns: minmax(0, 52%) minmax(0, 1fr);
    min-height: calc(var(--ggg-subhero-height) - 88px);
  }

  [data-diesel-product-page] .product-hero__image--photo,
  [data-gas-product-page] .product-hero__image--photo,
  [data-portable-product-page] .product-hero__image--photo {
    width: 100%;
    height: var(--ggg-subhero-media-height);
    overflow: hidden;
  }

  [data-diesel-product-page] .product-hero__image--photo img,
  [data-gas-product-page] .product-hero__image--photo img,
  [data-portable-product-page] .product-hero__image--photo img {
    height: var(--ggg-subhero-media-height);
    max-height: var(--ggg-subhero-media-height);
  }
}

@media (min-width: 1101px) and (max-width: 1366px) {
  :root {
    --ggg-subhero-height: 600px;
    --ggg-subhero-title: 48px;
    --ggg-subhero-media-height: 330px;
    --ggg-subhero-gap: 32px;
  }

  .lp-hero--product-slideshow,
  .product-hero,
  .contact-section--advice {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .lp-hero--product-slideshow .lp-hero__grid {
    width: min(calc(100% - 40px), var(--max));
  }

  .lp-hero--product-slideshow .lp-hero__copy {
    max-width: 600px;
  }

  .lp-hero--product-slideshow .lp-hero__copy h1 {
    font-size: 42px;
  }

  #main .lp-hero--product-slideshow .product-hero-slide {
    background-size: auto 112% !important;
    background-position: right center !important;
  }

  #main .diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .product-hero-slide--diesel-main-first {
    background-size: auto 100% !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide {
    background-size: auto 120% !important;
  }

  [data-diesel-product-page] .product-hero__grid,
  [data-gas-product-page] .product-hero__grid,
  [data-portable-product-page] .product-hero__grid {
    grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
    min-height: calc(var(--ggg-subhero-height) - 72px);
  }

  .product-hero .lp-hero__copy p,
  .lp-hero--product-slideshow .diesel-hero-lead {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .product-hero .product-facts {
    gap: 8px;
    margin-top: 18px;
  }

  .product-hero .product-facts div {
    min-height: 88px;
    padding: 16px 12px;
  }

  .product-hero .product-facts dt {
    font-size: 0.8rem;
  }

  .product-hero .product-facts dd,
  .product-hero .product-facts div:nth-child(-n + 2) dd {
    font-size: 1.08rem;
  }

  .lp-hero--product-slideshow .diesel-hero-metrics {
    margin-top: 14px;
    margin-bottom: 16px;
  }

  .contact-section--advice {
    background-size: auto 98%;
    background-position: right center;
  }
}

@media (min-width: 1600px) and (min-height: 900px) {
  :root {
    --ggg-subhero-height: 690px;
    --ggg-subhero-title: 64px;
    --ggg-subhero-media-height: 420px;
    --ggg-subhero-gap: 56px;
  }
}

@media (min-width: 1101px) and (max-height: 760px) {
  :root {
    --ggg-subhero-height: 590px;
    --ggg-subhero-title: 44px;
    --ggg-subhero-media-height: 310px;
    --ggg-subhero-gap: 28px;
  }

  .product-hero .product-facts div {
    min-height: 82px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .lp-hero--product-slideshow .lp-hero__copy h1 {
    margin-bottom: 12px;
    font-size: var(--ggg-subhero-title);
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .crumbs,
  .lp-hero--product-slideshow.gas-category-slideshow .crumbs,
  .lp-hero--product-slideshow.portable-hero-redesign .crumbs {
    margin-bottom: 8px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-kicker,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-kicker,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-kicker {
    margin-bottom: 8px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-lead,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-lead,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-lead {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-metrics,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-metrics,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-metrics {
    margin-top: 10px;
    margin-bottom: 12px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-metric__icon,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-metric__icon,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-metric__icon {
    width: 28px;
    height: 28px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-metrics strong,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-metrics strong,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-metrics strong {
    margin-top: 7px;
    font-size: 0.9rem;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-metrics span:not(.diesel-hero-metric__icon),
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-metrics span:not(.diesel-hero-metric__icon),
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-metrics span:not(.diesel-hero-metric__icon) {
    font-size: 0.78rem;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign .diesel-hero-actions .button,
  .lp-hero--product-slideshow.gas-category-slideshow .diesel-hero-actions .button,
  .lp-hero--product-slideshow.portable-hero-redesign .diesel-hero-actions .button {
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/*
 * Compact and medium laptop heroes (including 13-inch displays at
 * 1440/1512 CSS pixels). Keep the full copy zone opaque and start the visible
 * imagery only after it. Home has its own responsive system and is excluded.
 */
@media (min-width: 1101px) and (max-width: 1599px) {
  .lp-hero--product-slideshow .lp-hero__grid {
    width: min(calc(100% - 40px), var(--max));
  }

  .lp-hero--product-slideshow .lp-hero__copy {
    width: min(44vw, 560px);
    max-width: min(44vw, 560px);
  }

  .lp-hero--product-slideshow .lp-hero__copy h1 {
    font-size: var(--ggg-subhero-title);
  }

  .lp-hero--product-slideshow::after,
  .lp-hero--product-slideshow.diesel-hero-redesign::after,
  .lp-hero--product-slideshow.gas-category-slideshow::after,
  .lp-hero--product-slideshow.portable-hero-redesign::after {
    background:
      linear-gradient(
        90deg,
        #000103 0%,
        #000103 38%,
        rgba(0, 1, 3, 0.98) 41%,
        rgba(0, 1, 3, 0.7) 44%,
        rgba(0, 1, 3, 0.28) 46%,
        rgba(0, 1, 3, 0) 48%
      ),
      linear-gradient(
        180deg,
        rgba(0, 2, 5, 0.22) 0%,
        rgba(5, 10, 16, 0.035) 46%,
        rgba(5, 10, 16, 0.055) 100%
      );
  }

  #main .lp-hero--product-slideshow .product-hero-slide {
    background-size: auto 112% !important;
    background-position: right center !important;
  }

  #main .diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .product-hero-slide--diesel-main-first {
    background-size: auto 103% !important;
  }

  #main .lp-hero--products-page-cycle .product-hero-slide {
    background-size: auto 120% !important;
  }
}

/*
 * Standard and large desktops retain the centered site container. Their
 * softer transition ends before the visible generator instead of tinting it.
 */
@media (min-width: 1600px) {
  /*
   * Product detail images already fit their media column via object-fit.
   * Historic per-asset offsets can push them beneath the clipping edge on
   * wide displays, so keep the complete generator centered at this tier.
   */
  [data-diesel-product-page] .product-hero__image--photo,
  [data-gas-product-page] .product-hero__image--photo {
    overflow: visible;
  }

  [data-diesel-product-page] .product-hero__image--photo img,
  [data-gas-product-page] .product-hero__image--photo img {
    transform: none !important;
  }

  .lp-hero--product-slideshow .lp-hero__grid {
    width: min(calc(100% - 40px), var(--max));
  }

  .lp-hero--product-slideshow .lp-hero__copy {
    width: min(100%, 700px);
    max-width: 700px;
  }

  .lp-hero--product-slideshow::after,
  .lp-hero--product-slideshow.diesel-hero-redesign::after,
  .lp-hero--product-slideshow.gas-category-slideshow::after,
  .lp-hero--product-slideshow.portable-hero-redesign::after {
    background:
      linear-gradient(
        90deg,
        #000103 0%,
        #000103 36%,
        rgba(0, 1, 3, 0.98) 40%,
        rgba(0, 1, 3, 0.7) 45%,
        rgba(0, 1, 3, 0.28) 50%,
        rgba(0, 1, 3, 0) 55%
      ),
      linear-gradient(
        180deg,
        rgba(0, 2, 5, 0.22) 0%,
        rgba(5, 10, 16, 0.035) 46%,
        rgba(5, 10, 16, 0.055) 100%
      );
  }
}

/* Final, isolated 15-inch laptop composition (large desktops start at 1920px). */
@media (min-width: 1600px) and (max-width: 1919px) {
  :root {
    --ggg-subhero-height: 650px;
    --ggg-subhero-title: 56px;
    --ggg-subhero-media-height: 390px;
    --ggg-subhero-gap: 44px;
  }

  .lp-hero--product-slideshow .lp-hero__copy {
    width: min(44vw, 600px);
    max-width: min(44vw, 600px);
  }

  .lp-hero--product-slideshow::after,
  .lp-hero--product-slideshow.diesel-hero-redesign::after,
  .lp-hero--product-slideshow.gas-category-slideshow::after,
  .lp-hero--product-slideshow.portable-hero-redesign::after {
    background:
      linear-gradient(
        90deg,
        #000103 0%,
        #000103 38%,
        rgba(0, 1, 3, 0.98) 41%,
        rgba(0, 1, 3, 0.7) 44%,
        rgba(0, 1, 3, 0.28) 46%,
        rgba(0, 1, 3, 0) 48%
      ),
      linear-gradient(
        180deg,
        rgba(0, 2, 5, 0.22) 0%,
        rgba(5, 10, 16, 0.035) 46%,
        rgba(5, 10, 16, 0.055) 100%
      );
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slide.product-hero-slide {
    background-size: auto 112% !important;
    background-position: right center !important;
  }
}

/* Contact intro: intentional two-line composition on laptops and desktops. */
@media (min-width: 1101px) {
  .contact-intro-line {
    display: block;
    white-space: nowrap;
  }
}

/*
 * Final 13-inch slideshow image guard.
 * Use the approved Products-page framing on every rotating subpage hero.
 * The range is deliberately isolated so 15-inch, large-desktop and mobile
 * compositions keep their existing calibration.
 */
@media (min-width: 1101px) and (max-width: 1599px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slide.product-hero-slide[style] {
    background-size: auto 112% !important;
    background-position: right center !important;
  }
}

/*
 * Manufacturer heroes: keep complete power ranges such as "10-2500 kVA"
 * together on every viewport. Type metrics and hero dimensions stay intact.
 */
.brand-hero-slideshow .hero-title-range {
  white-space: nowrap;
}

/*
 * Manufacturer and MOSA phase heroes:
 * The breadcrumb already supplies the page context, so the additional line
 * above the title is hidden without changing any hero dimensions.
 */
.brand-hero-slideshow .lp-hero__copy > .eyebrow,
.gas-category-slideshow .lp-hero__copy > .eyebrow {
  display: none;
}

/*
 * Isolated 13-inch product-detail correction. Historic per-image offsets
 * created a large gap to the copy and clipped the generator at the left edge.
 */
@media (min-width: 1101px) and (max-width: 1599px) {
  [data-diesel-product-page] .product-hero__image--photo,
  [data-gas-product-page] .product-hero__image--photo {
    overflow: visible;
  }

  [data-diesel-product-page] .product-hero__image--photo img,
  [data-gas-product-page] .product-hero__image--photo img {
    transform: none !important;
  }
}

/*
 * Product-detail imagery on 13-inch laptops only. The media frame grows
 * without scaling or cropping the transparent generator image; contain keeps
 * every machine fully visible. Compact-height laptops remain a separate tier.
 */
@media (min-width: 1101px) and (max-width: 1366px) {
  [data-diesel-product-page] .product-hero,
  [data-gas-product-page] .product-hero {
    --ggg-subhero-media-height: 355px;
  }
}

@media (min-width: 1101px) and (max-width: 1366px) and (max-height: 760px) {
  [data-diesel-product-page] .product-hero,
  [data-gas-product-page] .product-hero {
    --ggg-subhero-media-height: 335px;
  }
}

/*
 * Products landing hero: keep each laptop class isolated. On 13-inch
 * viewports the former 120% zoom plus a positive x-offset clipped the
 * generator; the approved 15-inch composition shows the complete machine.
 */
@media (min-width: 1101px) and (max-width: 1599px) {
  #main .lp-hero--products-page-cycle.lp-hero--products-page-cycle
    .product-hero-slide.product-hero-slide[style] {
    background-size: auto 112% !important;
    background-position: right center !important;
  }

  .lp-hero--products-page-cycle .hero-action-label + .hero__actions {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    width: max-content;
    max-width: 100%;
    padding: 8px;
    gap: 8px;
  }

  .lp-hero--products-page-cycle .hero__actions .button {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

/* 15-inch laptops retain their approved hero image and get only the compact row. */
@media (min-width: 1600px) and (max-width: 1919px) {
  .lp-hero--products-page-cycle .hero-action-label + .hero__actions {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    width: max-content;
    max-width: 100%;
    padding: 8px;
    gap: 8px;
  }

  .lp-hero--products-page-cycle .hero__actions .button {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

/* Product detail fit title: one line on larger screens, intentional split on mobile. */
.product-fit-title {
  white-space: nowrap;
}

.product-fit-title__model,
.product-fit-title__separator,
.product-fit-title__version {
  display: inline;
}

@media (max-width: 767px) {
  .product-fit-title {
    white-space: normal;
  }

  .product-fit-title__model,
  .product-fit-title__version {
    display: block;
  }

  .product-fit-title__separator {
    display: none;
  }
}


/* Load only the visible first hero slide during the critical rendering path. */
.product-hero-slides.is-load-staged .product-hero-slide {
  animation-play-state: paused !important;
}

.product-hero-slides.is-load-staged .product-hero-slide:not(:first-child) {
  background-image: none !important;
}

/*
 * JavaScript-controlled hero cycle. CSS keyframes remain available as the
 * no-script fallback, while the live controller can recover from browser
 * zoom, breakpoint changes, rotation and page lifecycle interruptions.
 */
.product-hero-slides.is-js-controlled .product-hero-slide {
  animation: none !important;
  opacity: 0;
  z-index: 0;
  transition: opacity 950ms ease;
  will-change: auto;
}

.product-hero-slides.is-js-controlled .product-hero-slide.is-active {
  opacity: 1 !important;
  z-index: 2;
  will-change: opacity;
}

.product-hero-slides.is-js-controlled .product-hero-slide.is-previous {
  opacity: 1 !important;
  z-index: 1;
  transition: none;
  will-change: opacity;
}

.product-hero-slides.is-js-controlled.is-viewport-refreshing .product-hero-slide.is-active {
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .product-hero-slides.is-js-controlled .product-hero-slide {
    transition: none;
  }
}

/*
 * 20260723 editorial reference heights for the unified home hero frame.
 */
@media (max-width: 700px) {
  #main > .lp-hero--editorial-slideshow {
    height: clamp(800px, calc(1245px - 64vw), 1000px);
    min-height: clamp(800px, calc(1245px - 64vw), 1000px);
    max-height: clamp(800px, calc(1245px - 64vw), 1000px);
  }
}

/*
 * Company, Service and References: make only the previously smaller mobile
 * hero frames more present. Slides 3, 5 and 6 already use the approved 132%
 * crop and therefore remain untouched. Tablet and larger are unchanged.
 */
@media (max-width: 700px) {
  #main .lp-hero--editorial-slideshow .product-hero-slide:nth-child(1) {
    background-size: 106% auto !important;
    background-position: center center !important;
  }

  #main .lp-hero--editorial-slideshow .product-hero-slide:nth-child(2) {
    background-size: 111% auto !important;
    background-position: center center !important;
  }

  #main .lp-hero--editorial-slideshow .product-hero-slide:nth-child(4) {
    background-size: 108% auto !important;
    background-position: center center !important;
  }

  /* Match the first Products and Diesel frames to the approved 106% editorial frame. */
  #main .lp-hero--products-page-cycle .product-hero-slide:nth-child(1),
  #main .diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .product-hero-slide--diesel-main-first {
    background-size: 106% auto !important;
    background-position: center center !important;
  }
}

@media (max-width: 350px) {
  #main > .lp-hero--editorial-slideshow {
    height: 1080px;
    min-height: 1080px;
    max-height: 1080px;
  }
}

@media (min-width: 701px) and (max-width: 720px) {
  #main > .lp-hero--editorial-slideshow {
    height: 865px;
    min-height: 865px;
    max-height: 865px;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  #main > .lp-hero--editorial-slideshow {
    height: 610px;
    min-height: 610px;
    max-height: 610px;
  }
}

@media (min-width: 1101px) and (max-width: 1366px) {
  #main > .lp-hero--editorial-slideshow {
    height: 600px;
    min-height: 600px;
    max-height: 600px;
  }
}

@media (min-width: 1367px) {
  #main > .lp-hero--editorial-slideshow {
    height: 650px;
    min-height: 650px;
    max-height: 650px;
  }
}

@media (min-width: 1920px) and (min-height: 900px) {
  #main > .lp-hero--editorial-slideshow {
    height: 690px;
    min-height: 690px;
    max-height: 690px;
  }
}

@media (min-width: 1101px) and (max-height: 760px) {
  #main > .lp-hero--editorial-slideshow {
    height: 590px;
    min-height: 590px;
    max-height: 590px;
  }
}

/*
 * Windows 1920x1200 displays can expose either a scaled 1280-1536px viewport
 * or the native 1920px width. Keep the three wide generator motifs clear of
 * the copy safety zone without changing text, hero height or other slides.
 */
@media (min-width: 1101px) and (max-width: 1599px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slide.product-hero-slide[style*="product-slide-1-20260729"],
  #main .gas-category-slideshow.gas-category-slideshow
    .product-hero-slide.product-hero-slide:nth-child(1),
  #main .gas-category-slideshow.gas-category-slideshow
    .product-hero-slide.product-hero-slide:nth-child(5) {
    background-size: auto 100% !important;
    background-position: right center !important;
  }
}

@media (min-width: 1600px) and (max-width: 2399px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slide.product-hero-slide[style*="product-slide-1-20260729"],
  #main .gas-category-slideshow.gas-category-slideshow
    .product-hero-slide.product-hero-slide:nth-child(1),
  #main .gas-category-slideshow.gas-category-slideshow
    .product-hero-slide.product-hero-slide:nth-child(5) {
    background-size: auto 112% !important;
    background-position: right center !important;
  }
}


/* 20260725 compact-laptop product breadcrumbs */
@media (min-width: 1101px) and (max-width: 1279px) {
  [data-diesel-product-page] .product-hero .crumbs,
  [data-gas-product-page] .product-hero .crumbs,
  [data-portable-product-page] .product-hero .crumbs {
    flex-wrap: wrap;
    row-gap: 4px;
    white-space: normal;
  }
}

/*
 * Product detail hero background contrast:
 * lift the image side to a restrained steel grey so dark generator parts stay
 * legible, while keeping the copy side dark and the existing diagonal/blue
 * background details visible. Hero geometry and product-image calibration are
 * intentionally unchanged.
 */
@media (min-width: 1101px) {
  .product-hero--diesel-bg-test,
  .product-hero--portable-bg {
    background:
      radial-gradient(ellipse at 24% 50%, rgba(229, 234, 237, 0.22) 0%, rgba(180, 190, 197, 0.15) 35%, rgba(100, 115, 126, 0.05) 55%, rgba(30, 43, 55, 0) 70%),
      linear-gradient(90deg, rgba(125, 139, 149, 0.76) 0%, rgba(98, 113, 124, 0.66) 40%, rgba(25, 39, 51, 0.72) 58%, rgba(5, 10, 17, 0.91) 100%),
      url("../img/product-subpage-hero-bg-optimized.webp") center center / cover no-repeat;
    background-color: #52616c;
  }

  .product-hero--diesel-bg-test::after,
  .product-hero--portable-bg::after {
    background:
      linear-gradient(90deg, rgba(5, 12, 19, 0.04) 0%, rgba(6, 14, 22, 0.10) 40%, rgba(7, 15, 24, 0.58) 57%, rgba(5, 11, 18, 0.92) 72%, rgba(3, 8, 14, 0.97) 100%),
      linear-gradient(180deg, rgba(0, 2, 5, 0.14) 0%, rgba(5, 10, 16, 0.02) 46%, rgba(5, 10, 16, 0.08) 100%);
  }
}

@media (max-width: 1100px) {
  .product-hero--diesel-bg-test,
  .product-hero--portable-bg {
    background:
      radial-gradient(ellipse at 50% 78%, rgba(229, 234, 237, 0.20) 0%, rgba(176, 187, 194, 0.14) 36%, rgba(92, 107, 118, 0.04) 55%, rgba(23, 35, 46, 0) 68%),
      linear-gradient(180deg, rgba(5, 10, 17, 0.92) 0%, rgba(18, 31, 43, 0.79) 48%, rgba(94, 109, 120, 0.62) 66%, rgba(125, 139, 149, 0.74) 100%),
      url("../img/product-subpage-hero-bg-optimized.webp") 50% 58% / cover no-repeat;
    background-color: #52616c;
  }

  .product-hero--diesel-bg-test::after,
  .product-hero--portable-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(3, 8, 14, 0.97) 0%, rgba(4, 10, 17, 0.94) 38%, rgba(7, 15, 24, 0.70) 55%, rgba(6, 14, 22, 0.10) 74%, rgba(5, 12, 19, 0.03) 100%);
  }
}

/*
 * Diesel category hero only: keep the four desktop/tablet metric columns and
 * the two mobile columns geometrically equal. The engine-brand headline must
 * remain on one line inside its own column at every supported viewport width.
 */
.lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
  .diesel-hero-metrics {
  width: 100%;
  grid-auto-columns: minmax(0, 1fr);
}

.lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
  .diesel-hero-metrics article,
.lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
  .diesel-hero-metrics article:first-child,
.lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
  .diesel-hero-metrics article:nth-child(odd),
.lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
  .diesel-hero-metrics article:nth-child(even) {
  padding-right: 6px;
  padding-left: 6px;
}

.lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
  .diesel-hero-metrics article:nth-child(2) strong {
  max-width: 100%;
  font-size: clamp(0.94rem, 1.1vw, 1.05rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
  .diesel-hero-metrics article:nth-child(2) {
  padding-right: 2px;
  padding-left: 2px;
}

/* Desktop diesel category hero: keep the engine-brand count comfortably
   readable without changing the equal metric columns or allowing a wrap. */
@media (min-width: 1280px) {
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:nth-child(2) strong {
    letter-spacing: 0.005em;
    word-spacing: 0.12em;
  }
}

@media (min-width: 1280px) and (max-width: 1919px) {
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics {
    width: calc(100% + 40px);
  }

  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:nth-child(2) strong {
    font-size: 0.95rem;
    letter-spacing: 0;
    word-spacing: 0.08em;
  }
}

/* Mobile manufacturer comparison: give the right-aligned engine logo a
   little more breathing room below the title without affecting other sizes. */
@media (max-width: 760px) {
  .section-heading--brand-overview {
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article,
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:first-child,
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:nth-child(odd),
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:nth-child(even) {
    padding-right: 5px;
    padding-left: 5px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:nth-child(2) strong {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:nth-child(2) {
    padding-right: 2px;
    padding-left: 2px;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:nth-child(2) strong {
    font-size: clamp(0.9rem, 1.55vw, 1.02rem);
    letter-spacing: -0.03em;
  }
}

/*
 * Portable product-detail heroes: the source cutouts are substantially more
 * square than the diesel and gas images. Align the contained cutout with the
 * copy-side edge of its existing media column instead of centering it inside
 * a wide box. Scaling from that same edge keeps the approved safety gap intact
 * and prevents the product from entering the text column.
 */
@media (min-width: 1101px) {
  [data-portable-product-page] .product-hero__image--photo {
    overflow: visible;
  }

  [data-portable-product-page] .product-hero__image--photo img {
    width: 100%;
    max-width: 100%;
    object-position: right center;
    transform: scale(1.18);
    transform-origin: right center;
  }
}

/* Compact laptop viewports need a little more image height than the wider
   laptop classes; hero height, copy column and neighbouring breakpoints stay
   unchanged. */
@media (min-width: 1101px) and (max-width: 1366px) {
  [data-portable-product-page] .product-hero {
    --ggg-subhero-media-height: 370px;
  }
}

/*
 * Diesel and gas category hero metrics: keep every complete word inside its
 * own column on tablet landscape and laptop viewports. The four-column grid,
 * hero height, copy width and calibrated imagery remain unchanged.
 */
@media (min-width: 1101px) {
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.portable-hero-redesign)
    .diesel-hero-metrics article {
    padding-right: 6px;
    padding-left: 6px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign:not(.portable-hero-redesign)
    .diesel-hero-metrics article:first-child {
    padding-left: 0;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign:not(.portable-hero-redesign)
    .diesel-hero-metrics strong,
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.portable-hero-redesign)
    .diesel-hero-metrics span:not(.diesel-hero-metric__icon) {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

@media (min-width: 1101px) and (max-width: 1279px) {
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.portable-hero-redesign)
    .diesel-hero-metrics article {
    padding-right: 3px;
    padding-left: 3px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign:not(.portable-hero-redesign)
    .diesel-hero-metrics article:first-child {
    padding-left: 0;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign:not(.portable-hero-redesign)
    .diesel-hero-metrics strong {
    font-size: 0.9rem;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign:not(.portable-hero-redesign)
    .diesel-hero-metrics span:not(.diesel-hero-metric__icon) {
    font-size: 0.78rem;
  }
}

/* Final compact-laptop precedence for the single-line diesel brand count. */
@media (min-width: 1101px) and (max-width: 1279px) {
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article,
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:first-child,
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:nth-child(odd),
  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:nth-child(even) {
    padding-right: 3px;
    padding-left: 3px;
  }

  .lp-hero--product-slideshow.diesel-hero-redesign:not(.gas-category-slideshow):not(.portable-hero-redesign)
    .diesel-hero-metrics article:nth-child(2) strong {
    font-size: clamp(0.9rem, 1.25vw, 1rem);
    letter-spacing: -0.03em;
  }
}

/* Final tablet precedence: image first, copy second. */
@media (min-width: 701px) and (max-width: 1100px) {
  .product-hero--diesel-bg-test,
  .product-hero--portable-bg {
    background:
      radial-gradient(ellipse at 50% 24%, rgba(229, 234, 237, 0.20) 0%, rgba(176, 187, 194, 0.14) 36%, rgba(92, 107, 118, 0.04) 55%, rgba(23, 35, 46, 0) 68%),
      linear-gradient(180deg, rgba(125, 139, 149, 0.74) 0%, rgba(94, 109, 120, 0.62) 38%, rgba(18, 31, 43, 0.79) 59%, rgba(5, 10, 17, 0.92) 100%),
      url("../img/product-subpage-hero-bg-optimized.webp") 50% 58% / cover no-repeat;
    background-color: #52616c;
  }

  .product-hero--diesel-bg-test::after,
  .product-hero--portable-bg::after {
    background:
      linear-gradient(180deg, rgba(5, 12, 19, 0.03) 0%, rgba(6, 14, 22, 0.10) 38%, rgba(7, 15, 24, 0.70) 57%, rgba(4, 10, 17, 0.94) 72%, rgba(3, 8, 14, 0.97) 100%);
  }
}

/*
 * Compact silent-generator cutout shared by Perkins 16 S and related models.
 * Its transparent canvas is visually taller than the Perkins 44 S reference,
 * so reduce only the rendered silhouette while preserving every hero frame.
 */
[data-diesel-product-page]
  .product-hero__image--photo img[src*="t55-s-st-v1."] {
  transform: scale(0.95) !important;
  transform-origin: center center;
}

@media (min-width: 721px) and (max-width: 1100px) {
  [data-diesel-product-page]
    .product-hero__image--photo img[src*="t55-s-st-v1."] {
    transform: scale(0.98) !important;
  }
}

@media (max-width: 720px) {
  [data-diesel-product-page]
    .product-hero__image--photo img[src*="t55-s-st-v1."] {
    transform: translateX(-3%) scale(0.95) !important;
  }
}

/*
 * Compact open-generator cutout shared by Perkins 11 O and related models.
 * Its almost square transparent canvas makes the visible generator smaller
 * and farther from the copy than the silent-generator references. Correct
 * only side-by-side hero layouts; stacked tablet/mobile spacing stays intact.
 */
@media (min-width: 1101px) {
  :is([data-diesel-product-page], [data-gas-product-page])
    .product-hero__image--photo img[src*="productbild-4."] {
    transform: translateX(3%) scale(1.08) !important;
    transform-origin: center center;
  }
}

/* Make every model-comparison filter bar immediately recognizable while
   preserving its existing responsive grid and filtering behavior. */
.catalog-controls {
  isolation: isolate;
  margin: 12px 0 8px;
  padding: 52px 20px 20px;
  border: 1.5px solid rgba(74, 87, 98, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #eef2f5 0%, #e5eaee 100%);
  box-shadow:
    0 18px 42px rgba(16, 24, 32, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.catalog-controls::before {
  inset: 0 0 auto;
  width: auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red-dark), var(--red) 58%, #f16b61);
}

.catalog-controls::after {
  content: "Modelle filtern";
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 20px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

html[lang="en"] .catalog-controls::after {
  content: "Filter models";
}

.catalog-controls label {
  border-color: rgba(74, 87, 98, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 5px 14px rgba(16, 24, 32, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.catalog-controls label:hover {
  border-color: rgba(74, 87, 98, 0.4);
  background: #fff;
}

.catalog-controls label:focus-within {
  border-color: rgba(210, 48, 39, 0.72);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(210, 48, 39, 0.12),
    0 10px 22px rgba(16, 24, 32, 0.1);
  transform: translateY(-1px);
}

.catalog-controls input,
.catalog-controls select {
  min-height: 48px;
  border-color: rgba(74, 87, 98, 0.54);
  background-color: #fff;
  box-shadow:
    0 4px 12px rgba(16, 24, 32, 0.07),
    inset 0 1px 1px rgba(16, 24, 32, 0.02);
}

.catalog-controls input:hover,
.catalog-controls select:hover {
  border-color: rgba(16, 24, 32, 0.72);
}

.catalog-controls label:has(input[type="search"]:not(:placeholder-shown)),
.catalog-controls label:has(select option:checked:not([value="all"]):not([value=""])) {
  border-color: rgba(210, 48, 39, 0.56);
  background: linear-gradient(180deg, #fff, #fff6f4);
}

@media (max-width: 720px) {
  .catalog-controls {
    padding: 50px 15px 15px;
    border-radius: 14px;
  }

  .catalog-controls::after {
    top: 16px;
    left: 15px;
  }
}

/*
 * Products hero CTA invariant: never allow an accidental 2+1 button wrap.
 * Mobile keeps the intentional full-width stack; tablet and larger always
 * retain one compact row. Button labels and numeric tokens never split.
 */
.lp-hero--products-page-cycle .hero__actions .button {
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

@media (max-width: 559px) {
  .lp-hero--products-page-cycle .hero-action-label + .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 560px) {
  .lp-hero--products-page-cycle .hero-action-label + .hero__actions {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    width: max-content;
    max-width: 100%;
    padding: 8px;
    gap: clamp(6px, 0.7vw, 10px);
    flex-wrap: nowrap;
  }

  .lp-hero--products-page-cycle .hero__actions .button {
    min-width: 0;
    padding-right: clamp(10px, 1vw, 14px);
    padding-left: clamp(10px, 1vw, 14px);
    font-size: clamp(0.72rem, 0.75vw, 0.82rem);
  }
}

/*
 * Engine-brand signature: a restrained industrial label below every engine
 * logo on product cards and in manufacturer model comparisons.
 */
.catalog-card__brand-logo {
  grid-template-rows: minmax(0, 46px) 9px;
  row-gap: 1px;
  height: 58px;
  bottom: 8px;
  overflow: visible;
}

.catalog-card__brand-logo::after,
.brand-overview-logos::after {
  content: "Powered by";
  display: block;
  color: #8b949c;
  font-family: Inter, Arial, sans-serif;
  font-style: italic;
  font-synthesis: style;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
  text-align: center;
  white-space: nowrap;
  transform: skewX(-9deg);
  transform-origin: center;
}

.catalog-card__brand-logo::after {
  align-self: end;
  font-size: 0.48rem;
}

.brand-overview-logos {
  flex-direction: column;
  gap: 5px;
}

.brand-overview-logos::after {
  font-size: 0.58rem;
}

/* Keep the signature centred on the rendered logo, not on a fixed logo slot. */
.catalog-card__brand-logo {
  width: fit-content;
  min-width: max-content;
  justify-items: center;
}

.brand-overview-logos {
  align-items: center;
  width: fit-content;
  max-width: 100%;
}

/*
 * 20260729 responsive hero-slide sources.
 * Desktop keeps the established right-side composition and copy-safe gradient.
 * Phones use dedicated portrait images centred within the complete image frame.
 */
@media (max-width: 720px) {
  #main .gas-category-slideshow .product-hero-slide:nth-child(1) {
    background-image: url("../img/gas-hero-slides/mobile/gas-slide-1-mobile-white-refresh-20260729.jpg") !important;
  }

  #main .gas-category-slideshow .product-hero-slide:nth-child(2) {
    background-image: url("../img/gas-hero-slides/mobile/gas-slide-2-mobile-20260729.jpg") !important;
  }

  #main .gas-category-slideshow .product-hero-slide:nth-child(3) {
    background-image: url("../img/gas-hero-slides/mobile/gas-slide-3-mobile-white-refresh-20260729.jpg") !important;
  }

  #main .gas-category-slideshow .product-hero-slide:nth-child(4) {
    background-image: url("../img/gas-hero-slides/mobile/gas-slide-4-mobile-20260729.jpg") !important;
  }

  #main .gas-category-slideshow .product-hero-slide:nth-child(5) {
    background-image: url("../img/gas-hero-slides/mobile/gas-slide-5-mobile-white-refresh-20260729.jpg") !important;
  }

  #main .portable-hero-redesign .product-hero-slide:nth-child(1) {
    background-image: url("../img/portable-hero-slides/mobile/portable-slide-1-mobile-20260729.jpg") !important;
  }

  #main .portable-hero-redesign .product-hero-slide:nth-child(2) {
    background-image: url("../img/portable-hero-slides/mobile/portable-slide-2-mobile-20260729.jpg") !important;
  }

  #main .portable-hero-redesign .product-hero-slide:nth-child(3) {
    background-image: url("../img/portable-hero-slides/mobile/portable-slide-3-mobile-20260729.jpg") !important;
  }

  #main .portable-hero-redesign .product-hero-slide:nth-child(4) {
    background-image: url("../img/portable-hero-slides/mobile/portable-slide-4-mobile-20260729.jpg") !important;
  }

  #main .portable-hero-redesign .product-hero-slide:nth-child(5) {
    background-image: url("../img/portable-hero-slides/mobile/portable-slide-5-mobile-20260729.jpg") !important;
  }

  #main .portable-hero-redesign .product-hero-slide:nth-child(6) {
    background-image: url("../img/portable-hero-slides/mobile/portable-slide-6-mobile-20260729.jpg") !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide[style*="-20260729"] {
    background-size: cover !important;
    background-position: center center !important;
  }
}

/*
 * Portrait and compact tablets keep the full generator beside a dedicated
 * copy column. This prevents machinery from sitting behind hero text without
 * changing the established hero height or either neighbouring breakpoint.
 */
@media (min-width: 721px) and (max-width: 1100px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide[style*="-20260729"] {
    background-size: 100% auto !important;
    background-position: right center !important;
  }

  #main .lp-hero--product-slideshow .lp-hero__grid {
    grid-template-columns: minmax(0, 47%);
  }

  #main .lp-hero--product-slideshow .lp-hero__copy {
    width: 100%;
    max-width: 100%;
  }

  #main .lp-hero--product-slideshow .lp-hero__copy h1 {
    font-size: clamp(34px, 4.7vw, 42px);
    line-height: 1.04;
  }

  #main .lp-hero--product-slideshow .lp-hero__copy > p {
    font-size: clamp(15px, 1.9vw, 17px);
    line-height: 1.46;
  }

  #main .lp-hero--products-page-cycle .hero-action-label + .hero__actions {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }

  #main .lp-hero--products-page-cycle .hero__actions .button {
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.72rem;
  }
}

/* Preserve the approved cross-slide scale instead of inheriting old motif zooms. */
@media (min-width: 1101px) and (max-width: 1599px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide[style*="-20260729"] {
    background-size: auto 100% !important;
    background-position: right center !important;
  }
}

@media (min-width: 1600px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide[style*="-20260729"] {
    background-size: auto 100% !important;
    background-position: right center !important;
  }
}

/*
 * Landscape tablets with a coarse primary pointer need their own image tier.
 * Large iPads and comparable Android tablets otherwise inherit the compact-
 * laptop framing above 1100px, which makes the generator visibly smaller than
 * on 1024px landscape tablets. Keep the copy-safe right alignment and change
 * only the 20260729 slide sources; phones, portrait tablets and laptops remain
 * on their established calibrations.
 */
@media (orientation: landscape) and (hover: none) and (pointer: coarse) and (min-width: 901px) and (max-width: 1366px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide[style*="-20260729"] {
    background-size: auto 100% !important;
    background-position: right center !important;
  }
}

/*
 * 20260729 complete-product framing guard.
 * The approved source files already contain their final generator size and
 * copy-safe composition. Keep every 20260729 Diesel, gas and portable slide
 * at or below its source height so no product can become oversized or cut at
 * wide desktop, ultrawide, zoomed, tablet-landscape or low-height viewports.
 */
@media (min-width: 721px) and (max-width: 1100px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide[style*="-20260729"] {
    background-size: 100% auto !important;
    background-position: right center !important;
  }
}

@media (min-width: 1101px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide[style*="-20260729"] {
    background-size: auto 100% !important;
    background-position: right center !important;
  }
}

/*
 * 20260729 iMac / large-Retina desktop refinement.
 * The 100% complete-product guard is intentionally retained below and above
 * this measured large-desktop band. Inside it, the approved source files have
 * enough room around every generator for a restrained 108% presentation.
 * A longer dark transition joins the image to the copy area without a visible
 * colour edge and still fades out before reaching the machinery.
 */
@media (min-width: 1920px) and (max-width: 2879px) and (min-height: 900px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide[style*="-20260729"] {
    background-size: auto 108% !important;
    background-position: right center !important;
  }

  #main .lp-hero--product-slideshow::after,
  #main .lp-hero--product-slideshow.diesel-hero-redesign::after,
  #main .lp-hero--product-slideshow.gas-category-slideshow::after,
  #main .lp-hero--product-slideshow.portable-hero-redesign::after {
    background:
      linear-gradient(
        90deg,
        #000103 0%,
        #000103 36%,
        rgba(0, 1, 3, 0.99) 41%,
        rgba(0, 1, 3, 0.82) 47%,
        rgba(0, 1, 3, 0.48) 53%,
        rgba(0, 1, 3, 0.18) 59%,
        rgba(0, 1, 3, 0) 65%
      ),
      linear-gradient(
        180deg,
        rgba(0, 2, 5, 0.22) 0%,
        rgba(5, 10, 16, 0.035) 46%,
        rgba(5, 10, 16, 0.055) 100%
      );
  }
}

/*
 * Diesel slide 5 on phones only. The portrait source contains verified safe
 * The newly approved close mobile source already brings the open set forward.
 * Keep it at its native width so its frame, exhaust and base stay fully inside
 * the 320-520px image zone without a second artificial zoom.
 */
@media (max-width: 520px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.diesel-hero-redesign:not(.brand-hero-slideshow):not(.gas-category-slideshow)
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(5)[style*="-20260729"],
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.lp-hero--products-page-cycle
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(5)[style*="-20260729"] {
    background-size: 100% auto !important;
    background-position: center center !important;
  }
}

/*
 * 20260730 gas-slide display-class calibration.
 * Laptop and 16:10 viewports need the three differently composed motifs
 * 1, 3 and 5 calibrated individually. The already approved open sets 2 and 4
 * stay unchanged as the visual footprint reference. Phone rules are separate.
 */
@media (min-width: 721px) and (max-width: 1100px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(1)[style*="-20260729"] {
    background-size: 115% auto !important;
    background-position: right center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(3)[style*="-20260729"] {
    background-size: 132% auto !important;
    background-position: right center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(5)[style*="-20260729"] {
    background-size: 120% auto !important;
    background-position: right center !important;
  }
}

@media (min-width: 1101px) and (max-width: 1919px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(1)[style*="-20260729"] {
    background-size: auto 115% !important;
    background-position: right center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(3)[style*="-20260729"] {
    background-size: auto 132% !important;
    background-position: right center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(5)[style*="-20260729"] {
    background-size: auto 120% !important;
    background-position: right center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(2)[style*="-20260729"],
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(4)[style*="-20260729"] {
    background-size: auto 100% !important;
    background-position: right center !important;
  }
}

/* Native 1920 x 1200 / WUXGA: preserve full framing with a restrained split. */
@media (min-width: 1920px) and (max-width: 1999px) and (min-height: 900px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(1)[style*="-20260729"] {
    background-size: auto 118% !important;
    background-position: right center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(3)[style*="-20260729"] {
    background-size: auto 135% !important;
    background-position: right center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(5)[style*="-20260729"] {
    background-size: auto 123% !important;
    background-position: right center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(2)[style*="-20260729"],
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(4)[style*="-20260729"] {
    background-size: auto 105% !important;
    background-position: right center !important;
  }
}

/*
 * Scaled 27-inch iMac / large Retina viewport. Bring every gas motif closer
 * to the copy while keeping the complete generator inside the image zone.
 */
@media (min-width: 2000px) and (max-width: 2879px) and (min-height: 900px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(1)[style*="-20260729"] {
    background-size: auto 120% !important;
    background-position: calc(100% - 42px) center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(3)[style*="-20260729"] {
    background-size: auto 137% !important;
    background-position: calc(100% - 42px) center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(5)[style*="-20260729"] {
    background-size: auto 125% !important;
    background-position: calc(100% - 42px) center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(2)[style*="-20260729"],
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(4)[style*="-20260729"] {
    background-size: auto 105% !important;
    background-position: calc(100% - 42px) center !important;
  }
}

/*
 * Native high-resolution desktop viewports (including unscaled 5K panels).
 * Continue the large-display calibration instead of falling back abruptly at
 * 2880px. The wider right margin keeps every complete product in frame.
 */
@media (min-width: 2880px) and (max-width: 5120px) and (min-height: 900px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(1)[style*="-20260729"] {
    background-size: auto 120% !important;
    background-position: calc(100% - 64px) center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(3)[style*="-20260729"] {
    background-size: auto 137% !important;
    background-position: calc(100% - 64px) center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(5)[style*="-20260729"] {
    background-size: auto 125% !important;
    background-position: calc(100% - 64px) center !important;
  }

  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(2)[style*="-20260729"],
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(4)[style*="-20260729"] {
    background-size: auto 105% !important;
    background-position: calc(100% - 64px) center !important;
  }
}

/* Desktop gas copy and imagery join without a visible colour edge. */
@media (min-width: 1101px) and (max-width: 5120px) {
  #main .lp-hero--product-slideshow.gas-category-slideshow::after {
    background:
      linear-gradient(
        90deg,
        #000103 0%,
        #000103 36%,
        rgba(0, 1, 3, 0.99) 41%,
        rgba(0, 1, 3, 0.88) 47%,
        rgba(0, 1, 3, 0.68) 53%,
        rgba(0, 1, 3, 0.45) 59%,
        rgba(0, 1, 3, 0.25) 64%,
        rgba(0, 1, 3, 0.12) 68%,
        rgba(0, 1, 3, 0) 73%
      ),
      linear-gradient(
        180deg,
        rgba(0, 2, 5, 0.22) 0%,
        rgba(5, 10, 16, 0.035) 46%,
        rgba(5, 10, 16, 0.055) 100%
      ) !important;
  }
}

/*
 * Gas slide 5 on phones only. The portrait source is intentionally reduced
 * so the complete right side and base remain visible instead of appearing
 * oversized at narrow browser aspect ratios.
 */
@media (max-width: 720px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.gas-category-slideshow.gas-category-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(5)[style*="-20260729"] {
    background-size: 94% auto !important;
    background-position: center center !important;
    background-color: #07131c;
  }
}

/*
 * 20260731 unified Diesel slides: one portrait-tablet composition for every
 * current filename. The approved desktop sources already contain the final
 * copy-safe zone, product scale and right-side hall margin. Rendering them at
 * the viewport width preserves that composition instead of enlarging and
 * cropping it to the tall tablet hero. The category metrics use two readable
 * columns inside the 47% copy zone; neighbouring desktop and phone layouts are
 * intentionally unchanged.
 */
@media (min-width: 721px) and (max-width: 1100px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide[style*="diesel-unified-20260731"] {
    background-size: 100% auto !important;
    background-position: right center !important;
    transform: none !important;
  }

  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    row-gap: 18px;
  }

  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-metrics article,
  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-metrics article:first-child,
  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-metrics article:nth-child(even),
  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-metrics article:nth-child(odd) {
    padding-right: 10px;
    padding-left: 10px;
  }

  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-metrics article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-metrics strong,
  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-metrics article:nth-child(2) strong {
    margin-top: 8px;
    font-size: clamp(0.84rem, 1.55vw, 0.98rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    white-space: normal;
  }

  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-metrics span:not(.diesel-hero-metric__icon) {
    margin-top: 3px;
    font-size: clamp(0.76rem, 1.35vw, 0.86rem);
    line-height: 1.3;
  }

  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  #main .lp-hero--product-slideshow.diesel-hero-redesign:has(.product-hero-slide--diesel-main-first)
    .diesel-hero-actions .button {
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    font-size: clamp(0.74rem, 1.45vw, 0.86rem);
    white-space: nowrap;
  }
}

/*
 * 20260730 shared editorial slide 5 phone calibration.
 * The approved close portrait source has the final generator footprint built
 * into the image. Keep only this shared Company, Service and References slide
 * at native width so the complete base, control panel and exhaust stay in frame.
 */
@media (max-width: 520px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.lp-hero--editorial-slideshow
    .product-hero-slides .product-hero-slide.product-hero-slide:nth-child(5)[style*="-20260729"] {
    background-size: 100% auto !important;
    background-position: center center !important;
  }
}

/*
 * Diesel category slide 1: desktop copy-safe calibration for the approved
 * 20260730 prospect image. Keep the approved phone source unchanged. Compact
 * laptops, Windows viewports with display scaling and iPad Pro landscape use
 * a complete 74% frame instead of a translated frame that cuts the radiator.
 * The approved 15.3-inch calibration remains unchanged from 1650px upward.
 */
@media (min-width: 1101px) and (max-width: 1599px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.diesel-hero-redesign.diesel-hero-redesign:not(.brand-hero-slideshow):has(.product-hero-slide--diesel-main-first)
    .product-hero-slide.product-hero-slide.product-hero-slide--diesel-main-first[style] {
    background-size: auto 74% !important;
    background-position: right center !important;
    transform: none;
  }
}

@media (min-width: 1600px) and (max-width: 1649px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.diesel-hero-redesign.diesel-hero-redesign:not(.brand-hero-slideshow):has(.product-hero-slide--diesel-main-first)
    .product-hero-slide.product-hero-slide.product-hero-slide--diesel-main-first[style] {
    background-size: auto 106% !important;
    background-position: right center !important;
    transform: translateX(40px);
  }
}

@media (min-width: 1650px) and (max-width: 1919px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.diesel-hero-redesign.diesel-hero-redesign:not(.brand-hero-slideshow):has(.product-hero-slide--diesel-main-first)
    .product-hero-slide.product-hero-slide.product-hero-slide--diesel-main-first[style] {
    background-position: right center !important;
    transform: translateX(80px);
  }
}

@media (min-width: 1920px) and (max-width: 1999px) and (min-height: 900px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.diesel-hero-redesign.diesel-hero-redesign:not(.brand-hero-slideshow):has(.product-hero-slide--diesel-main-first)
    .product-hero-slide.product-hero-slide.product-hero-slide--diesel-main-first[style] {
    background-size: auto 128% !important;
    background-position: right center !important;
    transform: translateX(120px);
  }
}

@media (min-width: 2000px) and (max-width: 2399px) and (min-height: 900px) {
  #main .lp-hero--product-slideshow.lp-hero--product-slideshow.diesel-hero-redesign.diesel-hero-redesign:not(.brand-hero-slideshow):has(.product-hero-slide--diesel-main-first)
    .product-hero-slide.product-hero-slide.product-hero-slide--diesel-main-first[style] {
    background-position: right center !important;
    transform: translateX(clamp(0px, calc(720px - 30vw), 120px));
  }
}

@media (min-width: 2000px) and (max-width: 2199px) and (min-height: 900px) {
  #main .diesel-hero-redesign:not(.brand-hero-slideshow):has(.product-hero-slide--diesel-main-first)
    .product-hero-slide--diesel-main-first {
    background-size: auto 128% !important;
  }
}

/*
 * 20260731 final unified Diesel hero calibration.
 *
 * The twelve approved desktop/mobile WebP files already contain their final
 * hall, ground line, copy-safe zone and generator placement. Older rules used
 * page classes, slide numbers and historical filenames to zoom the same image
 * differently on the Diesel, Products, Company, Service, References and brand
 * pages. Keep one filename-bound calibration here, after every historical
 * override, so the approved composition is stable on every page.
 */
@media (min-width: 1101px) {
  #main#main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides.product-hero-slides
    .product-hero-slide.product-hero-slide[style*="diesel-unified-20260731"] {
    background-size: auto 112% !important;
    background-position: right center !important;
    transform: none !important;
  }

  /*
   * Slide 2 has a deliberately larger enclosure footprint in its approved
   * source. A small shared correction gives it the same visual mass as the
   * other five slides without changing its perspective or cropping it.
   */
  #main#main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides.product-hero-slides
    .product-hero-slide.product-hero-slide:nth-child(2)[style*="diesel-unified-20260731"] {
    background-size: auto 100% !important;
  }
}

@media (min-width: 1600px) {
  #main#main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides.product-hero-slides
    .product-hero-slide.product-hero-slide[style*="diesel-unified-20260731"] {
    background-size: auto 128% !important;
  }

  #main#main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides.product-hero-slides
    .product-hero-slide.product-hero-slide:nth-child(2)[style*="diesel-unified-20260731"] {
    background-size: auto 116% !important;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  #main#main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides.product-hero-slides
    .product-hero-slide.product-hero-slide[style*="diesel-unified-20260731"] {
    background-size: 100% auto !important;
    background-position: right center !important;
    transform: none !important;
  }

  #main#main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides.product-hero-slides
    .product-hero-slide.product-hero-slide:nth-child(2)[style*="diesel-unified-20260731"] {
    background-size: 92% auto !important;
  }
}

@media (max-width: 720px) {
  #main#main .lp-hero--product-slideshow.lp-hero--product-slideshow
    .product-hero-slides.product-hero-slides
    .product-hero-slide.product-hero-slide[style*="diesel-unified-20260731"] {
    background-size: cover !important;
    background-position: center center !important;
    transform: none !important;
  }

  /*
   * Avoid a half-visible second generator while the phone slideshow changes.
   * Every approved portrait source is opaque, so an immediate switch remains
   * clean and preserves the intended mobile composition.
   */
  #main#main .lp-hero--product-slideshow.lp-hero--product-slideshow:has(
      .product-hero-slide[style*="diesel-unified-20260731"]
    )
    .product-hero-slide {
    transition: none !important;
  }
}
