@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --background: #f5f2eb;
  --foreground: #111318;
  --card: #fbfaf6;
  --navy: #21384b;
  --yellow: #f2b517;
  --yellow-soft: #f6c73c;
  --muted: #dedbd2;
  --muted-ink: #51545b;
  --border: #b8b7b1;
  --white: #fffdf7;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
svg { width: 18px; height: 18px; flex: 0 0 auto; }

.shell { min-height: 100vh; overflow-x: hidden; }
.container { width: min(1280px, calc(100% - 64px)); margin: 0 auto; }
.mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.eyebrow { color: var(--yellow); }
.section { padding: 108px 0; border-top: 1px solid rgba(17,19,24,.22); }
.section-title {
  margin: 12px 0 0;
  max-width: 820px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.035em;
}
.section-lede {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--muted-ink);
  font-size: 20px;
  line-height: 1.45;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245,242,235,.96);
  border-bottom: 1px solid rgba(17,19,24,.18);
  backdrop-filter: blur(8px);
}
.topbar-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 900; text-transform: uppercase; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; background: var(--yellow); color: var(--foreground); }
.brand-mark svg { width: 20px; height: 20px; fill: currentColor; }
.brand span:last-child { color: var(--foreground); }
.brand em { color: var(--yellow); font-style: normal; }
.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; margin-right: 32px; }
.nav a { font-size: 14px; font-weight: 700; transition: color .2s ease; }
.nav a:hover { color: var(--navy); }
.header-cta, .button-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 40px; padding: 0 30px; border: 1px solid transparent; border-radius: var(--radius);
  background: var(--yellow); color: var(--foreground); font-size: 14px; font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}
.header-cta:hover, .button-primary:hover { background: var(--yellow-soft); transform: translateY(-1px); }
.button-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 40px; padding: 0 30px; border: 1px solid rgba(255,255,255,.65); border-radius: var(--radius);
  background: transparent; color: var(--white); font-size: 14px; font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.button-secondary:hover { background: var(--white); color: var(--foreground); }
.mobile-actions { display: none; align-items: center; gap: 8px; }
.icon-button {
  width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: var(--radius);
  background: transparent; color: var(--foreground);
}
.icon-button svg { width: 19px; height: 19px; }
.mobile-menu {
  display: none; padding: 12px 20px 18px; border-top: 1px solid rgba(17,19,24,.16);
}
.mobile-menu.open { display: grid; gap: 12px; }
.mobile-menu a { font-size: 16px; font-weight: 700; }

.hero { position: relative; min-height: 720px; color: var(--white); overflow: hidden; }
.hero-media, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; opacity: .55; }
.hero-overlay { background: rgba(11,15,20,.66); }
.hero-inner { position: relative; min-height: 720px; display: flex; flex-direction: column; justify-content: flex-end; padding: 112px 0 64px; }
.hero h1 { max-width: 900px; margin: 18px 0 0; font-size: clamp(58px, 8vw, 112px); line-height: .9; font-weight: 900; letter-spacing: -.045em; text-transform: uppercase; }
.hero-copy { max-width: 730px; margin: 28px 0 0; color: rgba(255,253,247,.86); font-size: 21px; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.35); }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; }
.trust-item svg { width: 15px; height: 15px; color: var(--yellow); flex: 0 0 auto; }
.hero-note { max-width: 800px; margin: 24px 0 0; color: rgba(255,253,247,.72); font-family: 'IBM Plex Mono', monospace; font-size: 12px; line-height: 1.55; }

.category-strip { border-bottom: 1px solid var(--border); background: var(--background); }
.category-inner { display: flex; align-items: stretch; overflow-x: auto; }
.category-button { flex: 0 0 auto; padding: 18px 22px; border: 0; border-right: 1px solid var(--border); background: transparent; font-size: 15px; font-weight: 700; white-space: nowrap; }
.category-button:first-child { border-left: 1px solid var(--border); }
.category-button:hover { background: var(--muted); }

