:root {
  --color-bg: #f4f6f8;
  --color-surface: #ffffff;
  --color-surface-alt: #eef2f5;
  --color-text: #1d2733;
  --color-muted: #5f6b76;
  --color-line: #d8e0e6;
  --color-primary: #154c79;
  --color-primary-dark: #0f3a5d;
  --color-accent: #d18a1d;
  --color-footer: #101820;
  --color-footer-text: #c6d0d8;
  --shadow-soft: 0 10px 30px rgba(16, 24, 32, 0.08);
  --shadow-card: 0 12px 24px rgba(16, 24, 32, 0.06);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1240px;
  --header-height: 78px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

p {
  margin: 0 0 var(--space-4);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--space-3);
  line-height: 1.18;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
}

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

.section {
  padding: var(--space-8) 0;
}

.section--compact {
  padding: var(--space-5) 0;
}

.section--alt {
  background: var(--color-surface-alt);
}

.section-heading {
  max-width: 760px;
  margin-bottom: var(--space-6);
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn--primary {
  color: #fff;
  background: var(--color-primary);
}

.btn--primary:hover {
  color: #fff;
  background: var(--color-primary-dark);
}

.btn--secondary {
  color: var(--color-text);
  background: #fff;
  border-color: var(--color-line);
}

.btn--secondary:hover {
  background: #f8fafb;
}

.btn--ghost {
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-line);
}

.text-link {
  font-weight: 700;
}

.grid {
  display: grid;
  gap: var(--space-5);
}

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

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

.card {
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.card__body {
  padding: var(--space-5);
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-box,
.service-tile {
  height: 100%;
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(216, 224, 230, 0.85);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-height);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  font-weight: 800;
}

.site-brand__mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-brand__name {
  font-size: 1rem;
}

.site-brand__sub {
  font-size: 0.78rem;
  color: var(--color-muted);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--color-text);
  font-weight: 700;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--color-primary);
  background: #eef4f8;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-text);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: var(--space-8) 0 var(--space-7);
  background:
    linear-gradient(180deg, #f8fafb 0%, #eef3f7 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--space-7);
  align-items: center;
}

.hero__lead {
  max-width: 700px;
  font-size: 1.08rem;
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: var(--space-5) 0;
}

.hero__highlights {
  display: grid;
  gap: 10px;
  margin-top: var(--space-5);
}

.hero__highlights li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text);
  font-weight: 600;
}

.hero__highlights li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.hero__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  background: var(--color-surface);
}

.hero__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Trust bar */
.trust-bar {
  background: var(--color-primary);
  color: #fff;
}

.trust-bar__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.trust-bar__list li {
  text-align: center;
  font-weight: 700;
}

/* CTA */
.cta-section {
  padding-top: 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-7);
  background: linear-gradient(135deg, #123e64 0%, #1d5d92 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.cta-box h2,
.cta-box p,
.cta-box .eyebrow {
  color: #fff;
}

.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 0 var(--space-4);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 700;
}

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

.faq-item p {
  padding-bottom: 20px;
  color: var(--color-muted);
}

/* Footer */
.site-footer {
  background: var(--color-footer);
  color: var(--color-footer-text);
  margin-top: var(--space-8);
}

.site-footer a {
  color: #fff;
}

.site-footer__top {
  padding: var(--space-8) 0 var(--space-6);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-6);
}

.site-footer__title {
  margin-bottom: var(--space-3);
  color: #fff;
  font-size: 1rem;
}

