:root {
  --mt-blue: #004494;
  --mt-green: #78b62f;
  --hero-gray: #f6f6f6;
  --hero-text: #183948;
  --hero-muted: #627784;
  --hero-border: #e4eaee;
  --hero-max: 1360px;
  --hero-min-height: 660px;
}

.ka-page-shell {
  width: min(var(--hero-max), calc(100% - 40px));
  margin: 0 auto;
}

.ka-product-page {
  background: #fff;
  color: var(--hero-text);
}

.ka-product-hero.ka-mt-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--hero-gray);
  border-bottom: 1px solid var(--hero-border);
  overflow: hidden;
}

.ka-mt-hero-inner {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: var(--hero-min-height);
  align-items: stretch;
}

.ka-mt-hero-text {
  display: flex;
  flex-direction: column;
  min-height: var(--hero-min-height);
  padding: 28px 54px 34px max(34px, calc((100vw - var(--hero-max)) / 2 + 20px));
  box-sizing: border-box;
}

.ka-mt-hero-media {
  position: relative;
  min-height: var(--hero-min-height);
  background: #d8e1e8;
  overflow: hidden;
}

.ka-mt-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: var(--hero-min-height);
  object-fit: cover;
}

.ka-mt-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 42px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--mt-blue);
}

.ka-mt-breadcrumbs a {
  color: var(--mt-blue);
  text-decoration: none;
}

.ka-mt-breadcrumbs a:hover {
  text-decoration: underline;
}

.ka-mt-kicker {
  margin: 0 0 22px;
  color: var(--mt-blue);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ka-mt-hero-text h1 {
  margin: 0 0 24px;
  color: var(--mt-blue);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 620px;
}

.ka-mt-hero-text h2 {
  margin: 0;
  color: var(--mt-blue);
  font-size: clamp(24px, 3vw, 45px);
  line-height: 1.16;
  font-weight: 400;
  max-width: 640px;
}

.ka-mt-cta-row {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 44px;
}

.ka-mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--mt-blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  transition: transform .2s ease, opacity .2s ease;
}

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

.ka-mt-btn--secondary {
  background: #fff;
  color: var(--mt-blue);
}

.ka-mt-btn--primary {
  background: var(--mt-green);
  border-color: var(--mt-green);
  color: #fff;
}

.ka-mt-hero-bottom {
  background: #fff;
  padding: 44px 0 0;
}

.ka-mt-summary {
  max-width: 930px;
  margin: 0 0 28px;
  color: var(--hero-text);
  font-size: 18px;
  line-height: 1.8;
}

.ka-product-facts.ka-product-facts--mt {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 10px;
}

.ka-product-fact {
  background: #fff;
  border: 1px solid var(--hero-border);
  border-radius: 0;
  padding: 18px 20px;
  box-shadow: none;
}

.ka-product-fact span {
  display: block;
  margin: 0 0 8px;
  color: var(--hero-muted);
  font-size: 13px;
  line-height: 1.4;
}

.ka-product-fact strong {
  display: block;
  color: var(--hero-text);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.ka-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hero-border);
}

.ka-anchor-nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 14px 0;
}

.ka-anchor-nav-wrap a {
  color: var(--hero-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.ka-anchor-nav-wrap a:hover {
  color: var(--mt-blue);
}

.ka-section {
  padding: 56px 0;
}

.ka-section--soft {
  background: #f8fafb;
}

.ka-section-head {
  margin-bottom: 26px;
}

.ka-section-head h2 {
  margin: 0 0 10px;
  color: var(--mt-blue);
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.15;
}

.ka-section-head p {
  margin: 0;
  color: var(--hero-muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 880px;
}

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

.ka-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.ka-spec-table th,
.ka-spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--hero-border);
  text-align: left;
  vertical-align: top;
}

.ka-spec-table thead th {
  background: var(--mt-blue);
  color: #fff;
  border-bottom: 0;
}

.ka-spec-table tbody tr:last-child th,
.ka-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.ka-spec-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}

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

.ka-gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ka-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--hero-border);
}

.ka-card-grid {
  display: grid;
  gap: 20px;
}

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

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

.ka-info-card,
.ka-model-card,
.ka-faq-item,
.ka-final-cta-box,
.ka-link-card {
  background: #fff;
  border: 1px solid var(--hero-border);
  padding: 24px;
}