.machine-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 42px; border-left: 1px solid var(--border); }
.machine-card { min-height: 440px; padding: 23px; border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--card); display: flex; flex-direction: column; }
.machine-card-top { display: flex; align-items: center; justify-content: space-between; color: var(--navy); }
.machine-number { color: var(--muted-ink); }
.machine-icon { width: 34px; height: 34px; }
.machine-placeholder { height: 190px; margin: 24px 0; display: grid; place-items: center; padding: 28px; border: 1px dashed var(--border); background: var(--muted); color: #5a5b60; text-align: center; }
.machine-placeholder span { max-width: 210px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; line-height: 1.35; font-weight: 600; text-transform: uppercase; }
.machine-card h3 { margin: 0; font-size: 25px; line-height: .98; font-weight: 900; text-transform: uppercase; }
.machine-card p { min-height: 46px; margin: 15px 0 0; color: var(--muted-ink); font-size: 16px; line-height: 1.4; }
.machine-card .button-outline { margin-top: auto; }
.button-outline { width: 100%; min-height: 40px; border: 1px solid var(--border); background: transparent; color: var(--foreground); font-size: 14px; font-weight: 700; }
.button-outline:hover { background: var(--yellow); border-color: var(--yellow); }

.why { background: var(--foreground); color: var(--white); border-top: 0; }
.why .section-lede { color: rgba(255,253,247,.65); }
.highlight-title { display: inline; box-decoration-break: clone; -webkit-box-decoration-break: clone; background: var(--yellow); color: var(--foreground); line-height: 1.12; padding: 0 6px 4px; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 52px; }
.why-item { min-height: 220px; padding: 4px 23px 0; border-right: 1px solid rgba(255,255,255,.2); }
.why-item:first-child { padding-left: 0; }
.why-item:last-child { border-right: 0; }
.why-item svg { width: 30px; height: 30px; margin-bottom: 30px; color: var(--yellow); }
.why-item h3 { margin: 0; font-size: 20px; line-height: 1.1; font-weight: 800; }
.why-item p { margin: 16px 0 0; color: rgba(255,253,247,.62); font-size: 15px; line-height: 1.55; }

.catalogue { border-top: 0; }
.catalogue-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.catalogue-count { font-family: 'IBM Plex Mono', monospace; font-size: 14px; white-space: nowrap; }
.catalogue-count strong { font-family: 'Barlow', sans-serif; font-size: 38px; }
.filters { display: flex; gap: 8px; overflow-x: auto; padding: 34px 0 8px; }
.filter-button { flex: 0 0 auto; min-height: 38px; padding: 0 16px; border: 1px solid var(--border); border-radius: var(--radius); background: transparent; color: var(--foreground); font-size: 14px; font-weight: 600; }
.filter-button.active, .filter-button:hover { border-color: var(--yellow); background: var(--yellow); }
.catalogue-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; }
.product-card { border: 1px solid var(--border); background: var(--card); }
.product-card-image { aspect-ratio: 1; display: grid; place-items: center; background: #d5d5d5; overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 18px 20px 20px; }
.product-card-range { color: var(--navy); }
.product-card h3 { margin: 10px 0 0; font-size: 21px; line-height: 1.05; font-weight: 800; }
.product-card p { min-height: 44px; margin: 12px 0 0; color: var(--muted-ink); font-size: 15px; line-height: 1.4; }
.product-card .button-primary { width: 100%; min-height: 38px; margin-top: 18px; }
.empty-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.empty-card { min-height: 205px; padding: 30px; border: 1px solid var(--border); background: var(--card); }
.empty-card svg { width: 30px; height: 30px; color: var(--yellow); }
.empty-card h3 { margin: 28px 0 0; font-size: 25px; line-height: 1; font-weight: 900; text-transform: uppercase; }
.empty-card p { max-width: 470px; margin: 18px 0 0; color: var(--muted-ink); font-size: 16px; line-height: 1.45; }

.path-intro { max-width: 820px; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; }
.step { min-height: 160px; padding: 0 26px; border-right: 1px solid var(--border); }
.step:first-child { padding-left: 26px; }
.step:last-child { border-right: 0; }
.step svg { width: 31px; height: 31px; margin: 32px 0 20px; color: var(--navy); }
.step h3 { margin: 0; font-size: 20px; line-height: 1.12; font-weight: 800; }
.step-label { color: var(--muted-ink); }
.path-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.path-card { min-height: 258px; padding: 31px; border-left: 4px solid var(--navy); background: var(--muted); }
.path-card svg { width: 30px; height: 30px; color: var(--navy); }
.path-card h3 { margin: 28px 0 0; font-size: 24px; line-height: 1; font-weight: 900; text-transform: uppercase; }
.path-card p { max-width: 520px; margin: 18px 0 0; color: var(--muted-ink); font-size: 16px; line-height: 1.45; }
.path-card a { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; padding: 10px 16px; border: 1px solid var(--border); background: var(--card); font-size: 14px; font-weight: 600; }
.path-card a:hover { background: var(--yellow); border-color: var(--yellow); }

.enquiry { background: var(--navy); color: var(--white); border-top: 0; }
.enquiry-grid { display: grid; grid-template-columns: .78fr 1fr; gap: 72px; align-items: start; }
.enquiry .section-title { max-width: 480px; }
.enquiry .section-lede { color: rgba(255,253,247,.65); }
.progress { display: flex; align-items: center; gap: 12px; margin-top: 46px; }
.progress-step { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); color: var(--white); font-family: 'IBM Plex Mono', monospace; font-size: 13px; }
.progress-step.active { border-color: var(--yellow); background: var(--yellow); color: var(--foreground); }
.progress-line { width: 44px; height: 1px; background: rgba(255,255,255,.35); }
.form-card { padding: 34px; background: var(--background); color: var(--foreground); }
.form-card-head { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.form-card h3 { margin: 8px 0 0; font-size: 25px; line-height: 1; font-weight: 900; text-transform: uppercase; }
.form-percent { font-family: 'IBM Plex Mono', monospace; font-size: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 20px; margin-top: 28px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 14px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 47px; padding: 11px 13px; border: 1px solid var(--border); border-radius: 0; background: var(--card); color: var(--foreground); }
.field textarea { min-height: 110px; resize: vertical; }
.field.full { grid-column: 1 / -1; }
.form-submit { width: 100%; min-height: 48px; margin-top: 20px; border: 1px solid var(--yellow); background: var(--yellow); color: var(--foreground); font-weight: 700; }
.form-submit:hover { background: var(--yellow-soft); }
.form-success { margin-top: 25px; padding: 18px; background: var(--yellow); font-weight: 700; }

.brands { border-top: 0; }
.placeholder-panel { min-height: 80px; display: grid; place-items: center; margin-top: 42px; padding: 20px; border: 1px dashed var(--border); background: var(--muted); color: #54565b; text-align: center; }
.placeholder-panel span { font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.buyer-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.buyer-item { min-height: 125px; display: flex; align-items: center; gap: 24px; padding: 25px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.buyer-item svg { width: 29px; height: 29px; flex: 0 0 auto; color: var(--navy); }
.buyer-item h3 { margin: 0; font-size: 20px; line-height: 1.1; font-weight: 800; }

.testimonial { padding-top: 96px; }
.service { background: var(--muted); border-top: 0; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service .section-title { max-width: 650px; }
.service .section-lede { max-width: 650px; }
.final-cta { background: var(--foreground); color: var(--white); text-align: center; border-top: 0; }
.final-cta .section-title { max-width: 980px; margin-left: auto; margin-right: auto; }
.final-cta .section-lede { max-width: 700px; margin-left: auto; margin-right: auto; color: rgba(255,253,247,.68); }
.final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.footer { padding: 52px 0 30px; border-top: 1px solid var(--border); }
.footer .brand { font-size: 21px; }
.footer p { max-width: 420px; margin: 18px 0 0; color: var(--muted-ink); font-size: 15px; line-height: 1.45; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted-ink); }

.product-page { min-height: 100vh; padding: 34px 0 86px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.back-link:hover { color: var(--navy); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 35px; }
.product-visual { aspect-ratio: 1; border: 1px solid var(--border); background: #d2d2d2; overflow: hidden; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 10px 0; }
.product-info h1 { max-width: 700px; margin: 26px 0 0; font-size: clamp(48px, 5.8vw, 82px); line-height: .92; font-weight: 900; text-transform: uppercase; letter-spacing: -.04em; }
.product-output { display: flex; align-items: center; gap: 15px; margin: 34px 0 0; font-size: 18px; }
.product-output::before { content: ''; width: 4px; height: 30px; background: var(--yellow); }
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.product-actions .button-primary, .product-actions .button-outline { width: auto; padding: 0 28px; }
.product-actions .button-outline { min-height: 40px; }
.product-note { margin: 22px 0 0; color: var(--muted-ink); font-size: 15px; line-height: 1.45; }

@media (max-width: 1050px) {
  .container { width: min(100% - 40px, 900px); }
  .nav, .header-cta { display: none; }
  .mobile-actions { display: flex; }
  .machine-grid, .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .why-item:nth-child(2n) { border-right: 0; }
  .why-item:nth-child(n+3) { padding-top: 18px; }
  .service-grid, .enquiry-grid { grid-template-columns: 1fr; gap: 45px; }
  .product-detail { gap: 28px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 30px, 560px); }
  .section { padding: 76px 0; }
  .section-title { font-size: clamp(40px, 12vw, 62px); }
  .section-lede { font-size: 18px; }
  .topbar-inner { height: 58px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 33px; height: 33px; }
  .hero, .hero-inner { min-height: 650px; }
  .hero-inner { padding: 95px 0 35px; }
  .hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .hero-copy { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button-primary, .hero-actions .button-secondary { width: 100%; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-item { font-size: 13px; }
  .category-button { padding: 16px 18px; font-size: 14px; }
  .machine-grid, .catalogue-grid, .empty-grid, .path-cards, .step-grid { grid-template-columns: 1fr; }
  .machine-card { min-height: 405px; }
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .why-item, .why-item:first-child, .why-item:nth-child(n+3) { min-height: auto; padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .why-item:last-child { border-bottom: 0; }
  .catalogue-header { display: block; }
  .catalogue-count { margin-top: 22px; }
  .step { min-height: 150px; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .step:first-child { padding-left: 0; }
  .step:last-child { border-bottom: 0; }
  .path-card { min-height: auto; }
  .form-card { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .buyer-grid { grid-template-columns: 1fr; }
  .buyer-item { min-height: 100px; }
  .product-page { padding-top: 25px; }
  .product-detail { grid-template-columns: 1fr; margin-top: 26px; }
  .product-info h1 { font-size: clamp(44px, 13vw, 68px); }
  .product-actions { flex-direction: column; align-items: stretch; }
  .product-actions .button-primary, .product-actions .button-outline { width: 100%; }
}

/* Requested catalogue and product-detail refinements */
.hero-media { opacity: .48; }
.hero-overlay { background: rgba(8, 13, 18, .78); }
.machine-card-image { height: 190px; margin: 24px 0; border: 1px solid var(--border); background: #d5d5d5; overflow: hidden; }
.machine-card-image img { width: 100%; height: 100%; object-fit: cover; }
.machine-card h3 { text-transform: uppercase; }
.brand-scroller { display: flex; gap: 14px; margin-top: 42px; padding: 4px 2px 18px; overflow-x: auto; scrollbar-width: thin; }
.brand-logo { min-width: 215px; min-height: 112px; display: flex; align-items: center; gap: 15px; padding: 20px; border: 1px solid var(--border); background: var(--card); scroll-snap-align: start; font-size: 20px; font-weight: 800; }
.brand-logo-mark { width: 52px; height: 52px; display: grid; place-items: center; border: 2px solid var(--navy); border-radius: 50%; color: var(--navy); font-family: 'IBM Plex Mono', monospace; font-size: 14px; font-weight: 600; }
.brand-logo > span:last-child { display: grid; gap: 5px; }
.brand-logo strong { font-size: 18px; line-height: 1.05; }
.brand-logo small { color: var(--muted-ink); font-size: 12px; line-height: 1.25; font-weight: 600; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.testimonial-scroller { display: flex; gap: 14px; margin-top: 42px; padding: 4px 2px 18px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: thin; }
.testimonial-scroller .testimonial-card { flex: 0 0 min(330px, 78vw); scroll-snap-align: start; }
.testimonial-card { min-height: 190px; padding: 22px; border: 1px solid var(--border); background: var(--card); }
.testimonial-card .mono { color: var(--navy); }
.testimonial-card p { margin: 20px 0 24px; font-size: 17px; line-height: 1.4; }
.testimonial-card strong { color: var(--muted-ink); font-size: 13px; font-weight: 600; }
.state-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 42px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.state-card { min-height: 158px; padding: 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--card); }
.state-card .mono { color: var(--navy); }
.state-card h3 { margin: 24px 0 0; font-size: 24px; line-height: 1; font-weight: 800; }
.state-card p { margin: 12px 0 0; color: var(--muted-ink); font-size: 15px; line-height: 1.35; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 38px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-grid a { color: var(--muted-ink); font-size: 15px; }
.footer-grid a:hover { color: var(--navy); }
.footer-heading { margin: 0 0 6px; color: var(--foreground); }
.footer-grid > div > p:not(.footer-heading) { margin: 0; color: var(--muted-ink); font-size: 15px; line-height: 1.45; }
.product-overview, .spec-section, .datasheet-panel { margin-top: 96px; padding-top: 64px; border-top: 1px solid var(--border); }
.product-overview { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; }
.product-overview h2, .spec-section h2, .datasheet-panel h2 { max-width: 650px; margin: 12px 0 0; font-size: clamp(36px, 5vw, 62px); line-height: .95; font-weight: 900; text-transform: uppercase; letter-spacing: -.035em; }
.product-overview > div:first-child > p:not(.eyebrow) { max-width: 700px; margin: 24px 0 0; color: var(--muted-ink); font-size: 19px; line-height: 1.5; }
.product-description { max-width: 760px; margin-top: 24px; color: var(--muted-ink); font-size: 18px; line-height: 1.6; }
.product-description p { margin: 0 0 18px; }
.product-description ul, .product-description ol { padding-left: 24px; }
.product-description table { width: 100%; margin: 20px 0; border-collapse: collapse; background: var(--card); }
.product-description th, .product-description td { padding: 11px 12px; border: 1px solid var(--border); text-align: left; font-size: 14px; }
.product-price { margin: 28px 0 0; color: #b54d1f; font-size: 32px; font-weight: 800; }
.product-price del { margin-left: 8px; color: var(--muted-ink); font-size: 18px; font-weight: 600; }
.product-highlights { display: grid; align-content: start; gap: 0; border-top: 1px solid var(--border); }
.product-highlights > div { display: grid; grid-template-columns: 42px 1fr; gap: 10px; padding: 19px 0; border-bottom: 1px solid var(--border); }
.product-highlights .mono { color: var(--navy); }
.product-highlights strong { font-size: 18px; }
.product-highlights p { grid-column: 2; margin: 0; color: var(--muted-ink); font-size: 15px; line-height: 1.4; }
.spec-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 72px; align-items: start; }
.spec-table { width: 100%; border-collapse: collapse; background: var(--card); }
.spec-table th, .spec-table td { padding: 17px 18px; border: 1px solid var(--border); text-align: left; vertical-align: top; font-size: 16px; }
.spec-table th { width: 42%; color: var(--navy); font-weight: 700; }
.datasheet-panel { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 12px; }
.datasheet-panel > div { max-width: 700px; }
.datasheet-panel p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted-ink); font-size: 18px; line-height: 1.45; }
.datasheet-panel .button-primary { width: auto; flex: 0 0 auto; padding: 0 24px; }

@media (max-width: 1050px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .product-overview, .spec-section { grid-template-columns: 1fr; gap: 42px; }
}
@media (max-width: 640px) {
  .machine-grid, .catalogue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .machine-card { min-height: 360px; padding: 12px; }
  .machine-card-image { height: 130px; margin: 14px 0; }
  .machine-card h3 { font-size: 17px; }
  .machine-card p { min-height: 66px; margin-top: 10px; font-size: 13px; }
  .machine-card .button-outline { padding: 0 7px; font-size: 12px; }
  .machine-card .button-outline svg { width: 14px; height: 14px; }
  .product-card-body { padding: 13px; }
  .product-card h3 { font-size: 17px; }
  .product-card p { font-size: 13px; }
  .product-card .button-primary { padding: 0 8px; font-size: 12px; }
  .testimonial-grid, .state-grid { grid-template-columns: 1fr; }
  .brand-logo { min-width: 190px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .product-overview, .spec-section, .datasheet-panel { margin-top: 64px; padding-top: 42px; }
  .product-overview h2, .spec-section h2, .datasheet-panel h2 { font-size: 38px; }
  .datasheet-panel { display: block; }
  .datasheet-panel .button-primary { width: 100%; margin-top: 22px; }
}
