.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: minmax(130px, .7fr) 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; }

@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 { min-width: 620px; }
}

.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 url("../img/product-hero-slides/product-slide-1-optimized.jpg") center center / cover no-repeat;
}

.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 url("../img/product-hero-slides/product-slide-1-optimized.jpg") center center / cover no-repeat;
}

.gas-category-slideshow .product-hero-slides,
.gas-category-slideshow {
  background-image: url("../img/gas-hero-slides/gas-slide-1.png?v=20260611");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #071017;
}

.portable-hero-redesign .product-hero-slides,
.portable-hero-redesign {
  background-image: url("../img/portable-hero-slides/portable-slide-1.png?v=1");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #071017;
}

.lp-hero--editorial-slideshow .product-hero-slides,
.lp-hero--editorial-slideshow {
  background-image: url("../img/product-hero-slides/product-slide-1-optimized.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  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-optimized.jpg") center center / cover no-repeat;
}

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

.lp-hero--product-slideshow.portable-hero-redesign {
  background: #071017 url("../img/portable-hero-slides/portable-slide-1.png?v=1") 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;
}

.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;
}

.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;
}

.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: drop-shadow(0 6px 10px rgba(16, 24, 32, 0.16));
  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.png"] {
  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-color: rgba(225, 38, 28, 0.45) rgba(16, 24, 32, 0.08);
}

.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);
}

.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: 74px;
  --brand-overview-logo-height: 58px;
}

.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: 72px;
  --brand-overview-logo-height: 58px;
}

.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 {
    justify-content: flex-start;
    justify-self: stretch;
    width: 100%;
    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.png") 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.png") center center / cover no-repeat;
  background-color: #071017;
}

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

[data-diesel-product-page] .product-hero__copy {
  opacity: 0;
  transform: translateY(4px);
}

[data-diesel-product-page].is-product-ready .product-hero__copy {
  opacity: 1;
  transform: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

[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.png"],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-22-s-st-v2.png"] {
    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.png"],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-145-s-st-v3.png"] {
    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.png"] {
    width: min(150%, 1045px);
    transform: translateX(-24%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="t55-s-st-v1.png"] {
    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);
    clip-path: inset(0 5px 0 0);
    transform: translateX(-8.8%);
  }

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-4.png"],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-4.png"] {
    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-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-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-portable-product-page] .product-hero .hero__actions {
    flex-wrap: wrap;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  [data-diesel-product-page] .product-hero__image--photo img[src*="perkins-66-s-st.jpg"] {
    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.jpg"] {
    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.jpg"] {
    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.png"],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-145-s-st-v3.png"] {
    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.png"] {
  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;
}

.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 {
  width: 142px;
  height: 106px;
}

.controller-option-thumb img.controller-option-thumb__image--ig1000 {
  width: 148px;
  height: 110px;
  transform: translateY(-3px) scale(1.05);
}

.controller-option-thumb img.controller-option-thumb__image--dse7320,
.controller-option-thumb img.controller-option-thumb__image--dse8610 {
  width: 156px;
  height: 116px;
  transform: translateY(-5px) scale(1.12);
}

.controller-option-thumb img.controller-option-thumb__image--dse8620 {
  width: 160px;
  height: 118px;
  transform: translateY(-6px) scale(1.14);
}

.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-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;
}

.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: 192px;
  padding: 18px;
}

.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.png"],
.option-image img[src*="ethernet-webserver.jpg"],
.option-image img[src*="rs232-rs485-comap-new.png"],
.option-image img[src*="4g-gps-modem.png"] {
  width: 78%;
  height: 78%;
  max-width: 78%;
  max-height: 78%;
}

.option-image img[src*="mains-generator-switch-full.png"] {
  width: 96%;
  height: 96%;
  max-width: 96%;
  max-height: 96%;
  object-position: center;
  transform: translateY(-18%);
}

.option-image img[src*="special-colours.png"] {
  width: 96%;
  height: 96%;
  max-width: 96%;
  max-height: 96%;
  object-position: center;
  transform: translateY(-8%);
}

.option-image img[src*="gas-leakage-sensor.png"] {
  transform: translateY(-12%);
}

.option-image img[src*="anti-sand-filter.png"] {
  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;
}

.option-copy span {
  font-size: 0.86rem;
  line-height: 1.44;
}