.ka-card-kicker,
.ka-model-badge {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--mt-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ka-info-card h3,
.ka-model-card h3,
.ka-faq-item h3,
.ka-link-card h3 {
  margin: 0 0 12px;
  color: var(--hero-text);
  font-size: 22px;
  line-height: 1.25;
}

.ka-info-card p,
.ka-model-card p,
.ka-faq-item p,
.ka-link-card p {
  margin: 0;
  color: var(--hero-text);
  line-height: 1.7;
}

.ka-clean-list {
  margin: 16px 0 0;
  padding-left: 18px;
  line-height: 1.7;
  color: var(--hero-text);
}

.ka-related-footer-link {
  margin-top: 20px;
  text-align: center;
}

.ka-related-footer-link a,
.ka-product-links a,
.ka-link-card a {
  color: var(--mt-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,68,148,.18);
  padding-bottom: 2px;
}

.ka-related-footer-link a:hover,
.ka-product-links a:hover,
.ka-link-card a:hover {
  border-color: var(--mt-blue);
}

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

.ka-final-cta {
  padding: 56px 0 70px;
  background: #f8fafb;
}

.ka-final-cta-box {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
}

.ka-final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.ka-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.ka-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 14, 18, .9);
  padding: 20px;
}

.ka-gallery-modal.is-open {
  display: flex;
}

.ka-gallery-dialog {
  position: relative;
  width: min(1100px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ka-gallery-stage img {
  max-width: 100%;
  max-height: 82vh;
}

.ka-gallery-close,
.ka-gallery-nav {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.14);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
}

.ka-gallery-close {
  top: -8px;
  right: 0;
  width: 44px;
  height: 44px;
  font-size: 28px;
}

.ka-gallery-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 34px;
}

.ka-gallery-prev { left: -6px; }
.ka-gallery-next { right: -6px; }

@media (max-width: 1100px) {
  .ka-mt-hero-text {
    padding-left: 28px;
    padding-right: 28px;
  }

  .ka-mt-hero-text h1 {
    font-size: clamp(34px, 4vw, 52px);
  }

  .ka-mt-hero-text h2 {
    font-size: clamp(22px, 2.8vw, 38px);
  }
}

@media (max-width: 900px) {
  .ka-mt-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ka-mt-hero-media,
  .ka-mt-hero-image {
    min-height: 360px;
  }

  .ka-mt-hero-text {
    min-height: 0;
    padding: 22px 24px 34px;
  }

  .ka-mt-breadcrumbs {
    margin-bottom: 26px;
  }

  .ka-mt-cta-row {
    margin-top: 28px;
    padding-top: 0;
  }

  .ka-product-facts.ka-product-facts--mt,
  .ka-gallery-grid,
  .ka-card-grid--2,
  .ka-card-grid--3,
  .ka-faq-grid,
  .ka-final-cta-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ka-mt-hero-text h1 {
    font-size: 34px;
  }

  .ka-mt-hero-text h2 {
    font-size: 22px;
  }

  .ka-mt-cta-row,
  .ka-final-cta-actions {
    flex-direction: column;
  }

  .ka-product-facts.ka-product-facts--mt,
  .ka-gallery-grid,
  .ka-card-grid--2,
  .ka-card-grid--3,
  .ka-faq-grid,
  .ka-final-cta-box {
    grid-template-columns: 1fr;
  }

  .ka-mt-summary {
    font-size: 16px;
    line-height: 1.72;
  }

  .ka-mt-hero-media,
  .ka-mt-hero-image {
    min-height: 280px;
  }

  .ka-gallery-prev { left: 4px; }
  .ka-gallery-next { right: 4px; }
}/* 1000kg page: wider summary text + better fact cards layout */
.ka-mt-hero-bottom .ka-page-shell {
  width: min(1480px, calc(100% - 32px));
}

.ka-mt-summary {
  max-width: none;
  width: 100%;
  margin: 0 0 30px;
  font-size: 19px;
  line-height: 1.9;
}

.ka-product-facts.ka-product-facts--mt {
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.ka-product-fact {
  border: 2px solid #b8d98a;
  background: #fff;
  padding: 20px 22px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ka-product-fact span {
  margin: 0 0 10px;
  color: #6e7f69;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.ka-product-fact strong {
  color: #183948;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
  word-break: break-word;
}

@media (max-width: 1200px) {
  .ka-mt-hero-bottom .ka-page-shell {
    width: calc(100% - 28px);
  }

  .ka-mt-summary {
    font-size: 18px;
    line-height: 1.82;
  }

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

@media (max-width: 640px) {
  .ka-mt-hero-bottom .ka-page-shell {
    width: calc(100% - 20px);
  }

  .ka-mt-summary {
    font-size: 16px;
    line-height: 1.75;
  }

  .ka-product-facts.ka-product-facts--mt {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ka-product-fact {
    min-height: auto;
    padding: 18px 16px;
  }

  .ka-product-fact strong {
    font-size: 20px;
  }
}
/* fact cards fully centered */
.ka-product-fact {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ka-product-fact span,
.ka-product-fact strong {
  width: 100%;
  text-align: center;
}
/* stronger centered section headers */
.ka-section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ka-section-head h2 {
  text-align: center;
  margin: 0 0 12px;
}

.ka-section-head p {
  text-align: center;
  margin: 0;
  max-width: 980px;
}
<style>
  .ka-mt-hero-image--contain {
    object-fit: contain;
    object-position: center;
    background: #d8e1e8;
  }
</style>