.site-footer__text,
.site-footer__links li {
  color: var(--color-footer-text);
  font-size: 0.95rem;
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__bottom {
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
}

/* Responsive */
@media (max-width: 1100px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .site-footer__grid,
  .cta-box {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__list {
    gap: 2px;
  }
}

@media (max-width: 860px) {
  .grid--3,
  .trust-bar__list {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .site-header__bar {
    align-items: flex-start;
  }

  .site-header__bar {
    min-height: auto;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 0 16px 16px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-line);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 12px;
  }

  .site-nav__link {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
    border: 1px solid var(--color-line);
    background: #fff;
  }

  .site-header__actions .btn {
    display: none;
  }

  .section {
    padding: var(--space-7) 0;
  }

  .cta-box {
    padding: var(--space-6);
  }
}

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

  h1 {
    font-size: 2.2rem;
  }

  .card__body,
  .feature-box,
  .service-tile {
    padding: var(--space-4);
  }

  .cta-box__actions,
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
/* ===== Shared reusable page components ===== */

.hero--inner .hero__grid {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.breadcrumbs {
  margin-bottom: var(--space-4);
  font-size: 0.95rem;
  color: var(--color-muted);
}

.breadcrumbs a {
  color: var(--color-primary);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.content-panel {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.media-panel {
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.media-panel img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.info-list,
.check-list,
.contact-list,
.hours-list,
.meta-list {
  display: grid;
  gap: 12px;
}

.check-list li,
.contact-list li,
.hours-list li,
.meta-list li {
  position: relative;
  padding-left: 18px;
}

.check-list li::before,
.contact-list li::before,
.hours-list li::before,
.meta-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-4);
}

.compare-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.compare-card__meta {
  margin-bottom: var(--space-3);
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 700;
}

.compare-card__body {
  flex: 1;
}

.compare-card__actions {
  margin-top: var(--space-4);
}

.notice-box {
  padding: var(--space-5);
  background: #f7fafc;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
}

.project-card__meta {
  display: grid;
  gap: 8px;
  margin-top: var(--space-3);
  font-size: 0.95rem;
  color: var(--color-muted);
}

.icon-card {
  height: 100%;
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-5);
}

.form-card {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 12px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.map-box {
  min-height: 320px;
  padding: var(--space-5);
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, #eef3f7 0%, #e3eaef 100%);
  border: 1px dashed #b7c5d0;
  border-radius: var(--radius-md);
  color: var(--color-muted);
}

.faq-section {
  display: grid;
  gap: var(--space-3);
}

.faq-section + .faq-section {
  margin-top: var(--space-6);
}

.faq-section__title {
  margin-bottom: var(--space-2);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.stat-box {
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

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

  .contact-layout,
  .content-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .form-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }
}
.site-nav__link.is-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.hero--inner .hero__grid {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.breadcrumbs {
  margin-bottom: var(--space-4);
  font-size: 0.95rem;
  color: var(--color-muted);
}

.breadcrumbs a {
  color: var(--color-primary);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.content-panel {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.media-panel {
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.media-panel img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.check-list,
.meta-list,
.spec-list,
.quick-link-list {
  display: grid;
  gap: 12px;
}

.check-list li,
.meta-list li,
.spec-list li,
.quick-link-list li {
  position: relative;
  padding-left: 18px;
}

.check-list li::before,
.meta-list li::before,
.spec-list li::before,
.quick-link-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.compare-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.compare-card__meta {
  margin-bottom: var(--space-3);
  font-size: 0.92rem;
  color: var(--color-muted);
  font-weight: 700;
}

.compare-card__body {
  flex: 1;
}

.compare-card__actions {
  margin-top: var(--space-4);
}

.notice-box {
  padding: var(--space-5);
  background: #f7fafc;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
}

.form-note {
  padding: var(--space-5);
  background: linear-gradient(180deg, #eef3f7 0%, #e3eaef 100%);
  border: 1px dashed #b7c5d0;
  border-radius: var(--radius-md);
  color: var(--color-muted);
}

.section-anchor {
  scroll-margin-top: 110px;
}

@media (max-width: 1100px) {
  .compare-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}
.contact-form-status {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-form-status--success {
  background: #ebf8ef;
  border: 1px solid #b7e1c0;
  color: #1f6b38;
}

.contact-form-status--error {
  background: #fff2ef;
  border: 1px solid #f0c0b8;
  color: #9a2d20;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lang-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(15, 79, 150, 0.18);
  background: #fff;
  color: #2f3442;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.lang-switch__link:hover {
  border-color: #0f4f96;
  color: #0f4f96;
}

.lang-switch__link.is-active {
  background: #0f4f96;
  border-color: #0f4f96;
  color: #fff;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav__mobile-lang {
  display: none;
}

@media (max-width: 860px) {
  .site-header__actions .lang-switch {
    display: none;
  }

  .site-nav__mobile-lang {
    display: block;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 79, 150, 0.12);
  }
}
/* =========================================================
   600 kg Platform Scale - 70x80 cm
   File: /en/platform-scales/600kg-platform-scale-70x80.html
   Append to /assets/css/main.css
   ========================================================= */

.ps70x80-page {
  color: var(--ps-text, #1f2937);
  background: #ffffff;
}

.ps70x80-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ps70x80-section {
  padding: clamp(56px, 7vw, 88px) 0;
}

.ps70x80-section--alt {
  background: #f6f8fb;
}

.ps70x80-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.ps70x80-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  line-height: 1.15;
}

.ps70x80-heading p {
  margin: 0;
  color: #586274;
  line-height: 1.75;
}

.ps70x80-hero {
  padding: clamp(32px, 5vw, 56px) 0 clamp(56px, 8vw, 96px);
  background:
    linear-gradient(135deg, rgba(10, 55, 110, 0.06), rgba(10, 55, 110, 0) 52%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ps70x80-breadcrumbs {
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.ps70x80-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #6b7280;
}

.ps70x80-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #9ca3af;
}

.ps70x80-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.ps70x80-breadcrumbs a:hover {
  color: #0b4d96;
}

.ps70x80-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.ps70x80-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(11, 77, 150, 0.08);
  color: #0b4d96;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ps70x80-hero__content h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.ps70x80-lead {
  margin: 0 0 24px;
  max-width: 760px;
  color: #586274;
  font-size: 1.06rem;
  line-height: 1.8;
}

.ps70x80-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.ps70x80-quick-spec {
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.ps70x80-quick-spec span {
  display: block;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 0.9rem;
}

.ps70x80-quick-spec strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.3;
}

.ps70x80-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ps70x80-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.ps70x80-btn--primary {
  background: #0b4d96;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(11, 77, 150, 0.18);
}

.ps70x80-btn--primary:hover {
  background: #093e79;
}

.ps70x80-btn--secondary {
  background: #ffffff;
  color: #1f2937;
  border-color: #d1d5db;
}

.ps70x80-btn--secondary:hover {
  border-color: #0b4d96;
  color: #0b4d96;
}

.ps70x80-hero__media {
  display: flex;
}

.ps70x80-media-placeholder {
  width: 100%;
  min-height: 100%;
  padding: 28px;
  border: 1px dashed #c7d2e0;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #586274;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.ps70x80-media-placeholder strong {
  display: block;
  margin-bottom: 10px;
  color: #111827;
  font-size: 1.05rem;
}

.ps70x80-media-placeholder p {
  margin: 0;
  line-height: 1.7;
}

.ps70x80-card-grid,
.ps70x80-fit-grid,
.ps70x80-columns {
  display: grid;
  gap: 18px;
}

.ps70x80-card-grid,
.ps70x80-fit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.ps70x80-card,
.ps70x80-fit-card,
.ps70x80-panel {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.ps70x80-card h3,
.ps70x80-fit-card h3,
.ps70x80-panel h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.ps70x80-card p,
.ps70x80-fit-card p,
.ps70x80-panel p {
  margin: 0;
  color: #586274;
  line-height: 1.75;
}

.ps70x80-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #586274;
  line-height: 1.8;
}

.ps70x80-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.ps70x80-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.ps70x80-table th,
.ps70x80-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

.ps70x80-table thead th {
  background: #f8fafc;
  color: #111827;
  font-size: 0.95rem;
}

.ps70x80-table tbody tr:last-child td {
  border-bottom: none;
}

.ps70x80-table tbody td:first-child {
  width: 34%;
  color: #111827;
  font-weight: 600;
}

.ps70x80-table tbody td:last-child {
  color: #586274;
}

.ps70x80-faq {
  display: grid;
  gap: 14px;
}

.ps70x80-faq__item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.ps70x80-faq__item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.ps70x80-faq__item summary::-webkit-details-marker {
  display: none;
}

.ps70x80-faq__content {
  padding: 0 22px 18px;
  color: #586274;
  line-height: 1.75;
}

.ps70x80-faq__content p {
  margin: 0;
}

.ps70x80-cta {
  padding: clamp(56px, 8vw, 92px) 0;
  background: linear-gradient(135deg, #0b4d96 0%, #083765 100%);
  color: #ffffff;
}

.ps70x80-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ps70x80-cta__text {
  max-width: 720px;
}

.ps70x80-cta__text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.ps70x80-cta__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.ps70x80-cta .ps70x80-btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.ps70x80-cta .ps70x80-btn--secondary:hover {
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .ps70x80-card-grid,
  .ps70x80-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ps70x80-hero__grid,
  .ps70x80-columns {
    grid-template-columns: 1fr;
  }

  .ps70x80-hero__media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .ps70x80-shell {
    width: min(100% - 24px, 1180px);
  }

  .ps70x80-quick-specs,
  .ps70x80-card-grid,
  .ps70x80-fit-grid {
    grid-template-columns: 1fr;
  }

  .ps70x80-btn {
    width: 100%;
  }

  .ps70x80-actions {
    flex-direction: column;
  }

  .ps70x80-table {
    min-width: 100%;
  }

  .ps70x80-table th,
  .ps70x80-table td {
    padding: 14px;
  }
}
.ps70x80-media-figure,
.ps70x80-gallery-card {
  margin: 0;
}

.ps70x80-media-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

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

.ps70x80-gallery-card {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.ps70x80-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
}

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

@media (max-width: 640px) {
  .ps70x80-gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Platform scales split video hero
   ========================= */

.hero--split-video {
  padding: 0;
  background: #eef2f5;
}

.hero__split {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  align-items: stretch;
  min-height: 560px;
}

.hero--split-video .hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px 56px 0;
}

.hero--split-video .breadcrumbs {
  margin-bottom: 16px;
  font-size: 13px;
}

.hero--split-video .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.hero--split-video h1 {
  margin: 0 0 18px;
  max-width: 620px;
}

.hero--split-video .hero__lead {
  max-width: 560px;
  margin-bottom: 26px;
}

.hero--split-video .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #d9e1e8;
}

.hero__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-intro {
  padding: 24px 0 8px;
  background: #ffffff;
}

.hero-intro p {
  max-width: 860px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #495768;
}

.media-placeholder {
  min-height: 320px;
  border: 1px solid #dbe3ea;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #f7f9fb 0%, #edf2f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  color: #5f6f7d;
  font-size: 16px;
  line-height: 1.6;
}

/* desktop polish */
@media (min-width: 1200px) {
  .hero__split {
    min-height: 620px;
  }

  .hero__media {
    min-height: 620px;
  }

  .hero--split-video .hero__content {
    padding-right: 60px;
  }
}

/* tablet */
@media (max-width: 1024px) {
  .hero__split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero--split-video .hero__content {
    padding: 44px 0 28px;
  }

  .hero__media {
    min-height: 420px;
    border-radius: 18px;
  }

  .hero-intro {
    padding-top: 20px;
  }
}

/* mobile */
@media (max-width: 640px) {
  .hero--split-video .hero__content {
    padding: 34px 0 22px;
  }

  .hero--split-video .breadcrumbs {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero--split-video h1 {
    margin-bottom: 14px;
  }

  .hero--split-video .hero__lead {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .hero__media {
    min-height: 260px;
    border-radius: 14px;
  }

  .hero-intro p {
    font-size: 15px;
  }

  .media-placeholder {
    min-height: 220px;
    border-radius: 14px;
    font-size: 14px;
  }
}/* =========================
   Related resource cards
   ========================= */

.resource-grid {
  gap: 24px;
}

.resource-card {
  background: #ffffff;
  border: 1px solid #dbe3ea;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(16, 34, 58, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card__media {
  padding: 18px 18px 0;
}

.resource-card__media-placeholder {
  min-height: 170px;
  border: 1px solid #dbe3ea;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  color: #607080;
  font-size: 14px;
  line-height: 1.5;
}

.resource-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.resource-card__body h3 {
  margin: 0 0 10px;
}

.resource-card__body p {
  margin: 0 0 18px;
  color: #4d5c6a;
  line-height: 1.7;
  flex: 1;
}

.btn--green {
  background: #6cab1f;
  border-color: #6cab1f;
  color: #ffffff;
}

.btn--green:hover,
.btn--green:focus {
  background: #5b9618;
  border-color: #5b9618;
  color: #ffffff;
}

.resource-card .btn {
  width: 100%;
  justify-content: center;
}

/* =========================
   Strong CTA panel
   ========================= */

.cta-panel {
  background: #ffffff;
  border: 1px solid #dbe3ea;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(16, 34, 58, 0.06);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 24px;
  align-items: center;
}

.cta-panel__content h2 {
  margin-bottom: 12px;
}

.cta-panel__content p {
  margin: 0;
  color: #4d5c6a;
  line-height: 1.7;
  max-width: 760px;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .cta-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .resource-card__media-placeholder {
    min-height: 140px;
  }

  .cta-panel {
    border-radius: 16px;
  }

  .cta-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-panel__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   Product model cards
   ========================= */

.resource-card--product .resource-card__media-placeholder {
  min-height: 145px;
}

.resource-card--product .resource-card__body h3 {
  min-height: 62px;
}

.resource-card--product .resource-card__body p {
  min-height: 88px;
}

@media (max-width: 900px) {
  .resource-card--product .resource-card__body h3,
  .resource-card--product .resource-card__body p {
    min-height: auto;
  }
}

.resource-card__image {
  width: 100%;
  height: 170px;
  object-fit: contain;
  display: block;
  border: 1px solid #dbe3ea;
  border-radius: 14px;
  background: #ffffff;
  padding: 12px;
}
/* Truck scale product-family page: /en/truck-scales/index.html */

.truck-family-hero .hero__grid {
  align-items: start;
}

.hero-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
}

.truck-family-facts-section {
  padding-top: 2rem;
}

.truck-family-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.truck-family-facts__item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 1.25rem;
}

.truck-family-facts__label {
  display: block;
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.truck-family-panel,
.spec-card,
.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.table-wrap {
  overflow-x: auto;
}

.truck-family-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  background: #ffffff;
}

.truck-family-table th,
.truck-family-table td {
  border: 1px solid #e5e7eb;
  padding: 1rem;
  vertical-align: top;
  text-align: left;
}

.truck-family-table th {
  white-space: nowrap;
  font-weight: 700;
}

.section-note {
  margin-top: 1rem;
  color: #6b7280;
}

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

.spec-card {
  padding: 1.5rem;
}

.spec-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.spec-list {
  display: grid;
  grid-template-columns: minmax(170px, 220px) 1fr;
  gap: 0.75rem 1rem;
  margin: 0;
}

.spec-list dt {
  font-weight: 700;
}

.spec-list dd {
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.95rem;
}

.gallery-placeholder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-placeholder__item {
  min-height: 180px;
  border: 2px dashed #d1d5db;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: #6b7280;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 1rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 0.85rem 0 0;
}

.notice-box--strong {
  padding: 2rem;
}

.notice-box code {
  word-break: break-word;
}

@media (max-width: 1024px) {
  .truck-family-facts,
  .spec-grid,
  .gallery-placeholder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .truck-family-facts,
  .spec-grid,
  .gallery-placeholder {
    grid-template-columns: 1fr;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .truck-family-table th,
  .truck-family-table td {
    padding: 0.85rem;
  }
}
/* DVALI S page - model matrix table fix */

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #d9dde3;
  background: #ffffff;
}

.truck-family-table {
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
}

.truck-family-table th,
.truck-family-table td {
  border: 1px solid #d9dde3;
  padding: 0.85rem 0.9rem;
  vertical-align: top;
  text-align: left;
  line-height: 1.55;
  font-size: 0.95rem;
}

.truck-family-table th {
  font-weight: 700;
  background: #f5f6f8;
  white-space: normal;
}

.truck-family-table td strong {
  display: inline-block;
  white-space: nowrap;
}

/* Better column distribution */
.truck-family-table th:nth-child(1),
.truck-family-table td:nth-child(1) {
  width: 7%;
}

.truck-family-table th:nth-child(2),
.truck-family-table td:nth-child(2) {
  width: 16%;
}

.truck-family-table th:nth-child(3),
.truck-family-table td:nth-child(3) {
  width: 14%;
}

.truck-family-table th:nth-child(4),
.truck-family-table td:nth-child(4) {
  width: 8%;
}

.truck-family-table th:nth-child(5),
.truck-family-table td:nth-child(5) {
  width: 15%;
}

.truck-family-table th:nth-child(6),
.truck-family-table td:nth-child(6) {
  width: 8%;
}

.truck-family-table th:nth-child(7),
.truck-family-table td:nth-child(7) {
  width: 13%;
}

.truck-family-table th:nth-child(8),
.truck-family-table td:nth-child(8) {
  width: 12%;
}

.truck-family-table th:nth-child(9),
.truck-family-table td:nth-child(9) {
  width: 7%;
}

.truck-family-table th:nth-child(10),
.truck-family-table td:nth-child(10) {
  width: 10%;
}

/* Tighten long text columns */
.truck-family-table td:nth-child(2),
.truck-family-table td:nth-child(5),
.truck-family-table td:nth-child(9) {
  line-height: 1.65;
}

/* Allow long model codes to break cleanly */
.truck-family-table td:nth-child(2) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Keep the first column visible during horizontal scroll */
.truck-family-table th:first-child,
.truck-family-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #ffffff;
}

.truck-family-table th:first-child {
  background: #f5f6f8;
  z-index: 2;
}

/* Slightly smaller table on narrower screens */
@media (max-width: 1199px) {
  .truck-family-table {
    min-width: 1180px;
  }

  .truck-family-table th,
  .truck-family-table td {
    font-size: 0.92rem;
    padding: 0.75rem 0.8rem;
  }
}

@media (max-width: 767px) {
  .table-wrap {
    margin-inline: -1rem;
  }

  .truck-family-table th,
  .truck-family-table td {
    font-size: 0.88rem;
    padding: 0.7rem;
  }
}
/* DVALI S page - per-model datasheet table */

.table-wrap--models {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.truck-family-table--models {
  width: 100%;
  min-width: 1220px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
}

.truck-family-table--models th,
.truck-family-table--models td {
  border: 1px solid #d9dde3;
  padding: 0.85rem 0.9rem;
  vertical-align: top;
  text-align: left;
  line-height: 1.55;
  font-size: 0.95rem;
}

.truck-family-table--models th {
  font-weight: 700;
  background: #f5f6f8;
  white-space: normal;
}

.truck-family-table--models td strong {
  white-space: nowrap;
}

.truck-family-table--models th:nth-child(1),
.truck-family-table--models td:nth-child(1) {
  width: 8%;
}

.truck-family-table--models th:nth-child(2),
.truck-family-table--models td:nth-child(2) {
  width: 22%;
}

.truck-family-table--models th:nth-child(3),
.truck-family-table--models td:nth-child(3) {
  width: 16%;
}

.truck-family-table--models th:nth-child(4),
.truck-family-table--models td:nth-child(4) {
  width: 12%;
}

.truck-family-table--models th:nth-child(5),
.truck-family-table--models td:nth-child(5) {
  width: 8%;
}

.truck-family-table--models th:nth-child(6),
.truck-family-table--models td:nth-child(6) {
  width: 12%;
}

.truck-family-table--models th:nth-child(7),
.truck-family-table--models td:nth-child(7) {
  width: 9%;
}

.truck-family-table--models th:nth-child(8),
.truck-family-table--models td:nth-child(8) {
  width: 13%;
}

.truck-family-table--models td:nth-child(2),
.truck-family-table--models td:nth-child(3) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.truck-family-table--models th:first-child,
.truck-family-table--models td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #ffffff;
}

.truck-family-table--models th:first-child {
  background: #f5f6f8;
  z-index: 2;
}

@media (max-width: 1199px) {
  .truck-family-table--models {
    min-width: 1120px;
  }

  .truck-family-table--models th,
  .truck-family-table--models td {
    font-size: 0.92rem;
    padding: 0.75rem 0.8rem;
  }
}

@media (max-width: 767px) {
  .table-wrap--models {
    margin-inline: -1rem;
  }

  .truck-family-table--models th,
  .truck-family-table--models td {
    font-size: 0.88rem;
    padding: 0.7rem;
  }
}
/* DVALI S models table - make model name stay on one line */

.truck-family-table--models {
  min-width: 1320px;
}

.truck-family-table--models th:nth-child(1),
.truck-family-table--models td:nth-child(1) {
  width: 7%;
}

.truck-family-table--models th:nth-child(2),
.truck-family-table--models td:nth-child(2) {
  width: 26%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.truck-family-table--models th:nth-child(3),
.truck-family-table--models td:nth-child(3) {
  width: 16%;
}

.truck-family-table--models th:nth-child(4),
.truck-family-table--models td:nth-child(4) {
  width: 12%;
}

.truck-family-table--models th:nth-child(5),
.truck-family-table--models td:nth-child(5) {
  width: 8%;
}

.truck-family-table--models th:nth-child(6),
.truck-family-table--models td:nth-child(6) {
  width: 13%;
}

.truck-family-table--models th:nth-child(7),
.truck-family-table--models td:nth-child(7) {
  width: 9%;
}

.truck-family-table--models th:nth-child(8),
.truck-family-table--models td:nth-child(8) {
  width: 9%;
}
/* DVALI S models table - keep model name in one line and make datasheet visible */

.truck-family-table--models {
  min-width: 1180px;
}

.truck-family-table--models th,
.truck-family-table--models td {
  font-size: 0.92rem;
  padding: 0.75rem 0.8rem;
}

.truck-family-table--models th:nth-child(1),
.truck-family-table--models td:nth-child(1) {
  width: 6%;
}

.truck-family-table--models th:nth-child(2),
.truck-family-table--models td:nth-child(2) {
  width: 26%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: 0.9rem;
}

.truck-family-table--models th:nth-child(3),
.truck-family-table--models td:nth-child(3) {
  width: 15%;
}

.truck-family-table--models th:nth-child(4),
.truck-family-table--models td:nth-child(4) {
  width: 11%;
}

.truck-family-table--models th:nth-child(5),
.truck-family-table--models td:nth-child(5) {
  width: 7%;
}

.truck-family-table--models th:nth-child(6),
.truck-family-table--models td:nth-child(6) {
  width: 11%;
}

.truck-family-table--models th:nth-child(7),
.truck-family-table--models td:nth-child(7) {
  width: 7%;
}

.truck-family-table--models th:nth-child(8),
.truck-family-table--models td:nth-child(8) {
  width: 17%;
  white-space: nowrap;
}

.truck-family-table--models td:nth-child(8) a {
  white-space: nowrap;
  display: inline-block;
}
.service-hero {
  position: relative;
  overflow: hidden;
}

.service-hero--image {
  min-height: 560px;
  display: flex;
  align-items: center;
}

.service-hero__backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.86) 0%, rgba(8, 18, 34, 0.62) 42%, rgba(8, 18, 34, 0.26) 100%);
}

.service-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 88px;
  padding-bottom: 88px;
}

.service-hero__content {
  max-width: 780px;
  color: #ffffff;
}

.service-hero--image .breadcrumbs,
.service-hero--image .breadcrumbs a,
.service-hero--image .eyebrow,
.service-hero--image h1,
.service-hero--image .hero__lead {
  color: #ffffff;
}

.service-hero--image .breadcrumbs a {
  opacity: 0.92;
}

.service-hero--image .breadcrumbs a:hover {
  opacity: 1;
}

.service-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-proof-points li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.service-process__item {
  border: 1px solid #e6e8ec;
  background: #ffffff;
  padding: 24px;
}

.service-process__number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #0f4f96;
}

.service-process__item h3 {
  margin-bottom: 10px;
}

.section-heading--gallery {
  margin-top: 52px;
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.service-proof-card {
  margin: 0;
  border: 1px solid #e6e8ec;
  background: #ffffff;
  overflow: hidden;
}

.service-proof-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-proof-card figcaption {
  padding: 14px 16px;
  font-size: 14px;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.service-gallery__item {
  display: block;
  overflow: hidden;
  border: 1px solid #e6e8ec;
  background: #ffffff;
}

.service-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-gallery__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 1100px) {
  .service-process,
  .service-proof-grid,
  .service-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .service-hero--image {
    min-height: 480px;
  }

  .service-hero__container {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .service-proof-grid,
  .service-gallery {
    grid-template-columns: 1fr;
  }
}
/* ===== Industrial Scale Calibration Service Page ===== */

.service-calibration-page {
  color: #1f2937;
  background: #ffffff;
}

.service-calibration-page .container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.service-section {
  padding: 72px 0;
}

.service-section--muted {
  background: #f7f8fa;
}

.service-section--dark {
  background: #0f172a;
  color: #ffffff;
}

.service-hero {
  padding: 56px 0 72px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0)),
    #ffffff;
}

.service-hero__grid,
.service-two-column {
  display: grid;
  gap: 32px;
  align-items: center;
}

.service-hero__grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.service-two-column {
  grid-template-columns: 1fr 1fr;
}

.service-breadcrumb {
  margin-bottom: 16px;
}

.service-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #64748b;
}

.service-breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #94a3b8;
}

.service-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.service-eyebrow,
.service-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f4f96;
}

.service-hero h1,
.service-section h2,
.service-panel h2,
.service-final-cta h2 {
  margin: 0 0 16px;
  line-height: 1.15;
  color: inherit;
}

.service-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  max-width: 12ch;
}

.service-lead,
.service-section__text,
.service-panel p,
.service-card p,
.service-step p,
.service-request-box p,
.service-final-cta p,
.service-faq__item p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.service-section--dark .service-step p,
.service-section--dark .service-kicker,
.service-section--dark .service-section__heading--light p {
  color: rgba(255, 255, 255, 0.82);
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-hero__actions--center {
  justify-content: center;
}

.service-calibration-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.service-calibration-page .btn-primary {
  background: #0f4f96;
  color: #ffffff;
}

.service-calibration-page .btn-primary:hover {
  background: #0b3f78;
}

.service-calibration-page .btn-secondary {
  background: #ffffff;
  color: #0f4f96;
  border-color: #cbd5e1;
}

.service-calibration-page .btn-secondary:hover {
  border-color: #0f4f96;
}

.service-highlights,
.service-checklist {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-highlights {
  display: grid;
  gap: 12px;
}

.service-highlights li,
.service-checklist li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  line-height: 1.6;
}

.service-highlights li::before,
.service-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0f4f96;
}

.service-hero__media img,
.service-photo-card img,
.service-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.service-hero__media img {
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}

.service-section__heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.service-section__heading--light {
  color: #ffffff;
}

.service-card-grid,
.service-steps,
.service-proof-grid,
.service-gallery {
  display: grid;
  gap: 24px;
}

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

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

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

.service-card,
.service-panel,
.service-step,
.service-photo-card,
.service-request-box,
.service-final-cta__box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.service-card,
.service-panel,
.service-step,
.service-request-box,
.service-final-cta__box {
  padding: 28px;
}

.service-panel--accent {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: #dbeafe;
}

.service-card h3,
.service-step h3,
.service-panel h2,
.service-request-box h2,
.service-photo-card figcaption,
.service-final-cta h2 {
  margin-top: 0;
}

.service-card h3,
.service-step h3,
.service-photo-card figcaption {
  margin-bottom: 12px;
  color: #0f172a;
}

.service-section--dark .service-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.service-section--dark .service-step h3,
.service-section--dark .service-step__number {
  color: #ffffff;
}

.service-step__number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0f4f96;
}