.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.png"] {
    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;
  }

  .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;
  }

  .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 {
    width: 126px;
    height: 94px;
  }

  .controller-option-thumb img.controller-option-thumb__image--ig1000 {
    width: 132px;
    height: 98px;
    transform: translateY(-2px) scale(1.04);
  }

  .controller-option-thumb img.controller-option-thumb__image--dse7320,
  .controller-option-thumb img.controller-option-thumb__image--dse8610 {
    width: 142px;
    height: 106px;
    transform: translateY(-4px) scale(1.1);
  }

  .controller-option-thumb img.controller-option-thumb__image--dse8620 {
    width: 144px;
    height: 108px;
    transform: translateY(-5px) scale(1.12);
  }

  .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.png"],
  .option-image img[src*="ethernet-webserver.jpg"],
  .option-image img[src*="rs232-rs485-comap-new.png"],
  .option-image img[src*="4g-gps-modem.png"] {
    width: 70%;
    height: 70%;
    max-width: 70%;
    max-height: 70%;
  }

  .option-image img[src*="mains-generator-switch-full.png"] {
    width: 86%;
    height: 86%;
    max-width: 86%;
    max-height: 86%;
    transform: translateY(-28%);
  }

  .option-image img[src*="socket-kit.png"] {
    transform: translateY(-12%);
  }

  .option-image img[src*="anti-sand-filter.png"] {
    transform: translate(-14%, -14%);
  }

  .option-image img[src*="special-colours.png"] {
    width: 94%;
    height: 94%;
    max-width: 94%;
    max-height: 94%;
    transform: translateY(-18%);
  }

  .option-image img[src*="slow-trailer.png"] {
    transform: translateY(-16%);
  }

  .option-image img[src*="road-chassis.png"] {
    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-lightbox {
    padding: 72px 18px 26px;
    align-items: center;
  }

  .reference-lightbox__image {
    max-height: calc(100vh - 128px);
  }

  .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.png"] {
    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.png"],
  .option-image img[src*="ethernet-webserver.jpg"],
  .option-image img[src*="rs232-rs485-comap-new.png"],
  .option-image img[src*="4g-gps-modem.png"] {
    width: 68%;
    height: 68%;
    max-width: 68%;
    max-height: 68%;
  }

  .option-image img[src*="mains-generator-switch-full.png"] {
    width: 84%;
    height: 84%;
    max-width: 84%;
    max-height: 84%;
    transform: translateY(-30%);
  }

  .option-image img[src*="socket-kit.png"] {
    transform: translateY(-14%);
  }

  .option-image img[src*="anti-sand-filter.png"] {
    transform: translate(-14%, -16%);
  }

  .option-image img[src*="special-colours.png"] {
    width: 92%;
    height: 92%;
    max-width: 92%;
    max-height: 92%;
    transform: translateY(-20%);
  }

  .option-image img[src*="slow-trailer.png"] {
    transform: translateY(-18%);
  }

  .option-image img[src*="road-chassis.png"] {
    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/gas-slide-3-mobile.jpg?v=1") !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/gas-slide-5-mobile.jpg?v=2") !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.jpg?v=6") !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.jpg?v=4") !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.jpg?v=6") !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.jpg?v=9") !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.jpg?v=5") !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.jpg?v=6") !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.jpg?v=1") !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.jpg?v=5") !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.jpg?v=5") !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.png") 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.png") 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.png"] {
    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.png"] {
    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.jpg"] {
    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.png"] {
    width: 138% !important;
    max-width: none !important;
    transform: translateX(-14%) !important;
  }

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

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

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

  [data-diesel-product-page] .product-hero__image--photo img[src*="productbild-10.png"],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-10.png"] {
    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.png"],
  [data-gas-product-page] .product-hero__image--photo img[src*="baudouin-22-s-st-v2.png"] {
    width: 131% !important;
    max-width: none !important;
    transform: translateX(-10%) !important;
  }

  [data-diesel-product-page] .product-hero__image--photo:has(img[src*="productbild-2.png"]),
  [data-gas-product-page] .product-hero__image--photo:has(img[src*="productbild-2.png"]) {
    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.png"],
  [data-gas-product-page] .product-hero__image--photo img[src*="productbild-2.png"] {
    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.png"]) {
    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.png"] {
    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.png"]) {
    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.png"] {
    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.jpg"] {
    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.jpg"]) {
    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.jpg"] {
    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-4.png"],
  .catalog-card--gas .catalog-card__image > img[src*="productbild-4.png"] {
    width: min(177%, 552px);
    max-width: none;
    max-height: 281px;
  }

  .catalog-card--gas .catalog-card__image > img[src*="gas-silent-productbild-13.png"] {
    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.png"] {
    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.png"] {
    width: min(144%, 460px);
    max-width: none;
    max-height: 232px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-9.png"],
  .catalog-card--gas .catalog-card__image > img[src*="productbild-9.png"] {
    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.jpg"] {
    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.png"] {
    width: min(133%, 434px);
    max-width: none;
    max-height: 228px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-12.png"],
  .catalog-card--gas .catalog-card__image > img[src*="productbild-12.png"] {
    width: min(126%, 412px);
    max-width: none;
    max-height: 219px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-11.png"],
  .catalog-card--gas .catalog-card__image > img[src*="productbild-11.png"] {
    width: min(126%, 412px);
    max-width: none;
    max-height: 219px;
    transform: translateY(-10px);
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-10.png"],
  .catalog-card--gas .catalog-card__image > img[src*="productbild-10.png"] {
    width: min(118%, 390px);
    max-width: none;
    max-height: 214px;
    transform: translateY(-8px);
  }

  .catalog-card--diesel .catalog-card__image:has(> img[src*="productbild-2.png"]) {
    min-height: 292px;
    padding-top: 62px;
    padding-bottom: 56px;
    overflow: hidden;
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-2.png"] {
    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.png"]) {
    min-height: 292px;
    padding-top: 62px;
    padding-bottom: 56px;
    overflow: hidden;
  }

  .catalog-card--gas .catalog-card__image > img[src*="gas-open-productbild-14.png"] {
    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.png"]) {
    min-height: 292px;
    padding-top: 62px;
    padding-bottom: 56px;
    overflow: hidden;
  }

  .catalog-card--diesel .catalog-card__image > img[src*="productbild-5.png"] {
    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.jpg"] {
    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.jpg"] {
    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.jpg"]) {
    min-height: 340px;
    padding-top: 50px;
    padding-bottom: 42px;
    overflow: visible;
  }

  .catalog-card--diesel .catalog-card__image > img[src*="perkins-198-o-st.jpg"] {
    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.png"] {
    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;
  }

  .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: #e1261c;
  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;
  }
}