.service-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.service-photo-card {
  overflow: hidden;
  padding: 0;
}

.service-photo-card figcaption {
  padding: 18px 20px 22px;
}

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

.service-gallery__item {
  margin: 0;
}

.service-gallery__item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e5e7eb;
}

.service-request-box {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.service-request-box__content {
  max-width: 760px;
}

.service-faq {
  display: grid;
  gap: 16px;
}

.service-faq__item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  padding: 18px 20px;
}

.service-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}

.service-faq__item p {
  margin-top: 12px;
}

.service-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: #0f4f96;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

.service-final-cta {
  padding-top: 0;
}

.service-final-cta__box {
  text-align: center;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-color: #dbeafe;
}

@media (max-width: 1080px) {
  .service-hero__grid,
  .service-two-column,
  .service-card-grid--4,
  .service-card-grid--3,
  .service-steps,
  .service-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-section {
    padding: 56px 0;
  }

  .service-hero {
    padding: 42px 0 56px;
  }

  .service-hero__grid,
  .service-two-column,
  .service-card-grid--2,
  .service-card-grid--3,
  .service-card-grid--4,
  .service-steps,
  .service-proof-grid,
  .service-gallery {
    grid-template-columns: 1fr;
  }

  .service-request-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-calibration-page .btn {
    width: 100%;
  }

  .service-hero__actions {
    flex-direction: column;
  }
}